content
stringlengths
1
1.04M
input_ids
sequencelengths
1
774k
ratio_char_token
float64
0.38
22.9
token_count
int64
1
774k
import pytest from pathlib import Path root = Path(__file__).parent.resolve() @pytest.fixture(scope="session") def csv_path() -> str: """ Returns a path to a CSV file. The file has a column called 'fips' representing unique county IDs. It joins with a column called 'GEOID' in the topojson file at topo_path. """ return str(root / "fixtures/pa-county-pop.csv") @pytest.fixture(scope="session") def csv_path_non_matching(): """ Returns a path to a CSV file. The file has a column called 'fips' representing unique county IDs. It joins with a column called 'GEOID' in the topojson file at topo_path. However, this file is missing rows so it will not match cleanly with the topojson. """ return str(root / "fixtures/pa-county-pop__non-matching-rows.csv") @pytest.fixture(scope="session")
[ 11748, 12972, 9288, 198, 6738, 3108, 8019, 1330, 10644, 628, 198, 15763, 796, 10644, 7, 834, 7753, 834, 737, 8000, 13, 411, 6442, 3419, 628, 198, 31, 9078, 9288, 13, 69, 9602, 7, 29982, 2625, 29891, 4943, 198, 4299, 269, 21370, 62, 6978, 3419, 4613, 965, 25, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 16409, 257, 3108, 284, 257, 44189, 2393, 13, 383, 2393, 468, 257, 5721, 1444, 705, 69, 2419, 6, 10200, 3748, 7968, 32373, 13, 632, 15449, 198, 220, 220, 220, 351, 257, 5721, 1444, 705, 38, 4720, 2389, 6, 287, 262, 1353, 13210, 1559, 2393, 379, 1353, 78, 62, 6978, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1441, 965, 7, 15763, 1220, 366, 69, 25506, 14, 8957, 12, 9127, 88, 12, 12924, 13, 40664, 4943, 628, 198, 31, 9078, 9288, 13, 69, 9602, 7, 29982, 2625, 29891, 4943, 198, 4299, 269, 21370, 62, 6978, 62, 13159, 62, 15699, 278, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 16409, 257, 3108, 284, 257, 44189, 2393, 13, 383, 2393, 468, 257, 5721, 1444, 705, 69, 2419, 6, 10200, 3748, 7968, 32373, 13, 632, 15449, 198, 220, 220, 220, 351, 257, 5721, 1444, 705, 38, 4720, 2389, 6, 287, 262, 1353, 13210, 1559, 2393, 379, 1353, 78, 62, 6978, 13, 2102, 11, 428, 2393, 318, 4814, 15274, 523, 340, 481, 407, 198, 220, 220, 220, 2872, 3424, 306, 351, 262, 1353, 13210, 1559, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1441, 965, 7, 15763, 1220, 366, 69, 25506, 14, 8957, 12, 9127, 88, 12, 12924, 834, 13159, 12, 15699, 278, 12, 8516, 13, 40664, 4943, 628, 198, 31, 9078, 9288, 13, 69, 9602, 7, 29982, 2625, 29891, 4943, 198 ]
2.896194
289
""" 3. MNE Interface Cycle Feature Distributions ============================================ Compute bycycle feature distributions using MNE objects. """ #################################################################################################### # Import Packages and Load Data # ----------------------------- # # First let's import the packages we need. This example depends on mne. #################################################################################################### import numpy as np import matplotlib.pyplot as plt from mne.io import read_raw_fif from mne.datasets import sample from mne import pick_channels from neurodsp.plts import plot_time_series from bycycle.group import compute_features_2d from bycycle.plts import plot_feature_hist #################################################################################################### # Frequencies of interest: the alpha band f_alpha = (8, 15) # Get the data path for the MNE example data raw_fname = sample.data_path() + '/MEG/sample/sample_audvis_filt-0-40_raw.fif' # Load the file of example MNE data raw = read_raw_fif(raw_fname, preload=True, verbose=False) # Select EEG channels from the dataset raw = raw.pick_types(meg=False, eeg=True, eog=False, exclude='bads') # Grab the sampling rate from the data fs = raw.info['sfreq'] # filter to alpha raw = raw.filter(l_freq=None, h_freq=20.) # Settings for exploring example channels of data chs = ['EEG 042', 'EEG 043', 'EEG 044'] t_start = 20000 t_stop = int(t_start + (10 * fs)) # Extract an example channels to explore sigs, times = raw.get_data(pick_channels(raw.ch_names, chs), start=t_start, stop=t_stop, return_times=True) #################################################################################################### # # Plot time series for each recording # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # # Now let's see how each signal looks in time. This looks like standard EEG # data. # #################################################################################################### # Plot the signal plot_time_series(times, [sig * 1e6 for sig in sigs], labels=chs, title='EEG Signal') #################################################################################################### # Compute cycle-by-cycle features # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # # Here we use the bycycle compute_features function to compute the cycle-by- # cycle features of the three signals. # #################################################################################################### # Set parameters for defining oscillatory bursts threshold_kwargs = {'amp_fraction_threshold': 0.3, 'amp_consistency_threshold': 0.4, 'period_consistency_threshold': 0.5, 'monotonicity_threshold': 0.8, 'min_n_cycles': 3} # Create a dictionary of cycle feature dataframes, corresponding to each channel kwargs = dict(threshold_kwargs=threshold_kwargs, center_extrema='trough') dfs = compute_features_2d(sigs, fs, f_alpha, axis=0, compute_features_kwargs=kwargs) dfs = {ch: df for df, ch in zip(dfs, chs)} #################################################################################################### # # Plot feature distributions # ~~~~~~~~~~~~~~~~~~~~~~~~~~ # # As it turns out, none of the channels in the mne example audio and visual # task has waveform asymmetry. These data were collected from a healthy # person while they listened to beeps or saw gratings on a screen # so this is not unexpected. # #################################################################################################### fig, axes = plt.subplots(figsize=(15, 15), nrows=2, ncols=2) for ch, df in dfs.items(): # Rescale amplitude and period features df['volt_amp'] = df['volt_amp'] * 1e6 df['period'] = df['period'] / fs * 1000 # Plot feature histograms plot_feature_hist(df, 'volt_amp', only_bursts=False, ax=axes[0][0], label=ch, xlabel='Cycle amplitude (mV)', bins=np.arange(0, 40, 4)) plot_feature_hist(df, 'period', only_bursts=False, ax=axes[0][1], label=ch, xlabel='Cycle period (ms)', bins=np.arange(0, 250, 25)) plot_feature_hist(df, 'time_rdsym', only_bursts=False, ax=axes[1][0], label=ch, xlabel='Rise-decay asymmetry', bins=np.arange(0, 1, .1)) plot_feature_hist(df, 'time_ptsym', only_bursts=False, ax=axes[1][1], label=ch, xlabel='Peak-trough asymmetry', bins=np.arange(0, 1, .1))
[ 37811, 198, 18, 13, 337, 12161, 26491, 26993, 27018, 46567, 507, 198, 10052, 25609, 198, 198, 7293, 1133, 416, 13696, 3895, 24570, 1262, 337, 12161, 5563, 13, 198, 37811, 198, 198, 29113, 29113, 29113, 4242, 198, 2, 17267, 6400, 1095, 290, 8778, 6060, 198, 2, 34400, 32501, 198, 2, 198, 2, 3274, 1309, 338, 1330, 262, 10392, 356, 761, 13, 770, 1672, 8338, 319, 285, 710, 13, 198, 198, 29113, 29113, 29113, 4242, 198, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 198, 6738, 285, 710, 13, 952, 1330, 1100, 62, 1831, 62, 32041, 198, 6738, 285, 710, 13, 19608, 292, 1039, 1330, 6291, 198, 6738, 285, 710, 1330, 2298, 62, 354, 8961, 198, 198, 6738, 7669, 67, 2777, 13, 489, 912, 1330, 7110, 62, 2435, 62, 25076, 198, 6738, 416, 13696, 13, 8094, 1330, 24061, 62, 40890, 62, 17, 67, 198, 6738, 416, 13696, 13, 489, 912, 1330, 7110, 62, 30053, 62, 10034, 198, 198, 29113, 29113, 29113, 4242, 198, 198, 2, 22192, 3976, 286, 1393, 25, 262, 17130, 4097, 198, 69, 62, 26591, 796, 357, 23, 11, 1315, 8, 198, 198, 2, 3497, 262, 1366, 3108, 329, 262, 337, 12161, 1672, 1366, 198, 1831, 62, 69, 3672, 796, 6291, 13, 7890, 62, 6978, 3419, 1343, 31051, 44, 7156, 14, 39873, 14, 39873, 62, 3885, 4703, 62, 69, 2326, 12, 15, 12, 1821, 62, 1831, 13, 32041, 6, 198, 198, 2, 8778, 262, 2393, 286, 1672, 337, 12161, 1366, 198, 1831, 796, 1100, 62, 1831, 62, 32041, 7, 1831, 62, 69, 3672, 11, 662, 2220, 28, 17821, 11, 15942, 577, 28, 25101, 8, 198, 198, 2, 9683, 48749, 9619, 422, 262, 27039, 198, 1831, 796, 8246, 13, 27729, 62, 19199, 7, 28917, 28, 25101, 11, 304, 1533, 28, 17821, 11, 304, 519, 28, 25101, 11, 19607, 11639, 65, 5643, 11537, 198, 198, 2, 25339, 262, 19232, 2494, 422, 262, 1366, 198, 9501, 796, 8246, 13, 10951, 17816, 82, 19503, 80, 20520, 198, 198, 2, 8106, 284, 17130, 198, 1831, 796, 8246, 13, 24455, 7, 75, 62, 19503, 80, 28, 14202, 11, 289, 62, 19503, 80, 28, 1238, 2014, 198, 198, 2, 16163, 329, 13504, 1672, 9619, 286, 1366, 198, 354, 82, 796, 37250, 6500, 38, 657, 3682, 3256, 705, 6500, 38, 657, 3559, 3256, 705, 6500, 38, 657, 2598, 20520, 198, 83, 62, 9688, 796, 939, 405, 198, 83, 62, 11338, 796, 493, 7, 83, 62, 9688, 1343, 357, 940, 1635, 43458, 4008, 198, 198, 2, 29677, 281, 1672, 9619, 284, 7301, 198, 82, 9235, 11, 1661, 796, 8246, 13, 1136, 62, 7890, 7, 27729, 62, 354, 8961, 7, 1831, 13, 354, 62, 14933, 11, 442, 82, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 923, 28, 83, 62, 9688, 11, 2245, 28, 83, 62, 11338, 11, 1441, 62, 22355, 28, 17821, 8, 198, 198, 29113, 29113, 29113, 4242, 198, 2, 198, 2, 28114, 640, 2168, 329, 1123, 8296, 198, 2, 220, 27156, 27156, 4907, 93, 198, 2, 198, 2, 2735, 1309, 338, 766, 703, 1123, 6737, 3073, 287, 640, 13, 770, 3073, 588, 3210, 48749, 198, 2, 1366, 13, 198, 2, 198, 198, 29113, 29113, 29113, 4242, 198, 198, 2, 28114, 262, 6737, 198, 29487, 62, 2435, 62, 25076, 7, 22355, 11, 685, 82, 328, 1635, 352, 68, 21, 329, 43237, 287, 264, 9235, 4357, 14722, 28, 354, 82, 11, 3670, 11639, 6500, 38, 26484, 11537, 198, 198, 29113, 29113, 29113, 4242, 198, 2, 3082, 1133, 6772, 12, 1525, 12, 13696, 3033, 198, 2, 220, 27156, 15116, 8728, 4907, 93, 198, 2, 198, 2, 3423, 356, 779, 262, 416, 13696, 24061, 62, 40890, 2163, 284, 24061, 262, 6772, 12, 1525, 12, 198, 2, 6772, 3033, 286, 262, 1115, 10425, 13, 198, 2, 198, 198, 29113, 29113, 29113, 4242, 198, 198, 2, 5345, 10007, 329, 16215, 24969, 2870, 29404, 198, 400, 10126, 62, 46265, 22046, 796, 1391, 6, 696, 62, 69, 7861, 62, 400, 10126, 10354, 657, 13, 18, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 696, 62, 5936, 396, 1387, 62, 400, 10126, 10354, 657, 13, 19, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 41007, 62, 5936, 396, 1387, 62, 400, 10126, 10354, 657, 13, 20, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 2144, 18970, 8467, 62, 400, 10126, 10354, 657, 13, 23, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 1084, 62, 77, 62, 32503, 10354, 513, 92, 198, 198, 2, 13610, 257, 22155, 286, 6772, 3895, 1366, 37805, 11, 11188, 284, 1123, 6518, 198, 46265, 22046, 796, 8633, 7, 400, 10126, 62, 46265, 22046, 28, 400, 10126, 62, 46265, 22046, 11, 3641, 62, 2302, 260, 2611, 11639, 83, 740, 11537, 198, 198, 7568, 82, 796, 24061, 62, 40890, 62, 17, 67, 7, 82, 9235, 11, 43458, 11, 277, 62, 26591, 11, 16488, 28, 15, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 24061, 62, 40890, 62, 46265, 22046, 28, 46265, 22046, 8, 198, 198, 7568, 82, 796, 1391, 354, 25, 47764, 329, 47764, 11, 442, 287, 19974, 7, 7568, 82, 11, 442, 82, 38165, 198, 198, 29113, 29113, 29113, 4242, 198, 2, 198, 2, 28114, 3895, 24570, 198, 2, 220, 27156, 15116, 4907, 198, 2, 198, 2, 1081, 340, 4962, 503, 11, 4844, 286, 262, 9619, 287, 262, 285, 710, 1672, 6597, 290, 5874, 198, 2, 4876, 468, 6769, 687, 30372, 11973, 13, 2312, 1366, 547, 7723, 422, 257, 5448, 198, 2, 1048, 981, 484, 16399, 284, 307, 25386, 393, 2497, 14586, 654, 319, 257, 3159, 198, 2, 523, 428, 318, 407, 10059, 13, 198, 2, 198, 198, 29113, 29113, 29113, 4242, 198, 198, 5647, 11, 34197, 796, 458, 83, 13, 7266, 489, 1747, 7, 5647, 7857, 16193, 1314, 11, 1315, 828, 299, 8516, 28, 17, 11, 299, 4033, 82, 28, 17, 8, 198, 198, 1640, 442, 11, 47764, 287, 288, 9501, 13, 23814, 33529, 628, 220, 220, 220, 1303, 1874, 38765, 37188, 290, 2278, 3033, 198, 220, 220, 220, 47764, 17816, 37764, 62, 696, 20520, 796, 47764, 17816, 37764, 62, 696, 20520, 1635, 352, 68, 21, 198, 220, 220, 220, 47764, 17816, 41007, 20520, 796, 47764, 17816, 41007, 20520, 1220, 43458, 1635, 8576, 628, 220, 220, 220, 1303, 28114, 3895, 1554, 26836, 198, 220, 220, 220, 7110, 62, 30053, 62, 10034, 7, 7568, 11, 705, 37764, 62, 696, 3256, 691, 62, 6236, 6448, 28, 25101, 11, 7877, 28, 897, 274, 58, 15, 7131, 15, 4357, 6167, 28, 354, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 18242, 11639, 20418, 2375, 37188, 357, 76, 53, 8, 3256, 41701, 28, 37659, 13, 283, 858, 7, 15, 11, 2319, 11, 604, 4008, 628, 220, 220, 220, 7110, 62, 30053, 62, 10034, 7, 7568, 11, 705, 41007, 3256, 691, 62, 6236, 6448, 28, 25101, 11, 7877, 28, 897, 274, 58, 15, 7131, 16, 4357, 6167, 28, 354, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 18242, 11639, 20418, 2375, 2278, 357, 907, 8, 3256, 41701, 28, 37659, 13, 283, 858, 7, 15, 11, 8646, 11, 1679, 4008, 628, 220, 220, 220, 7110, 62, 30053, 62, 10034, 7, 7568, 11, 705, 2435, 62, 4372, 37047, 3256, 691, 62, 6236, 6448, 28, 25101, 11, 7877, 28, 897, 274, 58, 16, 7131, 15, 4357, 6167, 28, 354, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 18242, 11639, 49, 786, 12, 12501, 323, 30372, 11973, 3256, 41701, 28, 37659, 13, 283, 858, 7, 15, 11, 352, 11, 764, 16, 4008, 628, 220, 220, 220, 7110, 62, 30053, 62, 10034, 7, 7568, 11, 705, 2435, 62, 457, 37047, 3256, 691, 62, 6236, 6448, 28, 25101, 11, 7877, 28, 897, 274, 58, 16, 7131, 16, 4357, 6167, 28, 354, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 18242, 11639, 6435, 461, 12, 83, 740, 30372, 11973, 3256, 41701, 28, 37659, 13, 283, 858, 7, 15, 11, 352, 11, 764, 16, 4008, 198 ]
3.156271
1,459
import string #Translate in python has 2 pieces, a translation table and the translate call. #The translation table is a list of 256 characters. Changing the order of the #characters is used for mapping norm = string.maketrans('', '') #builds list of all characters print len(norm) #256 characters print string.maketrans('', '')[100] #is the letter d print string.maketrans('', '')[101] #is the letter e print string.maketrans('d','e')[100] #is now also the letter e #The second piece of translate, is the translate function itself. #The translate function has 3 parts: #1)string to translate #2)translation table -- always required #3)deletion list #Let's start simple and build #use translate to get groups of characters #This can be done because translate's 3rd arg is to delete characters #build list of all characters norm = string.maketrans('', '') #delete letters non_letters = string.translate(norm, norm, string.letters) #then take the list of non_letters and remove digits non_alnum = string.translate(non_letters, all_chars, string.digits) #You'll notice the length shrinks appropriately as we delete print len(all_chars),'\t256-(26*2 letters)=',len(non_letters),'\t204-10 digits=',len(non_alnum) #Norm is a handy list to have around if all you are going to do is delete #characters. It would be nice if translate assumed Norm if the translation table arg was null. #To translate all non-text to a '#', you have to have a one to one mapping for #each character in translate. #Thus we make use of the python * operator to make a string of '#' #of the appropriate length trans_nontext=string.maketrans(non_alnum,'#'*len(non_alnum)) #A full program to examine strings in a binary file for Regents # would look like this. We use regular expressions to convert all groups # of '#' to a single '#' import string,re norm = string.maketrans('', '') #builds list of all characters non_alnum = string.translate(norm, norm, string.letters+string.digits) #now examine the binary file. If Regents is in it. It contains the copyright ftp_file=open('f:/tmp/ftp.exe','rb').read() trans_nontext=string.maketrans(non_alnum,'#'*len(non_alnum)) cleaned=string.translate(ftp_file, trans_nontext) for i in re.sub('#+','#',cleaned).split('#'): if i.find('Regents')!=-1: print 'found it!',i break if i>5: print i
[ 11748, 4731, 198, 198, 2, 8291, 17660, 287, 21015, 468, 362, 5207, 11, 257, 11059, 3084, 290, 262, 15772, 869, 13, 198, 2, 464, 11059, 3084, 318, 257, 1351, 286, 17759, 3435, 13, 33680, 262, 1502, 286, 262, 1303, 10641, 19858, 318, 973, 329, 16855, 198, 198, 27237, 796, 4731, 13, 76, 461, 21879, 504, 10786, 3256, 10148, 8, 1303, 11249, 82, 1351, 286, 477, 3435, 198, 4798, 18896, 7, 27237, 8, 1303, 11645, 3435, 198, 198, 4798, 4731, 13, 76, 461, 21879, 504, 10786, 3256, 10148, 38381, 3064, 60, 1303, 271, 262, 3850, 288, 198, 4798, 4731, 13, 76, 461, 21879, 504, 10786, 3256, 10148, 38381, 8784, 60, 1303, 271, 262, 3850, 304, 198, 4798, 4731, 13, 76, 461, 21879, 504, 10786, 67, 41707, 68, 11537, 58, 3064, 60, 1303, 271, 783, 220, 635, 262, 3850, 304, 198, 198, 2, 464, 1218, 3704, 286, 15772, 11, 318, 262, 15772, 2163, 2346, 13, 198, 2, 464, 15772, 2163, 468, 513, 3354, 25, 198, 198, 2, 16, 8, 8841, 284, 15772, 198, 2, 17, 8, 41519, 3084, 220, 1377, 1464, 2672, 198, 2, 18, 8, 2934, 1616, 295, 1351, 198, 198, 2, 5756, 338, 923, 2829, 290, 1382, 220, 198, 2, 1904, 15772, 284, 651, 2628, 286, 3435, 198, 2, 1212, 460, 307, 1760, 780, 15772, 338, 513, 4372, 1822, 318, 284, 12233, 3435, 198, 198, 2, 11249, 1351, 286, 477, 3435, 198, 27237, 796, 4731, 13, 76, 461, 21879, 504, 10786, 3256, 10148, 8, 220, 198, 198, 2, 33678, 7475, 198, 13159, 62, 15653, 796, 4731, 13, 7645, 17660, 7, 27237, 11, 2593, 11, 4731, 13, 15653, 8, 220, 198, 198, 2, 8524, 1011, 262, 1351, 286, 1729, 62, 15653, 290, 4781, 19561, 198, 13159, 62, 282, 22510, 796, 4731, 13, 7645, 17660, 7, 13159, 62, 15653, 11, 477, 62, 354, 945, 11, 4731, 13, 12894, 896, 8, 220, 198, 198, 2, 1639, 1183, 4003, 262, 4129, 10157, 2973, 20431, 355, 356, 12233, 198, 4798, 18896, 7, 439, 62, 354, 945, 828, 6, 59, 83, 11645, 30420, 2075, 9, 17, 7475, 47505, 3256, 11925, 7, 13159, 62, 15653, 828, 6, 59, 83, 18638, 12, 940, 19561, 28, 3256, 11925, 7, 13159, 62, 282, 22510, 8, 198, 198, 2, 35393, 318, 257, 15728, 1351, 284, 423, 1088, 611, 477, 345, 389, 1016, 284, 466, 318, 12233, 220, 198, 2, 10641, 19858, 13, 632, 561, 307, 3621, 611, 15772, 9672, 11220, 611, 262, 11059, 3084, 1822, 373, 9242, 13, 198, 198, 2, 2514, 15772, 477, 1729, 12, 5239, 284, 257, 705, 2, 3256, 345, 423, 284, 423, 257, 530, 284, 530, 16855, 329, 1303, 27379, 2095, 287, 15772, 13, 198, 2, 19093, 356, 787, 779, 286, 262, 21015, 1635, 10088, 284, 787, 257, 4731, 286, 705, 2, 6, 198, 2, 1659, 262, 5035, 4129, 198, 7645, 62, 13159, 5239, 28, 8841, 13, 76, 461, 21879, 504, 7, 13159, 62, 282, 22510, 4032, 2, 6, 9, 11925, 7, 13159, 62, 282, 22510, 4008, 198, 198, 2, 32, 1336, 1430, 284, 10716, 13042, 287, 257, 13934, 2393, 329, 3310, 658, 198, 2, 561, 804, 588, 428, 13, 775, 779, 3218, 14700, 284, 10385, 477, 2628, 198, 2, 286, 705, 2, 6, 284, 257, 2060, 705, 2, 6, 198, 198, 11748, 4731, 11, 260, 198, 198, 27237, 796, 4731, 13, 76, 461, 21879, 504, 10786, 3256, 10148, 8, 1303, 11249, 82, 1351, 286, 477, 3435, 198, 13159, 62, 282, 22510, 796, 4731, 13, 7645, 17660, 7, 27237, 11, 2593, 11, 4731, 13, 15653, 10, 8841, 13, 12894, 896, 8, 220, 198, 198, 2, 2197, 10716, 262, 13934, 2393, 13, 1002, 3310, 658, 318, 287, 340, 13, 632, 4909, 262, 6634, 198, 701, 79, 62, 7753, 28, 9654, 10786, 69, 14079, 22065, 14, 701, 79, 13, 13499, 41707, 26145, 27691, 961, 3419, 198, 198, 7645, 62, 13159, 5239, 28, 8841, 13, 76, 461, 21879, 504, 7, 13159, 62, 282, 22510, 4032, 2, 6, 9, 11925, 7, 13159, 62, 282, 22510, 4008, 198, 2375, 22739, 28, 8841, 13, 7645, 17660, 7, 701, 79, 62, 7753, 11, 1007, 62, 13159, 5239, 8, 198, 1640, 1312, 287, 220, 302, 13, 7266, 10786, 2, 10, 41707, 2, 3256, 2375, 22739, 737, 35312, 10786, 2, 6, 2599, 198, 220, 220, 220, 611, 1312, 13, 19796, 10786, 8081, 658, 11537, 0, 10779, 16, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 705, 9275, 340, 0, 3256, 72, 198, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 611, 1312, 29, 20, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 1312, 198 ]
3.119048
756
from django.urls import path from manti_by.apps.gallery import views urlpatterns = [path("", views.index, name="gallery_list")]
[ 6738, 42625, 14208, 13, 6371, 82, 1330, 3108, 198, 198, 6738, 285, 17096, 62, 1525, 13, 18211, 13, 24460, 1330, 5009, 628, 198, 6371, 33279, 82, 796, 685, 6978, 7203, 1600, 5009, 13, 9630, 11, 1438, 2625, 24460, 62, 4868, 4943, 60, 198 ]
3.046512
43
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved import copy from dataclasses import dataclass from typing import Any, Dict, List, Optional from omegaconf import DictConfig, OmegaConf from hydra.core.object_type import ObjectType from hydra.core.singleton import Singleton from hydra.plugins.config_source import ConfigLoadError @dataclass
[ 2, 15069, 357, 66, 8, 3203, 11, 3457, 13, 290, 663, 29116, 13, 1439, 6923, 33876, 198, 11748, 4866, 198, 6738, 4818, 330, 28958, 1330, 4818, 330, 31172, 198, 6738, 19720, 1330, 4377, 11, 360, 713, 11, 7343, 11, 32233, 198, 198, 6738, 267, 28917, 7807, 69, 1330, 360, 713, 16934, 11, 19839, 18546, 198, 198, 6738, 25039, 13, 7295, 13, 15252, 62, 4906, 1330, 9515, 6030, 198, 6738, 25039, 13, 7295, 13, 12215, 10565, 1330, 5573, 10565, 198, 6738, 25039, 13, 37390, 13, 11250, 62, 10459, 1330, 17056, 8912, 12331, 628, 198, 198, 31, 19608, 330, 31172, 628 ]
3.717172
99
# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. # """This module contains Google Cloud Looker sensors.""" from typing import TYPE_CHECKING, Optional from airflow.exceptions import AirflowException from airflow.providers.google.cloud.hooks.looker import JobStatus, LookerHook from airflow.sensors.base import BaseSensorOperator if TYPE_CHECKING: from airflow.utils.context import Context class LookerCheckPdtBuildSensor(BaseSensorOperator): """ Check for the state of a previously submitted PDT materialization job. :param materialization_id: Required. The materialization job ID to poll. (templated) :param looker_conn_id: Required. The connection ID to use connecting to Looker. :param cancel_on_kill: Optional. Flag which indicates whether cancel the hook's job or not, when on_kill is called. """ template_fields = ["materialization_id"]
[ 2, 198, 2, 49962, 284, 262, 24843, 10442, 5693, 357, 1921, 37, 8, 739, 530, 198, 2, 393, 517, 18920, 5964, 11704, 13, 220, 4091, 262, 28536, 2393, 198, 2, 9387, 351, 428, 670, 329, 3224, 1321, 198, 2, 5115, 6634, 9238, 13, 220, 383, 7054, 37, 16625, 428, 2393, 198, 2, 284, 345, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 198, 2, 366, 34156, 15341, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 198, 2, 351, 262, 13789, 13, 220, 921, 743, 7330, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 198, 2, 3788, 9387, 739, 262, 13789, 318, 9387, 319, 281, 198, 2, 366, 1921, 3180, 1, 29809, 1797, 11, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 198, 2, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 220, 4091, 262, 13789, 329, 262, 198, 2, 2176, 3303, 15030, 21627, 290, 11247, 198, 2, 739, 262, 13789, 13, 198, 2, 198, 37811, 1212, 8265, 4909, 3012, 10130, 6803, 263, 15736, 526, 15931, 198, 198, 6738, 19720, 1330, 41876, 62, 50084, 2751, 11, 32233, 198, 198, 6738, 45771, 13, 1069, 11755, 1330, 3701, 11125, 16922, 198, 6738, 45771, 13, 15234, 4157, 13, 13297, 13, 17721, 13, 25480, 82, 13, 5460, 263, 1330, 15768, 19580, 11, 6803, 263, 39, 566, 198, 6738, 45771, 13, 82, 641, 669, 13, 8692, 1330, 7308, 47864, 18843, 1352, 198, 198, 361, 41876, 62, 50084, 2751, 25, 198, 220, 220, 220, 422, 45771, 13, 26791, 13, 22866, 1330, 30532, 628, 198, 4871, 6803, 263, 9787, 47, 28664, 15580, 47864, 7, 14881, 47864, 18843, 1352, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 6822, 329, 262, 1181, 286, 257, 4271, 8948, 28288, 2587, 1634, 1693, 13, 628, 220, 220, 220, 1058, 17143, 2587, 1634, 62, 312, 25, 20906, 13, 383, 2587, 1634, 1693, 4522, 284, 3278, 13, 357, 11498, 489, 515, 8, 198, 220, 220, 220, 1058, 17143, 804, 263, 62, 37043, 62, 312, 25, 20906, 13, 383, 4637, 4522, 284, 779, 14320, 284, 6803, 263, 13, 198, 220, 220, 220, 1058, 17143, 14241, 62, 261, 62, 12728, 25, 32233, 13, 19762, 543, 9217, 1771, 14241, 262, 8011, 338, 1693, 393, 407, 11, 198, 220, 220, 220, 220, 220, 220, 220, 618, 319, 62, 12728, 318, 1444, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 11055, 62, 25747, 796, 14631, 33665, 1634, 62, 312, 8973, 198 ]
3.723112
437
# # Tests the Component class bindings # import unittest from test_resources import file_contents if __name__ == '__main__': unittest.main()
[ 2, 198, 2, 30307, 262, 35100, 1398, 34111, 198, 2, 198, 11748, 555, 715, 395, 198, 198, 6738, 1332, 62, 37540, 1330, 2393, 62, 3642, 658, 628, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 555, 715, 395, 13, 12417, 3419, 198 ]
2.98
50
import pandas as pd from ..utils._docs import fill_doc from .average import add_average_column @fill_doc def ratio(df_alpha, df_delta): """Compute the ratio of alpha/delta band power. Parameters ---------- %(df_psd)s Contains alpha-band PSD. %(df_psd)s Contains delta-band PSD. Returns ------- df : DataFrame PSD ratio alpha/delta averaged by bin and channels. Columns: participant : int - Participant ID session : int - Session ID (1 to 15) run : int - Run ID phase : str - 'regulation' or 'non-regulation' idx : ID of the phase within the run (0 to 9) ratio : float - Averaged ratio alpha/delta """ if "avg" not in df_alpha.columns: df_alpha = add_average_column(df_alpha) if "avg" not in df_delta.columns: df_alpha = add_average_column(df_delta) # check keys keys = ["participant", "session", "run", "phase", "idx"] assert len(set(keys).intersection(df_alpha.columns)) == len(keys) assert len(set(keys).intersection(df_delta.columns)) == len(keys) assert sorted(df_alpha.columns) == sorted(df_delta.columns) # container for new df with ratio of power data = {key: [] for key in keys + ["ratio"]} ratio = df_alpha["avg"] / df_delta["avg"] ratio = ratio[ratio.notna()] # fill new df dict for i, r in ratio.iteritems(): alpha_ = df_alpha.loc[i] delta_ = df_delta.loc[i] # sanity-check try: assert alpha_["participant"] == delta_["participant"] assert alpha_["session"] == delta_["session"] assert alpha_["run"] == delta_["run"] assert alpha_["phase"] == delta_["phase"] assert alpha_["idx"] == delta_["idx"] except AssertionError: continue data["participant"].append(alpha_["participant"]) data["session"].append(alpha_["session"]) data["run"].append(alpha_["run"]) data["phase"].append(alpha_["phase"]) data["idx"].append(alpha_["idx"]) data["ratio"].append(r) # create df df = pd.DataFrame.from_dict(data, orient="columns") return df
[ 11748, 19798, 292, 355, 279, 67, 198, 198, 6738, 11485, 26791, 13557, 31628, 1330, 6070, 62, 15390, 198, 6738, 764, 23913, 1330, 751, 62, 23913, 62, 28665, 628, 198, 31, 20797, 62, 15390, 198, 4299, 8064, 7, 7568, 62, 26591, 11, 47764, 62, 67, 12514, 2599, 198, 220, 220, 220, 37227, 7293, 1133, 262, 8064, 286, 17130, 14, 67, 12514, 4097, 1176, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 4064, 7, 7568, 62, 862, 67, 8, 82, 198, 220, 220, 220, 220, 220, 220, 220, 49850, 17130, 12, 3903, 6599, 35, 13, 198, 220, 220, 220, 4064, 7, 7568, 62, 862, 67, 8, 82, 198, 220, 220, 220, 220, 220, 220, 220, 49850, 25979, 12, 3903, 6599, 35, 13, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 47764, 1058, 6060, 19778, 198, 220, 220, 220, 220, 220, 220, 220, 6599, 35, 8064, 17130, 14, 67, 12514, 16449, 416, 9874, 290, 9619, 13, 29201, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18399, 1058, 493, 532, 29880, 4522, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6246, 1058, 493, 532, 23575, 4522, 357, 16, 284, 1315, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1057, 1058, 493, 532, 5660, 4522, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7108, 1058, 965, 532, 705, 27727, 6, 393, 705, 13159, 12, 27727, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4686, 87, 1058, 4522, 286, 262, 7108, 1626, 262, 1057, 357, 15, 284, 860, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8064, 1058, 12178, 532, 317, 332, 1886, 8064, 17130, 14, 67, 12514, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 366, 615, 70, 1, 407, 287, 47764, 62, 26591, 13, 28665, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 47764, 62, 26591, 796, 751, 62, 23913, 62, 28665, 7, 7568, 62, 26591, 8, 198, 220, 220, 220, 611, 366, 615, 70, 1, 407, 287, 47764, 62, 67, 12514, 13, 28665, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 47764, 62, 26591, 796, 751, 62, 23913, 62, 28665, 7, 7568, 62, 67, 12514, 8, 628, 220, 220, 220, 1303, 2198, 8251, 198, 220, 220, 220, 8251, 796, 14631, 48013, 415, 1600, 366, 29891, 1600, 366, 5143, 1600, 366, 40715, 1600, 366, 312, 87, 8973, 198, 220, 220, 220, 6818, 18896, 7, 2617, 7, 13083, 737, 3849, 5458, 7, 7568, 62, 26591, 13, 28665, 82, 4008, 6624, 18896, 7, 13083, 8, 198, 220, 220, 220, 6818, 18896, 7, 2617, 7, 13083, 737, 3849, 5458, 7, 7568, 62, 67, 12514, 13, 28665, 82, 4008, 6624, 18896, 7, 13083, 8, 198, 220, 220, 220, 6818, 23243, 7, 7568, 62, 26591, 13, 28665, 82, 8, 6624, 23243, 7, 7568, 62, 67, 12514, 13, 28665, 82, 8, 628, 220, 220, 220, 1303, 9290, 329, 649, 47764, 351, 8064, 286, 1176, 198, 220, 220, 220, 1366, 796, 1391, 2539, 25, 17635, 329, 1994, 287, 8251, 1343, 14631, 10366, 952, 8973, 92, 628, 220, 220, 220, 8064, 796, 47764, 62, 26591, 14692, 615, 70, 8973, 1220, 47764, 62, 67, 12514, 14692, 615, 70, 8973, 198, 220, 220, 220, 8064, 796, 8064, 58, 10366, 952, 13, 1662, 2616, 3419, 60, 628, 220, 220, 220, 1303, 6070, 649, 47764, 8633, 198, 220, 220, 220, 329, 1312, 11, 374, 287, 8064, 13, 2676, 23814, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 17130, 62, 796, 47764, 62, 26591, 13, 17946, 58, 72, 60, 198, 220, 220, 220, 220, 220, 220, 220, 25979, 62, 796, 47764, 62, 67, 12514, 13, 17946, 58, 72, 60, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 34182, 12, 9122, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 17130, 62, 14692, 48013, 415, 8973, 6624, 25979, 62, 14692, 48013, 415, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 17130, 62, 14692, 29891, 8973, 6624, 25979, 62, 14692, 29891, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 17130, 62, 14692, 5143, 8973, 6624, 25979, 62, 14692, 5143, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 17130, 62, 14692, 40715, 8973, 6624, 25979, 62, 14692, 40715, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 17130, 62, 14692, 312, 87, 8973, 6624, 25979, 62, 14692, 312, 87, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 2195, 861, 295, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 1366, 14692, 48013, 415, 1, 4083, 33295, 7, 26591, 62, 14692, 48013, 415, 8973, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 14692, 29891, 1, 4083, 33295, 7, 26591, 62, 14692, 29891, 8973, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 14692, 5143, 1, 4083, 33295, 7, 26591, 62, 14692, 5143, 8973, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 14692, 40715, 1, 4083, 33295, 7, 26591, 62, 14692, 40715, 8973, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 14692, 312, 87, 1, 4083, 33295, 7, 26591, 62, 14692, 312, 87, 8973, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 14692, 10366, 952, 1, 4083, 33295, 7, 81, 8, 628, 220, 220, 220, 1303, 2251, 47764, 198, 220, 220, 220, 47764, 796, 279, 67, 13, 6601, 19778, 13, 6738, 62, 11600, 7, 7890, 11, 11367, 2625, 28665, 82, 4943, 198, 220, 220, 220, 1441, 47764, 198 ]
2.291022
969
import numpy as np import pytest import numgrad as ng @pytest.mark.parametrize('function, expect', [ (lambda: np.asarray(ng.Variable([0, 1])), np.array([0., 1.])), (lambda: 0. in ng.Variable(0.), TypeError), (lambda: 0. in ng.Variable([0.]), True), (lambda: 1. in ng.Variable([[0., 1.], [2., 3.]]), True), (lambda: -1. not in ng.Variable([[0., 1.], [2., 3.]]), True), (lambda: float(ng.Variable(-1)), -1.), (lambda: float(ng.Variable([0, -1])), TypeError), (lambda: int(ng.Variable(-1)), -1), (lambda: int(ng.Variable([0, -1])), TypeError), (lambda: len(ng.Variable(-1)), TypeError), (lambda: len(ng.Variable([0, -1])), 2), (lambda: ng.Variable(0.).item(), 0.), (lambda: ng.Variable([0.]).item(), 0.), (lambda: ng.Variable([0., 1.]).item(), ValueError), (lambda: ng.Variable(1).ndim, 0), (lambda: ng.Variable([0, 1]).ndim, 1), (lambda: ng.Variable(0).shape, tuple()), (lambda: ng.Variable([0, 1]).shape, (2,)), (lambda: ng.Variable(0).size, 1), (lambda: ng.Variable([0, 1]).size, 2), (lambda: ng.Variable(0.).tolist(), 0.), (lambda: ng.Variable([0., 1.]).tolist(), [0., 1.]), (lambda: ng.Variable([[0., 1.], [2., 3.]]).tolist(), [[0., 1.], [2., 3.]]), ]) @pytest.mark.parametrize('self, method, args', [ (ng.Variable([1, -1]), '__iadd__', 1), (ng.Variable([1, -1]), '__isub__', 1), (ng.Variable([1, -1]), '__imul__', 2), (ng.Variable([1, -1]), '__itruediv__', 2), ]) if __name__ == '__main__': pytest.main([__file__])
[ 11748, 299, 32152, 355, 45941, 198, 11748, 12972, 9288, 198, 198, 11748, 997, 9744, 355, 23370, 628, 628, 628, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 10786, 8818, 11, 1607, 3256, 685, 198, 220, 220, 220, 357, 50033, 25, 45941, 13, 292, 18747, 7, 782, 13, 43015, 26933, 15, 11, 352, 12962, 828, 45941, 13, 18747, 26933, 15, 1539, 352, 8183, 36911, 198, 220, 220, 220, 357, 50033, 25, 657, 13, 287, 23370, 13, 43015, 7, 15, 12179, 5994, 12331, 828, 198, 220, 220, 220, 357, 50033, 25, 657, 13, 287, 23370, 13, 43015, 26933, 15, 8183, 828, 6407, 828, 198, 220, 220, 220, 357, 50033, 25, 352, 13, 287, 23370, 13, 43015, 26933, 58, 15, 1539, 352, 13, 4357, 685, 17, 1539, 513, 8183, 46570, 6407, 828, 198, 220, 220, 220, 357, 50033, 25, 532, 16, 13, 407, 287, 23370, 13, 43015, 26933, 58, 15, 1539, 352, 13, 4357, 685, 17, 1539, 513, 8183, 46570, 6407, 828, 198, 220, 220, 220, 357, 50033, 25, 12178, 7, 782, 13, 43015, 32590, 16, 36911, 532, 16, 12179, 198, 220, 220, 220, 357, 50033, 25, 12178, 7, 782, 13, 43015, 26933, 15, 11, 532, 16, 12962, 828, 5994, 12331, 828, 198, 220, 220, 220, 357, 50033, 25, 493, 7, 782, 13, 43015, 32590, 16, 36911, 532, 16, 828, 198, 220, 220, 220, 357, 50033, 25, 493, 7, 782, 13, 43015, 26933, 15, 11, 532, 16, 12962, 828, 5994, 12331, 828, 198, 220, 220, 220, 357, 50033, 25, 18896, 7, 782, 13, 43015, 32590, 16, 36911, 5994, 12331, 828, 198, 220, 220, 220, 357, 50033, 25, 18896, 7, 782, 13, 43015, 26933, 15, 11, 532, 16, 12962, 828, 362, 828, 198, 220, 220, 220, 357, 50033, 25, 23370, 13, 43015, 7, 15, 15729, 9186, 22784, 657, 12179, 198, 220, 220, 220, 357, 50033, 25, 23370, 13, 43015, 26933, 15, 8183, 737, 9186, 22784, 657, 12179, 198, 220, 220, 220, 357, 50033, 25, 23370, 13, 43015, 26933, 15, 1539, 352, 8183, 737, 9186, 22784, 11052, 12331, 828, 198, 220, 220, 220, 357, 50033, 25, 23370, 13, 43015, 7, 16, 737, 358, 320, 11, 657, 828, 198, 220, 220, 220, 357, 50033, 25, 23370, 13, 43015, 26933, 15, 11, 352, 35944, 358, 320, 11, 352, 828, 198, 220, 220, 220, 357, 50033, 25, 23370, 13, 43015, 7, 15, 737, 43358, 11, 46545, 3419, 828, 198, 220, 220, 220, 357, 50033, 25, 23370, 13, 43015, 26933, 15, 11, 352, 35944, 43358, 11, 357, 17, 35751, 828, 198, 220, 220, 220, 357, 50033, 25, 23370, 13, 43015, 7, 15, 737, 7857, 11, 352, 828, 198, 220, 220, 220, 357, 50033, 25, 23370, 13, 43015, 26933, 15, 11, 352, 35944, 7857, 11, 362, 828, 198, 220, 220, 220, 357, 50033, 25, 23370, 13, 43015, 7, 15, 15729, 83, 349, 396, 22784, 657, 12179, 198, 220, 220, 220, 357, 50033, 25, 23370, 13, 43015, 26933, 15, 1539, 352, 8183, 737, 83, 349, 396, 22784, 685, 15, 1539, 352, 8183, 828, 198, 220, 220, 220, 357, 50033, 25, 23370, 13, 43015, 26933, 58, 15, 1539, 352, 13, 4357, 685, 17, 1539, 513, 8183, 35944, 83, 349, 396, 22784, 16410, 15, 1539, 352, 13, 4357, 685, 17, 1539, 513, 8183, 46570, 198, 12962, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 10786, 944, 11, 2446, 11, 26498, 3256, 685, 198, 220, 220, 220, 357, 782, 13, 43015, 26933, 16, 11, 532, 16, 46570, 705, 834, 72, 2860, 834, 3256, 352, 828, 198, 220, 220, 220, 357, 782, 13, 43015, 26933, 16, 11, 532, 16, 46570, 705, 834, 271, 549, 834, 3256, 352, 828, 198, 220, 220, 220, 357, 782, 13, 43015, 26933, 16, 11, 532, 16, 46570, 705, 834, 320, 377, 834, 3256, 362, 828, 198, 220, 220, 220, 357, 782, 13, 43015, 26933, 16, 11, 532, 16, 46570, 705, 834, 270, 21556, 452, 834, 3256, 362, 828, 198, 12962, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 12972, 9288, 13, 12417, 26933, 834, 7753, 834, 12962, 198 ]
2.289318
674
# From https://stackoverflow.com/questions/30988033/ # sending-live-video-frame-over-network-in-python-opencv from numpysocket import NumpySocket import cv2 npSocket = NumpySocket() npSocket.startClient(9999) # Read until video is completed while True: # Capture frame-by-frame frame = npSocket.recieveNumpy() cv2.imshow('Frame', frame) # Press Q on keyboard to exit if cv2.waitKey(25) & 0xFF == ord('q'): break npSocket.endServer() print("Closing")
[ 2, 3574, 3740, 1378, 25558, 2502, 11125, 13, 785, 14, 6138, 507, 14, 1270, 4089, 1795, 2091, 14, 198, 2, 220, 220, 220, 220, 220, 7216, 12, 12583, 12, 15588, 12, 14535, 12, 2502, 12, 27349, 12, 259, 12, 29412, 12, 9654, 33967, 198, 198, 6738, 299, 931, 893, 5459, 1330, 399, 32152, 39105, 198, 11748, 269, 85, 17, 198, 198, 37659, 39105, 796, 399, 32152, 39105, 3419, 198, 37659, 39105, 13, 9688, 11792, 7, 24214, 8, 198, 198, 2, 4149, 1566, 2008, 318, 5668, 198, 4514, 6407, 25, 198, 220, 220, 220, 1303, 31793, 5739, 12, 1525, 12, 14535, 198, 220, 220, 220, 5739, 796, 45941, 39105, 13, 8344, 12311, 45, 32152, 3419, 198, 220, 220, 220, 269, 85, 17, 13, 320, 12860, 10786, 19778, 3256, 5739, 8, 628, 220, 220, 220, 1303, 4332, 1195, 319, 10586, 284, 220, 8420, 198, 220, 220, 220, 611, 269, 85, 17, 13, 17077, 9218, 7, 1495, 8, 1222, 657, 87, 5777, 6624, 2760, 10786, 80, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 198, 37659, 39105, 13, 437, 10697, 3419, 198, 4798, 7203, 2601, 2752, 4943, 198 ]
2.587302
189
import datetime, os, sys import subprocess #### #### #### #### #### #### Functions #### #### #### #### #### #### #### #### #### #### #### #### Main #### #### #### #### #### #### try: ## Variables initialization targetDirectory = GetTargetDirectory() alternativeDate = GetAlternativeDate() isRecursiveSearch = GetIsRecursiveSearch() ## Main command = ["./main.exe", "--dir", targetDirectory] if isinstance(alternativeDate, datetime.date): command.extend( ["--date", alternativeDate.isoformat() ] ) if isRecursiveSearch is True: command.append("-r") subprocess.call(command) except KeyboardInterrupt: pass finally: ExitHandler()
[ 11748, 4818, 8079, 11, 28686, 11, 25064, 198, 11748, 850, 14681, 628, 198, 4242, 1303, 21017, 1303, 21017, 1303, 21017, 1303, 21017, 220, 198, 4242, 40480, 1303, 21017, 220, 198, 4242, 1303, 21017, 1303, 21017, 1303, 21017, 1303, 21017, 220, 628, 628, 628, 198, 198, 4242, 1303, 21017, 1303, 21017, 1303, 21017, 1303, 21017, 220, 198, 4242, 8774, 1303, 21017, 220, 198, 4242, 1303, 21017, 1303, 21017, 1303, 21017, 1303, 21017, 220, 198, 28311, 25, 198, 220, 220, 220, 22492, 15965, 2977, 37588, 198, 220, 220, 220, 2496, 43055, 796, 3497, 21745, 43055, 3419, 198, 220, 220, 220, 5559, 10430, 796, 3497, 49788, 10430, 3419, 198, 220, 220, 220, 318, 6690, 30753, 18243, 796, 3497, 3792, 6690, 30753, 18243, 3419, 198, 220, 220, 220, 22492, 8774, 198, 220, 220, 220, 3141, 796, 685, 1911, 14, 12417, 13, 13499, 1600, 366, 438, 15908, 1600, 2496, 43055, 60, 198, 220, 220, 220, 611, 318, 39098, 7, 33645, 876, 10430, 11, 4818, 8079, 13, 4475, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 3141, 13, 2302, 437, 7, 14631, 438, 4475, 1600, 5559, 10430, 13, 26786, 18982, 3419, 2361, 1267, 198, 220, 220, 220, 611, 318, 6690, 30753, 18243, 318, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3141, 13, 33295, 7203, 12, 81, 4943, 198, 220, 220, 220, 850, 14681, 13, 13345, 7, 21812, 8, 198, 16341, 31973, 9492, 3622, 25, 198, 220, 220, 220, 1208, 198, 69, 3289, 25, 198, 220, 220, 220, 29739, 25060, 3419, 198 ]
2.819277
249
from os import environ import pytest from opentsdb import TSDBClient, TSDBConnectProtocols, Counter @pytest.fixture @pytest.fixture @pytest.fixture @pytest.fixture @pytest.fixture @pytest.fixture
[ 6738, 28686, 1330, 551, 2268, 198, 198, 11748, 12972, 9288, 198, 198, 6738, 1034, 658, 9945, 1330, 309, 10305, 33, 11792, 11, 309, 10305, 2749, 261, 1606, 19703, 4668, 82, 11, 15034, 628, 198, 31, 9078, 9288, 13, 69, 9602, 628, 198, 31, 9078, 9288, 13, 69, 9602, 628, 198, 31, 9078, 9288, 13, 69, 9602, 628, 198, 31, 9078, 9288, 13, 69, 9602, 628, 198, 198, 31, 9078, 9288, 13, 69, 9602, 628, 198, 31, 9078, 9288, 13, 69, 9602, 198 ]
2.573171
82
from django.apps import AppConfig
[ 6738, 42625, 14208, 13, 18211, 1330, 2034, 16934, 628 ]
3.888889
9
#!/usr/bin/env python2.7 import numpy as np import os import random import sys from scipy.ndimage import imread dataset = sys.argv[1] outputdir = sys.argv[2] if len(sys.argv) == 3 else 'data' minibatches = 10 minibatch_size = 500 split_channels = lambda x: np.array((x[:,:,0], x[:,:,1], x[:,:,2])) images = os.listdir(dataset) images.sort() image_groups = [images[i:i+4] for i in xrange(0, len(images), 4)] path = lambda p: os.path.join(dataset, p) records = [] random.seed() for image_group in image_groups: random.shuffle(image_group) a_file, b_file = image_group[:2] a_array = split_channels(imread(path(a_file))) b_array = split_channels(imread(path(b_file))) records.append((a_array, b_array, np.uint8(1))) a_file, b_file = image_group[2:] a_array = split_channels(imread(path(a_file))) b_array = split_channels(imread(path(b_file))) records.append((a_array, b_array, np.uint8(1))) images = os.listdir(dataset) random.shuffle(images) images_2 = os.listdir(dataset) random.shuffle(images_2) for a_file, b_file in zip(images, images_2): a_array = split_channels(imread(path(a_file))) b_array = split_channels(imread(path(b_file))) label = 1 if a_file[:4] == b_file[:4] else 0 records.append((a_array, b_array, np.uint8(0))) random.shuffle(records) for i in xrange(minibatches): outfile_path = os.path.join(outputdir, 'data_batch_{}.bin'.format(i+1)) with open(outfile_path, 'wb') as fh: for j in xrange(i*minibatch_size, (i+1)*minibatch_size): for r in records[j]: r.tofile(fh) outfile_path = os.path.join(outputdir, 'data_test.bin') with open(outfile_path, 'wb') as fh: for j in xrange(minibatches*minibatch_size, len(records)): for r in records[j]: r.tofile(fh)
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 17, 13, 22, 198, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 28686, 198, 11748, 4738, 198, 11748, 25064, 198, 198, 6738, 629, 541, 88, 13, 358, 9060, 1330, 545, 961, 198, 198, 19608, 292, 316, 796, 25064, 13, 853, 85, 58, 16, 60, 198, 22915, 15908, 796, 25064, 13, 853, 85, 58, 17, 60, 611, 18896, 7, 17597, 13, 853, 85, 8, 6624, 513, 2073, 705, 7890, 6, 198, 1084, 571, 20981, 796, 838, 198, 1084, 571, 963, 62, 7857, 796, 5323, 198, 198, 35312, 62, 354, 8961, 796, 37456, 2124, 25, 45941, 13, 18747, 19510, 87, 58, 45299, 45299, 15, 4357, 2124, 58, 45299, 45299, 16, 4357, 2124, 58, 45299, 45299, 17, 60, 4008, 198, 198, 17566, 796, 28686, 13, 4868, 15908, 7, 19608, 292, 316, 8, 198, 198, 17566, 13, 30619, 3419, 198, 198, 9060, 62, 24432, 796, 685, 17566, 58, 72, 25, 72, 10, 19, 60, 329, 1312, 287, 2124, 9521, 7, 15, 11, 18896, 7, 17566, 828, 604, 15437, 198, 6978, 796, 37456, 279, 25, 28686, 13, 6978, 13, 22179, 7, 19608, 292, 316, 11, 279, 8, 198, 198, 8344, 3669, 796, 17635, 198, 25120, 13, 28826, 3419, 198, 1640, 2939, 62, 8094, 287, 2939, 62, 24432, 25, 198, 220, 220, 220, 4738, 13, 1477, 18137, 7, 9060, 62, 8094, 8, 198, 220, 220, 220, 257, 62, 7753, 11, 275, 62, 7753, 796, 2939, 62, 8094, 58, 25, 17, 60, 628, 220, 220, 220, 257, 62, 18747, 796, 6626, 62, 354, 8961, 7, 320, 961, 7, 6978, 7, 64, 62, 7753, 22305, 198, 220, 220, 220, 275, 62, 18747, 796, 6626, 62, 354, 8961, 7, 320, 961, 7, 6978, 7, 65, 62, 7753, 22305, 198, 220, 220, 220, 4406, 13, 33295, 19510, 64, 62, 18747, 11, 275, 62, 18747, 11, 45941, 13, 28611, 23, 7, 16, 22305, 628, 220, 220, 220, 257, 62, 7753, 11, 275, 62, 7753, 796, 2939, 62, 8094, 58, 17, 47715, 628, 220, 220, 220, 257, 62, 18747, 796, 6626, 62, 354, 8961, 7, 320, 961, 7, 6978, 7, 64, 62, 7753, 22305, 198, 220, 220, 220, 275, 62, 18747, 796, 6626, 62, 354, 8961, 7, 320, 961, 7, 6978, 7, 65, 62, 7753, 22305, 198, 220, 220, 220, 4406, 13, 33295, 19510, 64, 62, 18747, 11, 275, 62, 18747, 11, 45941, 13, 28611, 23, 7, 16, 22305, 198, 198, 17566, 796, 28686, 13, 4868, 15908, 7, 19608, 292, 316, 8, 198, 25120, 13, 1477, 18137, 7, 17566, 8, 198, 198, 17566, 62, 17, 796, 28686, 13, 4868, 15908, 7, 19608, 292, 316, 8, 198, 25120, 13, 1477, 18137, 7, 17566, 62, 17, 8, 198, 198, 1640, 257, 62, 7753, 11, 275, 62, 7753, 287, 19974, 7, 17566, 11, 4263, 62, 17, 2599, 198, 220, 220, 220, 257, 62, 18747, 796, 6626, 62, 354, 8961, 7, 320, 961, 7, 6978, 7, 64, 62, 7753, 22305, 198, 220, 220, 220, 275, 62, 18747, 796, 6626, 62, 354, 8961, 7, 320, 961, 7, 6978, 7, 65, 62, 7753, 22305, 198, 220, 220, 220, 6167, 796, 352, 611, 257, 62, 7753, 58, 25, 19, 60, 6624, 275, 62, 7753, 58, 25, 19, 60, 2073, 657, 198, 220, 220, 220, 4406, 13, 33295, 19510, 64, 62, 18747, 11, 275, 62, 18747, 11, 45941, 13, 28611, 23, 7, 15, 22305, 198, 198, 25120, 13, 1477, 18137, 7, 8344, 3669, 8, 198, 198, 1640, 1312, 287, 2124, 9521, 7, 1084, 571, 20981, 2599, 198, 220, 220, 220, 503, 7753, 62, 6978, 796, 28686, 13, 6978, 13, 22179, 7, 22915, 15908, 11, 705, 7890, 62, 43501, 23330, 27422, 8800, 4458, 18982, 7, 72, 10, 16, 4008, 198, 220, 220, 220, 351, 1280, 7, 448, 7753, 62, 6978, 11, 705, 39346, 11537, 355, 277, 71, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 474, 287, 2124, 9521, 7, 72, 9, 1084, 571, 963, 62, 7857, 11, 357, 72, 10, 16, 27493, 1084, 571, 963, 62, 7857, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 374, 287, 4406, 58, 73, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 13, 1462, 7753, 7, 69, 71, 8, 198, 198, 448, 7753, 62, 6978, 796, 28686, 13, 6978, 13, 22179, 7, 22915, 15908, 11, 705, 7890, 62, 9288, 13, 8800, 11537, 198, 4480, 1280, 7, 448, 7753, 62, 6978, 11, 705, 39346, 11537, 355, 277, 71, 25, 198, 220, 220, 220, 329, 474, 287, 2124, 9521, 7, 1084, 571, 20981, 9, 1084, 571, 963, 62, 7857, 11, 18896, 7, 8344, 3669, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 329, 374, 287, 4406, 58, 73, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 13, 1462, 7753, 7, 69, 71, 8, 198 ]
2.249377
802
from django.conf import settings from django.core.exceptions import ImproperlyConfigured from requests import Session as BaseSession from log_request_id import DEFAULT_NO_REQUEST_ID, OUTGOING_REQUEST_ID_HEADER_SETTING, REQUEST_ID_HEADER_SETTING, local
[ 6738, 42625, 14208, 13, 10414, 1330, 6460, 198, 6738, 42625, 14208, 13, 7295, 13, 1069, 11755, 1330, 12205, 525, 306, 16934, 1522, 198, 6738, 7007, 1330, 23575, 355, 7308, 36044, 198, 198, 6738, 2604, 62, 25927, 62, 312, 1330, 5550, 38865, 62, 15285, 62, 2200, 35780, 62, 2389, 11, 16289, 11230, 2751, 62, 2200, 35780, 62, 2389, 62, 37682, 1137, 62, 28480, 48996, 11, 4526, 35780, 62, 2389, 62, 37682, 1137, 62, 28480, 48996, 11, 1957, 628 ]
3.298701
77
# future imports from __future__ import unicode_literals # stdlib imports import logging import time import threading # third-party imports import pykka from mopidy.core import CoreListener logger = logging.getLogger(__name__) class WebhookPlayback(pykka.ThreadingActor, CoreListener): """Control the tracklist and playback functionality of mopidy. Fetches the head track, adds to tracklist, and starts playback. If a timelapse is set, then the track is seeked to the given position. """ popped = False queue = None track = None next_track = None stop_update_thread = True stop_track_thread = True def on_start(self): """Grab the current head track, and add it to the tracklist. Starts the play method. """ logger.info('ON START CALLED') self.initiate() def on_stop(self): """Stops the playback of the current track, and cleans up all the treads and tracklist. """ # Stop playback self.core.playback.stop() # Stop any new timers self.stop_update_thread = True self.stop_track_thread = True # Empty queue self.core.tracklist.clear() def on_event(self, event): """Fires functions base of mopidy tracklist events """ state = self.core.playback.state.get() if event == 'tracklist_changed' and state == 'stopped': logger.info('CALLING NEXT') return self.next() def play(self): """Starts playing the first track in the tracklist. If the track has a "time_position" value then seek the track to that postion. """ logger.info('PLAY CALLED') # Start track self.core.playback.play() # Annoyingly cant start a track at a given time, # So once the track has started we can seek it to the correct position if self.track['time_position']: self.seek() self.stop_update_thread = False self.stop_track_thread = False self.update_thread() self.track_thread() def update_thread(self): """Sends updates to the server every 3 seconds on the status of the playing track. """ # If stop_thread is set, then return causing the loop to break if self.stop_update_thread: return # Ensure there is a track to report on if self.core.playback.current_track.get(): # Ensure track has started and that it is also not about to end. time_position = self.core.playback.time_position.get() total = self.track['track']['duration_ms'] if 1000 < time_position < (total - 9000): # Send updates to the server kwargs = { 'track_id': self.track['id'], 'queue_id': self.queue, 'state': self.core.playback.state.get(), 'time_position': self.core.playback.time_position.get(), } self.session.update_head(kwargs) # Loop method every 3 seconds thread_timer = threading.Timer(3, self.update_thread) thread_timer.start() def track_thread(self): """Watches the track to know when to trigger fetching a the next track. """ # If stop_thread is set, then return causing the loop to break if self.stop_track_thread: return if self.track.get('track'): # Work out the time remaining on the track if self.track['track']['duration_ms'] is not None: t_end = self.track['track']['duration_ms'] t_current = self.core.playback.time_position.get() time_til_end = t_end - t_current # If there is less than 5 seconds left on the track, # add the next track to the tracklist, # or if no track is currently playing if time_til_end < 5000 or not self.core.playback.current_track.get(): # Stop updates self.stop_update_thread = True # Delete the current track from the server and fetch the next. # popped param is set to ensure only one delete request is sent. # Futher requests should be fetches rather than deletes. logger.info('POPPING TRACK') if self.popped: next_track = self.session.fetch_head() else: self.popped = True kwargs = {'queue_id': self.queue} next_track = self.session.pop_head(kwargs) logger.info('############') # If a track is found, added it if next_track.get('track'): self.next_track = next_track self.queue = self.next_track['queue'] self.popped = False # Exit loop return # Loop method every 1/2 second thread_timer = threading.Timer(1, self.track_thread) thread_timer.start()
[ 2, 2003, 17944, 198, 6738, 11593, 37443, 834, 1330, 28000, 1098, 62, 17201, 874, 198, 198, 2, 14367, 8019, 17944, 198, 11748, 18931, 198, 11748, 640, 198, 11748, 4704, 278, 198, 198, 2, 2368, 12, 10608, 17944, 198, 11748, 12972, 74, 4914, 198, 6738, 285, 404, 19325, 13, 7295, 1330, 7231, 33252, 628, 198, 6404, 1362, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 628, 198, 4871, 5313, 25480, 11002, 1891, 7, 9078, 74, 4914, 13, 16818, 278, 40277, 11, 7231, 33252, 2599, 198, 220, 220, 220, 37227, 15988, 262, 2610, 4868, 290, 16388, 11244, 286, 285, 404, 19325, 13, 198, 220, 220, 220, 44649, 2052, 262, 1182, 2610, 11, 6673, 284, 2610, 4868, 11, 290, 4940, 16388, 13, 198, 220, 220, 220, 1002, 257, 4628, 417, 7512, 318, 900, 11, 788, 262, 2610, 318, 5380, 276, 284, 262, 1813, 2292, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 22928, 796, 10352, 198, 220, 220, 220, 16834, 796, 6045, 198, 220, 220, 220, 2610, 796, 6045, 198, 220, 220, 220, 1306, 62, 11659, 796, 6045, 198, 220, 220, 220, 2245, 62, 19119, 62, 16663, 796, 6407, 198, 220, 220, 220, 2245, 62, 11659, 62, 16663, 796, 6407, 628, 220, 220, 220, 825, 319, 62, 9688, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 48400, 262, 1459, 1182, 2610, 11, 290, 751, 340, 284, 262, 2610, 4868, 13, 198, 220, 220, 220, 220, 220, 220, 220, 50181, 262, 711, 2446, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 1340, 33303, 42815, 1961, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 259, 8846, 378, 3419, 628, 220, 220, 220, 825, 319, 62, 11338, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 1273, 2840, 262, 16388, 286, 262, 1459, 2610, 11, 198, 220, 220, 220, 220, 220, 220, 220, 290, 20658, 510, 477, 262, 23153, 82, 290, 2610, 4868, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 13707, 16388, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7295, 13, 1759, 1891, 13, 11338, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 13707, 597, 649, 48085, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11338, 62, 19119, 62, 16663, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11338, 62, 11659, 62, 16663, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 33523, 16834, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7295, 13, 11659, 4868, 13, 20063, 3419, 628, 220, 220, 220, 825, 319, 62, 15596, 7, 944, 11, 1785, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 37, 2387, 5499, 2779, 286, 285, 404, 19325, 2610, 4868, 2995, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1181, 796, 2116, 13, 7295, 13, 1759, 1891, 13, 5219, 13, 1136, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 611, 1785, 6624, 705, 11659, 4868, 62, 40985, 6, 290, 1181, 6624, 705, 301, 38333, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 34, 7036, 2751, 39726, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 19545, 3419, 628, 220, 220, 220, 825, 711, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 1273, 5889, 2712, 262, 717, 2610, 287, 262, 2610, 4868, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1002, 262, 2610, 468, 257, 366, 2435, 62, 9150, 1, 1988, 788, 5380, 262, 2610, 284, 326, 1281, 295, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 31519, 42815, 1961, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 7253, 2610, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7295, 13, 1759, 1891, 13, 1759, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 5506, 726, 4420, 18548, 923, 257, 2610, 379, 257, 1813, 640, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1406, 1752, 262, 2610, 468, 2067, 356, 460, 5380, 340, 284, 262, 3376, 2292, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 11659, 17816, 2435, 62, 9150, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 36163, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11338, 62, 19119, 62, 16663, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11338, 62, 11659, 62, 16663, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 19119, 62, 16663, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11659, 62, 16663, 3419, 628, 220, 220, 220, 825, 4296, 62, 16663, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 50, 2412, 5992, 284, 262, 4382, 790, 513, 4201, 198, 220, 220, 220, 220, 220, 220, 220, 319, 262, 3722, 286, 262, 2712, 2610, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 2245, 62, 16663, 318, 900, 11, 788, 1441, 6666, 262, 9052, 284, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 11338, 62, 19119, 62, 16663, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 48987, 612, 318, 257, 2610, 284, 989, 319, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 7295, 13, 1759, 1891, 13, 14421, 62, 11659, 13, 1136, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 48987, 2610, 468, 2067, 290, 326, 340, 318, 635, 407, 546, 284, 886, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 640, 62, 9150, 796, 2116, 13, 7295, 13, 1759, 1891, 13, 2435, 62, 9150, 13, 1136, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2472, 796, 2116, 13, 11659, 17816, 11659, 6, 7131, 6, 32257, 62, 907, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 8576, 1279, 640, 62, 9150, 1279, 357, 23350, 532, 50138, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 16290, 5992, 284, 262, 4382, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 11659, 62, 312, 10354, 2116, 13, 11659, 17816, 312, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 36560, 62, 312, 10354, 2116, 13, 36560, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 5219, 10354, 2116, 13, 7295, 13, 1759, 1891, 13, 5219, 13, 1136, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 2435, 62, 9150, 10354, 2116, 13, 7295, 13, 1759, 1891, 13, 2435, 62, 9150, 13, 1136, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 29891, 13, 19119, 62, 2256, 7, 46265, 22046, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 26304, 2446, 790, 513, 4201, 198, 220, 220, 220, 220, 220, 220, 220, 4704, 62, 45016, 796, 4704, 278, 13, 48801, 7, 18, 11, 2116, 13, 19119, 62, 16663, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4704, 62, 45016, 13, 9688, 3419, 628, 220, 220, 220, 825, 2610, 62, 16663, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 54, 20981, 262, 2610, 284, 760, 618, 284, 7616, 21207, 278, 257, 262, 1306, 2610, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 2245, 62, 16663, 318, 900, 11, 788, 1441, 6666, 262, 9052, 284, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 11338, 62, 11659, 62, 16663, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 11659, 13, 1136, 10786, 11659, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5521, 503, 262, 640, 5637, 319, 262, 2610, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 11659, 17816, 11659, 6, 7131, 6, 32257, 62, 907, 20520, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 256, 62, 437, 796, 2116, 13, 11659, 17816, 11659, 6, 7131, 6, 32257, 62, 907, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 256, 62, 14421, 796, 2116, 13, 7295, 13, 1759, 1891, 13, 2435, 62, 9150, 13, 1136, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 640, 62, 47163, 62, 437, 796, 256, 62, 437, 532, 256, 62, 14421, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 612, 318, 1342, 621, 642, 4201, 1364, 319, 262, 2610, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 751, 262, 1306, 2610, 284, 262, 2610, 4868, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 393, 611, 645, 2610, 318, 3058, 2712, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 640, 62, 47163, 62, 437, 1279, 23336, 393, 407, 2116, 13, 7295, 13, 1759, 1891, 13, 14421, 62, 11659, 13, 1136, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 13707, 5992, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11338, 62, 19119, 62, 16663, 796, 6407, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 23520, 262, 1459, 2610, 422, 262, 4382, 290, 21207, 262, 1306, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 22928, 5772, 318, 900, 284, 4155, 691, 530, 12233, 2581, 318, 1908, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 376, 12866, 7007, 815, 307, 11351, 2052, 2138, 621, 28128, 274, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 47, 3185, 47, 2751, 7579, 8120, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 7501, 1496, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1306, 62, 11659, 796, 2116, 13, 29891, 13, 69, 7569, 62, 2256, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7501, 1496, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 796, 1391, 6, 36560, 62, 312, 10354, 2116, 13, 36560, 92, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1306, 62, 11659, 796, 2116, 13, 29891, 13, 12924, 62, 2256, 7, 46265, 22046, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 7804, 4242, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 257, 2610, 318, 1043, 11, 2087, 340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1306, 62, 11659, 13, 1136, 10786, 11659, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 19545, 62, 11659, 796, 1306, 62, 11659, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 36560, 796, 2116, 13, 19545, 62, 11659, 17816, 36560, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7501, 1496, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 29739, 9052, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 26304, 2446, 790, 352, 14, 17, 1218, 198, 220, 220, 220, 220, 220, 220, 220, 4704, 62, 45016, 796, 4704, 278, 13, 48801, 7, 16, 11, 2116, 13, 11659, 62, 16663, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4704, 62, 45016, 13, 9688, 3419, 198 ]
2.189144
2,395
from lxml import html import requests import sqlite3 c = sqlite3.connect('bling.db') oldscore={} for row in c.execute('SELECT * FROM users'): print(row)
[ 6738, 300, 19875, 1330, 27711, 198, 11748, 7007, 198, 11748, 44161, 578, 18, 198, 66, 796, 44161, 578, 18, 13, 8443, 10786, 11108, 13, 9945, 11537, 198, 198, 727, 26675, 34758, 92, 198, 198, 1640, 5752, 287, 269, 13, 41049, 10786, 46506, 1635, 16034, 2985, 6, 2599, 198, 220, 3601, 7, 808, 8, 628 ]
2.925926
54
from vgn.exceptions import VgnGetError from vgn.data_classes import * import vgn.converter as conv import datetime import asyncio import aiohttp if __name__ == '__main__': asyncio.run(main())
[ 6738, 410, 4593, 13, 1069, 11755, 1330, 569, 4593, 3855, 12331, 198, 6738, 410, 4593, 13, 7890, 62, 37724, 1330, 1635, 198, 11748, 410, 4593, 13, 1102, 332, 353, 355, 3063, 198, 11748, 4818, 8079, 198, 11748, 30351, 952, 198, 11748, 257, 952, 4023, 628, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 30351, 952, 13, 5143, 7, 12417, 28955, 198 ]
2.898551
69
"""Package for all services.""" from .validator_service import Config, ValidatorService
[ 37811, 27813, 329, 477, 2594, 526, 15931, 198, 6738, 764, 12102, 1352, 62, 15271, 1330, 17056, 11, 48951, 1352, 16177, 198 ]
4.190476
21
#!/usr/bin/env python3 # encoding: utf-8 import os import random from typing import NoReturn import numpy as np import torch as th from rls.utils.display import colorize from rls.utils.logging_utils import get_logger logger = get_logger(__name__) def check_or_create(dicpath: str, name: str = '') -> NoReturn: """ check dictionary whether existing, if not then create it. """ if not os.path.exists(dicpath): os.makedirs(dicpath) logger.info(colorize( ''.join([f'create {name} directionary :', dicpath]), color='green')) def set_global_seeds(seed: int) -> NoReturn: """ Set the random seed of pytorch, numpy and random. params: seed: an integer refers to the random seed """ th.manual_seed(seed) th.cuda.manual_seed_all(seed) th.backends.cudnn.deterministic = True np.random.seed(seed) random.seed(seed)
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 2, 21004, 25, 3384, 69, 12, 23, 198, 198, 11748, 28686, 198, 11748, 4738, 198, 6738, 19720, 1330, 1400, 13615, 198, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 28034, 355, 294, 198, 198, 6738, 374, 7278, 13, 26791, 13, 13812, 1330, 3124, 1096, 198, 6738, 374, 7278, 13, 26791, 13, 6404, 2667, 62, 26791, 1330, 651, 62, 6404, 1362, 198, 198, 6404, 1362, 796, 651, 62, 6404, 1362, 7, 834, 3672, 834, 8, 628, 198, 4299, 2198, 62, 273, 62, 17953, 7, 67, 291, 6978, 25, 965, 11, 1438, 25, 965, 796, 10148, 8, 4613, 1400, 13615, 25, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2198, 22155, 1771, 4683, 11, 611, 407, 788, 2251, 340, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 407, 28686, 13, 6978, 13, 1069, 1023, 7, 67, 291, 6978, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 28686, 13, 76, 4335, 17062, 7, 67, 291, 6978, 8, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 7, 8043, 1096, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 4458, 22179, 26933, 69, 6, 17953, 1391, 3672, 92, 4571, 560, 1058, 3256, 288, 291, 6978, 46570, 3124, 11639, 14809, 6, 4008, 628, 198, 4299, 900, 62, 20541, 62, 325, 5379, 7, 28826, 25, 493, 8, 4613, 1400, 13615, 25, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 5345, 262, 4738, 9403, 286, 12972, 13165, 354, 11, 299, 32152, 290, 4738, 13, 198, 220, 220, 220, 42287, 25, 198, 220, 220, 220, 220, 220, 220, 220, 9403, 25, 281, 18253, 10229, 284, 262, 4738, 9403, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 294, 13, 805, 723, 62, 28826, 7, 28826, 8, 198, 220, 220, 220, 294, 13, 66, 15339, 13, 805, 723, 62, 28826, 62, 439, 7, 28826, 8, 198, 220, 220, 220, 294, 13, 1891, 2412, 13, 66, 463, 20471, 13, 67, 2357, 49228, 796, 6407, 198, 220, 220, 220, 45941, 13, 25120, 13, 28826, 7, 28826, 8, 198, 220, 220, 220, 4738, 13, 28826, 7, 28826, 8, 628, 198 ]
2.495845
361
import torch.nn as nn from mmdet.core import bbox2result from .. import builder from ..registry import DETECTORS from .seq_base import SeqBaseDetector @DETECTORS.register_module
[ 11748, 28034, 13, 20471, 355, 299, 77, 198, 198, 6738, 8085, 15255, 13, 7295, 1330, 275, 3524, 17, 20274, 198, 6738, 11485, 1330, 27098, 198, 6738, 11485, 2301, 4592, 1330, 38267, 9782, 20673, 198, 6738, 764, 41068, 62, 8692, 1330, 1001, 80, 14881, 11242, 9250, 198, 31, 35, 2767, 9782, 20673, 13, 30238, 62, 21412, 198 ]
3.196429
56
#!/usr/bin/python # -*- coding: utf-8 -*- import operator labels = {} f = open('log.txt', 'r') for line in f.readlines(): s = line.strip().split('| ') name = s[0].split(' ')[0].strip() if len(s) != 2: safe_add(name, 'other') continue lbls = s[1].strip().split(';') for label in lbls: if len(label) < 1: continue safe_add(name, label.strip()) f.close() for label in labels.keys(): print "\n" + label for name, num in sorted(labels[label].items(), key=operator.itemgetter(1), reverse=True): print "\t" + name + ": " + str(num)
[ 2, 48443, 14629, 14, 8800, 14, 29412, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 11748, 10088, 198, 198, 23912, 1424, 796, 23884, 628, 220, 220, 220, 220, 198, 198, 69, 796, 1280, 10786, 6404, 13, 14116, 3256, 705, 81, 11537, 198, 1640, 1627, 287, 277, 13, 961, 6615, 33529, 198, 220, 220, 220, 264, 796, 1627, 13, 36311, 22446, 35312, 10786, 91, 705, 8, 198, 220, 220, 220, 1438, 796, 264, 58, 15, 4083, 35312, 10786, 705, 38381, 15, 4083, 36311, 3419, 628, 220, 220, 220, 611, 18896, 7, 82, 8, 14512, 362, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3338, 62, 2860, 7, 3672, 11, 705, 847, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 300, 2436, 82, 796, 264, 58, 16, 4083, 36311, 22446, 35312, 10786, 26, 11537, 628, 220, 220, 220, 329, 6167, 287, 300, 2436, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 18242, 8, 1279, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 3338, 62, 2860, 7, 3672, 11, 6167, 13, 36311, 28955, 198, 198, 69, 13, 19836, 3419, 198, 198, 1640, 6167, 287, 14722, 13, 13083, 33529, 198, 220, 220, 220, 3601, 37082, 77, 1, 1343, 6167, 198, 220, 220, 220, 329, 1438, 11, 997, 287, 23243, 7, 23912, 1424, 58, 18242, 4083, 23814, 22784, 1994, 28, 46616, 13, 9186, 1136, 353, 7, 16, 828, 9575, 28, 17821, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 37082, 83, 1, 1343, 1438, 1343, 366, 25, 366, 1343, 965, 7, 22510, 8, 628, 628 ]
2.167247
287
# Copyright 2021, 2022 IBM Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import json import click from cpo.lib.fyre.types.ocp_quick_burn_max_hours_response import OCPQuickBurnMaxHoursResponse
[ 2, 220, 15069, 33448, 11, 33160, 19764, 10501, 198, 2, 198, 2, 220, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 2, 220, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 2, 220, 921, 743, 7330, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 220, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 220, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 198, 2, 220, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 198, 2, 220, 4091, 262, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 198, 2, 220, 11247, 739, 262, 13789, 13, 198, 198, 11748, 33918, 198, 198, 11748, 3904, 198, 198, 6738, 269, 7501, 13, 8019, 13, 24928, 260, 13, 19199, 13, 420, 79, 62, 24209, 62, 10899, 62, 9806, 62, 24425, 62, 26209, 1330, 440, 8697, 21063, 29053, 11518, 39792, 31077, 628 ]
3.624365
197
# -*- coding: utf-8 -*- """ Created on Tue Nov 7 12:21:17 2017 @author: Rochlitz.R """ import matplotlib.pyplot as plt import numpy as np import pygimli as pg from custEM.meshgen.invmesh_tools import PrismWorld from custEM.meshgen import meshgen_utils as mu from custEM.inv.inv_utils import MultiFWD xt, zt = np.loadtxt("topo.txt", unpack=True) zt = np.abs(zt) # %% define mesh paramters dataname = 'GOS_raw_inversion_ByBz_B_Tx123.npz' invmod = dataname + '_l40' invmesh = 'Prisms' dataR, dataI = [], [] errorR, errorI = [], [] with np.load(dataname+".npz", allow_pickle=True) as ALL: freqs = list(ALL["freqs"]) tx = ALL["tx"] print(tx) DATA = ALL["DATA"] rxs = [data["rx"] for data in DATA] # tx_ids = [[int(txi) for txi in data["tx_ids"]] for data in DATA] tx_ids = [data["tx_ids"] for data in DATA] cmps = [data["cmp"] for data in DATA] for i, data in enumerate(DATA): dataR = np.concatenate([dataR, data["dataR"].ravel()]) dataI = np.concatenate([dataI, data["dataI"].ravel()]) errorR = np.concatenate([errorR, data["errorR"].ravel()]) errorI = np.concatenate([errorI, data["errorI"].ravel()]) skip_domains = [0, 1] sig_bg = 3e-3 refm_size = 1. rxs_resolved = mu.resolve_rx_overlaps(rxs, refm_size) rx_tri = mu.refine_rx(rxs_resolved, refm_size, 30.) bound = 200 minrx = min([min(data["rx"][:, 0]) for data in DATA]) maxrx = max([max(data["rx"][:, 0]) for data in DATA]) ############################################################################## # %% generate 2.5D prism inversion mesh P = PrismWorld(name=invmesh, x_extent=[minrx-bound, maxrx+bound], x_reduction=500., y_depth=1500., z_depth=1200., n_prisms=200, tx=[txi for txi in tx], orthogonal_tx=[True] * len(tx), #surface_rx=rx_tri, prism_area=50000, prism_quality=34, x_dim=[-1e5, 1e5], y_dim=[-1e5, 1e5], z_dim=[-1e5, 1e5], topo=topo_f, ) P.PrismWorld.add_paths(rx_tri) for rx in rxs: P.PrismWorld.add_rx(rx) # %% P.PrismWorld.call_tetgen(tet_param='-pDq1.3aA', print_infos=False) pgmesh = pg.load('meshes/mesh_create/' + invmesh + '.bms') # pgmesh = P.xzmesh # is 3D if 0: ax, cb = pg.show(pgmesh) for rx in rxs: ax.plot(rx[:, 0], rx[:, 2], ".") for txi in tx: for txii in txi: print(txii) ax.plot(txii[0], txii[2], "mv") # %% run inversion mask = np.isfinite(dataR+dataI+errorR+errorI) datavec = np.hstack((dataR[mask], dataI[mask])) errorvec = np.hstack((errorR[mask], errorI[mask])) relerror = np.abs(errorvec/datavec) fop = MultiFWD(invmod, invmesh, pgmesh, list(freqs), cmps, tx_ids, skip_domains, sig_bg, n_cores=140, ini_data=datavec, data_mask=mask) fop.setRegionProperties("*", limits=[1e-4, 1]) # set up inv inv = pg.Inversion(verbose=True) # , debug=True) inv.setForwardOperator(fop) C = pg.matrix.GeostatisticConstraintsMatrix(mesh=pgmesh, I=[500, 80]) # fop.setConstraints(C) dT = pg.trans.TransSymLog(1e-3) inv.dataTrans = dT # run inversion invmodel = inv.run(datavec, relerror, lam=40, # zWeight=0.3, startModel=sig_bg, maxIter=10, verbose=True, robustData=True) # %% save results np.save(fop.inv_dir + 'inv_model.npy', invmodel) res = 1. / invmodel pgmesh['sigma'] = invmodel # np.load(fop.inv_dir + 'inv_model.npy') pgmesh['res'] = res # np.load(fop.inv_dir + 'inv_model.npy') # pgmesh.setDimension(3) # pgmesh.swapCoordinates(1, 2) pgmesh.exportVTK(fop.inv_dir + invmod + '_final_invmodel.vtk') # %% plot inv model fig, ax = plt.subplots(figsize=(14, 8)) ax2, cbar = pg.show(pgmesh, res, ax=ax, cMap="Spectral", colorBar=True, logScale=True, cMin=5, cMax=5000, xlabel='x [m]', ylabel='z [m]', label=r'$\rho$ [$\Omega$m]', pad=0.8) # cbar.ax.set_xlabel(r'$\sigma$ [S/m]', labelpad=4) # ax.figure.savefig("out.pdf") np.save(invmod+"-response.npy", inv.response) fop.jacobian().save("jacobian.bmat")
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 37811, 198, 41972, 319, 30030, 5267, 220, 767, 1105, 25, 2481, 25, 1558, 2177, 198, 198, 31, 9800, 25, 371, 5374, 75, 4224, 13, 49, 198, 37811, 198, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 12972, 70, 320, 4528, 355, 23241, 198, 6738, 9378, 3620, 13, 76, 5069, 5235, 13, 259, 14761, 5069, 62, 31391, 1330, 35417, 10603, 198, 6738, 9378, 3620, 13, 76, 5069, 5235, 1330, 19609, 5235, 62, 26791, 355, 38779, 198, 6738, 9378, 3620, 13, 16340, 13, 16340, 62, 26791, 1330, 15237, 37, 22332, 198, 198, 742, 11, 1976, 83, 796, 45941, 13, 2220, 14116, 7203, 4852, 78, 13, 14116, 1600, 555, 8002, 28, 17821, 8, 198, 89, 83, 796, 45941, 13, 8937, 7, 89, 83, 8, 628, 198, 198, 2, 43313, 8160, 19609, 5772, 1010, 198, 19608, 272, 480, 796, 705, 38, 2640, 62, 1831, 62, 259, 9641, 62, 3886, 33, 89, 62, 33, 62, 46047, 10163, 13, 37659, 89, 6, 198, 16340, 4666, 796, 4818, 272, 480, 1343, 705, 62, 75, 1821, 6, 198, 259, 14761, 5069, 796, 705, 47, 2442, 907, 6, 198, 198, 7890, 49, 11, 1366, 40, 796, 685, 4357, 17635, 198, 18224, 49, 11, 4049, 40, 796, 685, 4357, 17635, 198, 4480, 45941, 13, 2220, 7, 19608, 272, 480, 10, 1911, 37659, 89, 1600, 1249, 62, 27729, 293, 28, 17821, 8, 355, 11096, 25, 198, 220, 220, 220, 2030, 48382, 796, 1351, 7, 7036, 14692, 19503, 48382, 8973, 8, 198, 220, 220, 220, 27765, 796, 11096, 14692, 17602, 8973, 198, 220, 220, 220, 3601, 7, 17602, 8, 198, 220, 220, 220, 42865, 796, 11096, 14692, 26947, 8973, 198, 220, 220, 220, 374, 34223, 796, 685, 7890, 14692, 40914, 8973, 329, 1366, 287, 42865, 60, 198, 220, 220, 220, 1303, 27765, 62, 2340, 796, 16410, 600, 7, 17602, 72, 8, 329, 27765, 72, 287, 1366, 14692, 17602, 62, 2340, 8973, 60, 329, 1366, 287, 42865, 60, 198, 220, 220, 220, 27765, 62, 2340, 796, 685, 7890, 14692, 17602, 62, 2340, 8973, 329, 1366, 287, 42865, 60, 198, 220, 220, 220, 12067, 862, 796, 685, 7890, 14692, 48991, 8973, 329, 1366, 287, 42865, 60, 198, 220, 220, 220, 329, 1312, 11, 1366, 287, 27056, 378, 7, 26947, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 49, 796, 45941, 13, 1102, 9246, 268, 378, 26933, 7890, 49, 11, 1366, 14692, 7890, 49, 1, 4083, 25843, 3419, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 40, 796, 45941, 13, 1102, 9246, 268, 378, 26933, 7890, 40, 11, 1366, 14692, 7890, 40, 1, 4083, 25843, 3419, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 4049, 49, 796, 45941, 13, 1102, 9246, 268, 378, 26933, 18224, 49, 11, 1366, 14692, 18224, 49, 1, 4083, 25843, 3419, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 4049, 40, 796, 45941, 13, 1102, 9246, 268, 378, 26933, 18224, 40, 11, 1366, 14692, 18224, 40, 1, 4083, 25843, 3419, 12962, 198, 198, 48267, 62, 3438, 1299, 796, 685, 15, 11, 352, 60, 198, 82, 328, 62, 35904, 796, 513, 68, 12, 18, 198, 198, 5420, 76, 62, 7857, 796, 352, 13, 198, 81, 34223, 62, 411, 5634, 796, 38779, 13, 411, 6442, 62, 40914, 62, 2502, 75, 1686, 7, 81, 34223, 11, 1006, 76, 62, 7857, 8, 198, 198, 40914, 62, 28461, 796, 38779, 13, 5420, 500, 62, 40914, 7, 81, 34223, 62, 411, 5634, 11, 1006, 76, 62, 7857, 11, 1542, 2014, 198, 198, 7784, 796, 939, 198, 1084, 40914, 796, 949, 26933, 1084, 7, 7890, 14692, 40914, 1, 7131, 45299, 657, 12962, 329, 1366, 287, 42865, 12962, 198, 9806, 40914, 796, 3509, 26933, 9806, 7, 7890, 14692, 40914, 1, 7131, 45299, 657, 12962, 329, 1366, 287, 42865, 12962, 198, 198, 29113, 29113, 7804, 4242, 2235, 198, 2, 43313, 7716, 362, 13, 20, 35, 46475, 287, 9641, 19609, 198, 47, 796, 35417, 10603, 7, 3672, 28, 259, 14761, 5069, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 62, 2302, 298, 41888, 1084, 40914, 12, 7784, 11, 3509, 40914, 10, 7784, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 62, 445, 8110, 28, 4059, 1539, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 62, 18053, 28, 33698, 1539, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1976, 62, 18053, 28, 27550, 1539, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 62, 1050, 6583, 28, 2167, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27765, 41888, 17602, 72, 329, 27765, 72, 287, 27765, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 29617, 519, 20996, 62, 17602, 41888, 17821, 60, 1635, 18896, 7, 17602, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 42029, 62, 40914, 28, 40914, 62, 28461, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 46475, 62, 20337, 28, 20, 2388, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 46475, 62, 13237, 28, 2682, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 62, 27740, 41888, 12, 16, 68, 20, 11, 352, 68, 20, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 62, 27740, 41888, 12, 16, 68, 20, 11, 352, 68, 20, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1976, 62, 27740, 41888, 12, 16, 68, 20, 11, 352, 68, 20, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1353, 78, 28, 4852, 78, 62, 69, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 198, 47, 13, 6836, 1042, 10603, 13, 2860, 62, 6978, 82, 7, 40914, 62, 28461, 8, 198, 1640, 374, 87, 287, 374, 34223, 25, 198, 220, 220, 220, 350, 13, 6836, 1042, 10603, 13, 2860, 62, 40914, 7, 40914, 8, 198, 198, 2, 43313, 198, 198, 47, 13, 6836, 1042, 10603, 13, 13345, 62, 83, 316, 5235, 7, 83, 316, 62, 17143, 11639, 12, 79, 35, 80, 16, 13, 18, 64, 32, 3256, 3601, 62, 10745, 418, 28, 25101, 8, 198, 6024, 76, 5069, 796, 23241, 13, 2220, 10786, 6880, 956, 14, 76, 5069, 62, 17953, 14, 6, 1343, 800, 76, 5069, 1343, 45302, 65, 907, 11537, 198, 2, 23241, 76, 5069, 796, 350, 13, 87, 89, 76, 5069, 220, 1303, 318, 513, 35, 198, 361, 657, 25, 198, 220, 220, 220, 7877, 11, 269, 65, 796, 23241, 13, 12860, 7, 6024, 76, 5069, 8, 198, 220, 220, 220, 329, 374, 87, 287, 374, 34223, 25, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 13, 29487, 7, 40914, 58, 45299, 657, 4357, 374, 87, 58, 45299, 362, 4357, 366, 19570, 198, 220, 220, 220, 329, 27765, 72, 287, 27765, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 27765, 4178, 287, 27765, 72, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 17602, 4178, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7877, 13, 29487, 7, 17602, 4178, 58, 15, 4357, 27765, 4178, 58, 17, 4357, 366, 76, 85, 4943, 628, 198, 2, 43313, 1057, 287, 9641, 198, 27932, 796, 45941, 13, 4468, 9504, 7, 7890, 49, 10, 7890, 40, 10, 18224, 49, 10, 18224, 40, 8, 198, 19608, 1015, 66, 796, 45941, 13, 71, 25558, 19510, 7890, 49, 58, 27932, 4357, 1366, 40, 58, 27932, 60, 4008, 198, 18224, 35138, 796, 45941, 13, 71, 25558, 19510, 18224, 49, 58, 27932, 4357, 4049, 40, 58, 27932, 60, 4008, 198, 260, 1754, 1472, 796, 45941, 13, 8937, 7, 18224, 35138, 14, 19608, 1015, 66, 8, 198, 198, 69, 404, 796, 15237, 37, 22332, 7, 16340, 4666, 11, 800, 76, 5069, 11, 23241, 76, 5069, 11, 1351, 7, 19503, 48382, 828, 12067, 862, 11, 27765, 62, 2340, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14267, 62, 3438, 1299, 11, 43237, 62, 35904, 11, 299, 62, 66, 2850, 28, 15187, 11, 287, 72, 62, 7890, 28, 19608, 1015, 66, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 27932, 28, 27932, 8, 198, 69, 404, 13, 2617, 47371, 2964, 18200, 7203, 9, 1600, 7095, 41888, 16, 68, 12, 19, 11, 352, 12962, 198, 2, 900, 510, 800, 198, 16340, 796, 23241, 13, 818, 9641, 7, 19011, 577, 28, 17821, 8, 220, 1303, 837, 14257, 28, 17821, 8, 198, 16340, 13, 2617, 39746, 18843, 1352, 7, 69, 404, 8, 198, 34, 796, 23241, 13, 6759, 8609, 13, 10082, 455, 265, 2569, 3103, 2536, 6003, 46912, 7, 76, 5069, 28, 6024, 76, 5069, 11, 314, 41888, 4059, 11, 4019, 12962, 198, 2, 277, 404, 13, 2617, 3103, 2536, 6003, 7, 34, 8, 198, 67, 51, 796, 23241, 13, 7645, 13, 8291, 43094, 11187, 7, 16, 68, 12, 18, 8, 198, 16340, 13, 7890, 8291, 796, 288, 51, 198, 198, 2, 1057, 287, 9641, 198, 16340, 19849, 796, 800, 13, 5143, 7, 19608, 1015, 66, 11, 823, 18224, 11, 30592, 28, 1821, 11, 220, 1303, 1976, 25844, 28, 15, 13, 18, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 923, 17633, 28, 82, 328, 62, 35904, 11, 3509, 29993, 28, 940, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15942, 577, 28, 17821, 11, 12373, 6601, 28, 17821, 8, 198, 2, 43313, 3613, 2482, 198, 37659, 13, 21928, 7, 69, 404, 13, 16340, 62, 15908, 1343, 705, 16340, 62, 19849, 13, 77, 9078, 3256, 800, 19849, 8, 198, 411, 796, 352, 13, 1220, 800, 19849, 198, 6024, 76, 5069, 17816, 82, 13495, 20520, 796, 800, 19849, 220, 1303, 45941, 13, 2220, 7, 69, 404, 13, 16340, 62, 15908, 1343, 705, 16340, 62, 19849, 13, 77, 9078, 11537, 198, 6024, 76, 5069, 17816, 411, 20520, 796, 581, 220, 1303, 45941, 13, 2220, 7, 69, 404, 13, 16340, 62, 15908, 1343, 705, 16340, 62, 19849, 13, 77, 9078, 11537, 198, 2, 23241, 76, 5069, 13, 2617, 29271, 3004, 7, 18, 8, 198, 2, 23241, 76, 5069, 13, 2032, 499, 7222, 585, 17540, 7, 16, 11, 362, 8, 198, 6024, 76, 5069, 13, 39344, 36392, 42, 7, 69, 404, 13, 16340, 62, 15908, 1343, 800, 4666, 1343, 705, 62, 20311, 62, 16340, 19849, 13, 85, 30488, 11537, 198, 2, 43313, 7110, 800, 2746, 198, 5647, 11, 7877, 796, 458, 83, 13, 7266, 489, 1747, 7, 5647, 7857, 16193, 1415, 11, 807, 4008, 198, 897, 17, 11, 269, 5657, 796, 23241, 13, 12860, 7, 6024, 76, 5069, 11, 581, 11, 7877, 28, 897, 11, 269, 13912, 2625, 49738, 1373, 1600, 3124, 10374, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 29990, 28, 17821, 11, 269, 9452, 28, 20, 11, 269, 11518, 28, 27641, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 18242, 11639, 87, 685, 76, 60, 3256, 331, 18242, 11639, 89, 685, 76, 60, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6167, 28, 81, 6, 3, 59, 81, 8873, 3, 685, 3, 59, 46, 13731, 3, 76, 60, 3256, 14841, 28, 15, 13, 23, 8, 198, 198, 2, 269, 5657, 13, 897, 13, 2617, 62, 87, 18242, 7, 81, 6, 3, 59, 82, 13495, 3, 685, 50, 14, 76, 60, 3256, 6167, 15636, 28, 19, 8, 198, 2, 7877, 13, 26875, 13, 21928, 5647, 7203, 448, 13, 12315, 4943, 198, 37659, 13, 21928, 7, 16340, 4666, 10, 26793, 26209, 13, 77, 9078, 1600, 800, 13, 26209, 8, 198, 69, 404, 13, 30482, 672, 666, 22446, 21928, 7203, 30482, 672, 666, 13, 65, 6759, 4943, 198 ]
2.006229
2,087
""" Test Prolog script. """ from unittest import mock import pytest from lm_agent.workload_managers.slurm.slurmctld_prolog import prolog as main @pytest.mark.asyncio @mock.patch("lm_agent.workload_managers.slurm.slurmctld_prolog.sys") @mock.patch("lm_agent.workload_managers.slurm.slurmctld_prolog.get_job_context") @mock.patch("lm_agent.workload_managers.slurm.slurmctld_prolog.get_required_licenses_for_job") @pytest.mark.asyncio @mock.patch("lm_agent.workload_managers.slurm.slurmctld_prolog.sys") @mock.patch("lm_agent.workload_managers.slurm.slurmctld_prolog.get_job_context") @mock.patch("lm_agent.workload_managers.slurm.slurmctld_prolog.get_required_licenses_for_job") @mock.patch("lm_agent.workload_managers.slurm.slurmctld_prolog.get_config_from_backend") @pytest.mark.asyncio @mock.patch("lm_agent.workload_managers.slurm.slurmctld_prolog.get_job_context") @mock.patch("lm_agent.workload_managers.slurm.slurmctld_prolog.get_required_licenses_for_job") @mock.patch("lm_agent.workload_managers.slurm.slurmctld_prolog.get_config_from_backend") @mock.patch("lm_agent.workload_managers.slurm.slurmctld_prolog.update_report") @pytest.mark.asyncio @mock.patch("lm_agent.workload_managers.slurm.slurmctld_prolog.sys") @mock.patch("lm_agent.workload_managers.slurm.slurmctld_prolog.get_job_context") @mock.patch("lm_agent.workload_managers.slurm.slurmctld_prolog.get_required_licenses_for_job") @mock.patch("lm_agent.workload_managers.slurm.slurmctld_prolog.get_config_from_backend") @mock.patch("lm_agent.workload_managers.slurm.slurmctld_prolog.update_report") @mock.patch("lm_agent.workload_managers.slurm.slurmctld_prolog.make_booking_request") @pytest.mark.asyncio @mock.patch("lm_agent.workload_managers.slurm.slurmctld_prolog.sys") @mock.patch("lm_agent.workload_managers.slurm.slurmctld_prolog.settings") @mock.patch("lm_agent.workload_managers.slurm.slurmctld_prolog.get_job_context") @mock.patch("lm_agent.workload_managers.slurm.slurmctld_prolog.get_required_licenses_for_job") @mock.patch("lm_agent.workload_managers.slurm.slurmctld_prolog.get_config_from_backend") @mock.patch("lm_agent.workload_managers.slurm.slurmctld_prolog.update_report") @mock.patch("lm_agent.workload_managers.slurm.slurmctld_prolog.make_booking_request")
[ 37811, 198, 14402, 1041, 6404, 4226, 13, 198, 37811, 198, 6738, 555, 715, 395, 1330, 15290, 198, 198, 11748, 12972, 9288, 198, 198, 6738, 300, 76, 62, 25781, 13, 1818, 2220, 62, 805, 10321, 13, 6649, 333, 76, 13, 6649, 333, 76, 310, 335, 62, 1676, 6404, 1330, 386, 6404, 355, 1388, 628, 198, 31, 9078, 9288, 13, 4102, 13, 292, 13361, 952, 198, 31, 76, 735, 13, 17147, 7203, 75, 76, 62, 25781, 13, 1818, 2220, 62, 805, 10321, 13, 6649, 333, 76, 13, 6649, 333, 76, 310, 335, 62, 1676, 6404, 13, 17597, 4943, 198, 31, 76, 735, 13, 17147, 7203, 75, 76, 62, 25781, 13, 1818, 2220, 62, 805, 10321, 13, 6649, 333, 76, 13, 6649, 333, 76, 310, 335, 62, 1676, 6404, 13, 1136, 62, 21858, 62, 22866, 4943, 198, 31, 76, 735, 13, 17147, 7203, 75, 76, 62, 25781, 13, 1818, 2220, 62, 805, 10321, 13, 6649, 333, 76, 13, 6649, 333, 76, 310, 335, 62, 1676, 6404, 13, 1136, 62, 35827, 62, 677, 4541, 62, 1640, 62, 21858, 4943, 628, 198, 31, 9078, 9288, 13, 4102, 13, 292, 13361, 952, 198, 31, 76, 735, 13, 17147, 7203, 75, 76, 62, 25781, 13, 1818, 2220, 62, 805, 10321, 13, 6649, 333, 76, 13, 6649, 333, 76, 310, 335, 62, 1676, 6404, 13, 17597, 4943, 198, 31, 76, 735, 13, 17147, 7203, 75, 76, 62, 25781, 13, 1818, 2220, 62, 805, 10321, 13, 6649, 333, 76, 13, 6649, 333, 76, 310, 335, 62, 1676, 6404, 13, 1136, 62, 21858, 62, 22866, 4943, 198, 31, 76, 735, 13, 17147, 7203, 75, 76, 62, 25781, 13, 1818, 2220, 62, 805, 10321, 13, 6649, 333, 76, 13, 6649, 333, 76, 310, 335, 62, 1676, 6404, 13, 1136, 62, 35827, 62, 677, 4541, 62, 1640, 62, 21858, 4943, 198, 31, 76, 735, 13, 17147, 7203, 75, 76, 62, 25781, 13, 1818, 2220, 62, 805, 10321, 13, 6649, 333, 76, 13, 6649, 333, 76, 310, 335, 62, 1676, 6404, 13, 1136, 62, 11250, 62, 6738, 62, 1891, 437, 4943, 628, 198, 31, 9078, 9288, 13, 4102, 13, 292, 13361, 952, 198, 31, 76, 735, 13, 17147, 7203, 75, 76, 62, 25781, 13, 1818, 2220, 62, 805, 10321, 13, 6649, 333, 76, 13, 6649, 333, 76, 310, 335, 62, 1676, 6404, 13, 1136, 62, 21858, 62, 22866, 4943, 198, 31, 76, 735, 13, 17147, 7203, 75, 76, 62, 25781, 13, 1818, 2220, 62, 805, 10321, 13, 6649, 333, 76, 13, 6649, 333, 76, 310, 335, 62, 1676, 6404, 13, 1136, 62, 35827, 62, 677, 4541, 62, 1640, 62, 21858, 4943, 198, 31, 76, 735, 13, 17147, 7203, 75, 76, 62, 25781, 13, 1818, 2220, 62, 805, 10321, 13, 6649, 333, 76, 13, 6649, 333, 76, 310, 335, 62, 1676, 6404, 13, 1136, 62, 11250, 62, 6738, 62, 1891, 437, 4943, 198, 31, 76, 735, 13, 17147, 7203, 75, 76, 62, 25781, 13, 1818, 2220, 62, 805, 10321, 13, 6649, 333, 76, 13, 6649, 333, 76, 310, 335, 62, 1676, 6404, 13, 19119, 62, 13116, 4943, 628, 198, 31, 9078, 9288, 13, 4102, 13, 292, 13361, 952, 198, 31, 76, 735, 13, 17147, 7203, 75, 76, 62, 25781, 13, 1818, 2220, 62, 805, 10321, 13, 6649, 333, 76, 13, 6649, 333, 76, 310, 335, 62, 1676, 6404, 13, 17597, 4943, 198, 31, 76, 735, 13, 17147, 7203, 75, 76, 62, 25781, 13, 1818, 2220, 62, 805, 10321, 13, 6649, 333, 76, 13, 6649, 333, 76, 310, 335, 62, 1676, 6404, 13, 1136, 62, 21858, 62, 22866, 4943, 198, 31, 76, 735, 13, 17147, 7203, 75, 76, 62, 25781, 13, 1818, 2220, 62, 805, 10321, 13, 6649, 333, 76, 13, 6649, 333, 76, 310, 335, 62, 1676, 6404, 13, 1136, 62, 35827, 62, 677, 4541, 62, 1640, 62, 21858, 4943, 198, 31, 76, 735, 13, 17147, 7203, 75, 76, 62, 25781, 13, 1818, 2220, 62, 805, 10321, 13, 6649, 333, 76, 13, 6649, 333, 76, 310, 335, 62, 1676, 6404, 13, 1136, 62, 11250, 62, 6738, 62, 1891, 437, 4943, 198, 31, 76, 735, 13, 17147, 7203, 75, 76, 62, 25781, 13, 1818, 2220, 62, 805, 10321, 13, 6649, 333, 76, 13, 6649, 333, 76, 310, 335, 62, 1676, 6404, 13, 19119, 62, 13116, 4943, 198, 31, 76, 735, 13, 17147, 7203, 75, 76, 62, 25781, 13, 1818, 2220, 62, 805, 10321, 13, 6649, 333, 76, 13, 6649, 333, 76, 310, 335, 62, 1676, 6404, 13, 15883, 62, 2070, 278, 62, 25927, 4943, 628, 198, 31, 9078, 9288, 13, 4102, 13, 292, 13361, 952, 198, 31, 76, 735, 13, 17147, 7203, 75, 76, 62, 25781, 13, 1818, 2220, 62, 805, 10321, 13, 6649, 333, 76, 13, 6649, 333, 76, 310, 335, 62, 1676, 6404, 13, 17597, 4943, 198, 31, 76, 735, 13, 17147, 7203, 75, 76, 62, 25781, 13, 1818, 2220, 62, 805, 10321, 13, 6649, 333, 76, 13, 6649, 333, 76, 310, 335, 62, 1676, 6404, 13, 33692, 4943, 198, 31, 76, 735, 13, 17147, 7203, 75, 76, 62, 25781, 13, 1818, 2220, 62, 805, 10321, 13, 6649, 333, 76, 13, 6649, 333, 76, 310, 335, 62, 1676, 6404, 13, 1136, 62, 21858, 62, 22866, 4943, 198, 31, 76, 735, 13, 17147, 7203, 75, 76, 62, 25781, 13, 1818, 2220, 62, 805, 10321, 13, 6649, 333, 76, 13, 6649, 333, 76, 310, 335, 62, 1676, 6404, 13, 1136, 62, 35827, 62, 677, 4541, 62, 1640, 62, 21858, 4943, 198, 31, 76, 735, 13, 17147, 7203, 75, 76, 62, 25781, 13, 1818, 2220, 62, 805, 10321, 13, 6649, 333, 76, 13, 6649, 333, 76, 310, 335, 62, 1676, 6404, 13, 1136, 62, 11250, 62, 6738, 62, 1891, 437, 4943, 198, 31, 76, 735, 13, 17147, 7203, 75, 76, 62, 25781, 13, 1818, 2220, 62, 805, 10321, 13, 6649, 333, 76, 13, 6649, 333, 76, 310, 335, 62, 1676, 6404, 13, 19119, 62, 13116, 4943, 198, 31, 76, 735, 13, 17147, 7203, 75, 76, 62, 25781, 13, 1818, 2220, 62, 805, 10321, 13, 6649, 333, 76, 13, 6649, 333, 76, 310, 335, 62, 1676, 6404, 13, 15883, 62, 2070, 278, 62, 25927, 4943, 198 ]
2.236868
1,009
"""Context processors and other useful functions""" from re import template from flask import Blueprint, current_app as app from datetime import datetime from blogapp import fc contexts_bp = Blueprint("contexts_bp", __name__) @contexts_bp.app_context_processor def datetime_processor(): """Inject current date/time into each template before rendering""" return dict(get_datetime=get_datetime) @contexts_bp.app_context_processor def form_constraints(): """Inject form constraints into login/signup fields""" return { "min_name_length": fc["min_name_length"], "max_name_length": fc["max_name_length"], "min_username_length": fc["min_username_length"], "max_username_length": fc["max_username_length"], "min_pass_length": fc["min_pass_length"], } @contexts_bp.after_request def after_request(response): """Ensure responses aren't cached""" response.headers["Cache-Control"] = "no-cache, no-store, must-revalidate" response.headers["Expires"] = 0 response.headers["Pragma"] = "no-cache" return response
[ 37811, 21947, 20399, 290, 584, 4465, 5499, 37811, 198, 6738, 302, 1330, 11055, 198, 6738, 42903, 1330, 39932, 11, 1459, 62, 1324, 355, 598, 198, 6738, 4818, 8079, 1330, 4818, 8079, 198, 198, 6738, 4130, 1324, 1330, 277, 66, 628, 198, 22866, 82, 62, 46583, 796, 39932, 7203, 22866, 82, 62, 46583, 1600, 11593, 3672, 834, 8, 628, 198, 31, 22866, 82, 62, 46583, 13, 1324, 62, 22866, 62, 41341, 198, 4299, 4818, 8079, 62, 41341, 33529, 198, 220, 220, 220, 37227, 818, 752, 1459, 3128, 14, 2435, 656, 1123, 11055, 878, 14837, 37811, 198, 220, 220, 220, 1441, 8633, 7, 1136, 62, 19608, 8079, 28, 1136, 62, 19608, 8079, 8, 628, 198, 31, 22866, 82, 62, 46583, 13, 1324, 62, 22866, 62, 41341, 198, 4299, 1296, 62, 1102, 2536, 6003, 33529, 198, 220, 220, 220, 37227, 818, 752, 1296, 17778, 656, 17594, 14, 12683, 929, 7032, 37811, 198, 220, 220, 220, 1441, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 1084, 62, 3672, 62, 13664, 1298, 277, 66, 14692, 1084, 62, 3672, 62, 13664, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 366, 9806, 62, 3672, 62, 13664, 1298, 277, 66, 14692, 9806, 62, 3672, 62, 13664, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 366, 1084, 62, 29460, 62, 13664, 1298, 277, 66, 14692, 1084, 62, 29460, 62, 13664, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 366, 9806, 62, 29460, 62, 13664, 1298, 277, 66, 14692, 9806, 62, 29460, 62, 13664, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 366, 1084, 62, 6603, 62, 13664, 1298, 277, 66, 14692, 1084, 62, 6603, 62, 13664, 33116, 198, 220, 220, 220, 1782, 628, 198, 31, 22866, 82, 62, 46583, 13, 8499, 62, 25927, 198, 4299, 706, 62, 25927, 7, 26209, 2599, 198, 220, 220, 220, 37227, 4834, 19532, 9109, 3588, 470, 39986, 37811, 198, 220, 220, 220, 2882, 13, 50145, 14692, 30562, 12, 15988, 8973, 796, 366, 3919, 12, 23870, 11, 645, 12, 8095, 11, 1276, 12, 260, 12102, 378, 1, 198, 220, 220, 220, 2882, 13, 50145, 14692, 16870, 2387, 8973, 796, 657, 198, 220, 220, 220, 2882, 13, 50145, 14692, 6836, 363, 2611, 8973, 796, 366, 3919, 12, 23870, 1, 198, 220, 220, 220, 1441, 2882 ]
2.898667
375
from setuptools import setup from pathlib import Path subpackage_path = (Path(__file__).parent / "deps" / "subpackage").resolve() setup( name="mainpackage", version="0.1", packages="mainpackage", install_requires=[ f"subpackage @ git+file://{subpackage_path}#subpackage-0.1", ], )
[ 6738, 900, 37623, 10141, 1330, 9058, 198, 6738, 3108, 8019, 1330, 10644, 198, 198, 7266, 26495, 62, 6978, 796, 357, 15235, 7, 834, 7753, 834, 737, 8000, 1220, 366, 10378, 82, 1, 1220, 366, 7266, 26495, 11074, 411, 6442, 3419, 198, 198, 40406, 7, 198, 220, 220, 220, 1438, 2625, 12417, 26495, 1600, 198, 220, 220, 220, 2196, 2625, 15, 13, 16, 1600, 198, 220, 220, 220, 10392, 2625, 12417, 26495, 1600, 198, 220, 220, 220, 2721, 62, 47911, 41888, 198, 220, 220, 220, 220, 220, 220, 220, 277, 1, 7266, 26495, 2488, 17606, 10, 7753, 1378, 90, 7266, 26495, 62, 6978, 92, 2, 7266, 26495, 12, 15, 13, 16, 1600, 198, 220, 220, 220, 16589, 198, 8, 198 ]
2.613445
119
# # Copyright (c) 2014 Juniper Networks, Inc. All rights reserved. # """ This file contains implementation of managing physical router configuration """ # Import kazoo.client before monkey patching from cfgm_common.zkclient import ZookeeperClient from gevent import monkey monkey.patch_all() from cfgm_common.vnc_kombu import VncKombuClient import cgitb import sys import argparse import requests import ConfigParser import socket import time from pprint import pformat from pysandesh.sandesh_base import * from pysandesh.sandesh_logger import * from pysandesh.gen_py.sandesh.ttypes import SandeshLevel from cfgm_common.uve.virtual_network.ttypes import * from sandesh_common.vns.ttypes import Module from sandesh_common.vns.constants import ModuleNames, Module2NodeType, \ NodeTypeNames, INSTANCE_ID_DEFAULT from pysandesh.connection_info import ConnectionState from pysandesh.gen_py.process_info.ttypes import ConnectionType as ConnType from pysandesh.gen_py.process_info.ttypes import ConnectionStatus import discoveryclient.client as client from cfgm_common.exceptions import ResourceExhaustionError from vnc_api.vnc_api import VncApi from cfgm_common.uve.nodeinfo.ttypes import NodeStatusUVE, \ NodeStatus from db import DBBaseDM, BgpRouterDM, PhysicalRouterDM, PhysicalInterfaceDM,\ ServiceInstanceDM, LogicalInterfaceDM, VirtualMachineInterfaceDM, \ VirtualNetworkDM, RoutingInstanceDM, GlobalSystemConfigDM, \ GlobalVRouterConfigDM, FloatingIpDM, InstanceIpDM, DMCassandraDB, PortTupleDM from physical_router_config import PushConfigState from cfgm_common.dependency_tracker import DependencyTracker from cfgm_common.utils import cgitb_hook def parse_args(args_str): ''' Eg. python device_manager.py --rabbit_server localhost -- rabbit_port 5672 -- rabbit_user guest -- rabbit_password guest --cassandra_server_list 10.1.2.3:9160 --api_server_ip 10.1.2.3 --api_server_port 8082 --api_server_use_ssl False --zk_server_ip 10.1.2.3 --zk_server_port 2181 --collectors 127.0.0.1:8086 --disc_server_ip 127.0.0.1 --disc_server_port 5998 --http_server_port 8090 --log_local --log_level SYS_DEBUG --log_category test --log_file <stdout> --use_syslog --syslog_facility LOG_USER --cluster_id <testbed-name> --repush_interval 15 --repush_max_interval 300 --push_delay_per_kb 0.01 --push_delay_max 100 --push_delay_enable True [--reset_config] ''' # Source any specified config/ini file # Turn off help, so we all options in response to -h conf_parser = argparse.ArgumentParser(add_help=False) conf_parser.add_argument("-c", "--conf_file", action='append', help="Specify config file", metavar="FILE") args, remaining_argv = conf_parser.parse_known_args(args_str.split()) defaults = { 'rabbit_server': 'localhost', 'rabbit_port': '5672', 'rabbit_user': 'guest', 'rabbit_password': 'guest', 'rabbit_vhost': None, 'rabbit_ha_mode': False, 'cassandra_server_list': '127.0.0.1:9160', 'api_server_ip': '127.0.0.1', 'api_server_port': '8082', 'api_server_use_ssl': False, 'zk_server_ip': '127.0.0.1', 'zk_server_port': '2181', 'collectors': None, 'disc_server_ip': None, 'disc_server_port': None, 'http_server_port': '8096', 'log_local': False, 'log_level': SandeshLevel.SYS_DEBUG, 'log_category': '', 'log_file': Sandesh._DEFAULT_LOG_FILE, 'use_syslog': False, 'syslog_facility': Sandesh._DEFAULT_SYSLOG_FACILITY, 'cluster_id': '', 'repush_interval': '15', 'repush_max_interval': '600', 'push_delay_per_kb': '0.01', 'push_delay_max': '100', 'push_delay_enable': 'True', 'sandesh_send_rate_limit': SandeshSystem.get_sandesh_send_rate_limit(), 'rabbit_use_ssl': False, 'kombu_ssl_version': '', 'kombu_ssl_keyfile': '', 'kombu_ssl_certfile': '', 'kombu_ssl_ca_certs': '', } secopts = { 'use_certs': False, 'keyfile': '', 'certfile': '', 'ca_certs': '', 'ifmap_certauth_port': "8444", } ksopts = { 'admin_user': 'user1', 'admin_password': 'password1', 'admin_tenant_name': 'default-domain', } cassandraopts = { 'cassandra_user': None, 'cassandra_password': None } if args.conf_file: config = ConfigParser.SafeConfigParser() config.read(args.conf_file) defaults.update(dict(config.items("DEFAULTS"))) if ('SECURITY' in config.sections() and 'use_certs' in config.options('SECURITY')): if config.getboolean('SECURITY', 'use_certs'): secopts.update(dict(config.items("SECURITY"))) if 'KEYSTONE' in config.sections(): ksopts.update(dict(config.items("KEYSTONE"))) if 'CASSANDRA' in config.sections(): cassandraopts.update(dict(config.items('CASSANDRA'))) # Override with CLI options # Don't surpress add_help here so it will handle -h parser = argparse.ArgumentParser( # Inherit options from config_parser parents=[conf_parser], # print script description with -h/--help description=__doc__, # Don't mess with format of description formatter_class=argparse.RawDescriptionHelpFormatter, ) defaults.update(secopts) defaults.update(ksopts) defaults.update(cassandraopts) parser.set_defaults(**defaults) parser.add_argument( "--cassandra_server_list", help="List of cassandra servers in IP Address:Port format", nargs='+') parser.add_argument( "--reset_config", action="store_true", help="Warning! Destroy previous configuration and start clean") parser.add_argument("--api_server_ip", help="IP address of API server") parser.add_argument("--api_server_port", help="Port of API server") parser.add_argument("--api_server_use_ssl", help="Use SSL to connect with API server") parser.add_argument("--zk_server_ip", help="IP address:port of zookeeper server") parser.add_argument("--collectors", help="List of VNC collectors in ip:port format", nargs="+") parser.add_argument("--disc_server_ip", help="IP address of the discovery server") parser.add_argument("--disc_server_port", help="Port of the discovery server") parser.add_argument("--http_server_port", help="Port of local HTTP server") parser.add_argument("--log_local", action="store_true", help="Enable local logging of sandesh messages") parser.add_argument( "--log_level", help="Severity level for local logging of sandesh messages") parser.add_argument( "--log_category", help="Category filter for local logging of sandesh messages") parser.add_argument("--log_file", help="Filename for the logs to be written to") parser.add_argument("--use_syslog", action="store_true", help="Use syslog for logging") parser.add_argument("--syslog_facility", help="Syslog facility to receive log lines") parser.add_argument("--admin_user", help="Name of keystone admin user") parser.add_argument("--admin_password", help="Password of keystone admin user") parser.add_argument("--admin_tenant_name", help="Tenant name for keystone admin user") parser.add_argument("--cluster_id", help="Used for database keyspace separation") parser.add_argument("--repush_interval", help="time interval for config re push") parser.add_argument("--repush_max_interval", help="max time interval for config re push") parser.add_argument("--push_delay_per_kb", help="time delay between two successful commits per kb config size") parser.add_argument("--push_delay_max", help="max time delay between two successful commits") parser.add_argument("--push_delay_enable", help="enable delay between two successful commits") parser.add_argument("--cassandra_user", help="Cassandra user name") parser.add_argument("--cassandra_password", help="Cassandra password") parser.add_argument("--sandesh_send_rate_limit", type=int, help="Sandesh send rate limit in messages/sec") args = parser.parse_args(remaining_argv) if type(args.cassandra_server_list) is str: args.cassandra_server_list = args.cassandra_server_list.split() if type(args.collectors) is str: args.collectors = args.collectors.split() return args # end parse_args # end main # end run_device_manager # end server_main if __name__ == '__main__': server_main()
[ 2, 198, 2, 15069, 357, 66, 8, 1946, 7653, 9346, 27862, 11, 3457, 13, 1439, 2489, 10395, 13, 198, 2, 198, 198, 37811, 198, 1212, 2393, 4909, 7822, 286, 11149, 3518, 20264, 8398, 198, 37811, 198, 198, 2, 17267, 479, 1031, 2238, 13, 16366, 878, 21657, 8529, 278, 198, 6738, 30218, 39870, 62, 11321, 13, 89, 74, 16366, 1330, 31645, 2088, 5723, 11792, 198, 6738, 4903, 1151, 1330, 21657, 198, 49572, 13, 17147, 62, 439, 3419, 198, 6738, 30218, 39870, 62, 11321, 13, 85, 10782, 62, 74, 2381, 84, 1330, 569, 10782, 42, 2381, 84, 11792, 198, 11748, 269, 18300, 65, 198, 11748, 25064, 198, 11748, 1822, 29572, 198, 11748, 7007, 198, 11748, 17056, 46677, 198, 11748, 17802, 198, 11748, 640, 198, 6738, 279, 4798, 1330, 279, 18982, 198, 198, 6738, 279, 893, 392, 5069, 13, 38142, 5069, 62, 8692, 1330, 1635, 198, 6738, 279, 893, 392, 5069, 13, 38142, 5069, 62, 6404, 1362, 1330, 1635, 198, 6738, 279, 893, 392, 5069, 13, 5235, 62, 9078, 13, 38142, 5069, 13, 83, 19199, 1330, 3837, 5069, 4971, 198, 6738, 30218, 39870, 62, 11321, 13, 45177, 13, 32844, 62, 27349, 13, 83, 19199, 1330, 1635, 198, 6738, 6450, 5069, 62, 11321, 13, 85, 5907, 13, 83, 19199, 1330, 19937, 198, 6738, 6450, 5069, 62, 11321, 13, 85, 5907, 13, 9979, 1187, 1330, 19937, 36690, 11, 19937, 17, 19667, 6030, 11, 3467, 198, 220, 220, 220, 19081, 6030, 36690, 11, 40589, 19240, 62, 2389, 62, 7206, 38865, 198, 6738, 279, 893, 392, 5069, 13, 38659, 62, 10951, 1330, 26923, 9012, 198, 6738, 279, 893, 392, 5069, 13, 5235, 62, 9078, 13, 14681, 62, 10951, 13, 83, 19199, 1330, 26923, 6030, 355, 20776, 6030, 198, 6738, 279, 893, 392, 5069, 13, 5235, 62, 9078, 13, 14681, 62, 10951, 13, 83, 19199, 1330, 26923, 19580, 198, 11748, 9412, 16366, 13, 16366, 355, 5456, 198, 6738, 30218, 39870, 62, 11321, 13, 1069, 11755, 1330, 20857, 3109, 42456, 295, 12331, 198, 6738, 410, 10782, 62, 15042, 13, 85, 10782, 62, 15042, 1330, 569, 10782, 32, 14415, 198, 6738, 30218, 39870, 62, 11321, 13, 45177, 13, 17440, 10951, 13, 83, 19199, 1330, 19081, 19580, 52, 6089, 11, 3467, 198, 220, 220, 220, 19081, 19580, 198, 6738, 20613, 1330, 20137, 14881, 23127, 11, 347, 31197, 49, 39605, 23127, 11, 16331, 49, 39605, 23127, 11, 16331, 39317, 23127, 11, 59, 198, 220, 220, 220, 4809, 33384, 23127, 11, 5972, 605, 39317, 23127, 11, 15595, 37573, 39317, 23127, 11, 3467, 198, 220, 220, 220, 15595, 26245, 23127, 11, 371, 13660, 33384, 23127, 11, 8060, 11964, 16934, 23127, 11, 3467, 198, 220, 220, 220, 8060, 13024, 39605, 16934, 23127, 11, 49768, 40, 79, 23127, 11, 2262, 590, 40, 79, 23127, 11, 360, 9655, 562, 15918, 11012, 11, 4347, 51, 29291, 23127, 198, 6738, 3518, 62, 472, 353, 62, 11250, 1330, 23691, 16934, 9012, 198, 6738, 30218, 39870, 62, 11321, 13, 45841, 1387, 62, 2213, 10735, 1330, 37947, 1387, 35694, 198, 6738, 30218, 39870, 62, 11321, 13, 26791, 1330, 269, 18300, 65, 62, 25480, 628, 198, 198, 4299, 21136, 62, 22046, 7, 22046, 62, 2536, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 36386, 13, 21015, 3335, 62, 37153, 13, 9078, 220, 1377, 81, 14229, 62, 15388, 1957, 4774, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 22746, 62, 634, 642, 43864, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 22746, 62, 7220, 8319, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 22746, 62, 28712, 8319, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 66, 562, 15918, 62, 15388, 62, 4868, 838, 13, 16, 13, 17, 13, 18, 25, 24, 14198, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 15042, 62, 15388, 62, 541, 838, 13, 16, 13, 17, 13, 18, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 15042, 62, 15388, 62, 634, 41241, 17, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 15042, 62, 15388, 62, 1904, 62, 45163, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 89, 74, 62, 15388, 62, 541, 838, 13, 16, 13, 17, 13, 18, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 89, 74, 62, 15388, 62, 634, 362, 27057, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 33327, 669, 18112, 13, 15, 13, 15, 13, 16, 25, 1795, 4521, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 15410, 62, 15388, 62, 541, 18112, 13, 15, 13, 15, 13, 16, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 15410, 62, 15388, 62, 634, 642, 34808, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 4023, 62, 15388, 62, 634, 807, 42534, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 6404, 62, 12001, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 6404, 62, 5715, 311, 16309, 62, 30531, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 6404, 62, 22872, 1332, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 6404, 62, 7753, 1279, 19282, 448, 29, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 1904, 62, 17597, 6404, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 17597, 6404, 62, 38942, 879, 41605, 62, 29904, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 565, 5819, 62, 312, 1279, 9288, 3077, 12, 3672, 29, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 7856, 1530, 62, 3849, 2100, 1315, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 7856, 1530, 62, 9806, 62, 3849, 2100, 5867, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 14689, 62, 40850, 62, 525, 62, 32812, 657, 13, 486, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 14689, 62, 40850, 62, 9806, 1802, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1377, 14689, 62, 40850, 62, 21633, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 438, 42503, 62, 11250, 60, 198, 220, 220, 220, 705, 7061, 628, 220, 220, 220, 1303, 8090, 597, 7368, 4566, 14, 5362, 2393, 198, 220, 220, 220, 1303, 6756, 572, 1037, 11, 523, 356, 220, 220, 220, 220, 220, 477, 3689, 287, 2882, 284, 532, 71, 198, 220, 220, 220, 1013, 62, 48610, 796, 1822, 29572, 13, 28100, 1713, 46677, 7, 2860, 62, 16794, 28, 25101, 8, 628, 220, 220, 220, 1013, 62, 48610, 13, 2860, 62, 49140, 7203, 12, 66, 1600, 366, 438, 10414, 62, 7753, 1600, 2223, 11639, 33295, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 22882, 1958, 4566, 2393, 1600, 1138, 615, 283, 2625, 25664, 4943, 198, 220, 220, 220, 26498, 11, 5637, 62, 853, 85, 796, 1013, 62, 48610, 13, 29572, 62, 4002, 62, 22046, 7, 22046, 62, 2536, 13, 35312, 28955, 628, 220, 220, 220, 26235, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 81, 14229, 62, 15388, 10354, 705, 36750, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 81, 14229, 62, 634, 10354, 705, 20, 43864, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 81, 14229, 62, 7220, 10354, 705, 5162, 395, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 81, 14229, 62, 28712, 10354, 705, 5162, 395, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 81, 14229, 62, 85, 4774, 10354, 6045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 81, 14229, 62, 3099, 62, 14171, 10354, 10352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 66, 562, 15918, 62, 15388, 62, 4868, 10354, 705, 16799, 13, 15, 13, 15, 13, 16, 25, 24, 14198, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 15042, 62, 15388, 62, 541, 10354, 705, 16799, 13, 15, 13, 15, 13, 16, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 15042, 62, 15388, 62, 634, 10354, 705, 1795, 6469, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 15042, 62, 15388, 62, 1904, 62, 45163, 10354, 10352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 89, 74, 62, 15388, 62, 541, 10354, 705, 16799, 13, 15, 13, 15, 13, 16, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 89, 74, 62, 15388, 62, 634, 10354, 705, 17, 27057, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 33327, 669, 10354, 6045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 15410, 62, 15388, 62, 541, 10354, 6045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 15410, 62, 15388, 62, 634, 10354, 6045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 4023, 62, 15388, 62, 634, 10354, 705, 1795, 4846, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 6404, 62, 12001, 10354, 10352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 6404, 62, 5715, 10354, 3837, 5069, 4971, 13, 50, 16309, 62, 30531, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 6404, 62, 22872, 10354, 705, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 6404, 62, 7753, 10354, 3837, 5069, 13557, 7206, 38865, 62, 25294, 62, 25664, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 1904, 62, 17597, 6404, 10354, 10352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 17597, 6404, 62, 38942, 879, 10354, 3837, 5069, 13557, 7206, 38865, 62, 23060, 8634, 7730, 62, 37, 2246, 4146, 9050, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 565, 5819, 62, 312, 10354, 705, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7856, 1530, 62, 3849, 2100, 10354, 705, 1314, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7856, 1530, 62, 9806, 62, 3849, 2100, 10354, 705, 8054, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 14689, 62, 40850, 62, 525, 62, 32812, 10354, 705, 15, 13, 486, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 14689, 62, 40850, 62, 9806, 10354, 705, 3064, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 14689, 62, 40850, 62, 21633, 10354, 705, 17821, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 38142, 5069, 62, 21280, 62, 4873, 62, 32374, 10354, 3837, 5069, 11964, 13, 1136, 62, 38142, 5069, 62, 21280, 62, 4873, 62, 32374, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 705, 81, 14229, 62, 1904, 62, 45163, 10354, 10352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 74, 2381, 84, 62, 45163, 62, 9641, 10354, 705, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 74, 2381, 84, 62, 45163, 62, 2539, 7753, 10354, 705, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 74, 2381, 84, 62, 45163, 62, 22583, 7753, 10354, 705, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 74, 2381, 84, 62, 45163, 62, 6888, 62, 22583, 82, 10354, 705, 3256, 198, 220, 220, 220, 1782, 198, 220, 220, 220, 792, 404, 912, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 1904, 62, 22583, 82, 10354, 10352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 2539, 7753, 10354, 705, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 22583, 7753, 10354, 705, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 6888, 62, 22583, 82, 10354, 705, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 361, 8899, 62, 22583, 18439, 62, 634, 10354, 366, 23, 30272, 1600, 198, 220, 220, 220, 1782, 198, 220, 220, 220, 479, 82, 404, 912, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 28482, 62, 7220, 10354, 705, 7220, 16, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 28482, 62, 28712, 10354, 705, 28712, 16, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 28482, 62, 1452, 415, 62, 3672, 10354, 705, 12286, 12, 27830, 3256, 198, 220, 220, 220, 1782, 198, 220, 220, 220, 30606, 15918, 404, 912, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 66, 562, 15918, 62, 7220, 10354, 6045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 66, 562, 15918, 62, 28712, 10354, 6045, 198, 220, 220, 220, 1782, 628, 220, 220, 220, 611, 26498, 13, 10414, 62, 7753, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 796, 17056, 46677, 13, 31511, 16934, 46677, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 13, 961, 7, 22046, 13, 10414, 62, 7753, 8, 198, 220, 220, 220, 220, 220, 220, 220, 26235, 13, 19119, 7, 11600, 7, 11250, 13, 23814, 7203, 7206, 7708, 35342, 1, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 611, 19203, 23683, 4261, 9050, 6, 287, 4566, 13, 23946, 3419, 290, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 1904, 62, 22583, 82, 6, 287, 4566, 13, 25811, 10786, 23683, 4261, 9050, 11537, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4566, 13, 1136, 2127, 21052, 10786, 23683, 4261, 9050, 3256, 705, 1904, 62, 22583, 82, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 792, 404, 912, 13, 19119, 7, 11600, 7, 11250, 13, 23814, 7203, 23683, 4261, 9050, 1, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 20373, 2257, 11651, 6, 287, 4566, 13, 23946, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 82, 404, 912, 13, 19119, 7, 11600, 7, 11250, 13, 23814, 7203, 20373, 2257, 11651, 1, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 34, 10705, 6981, 3861, 6, 287, 4566, 13, 23946, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30606, 15918, 404, 912, 13, 19119, 7, 11600, 7, 11250, 13, 23814, 10786, 34, 10705, 6981, 3861, 6, 22305, 628, 220, 220, 220, 1303, 3827, 13154, 351, 43749, 3689, 198, 220, 220, 220, 1303, 2094, 470, 969, 8439, 751, 62, 16794, 994, 523, 340, 481, 5412, 532, 71, 198, 220, 220, 220, 30751, 796, 1822, 29572, 13, 28100, 1713, 46677, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 47025, 270, 3689, 422, 4566, 62, 48610, 198, 220, 220, 220, 220, 220, 220, 220, 3397, 41888, 10414, 62, 48610, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 4226, 6764, 351, 532, 71, 14, 438, 16794, 198, 220, 220, 220, 220, 220, 220, 220, 6764, 28, 834, 15390, 834, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2094, 470, 2085, 351, 5794, 286, 6764, 198, 220, 220, 220, 220, 220, 220, 220, 1296, 1436, 62, 4871, 28, 853, 29572, 13, 27369, 11828, 22087, 8479, 1436, 11, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 26235, 13, 19119, 7, 2363, 404, 912, 8, 198, 220, 220, 220, 26235, 13, 19119, 7, 591, 404, 912, 8, 198, 220, 220, 220, 26235, 13, 19119, 7, 66, 562, 15918, 404, 912, 8, 198, 220, 220, 220, 30751, 13, 2617, 62, 12286, 82, 7, 1174, 12286, 82, 8, 628, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 220, 220, 220, 220, 366, 438, 66, 562, 15918, 62, 15388, 62, 4868, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 8053, 286, 30606, 15918, 9597, 287, 6101, 17917, 25, 13924, 5794, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 299, 22046, 11639, 10, 11537, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 220, 220, 220, 220, 366, 438, 42503, 62, 11250, 1600, 2223, 2625, 8095, 62, 7942, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 20361, 0, 19448, 2180, 8398, 290, 923, 3424, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 438, 15042, 62, 15388, 62, 541, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 4061, 2209, 286, 7824, 4382, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 438, 15042, 62, 15388, 62, 634, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 13924, 286, 7824, 4382, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 438, 15042, 62, 15388, 62, 1904, 62, 45163, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 11041, 25952, 284, 2018, 351, 7824, 4382, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 438, 89, 74, 62, 15388, 62, 541, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 4061, 2209, 25, 634, 286, 40565, 2088, 5723, 4382, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 438, 33327, 669, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 8053, 286, 569, 7792, 26668, 287, 20966, 25, 634, 5794, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 22046, 2625, 10, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 438, 15410, 62, 15388, 62, 541, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 4061, 2209, 286, 262, 9412, 4382, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 438, 15410, 62, 15388, 62, 634, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 13924, 286, 262, 9412, 4382, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 438, 4023, 62, 15388, 62, 634, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 13924, 286, 1957, 14626, 4382, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 438, 6404, 62, 12001, 1600, 2223, 2625, 8095, 62, 7942, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 36695, 1957, 18931, 286, 6450, 5069, 6218, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 220, 220, 220, 220, 366, 438, 6404, 62, 5715, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 50, 964, 414, 1241, 329, 1957, 18931, 286, 6450, 5069, 6218, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 220, 220, 220, 220, 366, 438, 6404, 62, 22872, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 27313, 8106, 329, 1957, 18931, 286, 6450, 5069, 6218, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 438, 6404, 62, 7753, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 35063, 329, 262, 17259, 284, 307, 3194, 284, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 438, 1904, 62, 17597, 6404, 1600, 2223, 2625, 8095, 62, 7942, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 11041, 25064, 6404, 329, 18931, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 438, 17597, 6404, 62, 38942, 879, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 44387, 6404, 6841, 284, 3328, 2604, 3951, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 438, 28482, 62, 7220, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 5376, 286, 1994, 6440, 13169, 2836, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 438, 28482, 62, 28712, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 35215, 286, 1994, 6440, 13169, 2836, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 438, 28482, 62, 1452, 415, 62, 3672, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 24893, 415, 1438, 329, 1994, 6440, 13169, 2836, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 438, 565, 5819, 62, 312, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 38052, 329, 6831, 8251, 10223, 14139, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 438, 7856, 1530, 62, 3849, 2100, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 2435, 16654, 329, 4566, 302, 4574, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 438, 7856, 1530, 62, 9806, 62, 3849, 2100, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 9806, 640, 16654, 329, 4566, 302, 4574, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 438, 14689, 62, 40850, 62, 525, 62, 32812, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 2435, 5711, 1022, 734, 4388, 23463, 583, 47823, 4566, 2546, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 438, 14689, 62, 40850, 62, 9806, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 9806, 640, 5711, 1022, 734, 4388, 23463, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 438, 14689, 62, 40850, 62, 21633, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 21633, 5711, 1022, 734, 4388, 23463, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 438, 66, 562, 15918, 62, 7220, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 43529, 15918, 2836, 1438, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 438, 66, 562, 15918, 62, 28712, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 43529, 15918, 9206, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 438, 38142, 5069, 62, 21280, 62, 4873, 62, 32374, 1600, 2099, 28, 600, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 18471, 5069, 3758, 2494, 4179, 287, 6218, 14, 2363, 4943, 198, 220, 220, 220, 26498, 796, 30751, 13, 29572, 62, 22046, 7, 2787, 1397, 62, 853, 85, 8, 198, 220, 220, 220, 611, 2099, 7, 22046, 13, 66, 562, 15918, 62, 15388, 62, 4868, 8, 318, 965, 25, 198, 220, 220, 220, 220, 220, 220, 220, 26498, 13, 66, 562, 15918, 62, 15388, 62, 4868, 796, 26498, 13, 66, 562, 15918, 62, 15388, 62, 4868, 13, 35312, 3419, 198, 220, 220, 220, 611, 2099, 7, 22046, 13, 33327, 669, 8, 318, 965, 25, 198, 220, 220, 220, 220, 220, 220, 220, 26498, 13, 33327, 669, 796, 26498, 13, 33327, 669, 13, 35312, 3419, 628, 220, 220, 220, 1441, 26498, 198, 2, 886, 21136, 62, 22046, 198, 198, 2, 886, 1388, 198, 198, 2, 886, 1057, 62, 25202, 62, 37153, 198, 198, 2, 886, 4382, 62, 12417, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 4382, 62, 12417, 3419, 198 ]
2.160902
4,568
# Copyright (c) Microsoft Corporation # All rights reserved. # # MIT License # # Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated # documentation files (the "Software"), to deal in the Software without restriction, including without limitation # the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and # to permit persons to whom the Software is furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING # BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, # DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. from basic_test import OrderedUnitTestCase, separated from openpaisdk import to_screen
[ 2, 15069, 357, 66, 8, 5413, 10501, 198, 2, 1439, 2489, 10395, 13, 198, 2, 198, 2, 17168, 13789, 198, 2, 198, 2, 2448, 3411, 318, 29376, 7520, 11, 1479, 286, 3877, 11, 284, 597, 1048, 16727, 257, 4866, 286, 428, 3788, 290, 3917, 198, 2, 10314, 3696, 357, 1169, 366, 25423, 12340, 284, 1730, 287, 262, 10442, 1231, 17504, 11, 1390, 1231, 17385, 198, 2, 262, 2489, 284, 779, 11, 4866, 11, 13096, 11, 20121, 11, 7715, 11, 14983, 11, 850, 43085, 11, 290, 14, 273, 3677, 9088, 286, 262, 10442, 11, 290, 198, 2, 284, 8749, 6506, 284, 4150, 262, 10442, 318, 30760, 284, 466, 523, 11, 2426, 284, 262, 1708, 3403, 25, 198, 2, 383, 2029, 6634, 4003, 290, 428, 7170, 4003, 2236, 307, 3017, 287, 477, 9088, 393, 8904, 16690, 286, 262, 10442, 13, 198, 2, 198, 2, 3336, 47466, 3180, 36592, 2389, 1961, 1635, 1921, 3180, 25666, 42881, 34764, 56, 3963, 15529, 509, 12115, 11, 7788, 32761, 6375, 8959, 49094, 11, 47783, 2751, 198, 2, 21728, 5626, 40880, 5390, 3336, 34764, 11015, 3963, 34482, 3398, 1565, 5603, 25382, 11, 376, 46144, 7473, 317, 16652, 2149, 37232, 33079, 48933, 5357, 198, 2, 44521, 1268, 10913, 2751, 12529, 13, 3268, 8005, 49261, 50163, 3336, 37195, 20673, 6375, 27975, 38162, 9947, 367, 15173, 4877, 9348, 43031, 19146, 7473, 15529, 47666, 3955, 11, 198, 2, 29506, 25552, 6375, 25401, 43031, 25382, 11, 7655, 2767, 16879, 3268, 3537, 40282, 3963, 27342, 10659, 11, 309, 9863, 6375, 25401, 54, 24352, 11, 5923, 1797, 2751, 16034, 11, 198, 2, 16289, 3963, 6375, 3268, 7102, 45, 24565, 13315, 3336, 47466, 6375, 3336, 23210, 6375, 25401, 5550, 1847, 20754, 3268, 3336, 47466, 13, 628, 198, 6738, 4096, 62, 9288, 1330, 14230, 1068, 26453, 14402, 20448, 11, 11266, 198, 6738, 1280, 8957, 9409, 74, 1330, 284, 62, 9612, 628 ]
3.986842
304
# Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"). # You may not use this file except in compliance with the License. # A copy of the License is located at # # http://www.apache.org/licenses/LICENSE-2.0 # # or in the "license" file accompanying this file. This file is distributed # on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either # express or implied. See the License for the specific language governing # permissions and limitations under the License. import json from pathlib import Path from unittest.mock import Mock, patch import botocore import pytest from runtool.dispatcher import JobDispatcher, group_by_instance_type RESPONSE = { "TrainingJobArn": "arn:aws:sagemaker:eu-west-1:012345678901:training-job/test-60a848663fa1", "ResponseMetadata": { "RequestId": "00924112-abcd-4aed-6d4d-28190dba0b68", "HTTPStatusCode": 200, "HTTPHeaders": { "x-amzn-requestid": "00924112-abcd-4aed-6d4d-28190dba0b68", "content-type": "application/x-amz-json-1.1", "content-length": "92", "date": "Tue, 16 Mar 2021 11:19:06 GMT", }, "RetryAttempts": 0, }, } def client_side_effects(behaviour: list): """ Emulates the behaviour or a `boto3.Sagemaker.client` for mocking purposes. The return value of this function is to be used as a `unittest.mock().return_value`. Takes a list of responses which will happen in sequence from last to first. If an item in the list is the string "busy", a `ResourceLimitExceeded` exception is triggered. If an item in the list is the string "throttle", a `ResourceLimitExceeded` exception is triggered. Otherwise the item will be returned. >>> side_effects = client_side_effects([{}, "throttle", "busy"]) >>> side_effects() Traceback (most recent call last): ... botocore.exceptions.ClientError: An error occurred (ResourceLimitExceeded) when calling the operation: Unknown >>> side_effects() Traceback (most recent call last): ... botocore.exceptions.ClientError: An error occurred (ThrottlingException) when calling the operation: Unknown >>> side_effects() {} """ return client_side_effect @patch.object(JobDispatcher, "timeout_with_printer") @patch("time.sleep", return_value=None) @patch.object(JobDispatcher, "timeout_with_printer") @patch("time.sleep", return_value=None) @patch.object(JobDispatcher, "timeout_with_printer") @patch("time.sleep", return_value=None)
[ 2, 15069, 33448, 6186, 13, 785, 11, 3457, 13, 393, 663, 29116, 13, 1439, 6923, 33876, 13, 198, 2, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 11074, 198, 2, 921, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 2, 317, 4866, 286, 262, 13789, 318, 5140, 379, 198, 2, 198, 2, 220, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 393, 287, 262, 366, 43085, 1, 2393, 19249, 428, 2393, 13, 770, 2393, 318, 9387, 198, 2, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 198, 2, 4911, 393, 17142, 13, 4091, 262, 13789, 329, 262, 2176, 3303, 15030, 198, 2, 21627, 290, 11247, 739, 262, 13789, 13, 198, 198, 11748, 33918, 198, 6738, 3108, 8019, 1330, 10644, 198, 6738, 555, 715, 395, 13, 76, 735, 1330, 44123, 11, 8529, 198, 198, 11748, 10214, 420, 382, 198, 11748, 12972, 9288, 198, 6738, 1057, 25981, 13, 6381, 8071, 2044, 1330, 15768, 7279, 8071, 2044, 11, 1448, 62, 1525, 62, 39098, 62, 4906, 198, 198, 19535, 47, 1340, 5188, 796, 1391, 198, 220, 220, 220, 366, 44357, 33308, 3163, 77, 1298, 366, 1501, 25, 8356, 25, 82, 363, 32174, 25, 12496, 12, 7038, 12, 16, 25, 486, 1954, 2231, 3134, 4531, 486, 25, 34409, 12, 21858, 14, 9288, 12, 1899, 64, 23, 2780, 45791, 13331, 16, 1600, 198, 220, 220, 220, 366, 31077, 9171, 14706, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 18453, 7390, 1298, 366, 28694, 1731, 14686, 12, 397, 10210, 12, 19, 8432, 12, 21, 67, 19, 67, 12, 2078, 19782, 67, 7012, 15, 65, 3104, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 40717, 19580, 10669, 1298, 939, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 40717, 13847, 364, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 87, 12, 321, 47347, 12, 25927, 312, 1298, 366, 28694, 1731, 14686, 12, 397, 10210, 12, 19, 8432, 12, 21, 67, 19, 67, 12, 2078, 19782, 67, 7012, 15, 65, 3104, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 11299, 12, 4906, 1298, 366, 31438, 14, 87, 12, 321, 89, 12, 17752, 12, 16, 13, 16, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 11299, 12, 13664, 1298, 366, 5892, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 4475, 1298, 366, 41392, 11, 1467, 1526, 33448, 1367, 25, 1129, 25, 3312, 16987, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 366, 9781, 563, 48452, 1298, 657, 11, 198, 220, 220, 220, 8964, 198, 92, 628, 628, 198, 4299, 5456, 62, 1589, 62, 34435, 7, 20709, 37716, 25, 1351, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2295, 15968, 262, 9172, 393, 257, 4600, 65, 2069, 18, 13, 50, 363, 32174, 13, 16366, 63, 329, 198, 220, 220, 220, 31202, 4959, 13, 383, 1441, 1988, 286, 428, 2163, 318, 284, 198, 220, 220, 220, 307, 973, 355, 257, 4600, 403, 715, 395, 13, 76, 735, 22446, 7783, 62, 8367, 44646, 628, 220, 220, 220, 33687, 257, 1351, 286, 9109, 543, 481, 1645, 287, 8379, 422, 198, 220, 220, 220, 938, 284, 717, 13, 628, 220, 220, 220, 1002, 281, 2378, 287, 262, 1351, 318, 262, 4731, 366, 10885, 88, 1600, 257, 198, 220, 220, 220, 4600, 26198, 39184, 3109, 2707, 276, 63, 6631, 318, 13973, 13, 628, 220, 220, 220, 1002, 281, 2378, 287, 262, 1351, 318, 262, 4731, 366, 26110, 23296, 1600, 257, 198, 220, 220, 220, 4600, 26198, 39184, 3109, 2707, 276, 63, 6631, 318, 13973, 13, 628, 220, 220, 220, 15323, 262, 2378, 481, 307, 4504, 13, 628, 220, 220, 220, 13163, 1735, 62, 34435, 796, 5456, 62, 1589, 62, 34435, 26933, 90, 5512, 366, 26110, 23296, 1600, 366, 10885, 88, 8973, 8, 198, 220, 220, 220, 13163, 1735, 62, 34435, 3419, 198, 220, 220, 220, 34912, 1891, 357, 1712, 2274, 869, 938, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 198, 220, 220, 220, 10214, 420, 382, 13, 1069, 11755, 13, 11792, 12331, 25, 1052, 4049, 5091, 357, 26198, 39184, 3109, 2707, 276, 8, 618, 4585, 262, 220, 4905, 25, 16185, 198, 220, 220, 220, 13163, 1735, 62, 34435, 3419, 198, 220, 220, 220, 34912, 1891, 357, 1712, 2274, 869, 938, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 198, 220, 220, 220, 10214, 420, 382, 13, 1069, 11755, 13, 11792, 12331, 25, 1052, 4049, 5091, 357, 817, 305, 926, 1359, 16922, 8, 618, 4585, 262, 220, 4905, 25, 16185, 198, 220, 220, 220, 13163, 1735, 62, 34435, 3419, 198, 220, 220, 220, 23884, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 1441, 5456, 62, 1589, 62, 10760, 628, 198, 198, 31, 17147, 13, 15252, 7, 33308, 7279, 8071, 2044, 11, 366, 48678, 62, 4480, 62, 1050, 3849, 4943, 198, 31, 17147, 7203, 2435, 13, 42832, 1600, 1441, 62, 8367, 28, 14202, 8, 628, 198, 31, 17147, 13, 15252, 7, 33308, 7279, 8071, 2044, 11, 366, 48678, 62, 4480, 62, 1050, 3849, 4943, 198, 31, 17147, 7203, 2435, 13, 42832, 1600, 1441, 62, 8367, 28, 14202, 8, 628, 198, 31, 17147, 13, 15252, 7, 33308, 7279, 8071, 2044, 11, 366, 48678, 62, 4480, 62, 1050, 3849, 4943, 198, 31, 17147, 7203, 2435, 13, 42832, 1600, 1441, 62, 8367, 28, 14202, 8, 198 ]
2.78481
948
"""A full binary tree example""" from dbcbet.dbcbet import pre, post, inv, bet, finitize, finitize_method from dbcbet.helpers import state, argument_types @inv(full_tree_invariant) if __name__ == "__main__": bet(FullBinaryTree).run()
[ 37811, 32, 1336, 13934, 5509, 1672, 37811, 198, 198, 6738, 288, 15630, 11181, 13, 9945, 66, 11181, 1330, 662, 11, 1281, 11, 800, 11, 731, 11, 957, 270, 1096, 11, 957, 270, 1096, 62, 24396, 198, 6738, 288, 15630, 11181, 13, 16794, 364, 1330, 1181, 11, 4578, 62, 19199, 198, 198, 31, 16340, 7, 12853, 62, 21048, 62, 16340, 2743, 415, 8, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 731, 7, 13295, 33, 3219, 27660, 737, 5143, 3419, 198, 220, 220, 220, 220, 198 ]
2.645161
93
import argparse import random import numpy as np if __name__ == "__main__": parser = argparse.ArgumentParser(description="Create train and test splits.") parser.add_argument("-i", "--image_list", help="List of images to split.") parser.add_argument( "-p", "--percent", help="Percent of data used to test.", default=0.1 ) args = parser.parse_args() np.random.seed(0) random.seed(0) split(args.image_list, args.percent)
[ 11748, 1822, 29572, 198, 11748, 4738, 198, 198, 11748, 299, 32152, 355, 45941, 628, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 30751, 796, 1822, 29572, 13, 28100, 1713, 46677, 7, 11213, 2625, 16447, 4512, 290, 1332, 30778, 19570, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 12, 72, 1600, 366, 438, 9060, 62, 4868, 1600, 1037, 2625, 8053, 286, 4263, 284, 6626, 19570, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 220, 220, 220, 220, 27444, 79, 1600, 366, 438, 25067, 1600, 1037, 2625, 31905, 286, 1366, 973, 284, 1332, 33283, 4277, 28, 15, 13, 16, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 26498, 796, 30751, 13, 29572, 62, 22046, 3419, 628, 220, 220, 220, 45941, 13, 25120, 13, 28826, 7, 15, 8, 198, 220, 220, 220, 4738, 13, 28826, 7, 15, 8, 628, 220, 220, 220, 6626, 7, 22046, 13, 9060, 62, 4868, 11, 26498, 13, 25067, 8, 198 ]
2.757396
169
import heapq arr = [3, 0, 1, 0] k = 1 li = kFrequent(arr, k) print(li)
[ 11748, 24575, 80, 628, 198, 3258, 796, 685, 18, 11, 657, 11, 352, 11, 657, 60, 198, 74, 796, 352, 198, 4528, 796, 479, 37, 46018, 7, 3258, 11, 479, 8, 198, 4798, 7, 4528, 8 ]
2
36
from math.utils import * def main(): """ main() -> None """ myVariable = complex() print(myVariable) sumatoria(3) print(calVolumenParalelepipedo(2, 3, 10)) print(sumatoria(3)) print(sumatoriaLambda(3)) return None sumatoriaLambda = lambda x: (x * (x + 1)) / 2 # print(resultado) def count_substring(string, sub_string): """ Cuenta cuantas veces aparece el sub_string en el string Args: string: (string) sub_string: (string) rerturn : int """ return string.count(sub_string) if __name__ == "__main__": main() string = "Hola Codo a Codo" # input().strip() sub_string = "codo" # input().strip() count = count_substring(string, sub_string) print(count) str = "este es un string que tiene varias coincidencias de strings con el sub-str" sub_str = "string" print("La palabra [", sub_str, "] aparece ", count_substring(str, sub_str), " veces")
[ 6738, 10688, 13, 26791, 1330, 1635, 198, 198, 4299, 1388, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1388, 3419, 4613, 6045, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 616, 43015, 796, 3716, 3419, 198, 220, 220, 220, 3601, 7, 1820, 43015, 8, 628, 220, 220, 220, 2160, 1352, 544, 7, 18, 8, 198, 220, 220, 220, 3601, 7, 9948, 16598, 20080, 10044, 1000, 293, 79, 541, 24757, 7, 17, 11, 513, 11, 838, 4008, 198, 220, 220, 220, 3601, 7, 16345, 1352, 544, 7, 18, 4008, 198, 220, 220, 220, 3601, 7, 16345, 1352, 544, 43, 4131, 6814, 7, 18, 4008, 628, 220, 220, 220, 1441, 6045, 198, 198, 16345, 1352, 544, 43, 4131, 6814, 796, 37456, 2124, 25, 357, 87, 1635, 357, 87, 1343, 352, 4008, 1220, 362, 628, 198, 2, 3601, 7, 20274, 4533, 8, 628, 198, 198, 4299, 954, 62, 7266, 8841, 7, 8841, 11, 850, 62, 8841, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 14496, 29188, 18912, 415, 292, 1569, 728, 2471, 533, 344, 1288, 850, 62, 8841, 198, 220, 220, 220, 551, 1288, 4731, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4731, 25, 357, 8841, 8, 198, 220, 220, 220, 220, 220, 220, 220, 850, 62, 8841, 25, 357, 8841, 8, 198, 220, 220, 220, 302, 81, 15344, 1058, 493, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1441, 4731, 13, 9127, 7, 7266, 62, 8841, 8, 628, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1388, 3419, 198, 220, 220, 220, 4731, 796, 366, 39, 5708, 18720, 78, 257, 18720, 78, 1, 220, 1303, 5128, 22446, 36311, 3419, 198, 220, 220, 220, 850, 62, 8841, 796, 366, 19815, 78, 1, 220, 1303, 5128, 22446, 36311, 3419, 198, 220, 220, 220, 954, 796, 954, 62, 7266, 8841, 7, 8841, 11, 850, 62, 8841, 8, 198, 220, 220, 220, 3601, 7, 9127, 8, 628, 220, 220, 220, 965, 796, 366, 29872, 1658, 555, 4731, 8358, 46668, 1734, 1401, 4448, 11194, 14029, 979, 292, 390, 13042, 369, 1288, 850, 12, 2536, 1, 198, 220, 220, 220, 850, 62, 2536, 796, 366, 8841, 1, 628, 220, 220, 220, 3601, 7203, 14772, 6340, 397, 430, 685, 1600, 850, 62, 2536, 11, 366, 60, 2471, 533, 344, 33172, 954, 62, 7266, 8841, 7, 2536, 11, 850, 62, 2536, 828, 366, 1569, 728, 4943, 628, 220, 198, 220, 220, 220, 220 ]
2.335714
420
from numba import * a = 10 b = 11 c = 12 func = jitter() assert func() == (20, 22)
[ 6738, 997, 7012, 1330, 1635, 198, 198, 64, 796, 838, 198, 65, 796, 1367, 198, 66, 796, 1105, 198, 198, 20786, 796, 474, 1967, 3419, 198, 30493, 25439, 3419, 6624, 357, 1238, 11, 2534, 8, 198 ]
2.361111
36
""" A generic tab that displays a serie of items in a scrollable, searchable, sortable list. It should be inherited, to actually provide methods that insert items in the list, and that lets the user interact with them. """ import curses import collections import logging from typing import Dict, Callable from poezio import windows from poezio.core.structs import Command from poezio.decorators import refresh_wrapper from poezio.tabs import Tab log = logging.getLogger(__name__)
[ 37811, 198, 32, 14276, 7400, 326, 11298, 257, 1055, 494, 286, 3709, 287, 257, 10743, 540, 11, 2989, 540, 11, 198, 30619, 540, 1351, 13, 220, 632, 815, 307, 19552, 11, 284, 1682, 2148, 5050, 326, 198, 28463, 3709, 287, 262, 1351, 11, 290, 326, 8781, 262, 2836, 9427, 351, 606, 13, 198, 37811, 198, 198, 11748, 43878, 198, 11748, 17268, 198, 11748, 18931, 198, 6738, 19720, 1330, 360, 713, 11, 4889, 540, 198, 198, 6738, 745, 8471, 952, 1330, 9168, 198, 6738, 745, 8471, 952, 13, 7295, 13, 7249, 82, 1330, 9455, 198, 6738, 745, 8471, 952, 13, 12501, 273, 2024, 1330, 14976, 62, 48553, 198, 6738, 745, 8471, 952, 13, 8658, 82, 1330, 16904, 198, 198, 6404, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 628 ]
3.70229
131
from django.urls import path from . import views urlpatterns = [ path('', views.home, name='board_home'), path('new/', views.new, name='board_new'), path('detail/<int:board_id>', views.detail, name='board_detail'), path('delete/<int:board_id>', views.delete, name='board_delete'), path('edit/<int:board_id>', views.edit, name='board_edit'), ]
[ 6738, 42625, 14208, 13, 6371, 82, 1330, 3108, 198, 6738, 764, 1330, 5009, 198, 198, 6371, 33279, 82, 796, 685, 198, 220, 220, 220, 3108, 10786, 3256, 5009, 13, 11195, 11, 1438, 11639, 3526, 62, 11195, 33809, 198, 220, 220, 220, 3108, 10786, 3605, 14, 3256, 5009, 13, 3605, 11, 1438, 11639, 3526, 62, 3605, 33809, 198, 220, 220, 220, 3108, 10786, 49170, 14, 27, 600, 25, 3526, 62, 312, 29, 3256, 5009, 13, 49170, 11, 1438, 11639, 3526, 62, 49170, 33809, 198, 220, 220, 220, 3108, 10786, 33678, 14, 27, 600, 25, 3526, 62, 312, 29, 3256, 5009, 13, 33678, 11, 1438, 11639, 3526, 62, 33678, 33809, 198, 220, 220, 220, 3108, 10786, 19312, 14, 27, 600, 25, 3526, 62, 312, 29, 3256, 5009, 13, 19312, 11, 1438, 11639, 3526, 62, 19312, 33809, 198, 60 ]
2.669118
136
#!/usr/bin/env python # encoding: utf-8 """ Advent of Code 2020 - Day 9 - Challenge 2 https://adventofcode.com/2020/day/9 Solution: 35602097 """ __author__ = "Filippo Corradino" __email__ = "[email protected]" from day09_1 import find_invalid if __name__ == "__main__": main()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 21004, 25, 3384, 69, 12, 23, 198, 37811, 198, 2782, 1151, 286, 6127, 12131, 532, 3596, 860, 532, 13879, 362, 198, 5450, 1378, 324, 1151, 1659, 8189, 13, 785, 14, 42334, 14, 820, 14, 24, 198, 198, 46344, 25, 3439, 1899, 1238, 5607, 198, 37811, 198, 198, 834, 9800, 834, 796, 366, 37, 8908, 78, 2744, 6335, 2879, 1, 198, 834, 12888, 834, 796, 366, 69, 8908, 78, 13, 10215, 6335, 2879, 31, 14816, 13, 785, 1, 628, 198, 6738, 1110, 2931, 62, 16, 1330, 1064, 62, 259, 12102, 628, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1388, 3419, 198 ]
2.504202
119
# PreviesSearchPage.py from selenium import webdriver from selenium.webdriver.common.by import By from bs4 import BeautifulSoup import BusinessPaths import time import PrettifyPage import CreateDict import json import sys if __name__ == '__main__': PreviewSearchPage()
[ 2, 43280, 444, 18243, 9876, 13, 9078, 198, 198, 6738, 384, 11925, 1505, 1330, 3992, 26230, 198, 6738, 384, 11925, 1505, 13, 12384, 26230, 13, 11321, 13, 1525, 1330, 2750, 198, 6738, 275, 82, 19, 1330, 23762, 50, 10486, 198, 11748, 7320, 15235, 82, 198, 11748, 640, 198, 11748, 3771, 926, 1958, 9876, 198, 11748, 13610, 35, 713, 198, 11748, 33918, 198, 11748, 25064, 628, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 22217, 18243, 9876, 3419, 198 ]
3.22093
86
from typing import List, Union from pydantic import BaseModel, validator from app.event_models import EventModel JOIN_ROOM = "JOIN_ROOM" REJOIN_ROOM = "REJOIN_ROOM" ROOM_JOINED = "ROOM_JOINED" NEW_ROOM_JOINED = "NEW_ROOM_JOINED" KICK_PLAYER = "KICK_PLAYER" PLAYER_KICKED = "PLAYER_KICKED" PLAYER_DISCONNECTED = "PLAYER_DISCONNECTED" HOST_DISCONNECTED = "HOST_DISCONNECTED" START_GAME = "START_GAME" GAME_STARTED = "GAME_STARTED"
[ 6738, 19720, 1330, 7343, 11, 4479, 198, 198, 6738, 279, 5173, 5109, 1330, 7308, 17633, 11, 4938, 1352, 198, 198, 6738, 598, 13, 15596, 62, 27530, 1330, 8558, 17633, 198, 198, 45006, 1268, 62, 13252, 2662, 796, 366, 45006, 1268, 62, 13252, 2662, 1, 198, 2200, 45006, 1268, 62, 13252, 2662, 796, 366, 2200, 45006, 1268, 62, 13252, 2662, 1, 198, 13252, 2662, 62, 45006, 1268, 1961, 796, 366, 13252, 2662, 62, 45006, 1268, 1961, 1, 198, 13965, 62, 13252, 2662, 62, 45006, 1268, 1961, 796, 366, 13965, 62, 13252, 2662, 62, 45006, 1268, 1961, 1, 198, 42, 11860, 62, 31519, 1137, 796, 366, 42, 11860, 62, 31519, 1137, 1, 198, 31519, 1137, 62, 42, 11860, 1961, 796, 366, 31519, 1137, 62, 42, 11860, 1961, 1, 198, 31519, 1137, 62, 26288, 10943, 48842, 1961, 796, 366, 31519, 1137, 62, 26288, 10943, 48842, 1961, 1, 198, 39, 10892, 62, 26288, 10943, 48842, 1961, 796, 366, 39, 10892, 62, 26288, 10943, 48842, 1961, 1, 198, 2257, 7227, 62, 47109, 796, 366, 2257, 7227, 62, 47109, 1, 198, 47109, 62, 2257, 7227, 1961, 796, 366, 47109, 62, 2257, 7227, 1961, 1, 628, 628, 628, 628, 628, 628 ]
2.283505
194
import torch import torchvision import torchvision.transforms as transforms import matplotlib.pyplot as plt import numpy as np classes = ('beaver','dolphin','otter','seal','whale','aquarium fish','flatfish','ray','shark','trout','orchids','poppies','roses','sunflowers','tulips','bottles','bowls','cans','cups','plates','apples','mushrooms','oranges','pears','sweet peppers','clock','computer keyboard','lamp','telephone','television','bed','chair','couch','table','wardrobe','bee','beetle','butterfly','caterpillar','cockroach','bear','leopard','lion','tiger','wolf','bridge','castle','house','road','skyscraper','cloud','forest','mountain','plain','sea','camel','cattle','chimpanzee','elephant','kangaroo','fox','porcupine','possum','raccoon','skunk','crab','lobster','snail','spider','worm','baby','boy','girl','man','woman','crocodile','dinosaur','lizard','snake','turtle','hamster','mouse','rabbit','shrew','squirrel','maple','oak','palm','pine','willow','bicycle','bus','motorcycle','pickup truck','train','lawn-mower','rocket','streetcar','tank','tractor') # function to show an image
[ 11748, 28034, 198, 11748, 28034, 10178, 198, 11748, 28034, 10178, 13, 7645, 23914, 355, 31408, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 299, 32152, 355, 45941, 198, 198, 37724, 796, 19203, 1350, 8770, 41707, 67, 27161, 41707, 313, 353, 41707, 325, 282, 41707, 1929, 1000, 41707, 36129, 17756, 5916, 41707, 38568, 11084, 41707, 2433, 41707, 1477, 668, 41707, 2213, 448, 41707, 273, 354, 2340, 41707, 7501, 381, 444, 41707, 4951, 274, 41707, 19155, 2704, 3618, 41707, 83, 377, 2419, 41707, 10985, 829, 41707, 36859, 82, 41707, 66, 504, 41707, 66, 4739, 41707, 17041, 41707, 1324, 829, 41707, 76, 1530, 9649, 41707, 273, 6231, 41707, 431, 945, 41707, 34751, 31804, 41707, 15750, 41707, 33215, 10586, 41707, 75, 696, 41707, 46813, 4862, 41707, 660, 5024, 41707, 3077, 41707, 16337, 41707, 66, 7673, 41707, 11487, 41707, 904, 25481, 41707, 20963, 41707, 1350, 316, 293, 41707, 4360, 353, 12254, 41707, 66, 729, 41643, 41707, 21517, 28562, 41707, 33227, 41707, 293, 15478, 41707, 75, 295, 41707, 83, 8254, 41707, 18829, 41707, 9458, 41707, 18676, 41707, 4803, 41707, 6344, 41707, 8135, 28349, 38545, 41707, 17721, 41707, 29623, 41707, 14948, 391, 41707, 25638, 41707, 8583, 41707, 66, 17983, 41707, 66, 1999, 41707, 354, 320, 6839, 42871, 41707, 11129, 33959, 41707, 74, 648, 38049, 41707, 12792, 41707, 1819, 25244, 500, 41707, 79, 793, 388, 41707, 81, 8679, 261, 41707, 8135, 2954, 41707, 6098, 397, 41707, 75, 672, 1706, 41707, 16184, 603, 41707, 2777, 1304, 41707, 25323, 41707, 40252, 41707, 7081, 41707, 15219, 41707, 805, 41707, 8580, 41707, 66, 12204, 375, 576, 41707, 67, 21317, 41707, 75, 8669, 41707, 16184, 539, 41707, 83, 17964, 41707, 2763, 1706, 41707, 35888, 41707, 81, 14229, 41707, 1477, 1809, 41707, 16485, 22793, 41707, 8899, 293, 41707, 15877, 41707, 18596, 76, 41707, 23908, 41707, 10594, 322, 41707, 65, 35298, 41707, 10885, 41707, 76, 20965, 13696, 41707, 27729, 929, 7779, 41707, 27432, 41707, 75, 3832, 12, 76, 789, 41707, 30431, 41707, 25662, 7718, 41707, 28451, 41707, 83, 40450, 11537, 628, 220, 220, 220, 220, 628, 220, 220, 220, 220, 198, 198, 2, 2163, 284, 905, 281, 2939 ]
3.175287
348
# Generated by Django 2.1.7 on 2019-04-26 09:16 from django.db import migrations, models
[ 2, 2980, 515, 416, 37770, 362, 13, 16, 13, 22, 319, 13130, 12, 3023, 12, 2075, 7769, 25, 1433, 198, 198, 6738, 42625, 14208, 13, 9945, 1330, 15720, 602, 11, 4981, 628 ]
2.84375
32
from keras_efficientnets.efficientnet import * from keras_efficientnets.config import BlockArgs __version__ = '0.1.6.1'
[ 6738, 41927, 292, 62, 16814, 45938, 13, 16814, 3262, 1330, 1635, 198, 6738, 41927, 292, 62, 16814, 45938, 13, 11250, 1330, 9726, 42035, 198, 198, 834, 9641, 834, 796, 705, 15, 13, 16, 13, 21, 13, 16, 6, 198 ]
3.102564
39
from pikapi.spiders.spider_by_browser import * from pikapi.spiders.spider_by_cookie import * from pikapi.spiders.spider_by_req import * all_providers = [ SpiderXiladaili, SpiderYqie, SpiderZdaye, SpiderSuperfastip, SpiderXsdaili, SpiderCrossincode, SpiderTxt, SpiderKxdaili, SpiderJiangxianli, SpiderProxylistplus, SpiderProxyListen, SpiderIp3366, Spider31f, SpiderFeilong, SpiderIphai, Spider89ip, SpiderCnProxy, SpiderData5u, SpiderMrhinkydink, SpiderKuaidaili, SpiderIpaddress, SpiderXici, Spider66ipcn, Spider66ip, SpiderGoubanjia, SpiderCoolProxy, ]
[ 6738, 279, 1134, 15042, 13, 2777, 4157, 13, 2777, 1304, 62, 1525, 62, 40259, 1330, 1635, 198, 6738, 279, 1134, 15042, 13, 2777, 4157, 13, 2777, 1304, 62, 1525, 62, 44453, 1330, 1635, 198, 6738, 279, 1134, 15042, 13, 2777, 4157, 13, 2777, 1304, 62, 1525, 62, 42180, 1330, 1635, 628, 198, 439, 62, 15234, 4157, 796, 685, 198, 220, 220, 220, 12648, 55, 346, 324, 603, 72, 11, 198, 220, 220, 220, 12648, 56, 80, 494, 11, 198, 220, 220, 220, 12648, 57, 820, 68, 11, 198, 220, 220, 220, 12648, 12442, 7217, 541, 11, 198, 220, 220, 220, 12648, 55, 21282, 603, 72, 11, 198, 220, 220, 220, 12648, 21544, 1939, 1098, 11, 198, 220, 220, 220, 12648, 51, 742, 11, 198, 220, 220, 220, 12648, 42, 24954, 603, 72, 11, 198, 220, 220, 220, 12648, 41, 15483, 87, 666, 4528, 11, 198, 220, 220, 220, 12648, 2964, 87, 2645, 396, 9541, 11, 198, 220, 220, 220, 12648, 44148, 23061, 11, 198, 220, 220, 220, 12648, 40, 79, 2091, 2791, 11, 198, 220, 220, 220, 12648, 3132, 69, 11, 198, 220, 220, 220, 12648, 14304, 346, 506, 11, 198, 220, 220, 220, 12648, 40, 746, 1872, 11, 198, 220, 220, 220, 12648, 4531, 541, 11, 198, 220, 220, 220, 12648, 34, 77, 44148, 11, 198, 220, 220, 220, 12648, 6601, 20, 84, 11, 198, 220, 220, 220, 12648, 5246, 71, 676, 5173, 676, 11, 198, 220, 220, 220, 12648, 41733, 1698, 603, 72, 11, 198, 220, 220, 220, 12648, 40, 79, 21975, 11, 198, 220, 220, 220, 12648, 55, 44070, 11, 198, 220, 220, 220, 12648, 2791, 541, 31522, 11, 198, 220, 220, 220, 12648, 2791, 541, 11, 198, 220, 220, 220, 12648, 38, 280, 3820, 73, 544, 11, 198, 220, 220, 220, 12648, 34530, 44148, 11, 198, 60, 628, 198 ]
2.188119
303
import argparse import os from scipy.io import loadmat import numpy as np import cv2 import matplotlib matplotlib.use('agg') # use matplotlib without GUI support import matplotlib.pyplot as plt parser = argparse.ArgumentParser() parser.add_argument('--data_dir', type=str, default='/home/xuchong/Projects/occ_edge_order/data/dataset_real/NYUv2/data/val_occ_order_raycasting_woNormal_avgROI_1mm') parser.add_argument('--gt_depth', type=str, default='/space_sdd/NYU/nyuv2_depth.npy') parser.add_argument('--refine_dir', type=str, default='/space_sdd/NYU/depth_refine/depth1_grad1_occ0.1_change1_1e-5/eigen/depth_npy') opt = parser.parse_args() # load rgb list img_list = sorted([name for name in os.listdir(opt.data_dir) if name.endswith("-rgb.png")]) # load gt depth gt_depths = np.load(opt.gt_depth) # load initial depth map list init_depths = read_eigen() # load refined depth map list refine_list = sorted(os.listdir(opt.refine_dir)) eigen_crop = [21, 461, 25, 617] index = 120 row = 300 img = cv2.imread(os.path.join(opt.data_dir, img_list[index]), -1) print('img shape is {}'.format(img.shape)) gt_depth = gt_depths[index][21:461, 25:617] print('gt depth shape is {}'.format(gt_depth.shape)) init_depth = init_depths[index][21:461, 25:617] print('init depth shape is {}'.format(init_depth.shape)) refine_depth = np.load(os.path.join(opt.refine_dir, refine_list[index]))[21:461, 25:617] print('refine depth shape is {}'.format(refine_depth.shape)) # draw the figure fig, (ax1, ax2) = plt.subplots(nrows=2) img[row - 3: row + 3, :, :] = (img[row - 3: row + 3, :, :] + 255) / 2 ax1.imshow(img) t = np.arange(592) ax2.plot(t, gt_depth[row, t], 'r-', t, init_depth[row, t], 'b-', t, refine_depth[row, t], 'g-') asp = np.diff(ax2.get_xlim())[0] / np.diff(ax2.get_ylim())[0] asp /= np.abs(np.diff(ax1.get_xlim())[0] / np.diff(ax1.get_ylim())[0]) ax2.set_aspect(asp) fig.savefig('vis_row_depth.eps') plt.close(fig)
[ 11748, 1822, 29572, 198, 11748, 28686, 198, 6738, 629, 541, 88, 13, 952, 1330, 3440, 6759, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 269, 85, 17, 198, 198, 11748, 2603, 29487, 8019, 198, 6759, 29487, 8019, 13, 1904, 10786, 9460, 11537, 220, 1303, 779, 2603, 29487, 8019, 1231, 25757, 1104, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 628, 198, 48610, 796, 1822, 29572, 13, 28100, 1713, 46677, 3419, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 7890, 62, 15908, 3256, 2099, 28, 2536, 11, 4277, 11639, 14, 11195, 14, 87, 794, 506, 14, 16775, 82, 14, 13966, 62, 14907, 62, 2875, 14, 7890, 14, 19608, 292, 316, 62, 5305, 14, 12805, 52, 85, 17, 14, 7890, 14, 2100, 62, 13966, 62, 2875, 62, 2433, 19913, 62, 21638, 26447, 62, 615, 70, 13252, 40, 62, 16, 3020, 11537, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 13655, 62, 18053, 3256, 2099, 28, 2536, 11, 4277, 11639, 14, 13200, 62, 82, 1860, 14, 12805, 52, 14, 3281, 14795, 17, 62, 18053, 13, 77, 9078, 11537, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 5420, 500, 62, 15908, 3256, 2099, 28, 2536, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4277, 11639, 14, 13200, 62, 82, 1860, 14, 12805, 52, 14, 18053, 62, 5420, 500, 14, 18053, 16, 62, 9744, 16, 62, 13966, 15, 13, 16, 62, 3803, 16, 62, 16, 68, 12, 20, 14, 68, 9324, 14, 18053, 62, 77, 9078, 11537, 198, 198, 8738, 796, 30751, 13, 29572, 62, 22046, 3419, 198, 198, 2, 3440, 46140, 1351, 198, 9600, 62, 4868, 796, 23243, 26933, 3672, 329, 1438, 287, 28686, 13, 4868, 15908, 7, 8738, 13, 7890, 62, 15908, 8, 611, 1438, 13, 437, 2032, 342, 7203, 12, 81, 22296, 13, 11134, 4943, 12962, 198, 198, 2, 3440, 308, 83, 6795, 198, 13655, 62, 10378, 9998, 796, 45941, 13, 2220, 7, 8738, 13, 13655, 62, 18053, 8, 198, 198, 2, 3440, 4238, 6795, 3975, 1351, 198, 15003, 62, 10378, 9998, 796, 1100, 62, 68, 9324, 3419, 198, 198, 2, 3440, 20449, 6795, 3975, 1351, 198, 5420, 500, 62, 4868, 796, 23243, 7, 418, 13, 4868, 15908, 7, 8738, 13, 5420, 500, 62, 15908, 4008, 198, 198, 68, 9324, 62, 31476, 796, 685, 2481, 11, 604, 5333, 11, 1679, 11, 718, 1558, 60, 198, 9630, 796, 7982, 198, 808, 796, 5867, 198, 198, 9600, 796, 269, 85, 17, 13, 320, 961, 7, 418, 13, 6978, 13, 22179, 7, 8738, 13, 7890, 62, 15908, 11, 33705, 62, 4868, 58, 9630, 46570, 532, 16, 8, 198, 4798, 10786, 9600, 5485, 318, 23884, 4458, 18982, 7, 9600, 13, 43358, 4008, 198, 198, 13655, 62, 18053, 796, 308, 83, 62, 10378, 9998, 58, 9630, 7131, 2481, 25, 40652, 11, 1679, 25, 47941, 60, 198, 4798, 10786, 13655, 6795, 5485, 318, 23884, 4458, 18982, 7, 13655, 62, 18053, 13, 43358, 4008, 198, 198, 15003, 62, 18053, 796, 2315, 62, 10378, 9998, 58, 9630, 7131, 2481, 25, 40652, 11, 1679, 25, 47941, 60, 198, 4798, 10786, 15003, 6795, 5485, 318, 23884, 4458, 18982, 7, 15003, 62, 18053, 13, 43358, 4008, 198, 198, 5420, 500, 62, 18053, 796, 45941, 13, 2220, 7, 418, 13, 6978, 13, 22179, 7, 8738, 13, 5420, 500, 62, 15908, 11, 35139, 62, 4868, 58, 9630, 60, 4008, 58, 2481, 25, 40652, 11, 1679, 25, 47941, 60, 198, 4798, 10786, 5420, 500, 6795, 5485, 318, 23884, 4458, 18982, 7, 5420, 500, 62, 18053, 13, 43358, 4008, 628, 198, 2, 3197, 262, 3785, 198, 5647, 11, 357, 897, 16, 11, 7877, 17, 8, 796, 458, 83, 13, 7266, 489, 1747, 7, 77, 8516, 28, 17, 8, 198, 9600, 58, 808, 532, 513, 25, 5752, 1343, 513, 11, 1058, 11, 1058, 60, 796, 357, 9600, 58, 808, 532, 513, 25, 5752, 1343, 513, 11, 1058, 11, 1058, 60, 1343, 14280, 8, 1220, 362, 198, 897, 16, 13, 320, 12860, 7, 9600, 8, 198, 198, 83, 796, 45941, 13, 283, 858, 7, 45839, 8, 198, 897, 17, 13, 29487, 7, 83, 11, 308, 83, 62, 18053, 58, 808, 11, 256, 4357, 705, 81, 12, 3256, 256, 11, 2315, 62, 18053, 58, 808, 11, 256, 4357, 705, 65, 12, 3256, 256, 11, 35139, 62, 18053, 58, 808, 11, 256, 4357, 705, 70, 12, 11537, 198, 198, 5126, 796, 45941, 13, 26069, 7, 897, 17, 13, 1136, 62, 87, 2475, 28955, 58, 15, 60, 1220, 45941, 13, 26069, 7, 897, 17, 13, 1136, 62, 88, 2475, 28955, 58, 15, 60, 198, 5126, 1220, 28, 45941, 13, 8937, 7, 37659, 13, 26069, 7, 897, 16, 13, 1136, 62, 87, 2475, 28955, 58, 15, 60, 1220, 45941, 13, 26069, 7, 897, 16, 13, 1136, 62, 88, 2475, 28955, 58, 15, 12962, 198, 897, 17, 13, 2617, 62, 292, 806, 7, 5126, 8, 198, 198, 5647, 13, 21928, 5647, 10786, 4703, 62, 808, 62, 18053, 13, 25386, 11537, 198, 489, 83, 13, 19836, 7, 5647, 8, 628 ]
2.347774
831
import os import os.path as osp import re import numpy as np from numpy import array, int32 from scipy.io import loadmat from .base import BaseDataset
[ 11748, 28686, 198, 11748, 28686, 13, 6978, 355, 267, 2777, 198, 11748, 302, 198, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 299, 32152, 1330, 7177, 11, 493, 2624, 198, 6738, 629, 541, 88, 13, 952, 1330, 3440, 6759, 198, 198, 6738, 764, 8692, 1330, 7308, 27354, 292, 316, 628 ]
3.08
50
""" A list of functions that return gameObject classes of primitive shapes. """ from math import cos, sin, pi from .object2d import Object2D # ---------------------------------------------------------------------------------------- def draw_square(x:float, y:float, height:float = 1, width:float = 1, fill:bool = False): """ Returns a Object2D class that draws a square Arguments: x : float : The x starting point of the square I.E the bottom left corner. y : float : The y starting point of the square I.E the bottom left corner. height : float : The height of the square. width : float : The width of the square. fill : bool : Should the shape be filled. """ # Calculate the other x and y cords. cords = [[x, y]] cords.append([x+width, y]) cords.append([x+width, y+height]) cords.append([x, y+height]) if fill: return Object2D(cords, [[0,1,2],[0,3,2]], draw_type='triangles') else: return Object2D(cords, [[0,1],[1,2],[2,3],[3,0]], draw_type='lines') # ---------------------------------------------------------------------------------------- def draw_triangle(cords:list, fill=False): """ Returns a Object2D class that draws a triangle Arguments: cords : float : The x and y cords for each vertex of the triangle, should look like [[x1,y1]...] fill : bool : Should the shape be filled. """ if len(cords) > 3: raise TypeError("At primitives.draw_triangle(): The length of the given cords is greater than 3, a triangle should only have 3 cords.") if fill: return Object2D(cords, [[0,1,2]], draw_type='triangles') else: return Object2D(cords, [[0,1],[1,2],[2,0]], draw_type='lines') # ---------------------------------------------------------------------------------------- def draw_circle(center_x:float, center_y:float, radius:float = 0.3, segments:int = 360, fill:bool=False): """ Returns an Object2D class that draws a circle Arguments: center_x : float : The x cord for the center of the circle. center_y : float : The y cord for the center of the circle. radius : float : The radius of the circle. segments : int : How many segments to make the circle from. fill : bool : Should the shape be filled. """ edges = [] cords = [] for i in range(segments): theta = (2 * pi * i)/segments # Get the current angle x = radius * cos(theta) + center_x # Get the x cord y = radius * sin(theta) + center_y # Get the y cord cords.append([x, y]) if fill: cords.insert(0, [center_x, center_y]) for i in range(len(cords)-2): edges.append([0, i+1, i+2]) edges.append([0, segments, 1]) # Fixes a little glitch return Object2D(cords, edges, draw_type='triangles') else: for i in range(len(cords)-1): edges.append([i, i+1]) edges.append([segments-1,0]) # Fixes a little glitch return Object2D(cords, edges, draw_type='lines') # ---------------------------------------------------------------------------------------- def draw_arc(center_x:float, center_y:float, radius:float = 0.3, arc_angle:float = 90, start_angle:float = 0, segments:int = 360, fill:bool=False): """ Returns an Object2D class that draws a circle, angles should not be given in radians. Arguments: center_x : float : The x cord for the center of the circle. center_y : float : The y cord for the center of the circle. radius : float : The radius of the circle. arc_angle : float : The angle of the arc. start_angle : float : The angle from where the arc should start from. segments : int : How many segments to make the circle from. fill : bool : Should the shape be filled. """ edges = [] cords = [] for i in range(segments): theta = ((arc_angle * pi * i/180) / segments) + (start_angle*90/180) # Get the current angle x = radius * cos(theta) + center_x # Get the x cord y = radius * sin(theta) + center_y # Get the y cord cords.append([x, y]) if fill: cords.insert(0, [center_x, center_y-(center_y-cords[0][1])]) for i in range(len(cords)-2): edges.append([0, i+1, i+2]) return Object2D(cords, edges, draw_type='triangles') else: for i in range(len(cords)-1): edges.append([i, i+1]) return Object2D(cords, edges, draw_type='lines')
[ 37811, 201, 198, 197, 32, 1351, 286, 5499, 326, 1441, 983, 10267, 6097, 286, 20049, 15268, 13, 201, 198, 201, 198, 37811, 201, 198, 201, 198, 6738, 10688, 1330, 8615, 11, 7813, 11, 31028, 201, 198, 201, 198, 6738, 764, 15252, 17, 67, 1330, 9515, 17, 35, 201, 198, 201, 198, 2, 16529, 22369, 201, 198, 4299, 3197, 62, 23415, 7, 87, 25, 22468, 11, 331, 25, 22468, 11, 6001, 25, 22468, 796, 352, 11, 9647, 25, 22468, 796, 352, 11, 6070, 25, 30388, 796, 10352, 2599, 201, 198, 197, 37811, 201, 198, 197, 197, 35561, 257, 9515, 17, 35, 1398, 326, 14293, 257, 6616, 201, 198, 201, 198, 197, 197, 28100, 2886, 25, 201, 198, 197, 197, 197, 87, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 12178, 1058, 383, 2124, 3599, 966, 286, 262, 6616, 314, 13, 36, 262, 4220, 1364, 5228, 13, 201, 198, 197, 197, 197, 88, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 12178, 1058, 383, 331, 3599, 966, 286, 262, 6616, 314, 13, 36, 262, 4220, 1364, 5228, 13, 201, 198, 197, 197, 197, 17015, 220, 220, 220, 1058, 12178, 1058, 383, 6001, 286, 262, 6616, 13, 201, 198, 197, 197, 197, 10394, 220, 220, 220, 220, 1058, 12178, 1058, 383, 9647, 286, 262, 6616, 13, 201, 198, 197, 197, 197, 20797, 197, 220, 1058, 20512, 220, 1058, 10358, 262, 5485, 307, 5901, 13, 201, 198, 201, 198, 197, 37811, 201, 198, 201, 198, 197, 2, 27131, 378, 262, 584, 2124, 290, 331, 45173, 13, 201, 198, 197, 66, 3669, 796, 16410, 87, 11, 331, 11907, 201, 198, 197, 66, 3669, 13, 33295, 26933, 87, 10, 10394, 11, 331, 12962, 201, 198, 197, 66, 3669, 13, 33295, 26933, 87, 10, 10394, 11, 331, 10, 17015, 12962, 201, 198, 197, 66, 3669, 13, 33295, 26933, 87, 11, 331, 10, 17015, 12962, 201, 198, 201, 198, 197, 361, 6070, 25, 201, 198, 197, 197, 7783, 9515, 17, 35, 7, 66, 3669, 11, 16410, 15, 11, 16, 11, 17, 38430, 15, 11, 18, 11, 17, 60, 4357, 3197, 62, 4906, 11639, 28461, 27787, 11537, 201, 198, 197, 17772, 25, 201, 198, 197, 197, 7783, 9515, 17, 35, 7, 66, 3669, 11, 16410, 15, 11, 16, 38430, 16, 11, 17, 38430, 17, 11, 18, 38430, 18, 11, 15, 60, 4357, 3197, 62, 4906, 11639, 6615, 11537, 201, 198, 201, 198, 2, 16529, 22369, 201, 198, 4299, 3197, 62, 28461, 9248, 7, 66, 3669, 25, 4868, 11, 6070, 28, 25101, 2599, 201, 198, 197, 37811, 201, 198, 197, 197, 35561, 257, 9515, 17, 35, 1398, 326, 14293, 257, 22950, 201, 198, 201, 198, 197, 197, 28100, 2886, 25, 201, 198, 197, 197, 197, 66, 3669, 1058, 12178, 1058, 383, 2124, 290, 331, 45173, 329, 1123, 37423, 286, 262, 22950, 11, 815, 804, 588, 16410, 87, 16, 11, 88, 16, 60, 22345, 201, 198, 197, 197, 197, 20797, 220, 1058, 20512, 220, 1058, 10358, 262, 5485, 307, 5901, 13, 201, 198, 201, 198, 197, 37811, 201, 198, 201, 198, 197, 361, 18896, 7, 66, 3669, 8, 1875, 513, 25, 201, 198, 197, 197, 40225, 5994, 12331, 7203, 2953, 2684, 20288, 13, 19334, 62, 28461, 9248, 33529, 383, 4129, 286, 262, 1813, 45173, 318, 3744, 621, 513, 11, 257, 22950, 815, 691, 423, 513, 45173, 19570, 201, 198, 201, 198, 197, 361, 6070, 25, 201, 198, 197, 197, 7783, 9515, 17, 35, 7, 66, 3669, 11, 16410, 15, 11, 16, 11, 17, 60, 4357, 3197, 62, 4906, 11639, 28461, 27787, 11537, 201, 198, 197, 17772, 25, 201, 198, 197, 197, 7783, 9515, 17, 35, 7, 66, 3669, 11, 16410, 15, 11, 16, 38430, 16, 11, 17, 38430, 17, 11, 15, 60, 4357, 3197, 62, 4906, 11639, 6615, 11537, 201, 198, 201, 198, 2, 16529, 22369, 201, 198, 4299, 3197, 62, 45597, 7, 16159, 62, 87, 25, 22468, 11, 3641, 62, 88, 25, 22468, 11, 16874, 25, 22468, 796, 657, 13, 18, 11, 17894, 25, 600, 796, 11470, 11, 6070, 25, 30388, 28, 25101, 2599, 201, 198, 197, 37811, 201, 198, 197, 197, 35561, 281, 9515, 17, 35, 1398, 326, 14293, 257, 9197, 220, 201, 198, 201, 198, 197, 197, 28100, 2886, 25, 201, 198, 197, 197, 197, 16159, 62, 87, 220, 1058, 12178, 1058, 383, 2124, 15050, 329, 262, 3641, 286, 262, 9197, 13, 201, 198, 197, 197, 197, 16159, 62, 88, 220, 1058, 12178, 1058, 383, 331, 15050, 329, 262, 3641, 286, 262, 9197, 13, 201, 198, 197, 197, 197, 42172, 220, 197, 220, 1058, 12178, 1058, 383, 16874, 286, 262, 9197, 13, 201, 198, 197, 197, 197, 325, 11726, 220, 1058, 493, 220, 220, 1058, 1374, 867, 17894, 284, 787, 262, 9197, 422, 13, 201, 198, 197, 197, 197, 20797, 197, 220, 1058, 20512, 220, 1058, 10358, 262, 5485, 307, 5901, 13, 201, 198, 201, 198, 197, 37811, 201, 198, 201, 198, 197, 276, 3212, 796, 17635, 201, 198, 197, 66, 3669, 796, 17635, 201, 198, 201, 198, 197, 1640, 1312, 287, 2837, 7, 325, 11726, 2599, 201, 198, 197, 197, 1169, 8326, 796, 357, 17, 1635, 31028, 1635, 1312, 20679, 325, 11726, 1303, 3497, 262, 1459, 9848, 201, 198, 197, 197, 87, 796, 16874, 1635, 8615, 7, 1169, 8326, 8, 1343, 3641, 62, 87, 1303, 3497, 262, 2124, 15050, 201, 198, 197, 197, 88, 796, 16874, 1635, 7813, 7, 1169, 8326, 8, 1343, 3641, 62, 88, 1303, 3497, 262, 331, 15050, 201, 198, 201, 198, 197, 197, 66, 3669, 13, 33295, 26933, 87, 11, 331, 12962, 201, 198, 201, 198, 197, 361, 6070, 25, 201, 198, 197, 197, 66, 3669, 13, 28463, 7, 15, 11, 685, 16159, 62, 87, 11, 3641, 62, 88, 12962, 201, 198, 197, 197, 1640, 1312, 287, 2837, 7, 11925, 7, 66, 3669, 13219, 17, 2599, 201, 198, 197, 197, 197, 276, 3212, 13, 33295, 26933, 15, 11, 1312, 10, 16, 11, 1312, 10, 17, 12962, 201, 198, 201, 198, 197, 197, 276, 3212, 13, 33295, 26933, 15, 11, 17894, 11, 352, 12962, 1303, 34258, 257, 1310, 29204, 201, 198, 197, 197, 7783, 9515, 17, 35, 7, 66, 3669, 11, 13015, 11, 3197, 62, 4906, 11639, 28461, 27787, 11537, 201, 198, 201, 198, 197, 17772, 25, 201, 198, 197, 197, 1640, 1312, 287, 2837, 7, 11925, 7, 66, 3669, 13219, 16, 2599, 201, 198, 197, 197, 197, 276, 3212, 13, 33295, 26933, 72, 11, 1312, 10, 16, 12962, 201, 198, 201, 198, 197, 197, 276, 3212, 13, 33295, 26933, 325, 11726, 12, 16, 11, 15, 12962, 1303, 34258, 257, 1310, 29204, 201, 198, 197, 197, 7783, 9515, 17, 35, 7, 66, 3669, 11, 13015, 11, 3197, 62, 4906, 11639, 6615, 11537, 201, 198, 201, 198, 2, 16529, 22369, 201, 198, 4299, 3197, 62, 5605, 7, 16159, 62, 87, 25, 22468, 11, 3641, 62, 88, 25, 22468, 11, 16874, 25, 22468, 796, 657, 13, 18, 11, 10389, 62, 9248, 25, 22468, 796, 4101, 11, 923, 62, 9248, 25, 22468, 796, 657, 11, 17894, 25, 600, 796, 11470, 11, 6070, 25, 30388, 28, 25101, 2599, 201, 198, 197, 37811, 201, 198, 197, 197, 35561, 281, 9515, 17, 35, 1398, 326, 14293, 257, 9197, 11, 18333, 815, 407, 307, 1813, 287, 2511, 1547, 13, 201, 198, 201, 198, 197, 197, 28100, 2886, 25, 201, 198, 197, 197, 197, 16159, 62, 87, 220, 220, 220, 1058, 12178, 1058, 383, 2124, 15050, 329, 262, 3641, 286, 262, 9197, 13, 201, 198, 197, 197, 197, 16159, 62, 88, 220, 220, 220, 1058, 12178, 1058, 383, 331, 15050, 329, 262, 3641, 286, 262, 9197, 13, 201, 198, 197, 197, 197, 42172, 220, 197, 220, 220, 220, 1058, 12178, 1058, 383, 16874, 286, 262, 9197, 13, 201, 198, 197, 197, 197, 5605, 62, 9248, 220, 220, 1058, 12178, 1058, 383, 9848, 286, 262, 10389, 13, 201, 198, 197, 197, 197, 9688, 62, 9248, 1058, 12178, 1058, 383, 9848, 422, 810, 262, 10389, 815, 923, 422, 13, 201, 198, 197, 197, 197, 325, 11726, 220, 220, 220, 1058, 493, 220, 220, 1058, 1374, 867, 17894, 284, 787, 262, 9197, 422, 13, 201, 198, 197, 197, 197, 20797, 197, 220, 220, 220, 1058, 20512, 220, 1058, 10358, 262, 5485, 307, 5901, 13, 201, 198, 201, 198, 197, 37811, 201, 198, 197, 201, 198, 197, 276, 3212, 796, 17635, 201, 198, 197, 66, 3669, 796, 17635, 201, 198, 201, 198, 197, 1640, 1312, 287, 2837, 7, 325, 11726, 2599, 201, 198, 197, 197, 1169, 8326, 796, 14808, 5605, 62, 9248, 1635, 31028, 1635, 1312, 14, 15259, 8, 1220, 17894, 8, 1343, 357, 9688, 62, 9248, 9, 3829, 14, 15259, 8, 1303, 3497, 262, 1459, 9848, 201, 198, 197, 197, 87, 796, 16874, 1635, 8615, 7, 1169, 8326, 8, 1343, 3641, 62, 87, 1303, 3497, 262, 2124, 15050, 201, 198, 197, 197, 88, 796, 16874, 1635, 7813, 7, 1169, 8326, 8, 1343, 3641, 62, 88, 1303, 3497, 262, 331, 15050, 201, 198, 201, 198, 197, 197, 66, 3669, 13, 33295, 26933, 87, 11, 331, 12962, 201, 198, 201, 198, 197, 361, 6070, 25, 201, 198, 197, 197, 66, 3669, 13, 28463, 7, 15, 11, 685, 16159, 62, 87, 11, 3641, 62, 88, 30420, 16159, 62, 88, 12, 66, 3669, 58, 15, 7131, 16, 12962, 12962, 201, 198, 197, 197, 1640, 1312, 287, 2837, 7, 11925, 7, 66, 3669, 13219, 17, 2599, 201, 198, 197, 197, 197, 276, 3212, 13, 33295, 26933, 15, 11, 1312, 10, 16, 11, 1312, 10, 17, 12962, 201, 198, 197, 197, 7783, 9515, 17, 35, 7, 66, 3669, 11, 13015, 11, 3197, 62, 4906, 11639, 28461, 27787, 11537, 201, 198, 201, 198, 197, 17772, 25, 197, 197, 201, 198, 197, 197, 1640, 1312, 287, 2837, 7, 11925, 7, 66, 3669, 13219, 16, 2599, 201, 198, 197, 197, 197, 276, 3212, 13, 33295, 26933, 72, 11, 1312, 10, 16, 12962, 201, 198, 197, 197, 7783, 9515, 17, 35, 7, 66, 3669, 11, 13015, 11, 3197, 62, 4906, 11639, 6615, 11537, 201, 198 ]
2.664434
1,642
# Copyright (c) 2021, Oracle and/or its affiliates. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License, version 2.0, # as published by the Free Software Foundation. # # This program is also distributed with certain software (including # but not limited to OpenSSL) that is licensed under separate terms, as # designated in a particular file or component or in included license # documentation. The authors of MySQL hereby grant you an additional # permission to link the program and your derivative works with the # separately licensed software that they have included with MySQL. # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See # the GNU General Public License, version 2.0, for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA """Sub-Module to manage OCI Networking""" from mysqlsh.plugin_manager import plugin_function from mds_plugin import core, configuration # cSpell:ignore vcns def format_load_balancer_listing(items, current=None) -> str: """Formats a given list of objects in a human readable form Args: items: Either a list of objects or a single object current (str): OCID of the current item Returns: The db_systems formated as str """ # If a single db_system was given, wrap it in a list if not type(items) is list: items = [items] # return objects in READABLE text output out = "" id = 1 for i in items: index = f"*{id:>3} " if current == i.id else f"{id:>4} " ips = "" for ip in i.ip_addresses: ips += ip.ip_address + "*, " if ip.is_public else ", " if len(ips) > 2: ips = ips[0:-2] out += (index + core.fixed_len(i.display_name, 24, ' ', True) + core.fixed_len(i.lifecycle_state, 8, ' ') + core.fixed_len(f"{ips}", 24, '\n')) id += 1 return out @plugin_function('mds.list.networks') def list_networks(**kwargs): """Lists all networks of the given compartment Args: **kwargs: Additional options Keyword Args: public_subnet (bool): Whether only public or private subnets should be considered compartment_id (str): OCID of the parent compartment. config (object): An OCI config object or None. return_formatted (bool): If set to true, a list object is returned. check_privileges (bool): Checks if the user has privileges for the subnet Returns: a network object """ public_subnet = kwargs.get("public_subnet") compartment_id = kwargs.get("compartment_id") config = kwargs.get("config") return_formatted = kwargs.get("return_formatted", True) check_privileges = kwargs.get("check_privileges", False) # Get the active config and compartment try: config = configuration.get_current_config(config=config) compartment_id = configuration.get_current_compartment_id( compartment_id=compartment_id, config=config) import oci.exceptions # Create VirtualNetworkClient virtual_network = core.get_oci_virtual_network_client( config=config) # List the virtual networks vcns = virtual_network.list_vcns( compartment_id=compartment_id).data # Filter out all sub-nets that are not conforming to the # public_subnet options if public_subnet is not None: # Loop over VCNs to see if access is granted good_vcns = [] for vcn in vcns: try: if network_has_subnet( network=vcn, compartment_id=compartment_id, config=config, public_subnet=public_subnet, check_privileges=check_privileges): good_vcns.append(vcn) except oci.exceptions.ServiceError as e: pass vcns = good_vcns if return_formatted: return format_network_listing(vcns) else: return oci.util.to_dict(vcns) except ValueError as e: print(f"ERROR: {str(e)}") return @plugin_function('mds.get.network') def get_network(**kwargs): """Returns a network object If multiple or no networks are available in the current compartment, let the user select a different compartment Args: **kwargs: Additional options Keyword Args: network_name (str): The display_name of the network network_id (str): The OCID of the network public_subnet (bool): Whether only public or private subnets should be considered compartment_id (str): OCID of the parent compartment. config (object): An OCI config object or None. interactive (bool): Whether to query the user for input ignore_current (bool): Whether to ignore the current Returns: a network object """ network_name = kwargs.get("network_name") network_id = kwargs.get("network_id") public_subnet = kwargs.get("public_subnet") compartment_id = kwargs.get("compartment_id") config = kwargs.get("config") interactive = kwargs.get("interactive", True) ignore_current = kwargs.get("ignore_current", False) # Get the active config and compartment try: config = configuration.get_current_config(config=config) compartment_id = configuration.get_current_compartment_id( compartment_id=compartment_id, config=config) import oci.exceptions from mds_plugin import compartment # Create VirtualNetworkClient virtual_network = core.get_oci_virtual_network_client( config=config) # If a specific network was specified, return this network if network_id: vcn = virtual_network.get_vcn(vcn_id=network_id).data return vcn # Loop until the user selected a compartment with vcns vcns = [] rejected_vcns = [] while len(vcns) == 0: try: # List the virtual networks, filter by network_name if given vcns = virtual_network.list_vcns( compartment_id=compartment_id, display_name=network_name).data # Filter out rejected VCNs vcns = [n for n in vcns if n not in rejected_vcns] if len(vcns) == 0: network_comp = compartment.get_compartment_by_id( compartment_id=compartment_id, config=config) print(f"The compartment {network_comp.name} does not " "contain a suitable virtual network.") if interactive: print("Please select another compartment.\n") else: return compartment_id = compartment.get_compartment_id( compartment_id=compartment_id, config=config) if compartment_id == None: print("Operation cancelled.") return else: # Filter out all sub-nets that are not conforming to the # public_subnet options if public_subnet is not None: # Loop over VCNs to see if access is granted good_vcns = [] for vcn in vcns: newly_rejected_vcns = [] try: if network_has_subnet( network=vcn, compartment_id=compartment_id, config=config, public_subnet=public_subnet): good_vcns.append(vcn) else: newly_rejected_vcns.append(vcn) except oci.exceptions.ServiceError as e: if e.status == 404: newly_rejected_vcns.append(vcn) rejected_vcns = rejected_vcns + newly_rejected_vcns vcns = good_vcns except oci.exceptions.ServiceError as e: if e.code == "NotAuthorizedOrNotFound": print(f'You do not have privileges to list the ' f'networks of this compartment.') else: print(f'Could not list networks of compartment ' f'{network_comp.name}\n') print( f'ERROR: {e.message}. (Code: {e.code}; ' f'Status: {e.status})') vcns = [] except (ValueError, oci.exceptions.ClientError) as e: print(f'ERROR: {e}') vcns = [] # If there is a single network in this compartment, return this # one if it matches the network_name (if given) if len(vcns) == 1 and not ignore_current: return vcns[0] if not interactive: print("Error: There are multiple virtual networks in this " "compartment.") return # Let the user choose from the list vcn = core.prompt_for_list_item( item_list=vcns, prompt_caption=("Please enter the name or index " "of the virtual network: "), item_name_property="display_name", print_list=True) return vcn except oci.exceptions.ServiceError as e: if e.code == "NotAuthorizedOrNotFound": print(f'You do not have privileges to access this network.') else: print(f'Could not get the network.') print( f'ERROR: {e.message}. (Code: {e.code}; ' f'Status: {e.status})') except (ValueError, oci.exceptions.ClientError) as e: print(f'ERROR: {e}') @plugin_function('mds.list.subnets') def list_subnets(**kwargs): """Lists all subnets of the given network Args: **kwargs: Additional options Keyword Args: network_id (str): The OCID of the parent network_id public_subnet (bool): Whether only public subnets should be considered availability_domain (str): The name if the availability_domain ignore_current_network (bool): Whether to ignore the current network compartment_id (str): OCID of the parent compartment. config (object): An OCI config object or None. interactive (bool): Whether to query the user for input return_formatted (bool): If set to true, a list object is returned. Returns: A list of subnets """ network_id = kwargs.get("network_id") public_subnet = kwargs.get("public_subnet") # availability_domain = kwargs.get("availability_domain") ignore_current_network = kwargs.get("ignore_current_network") compartment_id = kwargs.get("compartment_id") config = kwargs.get("config") interactive = kwargs.get("interactive", True) return_formatted = kwargs.get("return_formatted", True) # Get the active config and compartment try: config = configuration.get_current_config(config=config) # compartment_id = configuration.get_current_compartment_id( # compartment_id=compartment_id, config=config) if not ignore_current_network: network_id = configuration.get_current_network_id( network_id=network_id, config=config) import oci.exceptions from mds_plugin import compartment # Create VirtualNetworkClient virtual_network = core.get_oci_virtual_network_client( config=config) # If a subnet_id was given, return the subnet of that subnet_id # if subnet_id is not None: # try: # return virtual_network.get_subnet(subnet_id=subnet_id).data # except oci.exceptions.ServiceError as e: # print(f'ERROR: {e.message}. (Code: {e.code}; Status: {e.status})') # return # except (ValueError, oci.exceptions.ClientError) as e: # print(f'ERROR: {e}') # return network = get_network(network_id=network_id, compartment_id=compartment_id, config=config, public_subnet=public_subnet, interactive=interactive) if network is None: return network_name = network.display_name if network.display_name else \ network.id network_compartment = network.compartment_id # Get the compartment compartment = compartment.get_compartment_by_id( compartment_id=network_compartment, config=config) if compartment is None: return # If no availability_domain was specified, use a random one # if availability_domain is None: # availability_domain = compartment.get_availability_domain( # compartment_id=compartment_id, # availability_domain=availability_domain, config=config) subnets = virtual_network.list_subnets( compartment_id=network_compartment, vcn_id=network.id).data # Filter subnets by Availability Domain, None means the subnet # spans across all Availability Domains # subnets = [s for s in subnets # if s.availability_domain == availability_domain or # s.availability_domain is None] # Filter out all sub-nets that are not conforming to the # public_subnet options if public_subnet is not None and public_subnet: out = "All public " subnets = [s for s in subnets if subnet_is_public(subnet=s, config=config)] elif public_subnet is not None and not public_subnet: out = "All private " subnets = [s for s in subnets if not subnet_is_public(subnet=s, config=config)] else: out = "All " out += f"subnets of Network '{network_name}' in compartment " + \ f"'{compartment.name}':\n\n" if return_formatted: return out + format_subnet_listing(subnets) else: return oci.util.to_dict(subnets) except oci.exceptions.ServiceError as e: print(f'ERROR: {e.message}. (Code: {e.code}; Status: {e.status})') return except (ValueError, oci.exceptions.ClientError) as e: print(f'ERROR: {e}') return @plugin_function('mds.get.subnet') def get_subnet(**kwargs): """Returns a subnet object If multiple or no networks are available in the current compartment, let the user select a different compartment Args: **kwargs: Additional options Keyword Args: subnet_name (str): The display_name of the subnet subnet_id (str): The OCID of the subnet network_id (str): The OCID of the parent network_id public_subnet (bool): Whether only public subnets should be considered availability_domain (str): The name if the availability_domain compartment_id (str): OCID of the parent compartment. config (object): An OCI config object or None. interactive (bool): Whether to query the user for input Returns: a subnet object """ subnet_name = kwargs.get("subnet_name") subnet_id = kwargs.get("subnet_id") network_id = kwargs.get("network_id") public_subnet = kwargs.get("public_subnet") availability_domain = kwargs.get("availability_domain") compartment_id = kwargs.get("compartment_id") config = kwargs.get("config") interactive = kwargs.get("interactive", True) # Get the active config and compartment try: config = configuration.get_current_config(config=config) compartment_id = configuration.get_current_compartment_id( compartment_id=compartment_id, config=config) network_id = configuration.get_current_network_id( network_id=network_id, config=config) except ValueError as e: print(f"ERROR: {str(e)}") return import oci.exceptions from mds_plugin import compartment import re # Create VirtualNetworkClient virtual_network = core.get_oci_virtual_network_client( config=config) # If a subnet_id was given, return the subnet of that subnet_id if subnet_id: try: return virtual_network.get_subnet(subnet_id=subnet_id).data except oci.exceptions.ServiceError as e: print(f'ERROR: {e.message}. (Code: {e.code}; Status: {e.status})') return except (ValueError, oci.exceptions.ClientError) as e: print(f'ERROR: {e}') return # If no network_id was given, query the user for one network = get_network( network_id=network_id, compartment_id=compartment_id, config=config, public_subnet=public_subnet, interactive=interactive) if network is None: return network_id = network.id compartment_id = network.compartment_id # If no availability_domain was specified, use a random one if availability_domain is None: availability_domain_obj = compartment.get_availability_domain( compartment_id=compartment_id, random_selection=True, availability_domain=availability_domain, config=config, interactive=False, return_python_object=True) availability_domain = availability_domain_obj.name try: subnets = virtual_network.list_subnets( compartment_id=compartment_id, vcn_id=network_id).data # Filter subnets by Availability Domain, None means the subnet # spans across all Availability Domains subnets = [s for s in subnets if s.availability_domain == availability_domain or s.availability_domain is None] # Filter out all sub-nets that are not conforming to the # public_subnet options if public_subnet: subnets = [s for s in subnets if subnet_is_public(subnet=s, config=config)] elif public_subnet is not None and not public_subnet: subnets = [s for s in subnets if not subnet_is_public(subnet=s, config=config)] # If there are several subnets, let the user choose if len(subnets) == 0: return elif len(subnets) == 1: # If there is exactly 1 subnet, return that return subnets[0] print("\nPlease choose a subnet:\n") i = 1 for s in subnets: s_name = re.sub(r'[\n\r]', ' ', s.display_name[:22] + '..' if len(s.display_name) > 24 else s.display_name) print(f"{i:>4} {s_name:24} {s.cidr_block:15}") i += 1 print() return core.prompt_for_list_item( item_list=subnets, prompt_caption=( "Please enter the name or index of the subnet: "), item_name_property="display_name", given_value=subnet_name) except oci.exceptions.ServiceError as e: print(f'ERROR: {e.message}. (Code: {e.code}; Status: {e.status})') return except Exception as e: print(f'ERROR: {e}') return @plugin_function('mds.list.loadBalancers', shell=True, cli=True, web=True) def list_load_balancers(**kwargs): """Lists load balancers This function will list all load balancers of the compartment with the given compartment_id. Args: **kwargs: Optional parameters Keyword Args: compartment_id (str): OCID of the parent compartment config (dict): An OCI config object or None config_profile (str): The name of an OCI config profile interactive (bool): Indicates whether to execute in interactive mode return_type (str): "STR" will return a formatted string, "DICT" will return the object converted to a dict structure and "OBJ" will return the OCI Python object for internal plugin usage raise_exceptions (bool): If set to true exceptions are raised Returns: Based on return_type """ compartment_id = kwargs.get("compartment_id") config = kwargs.get("config") config_profile = kwargs.get("config_profile") interactive = kwargs.get("interactive", core.get_interactive_default()) return_type = kwargs.get( "return_type", # In interactive mode, default to formatted str return core.RETURN_STR if interactive else core.RETURN_DICT) raise_exceptions = kwargs.get( "raise_exceptions", # On internal call (RETURN_OBJ), raise exceptions True if return_type == core.RETURN_OBJ else not interactive) try: config = configuration.get_current_config( config=config, config_profile=config_profile, interactive=interactive) compartment_id = configuration.get_current_compartment_id( compartment_id=compartment_id, config=config) import oci.exceptions try: # Initialize the Object Store client load_balancer_cl = core.get_oci_load_balancer_client(config=config) # List the load balancers load_balancers = load_balancer_cl.list_load_balancers( compartment_id=compartment_id).data # Filter out all deleted items load_balancers = [ l for l in load_balancers if l.lifecycle_state != "DELETED"] return core.oci_object( oci_object=load_balancers, return_type=return_type, format_function=format_load_balancer_listing) except oci.exceptions.ServiceError as e: if raise_exceptions: raise print(f'ERROR: {e.message}. (Code: {e.code}; Status: {e.status})') except Exception as e: if raise_exceptions: raise print(f'ERROR: {e}')
[ 2, 15069, 357, 66, 8, 33448, 11, 18650, 290, 14, 273, 663, 29116, 13, 201, 198, 2, 201, 198, 2, 770, 1430, 318, 1479, 3788, 26, 345, 460, 17678, 4163, 340, 290, 14, 273, 13096, 201, 198, 2, 340, 739, 262, 2846, 286, 262, 22961, 3611, 5094, 13789, 11, 2196, 362, 13, 15, 11, 201, 198, 2, 355, 3199, 416, 262, 3232, 10442, 5693, 13, 201, 198, 2, 201, 198, 2, 770, 1430, 318, 635, 9387, 351, 1728, 3788, 357, 8201, 201, 198, 2, 475, 407, 3614, 284, 4946, 31127, 8, 326, 318, 11971, 739, 4553, 2846, 11, 355, 201, 198, 2, 11032, 287, 257, 1948, 2393, 393, 7515, 393, 287, 3017, 5964, 201, 198, 2, 10314, 13, 220, 383, 7035, 286, 33476, 29376, 7264, 345, 281, 3224, 201, 198, 2, 7170, 284, 2792, 262, 1430, 290, 534, 27255, 2499, 351, 262, 201, 198, 2, 13869, 11971, 3788, 326, 484, 423, 3017, 351, 33476, 13, 201, 198, 2, 770, 1430, 318, 9387, 287, 262, 2911, 326, 340, 481, 307, 4465, 11, 220, 475, 201, 198, 2, 42881, 15529, 34764, 56, 26, 1231, 772, 262, 17142, 18215, 286, 201, 198, 2, 34482, 3398, 1565, 5603, 25382, 393, 376, 46144, 7473, 317, 16652, 2149, 37232, 33079, 48933, 13, 220, 4091, 201, 198, 2, 262, 22961, 3611, 5094, 13789, 11, 2196, 362, 13, 15, 11, 329, 517, 3307, 13, 201, 198, 2, 201, 198, 2, 921, 815, 423, 2722, 257, 4866, 286, 262, 22961, 3611, 5094, 13789, 201, 198, 2, 1863, 351, 428, 1430, 26, 611, 407, 11, 3551, 284, 262, 3232, 10442, 5693, 11, 3457, 1539, 201, 198, 2, 6885, 14021, 520, 11, 19383, 22343, 11, 6182, 11, 8779, 657, 2481, 940, 12, 1485, 486, 4916, 201, 198, 201, 198, 37811, 7004, 12, 26796, 284, 6687, 24775, 40, 7311, 278, 37811, 201, 198, 201, 198, 6738, 48761, 1477, 13, 33803, 62, 37153, 1330, 13877, 62, 8818, 201, 198, 6738, 285, 9310, 62, 33803, 1330, 4755, 11, 8398, 201, 198, 201, 198, 2, 269, 31221, 25, 46430, 410, 66, 5907, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 4299, 5794, 62, 2220, 62, 6893, 8250, 62, 4868, 278, 7, 23814, 11, 1459, 28, 14202, 8, 4613, 965, 25, 201, 198, 220, 220, 220, 37227, 8479, 1381, 257, 1813, 1351, 286, 5563, 287, 257, 1692, 31744, 1296, 201, 198, 201, 198, 220, 220, 220, 943, 14542, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3709, 25, 15467, 257, 1351, 286, 5563, 393, 257, 2060, 2134, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1459, 357, 2536, 2599, 24775, 2389, 286, 262, 1459, 2378, 201, 198, 201, 198, 220, 220, 220, 16409, 25, 201, 198, 220, 220, 220, 220, 220, 220, 383, 20613, 62, 10057, 82, 1296, 515, 355, 965, 201, 198, 220, 220, 220, 37227, 201, 198, 201, 198, 220, 220, 220, 1303, 1002, 257, 2060, 20613, 62, 10057, 373, 1813, 11, 14441, 340, 287, 257, 1351, 201, 198, 220, 220, 220, 611, 407, 2099, 7, 23814, 8, 318, 1351, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3709, 796, 685, 23814, 60, 201, 198, 201, 198, 220, 220, 220, 1303, 1441, 5563, 287, 20832, 17534, 2420, 5072, 201, 198, 220, 220, 220, 503, 796, 13538, 201, 198, 220, 220, 220, 4686, 796, 352, 201, 198, 220, 220, 220, 329, 1312, 287, 3709, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 6376, 796, 277, 1, 9, 90, 312, 25, 29, 18, 92, 366, 611, 1459, 6624, 1312, 13, 312, 2073, 277, 1, 90, 312, 25, 29, 19, 92, 366, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 2419, 796, 13538, 201, 198, 220, 220, 220, 220, 220, 220, 220, 329, 20966, 287, 1312, 13, 541, 62, 2860, 16746, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2419, 15853, 20966, 13, 541, 62, 21975, 1343, 366, 25666, 366, 611, 20966, 13, 271, 62, 11377, 2073, 33172, 366, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 2419, 8, 1875, 362, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2419, 796, 220, 2419, 58, 15, 21912, 17, 60, 201, 198, 220, 220, 220, 220, 220, 220, 220, 503, 15853, 357, 9630, 1343, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4755, 13, 34021, 62, 11925, 7, 72, 13, 13812, 62, 3672, 11, 1987, 11, 705, 46083, 6407, 8, 1343, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4755, 13, 34021, 62, 11925, 7, 72, 13, 36195, 47510, 62, 5219, 11, 807, 11, 705, 705, 8, 1343, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4755, 13, 34021, 62, 11925, 7, 69, 1, 90, 2419, 92, 1600, 1987, 11, 705, 59, 77, 6, 4008, 201, 198, 220, 220, 220, 220, 220, 220, 220, 4686, 15853, 352, 201, 198, 201, 198, 220, 220, 220, 1441, 503, 201, 198, 201, 198, 31, 33803, 62, 8818, 10786, 9132, 82, 13, 4868, 13, 3262, 5225, 11537, 201, 198, 4299, 1351, 62, 3262, 5225, 7, 1174, 46265, 22046, 2599, 201, 198, 220, 220, 220, 37227, 43, 1023, 477, 7686, 286, 262, 1813, 26247, 201, 198, 201, 198, 220, 220, 220, 943, 14542, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 12429, 46265, 22046, 25, 15891, 3689, 201, 198, 201, 198, 220, 220, 220, 7383, 4775, 943, 14542, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1171, 62, 7266, 3262, 357, 30388, 2599, 10127, 691, 1171, 393, 2839, 850, 45938, 815, 307, 220, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3177, 201, 198, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 357, 2536, 2599, 24775, 2389, 286, 262, 2560, 26247, 13, 201, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 357, 15252, 2599, 1052, 24775, 40, 4566, 2134, 393, 6045, 13, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 62, 687, 16898, 357, 30388, 2599, 1002, 900, 284, 2081, 11, 257, 1351, 2134, 318, 4504, 13, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2198, 62, 13776, 576, 3212, 357, 30388, 2599, 47719, 611, 262, 2836, 468, 18850, 329, 262, 220, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 850, 3262, 201, 198, 201, 198, 220, 220, 220, 16409, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 257, 3127, 2134, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 1171, 62, 7266, 3262, 796, 479, 86, 22046, 13, 1136, 7203, 11377, 62, 7266, 3262, 4943, 201, 198, 220, 220, 220, 26247, 62, 312, 796, 479, 86, 22046, 13, 1136, 7203, 5589, 1823, 62, 312, 4943, 201, 198, 220, 220, 220, 4566, 796, 479, 86, 22046, 13, 1136, 7203, 11250, 4943, 201, 198, 220, 220, 220, 1441, 62, 687, 16898, 796, 479, 86, 22046, 13, 1136, 7203, 7783, 62, 687, 16898, 1600, 6407, 8, 201, 198, 220, 220, 220, 2198, 62, 13776, 576, 3212, 796, 479, 86, 22046, 13, 1136, 7203, 9122, 62, 13776, 576, 3212, 1600, 10352, 8, 201, 198, 201, 198, 220, 220, 220, 1303, 3497, 262, 4075, 4566, 290, 26247, 201, 198, 220, 220, 220, 1949, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 796, 8398, 13, 1136, 62, 14421, 62, 11250, 7, 11250, 28, 11250, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 796, 8398, 13, 1136, 62, 14421, 62, 5589, 1823, 62, 312, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 28, 5589, 1823, 62, 312, 11, 4566, 28, 11250, 8, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1330, 267, 979, 13, 1069, 11755, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 13610, 15595, 26245, 11792, 201, 198, 220, 220, 220, 220, 220, 220, 220, 7166, 62, 27349, 796, 4755, 13, 1136, 62, 1733, 62, 32844, 62, 27349, 62, 16366, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 11250, 8, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 7343, 262, 7166, 7686, 201, 198, 220, 220, 220, 220, 220, 220, 220, 410, 66, 5907, 796, 7166, 62, 27349, 13, 4868, 62, 28435, 5907, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 28, 5589, 1823, 62, 312, 737, 7890, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 25853, 503, 477, 850, 12, 45938, 326, 389, 407, 369, 15464, 284, 262, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1171, 62, 7266, 3262, 3689, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1171, 62, 7266, 3262, 318, 407, 6045, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 26304, 625, 26706, 47503, 284, 766, 611, 1895, 318, 7520, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 922, 62, 28435, 5907, 796, 17635, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 410, 31522, 287, 410, 66, 5907, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 3127, 62, 10134, 62, 7266, 3262, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3127, 28, 28435, 77, 11, 26247, 62, 312, 28, 5589, 1823, 62, 312, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 11250, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1171, 62, 7266, 3262, 28, 11377, 62, 7266, 3262, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2198, 62, 13776, 576, 3212, 28, 9122, 62, 13776, 576, 3212, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 922, 62, 28435, 5907, 13, 33295, 7, 28435, 77, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 267, 979, 13, 1069, 11755, 13, 16177, 12331, 355, 304, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 66, 5907, 796, 922, 62, 28435, 5907, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1441, 62, 687, 16898, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 5794, 62, 27349, 62, 4868, 278, 7, 28435, 5907, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 267, 979, 13, 22602, 13, 1462, 62, 11600, 7, 28435, 5907, 8, 201, 198, 201, 198, 220, 220, 220, 2845, 11052, 12331, 355, 304, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 1, 24908, 25, 1391, 2536, 7, 68, 38165, 4943, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 201, 198, 201, 198, 201, 198, 31, 33803, 62, 8818, 10786, 9132, 82, 13, 1136, 13, 27349, 11537, 201, 198, 4299, 651, 62, 27349, 7, 1174, 46265, 22046, 2599, 201, 198, 220, 220, 220, 37227, 35561, 257, 3127, 2134, 201, 198, 201, 198, 220, 220, 220, 1002, 3294, 393, 645, 7686, 389, 1695, 287, 262, 1459, 26247, 11, 201, 198, 220, 220, 220, 1309, 262, 2836, 2922, 257, 1180, 26247, 201, 198, 201, 198, 220, 220, 220, 943, 14542, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 12429, 46265, 22046, 25, 15891, 3689, 201, 198, 201, 198, 220, 220, 220, 7383, 4775, 943, 14542, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3127, 62, 3672, 357, 2536, 2599, 383, 3359, 62, 3672, 286, 262, 3127, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3127, 62, 312, 357, 2536, 2599, 383, 24775, 2389, 286, 262, 3127, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1171, 62, 7266, 3262, 357, 30388, 2599, 10127, 691, 1171, 393, 2839, 850, 45938, 815, 307, 220, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3177, 201, 198, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 357, 2536, 2599, 24775, 2389, 286, 262, 2560, 26247, 13, 201, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 357, 15252, 2599, 1052, 24775, 40, 4566, 2134, 393, 6045, 13, 201, 198, 220, 220, 220, 220, 220, 220, 220, 14333, 357, 30388, 2599, 10127, 284, 12405, 262, 2836, 329, 5128, 201, 198, 220, 220, 220, 220, 220, 220, 220, 8856, 62, 14421, 357, 30388, 2599, 10127, 284, 8856, 262, 1459, 201, 198, 201, 198, 220, 220, 220, 16409, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 257, 3127, 2134, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 3127, 62, 3672, 796, 479, 86, 22046, 13, 1136, 7203, 27349, 62, 3672, 4943, 201, 198, 220, 220, 220, 3127, 62, 312, 796, 479, 86, 22046, 13, 1136, 7203, 27349, 62, 312, 4943, 201, 198, 220, 220, 220, 1171, 62, 7266, 3262, 796, 479, 86, 22046, 13, 1136, 7203, 11377, 62, 7266, 3262, 4943, 201, 198, 220, 220, 220, 26247, 62, 312, 796, 479, 86, 22046, 13, 1136, 7203, 5589, 1823, 62, 312, 4943, 201, 198, 220, 220, 220, 4566, 796, 479, 86, 22046, 13, 1136, 7203, 11250, 4943, 201, 198, 220, 220, 220, 14333, 796, 479, 86, 22046, 13, 1136, 7203, 3849, 5275, 1600, 6407, 8, 201, 198, 220, 220, 220, 8856, 62, 14421, 796, 479, 86, 22046, 13, 1136, 7203, 46430, 62, 14421, 1600, 10352, 8, 201, 198, 201, 198, 220, 220, 220, 1303, 3497, 262, 4075, 4566, 290, 26247, 201, 198, 220, 220, 220, 1949, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 796, 8398, 13, 1136, 62, 14421, 62, 11250, 7, 11250, 28, 11250, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 796, 8398, 13, 1136, 62, 14421, 62, 5589, 1823, 62, 312, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 28, 5589, 1823, 62, 312, 11, 4566, 28, 11250, 8, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1330, 267, 979, 13, 1069, 11755, 201, 198, 220, 220, 220, 220, 220, 220, 220, 422, 285, 9310, 62, 33803, 1330, 26247, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 13610, 15595, 26245, 11792, 201, 198, 220, 220, 220, 220, 220, 220, 220, 7166, 62, 27349, 796, 4755, 13, 1136, 62, 1733, 62, 32844, 62, 27349, 62, 16366, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 11250, 8, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 257, 2176, 3127, 373, 7368, 11, 1441, 428, 3127, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 3127, 62, 312, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 31522, 796, 7166, 62, 27349, 13, 1136, 62, 28435, 77, 7, 28435, 77, 62, 312, 28, 27349, 62, 312, 737, 7890, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 410, 31522, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 26304, 1566, 262, 2836, 6163, 257, 26247, 351, 410, 66, 5907, 201, 198, 220, 220, 220, 220, 220, 220, 220, 410, 66, 5907, 796, 17635, 201, 198, 220, 220, 220, 220, 220, 220, 220, 8606, 62, 28435, 5907, 796, 17635, 201, 198, 220, 220, 220, 220, 220, 220, 220, 981, 18896, 7, 28435, 5907, 8, 6624, 657, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 7343, 262, 7166, 7686, 11, 8106, 416, 3127, 62, 3672, 611, 1813, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 66, 5907, 796, 7166, 62, 27349, 13, 4868, 62, 28435, 5907, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 28, 5589, 1823, 62, 312, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3359, 62, 3672, 28, 27349, 62, 3672, 737, 7890, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 25853, 503, 8606, 26706, 47503, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 66, 5907, 796, 685, 77, 329, 299, 287, 410, 66, 5907, 611, 299, 407, 287, 8606, 62, 28435, 5907, 60, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 28435, 5907, 8, 6624, 657, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3127, 62, 5589, 796, 26247, 13, 1136, 62, 5589, 1823, 62, 1525, 62, 312, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 28, 5589, 1823, 62, 312, 11, 4566, 28, 11250, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 1, 464, 26247, 1391, 27349, 62, 5589, 13, 3672, 92, 857, 407, 366, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 3642, 391, 257, 11080, 7166, 3127, 19570, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 14333, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 5492, 2922, 1194, 26247, 13, 59, 77, 4943, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 796, 26247, 13, 1136, 62, 5589, 1823, 62, 312, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 28, 5589, 1823, 62, 312, 11, 4566, 28, 11250, 8, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 26247, 62, 312, 6624, 6045, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 32180, 16769, 19570, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 25853, 503, 477, 850, 12, 45938, 326, 389, 407, 369, 15464, 284, 262, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1171, 62, 7266, 3262, 3689, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1171, 62, 7266, 3262, 318, 407, 6045, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 26304, 625, 26706, 47503, 284, 766, 611, 1895, 318, 7520, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 922, 62, 28435, 5907, 796, 17635, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 410, 31522, 287, 410, 66, 5907, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8308, 62, 260, 35408, 62, 28435, 5907, 796, 17635, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 3127, 62, 10134, 62, 7266, 3262, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3127, 28, 28435, 77, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 28, 5589, 1823, 62, 312, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 11250, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1171, 62, 7266, 3262, 28, 11377, 62, 7266, 3262, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 922, 62, 28435, 5907, 13, 33295, 7, 28435, 77, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8308, 62, 260, 35408, 62, 28435, 5907, 13, 33295, 7, 28435, 77, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 267, 979, 13, 1069, 11755, 13, 16177, 12331, 355, 304, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 304, 13, 13376, 6624, 32320, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8308, 62, 260, 35408, 62, 28435, 5907, 13, 33295, 7, 28435, 77, 8, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8606, 62, 28435, 5907, 796, 8606, 62, 28435, 5907, 1343, 8308, 62, 260, 35408, 62, 28435, 5907, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 66, 5907, 796, 922, 62, 28435, 5907, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 267, 979, 13, 1069, 11755, 13, 16177, 12331, 355, 304, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 304, 13, 8189, 6624, 366, 3673, 13838, 1143, 5574, 3673, 21077, 1298, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 1639, 466, 407, 423, 18850, 284, 1351, 262, 705, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 6, 3262, 5225, 286, 428, 26247, 2637, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 23722, 407, 1351, 7686, 286, 26247, 705, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 6, 90, 27349, 62, 5589, 13, 3672, 32239, 77, 11537, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 6, 24908, 25, 1391, 68, 13, 20500, 27422, 357, 10669, 25, 1391, 68, 13, 8189, 19629, 705, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 6, 19580, 25, 1391, 68, 13, 13376, 30072, 11537, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 66, 5907, 796, 17635, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 357, 11395, 12331, 11, 267, 979, 13, 1069, 11755, 13, 11792, 12331, 8, 355, 304, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 24908, 25, 1391, 68, 92, 11537, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 66, 5907, 796, 17635, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 612, 318, 257, 2060, 3127, 287, 428, 26247, 11, 1441, 428, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 530, 611, 340, 7466, 262, 3127, 62, 3672, 357, 361, 1813, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 28435, 5907, 8, 6624, 352, 290, 407, 8856, 62, 14421, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 410, 66, 5907, 58, 15, 60, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 14333, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 12331, 25, 1318, 389, 3294, 7166, 7686, 287, 428, 366, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5589, 1823, 19570, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3914, 262, 2836, 3853, 422, 262, 1351, 201, 198, 220, 220, 220, 220, 220, 220, 220, 410, 31522, 796, 4755, 13, 16963, 457, 62, 1640, 62, 4868, 62, 9186, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2378, 62, 4868, 28, 28435, 5907, 11, 6152, 62, 6888, 1159, 28, 7203, 5492, 3802, 262, 1438, 393, 6376, 366, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1659, 262, 7166, 3127, 25, 366, 828, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2378, 62, 3672, 62, 26745, 2625, 13812, 62, 3672, 1600, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 62, 4868, 28, 17821, 8, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 410, 31522, 201, 198, 201, 198, 220, 220, 220, 2845, 267, 979, 13, 1069, 11755, 13, 16177, 12331, 355, 304, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 304, 13, 8189, 6624, 366, 3673, 13838, 1143, 5574, 3673, 21077, 1298, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 1639, 466, 407, 423, 18850, 284, 1895, 428, 3127, 2637, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 23722, 407, 651, 262, 3127, 2637, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 6, 24908, 25, 1391, 68, 13, 20500, 27422, 357, 10669, 25, 1391, 68, 13, 8189, 19629, 705, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 6, 19580, 25, 1391, 68, 13, 13376, 30072, 11537, 201, 198, 220, 220, 220, 2845, 357, 11395, 12331, 11, 267, 979, 13, 1069, 11755, 13, 11792, 12331, 8, 355, 304, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 24908, 25, 1391, 68, 92, 11537, 201, 198, 201, 198, 201, 198, 31, 33803, 62, 8818, 10786, 9132, 82, 13, 4868, 13, 7266, 45938, 11537, 201, 198, 4299, 1351, 62, 7266, 45938, 7, 1174, 46265, 22046, 2599, 201, 198, 220, 220, 220, 37227, 43, 1023, 477, 850, 45938, 286, 262, 1813, 3127, 201, 198, 201, 198, 220, 220, 220, 943, 14542, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 12429, 46265, 22046, 25, 15891, 3689, 201, 198, 201, 198, 220, 220, 220, 7383, 4775, 943, 14542, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3127, 62, 312, 357, 2536, 2599, 383, 24775, 2389, 286, 262, 2560, 3127, 62, 312, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1171, 62, 7266, 3262, 357, 30388, 2599, 10127, 691, 1171, 850, 45938, 815, 307, 3177, 201, 198, 220, 220, 220, 220, 220, 220, 220, 11500, 62, 27830, 357, 2536, 2599, 383, 1438, 611, 262, 11500, 62, 27830, 201, 198, 220, 220, 220, 220, 220, 220, 220, 8856, 62, 14421, 62, 27349, 357, 30388, 2599, 10127, 284, 8856, 262, 1459, 3127, 201, 198, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 357, 2536, 2599, 24775, 2389, 286, 262, 2560, 26247, 13, 201, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 357, 15252, 2599, 1052, 24775, 40, 4566, 2134, 393, 6045, 13, 201, 198, 220, 220, 220, 220, 220, 220, 220, 14333, 357, 30388, 2599, 10127, 284, 12405, 262, 2836, 329, 5128, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 62, 687, 16898, 357, 30388, 2599, 1002, 900, 284, 2081, 11, 257, 1351, 2134, 318, 4504, 13, 201, 198, 201, 198, 220, 220, 220, 16409, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 317, 1351, 286, 850, 45938, 201, 198, 220, 220, 220, 37227, 201, 198, 201, 198, 220, 220, 220, 3127, 62, 312, 796, 479, 86, 22046, 13, 1136, 7203, 27349, 62, 312, 4943, 201, 198, 220, 220, 220, 1171, 62, 7266, 3262, 796, 479, 86, 22046, 13, 1136, 7203, 11377, 62, 7266, 3262, 4943, 201, 198, 220, 220, 220, 1303, 11500, 62, 27830, 796, 479, 86, 22046, 13, 1136, 7203, 47274, 62, 27830, 4943, 201, 198, 220, 220, 220, 8856, 62, 14421, 62, 27349, 796, 479, 86, 22046, 13, 1136, 7203, 46430, 62, 14421, 62, 27349, 4943, 201, 198, 220, 220, 220, 26247, 62, 312, 796, 479, 86, 22046, 13, 1136, 7203, 5589, 1823, 62, 312, 4943, 201, 198, 220, 220, 220, 4566, 796, 479, 86, 22046, 13, 1136, 7203, 11250, 4943, 201, 198, 220, 220, 220, 14333, 796, 479, 86, 22046, 13, 1136, 7203, 3849, 5275, 1600, 6407, 8, 201, 198, 220, 220, 220, 1441, 62, 687, 16898, 796, 479, 86, 22046, 13, 1136, 7203, 7783, 62, 687, 16898, 1600, 6407, 8, 201, 198, 201, 198, 220, 220, 220, 1303, 3497, 262, 4075, 4566, 290, 26247, 201, 198, 220, 220, 220, 1949, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 796, 8398, 13, 1136, 62, 14421, 62, 11250, 7, 11250, 28, 11250, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 26247, 62, 312, 796, 8398, 13, 1136, 62, 14421, 62, 5589, 1823, 62, 312, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 26247, 62, 312, 28, 5589, 1823, 62, 312, 11, 4566, 28, 11250, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 8856, 62, 14421, 62, 27349, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3127, 62, 312, 796, 8398, 13, 1136, 62, 14421, 62, 27349, 62, 312, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3127, 62, 312, 28, 27349, 62, 312, 11, 4566, 28, 11250, 8, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1330, 267, 979, 13, 1069, 11755, 201, 198, 220, 220, 220, 220, 220, 220, 220, 422, 285, 9310, 62, 33803, 1330, 26247, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 13610, 15595, 26245, 11792, 201, 198, 220, 220, 220, 220, 220, 220, 220, 7166, 62, 27349, 796, 4755, 13, 1136, 62, 1733, 62, 32844, 62, 27349, 62, 16366, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 11250, 8, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 257, 850, 3262, 62, 312, 373, 1813, 11, 1441, 262, 850, 3262, 286, 326, 850, 3262, 62, 312, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 611, 850, 3262, 62, 312, 318, 407, 6045, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 1949, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 7166, 62, 27349, 13, 1136, 62, 7266, 3262, 7, 7266, 3262, 62, 312, 28, 7266, 3262, 62, 312, 737, 7890, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 2845, 267, 979, 13, 1069, 11755, 13, 16177, 12331, 355, 304, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 24908, 25, 1391, 68, 13, 20500, 27422, 357, 10669, 25, 1391, 68, 13, 8189, 19629, 12678, 25, 1391, 68, 13, 13376, 30072, 11537, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 2845, 357, 11395, 12331, 11, 267, 979, 13, 1069, 11755, 13, 11792, 12331, 8, 355, 304, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 24908, 25, 1391, 68, 92, 11537, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3127, 796, 651, 62, 27349, 7, 27349, 62, 312, 28, 27349, 62, 312, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 28, 5589, 1823, 62, 312, 11, 4566, 28, 11250, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1171, 62, 7266, 3262, 28, 11377, 62, 7266, 3262, 11, 14333, 28, 3849, 5275, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 3127, 318, 6045, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3127, 62, 3672, 796, 3127, 13, 13812, 62, 3672, 611, 3127, 13, 13812, 62, 3672, 2073, 3467, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3127, 13, 312, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3127, 62, 5589, 1823, 796, 3127, 13, 5589, 1823, 62, 312, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3497, 262, 26247, 201, 198, 220, 220, 220, 220, 220, 220, 220, 26247, 796, 26247, 13, 1136, 62, 5589, 1823, 62, 1525, 62, 312, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 28, 27349, 62, 5589, 1823, 11, 4566, 28, 11250, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 26247, 318, 6045, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 645, 11500, 62, 27830, 373, 7368, 11, 779, 257, 4738, 530, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 611, 11500, 62, 27830, 318, 6045, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 11500, 62, 27830, 796, 26247, 13, 1136, 62, 47274, 62, 27830, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 28, 5589, 1823, 62, 312, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 11500, 62, 27830, 28, 47274, 62, 27830, 11, 4566, 28, 11250, 8, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 850, 45938, 796, 7166, 62, 27349, 13, 4868, 62, 7266, 45938, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 28, 27349, 62, 5589, 1823, 11, 410, 31522, 62, 312, 28, 27349, 13, 312, 737, 7890, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 25853, 850, 45938, 416, 43138, 20021, 11, 6045, 1724, 262, 850, 3262, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 32727, 1973, 477, 43138, 9666, 1299, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 850, 45938, 796, 685, 82, 329, 264, 287, 850, 45938, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 264, 13, 47274, 62, 27830, 6624, 11500, 62, 27830, 393, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 13, 47274, 62, 27830, 318, 6045, 60, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 25853, 503, 477, 850, 12, 45938, 326, 389, 407, 369, 15464, 284, 262, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1171, 62, 7266, 3262, 3689, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1171, 62, 7266, 3262, 318, 407, 6045, 290, 1171, 62, 7266, 3262, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 503, 796, 366, 3237, 1171, 366, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 850, 45938, 796, 685, 82, 329, 264, 287, 850, 45938, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 850, 3262, 62, 271, 62, 11377, 7, 7266, 3262, 28, 82, 11, 4566, 28, 11250, 15437, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1171, 62, 7266, 3262, 318, 407, 6045, 290, 407, 1171, 62, 7266, 3262, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 503, 796, 366, 3237, 2839, 366, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 850, 45938, 796, 685, 82, 329, 264, 287, 850, 45938, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 850, 3262, 62, 271, 62, 11377, 7, 7266, 3262, 28, 82, 11, 4566, 28, 11250, 15437, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 503, 796, 366, 3237, 366, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 503, 15853, 277, 1, 7266, 45938, 286, 7311, 705, 90, 27349, 62, 3672, 92, 6, 287, 26247, 366, 1343, 3467, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 30543, 90, 5589, 1823, 13, 3672, 92, 6, 7479, 77, 59, 77, 1, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1441, 62, 687, 16898, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 503, 1343, 5794, 62, 7266, 3262, 62, 4868, 278, 7, 7266, 45938, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 267, 979, 13, 22602, 13, 1462, 62, 11600, 7, 7266, 45938, 8, 201, 198, 201, 198, 220, 220, 220, 2845, 267, 979, 13, 1069, 11755, 13, 16177, 12331, 355, 304, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 24908, 25, 1391, 68, 13, 20500, 27422, 357, 10669, 25, 1391, 68, 13, 8189, 19629, 12678, 25, 1391, 68, 13, 13376, 30072, 11537, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 201, 198, 220, 220, 220, 2845, 357, 11395, 12331, 11, 267, 979, 13, 1069, 11755, 13, 11792, 12331, 8, 355, 304, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 24908, 25, 1391, 68, 92, 11537, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 201, 198, 201, 198, 201, 198, 31, 33803, 62, 8818, 10786, 9132, 82, 13, 1136, 13, 7266, 3262, 11537, 201, 198, 4299, 651, 62, 7266, 3262, 7, 1174, 46265, 22046, 2599, 201, 198, 220, 220, 220, 37227, 35561, 257, 850, 3262, 2134, 201, 198, 201, 198, 220, 220, 220, 1002, 3294, 393, 645, 7686, 389, 1695, 287, 262, 1459, 26247, 11, 201, 198, 220, 220, 220, 1309, 262, 2836, 2922, 257, 1180, 26247, 201, 198, 201, 198, 220, 220, 220, 943, 14542, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 12429, 46265, 22046, 25, 15891, 3689, 201, 198, 201, 198, 220, 220, 220, 7383, 4775, 943, 14542, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 850, 3262, 62, 3672, 357, 2536, 2599, 383, 3359, 62, 3672, 286, 262, 850, 3262, 201, 198, 220, 220, 220, 220, 220, 220, 220, 850, 3262, 62, 312, 357, 2536, 2599, 383, 24775, 2389, 286, 262, 850, 3262, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3127, 62, 312, 357, 2536, 2599, 383, 24775, 2389, 286, 262, 2560, 3127, 62, 312, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1171, 62, 7266, 3262, 357, 30388, 2599, 10127, 691, 1171, 850, 45938, 815, 307, 3177, 201, 198, 220, 220, 220, 220, 220, 220, 220, 11500, 62, 27830, 357, 2536, 2599, 383, 1438, 611, 262, 11500, 62, 27830, 201, 198, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 357, 2536, 2599, 24775, 2389, 286, 262, 2560, 26247, 13, 201, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 357, 15252, 2599, 1052, 24775, 40, 4566, 2134, 393, 6045, 13, 201, 198, 220, 220, 220, 220, 220, 220, 220, 14333, 357, 30388, 2599, 10127, 284, 12405, 262, 2836, 329, 5128, 201, 198, 201, 198, 220, 220, 220, 16409, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 257, 850, 3262, 2134, 201, 198, 220, 220, 220, 37227, 201, 198, 201, 198, 220, 220, 220, 850, 3262, 62, 3672, 796, 479, 86, 22046, 13, 1136, 7203, 7266, 3262, 62, 3672, 4943, 201, 198, 220, 220, 220, 850, 3262, 62, 312, 796, 479, 86, 22046, 13, 1136, 7203, 7266, 3262, 62, 312, 4943, 201, 198, 220, 220, 220, 3127, 62, 312, 796, 479, 86, 22046, 13, 1136, 7203, 27349, 62, 312, 4943, 201, 198, 220, 220, 220, 1171, 62, 7266, 3262, 796, 479, 86, 22046, 13, 1136, 7203, 11377, 62, 7266, 3262, 4943, 201, 198, 220, 220, 220, 11500, 62, 27830, 796, 479, 86, 22046, 13, 1136, 7203, 47274, 62, 27830, 4943, 201, 198, 220, 220, 220, 26247, 62, 312, 796, 479, 86, 22046, 13, 1136, 7203, 5589, 1823, 62, 312, 4943, 201, 198, 220, 220, 220, 4566, 796, 479, 86, 22046, 13, 1136, 7203, 11250, 4943, 201, 198, 220, 220, 220, 14333, 796, 479, 86, 22046, 13, 1136, 7203, 3849, 5275, 1600, 6407, 8, 201, 198, 201, 198, 220, 220, 220, 1303, 3497, 262, 4075, 4566, 290, 26247, 201, 198, 220, 220, 220, 1949, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 796, 8398, 13, 1136, 62, 14421, 62, 11250, 7, 11250, 28, 11250, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 796, 8398, 13, 1136, 62, 14421, 62, 5589, 1823, 62, 312, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 28, 5589, 1823, 62, 312, 11, 4566, 28, 11250, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3127, 62, 312, 796, 8398, 13, 1136, 62, 14421, 62, 27349, 62, 312, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3127, 62, 312, 28, 27349, 62, 312, 11, 4566, 28, 11250, 8, 201, 198, 220, 220, 220, 2845, 11052, 12331, 355, 304, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 1, 24908, 25, 1391, 2536, 7, 68, 38165, 4943, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 201, 198, 201, 198, 220, 220, 220, 1330, 267, 979, 13, 1069, 11755, 201, 198, 220, 220, 220, 422, 285, 9310, 62, 33803, 1330, 26247, 201, 198, 220, 220, 220, 1330, 302, 201, 198, 201, 198, 220, 220, 220, 1303, 13610, 15595, 26245, 11792, 201, 198, 220, 220, 220, 7166, 62, 27349, 796, 4755, 13, 1136, 62, 1733, 62, 32844, 62, 27349, 62, 16366, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 11250, 8, 201, 198, 201, 198, 220, 220, 220, 1303, 1002, 257, 850, 3262, 62, 312, 373, 1813, 11, 1441, 262, 850, 3262, 286, 326, 850, 3262, 62, 312, 201, 198, 220, 220, 220, 611, 850, 3262, 62, 312, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 7166, 62, 27349, 13, 1136, 62, 7266, 3262, 7, 7266, 3262, 62, 312, 28, 7266, 3262, 62, 312, 737, 7890, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 267, 979, 13, 1069, 11755, 13, 16177, 12331, 355, 304, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 24908, 25, 1391, 68, 13, 20500, 27422, 357, 10669, 25, 1391, 68, 13, 8189, 19629, 12678, 25, 1391, 68, 13, 13376, 30072, 11537, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 357, 11395, 12331, 11, 267, 979, 13, 1069, 11755, 13, 11792, 12331, 8, 355, 304, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 24908, 25, 1391, 68, 92, 11537, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 201, 198, 201, 198, 220, 220, 220, 1303, 1002, 645, 3127, 62, 312, 373, 1813, 11, 12405, 262, 2836, 329, 530, 201, 198, 220, 220, 220, 3127, 796, 651, 62, 27349, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3127, 62, 312, 28, 27349, 62, 312, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 28, 5589, 1823, 62, 312, 11, 4566, 28, 11250, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1171, 62, 7266, 3262, 28, 11377, 62, 7266, 3262, 11, 14333, 28, 3849, 5275, 8, 201, 198, 220, 220, 220, 611, 3127, 318, 6045, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 201, 198, 220, 220, 220, 3127, 62, 312, 796, 3127, 13, 312, 201, 198, 220, 220, 220, 26247, 62, 312, 796, 3127, 13, 5589, 1823, 62, 312, 201, 198, 201, 198, 220, 220, 220, 1303, 1002, 645, 11500, 62, 27830, 373, 7368, 11, 779, 257, 4738, 530, 201, 198, 220, 220, 220, 611, 11500, 62, 27830, 318, 6045, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 11500, 62, 27830, 62, 26801, 796, 26247, 13, 1136, 62, 47274, 62, 27830, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 28, 5589, 1823, 62, 312, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4738, 62, 49283, 28, 17821, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11500, 62, 27830, 28, 47274, 62, 27830, 11, 4566, 28, 11250, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14333, 28, 25101, 11, 1441, 62, 29412, 62, 15252, 28, 17821, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 11500, 62, 27830, 796, 11500, 62, 27830, 62, 26801, 13, 3672, 201, 198, 201, 198, 220, 220, 220, 1949, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 850, 45938, 796, 7166, 62, 27349, 13, 4868, 62, 7266, 45938, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 28, 5589, 1823, 62, 312, 11, 410, 31522, 62, 312, 28, 27349, 62, 312, 737, 7890, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 25853, 850, 45938, 416, 43138, 20021, 11, 6045, 1724, 262, 850, 3262, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 32727, 1973, 477, 43138, 9666, 1299, 201, 198, 220, 220, 220, 220, 220, 220, 220, 850, 45938, 796, 685, 82, 329, 264, 287, 850, 45938, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 264, 13, 47274, 62, 27830, 6624, 11500, 62, 27830, 393, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 13, 47274, 62, 27830, 318, 6045, 60, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 25853, 503, 477, 850, 12, 45938, 326, 389, 407, 369, 15464, 284, 262, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1171, 62, 7266, 3262, 3689, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1171, 62, 7266, 3262, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 850, 45938, 796, 685, 82, 329, 264, 287, 850, 45938, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 850, 3262, 62, 271, 62, 11377, 7, 7266, 3262, 28, 82, 11, 4566, 28, 11250, 15437, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1171, 62, 7266, 3262, 318, 407, 6045, 290, 407, 1171, 62, 7266, 3262, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 850, 45938, 796, 685, 82, 329, 264, 287, 850, 45938, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 850, 3262, 62, 271, 62, 11377, 7, 7266, 3262, 28, 82, 11, 4566, 28, 11250, 15437, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 612, 389, 1811, 850, 45938, 11, 1309, 262, 2836, 3853, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 7266, 45938, 8, 6624, 657, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 18896, 7, 7266, 45938, 8, 6624, 352, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 612, 318, 3446, 352, 850, 3262, 11, 1441, 326, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 850, 45938, 58, 15, 60, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 59, 77, 5492, 3853, 257, 850, 3262, 7479, 77, 4943, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1312, 796, 352, 201, 198, 220, 220, 220, 220, 220, 220, 220, 329, 264, 287, 850, 45938, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 62, 3672, 796, 302, 13, 7266, 7, 81, 6, 58, 59, 77, 59, 81, 60, 3256, 705, 46083, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 13, 13812, 62, 3672, 58, 25, 1828, 60, 1343, 705, 492, 6, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 82, 13, 13812, 62, 3672, 8, 1875, 1987, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 264, 13, 13812, 62, 3672, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 1, 90, 72, 25, 29, 19, 92, 1391, 82, 62, 3672, 25, 1731, 92, 1391, 82, 13, 66, 312, 81, 62, 9967, 25, 1314, 92, 4943, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1312, 15853, 352, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4755, 13, 16963, 457, 62, 1640, 62, 4868, 62, 9186, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2378, 62, 4868, 28, 7266, 45938, 11, 6152, 62, 6888, 1159, 16193, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5492, 3802, 262, 1438, 393, 6376, 286, 262, 850, 3262, 25, 366, 828, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2378, 62, 3672, 62, 26745, 2625, 13812, 62, 3672, 1600, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1813, 62, 8367, 28, 7266, 3262, 62, 3672, 8, 201, 198, 201, 198, 220, 220, 220, 2845, 267, 979, 13, 1069, 11755, 13, 16177, 12331, 355, 304, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 24908, 25, 1391, 68, 13, 20500, 27422, 357, 10669, 25, 1391, 68, 13, 8189, 19629, 12678, 25, 1391, 68, 13, 13376, 30072, 11537, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 201, 198, 220, 220, 220, 2845, 35528, 355, 304, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 24908, 25, 1391, 68, 92, 11537, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 201, 198, 201, 198, 201, 198, 31, 33803, 62, 8818, 10786, 9132, 82, 13, 4868, 13, 2220, 24597, 20811, 3256, 7582, 28, 17821, 11, 537, 72, 28, 17821, 11, 3992, 28, 17821, 8, 201, 198, 4299, 1351, 62, 2220, 62, 6893, 20811, 7, 1174, 46265, 22046, 2599, 201, 198, 220, 220, 220, 37227, 43, 1023, 3440, 3652, 20811, 201, 198, 201, 198, 220, 220, 220, 770, 2163, 481, 1351, 477, 3440, 3652, 20811, 286, 262, 26247, 351, 262, 201, 198, 220, 220, 220, 1813, 26247, 62, 312, 13, 201, 198, 201, 198, 220, 220, 220, 943, 14542, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 12429, 46265, 22046, 25, 32233, 10007, 201, 198, 201, 198, 220, 220, 220, 7383, 4775, 943, 14542, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 357, 2536, 2599, 24775, 2389, 286, 262, 2560, 26247, 201, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 357, 11600, 2599, 1052, 24775, 40, 4566, 2134, 393, 6045, 201, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 62, 13317, 357, 2536, 2599, 383, 1438, 286, 281, 24775, 40, 4566, 7034, 201, 198, 220, 220, 220, 220, 220, 220, 220, 14333, 357, 30388, 2599, 1423, 16856, 1771, 284, 12260, 287, 14333, 4235, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 62, 4906, 357, 2536, 2599, 366, 18601, 1, 481, 1441, 257, 39559, 4731, 11, 366, 35, 18379, 1, 481, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 262, 2134, 11513, 284, 257, 8633, 4645, 290, 366, 9864, 41, 1, 481, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 262, 24775, 40, 11361, 2134, 329, 5387, 13877, 8748, 201, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 62, 1069, 11755, 357, 30388, 2599, 1002, 900, 284, 2081, 13269, 389, 4376, 201, 198, 201, 198, 220, 220, 220, 16409, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 13403, 319, 1441, 62, 4906, 201, 198, 220, 220, 220, 37227, 201, 198, 201, 198, 220, 220, 220, 26247, 62, 312, 796, 479, 86, 22046, 13, 1136, 7203, 5589, 1823, 62, 312, 4943, 201, 198, 220, 220, 220, 4566, 796, 479, 86, 22046, 13, 1136, 7203, 11250, 4943, 201, 198, 220, 220, 220, 4566, 62, 13317, 796, 479, 86, 22046, 13, 1136, 7203, 11250, 62, 13317, 4943, 201, 198, 201, 198, 220, 220, 220, 14333, 796, 479, 86, 22046, 13, 1136, 7203, 3849, 5275, 1600, 4755, 13, 1136, 62, 3849, 5275, 62, 12286, 28955, 201, 198, 220, 220, 220, 1441, 62, 4906, 796, 479, 86, 22046, 13, 1136, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 366, 7783, 62, 4906, 1600, 1303, 554, 14333, 4235, 11, 4277, 284, 39559, 965, 1441, 201, 198, 220, 220, 220, 220, 220, 220, 220, 4755, 13, 26087, 27064, 62, 18601, 611, 14333, 2073, 4755, 13, 26087, 27064, 62, 35, 18379, 8, 201, 198, 220, 220, 220, 5298, 62, 1069, 11755, 796, 479, 86, 22046, 13, 1136, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 366, 40225, 62, 1069, 11755, 1600, 1303, 1550, 5387, 869, 357, 26087, 27064, 62, 9864, 41, 828, 5298, 13269, 201, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 611, 1441, 62, 4906, 6624, 4755, 13, 26087, 27064, 62, 9864, 41, 2073, 407, 14333, 8, 201, 198, 201, 198, 220, 220, 220, 1949, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 796, 8398, 13, 1136, 62, 14421, 62, 11250, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 11250, 11, 4566, 62, 13317, 28, 11250, 62, 13317, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14333, 28, 3849, 5275, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 796, 8398, 13, 1136, 62, 14421, 62, 5589, 1823, 62, 312, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 28, 5589, 1823, 62, 312, 11, 4566, 28, 11250, 8, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1330, 267, 979, 13, 1069, 11755, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 20768, 1096, 262, 220, 9515, 9363, 5456, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3440, 62, 6893, 8250, 62, 565, 796, 4755, 13, 1136, 62, 1733, 62, 2220, 62, 6893, 8250, 62, 16366, 7, 11250, 28, 11250, 8, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 7343, 262, 3440, 3652, 20811, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3440, 62, 6893, 20811, 796, 3440, 62, 6893, 8250, 62, 565, 13, 4868, 62, 2220, 62, 6893, 20811, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26247, 62, 312, 28, 5589, 1823, 62, 312, 737, 7890, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 25853, 503, 477, 13140, 3709, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3440, 62, 6893, 20811, 796, 685, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 300, 329, 300, 287, 3440, 62, 6893, 20811, 611, 300, 13, 36195, 47510, 62, 5219, 14512, 366, 7206, 28882, 1961, 8973, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4755, 13, 1733, 62, 15252, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 267, 979, 62, 15252, 28, 2220, 62, 6893, 20811, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 62, 4906, 28, 7783, 62, 4906, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5794, 62, 8818, 28, 18982, 62, 2220, 62, 6893, 8250, 62, 4868, 278, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 267, 979, 13, 1069, 11755, 13, 16177, 12331, 355, 304, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 5298, 62, 1069, 11755, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 24908, 25, 1391, 68, 13, 20500, 27422, 357, 10669, 25, 1391, 68, 13, 8189, 19629, 12678, 25, 1391, 68, 13, 13376, 30072, 11537, 201, 198, 220, 220, 220, 2845, 35528, 355, 304, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 5298, 62, 1069, 11755, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 24908, 25, 1391, 68, 92, 11537 ]
2.169614
10,801
""" This file is a part of My-PyChess application. In this file, we define some basic gui-related functions For a better understanding of the variables used here, checkout docs.txt """ import pygame from tools.loader import CHESS, BACK, putNum, putLargeNum from tools import sound # Apply 'convert_alpha()' on all pieces to optimise images for speed. # This function displays the choice menu when called, taking user input. # Returns the piece chosen by the user # This function draws the board # This funtion draws all pieces onto the board # This function displays the prompt screen when a user tries to quit # User must choose Yes or No, this function returns True or False respectively # This function shows a small animation when the game starts, while also # optimising images for display - call only once per game
[ 37811, 201, 198, 1212, 2393, 318, 257, 636, 286, 2011, 12, 20519, 7376, 824, 3586, 13, 201, 198, 818, 428, 2393, 11, 356, 8160, 617, 4096, 11774, 12, 5363, 5499, 201, 198, 201, 198, 1890, 257, 1365, 4547, 286, 262, 9633, 973, 994, 11, 28006, 34165, 13, 14116, 201, 198, 37811, 201, 198, 11748, 12972, 6057, 201, 198, 6738, 4899, 13, 29356, 1330, 5870, 7597, 11, 28767, 11, 1234, 33111, 11, 1234, 21968, 33111, 201, 198, 6738, 4899, 1330, 2128, 201, 198, 201, 198, 2, 27967, 705, 1102, 1851, 62, 26591, 3419, 6, 319, 477, 5207, 284, 6436, 786, 4263, 329, 2866, 13, 201, 198, 201, 198, 2, 770, 2163, 11298, 262, 3572, 6859, 618, 1444, 11, 2263, 2836, 5128, 13, 201, 198, 2, 16409, 262, 3704, 7147, 416, 262, 2836, 201, 198, 201, 198, 2, 770, 2163, 14293, 262, 3096, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 201, 198, 2, 770, 1257, 5378, 14293, 477, 5207, 4291, 262, 3096, 201, 198, 201, 198, 2, 770, 2163, 11298, 262, 6152, 3159, 618, 257, 2836, 8404, 284, 11238, 201, 198, 2, 11787, 1276, 3853, 3363, 393, 1400, 11, 428, 2163, 5860, 6407, 393, 10352, 8148, 201, 198, 201, 198, 2, 770, 2163, 2523, 257, 1402, 11034, 618, 262, 983, 4940, 11, 981, 635, 201, 198, 2, 6436, 1710, 4263, 329, 3359, 532, 869, 691, 1752, 583, 983, 201 ]
3.642857
238
from django.urls import path from .views import ( TeamListView, TeamDetailView, CreateTeamView, InviteTeamMemberView, JoinTeamView, ChangeTeamMemberRoleView, DeleteTeamMemberRoleView, JoinTeamUserView, DeleteTeamView ) urlpatterns = [ path('', TeamListView.as_view(), name='team-list'), path('create/', CreateTeamView.as_view(), name='team-create'), path('<int:pk>/', TeamDetailView.as_view(), name='team-detail'), path('<int:pk>/invite/', InviteTeamMemberView.as_view(), name='team-invite'), path('<int:pk>/delete/', DeleteTeamView.as_view(), name='team-delete'), path('<int:pk>/change-member/', ChangeTeamMemberRoleView.as_view(), name='team-change_member'), path('<int:pk>/delete-member/', DeleteTeamMemberRoleView.as_view(), name='team-delete_member'), path('join/<int:pk>/', JoinTeamUserView.as_view(), name='team-join_user'), path('join/<int:pk>/<str:secret>/', JoinTeamView.as_view(), name='team-join'), ]
[ 6738, 42625, 14208, 13, 6371, 82, 1330, 3108, 198, 198, 6738, 764, 33571, 1330, 357, 198, 220, 220, 220, 4816, 8053, 7680, 11, 4816, 11242, 603, 7680, 11, 13610, 15592, 7680, 11, 10001, 578, 15592, 27608, 7680, 11, 198, 220, 220, 220, 15251, 15592, 7680, 11, 9794, 15592, 27608, 47445, 7680, 11, 23520, 15592, 27608, 47445, 7680, 11, 198, 220, 220, 220, 15251, 15592, 12982, 7680, 11, 23520, 15592, 7680, 198, 8, 198, 198, 6371, 33279, 82, 796, 685, 198, 220, 220, 220, 3108, 10786, 3256, 4816, 8053, 7680, 13, 292, 62, 1177, 22784, 1438, 11639, 15097, 12, 4868, 33809, 198, 220, 220, 220, 3108, 10786, 17953, 14, 3256, 13610, 15592, 7680, 13, 292, 62, 1177, 22784, 1438, 11639, 15097, 12, 17953, 33809, 198, 220, 220, 220, 3108, 10786, 27, 600, 25, 79, 74, 29, 14, 3256, 4816, 11242, 603, 7680, 13, 292, 62, 1177, 22784, 1438, 11639, 15097, 12, 49170, 33809, 198, 220, 220, 220, 3108, 10786, 27, 600, 25, 79, 74, 29, 14, 16340, 578, 14, 3256, 10001, 578, 15592, 27608, 7680, 13, 292, 62, 1177, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 11639, 15097, 12, 16340, 578, 33809, 198, 220, 220, 220, 3108, 10786, 27, 600, 25, 79, 74, 29, 14, 33678, 14, 3256, 23520, 15592, 7680, 13, 292, 62, 1177, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 11639, 15097, 12, 33678, 33809, 198, 220, 220, 220, 3108, 10786, 27, 600, 25, 79, 74, 29, 14, 3803, 12, 19522, 14, 3256, 9794, 15592, 27608, 47445, 7680, 13, 292, 62, 1177, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 11639, 15097, 12, 3803, 62, 19522, 33809, 198, 220, 220, 220, 3108, 10786, 27, 600, 25, 79, 74, 29, 14, 33678, 12, 19522, 14, 3256, 23520, 15592, 27608, 47445, 7680, 13, 292, 62, 1177, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 11639, 15097, 12, 33678, 62, 19522, 33809, 198, 220, 220, 220, 3108, 10786, 22179, 14, 27, 600, 25, 79, 74, 29, 14, 3256, 15251, 15592, 12982, 7680, 13, 292, 62, 1177, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 11639, 15097, 12, 22179, 62, 7220, 33809, 198, 220, 220, 220, 3108, 10786, 22179, 14, 27, 600, 25, 79, 74, 29, 14, 27, 2536, 25, 21078, 29, 14, 3256, 15251, 15592, 7680, 13, 292, 62, 1177, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 11639, 15097, 12, 22179, 33809, 198, 60, 198 ]
2.477941
408
import time import board import pwmio from adafruit_motor import servo
[ 11748, 640, 198, 11748, 3096, 198, 11748, 279, 26377, 952, 198, 6738, 512, 1878, 4872, 62, 76, 20965, 1330, 1113, 78, 628, 198 ]
3.173913
23
# -*- coding: utf-8 -*- import time from django.db.models import Q from django.shortcuts import render from django.http import HttpResponseRedirect from django.http import HttpResponseNotFound from django.contrib.auth.hashers import make_password from django.contrib.auth.hashers import check_password from django.views.generic.edit import FormView from django.views.generic import TemplateView from django.views.generic import RedirectView from .forms import SignInForm from .forms import LoginForm from .forms import TicketCreateForm from .models import User from .models import Ticket class LoginView(FormView): """ Login View. """ form_class = LoginForm template_name = 'ticketing_system/login.html' success_url = '/dashboard' class LogoutView(RedirectView): """ Logout View. """ url = '/login' class RegisterView(TemplateView): """ Register View. """ template_name = 'ticketing_system/register.html' class DashboardView(TemplateView): """ Dashboard View. """ template_name = 'ticketing_system/dashboard.html' class TicketView(FormView): """ Ticket View. """ form_class = TicketCreateForm template_name = 'ticketing_system/ticket_form.html' success_url = '/ticket'
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 11748, 640, 198, 6738, 42625, 14208, 13, 9945, 13, 27530, 1330, 1195, 198, 6738, 42625, 14208, 13, 19509, 23779, 1330, 8543, 198, 6738, 42625, 14208, 13, 4023, 1330, 367, 29281, 31077, 7738, 1060, 198, 6738, 42625, 14208, 13, 4023, 1330, 367, 29281, 31077, 3673, 21077, 198, 6738, 42625, 14208, 13, 3642, 822, 13, 18439, 13, 10134, 7084, 1330, 787, 62, 28712, 198, 6738, 42625, 14208, 13, 3642, 822, 13, 18439, 13, 10134, 7084, 1330, 2198, 62, 28712, 198, 6738, 42625, 14208, 13, 33571, 13, 41357, 13, 19312, 1330, 5178, 7680, 198, 6738, 42625, 14208, 13, 33571, 13, 41357, 1330, 37350, 7680, 198, 6738, 42625, 14208, 13, 33571, 13, 41357, 1330, 2297, 1060, 7680, 198, 198, 6738, 764, 23914, 1330, 5865, 818, 8479, 198, 6738, 764, 23914, 1330, 23093, 8479, 198, 6738, 764, 23914, 1330, 24014, 16447, 8479, 198, 198, 6738, 764, 27530, 1330, 11787, 198, 6738, 764, 27530, 1330, 24014, 628, 198, 4871, 23093, 7680, 7, 8479, 7680, 2599, 198, 220, 220, 220, 37227, 23093, 3582, 13, 37227, 628, 220, 220, 220, 1296, 62, 4871, 796, 23093, 8479, 198, 220, 220, 220, 11055, 62, 3672, 796, 705, 43350, 278, 62, 10057, 14, 38235, 13, 6494, 6, 198, 220, 220, 220, 1943, 62, 6371, 796, 31051, 42460, 3526, 6, 628, 198, 4871, 5972, 448, 7680, 7, 7738, 1060, 7680, 2599, 198, 220, 220, 220, 37227, 5972, 448, 3582, 13, 37227, 628, 220, 220, 220, 19016, 796, 31051, 38235, 6, 628, 198, 4871, 17296, 7680, 7, 30800, 7680, 2599, 198, 220, 220, 220, 37227, 17296, 3582, 13, 37227, 628, 220, 220, 220, 11055, 62, 3672, 796, 705, 43350, 278, 62, 10057, 14, 30238, 13, 6494, 6, 628, 198, 4871, 16189, 3526, 7680, 7, 30800, 7680, 2599, 198, 220, 220, 220, 37227, 16189, 3526, 3582, 13, 37227, 628, 220, 220, 220, 11055, 62, 3672, 796, 705, 43350, 278, 62, 10057, 14, 42460, 3526, 13, 6494, 6, 628, 198, 4871, 24014, 7680, 7, 8479, 7680, 2599, 198, 220, 220, 220, 37227, 24014, 3582, 13, 37227, 628, 220, 220, 220, 1296, 62, 4871, 796, 24014, 16447, 8479, 198, 220, 220, 220, 11055, 62, 3672, 796, 705, 43350, 278, 62, 10057, 14, 43350, 62, 687, 13, 6494, 6, 198, 220, 220, 220, 1943, 62, 6371, 796, 31051, 43350, 6, 628 ]
3.203608
388
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Thu Aug 20 15:40:51 2020 @author: zettergm known issues: 1) Need to control number of decimal places in output printing to improve readability """ import numpy as np from elimtools import Gauss_elim,backsub nrow=10 ncol=10 A=np.random.randn(nrow,ncol) b=np.random.randn(nrow,1) # Simple test problem for debugging #A=np.array([[1.0, 4.0, 2.0], [3.0, 2.0, 1.0], [2.0, 1.0, 3.0]]) # system to be solved #b=np.array([[15.0], [10.0], [13.0]]) # RHS of system # Solve with elimtools [Awork,order]=Gauss_elim(A,b,True) x=backsub(Awork[order,:],True) print("Value of x computed via Gaussian elimination and backsubstitution: ") print(x) # Use built-in linear algebra routines to solve and compare xpyth=np.linalg.solve(A,b); print("Solution vector computed via built-in numpy routine") print(xpyth)
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 37811, 198, 41972, 319, 26223, 2447, 1160, 1315, 25, 1821, 25, 4349, 12131, 198, 198, 31, 9800, 25, 1976, 40088, 39870, 198, 198, 4002, 2428, 25, 220, 220, 198, 16, 8, 220, 10664, 284, 1630, 1271, 286, 32465, 4113, 287, 5072, 13570, 284, 2987, 1100, 1799, 198, 37811, 198, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 5687, 31391, 1330, 12822, 1046, 62, 417, 320, 11, 1891, 7266, 198, 198, 77, 808, 28, 940, 198, 77, 4033, 28, 940, 198, 32, 28, 37659, 13, 25120, 13, 25192, 77, 7, 77, 808, 11, 77, 4033, 8, 198, 65, 28, 37659, 13, 25120, 13, 25192, 77, 7, 77, 808, 11, 16, 8, 198, 198, 2, 17427, 1332, 1917, 329, 28769, 198, 2, 32, 28, 37659, 13, 18747, 26933, 58, 16, 13, 15, 11, 604, 13, 15, 11, 362, 13, 15, 4357, 685, 18, 13, 15, 11, 362, 13, 15, 11, 352, 13, 15, 4357, 685, 17, 13, 15, 11, 352, 13, 15, 11, 513, 13, 15, 11907, 8, 220, 220, 220, 1303, 1080, 284, 307, 16019, 198, 2, 65, 28, 37659, 13, 18747, 26933, 58, 1314, 13, 15, 4357, 685, 940, 13, 15, 4357, 685, 1485, 13, 15, 11907, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 371, 7998, 286, 1080, 198, 198, 2, 4294, 303, 351, 5687, 31391, 198, 58, 32, 1818, 11, 2875, 22241, 35389, 1046, 62, 417, 320, 7, 32, 11, 65, 11, 17821, 8, 198, 87, 28, 1891, 7266, 7, 32, 1818, 58, 2875, 11, 25, 4357, 17821, 8, 198, 4798, 7203, 11395, 286, 2124, 29231, 2884, 12822, 31562, 21472, 290, 736, 7266, 301, 2738, 25, 220, 366, 8, 198, 4798, 7, 87, 8, 198, 198, 2, 5765, 3170, 12, 259, 14174, 37139, 31878, 284, 8494, 290, 8996, 198, 42372, 5272, 28, 37659, 13, 75, 1292, 70, 13, 82, 6442, 7, 32, 11, 65, 1776, 198, 4798, 7203, 46344, 15879, 29231, 2884, 3170, 12, 259, 299, 32152, 8027, 4943, 198, 4798, 7, 42372, 5272, 8 ]
2.392
375
################################################################################ # #### Hiking_project_trailsraper.py ##### # # #### written by: Etienne Deneault ##### # ################################################################################ # Environment-import import json import requests import sqlite3 import random from shapely.geometry import Point, Polygon # initalize coordinates at the center of mainland US # Enter Hiking Project API key here. Further Dev needed for encrytion through env variable external program. api_key = 'your_api_key' # Base URL for getTrail_datas method url = 'https://www.hikingproject.com/data/get-trails?' # Bounding Box Coordinates for the Mainland US obtained on coords = [(-82.4423472248,25.062761981), (-85.6719092689,29.570088284), (-89.362854179,29.650311372), (-97.9443083368,26.5579317639), (-117.2294984422,32.2612294633), (-125.072755035,41.8816215194), (-124.2423002086,48.2581198196), (-121.566356834,49.3519856698), (-96.4679400287,48.808034488), (-92.0388082824,48.5643678729), (-84.6569184623,46.8886898289), (-81.7964176498,42.8361752569), (-76.3522736392,43.7095457837), (-70.2622322402,46.3181308653), (-68.1399397216,47.014662257), (-66.4790086112,44.7016972202), (-69.7085706554,43.3080101182), (-76.1677269302,38.7876636101), (-75.7986335121,35.6284188995), (-80.7814268432,30.8459373794), (-79.5818678699,26.4753651459), (-82.4423472248,25.062761981)] poly = Polygon(coords) point_in_poly = get_all_point_in_polygon(poly) print("Number of coordinate points to check:", len(point_in_poly)) # print(point_in_poly) # Randomize list of coordinates random.shuffle(point_in_poly) ##### Main Loop ##### if __name__ == "__main__": while True: try: maxDistance = input('Enter your search area (0-200 miles): ') maxDistance = int(maxDistance) except ValueError: print("I did not understand the input, please try again using a distance numeric value in miles.") continue try: maxResults = input('Enter your search area - Maximum bumber of trail results (0-500): ') maxResults = int(maxResults) except ValueError: print("I did not understand the input, please try again using a numeric value.") continue try: userReq_count = input('Enter the number of requests to the API (0-199): ') userReq_count = int(userReq_count) except ValueError: print("I did not understand the input, please try again using a numeric value.") continue req_count = 0 # Note: Reverse cordinates to input (lat,lon) == (y,x) for (x,y) in point_in_poly: req_count = req_count + 1 print('Query Count', req_count) maxDistance = 100 maxResults = 400 parameters = {"lat": y, "lon": x , "maxDistance": maxDistance, "maxResults": maxResults, "key": api_key} # Make a get request with the parameters. response = requests.get(url, params=parameters) print(response.url) print(response.headers) print(response.status_code) # print(response.text) # print(response.headers) # print(response.json()) db = sqlite3.connect("SQL_data/trails.sqlite") cur = db.cursor() cur.execute(''' CREATE TABLE IF NOT EXISTS Trailsdb (id INTEGER NOT NULL PRIMARY KEY UNIQUE, name TEXT, type TEXT, summary TEXT UNIQUE, difficulty TEXT, stars INTEGER, starVotes INTEGER, location TEXT, url TEXT UNIQUE, length INTEGER, ascent INTEGER, descent INTEGER, high INTEGER, low INTEGER, longitude INTEGER, latitude INTEGER, conditionStatus TEXT, conditionDetails TEXT, conditionDate TEXT)''') str_data = response.text json_data = json.loads(str_data) # for entry in json_data: # print(entry) for trail in json_data['trails']: #print(child) cur.execute("Insert or replace into trailsdb values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", (trail['id'], trail['name'], trail['type'], trail['summary'], trail['difficulty'], trail['stars'], trail['starVotes'], trail['location'], trail['url'], trail['length'], trail['ascent'], trail['descent'], trail['high'], trail['low'],trail['longitude'], trail['latitude'], trail['conditionStatus'], trail['conditionDetails'], trail['conditionDate'])) db.commit() if req_count == userReq_count: break db.commit() print("all done") break
[ 29113, 29113, 14468, 201, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 21017, 367, 14132, 62, 16302, 62, 9535, 4487, 38545, 13, 9078, 46424, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 201, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 21017, 3194, 416, 25, 17906, 37938, 360, 1734, 1721, 46424, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 201, 198, 29113, 29113, 14468, 201, 198, 201, 198, 2, 9344, 12, 11748, 201, 198, 11748, 33918, 201, 198, 11748, 7007, 201, 198, 11748, 44161, 578, 18, 201, 198, 11748, 4738, 201, 198, 6738, 5485, 306, 13, 469, 15748, 1330, 6252, 11, 12280, 14520, 201, 198, 201, 198, 2, 287, 1287, 1096, 22715, 379, 262, 3641, 286, 22779, 1294, 201, 198, 201, 198, 2, 6062, 367, 14132, 4935, 7824, 1994, 994, 13, 7735, 6245, 2622, 329, 2207, 563, 5378, 832, 17365, 7885, 7097, 1430, 13, 201, 198, 15042, 62, 2539, 796, 705, 14108, 62, 15042, 62, 2539, 6, 201, 198, 201, 198, 2, 7308, 10289, 329, 651, 15721, 346, 62, 19608, 292, 2446, 201, 198, 6371, 796, 705, 5450, 1378, 2503, 13, 71, 14132, 16302, 13, 785, 14, 7890, 14, 1136, 12, 9535, 4487, 8348, 201, 198, 201, 198, 2, 347, 9969, 8315, 22819, 17540, 329, 262, 8774, 1044, 1294, 6492, 319, 201, 198, 1073, 3669, 796, 685, 32590, 6469, 13, 2598, 1954, 37856, 23045, 11, 1495, 13, 3312, 27988, 35411, 828, 13841, 5332, 13, 3134, 1129, 2931, 2075, 4531, 11, 1959, 13, 3553, 405, 3459, 30336, 828, 13841, 4531, 13, 2623, 2078, 4051, 21738, 11, 1959, 13, 17544, 36244, 36720, 828, 13841, 5607, 13, 24, 2598, 21495, 2091, 3104, 11, 2075, 13, 2816, 44750, 24096, 2670, 828, 13841, 17657, 13, 23539, 36260, 2598, 1828, 11, 2624, 13, 2075, 1065, 1959, 3510, 2091, 828, 13841, 11623, 13, 2998, 1983, 22730, 2327, 11, 3901, 13, 3459, 1433, 23349, 22913, 828, 13841, 17464, 13, 1731, 1954, 405, 1238, 4521, 11, 2780, 13, 1495, 6659, 22337, 25272, 828, 13841, 19244, 13, 20, 2791, 2327, 3104, 2682, 11, 2920, 13, 2327, 29110, 2791, 4089, 828, 13841, 4846, 13, 24669, 5824, 405, 27800, 11, 2780, 13, 1795, 1795, 33535, 3459, 828, 13841, 5892, 13, 15, 2548, 28362, 2078, 1731, 11, 2780, 13, 20, 2414, 2623, 41019, 1959, 828, 13841, 5705, 13, 2996, 3388, 1507, 3510, 1954, 11, 3510, 13, 28011, 3104, 4089, 27693, 828, 13841, 6659, 13, 3720, 2414, 1558, 2414, 4089, 11, 3682, 13, 23, 2623, 17430, 1495, 3388, 828, 13841, 4304, 13, 2327, 24403, 2623, 32321, 11, 3559, 13, 2154, 3865, 2231, 3695, 2718, 828, 13841, 2154, 13, 2075, 1828, 2624, 1731, 2999, 11, 3510, 13, 36042, 12952, 23, 46435, 828, 13841, 3104, 13, 1485, 2079, 2670, 4761, 1433, 11, 2857, 13, 28645, 2791, 18182, 22, 828, 13841, 2791, 13, 2857, 12865, 4521, 14686, 11, 2598, 13, 41583, 3388, 4761, 19004, 828, 13841, 3388, 13, 2154, 5332, 35402, 44218, 11, 3559, 13, 21495, 486, 486, 24294, 828, 13841, 4304, 13, 1433, 3324, 26276, 22709, 11, 2548, 13, 41019, 2791, 2623, 8784, 828, 13841, 2425, 13, 3720, 4521, 27326, 19244, 11, 2327, 13, 21, 30336, 20356, 33438, 828, 13841, 1795, 13, 3695, 1415, 2075, 5705, 2624, 11, 1270, 13, 23, 33459, 2718, 2718, 5824, 828, 13841, 3720, 13, 3365, 1507, 3134, 4521, 2079, 11, 2075, 13, 32576, 24760, 1415, 3270, 828, 13841, 6469, 13, 2598, 1954, 37856, 23045, 11, 1495, 13, 3312, 27988, 35411, 15437, 201, 198, 35428, 796, 12280, 14520, 7, 1073, 3669, 8, 201, 198, 201, 198, 4122, 62, 259, 62, 35428, 796, 651, 62, 439, 62, 4122, 62, 259, 62, 35428, 14520, 7, 35428, 8, 201, 198, 201, 198, 4798, 7203, 15057, 286, 20435, 2173, 284, 2198, 25, 1600, 18896, 7, 4122, 62, 259, 62, 35428, 4008, 201, 198, 2, 3601, 7, 4122, 62, 259, 62, 35428, 8, 201, 198, 201, 198, 2, 14534, 1096, 1351, 286, 22715, 201, 198, 25120, 13, 1477, 18137, 7, 4122, 62, 259, 62, 35428, 8, 201, 198, 201, 198, 4242, 2, 8774, 26304, 46424, 201, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 201, 198, 201, 198, 220, 220, 220, 981, 6407, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 45767, 796, 5128, 10786, 17469, 534, 2989, 1989, 357, 15, 12, 2167, 4608, 2599, 705, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 45767, 796, 493, 7, 9806, 45767, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 11052, 12331, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 40, 750, 407, 1833, 262, 5128, 11, 3387, 1949, 757, 1262, 257, 5253, 35575, 1988, 287, 4608, 19570, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 25468, 796, 5128, 10786, 17469, 534, 2989, 1989, 532, 22246, 275, 4494, 286, 8025, 2482, 357, 15, 12, 4059, 2599, 705, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 25468, 796, 493, 7, 9806, 25468, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 11052, 12331, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 40, 750, 407, 1833, 262, 5128, 11, 3387, 1949, 757, 1262, 257, 35575, 1988, 19570, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2836, 3041, 80, 62, 9127, 796, 5128, 10786, 17469, 262, 1271, 286, 7007, 284, 262, 7824, 357, 15, 12, 19104, 2599, 705, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2836, 3041, 80, 62, 9127, 796, 493, 7, 7220, 3041, 80, 62, 9127, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 11052, 12331, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 40, 750, 407, 1833, 262, 5128, 11, 3387, 1949, 757, 1262, 257, 35575, 1988, 19570, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 43089, 62, 9127, 796, 657, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 5740, 25, 220, 31849, 15050, 17540, 284, 5128, 357, 15460, 11, 14995, 8, 6624, 357, 88, 11, 87, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 329, 357, 87, 11, 88, 8, 287, 966, 62, 259, 62, 35428, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 43089, 62, 9127, 796, 43089, 62, 9127, 1343, 352, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 20746, 2764, 3256, 43089, 62, 9127, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 45767, 796, 1802, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 25468, 796, 7337, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10007, 796, 19779, 15460, 1298, 331, 11, 366, 14995, 1298, 2124, 837, 366, 9806, 45767, 1298, 3509, 45767, 11, 366, 9806, 25468, 1298, 3509, 25468, 11, 366, 2539, 1298, 40391, 62, 2539, 92, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 6889, 257, 651, 2581, 351, 262, 10007, 13, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2882, 796, 7007, 13, 1136, 7, 6371, 11, 42287, 28, 17143, 7307, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 26209, 13, 6371, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 26209, 13, 50145, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 26209, 13, 13376, 62, 8189, 8, 201, 198, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 7, 26209, 13, 5239, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 7, 26209, 13, 50145, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 7, 26209, 13, 17752, 28955, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20613, 796, 44161, 578, 18, 13, 8443, 7203, 17861, 62, 7890, 14, 9535, 4487, 13, 25410, 578, 4943, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1090, 796, 20613, 13, 66, 21471, 3419, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1090, 13, 41049, 7, 7061, 6, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 29244, 6158, 43679, 16876, 5626, 7788, 1797, 4694, 40076, 9945, 357, 312, 17828, 7156, 1137, 5626, 15697, 4810, 3955, 13153, 35374, 4725, 33866, 8924, 11, 1438, 40383, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 40383, 11, 10638, 40383, 4725, 33866, 8924, 11, 8722, 40383, 11, 5788, 17828, 7156, 1137, 11, 3491, 53, 6421, 17828, 7156, 1137, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4067, 40383, 11, 19016, 40383, 4725, 33866, 8924, 11, 4129, 17828, 7156, 1137, 11, 37137, 17828, 7156, 1137, 11, 18598, 17828, 7156, 1137, 11, 1029, 17828, 7156, 1137, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1877, 17828, 7156, 1137, 11, 890, 3984, 17828, 7156, 1137, 11, 32477, 17828, 7156, 1137, 11, 4006, 19580, 40383, 11, 4006, 24259, 40383, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4006, 10430, 40383, 8, 7061, 11537, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 965, 62, 7890, 796, 2882, 13, 5239, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 33918, 62, 7890, 796, 33918, 13, 46030, 7, 2536, 62, 7890, 8, 201, 198, 201, 198, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 329, 5726, 287, 33918, 62, 7890, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 3601, 7, 13000, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 8025, 287, 33918, 62, 7890, 17816, 9535, 4487, 6, 5974, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4798, 7, 9410, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1090, 13, 41049, 7203, 44402, 393, 6330, 656, 19196, 9945, 3815, 357, 5633, 11, 5633, 11, 5633, 11, 5633, 11, 5633, 11, 5633, 11, 5633, 11, 5633, 11, 5633, 11, 5633, 11, 5633, 11, 5633, 11, 5633, 11, 5633, 11, 5633, 11, 5633, 11, 5633, 11, 5633, 11, 41349, 1600, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 9535, 346, 17816, 312, 6, 4357, 8025, 17816, 3672, 6, 4357, 8025, 17816, 4906, 6, 4357, 8025, 17816, 49736, 6, 4357, 8025, 17816, 26069, 22402, 6, 4357, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8025, 17816, 30783, 6, 4357, 8025, 17816, 7364, 53, 6421, 6, 4357, 8025, 17816, 24886, 6, 4357, 8025, 17816, 6371, 6, 4357, 8025, 17816, 13664, 6, 4357, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8025, 17816, 292, 1087, 6, 4357, 8025, 17816, 8906, 1087, 6, 4357, 8025, 17816, 8929, 6, 4357, 8025, 17816, 9319, 6, 4357, 9535, 346, 17816, 6511, 3984, 6, 4357, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8025, 17816, 15460, 3984, 6, 4357, 8025, 17816, 31448, 19580, 6, 4357, 8025, 17816, 31448, 24259, 6, 4357, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8025, 17816, 31448, 10430, 20520, 4008, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20613, 13, 41509, 3419, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 43089, 62, 9127, 6624, 2836, 3041, 80, 62, 9127, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20613, 13, 41509, 3419, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 439, 1760, 4943, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2270, 201, 198 ]
2.190189
2,324
# Copyright 2017,2021 IBM Corp. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. import contextlib import random import os import six import sqlite3 import threading import uuid import json from zvmsdk import config from zvmsdk import constants as const from zvmsdk import exception from zvmsdk import log CONF = config.CONF LOG = log.LOG _DIR_MODE = 0o755 _VOLUME_CONN = None _NETWORK_CONN = None _IMAGE_CONN = None _GUEST_CONN = None _FCP_CONN = None _DBLOCK_VOLUME = threading.RLock() _DBLOCK_NETWORK = threading.RLock() _DBLOCK_IMAGE = threading.RLock() _DBLOCK_GUEST = threading.RLock() _DBLOCK_FCP = threading.RLock() @contextlib.contextmanager @contextlib.contextmanager @contextlib.contextmanager @contextlib.contextmanager
[ 2, 15069, 2177, 11, 1238, 2481, 19764, 11421, 13, 198, 2, 198, 2, 220, 220, 220, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 345, 743, 198, 2, 220, 220, 220, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 921, 743, 7330, 198, 2, 220, 220, 220, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 220, 220, 220, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 220, 220, 220, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 42881, 198, 2, 220, 220, 220, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 4091, 262, 198, 2, 220, 220, 220, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 11247, 198, 2, 220, 220, 220, 739, 262, 13789, 13, 628, 198, 11748, 4732, 8019, 198, 11748, 4738, 198, 11748, 28686, 198, 11748, 2237, 198, 11748, 44161, 578, 18, 198, 11748, 4704, 278, 198, 11748, 334, 27112, 198, 11748, 33918, 198, 198, 6738, 1976, 85, 907, 34388, 1330, 4566, 198, 6738, 1976, 85, 907, 34388, 1330, 38491, 355, 1500, 198, 6738, 1976, 85, 907, 34388, 1330, 6631, 198, 6738, 1976, 85, 907, 34388, 1330, 2604, 628, 198, 10943, 37, 796, 4566, 13, 10943, 37, 198, 25294, 796, 2604, 13, 25294, 628, 198, 62, 34720, 62, 49058, 796, 657, 78, 38172, 198, 62, 44558, 38340, 62, 10943, 45, 796, 6045, 198, 62, 12884, 33249, 62, 10943, 45, 796, 6045, 198, 62, 3955, 11879, 62, 10943, 45, 796, 6045, 198, 62, 38022, 6465, 62, 10943, 45, 796, 6045, 198, 62, 4851, 47, 62, 10943, 45, 796, 6045, 198, 62, 35, 9148, 11290, 62, 44558, 38340, 796, 4704, 278, 13, 7836, 735, 3419, 198, 62, 35, 9148, 11290, 62, 12884, 33249, 796, 4704, 278, 13, 7836, 735, 3419, 198, 62, 35, 9148, 11290, 62, 3955, 11879, 796, 4704, 278, 13, 7836, 735, 3419, 198, 62, 35, 9148, 11290, 62, 38022, 6465, 796, 4704, 278, 13, 7836, 735, 3419, 198, 62, 35, 9148, 11290, 62, 4851, 47, 796, 4704, 278, 13, 7836, 735, 3419, 628, 198, 31, 22866, 8019, 13, 22866, 37153, 628, 198, 31, 22866, 8019, 13, 22866, 37153, 628, 198, 31, 22866, 8019, 13, 22866, 37153, 628, 198, 31, 22866, 8019, 13, 22866, 37153, 628, 628, 628 ]
3.011792
424
from typing import Callable from async_couch import CouchClient db_name = 'test_db_01' invalid_db_name = 'invalid_%^^&_name' non_existing_db = 'non_existing_database' doc_id = None
[ 6738, 19720, 1330, 4889, 540, 198, 198, 6738, 30351, 62, 66, 7673, 1330, 48225, 11792, 628, 198, 9945, 62, 3672, 796, 705, 9288, 62, 9945, 62, 486, 6, 198, 259, 12102, 62, 9945, 62, 3672, 796, 705, 259, 12102, 62, 4, 18237, 5, 62, 3672, 6, 198, 13159, 62, 25687, 62, 9945, 796, 705, 13159, 62, 25687, 62, 48806, 6, 198, 15390, 62, 312, 796, 6045, 628, 628, 628, 628, 628 ]
2.71831
71
#!/usr/bin/python '''Creates a folder containing text files of Cocoa keywords.''' import os, commands, re from sys import argv def find(searchpath, ext): '''Mimics the "find searchpath -name *.ext" unix command.''' results = [] for path, dirs, files in os.walk(searchpath): for filename in files: if filename.endswith(ext): results.append(os.path.join(path, filename)) return results def find_headers(frameworks): '''Returns list of the header files for the given frameworks.''' headers = [] for framework in frameworks: headers.extend(find('/System/Library/Frameworks/%s.framework' % framework, '.h')) return headers def default_headers(): '''Headers for common Cocoa frameworks.''' frameworks = ('Foundation', 'AppKit', 'AddressBook', 'CoreData', 'PreferencePanes', 'QTKit', 'ScreenSaver', 'SyncServices', 'WebKit') return find_headers(frameworks) def match_output(command, regex, group_num): ''' Returns an ordered list of all matches of the supplied regex for the output of the given command. ''' results = [] for line in commands.getoutput(command).split("\n"): match = re.search(regex, line) if match and not match.group(group_num) in results: results.append(match.group(group_num)) results.sort() return results def get_functions(header_files): '''Returns list of Cocoa Functions.''' lines = match_output(r"grep -h '^[A-Z][A-Z_]* [^;]* \**NS\w\+ *(' " + header_files, r'NS\w+\s*\(.*?\)', 0) for i in range(len(lines)): lines[i] = lines[i].replace('NSInteger', 'int') lines[i] = lines[i].replace('NSUInteger', 'unsigned int') lines[i] = lines[i].replace('CGFloat', 'float') return lines def get_types(header_files): '''Returns a list of Cocoa Types.''' return match_output(r"grep -h 'typedef .* _*NS[A-Za-z]*' " + header_files, r'(NS[A-Za-z]+)\s*(;|{)', 1) def get_constants(header_files): '''Returns a list of Cocoa Constants.''' return match_output(r"awk '/^(typedef )?enum .*\{/ {pr = 1;} /\}/ {pr = 0;}" r"{ if(pr) print $0; }' " + header_files, r'^\s*(NS[A-Z][A-Za-z0-9_]*)', 1) def get_notifications(header_files): '''Returns a list of Cocoa Notifications.''' return match_output(r"grep -h '\*NS.*Notification' " + header_files, r'NS\w*Notification', 0) def write_file(filename, lines): '''Attempts to write list to file or exits with error if it can't.''' try: f = open(filename, 'w') except IOError, error: raise SystemExit(argv[0] + ': %s' % error) f.write("\n".join(lines)) f.close() def extract_files_to(dirname=None): '''Extracts .txt files to given directory or ./cocoa_indexes by default.''' if dirname is None: dirname = './cocoa_indexes' if not os.path.isdir(dirname): os.mkdir(dirname) headers = ' '.join(default_headers()) write_file(dirname + '/functions.txt', get_functions (headers)) write_file(dirname + '/types.txt', get_types (headers)) write_file(dirname + '/constants.txt', get_constants (headers)) write_file(dirname + '/notifications.txt', get_notifications(headers)) if __name__ == '__main__': extract_files_to(argv[1] if len(argv) > 1 else None)
[ 2, 48443, 14629, 14, 8800, 14, 29412, 198, 7061, 6, 16719, 274, 257, 9483, 7268, 2420, 3696, 286, 18490, 12162, 26286, 2637, 7061, 198, 11748, 28686, 11, 9729, 11, 302, 198, 6738, 25064, 1330, 1822, 85, 198, 198, 4299, 1064, 7, 12947, 6978, 11, 1070, 2599, 198, 220, 220, 220, 705, 7061, 44, 320, 873, 262, 366, 19796, 2989, 6978, 532, 3672, 46866, 2302, 1, 555, 844, 3141, 2637, 7061, 198, 220, 220, 220, 2482, 796, 17635, 198, 220, 220, 220, 329, 3108, 11, 288, 17062, 11, 3696, 287, 28686, 13, 11152, 7, 12947, 6978, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 329, 29472, 287, 3696, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 29472, 13, 437, 2032, 342, 7, 2302, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2482, 13, 33295, 7, 418, 13, 6978, 13, 22179, 7, 6978, 11, 29472, 4008, 198, 220, 220, 220, 1441, 2482, 198, 198, 4299, 1064, 62, 50145, 7, 19298, 19653, 2599, 198, 220, 220, 220, 705, 7061, 35561, 1351, 286, 262, 13639, 3696, 329, 262, 1813, 29251, 2637, 7061, 198, 220, 220, 220, 24697, 796, 17635, 198, 220, 220, 220, 329, 9355, 287, 29251, 25, 198, 220, 220, 220, 220, 220, 220, 220, 24697, 13, 2302, 437, 7, 19796, 10786, 14, 11964, 14, 23377, 14, 42026, 14, 4, 82, 13, 30604, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4064, 9355, 11, 45302, 71, 6, 4008, 198, 220, 220, 220, 1441, 24697, 198, 198, 4299, 4277, 62, 50145, 33529, 198, 220, 220, 220, 705, 7061, 13847, 364, 329, 2219, 18490, 12162, 29251, 2637, 7061, 198, 220, 220, 220, 29251, 796, 19203, 21077, 341, 3256, 705, 4677, 20827, 3256, 705, 20231, 10482, 3256, 705, 14055, 6601, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 6719, 4288, 47, 7305, 3256, 705, 48, 51, 20827, 3256, 705, 23901, 50, 8770, 3256, 705, 28985, 31007, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 13908, 20827, 11537, 198, 220, 220, 220, 1441, 1064, 62, 50145, 7, 19298, 19653, 8, 198, 198, 4299, 2872, 62, 22915, 7, 21812, 11, 40364, 11, 1448, 62, 22510, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 16409, 281, 6149, 1351, 286, 477, 7466, 286, 262, 14275, 40364, 329, 262, 198, 220, 220, 220, 5072, 286, 262, 1813, 3141, 13, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 2482, 796, 17635, 198, 220, 220, 220, 329, 1627, 287, 9729, 13, 1136, 22915, 7, 21812, 737, 35312, 7203, 59, 77, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2872, 796, 302, 13, 12947, 7, 260, 25636, 11, 1627, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2872, 290, 407, 2872, 13, 8094, 7, 8094, 62, 22510, 8, 287, 2482, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2482, 13, 33295, 7, 15699, 13, 8094, 7, 8094, 62, 22510, 4008, 198, 220, 220, 220, 2482, 13, 30619, 3419, 198, 220, 220, 220, 1441, 2482, 198, 198, 4299, 651, 62, 12543, 2733, 7, 25677, 62, 16624, 2599, 198, 220, 220, 220, 705, 7061, 35561, 1351, 286, 18490, 12162, 40480, 2637, 7061, 198, 220, 220, 220, 3951, 796, 2872, 62, 22915, 7, 81, 1, 70, 7856, 532, 71, 705, 61, 58, 32, 12, 57, 7131, 32, 12, 57, 62, 60, 9, 685, 61, 26, 60, 9, 3467, 1174, 8035, 59, 86, 59, 10, 1635, 10786, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1343, 13639, 62, 16624, 11, 374, 6, 8035, 59, 86, 10, 59, 82, 9, 59, 7, 15885, 30, 22725, 3256, 657, 8, 198, 220, 220, 220, 329, 1312, 287, 2837, 7, 11925, 7, 6615, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 3951, 58, 72, 60, 796, 3951, 58, 72, 4083, 33491, 10786, 8035, 46541, 3256, 705, 600, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 3951, 58, 72, 60, 796, 3951, 58, 72, 4083, 33491, 10786, 8035, 52, 46541, 3256, 705, 43375, 493, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 3951, 58, 72, 60, 796, 3951, 58, 72, 4083, 33491, 10786, 34, 21713, 5439, 265, 3256, 705, 22468, 11537, 198, 220, 220, 220, 1441, 3951, 198, 198, 4299, 651, 62, 19199, 7, 25677, 62, 16624, 2599, 198, 220, 220, 220, 705, 7061, 35561, 257, 1351, 286, 18490, 12162, 24897, 2637, 7061, 198, 220, 220, 220, 1441, 2872, 62, 22915, 7, 81, 1, 70, 7856, 532, 71, 705, 774, 9124, 891, 764, 9, 4808, 9, 8035, 58, 32, 12, 57, 64, 12, 89, 60, 9, 6, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1343, 13639, 62, 16624, 11, 374, 6, 7, 8035, 58, 32, 12, 57, 64, 12, 89, 48688, 19415, 82, 9, 7, 26, 91, 90, 8, 3256, 352, 8, 198, 198, 4299, 651, 62, 9979, 1187, 7, 25677, 62, 16624, 2599, 198, 220, 220, 220, 705, 7061, 35561, 257, 1351, 286, 18490, 12162, 4757, 1187, 2637, 7061, 198, 220, 220, 220, 1441, 2872, 62, 22915, 7, 81, 1, 19301, 31051, 61, 7, 774, 9124, 891, 1267, 30, 44709, 764, 9, 59, 90, 14, 1391, 1050, 796, 352, 46956, 1220, 59, 92, 14, 1391, 1050, 796, 657, 26, 36786, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 1, 90, 611, 7, 1050, 8, 3601, 720, 15, 26, 1782, 6, 366, 1343, 13639, 62, 16624, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 6, 61, 59, 82, 9, 7, 8035, 58, 32, 12, 57, 7131, 32, 12, 57, 64, 12, 89, 15, 12, 24, 62, 60, 28104, 3256, 352, 8, 198, 198, 4299, 651, 62, 1662, 6637, 7, 25677, 62, 16624, 2599, 198, 220, 220, 220, 705, 7061, 35561, 257, 1351, 286, 18490, 12162, 1892, 6637, 2637, 7061, 198, 220, 220, 220, 1441, 2872, 62, 22915, 7, 81, 1, 70, 7856, 532, 71, 705, 59, 9, 8035, 15885, 3673, 2649, 6, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1343, 13639, 62, 16624, 11, 374, 6, 8035, 59, 86, 9, 3673, 2649, 3256, 657, 8, 198, 198, 4299, 3551, 62, 7753, 7, 34345, 11, 3951, 2599, 198, 220, 220, 220, 705, 7061, 48452, 284, 3551, 1351, 284, 2393, 393, 30151, 351, 4049, 611, 340, 460, 470, 2637, 7061, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 277, 796, 1280, 7, 34345, 11, 705, 86, 11537, 198, 220, 220, 220, 2845, 24418, 12331, 11, 4049, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 4482, 30337, 7, 853, 85, 58, 15, 60, 1343, 705, 25, 4064, 82, 6, 4064, 4049, 8, 198, 220, 220, 220, 277, 13, 13564, 7203, 59, 77, 1911, 22179, 7, 6615, 4008, 198, 220, 220, 220, 277, 13, 19836, 3419, 198, 198, 4299, 7925, 62, 16624, 62, 1462, 7, 15908, 3672, 28, 14202, 2599, 198, 220, 220, 220, 705, 7061, 11627, 974, 82, 764, 14116, 3696, 284, 1813, 8619, 393, 24457, 66, 420, 12162, 62, 9630, 274, 416, 4277, 2637, 7061, 198, 220, 220, 220, 611, 26672, 3672, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 26672, 3672, 796, 705, 19571, 66, 420, 12162, 62, 9630, 274, 6, 198, 220, 220, 220, 611, 407, 28686, 13, 6978, 13, 9409, 343, 7, 15908, 3672, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 28686, 13, 28015, 15908, 7, 15908, 3672, 8, 198, 220, 220, 220, 24697, 796, 705, 45302, 22179, 7, 12286, 62, 50145, 28955, 628, 220, 220, 220, 3551, 62, 7753, 7, 15908, 3672, 1343, 31051, 12543, 2733, 13, 14116, 3256, 220, 220, 220, 220, 651, 62, 12543, 2733, 220, 220, 220, 357, 50145, 4008, 198, 220, 220, 220, 3551, 62, 7753, 7, 15908, 3672, 1343, 31051, 19199, 13, 14116, 3256, 220, 220, 220, 220, 220, 220, 220, 220, 651, 62, 19199, 220, 220, 220, 220, 220, 220, 220, 357, 50145, 4008, 198, 220, 220, 220, 3551, 62, 7753, 7, 15908, 3672, 1343, 31051, 9979, 1187, 13, 14116, 3256, 220, 220, 220, 220, 651, 62, 9979, 1187, 220, 220, 220, 357, 50145, 4008, 198, 220, 220, 220, 3551, 62, 7753, 7, 15908, 3672, 1343, 31051, 1662, 6637, 13, 14116, 3256, 651, 62, 1662, 6637, 7, 50145, 4008, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 7925, 62, 16624, 62, 1462, 7, 853, 85, 58, 16, 60, 611, 18896, 7, 853, 85, 8, 1875, 352, 2073, 6045, 8, 198 ]
2.285156
1,536
import iteration_utilities import more_itertools import toolz import cytoolz import pydash
[ 11748, 24415, 62, 315, 2410, 198, 11748, 517, 62, 270, 861, 10141, 198, 11748, 2891, 89, 198, 11748, 3075, 25981, 89, 198, 11748, 279, 5173, 1077, 198 ]
3.37037
27
import threading import sys from traceback import print_tb,print_exc from random import randint from time import ctime as now class JobThread(threading.Thread): """ Thread that executes a job every N milliseconds """ def shutdown(self): """ Stop this thread """ self._finished.set() def is_shutdown(self): """ Boolean check on the thread's state """ return bool(self._finished.isSet()) def run(self): """ Keep running this thread until it's shutdown """ self._finished.wait(10) while not self._finished.isSet(): try: self._func(self._ref) self._error = False except: if not self._error: print(" ") print(">>>Exception occured in thread: {0}".format(sys.exc_info()[1])) print_tb(sys.exc_info()[2]) print(" ") f = open('{0} - ThreadLog.txt'.format(self._ref.config['name']),'a') f.write("\r\n") f.write(now()) f.write("\r\nConnection: {0}\r\n".format(self._ref.config['host'])) print_exc(None,f) f.write("\r\n") f.close() self._error = True finally: if self._func._max: self._finished.wait(randint(self._func._min,self._func._max)*0.001) else: self._finished.wait(self._func._min*0.001)
[ 11748, 4704, 278, 198, 11748, 25064, 198, 6738, 12854, 1891, 1330, 3601, 62, 83, 65, 11, 4798, 62, 41194, 198, 6738, 4738, 1330, 43720, 600, 198, 6738, 640, 1330, 269, 2435, 355, 783, 198, 198, 4871, 15768, 16818, 7, 16663, 278, 13, 16818, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 14122, 326, 42985, 257, 1693, 790, 399, 38694, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 825, 18325, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13707, 428, 4704, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 43952, 13, 2617, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 825, 318, 62, 49625, 2902, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 220, 198, 220, 220, 220, 220, 220, 220, 220, 41146, 2198, 319, 262, 4704, 338, 1181, 220, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 20512, 7, 944, 13557, 43952, 13, 271, 7248, 28955, 628, 220, 220, 220, 825, 1057, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 9175, 2491, 428, 4704, 1566, 340, 338, 18325, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 43952, 13, 17077, 7, 940, 8, 198, 220, 220, 220, 220, 220, 220, 220, 981, 407, 2116, 13557, 43952, 13, 271, 7248, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 20786, 7, 944, 13557, 5420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 18224, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2116, 13557, 18224, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 366, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 33409, 16922, 1609, 1522, 287, 4704, 25, 1391, 15, 92, 1911, 18982, 7, 17597, 13, 41194, 62, 10951, 3419, 58, 16, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 62, 83, 65, 7, 17597, 13, 41194, 62, 10951, 3419, 58, 17, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 366, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 796, 1280, 10786, 90, 15, 92, 532, 14122, 11187, 13, 14116, 4458, 18982, 7, 944, 13557, 5420, 13, 11250, 17816, 3672, 20520, 828, 6, 64, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 13, 13564, 7203, 59, 81, 59, 77, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 13, 13564, 7, 2197, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 13, 13564, 7203, 59, 81, 59, 77, 32048, 25, 1391, 15, 32239, 81, 59, 77, 1911, 18982, 7, 944, 13557, 5420, 13, 11250, 17816, 4774, 20520, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 62, 41194, 7, 14202, 11, 69, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 13, 13564, 7203, 59, 81, 59, 77, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 13, 19836, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 18224, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3443, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13557, 20786, 13557, 9806, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 43952, 13, 17077, 7, 25192, 600, 7, 944, 13557, 20786, 13557, 1084, 11, 944, 13557, 20786, 13557, 9806, 27493, 15, 13, 8298, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 43952, 13, 17077, 7, 944, 13557, 20786, 13557, 1084, 9, 15, 13, 8298, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198 ]
1.825893
896
import mpi #needed to use mpi ################################################################## ################################################################## #setting the domain size for the problem to be solved domain_size = 2 ################################################################## ################################################################## ## ATTENTION: here the order is important #including kratos path kratos_libs_path = '../../../../libs' ##kratos_root/libs kratos_applications_path = '../../../../applications' ##kratos_root/applications kratos_python_scripts_path = '../../../../applications/structural_application/python_scripts' import sys sys.path.append(kratos_libs_path) sys.path.append(kratos_applications_path) sys.path.append(kratos_python_scripts_path) #importing Kratos main library from Kratos import * kernel = Kernel() #defining kernel #importing applications import applications_interface applications_interface.Import_StructuralApplication = True applications_interface.Import_KratosTrilinosApplication = True applications_interface.Import_KratosMetisApplication = True applications_interface.ImportApplications(kernel, kratos_applications_path) from KratosStructuralApplication import * from KratosTrilinosApplication import * from KratosMetisApplication import * ## from now on the order is not anymore crucial ################################################################## ################################################################## #defining a model part model_part = ModelPart("FluidPart"); #adding of Variables to Model Part should be here import trilinos_structural_solver_static trilinos_structural_solver_static.AddVariables(model_part) model_part.AddNodalSolutionStepVariable(PARTITION_INDEX) #reading a model gid_mode = GiDPostMode.GiD_PostBinary multifile = MultiFileFlag.MultipleFiles deformed_mesh_flag = WriteDeformedMeshFlag.WriteUndeformed write_conditions = WriteConditionsFlag.WriteElementsOnly gid_io = GidIO("cantilever2d",gid_mode,multifile,deformed_mesh_flag, write_conditions) number_of_partitions = mpi.size #we set it equal to the number of processors print "number_of_partitions", number_of_partitions partitioner = MetisPartitioningProcess(model_part, gid_io, number_of_partitions, domain_size); partitioner.Execute() mesh_name = mpi.rank gid_io.InitializeMesh( mesh_name ); gid_io.WriteMesh((model_part).GetMesh()); gid_io.FinalizeMesh() print "pippo" print model_part #print model_part.Properties #writing the mesh #gid_io.WriteMesh(model_part.GetMesh(),domain_size,GiDPostMode.GiD_PostBinary); #the buffer size should be set up here after the mesh is read for the first time model_part.SetBufferSize(2) #importing the solver files trilinos_structural_solver_static.AddDofs(model_part) #creating a fluid solver object solver = trilinos_structural_solver_static.StaticStructuralSolver(model_part,domain_size) ##pILUPrecond = ILU0Preconditioner() ##solver.structure_linear_solver = BICGSTABSolver(1e-9, 5000,pILUPrecond) model_part.Properties[1].SetValue(CONSTITUTIVE_LAW, Isotropic2D() ) print "Linear elastic model selected" solver.Initialize() (solver).SetEchoLevel(2); Dt = 0.001 nsteps = 5 print("initializing results") gid_io.InitializeResults(mesh_name,(model_part).GetMesh()) for step in range(0,nsteps): time = Dt*step model_part.CloneTimeStep(time) print time #print model_part.ProcessInfo()[TIME] #solving the fluid problem solver.Solve() #print the results print "a" gid_io.WriteNodalResults(DISPLACEMENT,model_part.Nodes,time,0) gid_io.WriteNodalResults(REACTION,model_part.Nodes,time,0) gid_io.FinalizeResults() print "finito"
[ 11748, 285, 14415, 1303, 27938, 284, 779, 285, 14415, 198, 198, 29113, 29113, 2235, 198, 29113, 29113, 2235, 198, 2, 33990, 262, 7386, 2546, 329, 262, 1917, 284, 307, 16019, 198, 27830, 62, 7857, 796, 362, 198, 198, 29113, 29113, 2235, 198, 29113, 29113, 2235, 198, 2235, 26195, 45589, 25, 994, 262, 1502, 318, 1593, 198, 198, 2, 8201, 479, 10366, 418, 3108, 198, 74, 10366, 418, 62, 8019, 82, 62, 6978, 796, 705, 40720, 40720, 40720, 40720, 8019, 82, 6, 22492, 74, 10366, 418, 62, 15763, 14, 8019, 82, 198, 74, 10366, 418, 62, 1324, 677, 602, 62, 6978, 796, 705, 40720, 40720, 40720, 40720, 1324, 677, 602, 6, 22492, 74, 10366, 418, 62, 15763, 14, 1324, 677, 602, 198, 74, 10366, 418, 62, 29412, 62, 46521, 62, 6978, 796, 705, 40720, 40720, 40720, 40720, 1324, 677, 602, 14, 7249, 1523, 62, 31438, 14, 29412, 62, 46521, 6, 198, 11748, 25064, 198, 17597, 13, 6978, 13, 33295, 7, 74, 10366, 418, 62, 8019, 82, 62, 6978, 8, 198, 17597, 13, 6978, 13, 33295, 7, 74, 10366, 418, 62, 1324, 677, 602, 62, 6978, 8, 198, 17597, 13, 6978, 13, 33295, 7, 74, 10366, 418, 62, 29412, 62, 46521, 62, 6978, 8, 198, 198, 2, 11748, 278, 509, 10366, 418, 1388, 5888, 198, 6738, 509, 10366, 418, 1330, 1635, 198, 33885, 796, 32169, 3419, 220, 220, 1303, 4299, 3191, 9720, 198, 198, 2, 11748, 278, 5479, 198, 11748, 5479, 62, 39994, 198, 1324, 677, 602, 62, 39994, 13, 20939, 62, 44909, 1523, 23416, 796, 6407, 198, 1324, 677, 602, 62, 39994, 13, 20939, 62, 42, 10366, 418, 2898, 346, 11996, 23416, 796, 6407, 198, 1324, 677, 602, 62, 39994, 13, 20939, 62, 42, 10366, 418, 9171, 271, 23416, 796, 6407, 198, 1324, 677, 602, 62, 39994, 13, 20939, 41995, 7, 33885, 11, 479, 10366, 418, 62, 1324, 677, 602, 62, 6978, 8, 198, 6738, 509, 10366, 418, 44909, 1523, 23416, 1330, 1635, 198, 6738, 509, 10366, 418, 2898, 346, 11996, 23416, 1330, 1635, 198, 6738, 509, 10366, 418, 9171, 271, 23416, 1330, 1635, 198, 2235, 422, 783, 319, 262, 1502, 318, 407, 7471, 8780, 198, 29113, 29113, 2235, 198, 29113, 29113, 2235, 198, 198, 2, 4299, 3191, 257, 2746, 636, 198, 19849, 62, 3911, 796, 9104, 7841, 7203, 37, 2290, 312, 7841, 15341, 220, 220, 198, 198, 2, 26872, 286, 15965, 2977, 284, 9104, 2142, 815, 307, 994, 198, 11748, 491, 346, 11996, 62, 7249, 1523, 62, 82, 14375, 62, 12708, 198, 2213, 346, 11996, 62, 7249, 1523, 62, 82, 14375, 62, 12708, 13, 4550, 23907, 2977, 7, 19849, 62, 3911, 8, 198, 19849, 62, 3911, 13, 4550, 45, 375, 282, 46344, 8600, 43015, 7, 30709, 17941, 62, 12115, 6369, 8, 198, 198, 2, 25782, 257, 2746, 198, 70, 312, 62, 14171, 796, 8118, 35, 6307, 19076, 13, 33704, 35, 62, 6307, 33, 3219, 198, 16680, 361, 576, 796, 15237, 8979, 34227, 13, 31217, 25876, 198, 2934, 12214, 62, 76, 5069, 62, 32109, 796, 19430, 5005, 12214, 37031, 34227, 13, 16594, 31319, 68, 12214, 198, 13564, 62, 17561, 1756, 796, 19430, 25559, 1756, 34227, 13, 16594, 36, 3639, 10049, 198, 70, 312, 62, 952, 796, 402, 312, 9399, 7203, 66, 415, 576, 332, 17, 67, 1600, 70, 312, 62, 14171, 11, 16680, 361, 576, 11, 2934, 12214, 62, 76, 5069, 62, 32109, 11, 3551, 62, 17561, 1756, 8, 628, 198, 17618, 62, 1659, 62, 3911, 1756, 796, 285, 14415, 13, 7857, 1303, 732, 900, 340, 4961, 284, 262, 1271, 286, 20399, 198, 4798, 366, 17618, 62, 1659, 62, 3911, 1756, 1600, 1271, 62, 1659, 62, 3911, 1756, 198, 3911, 653, 263, 796, 3395, 271, 7841, 653, 278, 18709, 7, 19849, 62, 3911, 11, 308, 312, 62, 952, 11, 1271, 62, 1659, 62, 3911, 1756, 11, 7386, 62, 7857, 1776, 198, 3911, 653, 263, 13, 23002, 1133, 3419, 198, 198, 76, 5069, 62, 3672, 796, 285, 14415, 13, 43027, 198, 70, 312, 62, 952, 13, 24243, 1096, 37031, 7, 19609, 62, 3672, 5619, 198, 70, 312, 62, 952, 13, 16594, 37031, 19510, 19849, 62, 3911, 737, 3855, 37031, 35430, 198, 70, 312, 62, 952, 13, 19006, 1096, 37031, 3419, 628, 628, 198, 4798, 366, 79, 3974, 78, 1, 198, 4798, 2746, 62, 3911, 198, 2, 4798, 2746, 62, 3911, 13, 2964, 18200, 198, 198, 2, 16502, 262, 19609, 198, 2, 70, 312, 62, 952, 13, 16594, 37031, 7, 19849, 62, 3911, 13, 3855, 37031, 22784, 27830, 62, 7857, 11, 33704, 35, 6307, 19076, 13, 33704, 35, 62, 6307, 33, 3219, 1776, 198, 198, 2, 1169, 11876, 2546, 815, 307, 900, 510, 994, 706, 262, 19609, 318, 1100, 329, 262, 717, 640, 198, 19849, 62, 3911, 13, 7248, 28632, 10699, 7, 17, 8, 198, 198, 2, 11748, 278, 262, 1540, 332, 3696, 198, 2213, 346, 11996, 62, 7249, 1523, 62, 82, 14375, 62, 12708, 13, 4550, 35, 1659, 82, 7, 19849, 62, 3911, 8, 198, 198, 2, 20123, 278, 257, 11711, 1540, 332, 2134, 198, 82, 14375, 796, 491, 346, 11996, 62, 7249, 1523, 62, 82, 14375, 62, 12708, 13, 45442, 44909, 1523, 50, 14375, 7, 19849, 62, 3911, 11, 27830, 62, 7857, 8, 198, 2235, 79, 4146, 52, 6719, 17561, 796, 14639, 52, 15, 6719, 31448, 263, 3419, 220, 198, 2235, 82, 14375, 13, 301, 5620, 62, 29127, 62, 82, 14375, 796, 220, 347, 2149, 38, 2257, 32, 4462, 14375, 7, 16, 68, 12, 24, 11, 23336, 11, 79, 4146, 52, 6719, 17561, 8, 198, 198, 19849, 62, 3911, 13, 2964, 18200, 58, 16, 4083, 7248, 11395, 7, 10943, 2257, 2043, 3843, 9306, 62, 43, 12298, 11, 1148, 46084, 17, 35, 3419, 1267, 198, 4798, 366, 14993, 451, 27468, 2746, 6163, 1, 628, 198, 82, 14375, 13, 24243, 1096, 3419, 198, 7, 82, 14375, 737, 7248, 36, 6679, 4971, 7, 17, 1776, 198, 198, 35, 83, 796, 657, 13, 8298, 198, 77, 20214, 796, 642, 198, 4798, 7203, 36733, 2890, 2482, 4943, 198, 70, 312, 62, 952, 13, 24243, 1096, 25468, 7, 76, 5069, 62, 3672, 11, 7, 19849, 62, 3911, 737, 3855, 37031, 28955, 198, 1640, 2239, 287, 2837, 7, 15, 11, 77, 20214, 2599, 628, 220, 220, 220, 640, 796, 360, 83, 9, 9662, 198, 220, 220, 220, 2746, 62, 3911, 13, 2601, 505, 7575, 8600, 7, 2435, 8, 628, 220, 220, 220, 3601, 640, 198, 220, 220, 220, 1303, 4798, 2746, 62, 3911, 13, 18709, 12360, 3419, 58, 34694, 60, 628, 220, 220, 220, 1303, 82, 10890, 262, 11711, 1917, 198, 220, 220, 220, 1540, 332, 13, 50, 6442, 3419, 628, 220, 220, 220, 1303, 4798, 262, 2482, 198, 220, 220, 220, 3601, 366, 64, 1, 198, 220, 220, 220, 308, 312, 62, 952, 13, 16594, 45, 375, 282, 25468, 7, 26288, 6489, 2246, 12529, 11, 19849, 62, 3911, 13, 45, 4147, 11, 2435, 11, 15, 8, 198, 220, 220, 220, 308, 312, 62, 952, 13, 16594, 45, 375, 282, 25468, 7, 2200, 44710, 11, 19849, 62, 3911, 13, 45, 4147, 11, 2435, 11, 15, 8, 198, 70, 312, 62, 952, 13, 19006, 1096, 25468, 3419, 198, 4798, 366, 15643, 10094, 1, 628, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 628 ]
3.114548
1,196
import re import time import random import IPython from google.colab import output n = 0 # アイコンの指定 BOT_ICON = 'https://3.bp.blogspot.com/-qbORCFE5qhk/UmTBJwEYKjI/AAAAAAAAZYY/nbjieynFcLQ/s800/job_uranaishi.png' YOUR_ICON = 'https://3.bp.blogspot.com/-nHZhTWISMxk/Vw5KxMQxRhI/AAAAAAAA5tQ/HR_btIW3k1ISG3GGNG1HFpsgk38wSuGzwCLcB/s800/nuigurumi_bear.png' # 'name', 'birthday', 'asking' frame = {} TYPE = []
[ 11748, 302, 198, 11748, 640, 198, 11748, 4738, 198, 11748, 6101, 7535, 198, 6738, 23645, 13, 4033, 397, 1330, 5072, 628, 198, 77, 796, 657, 220, 198, 198, 2, 220, 11839, 11482, 24679, 6527, 27032, 234, 229, 22522, 248, 198, 33, 2394, 62, 2149, 1340, 796, 705, 5450, 1378, 18, 13, 46583, 13, 35217, 13, 785, 16327, 80, 65, 1581, 34, 15112, 20, 80, 71, 74, 14, 37280, 22737, 41, 86, 22348, 42, 73, 40, 14, 43488, 57, 26314, 14, 46803, 73, 494, 2047, 37, 66, 43, 48, 14, 82, 7410, 14, 21858, 62, 333, 2271, 21644, 13, 11134, 6, 198, 56, 11698, 62, 2149, 1340, 796, 705, 5450, 1378, 18, 13, 46583, 13, 35217, 13, 785, 16327, 77, 39, 57, 71, 34551, 31125, 87, 74, 14, 53, 86, 20, 42, 87, 49215, 87, 38576, 40, 14, 43488, 20, 83, 48, 14, 17184, 62, 18347, 40, 54, 18, 74, 16, 1797, 38, 18, 11190, 10503, 16, 29567, 862, 70, 74, 2548, 86, 5606, 38, 89, 86, 5097, 66, 33, 14, 82, 7410, 14, 28803, 328, 333, 12994, 62, 33227, 13, 11134, 6, 198, 2, 705, 3672, 3256, 705, 24280, 820, 3256, 705, 30463, 6, 198, 14535, 796, 23884, 198, 25216, 796, 17635, 628, 628 ]
2
204
#!/usr/bin/env python """ _Repack_t_ Repack job splitting test """ import unittest import threading import logging import time from WMCore.WMBS.File import File from WMCore.WMBS.Fileset import Fileset from WMCore.WMBS.Subscription import Subscription from WMCore.WMBS.Workflow import Workflow from WMCore.DataStructs.Run import Run from WMCore.DAOFactory import DAOFactory from WMCore.JobSplitting.SplitterFactory import SplitterFactory from WMCore.Services.UUIDLib import makeUUID from WMQuality.TestInit import TestInit class RepackTest(unittest.TestCase): """ _RepackTest_ Test for Repack job splitter """ def setUp(self): """ _setUp_ """ import WMQuality.TestInit WMQuality.TestInit.deleteDatabaseAfterEveryTest("I'm Serious") self.testInit = TestInit(__file__) self.testInit.setLogging() self.testInit.setDatabaseConnection() self.testInit.setSchema(customModules = ["WMComponent.DBS3Buffer", "T0.WMBS"]) self.splitterFactory = SplitterFactory(package = "T0.JobSplitting") myThread = threading.currentThread() daoFactory = DAOFactory(package = "T0.WMBS", logger = logging, dbinterface = myThread.dbi) myThread.dbi.processData("""INSERT INTO wmbs_location (id, site_name, state, state_time) VALUES (1, 'SomeSite', 1, 1) """, transaction = False) myThread.dbi.processData("""INSERT INTO wmbs_pnns (id, pnn) VALUES (2, 'SomePNN') """, transaction = False) myThread.dbi.processData("""INSERT INTO wmbs_location_pnns (location, pnn) VALUES (1, 2) """, transaction = False) insertRunDAO = daoFactory(classname = "RunConfig.InsertRun") insertRunDAO.execute(binds = { 'RUN' : 1, 'HLTKEY' : "someHLTKey" }, transaction = False) insertLumiDAO = daoFactory(classname = "RunConfig.InsertLumiSection") for lumi in [1, 2, 3, 4]: insertLumiDAO.execute(binds = { 'RUN' : 1, 'LUMI' : lumi }, transaction = False) insertStreamDAO = daoFactory(classname = "RunConfig.InsertStream") insertStreamDAO.execute(binds = { 'STREAM' : "A" }, transaction = False) insertStreamFilesetDAO = daoFactory(classname = "RunConfig.InsertStreamFileset") insertStreamFilesetDAO.execute(1, "A", "TestFileset1") self.fileset1 = Fileset(name = "TestFileset1") self.fileset1.load() workflow1 = Workflow(spec = "spec.xml", owner = "hufnagel", name = "TestWorkflow1", task="Test") workflow1.create() self.subscription1 = Subscription(fileset = self.fileset1, workflow = workflow1, split_algo = "Repack", type = "Repack") self.subscription1.create() # keep for later self.insertClosedLumiDAO = daoFactory(classname = "RunLumiCloseout.InsertClosedLumi") self.currentTime = int(time.time()) # default split parameters self.splitArgs = {} self.splitArgs['maxSizeSingleLumi'] = 20*1024*1024*1024 self.splitArgs['maxSizeMultiLumi'] = 10*1024*1024*1024 self.splitArgs['maxInputEvents'] = 500000 self.splitArgs['maxInputFiles'] = 1000 self.splitArgs['maxLatency'] = 50000 return def tearDown(self): """ _tearDown_ """ self.testInit.clearDatabase() return def getNumActiveSplitLumis(self): """ _getNumActiveSplitLumis_ helper function that counts the number of active split lumis """ myThread = threading.currentThread() results = myThread.dbi.processData("""SELECT COUNT(*) FROM lumi_section_split_active """, transaction = False)[0].fetchall() return results[0][0] def test00(self): """ _test00_ Test that the job name prefix feature works Test multi lumi size threshold Multi lumi input """ mySplitArgs = self.splitArgs.copy() for lumi in [1, 2, 3, 4]: filecount = 2 for i in range(filecount): newFile = File(makeUUID(), size = 1000, events = 100) newFile.addRun(Run(1, *[lumi])) newFile.setLocation("SomePNN", immediateSave = False) newFile.create() self.fileset1.addFile(newFile) self.fileset1.commit() jobFactory = self.splitterFactory(package = "WMCore.WMBS", subscription = self.subscription1) mySplitArgs['maxSizeMultiLumi'] = self.splitArgs['maxSizeMultiLumi'] jobGroups = jobFactory(**mySplitArgs) self.assertEqual(len(jobGroups), 0, "ERROR: JobFactory should have returned no JobGroup") mySplitArgs['maxSizeMultiLumi'] = 5000 jobGroups = jobFactory(**mySplitArgs) self.assertEqual(len(jobGroups), 1, "ERROR: JobFactory didn't return one JobGroup") self.assertEqual(len(jobGroups[0].jobs), 1, "ERROR: JobFactory didn't create a single job") job = jobGroups[0].jobs[0] self.assertTrue(job['name'].startswith("Repack-"), "ERROR: Job has wrong name") self.assertEqual(len(job.getFiles()), 4, "ERROR: Job does not process 4 files") self.fileset1.markOpen(False) jobGroups = jobFactory(**mySplitArgs) self.assertEqual(len(jobGroups), 1, "ERROR: JobFactory didn't return one JobGroup") self.assertEqual(len(jobGroups[0].jobs), 1, "ERROR: JobFactory didn't create a single job") job = jobGroups[0].jobs[0] self.assertTrue(job['name'].startswith("Repack-"), "ERROR: Job has wrong name") self.assertEqual(len(job.getFiles()), 4, "ERROR: Job does not process 4 files") self.assertEqual(self.getNumActiveSplitLumis(), 0, "ERROR: Split lumis were created") return def test01(self): """ _test01_ Test multi lumi event threshold Multi lumi input """ mySplitArgs = self.splitArgs.copy() insertClosedLumiBinds = [] for lumi in [1, 2, 3, 4]: filecount = 2 for i in range(filecount): newFile = File(makeUUID(), size = 1000, events = 100) newFile.addRun(Run(1, *[lumi])) newFile.setLocation("SomePNN", immediateSave = False) newFile.create() self.fileset1.addFile(newFile) insertClosedLumiBinds.append( { 'RUN' : 1, 'LUMI' : lumi, 'STREAM' : "A", 'FILECOUNT' : filecount, 'INSERT_TIME' : self.currentTime, 'CLOSE_TIME' : self.currentTime } ) self.fileset1.commit() jobFactory = self.splitterFactory(package = "WMCore.WMBS", subscription = self.subscription1) self.insertClosedLumiDAO.execute(binds = insertClosedLumiBinds, transaction = False) jobGroups = jobFactory(**mySplitArgs) self.assertEqual(len(jobGroups), 0, "ERROR: JobFactory should have returned no JobGroup") mySplitArgs['maxInputEvents'] = 500 jobGroups = jobFactory(**mySplitArgs) self.assertEqual(len(jobGroups), 1, "ERROR: JobFactory didn't return one JobGroup") self.assertEqual(len(jobGroups[0].jobs), 1, "ERROR: JobFactory didn't create a single job") job = jobGroups[0].jobs[0] self.assertEqual(len(job.getFiles()), 4, "ERROR: Job does not process 4 files") self.fileset1.markOpen(False) jobGroups = jobFactory(**mySplitArgs) self.assertEqual(len(jobGroups), 1, "ERROR: JobFactory didn't return one JobGroup") self.assertEqual(len(jobGroups[0].jobs), 1, "ERROR: JobFactory didn't create a single job") job = jobGroups[0].jobs[0] self.assertEqual(len(job.getFiles()), 4, "ERROR: Job does not process 4 files") self.assertEqual(self.getNumActiveSplitLumis(), 0, "ERROR: Split lumis were created") return def test02(self): """ _test02_ Test single lumi size threshold Single lumi input """ mySplitArgs = self.splitArgs.copy() insertClosedLumiBinds = [] for lumi in [1]: filecount = 8 for i in range(filecount): newFile = File(makeUUID(), size = 1000, events = 100) newFile.addRun(Run(1, *[lumi])) newFile.setLocation("SomePNN", immediateSave = False) newFile.create() self.fileset1.addFile(newFile) insertClosedLumiBinds.append( { 'RUN' : 1, 'LUMI' : lumi, 'STREAM' : "A", 'FILECOUNT' : filecount, 'INSERT_TIME' : self.currentTime, 'CLOSE_TIME' : self.currentTime } ) self.fileset1.commit() jobFactory = self.splitterFactory(package = "WMCore.WMBS", subscription = self.subscription1) self.insertClosedLumiDAO.execute(binds = insertClosedLumiBinds, transaction = False) jobGroups = jobFactory(**mySplitArgs) self.assertEqual(len(jobGroups), 0, "ERROR: JobFactory should have returned no JobGroup") mySplitArgs['maxSizeSingleLumi'] = 6500 jobGroups = jobFactory(**mySplitArgs) self.assertEqual(len(jobGroups), 1, "ERROR: JobFactory didn't return one JobGroup") self.assertEqual(len(jobGroups[0].jobs), 2, "ERROR: JobFactory didn't create two jobs") job = jobGroups[0].jobs[0] self.assertEqual(len(job.getFiles()), 6, "ERROR: Job does not process 6 files") job = jobGroups[0].jobs[1] self.assertEqual(len(job.getFiles()), 2, "ERROR: Job does not process 2 files") self.assertEqual(self.getNumActiveSplitLumis(), 1, "ERROR: Split lumis were not created") return def test03(self): """ _test03_ Test single lumi event threshold Single lumi input """ mySplitArgs = self.splitArgs.copy() insertClosedLumiBinds = [] for lumi in [1]: filecount = 8 for i in range(filecount): newFile = File(makeUUID(), size = 1000, events = 100) newFile.addRun(Run(1, *[lumi])) newFile.setLocation("SomePNN", immediateSave = False) newFile.create() self.fileset1.addFile(newFile) insertClosedLumiBinds.append( { 'RUN' : 1, 'LUMI' : lumi, 'STREAM' : "A", 'FILECOUNT' : filecount, 'INSERT_TIME' : self.currentTime, 'CLOSE_TIME' : self.currentTime } ) self.fileset1.commit() jobFactory = self.splitterFactory(package = "WMCore.WMBS", subscription = self.subscription1) self.insertClosedLumiDAO.execute(binds = insertClosedLumiBinds, transaction = False) jobGroups = jobFactory(**mySplitArgs) self.assertEqual(len(jobGroups), 0, "ERROR: JobFactory should have returned no JobGroup") mySplitArgs['maxInputEvents'] = 650 jobGroups = jobFactory(**mySplitArgs) self.assertEqual(len(jobGroups), 1, "ERROR: JobFactory didn't return one JobGroup") self.assertEqual(len(jobGroups[0].jobs), 2, "ERROR: JobFactory didn't create two jobs") job = jobGroups[0].jobs[0] self.assertEqual(len(job.getFiles()), 6, "ERROR: Job does not process 6 files") job = jobGroups[0].jobs[1] self.assertEqual(len(job.getFiles()), 2, "ERROR: Job does not process 2 files") self.assertEqual(self.getNumActiveSplitLumis(), 1, "ERROR: Split lumis were not created") return def test04(self): """ _test04_ Test streamer count threshold (only multi lumi) Multi lumi input """ mySplitArgs = self.splitArgs.copy() insertClosedLumiBinds = [] for lumi in [1, 2, 3, 4]: filecount = 2 for i in range(filecount): newFile = File(makeUUID(), size = 1000, events = 100) newFile.addRun(Run(1, *[lumi])) newFile.setLocation("SomePNN", immediateSave = False) newFile.create() self.fileset1.addFile(newFile) insertClosedLumiBinds.append( { 'RUN' : 1, 'LUMI' : lumi, 'STREAM' : "A", 'FILECOUNT' : filecount, 'INSERT_TIME' : self.currentTime, 'CLOSE_TIME' : self.currentTime } ) self.fileset1.commit() jobFactory = self.splitterFactory(package = "WMCore.WMBS", subscription = self.subscription1) self.insertClosedLumiDAO.execute(binds = insertClosedLumiBinds, transaction = False) jobGroups = jobFactory(**mySplitArgs) self.assertEqual(len(jobGroups), 0, "ERROR: JobFactory should have returned no JobGroup") mySplitArgs['maxInputFiles'] = 5 jobGroups = jobFactory(**mySplitArgs) self.assertEqual(len(jobGroups), 1, "ERROR: JobFactory didn't return one JobGroup") self.assertEqual(len(jobGroups[0].jobs), 1, "ERROR: JobFactory didn't create a single job") job = jobGroups[0].jobs[0] self.assertEqual(len(job.getFiles()), 4, "ERROR: Job does not process 4 files") self.fileset1.markOpen(False) jobGroups = jobFactory(**mySplitArgs) self.assertEqual(len(jobGroups), 1, "ERROR: JobFactory didn't return one JobGroup") self.assertEqual(len(jobGroups[0].jobs), 1, "ERROR: JobFactory didn't create a single job") job = jobGroups[0].jobs[0] self.assertEqual(len(job.getFiles()), 4, "ERROR: Job does not process 4 files") self.assertEqual(self.getNumActiveSplitLumis(), 0, "ERROR: Split lumis were created") return def test05(self): """ _test05_ Test repacking of multiple lumis with holes in the lumi sequence Multi lumi input """ mySplitArgs = self.splitArgs.copy() insertClosedLumiBinds = [] for lumi in [1, 2, 4]: filecount = 2 for i in range(filecount): newFile = File(makeUUID(), size = 1000, events = 100) newFile.addRun(Run(1, *[lumi])) newFile.setLocation("SomePNN", immediateSave = False) newFile.create() self.fileset1.addFile(newFile) insertClosedLumiBinds.append( { 'RUN' : 1, 'LUMI' : lumi, 'STREAM' : "A", 'FILECOUNT' : filecount, 'INSERT_TIME' : self.currentTime, 'CLOSE_TIME' : self.currentTime } ) self.fileset1.commit() jobFactory = self.splitterFactory(package = "WMCore.WMBS", subscription = self.subscription1) self.insertClosedLumiDAO.execute(binds = insertClosedLumiBinds, transaction = False) mySplitArgs['maxInputFiles'] = 5 jobGroups = jobFactory(**mySplitArgs) self.assertEqual(len(jobGroups), 0, "ERROR: JobFactory should have returned no JobGroup") self.insertClosedLumiDAO.execute(binds = { 'RUN' : 1, 'LUMI' : 3, 'STREAM' : "A", 'FILECOUNT' : 0, 'INSERT_TIME' : self.currentTime, 'CLOSE_TIME' : self.currentTime }, transaction = False) jobGroups = jobFactory(**mySplitArgs) self.assertEqual(len(jobGroups), 1, "ERROR: JobFactory didn't return one JobGroup") self.assertEqual(len(jobGroups[0].jobs), 1, "ERROR: JobFactory didn't create one job") self.assertEqual(len(jobGroups[0].jobs[0].getFiles()), 4, "ERROR: first job does not process 4 files") return def test06(self): """ _test06_ Test repacking of 3 lumis 2 small lumis (single job), followed by a big one (multiple jobs) files for lumi 1 and 2 are below multi-lumi thresholds files for lumi 3 are above single-lumi threshold """ mySplitArgs = self.splitArgs.copy() insertClosedLumiBinds = [] for lumi in [1, 2, 3]: filecount = 2 for i in range(filecount): if lumi == 3: nevents = 500 else: nevents = 100 newFile = File(makeUUID(), size = 1000, events = nevents) newFile.addRun(Run(1, *[lumi])) newFile.setLocation("SomePNN", immediateSave = False) newFile.create() self.fileset1.addFile(newFile) insertClosedLumiBinds.append( { 'RUN' : 1, 'LUMI' : lumi, 'STREAM' : "A", 'FILECOUNT' : filecount, 'INSERT_TIME' : self.currentTime, 'CLOSE_TIME' : self.currentTime } ) self.fileset1.commit() jobFactory = self.splitterFactory(package = "WMCore.WMBS", subscription = self.subscription1) self.insertClosedLumiDAO.execute(binds = insertClosedLumiBinds, transaction = False) mySplitArgs['maxInputEvents'] = 900 jobGroups = jobFactory(**mySplitArgs) self.assertEqual(len(jobGroups), 1, "ERROR: JobFactory didn't return one JobGroup") self.assertEqual(len(jobGroups[0].jobs), 3, "ERROR: JobFactory didn't create three jobs") self.assertEqual(len(jobGroups[0].jobs[0].getFiles()), 4, "ERROR: first job does not process 4 files") self.assertEqual(len(jobGroups[0].jobs[1].getFiles()), 1, "ERROR: second job does not process 1 file") self.assertEqual(len(jobGroups[0].jobs[2].getFiles()), 1, "ERROR: third job does not process 1 file") return if __name__ == '__main__': unittest.main()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 37811, 198, 62, 6207, 441, 62, 83, 62, 198, 198, 6207, 441, 1693, 26021, 1332, 198, 198, 37811, 198, 198, 11748, 555, 715, 395, 198, 11748, 4704, 278, 198, 11748, 18931, 198, 11748, 640, 198, 198, 6738, 370, 9655, 382, 13, 22117, 4462, 13, 8979, 1330, 9220, 198, 6738, 370, 9655, 382, 13, 22117, 4462, 13, 25876, 316, 1330, 13283, 316, 198, 6738, 370, 9655, 382, 13, 22117, 4462, 13, 7004, 33584, 1330, 3834, 33584, 198, 6738, 370, 9655, 382, 13, 22117, 4462, 13, 12468, 11125, 1330, 5521, 11125, 198, 6738, 370, 9655, 382, 13, 6601, 44909, 82, 13, 10987, 1330, 5660, 198, 198, 6738, 370, 9655, 382, 13, 5631, 19238, 9548, 1330, 17051, 19238, 9548, 198, 6738, 370, 9655, 382, 13, 33308, 26568, 2535, 13, 26568, 1967, 22810, 1330, 13341, 1967, 22810, 198, 6738, 370, 9655, 382, 13, 31007, 13, 52, 27586, 25835, 1330, 787, 52, 27586, 198, 6738, 30376, 35013, 13, 14402, 31768, 1330, 6208, 31768, 628, 198, 4871, 1432, 441, 14402, 7, 403, 715, 395, 13, 14402, 20448, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 4808, 6207, 441, 14402, 62, 628, 220, 220, 220, 6208, 329, 1432, 441, 1693, 4328, 1967, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 825, 900, 4933, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 2617, 4933, 62, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1330, 30376, 35013, 13, 14402, 31768, 198, 220, 220, 220, 220, 220, 220, 220, 30376, 35013, 13, 14402, 31768, 13, 33678, 38105, 3260, 6109, 14402, 7203, 40, 1101, 32231, 4943, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9288, 31768, 796, 6208, 31768, 7, 834, 7753, 834, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9288, 31768, 13, 2617, 11187, 2667, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9288, 31768, 13, 2617, 38105, 32048, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9288, 31768, 13, 2617, 27054, 2611, 7, 23144, 5841, 5028, 796, 14631, 22117, 21950, 13, 35, 4462, 18, 28632, 1600, 366, 51, 15, 13, 22117, 4462, 8973, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 22018, 1967, 22810, 796, 13341, 1967, 22810, 7, 26495, 796, 366, 51, 15, 13, 33308, 26568, 2535, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 616, 16818, 796, 4704, 278, 13, 14421, 16818, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 288, 5488, 22810, 796, 17051, 19238, 9548, 7, 26495, 796, 366, 51, 15, 13, 22117, 4462, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 796, 18931, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20613, 39994, 796, 616, 16818, 13, 67, 8482, 8, 628, 220, 220, 220, 220, 220, 220, 220, 616, 16818, 13, 67, 8482, 13, 14681, 6601, 7203, 15931, 20913, 17395, 39319, 266, 76, 1443, 62, 24886, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 312, 11, 2524, 62, 3672, 11, 1181, 11, 1181, 62, 2435, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26173, 35409, 357, 16, 11, 705, 4366, 29123, 3256, 352, 11, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 8611, 796, 10352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 616, 16818, 13, 67, 8482, 13, 14681, 6601, 7203, 15931, 20913, 17395, 39319, 266, 76, 1443, 62, 21999, 5907, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 312, 11, 279, 20471, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26173, 35409, 357, 17, 11, 705, 4366, 47, 6144, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 8611, 796, 10352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 616, 16818, 13, 67, 8482, 13, 14681, 6601, 7203, 15931, 20913, 17395, 39319, 266, 76, 1443, 62, 24886, 62, 21999, 5907, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 24886, 11, 279, 20471, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26173, 35409, 357, 16, 11, 362, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 8611, 796, 10352, 8, 628, 220, 220, 220, 220, 220, 220, 220, 7550, 10987, 5631, 46, 796, 288, 5488, 22810, 7, 4871, 3672, 796, 366, 10987, 16934, 13, 44402, 10987, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 7550, 10987, 5631, 46, 13, 41049, 7, 21653, 82, 796, 1391, 705, 49, 4944, 6, 1058, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 6581, 51, 20373, 6, 1058, 366, 11246, 6581, 51, 9218, 1, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8611, 796, 10352, 8, 628, 220, 220, 220, 220, 220, 220, 220, 7550, 43, 12994, 5631, 46, 796, 288, 5488, 22810, 7, 4871, 3672, 796, 366, 10987, 16934, 13, 44402, 43, 12994, 16375, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 329, 300, 12994, 287, 685, 16, 11, 362, 11, 513, 11, 604, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7550, 43, 12994, 5631, 46, 13, 41049, 7, 21653, 82, 796, 1391, 705, 49, 4944, 6, 1058, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 43, 5883, 40, 6, 1058, 300, 12994, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8611, 796, 10352, 8, 628, 220, 220, 220, 220, 220, 220, 220, 7550, 12124, 5631, 46, 796, 288, 5488, 22810, 7, 4871, 3672, 796, 366, 10987, 16934, 13, 44402, 12124, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 7550, 12124, 5631, 46, 13, 41049, 7, 21653, 82, 796, 1391, 705, 2257, 32235, 6, 1058, 366, 32, 1, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8611, 796, 10352, 8, 628, 220, 220, 220, 220, 220, 220, 220, 7550, 12124, 25876, 316, 5631, 46, 796, 288, 5488, 22810, 7, 4871, 3672, 796, 366, 10987, 16934, 13, 44402, 12124, 25876, 316, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 7550, 12124, 25876, 316, 5631, 46, 13, 41049, 7, 16, 11, 366, 32, 1600, 366, 14402, 25876, 316, 16, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 16624, 316, 16, 796, 13283, 316, 7, 3672, 796, 366, 14402, 25876, 316, 16, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 16624, 316, 16, 13, 2220, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 30798, 16, 796, 5521, 11125, 7, 16684, 796, 366, 16684, 13, 19875, 1600, 4870, 796, 366, 71, 3046, 77, 363, 417, 1600, 1438, 796, 366, 14402, 12468, 11125, 16, 1600, 4876, 2625, 14402, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 30798, 16, 13, 17953, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7266, 33584, 16, 220, 796, 3834, 33584, 7, 16624, 316, 796, 2116, 13, 16624, 316, 16, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30798, 796, 30798, 16, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6626, 62, 282, 2188, 796, 366, 6207, 441, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 796, 366, 6207, 441, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7266, 33584, 16, 13, 17953, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 1394, 329, 1568, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 28463, 2601, 1335, 43, 12994, 5631, 46, 796, 288, 5488, 22810, 7, 4871, 3672, 796, 366, 10987, 43, 12994, 26125, 448, 13, 44402, 2601, 1335, 43, 12994, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 14421, 7575, 796, 493, 7, 2435, 13, 2435, 28955, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 4277, 6626, 10007, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 35312, 42035, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 35312, 42035, 17816, 9806, 10699, 28008, 43, 12994, 20520, 796, 1160, 9, 35500, 9, 35500, 9, 35500, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 35312, 42035, 17816, 9806, 10699, 29800, 43, 12994, 20520, 796, 838, 9, 35500, 9, 35500, 9, 35500, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 35312, 42035, 17816, 9806, 20560, 37103, 20520, 796, 5323, 830, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 35312, 42035, 17816, 9806, 20560, 25876, 20520, 796, 8576, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 35312, 42035, 17816, 9806, 24220, 1387, 20520, 796, 642, 2388, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 825, 11626, 8048, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 83, 451, 8048, 62, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9288, 31768, 13, 20063, 38105, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 825, 651, 33111, 13739, 41205, 43, 388, 271, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 1136, 33111, 13739, 41205, 43, 388, 271, 62, 628, 220, 220, 220, 220, 220, 220, 220, 31904, 2163, 326, 9853, 262, 1271, 286, 4075, 6626, 46390, 271, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 616, 16818, 796, 4704, 278, 13, 14421, 16818, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 2482, 796, 616, 16818, 13, 67, 8482, 13, 14681, 6601, 7203, 15931, 46506, 327, 28270, 7, 28104, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16034, 300, 12994, 62, 5458, 62, 35312, 62, 5275, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 8611, 796, 10352, 38381, 15, 4083, 69, 7569, 439, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 2482, 58, 15, 7131, 15, 60, 628, 220, 220, 220, 825, 1332, 405, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 9288, 405, 62, 628, 220, 220, 220, 220, 220, 220, 220, 6208, 326, 262, 1693, 1438, 21231, 3895, 2499, 198, 220, 220, 220, 220, 220, 220, 220, 6208, 5021, 300, 12994, 2546, 11387, 198, 220, 220, 220, 220, 220, 220, 220, 15237, 300, 12994, 5128, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 616, 41205, 42035, 796, 2116, 13, 35312, 42035, 13, 30073, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 329, 300, 12994, 287, 685, 16, 11, 362, 11, 513, 11, 604, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2393, 9127, 796, 362, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 7753, 9127, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 796, 9220, 7, 15883, 52, 27586, 22784, 2546, 796, 8576, 11, 2995, 796, 1802, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 13, 2860, 10987, 7, 10987, 7, 16, 11, 1635, 58, 75, 12994, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 13, 2617, 14749, 7203, 4366, 47, 6144, 1600, 7103, 16928, 796, 10352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 13, 17953, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 16624, 316, 16, 13, 2860, 8979, 7, 3605, 8979, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 16624, 316, 16, 13, 41509, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1693, 22810, 796, 2116, 13, 22018, 1967, 22810, 7, 26495, 796, 366, 54, 9655, 382, 13, 22117, 4462, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14569, 796, 2116, 13, 7266, 33584, 16, 8, 628, 220, 220, 220, 220, 220, 220, 220, 616, 41205, 42035, 17816, 9806, 10699, 29800, 43, 12994, 20520, 796, 2116, 13, 35312, 42035, 17816, 9806, 10699, 29800, 43, 12994, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 1693, 38, 14459, 796, 1693, 22810, 7, 1174, 1820, 41205, 42035, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 828, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 815, 423, 4504, 645, 15768, 13247, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 616, 41205, 42035, 17816, 9806, 10699, 29800, 43, 12994, 20520, 796, 23336, 198, 220, 220, 220, 220, 220, 220, 220, 1693, 38, 14459, 796, 1693, 22810, 7, 1174, 1820, 41205, 42035, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 828, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 1422, 470, 1441, 530, 15768, 13247, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 58, 15, 4083, 43863, 828, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 1422, 470, 2251, 257, 2060, 1693, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 1693, 796, 1693, 38, 14459, 58, 15, 4083, 43863, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 17821, 7, 21858, 17816, 3672, 6, 4083, 9688, 2032, 342, 7203, 6207, 441, 12, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 468, 2642, 1438, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 13, 1136, 25876, 3419, 828, 604, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 857, 407, 1429, 604, 3696, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 16624, 316, 16, 13, 4102, 11505, 7, 25101, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1693, 38, 14459, 796, 1693, 22810, 7, 1174, 1820, 41205, 42035, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 828, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 1422, 470, 1441, 530, 15768, 13247, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 58, 15, 4083, 43863, 828, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 1422, 470, 2251, 257, 2060, 1693, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 1693, 796, 1693, 38, 14459, 58, 15, 4083, 43863, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 17821, 7, 21858, 17816, 3672, 6, 4083, 9688, 2032, 342, 7203, 6207, 441, 12, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 468, 2642, 1438, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 13, 1136, 25876, 3419, 828, 604, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 857, 407, 1429, 604, 3696, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 944, 13, 1136, 33111, 13739, 41205, 43, 388, 271, 22784, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 27758, 46390, 271, 547, 2727, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 825, 1332, 486, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 9288, 486, 62, 628, 220, 220, 220, 220, 220, 220, 220, 6208, 5021, 300, 12994, 1785, 11387, 198, 220, 220, 220, 220, 220, 220, 220, 15237, 300, 12994, 5128, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 616, 41205, 42035, 796, 2116, 13, 35312, 42035, 13, 30073, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 7550, 2601, 1335, 43, 12994, 36180, 82, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 329, 300, 12994, 287, 685, 16, 11, 362, 11, 513, 11, 604, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2393, 9127, 796, 362, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 7753, 9127, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 796, 9220, 7, 15883, 52, 27586, 22784, 2546, 796, 8576, 11, 2995, 796, 1802, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 13, 2860, 10987, 7, 10987, 7, 16, 11, 1635, 58, 75, 12994, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 13, 2617, 14749, 7203, 4366, 47, 6144, 1600, 7103, 16928, 796, 10352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 13, 17953, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 16624, 316, 16, 13, 2860, 8979, 7, 3605, 8979, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7550, 2601, 1335, 43, 12994, 36180, 82, 13, 33295, 7, 1391, 705, 49, 4944, 6, 1058, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 43, 5883, 40, 6, 1058, 300, 12994, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 2257, 32235, 6, 1058, 366, 32, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 25664, 34, 28270, 6, 1058, 2393, 9127, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 20913, 17395, 62, 34694, 6, 1058, 2116, 13, 14421, 7575, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 32737, 62, 34694, 6, 1058, 2116, 13, 14421, 7575, 1782, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 16624, 316, 16, 13, 41509, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1693, 22810, 796, 2116, 13, 22018, 1967, 22810, 7, 26495, 796, 366, 54, 9655, 382, 13, 22117, 4462, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14569, 796, 2116, 13, 7266, 33584, 16, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 28463, 2601, 1335, 43, 12994, 5631, 46, 13, 41049, 7, 21653, 82, 796, 7550, 2601, 1335, 43, 12994, 36180, 82, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8611, 796, 10352, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1693, 38, 14459, 796, 1693, 22810, 7, 1174, 1820, 41205, 42035, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 828, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 815, 423, 4504, 645, 15768, 13247, 4943, 628, 197, 1820, 41205, 42035, 17816, 9806, 20560, 37103, 20520, 796, 5323, 198, 220, 220, 220, 220, 220, 220, 220, 1693, 38, 14459, 796, 1693, 22810, 7, 1174, 1820, 41205, 42035, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 828, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 1422, 470, 1441, 530, 15768, 13247, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 58, 15, 4083, 43863, 828, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 1422, 470, 2251, 257, 2060, 1693, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 1693, 796, 1693, 38, 14459, 58, 15, 4083, 43863, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 13, 1136, 25876, 3419, 828, 604, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 857, 407, 1429, 604, 3696, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 16624, 316, 16, 13, 4102, 11505, 7, 25101, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1693, 38, 14459, 796, 1693, 22810, 7, 1174, 1820, 41205, 42035, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 828, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 1422, 470, 1441, 530, 15768, 13247, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 58, 15, 4083, 43863, 828, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 1422, 470, 2251, 257, 2060, 1693, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 1693, 796, 1693, 38, 14459, 58, 15, 4083, 43863, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 13, 1136, 25876, 3419, 828, 604, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 857, 407, 1429, 604, 3696, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 944, 13, 1136, 33111, 13739, 41205, 43, 388, 271, 22784, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 27758, 46390, 271, 547, 2727, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 825, 1332, 2999, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 9288, 2999, 62, 628, 220, 220, 220, 220, 220, 220, 220, 6208, 2060, 300, 12994, 2546, 11387, 198, 220, 220, 220, 220, 220, 220, 220, 14206, 300, 12994, 5128, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 616, 41205, 42035, 796, 2116, 13, 35312, 42035, 13, 30073, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 7550, 2601, 1335, 43, 12994, 36180, 82, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 329, 300, 12994, 287, 685, 16, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2393, 9127, 796, 807, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 7753, 9127, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 796, 9220, 7, 15883, 52, 27586, 22784, 2546, 796, 8576, 11, 2995, 796, 1802, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 13, 2860, 10987, 7, 10987, 7, 16, 11, 1635, 58, 75, 12994, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 13, 2617, 14749, 7203, 4366, 47, 6144, 1600, 7103, 16928, 796, 10352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 13, 17953, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 16624, 316, 16, 13, 2860, 8979, 7, 3605, 8979, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7550, 2601, 1335, 43, 12994, 36180, 82, 13, 33295, 7, 1391, 705, 49, 4944, 6, 1058, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 43, 5883, 40, 6, 1058, 300, 12994, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 2257, 32235, 6, 1058, 366, 32, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 25664, 34, 28270, 6, 1058, 2393, 9127, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 20913, 17395, 62, 34694, 6, 1058, 2116, 13, 14421, 7575, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 32737, 62, 34694, 6, 1058, 2116, 13, 14421, 7575, 1782, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 16624, 316, 16, 13, 41509, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1693, 22810, 796, 2116, 13, 22018, 1967, 22810, 7, 26495, 796, 366, 54, 9655, 382, 13, 22117, 4462, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14569, 796, 2116, 13, 7266, 33584, 16, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 28463, 2601, 1335, 43, 12994, 5631, 46, 13, 41049, 7, 21653, 82, 796, 7550, 2601, 1335, 43, 12994, 36180, 82, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8611, 796, 10352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1693, 38, 14459, 796, 1693, 22810, 7, 1174, 1820, 41205, 42035, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 828, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 815, 423, 4504, 645, 15768, 13247, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 616, 41205, 42035, 17816, 9806, 10699, 28008, 43, 12994, 20520, 796, 718, 4059, 198, 220, 220, 220, 220, 220, 220, 220, 1693, 38, 14459, 796, 1693, 22810, 7, 1174, 1820, 41205, 42035, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 828, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 1422, 470, 1441, 530, 15768, 13247, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 58, 15, 4083, 43863, 828, 362, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 1422, 470, 2251, 734, 3946, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 1693, 796, 1693, 38, 14459, 58, 15, 4083, 43863, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 13, 1136, 25876, 3419, 828, 718, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 857, 407, 1429, 718, 3696, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 1693, 796, 1693, 38, 14459, 58, 15, 4083, 43863, 58, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 13, 1136, 25876, 3419, 828, 362, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 857, 407, 1429, 362, 3696, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 944, 13, 1136, 33111, 13739, 41205, 43, 388, 271, 22784, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 27758, 46390, 271, 547, 407, 2727, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 825, 1332, 3070, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 9288, 3070, 62, 628, 220, 220, 220, 220, 220, 220, 220, 6208, 2060, 300, 12994, 1785, 11387, 198, 220, 220, 220, 220, 220, 220, 220, 14206, 300, 12994, 5128, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 616, 41205, 42035, 796, 2116, 13, 35312, 42035, 13, 30073, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 7550, 2601, 1335, 43, 12994, 36180, 82, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 329, 300, 12994, 287, 685, 16, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2393, 9127, 796, 807, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 7753, 9127, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 796, 9220, 7, 15883, 52, 27586, 22784, 2546, 796, 8576, 11, 2995, 796, 1802, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 13, 2860, 10987, 7, 10987, 7, 16, 11, 1635, 58, 75, 12994, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 13, 2617, 14749, 7203, 4366, 47, 6144, 1600, 7103, 16928, 796, 10352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 13, 17953, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 16624, 316, 16, 13, 2860, 8979, 7, 3605, 8979, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7550, 2601, 1335, 43, 12994, 36180, 82, 13, 33295, 7, 1391, 705, 49, 4944, 6, 1058, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 43, 5883, 40, 6, 1058, 300, 12994, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 2257, 32235, 6, 1058, 366, 32, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 25664, 34, 28270, 6, 1058, 2393, 9127, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 20913, 17395, 62, 34694, 6, 1058, 2116, 13, 14421, 7575, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 32737, 62, 34694, 6, 1058, 2116, 13, 14421, 7575, 1782, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 16624, 316, 16, 13, 41509, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1693, 22810, 796, 2116, 13, 22018, 1967, 22810, 7, 26495, 796, 366, 54, 9655, 382, 13, 22117, 4462, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14569, 796, 2116, 13, 7266, 33584, 16, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 28463, 2601, 1335, 43, 12994, 5631, 46, 13, 41049, 7, 21653, 82, 796, 7550, 2601, 1335, 43, 12994, 36180, 82, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8611, 796, 10352, 8, 628, 197, 21858, 38, 14459, 796, 1693, 22810, 7, 1174, 1820, 41205, 42035, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 828, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 815, 423, 4504, 645, 15768, 13247, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 616, 41205, 42035, 17816, 9806, 20560, 37103, 20520, 796, 22626, 198, 220, 220, 220, 220, 220, 220, 220, 1693, 38, 14459, 796, 1693, 22810, 7, 1174, 1820, 41205, 42035, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 828, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 1422, 470, 1441, 530, 15768, 13247, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 58, 15, 4083, 43863, 828, 362, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 1422, 470, 2251, 734, 3946, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 1693, 796, 1693, 38, 14459, 58, 15, 4083, 43863, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 13, 1136, 25876, 3419, 828, 718, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 857, 407, 1429, 718, 3696, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 1693, 796, 1693, 38, 14459, 58, 15, 4083, 43863, 58, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 13, 1136, 25876, 3419, 828, 362, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 857, 407, 1429, 362, 3696, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 944, 13, 1136, 33111, 13739, 41205, 43, 388, 271, 22784, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 27758, 46390, 271, 547, 407, 2727, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 825, 1332, 3023, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 9288, 3023, 62, 628, 220, 220, 220, 220, 220, 220, 220, 6208, 4269, 263, 954, 11387, 357, 8807, 5021, 300, 12994, 8, 198, 220, 220, 220, 220, 220, 220, 220, 15237, 300, 12994, 5128, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 616, 41205, 42035, 796, 2116, 13, 35312, 42035, 13, 30073, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 7550, 2601, 1335, 43, 12994, 36180, 82, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 329, 300, 12994, 287, 685, 16, 11, 362, 11, 513, 11, 604, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2393, 9127, 796, 362, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 7753, 9127, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 796, 9220, 7, 15883, 52, 27586, 22784, 2546, 796, 8576, 11, 2995, 796, 1802, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 13, 2860, 10987, 7, 10987, 7, 16, 11, 1635, 58, 75, 12994, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 13, 2617, 14749, 7203, 4366, 47, 6144, 1600, 7103, 16928, 796, 10352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 13, 17953, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 16624, 316, 16, 13, 2860, 8979, 7, 3605, 8979, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7550, 2601, 1335, 43, 12994, 36180, 82, 13, 33295, 7, 1391, 705, 49, 4944, 6, 1058, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 43, 5883, 40, 6, 1058, 300, 12994, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 2257, 32235, 6, 1058, 366, 32, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 25664, 34, 28270, 6, 1058, 2393, 9127, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 20913, 17395, 62, 34694, 6, 1058, 2116, 13, 14421, 7575, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 32737, 62, 34694, 6, 1058, 2116, 13, 14421, 7575, 1782, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 16624, 316, 16, 13, 41509, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1693, 22810, 796, 2116, 13, 22018, 1967, 22810, 7, 26495, 796, 366, 54, 9655, 382, 13, 22117, 4462, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14569, 796, 2116, 13, 7266, 33584, 16, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 28463, 2601, 1335, 43, 12994, 5631, 46, 13, 41049, 7, 21653, 82, 796, 7550, 2601, 1335, 43, 12994, 36180, 82, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8611, 796, 10352, 8, 628, 197, 21858, 38, 14459, 796, 1693, 22810, 7, 1174, 1820, 41205, 42035, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 828, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 815, 423, 4504, 645, 15768, 13247, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 616, 41205, 42035, 17816, 9806, 20560, 25876, 20520, 796, 642, 198, 220, 220, 220, 220, 220, 220, 220, 1693, 38, 14459, 796, 1693, 22810, 7, 1174, 1820, 41205, 42035, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 828, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 1422, 470, 1441, 530, 15768, 13247, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 58, 15, 4083, 43863, 828, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 1422, 470, 2251, 257, 2060, 1693, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 1693, 796, 1693, 38, 14459, 58, 15, 4083, 43863, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 13, 1136, 25876, 3419, 828, 604, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 857, 407, 1429, 604, 3696, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 16624, 316, 16, 13, 4102, 11505, 7, 25101, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1693, 38, 14459, 796, 1693, 22810, 7, 1174, 1820, 41205, 42035, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 828, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 1422, 470, 1441, 530, 15768, 13247, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 58, 15, 4083, 43863, 828, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 1422, 470, 2251, 257, 2060, 1693, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 1693, 796, 1693, 38, 14459, 58, 15, 4083, 43863, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 13, 1136, 25876, 3419, 828, 604, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 857, 407, 1429, 604, 3696, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 944, 13, 1136, 33111, 13739, 41205, 43, 388, 271, 22784, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 27758, 46390, 271, 547, 2727, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 825, 1332, 2713, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 9288, 2713, 62, 628, 220, 220, 220, 220, 220, 220, 220, 6208, 1128, 5430, 286, 3294, 46390, 271, 351, 10421, 287, 262, 300, 12994, 8379, 198, 220, 220, 220, 220, 220, 220, 220, 15237, 300, 12994, 5128, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 616, 41205, 42035, 796, 2116, 13, 35312, 42035, 13, 30073, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 7550, 2601, 1335, 43, 12994, 36180, 82, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 329, 300, 12994, 287, 685, 16, 11, 362, 11, 604, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2393, 9127, 796, 362, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 7753, 9127, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 796, 9220, 7, 15883, 52, 27586, 22784, 2546, 796, 8576, 11, 2995, 796, 1802, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 13, 2860, 10987, 7, 10987, 7, 16, 11, 1635, 58, 75, 12994, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 13, 2617, 14749, 7203, 4366, 47, 6144, 1600, 7103, 16928, 796, 10352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 13, 17953, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 16624, 316, 16, 13, 2860, 8979, 7, 3605, 8979, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7550, 2601, 1335, 43, 12994, 36180, 82, 13, 33295, 7, 1391, 705, 49, 4944, 6, 1058, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 43, 5883, 40, 6, 1058, 300, 12994, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 2257, 32235, 6, 1058, 366, 32, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 25664, 34, 28270, 6, 1058, 2393, 9127, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 20913, 17395, 62, 34694, 6, 1058, 2116, 13, 14421, 7575, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 32737, 62, 34694, 6, 1058, 2116, 13, 14421, 7575, 1782, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 16624, 316, 16, 13, 41509, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1693, 22810, 796, 2116, 13, 22018, 1967, 22810, 7, 26495, 796, 366, 54, 9655, 382, 13, 22117, 4462, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14569, 796, 2116, 13, 7266, 33584, 16, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 28463, 2601, 1335, 43, 12994, 5631, 46, 13, 41049, 7, 21653, 82, 796, 7550, 2601, 1335, 43, 12994, 36180, 82, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8611, 796, 10352, 8, 628, 197, 1820, 41205, 42035, 17816, 9806, 20560, 25876, 20520, 796, 642, 198, 220, 220, 220, 220, 220, 220, 220, 1693, 38, 14459, 796, 1693, 22810, 7, 1174, 1820, 41205, 42035, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 828, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 815, 423, 4504, 645, 15768, 13247, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 28463, 2601, 1335, 43, 12994, 5631, 46, 13, 41049, 7, 21653, 82, 796, 1391, 705, 49, 4944, 6, 1058, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 43, 5883, 40, 6, 1058, 513, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 2257, 32235, 6, 1058, 366, 32, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 25664, 34, 28270, 6, 1058, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 20913, 17395, 62, 34694, 6, 1058, 2116, 13, 14421, 7575, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 32737, 62, 34694, 6, 1058, 2116, 13, 14421, 7575, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8611, 796, 10352, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1693, 38, 14459, 796, 1693, 22810, 7, 1174, 1820, 41205, 42035, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 828, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 1422, 470, 1441, 530, 15768, 13247, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 58, 15, 4083, 43863, 828, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 1422, 470, 2251, 530, 1693, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 58, 15, 4083, 43863, 58, 15, 4083, 1136, 25876, 3419, 828, 604, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 717, 1693, 857, 407, 1429, 604, 3696, 4943, 628, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 825, 1332, 3312, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 9288, 3312, 62, 628, 220, 220, 220, 220, 220, 220, 220, 6208, 1128, 5430, 286, 513, 46390, 271, 198, 220, 220, 220, 220, 220, 220, 220, 362, 1402, 46390, 271, 357, 29762, 1693, 828, 3940, 416, 257, 1263, 530, 357, 48101, 3946, 8, 628, 220, 220, 220, 220, 220, 220, 220, 3696, 329, 300, 12994, 352, 290, 362, 389, 2174, 5021, 12, 75, 12994, 40885, 198, 220, 220, 220, 220, 220, 220, 220, 3696, 329, 300, 12994, 513, 389, 2029, 2060, 12, 75, 12994, 11387, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 616, 41205, 42035, 796, 2116, 13, 35312, 42035, 13, 30073, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 7550, 2601, 1335, 43, 12994, 36180, 82, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 329, 300, 12994, 287, 685, 16, 11, 362, 11, 513, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2393, 9127, 796, 362, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 7753, 9127, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 300, 12994, 6624, 513, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 497, 85, 658, 796, 5323, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 497, 85, 658, 796, 1802, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 796, 9220, 7, 15883, 52, 27586, 22784, 2546, 796, 8576, 11, 2995, 796, 497, 85, 658, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 13, 2860, 10987, 7, 10987, 7, 16, 11, 1635, 58, 75, 12994, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 13, 2617, 14749, 7203, 4366, 47, 6144, 1600, 7103, 16928, 796, 10352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 8979, 13, 17953, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 16624, 316, 16, 13, 2860, 8979, 7, 3605, 8979, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7550, 2601, 1335, 43, 12994, 36180, 82, 13, 33295, 7, 1391, 705, 49, 4944, 6, 1058, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 43, 5883, 40, 6, 1058, 300, 12994, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 2257, 32235, 6, 1058, 366, 32, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 25664, 34, 28270, 6, 1058, 2393, 9127, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 20913, 17395, 62, 34694, 6, 1058, 2116, 13, 14421, 7575, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 32737, 62, 34694, 6, 1058, 2116, 13, 14421, 7575, 1782, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 16624, 316, 16, 13, 41509, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1693, 22810, 796, 2116, 13, 22018, 1967, 22810, 7, 26495, 796, 366, 54, 9655, 382, 13, 22117, 4462, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14569, 796, 2116, 13, 7266, 33584, 16, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 28463, 2601, 1335, 43, 12994, 5631, 46, 13, 41049, 7, 21653, 82, 796, 7550, 2601, 1335, 43, 12994, 36180, 82, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8611, 796, 10352, 8, 628, 197, 1820, 41205, 42035, 17816, 9806, 20560, 37103, 20520, 796, 15897, 198, 220, 220, 220, 220, 220, 220, 220, 1693, 38, 14459, 796, 1693, 22810, 7, 1174, 1820, 41205, 42035, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 828, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 1422, 470, 1441, 530, 15768, 13247, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 58, 15, 4083, 43863, 828, 513, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 15768, 22810, 1422, 470, 2251, 1115, 3946, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 58, 15, 4083, 43863, 58, 15, 4083, 1136, 25876, 3419, 828, 604, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 717, 1693, 857, 407, 1429, 604, 3696, 4943, 628, 197, 944, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 58, 15, 4083, 43863, 58, 16, 4083, 1136, 25876, 3419, 828, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 1218, 1693, 857, 407, 1429, 352, 2393, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 21858, 38, 14459, 58, 15, 4083, 43863, 58, 17, 4083, 1136, 25876, 3419, 828, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24908, 25, 2368, 1693, 857, 407, 1429, 352, 2393, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 555, 715, 395, 13, 12417, 3419, 198 ]
1.837599
11,644
############################################################################# # # Copyright (c) 2020 Teunis van Beelen # All rights reserved. # # Email: [email protected] # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # * Neither the name of the copyright holder nor the names of its # contributors may be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ''AS IS'' AND ANY # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES # LOSS OF USE, DATA, OR PROFITS OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # ############################################################################# import sys import io import os import string import array from collections import namedtuple import numpy as np from datetime import datetime if sys.version_info[0] != 3 or sys.version_info[1] < 5: print("Must be using Python version >= 3.5.0") sys.exit() if np.__version__ < "1.17.0": print("Must be using NumPy version >= 1.17.0") sys.exit() ################################################################################ # START class EDFwriter ################################################################################ class EDFwriter: """A writer for EDF+ and BDF+ files. EDF header: offset (hex, dec) length --------------------------------------------------------------------- 0x00 0 8 ascii : version of this data format (0) 0x08 8 80 ascii : local patient identification 0x58 88 80 ascii : local recording identification 0xA8 168 8 ascii : startdate of recording (dd.mm.yy) 0xB0 176 8 ascii : starttime of recording (hh.mm.ss) 0xB8 184 8 ascii : number of bytes in header record 0xC0 192 44 ascii : reserved 0xEC 236 8 ascii : number of data records (-1 if unknown) 0xF4 244 8 ascii : duration of a data record, in seconds 0xFC 252 4 ascii : number of signals 0x00 0 ns * 16 ascii : ns * label (e.g. EEG Fpz-Cz or Body temp) ns * 0x10 ns * 16 ns * 80 ascii : ns * transducer type (e.g. AgAgCl electrode) ns * 0x60 ns * 96 ns * 8 ascii : ns * physical dimension (e.g. uV or degreeC) ns * 0x68 ns * 104 ns * 8 ascii : ns * physical minimum (e.g. -500 or 34) ns * 0x70 ns * 112 ns * 8 ascii : ns * physical maximum (e.g. 500 or 40) ns * 0x78 ns * 120 ns * 8 ascii : ns * digital minimum (e.g. -2048) ns * 0x80 ns * 128 ns * 8 ascii : ns * digital maximum (e.g. 2047) ns * 0x88 ns * 136 ns * 80 ascii : ns * prefiltering (e.g. HP:0.1Hz LP:75Hz N:60) ns * 0xD8 ns * 216 ns * 8 ascii : ns * nr of samples in each data record ns * 0xE0 ns * 224 ns * 32 ascii : ns * reserved ns: number of signals All fields are left aligned and filled up with spaces, no NULL's. Only printable ASCII characters are allowed. Decimal separator (if any) must be a dot. No grouping characters in numbers. For more info about the EDF and EDF+ format, visit: https://edfplus.info/specs/ For more info about the BDF and BDF+ format, visit: https://www.teuniz.net/edfbrowser/bdfplus%20format%20description.html note: In EDF, the sensitivity (e.g. uV/bit) and offset are stored using four parameters: digital maximum and minimum, and physical maximum and minimum. Here, digital means the raw data coming from a sensor or ADC. Physical means the units like uV. The sensitivity in units/bit is calculated as follows: units per bit = (physical max - physical min) / (digital max - digital min) The digital offset is calculated as follows: offset = (physical max / units per bit) - digital max For a better explanation about the relation between digital data and physical data, read the document "Coding Schemes Used with Data Converters" (PDF): https://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=sbaa042 note: An EDF file usually contains multiple so-called datarecords. One datarecord usually has a duration of one second (this is the default but it is not mandatory!). In that case a file with a duration of five minutes contains 300 datarecords. The duration of a datarecord can be freely choosen but, if possible, use values from 0.1 to 1 second for easier handling. Just make sure that the total size of one datarecord, expressed in bytes, does not exceed 10MByte (15MBytes for BDF(+)). The RECOMMENDATION of a maximum datarecordsize of 61440 bytes in the EDF and EDF+ specification was usefull in the time people were still using DOS as their main operating system. Using DOS and fast (near) pointers (16-bit pointers), the maximum allocatable block of memory was 64KByte. This is not a concern anymore so the maximum datarecord size now is limited to 10MByte for EDF(+) and 15MByte for BDF(+). This helps to accommodate for higher samplingrates used by modern Analog to Digital Converters. EDF header character encoding: The EDF specification says that only (printable) ASCII characters are allowed. When writing the header info, EDFlib will assume you are using Latin1 encoding and it will automatically convert characters with accents, umlauts, tilde, etc. to their "normal" equivalent without the accent/umlaut/tilde/etc. in order to create a valid EDF file. The description/name of an EDF+ annotation on the other hand, is encoded in UTF-8. author: Teunis van Beelen """ EDFLIB_TIME_DIMENSION = 10000000 EDFLIB_MAXSIGNALS = 640 EDFLIB_MAX_ANNOTATION_LEN = 512 EDFSEEK_SET = 0 EDFSEEK_CUR = 1 EDFSEEK_END = 2 EDFLIB_FILETYPE_EDF = 0 EDFLIB_FILETYPE_EDFPLUS = 1 EDFLIB_FILETYPE_BDF = 2 EDFLIB_FILETYPE_BDFPLUS = 3 EDFLIB_MALLOC_ERROR = -1 EDFLIB_NO_SUCH_FILE_OR_DIRECTORY = -2 EDFLIB_FILE_CONTAINS_FORMAT_ERRORS = -3 EDFLIB_MAXFILES_REACHED = -4 EDFLIB_FILE_READ_ERROR = -5 EDFLIB_FILE_ALREADY_OPENED = -6 EDFLIB_FILETYPE_ERROR = -7 EDFLIB_FILE_WRITE_ERROR = -8 EDFLIB_NUMBER_OF_SIGNALS_INVALID = -9 EDFLIB_FILE_IS_DISCONTINUOUS = -10 EDFLIB_INVALID_READ_ANNOTS_VALUE = -11 EDFLIB_INVALID_ARGUMENT = -12 EDFLIB_FILE_CLOSED = -13 EDFLIB_DO_NOT_READ_ANNOTATIONS = 0 EDFLIB_READ_ANNOTATIONS = 1 EDFLIB_READ_ALL_ANNOTATIONS = 2 EDFLIB_NO_SIGNALS = -20 EDFLIB_TOO_MANY_SIGNALS = -21 EDFLIB_NO_SAMPLES_IN_RECORD = -22 EDFLIB_DIGMIN_IS_DIGMAX = -23 EDFLIB_DIGMAX_LOWER_THAN_DIGMIN = -24 EDFLIB_PHYSMIN_IS_PHYSMAX = -25 EDFLIB_DATARECORD_SIZE_TOO_BIG = -26 EDFLIB_VERSION = 100 # max size of annotationtext __EDFLIB_WRITE_MAX_ANNOTATION_LEN = 40 # bytes in datarecord for EDF annotations, must be an integer multiple of three and two __EDFLIB_ANNOTATION_BYTES = 114 # for writing only __EDFLIB_MAX_ANNOTATION_CHANNELS = 64 __EDFLIB_ANNOT_MEMBLOCKSZ = 1000 __EDFAnnotationStruct = namedtuple("annotation", ["onset", "duration", "description"]) def close(self) -> int: """Finalizes and closes the file. This function is required after writing. Failing to do so will cause a corrupted and incomplete file. Returns 0 on success, otherwise -1. """ if self.__status_ok: if self.__datarecords < 100000000: self.__file_out.seek(236, io.SEEK_SET) if self.__fprint_int_number_nonlocalized(self.__file_out, self.__datarecords, 0, 0) < 2: self.__file_out.write(bytes(" ", encoding="ascii")) self.__write_annotations() self.__file_out.close() self.__status_ok = 0 return 0 else: return -1 def version(self) -> int: """If version is 1.00 then it will return 100.""" return self.EDFLIB_VERSION def setSampleFrequency(self, s: int, sf: int) -> int: """Sets the samplefrequency of signal s. (In reallity, it sets the number of samples in a datarecord.) The samplefrequency of a signal is determined as: sf = number of samples in a datarecord / datarecord duration. The samplefrequency equals the number of samples in a datarecord only when the datarecord duration is set to the default of one second. This function is required for every signal and can be called only before the first sample write action. s is the signal number (zero-based). sf is the samplefrequency. Returns 0 on success, otherwise -1. """ if (s < 0) or (s >= self.__edfsignals) or (self.__datarecords != 0) or (sf < 1): return -1 self.__param_smp_per_record[s] = sf return 0 def setPhysicalMaximum(self, s: int, phys_max: float) -> int: """Sets the maximum physical value of signal s. This is the value of the input of the ADC when the output equals the value of "digital maximum". This function is required for every signal and can be called only before the first sample write action. s is the signal number (zero-based). phys_max is the maximum input value. Returns 0 on success, otherwise -1. note: In EDF, the sensitivity (e.g. uV/bit) and offset are stored using four parameters: digital maximum and minimum, and physical maximum and minimum. Here, digital means the raw data coming from a sensor or ADC. Physical means the units like uV. Usually they are the extreme input and output values of the ADC. The sensitivity in units/bit is calculated as follows: units per bit = (physical max - physical min) / (digital max - digital min) The digital offset is calculated as follows: offset = (physical max / units per bit) - digital max """ if (s < 0) or (s >= self.__edfsignals) or (self.__datarecords != 0): return -1 self.__param_phys_max[s] = phys_max return 0 def setPhysicalMinimum(self, s: int, phys_min: float) -> int: """Sets the minimum physical value of signal s. This is the value of the input of the ADC when the output equals the value of "digital minimum". This function is required for every signal and can be called only before the first sample write action. s is the signal number (zero-based). phys_min is the minimum input value. Returns 0 on success, otherwise -1. note: In EDF, the sensitivity (e.g. uV/bit) and offset are stored using four parameters: digital maximum and minimum, and physical maximum and minimum. Here, digital means the raw data coming from a sensor or ADC. Physical means the units like uV. Usually they are the extreme input and output values of the ADC. The sensitivity in units/bit is calculated as follows: units per bit = (physical max - physical min) / (digital max - digital min) The digital offset is calculated as follows: offset = (physical max / units per bit) - digital max """ if (s < 0) or (s >= self.__edfsignals) or (self.__datarecords != 0): return -1 self.__param_phys_min[s] = phys_min return 0 def setDigitalMaximum(self, s: int, dig_max: int) -> int: """Sets the maximum digital value of signal s. This is the value of the output of the ADC when the input equals the value of "physical maximum". This function is required for every signal and can be called only before the first sample write action. s is the signal number (zero-based). dig_max is the maximum output value (<= 32767 for EDF and <= 8388607 for BDF). Returns 0 on success, otherwise -1. note: In EDF, the sensitivity (e.g. uV/bit) and offset are stored using four parameters: digital maximum and minimum, and physical maximum and minimum. Here, digital means the raw data coming from a sensor or ADC. Physical means the units like uV. Usually they are the extreme input and output values of the ADC. The sensitivity in units/bit is calculated as follows: units per bit = (physical max - physical min) / (digital max - digital min) The digital offset is calculated as follows: offset = (physical max / units per bit) - digital max """ if (s < 0) or (s >= self.__edfsignals) or (self.__datarecords != 0): return -1 if self.__edf != 0: if dig_max > 32767: return -1 else: if dig_max > 8388607: return -1 self.__param_dig_max[s] = dig_max return 0 def setDigitalMinimum(self, s: int, dig_min: int) -> int: """Sets the minimum digital value of signal s. This is the value of the output of the ADC when the input equals the value of "physical minimum". This function is required for every signal and can be called only before the first sample write action. s is the signal number (zero-based). dig_min is the minimum output value (>= -32768 for EDF and >= -8388608 for BDF). Returns 0 on success, otherwise -1. note: In EDF, the sensitivity (e.g. uV/bit) and offset are stored using four parameters: digital maximum and minimum, and physical maximum and minimum. Here, digital means the raw data coming from a sensor or ADC. Physical means the units like uV. Usually they are the extreme input and output values of the ADC. The sensitivity in units/bit is calculated as follows: units per bit = (physical max - physical min) / (digital max - digital min) The digital offset is calculated as follows: offset = (physical max / units per bit) - digital max """ if (s < 0) or (s >= self.__edfsignals) or (self.__datarecords != 0): return -1 if self.__edf != 0: if dig_min < -32768: return -1 else: if dig_min < -8388608: return -1 self.__param_dig_min[s] = dig_min return 0 def setSignalLabel(self, s: int, label: str) -> int: """Sets the label (name) of signal s. (e.g. "FP1", "SaO2", etc.) String must contain printable ASCII only. This function is recommended for every signal and can be called only before the first sample write action. s is the signal number (zero-based). label is the signallabel. Returns 0 on success, otherwise -1. """ if (s < 0) or (s >= self.__edfsignals) or (self.__datarecords != 0): return -1 self.__param_label[s] = label return 0 def setPreFilter(self, s: int, prefilter: str) -> int: """Sets the prefilter description of signal s. (e.g. "HP:0.05Hz", "LP:250Hz", "N:60Hz", etc.) String must contain printable ASCII only. This function is optional and can be called only before the first sample write action. s is the signal number (zero-based). prefilter is the prefilter description. Returns 0 on success, otherwise -1. """ if (s < 0) or (s >= self.__edfsignals) or (self.__datarecords != 0): return -1 self.__param_prefilter[s] = prefilter return 0 def setTransducer(self, s: int, transducer: str) -> int: """Sets the transducer description of signal s. ("AgAgCl cup electrodes", etc.) String must contain printable ASCII only. This function is optional and can be called only before the first sample write action. s is the signal number (zero-based). transducer is the transducer description. Returns 0 on success, otherwise -1. """ if (s < 0) or (s >= self.__edfsignals) or (self.__datarecords != 0): return -1 self.__param_transducer[s] = transducer return 0 def setPhysicalDimension(self, s: int, physical_dimension: str) -> int: """Sets the physical_dimension (unit) of signal s. ("uV", "BPM", "mA", "Degr.", etc.) String must contain printable ASCII only. This function recommended for every signal and can be called only before the first sample write action. s is the signal number (zero-based). physical_dimension is the physical dimension description. Returns 0 on success, otherwise -1. """ if (s < 0) or (s >= self.__edfsignals) or (self.__datarecords != 0): return -1 self.__param_physdimension[s] = physical_dimension return 0 def setStartDateTime(self, year: int, month: int, day: int, hour: int, minute: int, second: int, subsecond: int) -> int: """ Sets the startdate and starttime. If not called, the system date and time at runtime will be used. This function is optional and can be called only before the first sample write action. If subsecond precision is not needed or not applicable, leave it at zero. year: 1970 - 3000 month: 1 - 12 day: 1 - 31 hour: 0 - 23 minute: 0 - 59 second: 0 - 59 subsecond: 0 - 9999 expressed in units of 100 microSeconds Returns 0 on success, otherwise -1. """ if self.__datarecords != 0: return -1 if (year < 1970) or (year > 3000) or \ (month < 1) or (month > 12) or \ (day < 1) or (day > 31) or \ (hour < 0) or (hour > 23) or \ (minute < 0) or (minute > 59) or \ (second < 0) or (second > 59) or \ (subsecond < 0) or (subsecond > 9999): return -1 self.__startdate_year = year self.__startdate_month = month self.__startdate_day = day self.__starttime_hour = hour self.__starttime_minute = minute self.__starttime_second = second self.__starttime_offset = subsecond * 1000 return 0 def setPatientName(self, name: str) -> int: """Sets the patientname. String must contain printable ASCII only. This function is optional and can be called only before the first sample write action. Returns 0 on success, otherwise -1. """ if self.__datarecords != 0: return -1 self.__plus_patient_name = name return 0 def setPatientCode(self, code: str) -> int: """Sets the patientcode. String must contain printable ASCII only. This function is optional and can be called only before the first sample write action. Returns 0 on success, otherwise -1. """ if self.__datarecords != 0: return -1 self.__plus_patientcode = code return 0 def setPatientGender(self, gender: int) -> int: """Sets the patient's gender. gender: 0 = female, 1 = male, 2 = unknown or not applicable (default) This function is optional and can be called only before the first sample write action. Returns 0 on success, otherwise -1. """ if self.__datarecords != 0: return -1 if (gender < 0) or (gender > 2): return -1 self.__plus_gender = gender return 0 def setPatientBirthDate(self, year: int, month: int, day: int) -> int: """Sets the patients' birthdate. This function is optional and can be called only before the first sample write action. year: 1800 - 3000 month: 1 - 12 day: 1 - 31 Returns 0 on success, otherwise -1. """ if self.__datarecords != 0: return -1 if (year < 1800) or (year > 3000) or \ (month < 1) or (month > 12) or \ (day < 1) or (day > 31): return -1 self.__plus_birthdate_year = year self.__plus_birthdate_month = month self.__plus_birthdate_day = day return 0 def setAdditionalPatientInfo(self, additional: str) -> int: """Sets the additional information related to the patient. String must contain printable ASCII only. This function is optional and can be called only before the first sample write action. Returns 0 on success, otherwise -1. """ if self.__datarecords != 0: return -1 self.__plus_patient_additional = additional return 0 def setAdministrationCode(self, admin_code: str) -> int: """Sets the administration code. String must contain printable ASCII only. This function is optional and can be called only before the first sample write action. Returns 0 on success, otherwise -1. """ if self.__datarecords != 0: return -1 self.__plus_admincode = admin_code return 0 def setTechnician(self, technician: str) -> int: """Sets the name or id of the technician who performed the recording. String must contain printable ASCII only. This function is optional and can be called only before the first sample write action. Returns 0 on success, otherwise -1. """ if self.__datarecords != 0: return -1 self.__plus_technician = technician return 0 def setEquipment(self, equipment: str) -> int: """Sets the description of the equipment used for the recording. String must contain printable ASCII only. This function is optional and can be called only before the first sample write action. Returns 0 on success, otherwise -1. """ if self.__datarecords != 0: return -1 self.__plus_equipment = equipment return 0 def setAdditionalRecordingInfo(self, additional: str) -> int: """Sets the additional info related to the recording. String must contain printable ASCII only. This function is optional and can be called only before the first sample write action. Returns 0 on success, otherwise -1. """ if self.__datarecords != 0: return -1 self.__plus_recording_additional = additional return 0 def writeSamples(self, buf: np.array) -> int: """Write samples. Writes sf samples into the file. Buf must be a one-dimensional numpy array containing samples of one signal of datatype int32, float_ or float64. For EDF, dataype int16 can also be used. If buf is of type integer, the samples are written into the file without any conversion. If buf is of type float, the physical samples will be converted to digital samples using the values of physical maximum, physical minimum, digital maximum and digital minimum. The number of samples written is equal to the samplefrequency of the signal. (actually, it's the value that is set with setSampleFrequency()). Size of buf should be equal to or bigger than the samplefrequency. Call this function for every signal in the file. The order is important! When there are 4 signals in the file, the order of calling this function must be: signal 0, signal 1, signal 2, signal 3, signal 0, signal 1, signal 2, etc. The end of a recording must always be at the end of a complete cycle. buf is a one-dimensional numpy array of datatype int32, float_ or float64. For EDF, dataype int16 can also be used. Returns 0 on success, otherwise -1. """ if self.__status_ok == 0: return -1 if buf.ndim != 1: return -1 if (buf.dtype != np.int16) and (buf.dtype != np.int32) and (buf.dtype != np.float_) and (buf.dtype != np.float64): return -1 if (buf.dtype == np.int16) and (self.__bdf != 0): return -1 edfsignal = self.__signal_write_sequence_pos if self.__datarecords == 0: if edfsignal == 0: error = self.__write_edf_header() if error != 0: return error sf = self.__param_smp_per_record[edfsignal] digmax = self.__param_dig_max[edfsignal] digmin = self.__param_dig_min[edfsignal] if sf > buf.size: return -1 if self.__edf != 0: if (buf.dtype == np.int16) or (buf.dtype == np.int32): for i in range(0, sf): if buf[i] > digmax: buf[i] = digmax if buf[i] < digmin: buf[i] = digmin self.__file_out.write(buf[i].astype("int16").tobytes(order="C")) else: for i in range(0, sf): value = int((buf[i] / self.__param_bitvalue[edfsignal]) - self.__param_offset[edfsignal]) if value > digmax: value = digmax if value < digmin: value = digmin self.__file_out.write(value.to_bytes(2, byteorder="little", signed=True)) else: if buf.dtype == np.int32: for i in range(0, sf): value = int(buf[i]) if value > digmax: value = digmax if value < digmin: value = digmin self.__file_out.write(value.to_bytes(3, byteorder="little", signed=True)) else: for i in range(0, sf): value = int((buf[i] / self.__param_bitvalue[edfsignal]) - self.__param_offset[edfsignal]) if value > digmax: value = digmax if value < digmin: value = digmin self.__file_out.write(value.to_bytes(3, byteorder="little", signed=True)) self.__signal_write_sequence_pos += 1 if self.__signal_write_sequence_pos == self.__edfsignals: self.__signal_write_sequence_pos = 0 if self.__write_tal(self.__file_out) != 0: return -1 self.__datarecords += 1 return 0 def setDataRecordDuration(self, duration: int) -> int: """Sets the datarecord duration. This function is optional, normally you don't need to change the default value of one second. This function is NOT REQUIRED but can be called only before the first sample write action. This function can be used when you want to use a non-integer samplerate. For example, if you want to use a samplerate of 0.5 Hz, set the samplefrequency to 5 Hz and the datarecord duration to 10 seconds, or alternatively, set the samplefrequency to 1 Hz and the datarecord duration to 2 seconds. This function can also be used when you want to use a very high samplerate. For example, if you want to use a samplerate of 5 GHz, set the samplefrequency to 5000 Hz and the datarecord duration to 1 microSecond. Do not use this function if not necessary. duration is expressed in microSeconds, range: 1 - 60000000 (1uSec. - 60 sec.) Returns 0 on success, otherwise -1. """ if (duration < 1) or (duration > 60000000) or (self.__datarecords != 0): return -1 self.__long_data_record_duration = duration * 10 return 0 def setNumberOfAnnotationSignals(self, annot_signals: int) -> int: """Sets the number of annotation signals. The default value is 1. This function is optional and, if used, must be called before the first sample write action. Normally you don't need to change the default value. Only when the number of annotations you want to write is higher than the number of datarecords in the recording, you can use this function to increase the storage space for annotations. """ if (annot_signals < 1) or (annot_signals >= self.__EDFLIB_MAX_ANNOTATION_CHANNELS) or (self.__datarecords != 0): return -1 self.__nr_annot_chns = annot_signals return 0 def writeAnnotation(self, onset: int, duration: int, description: str) -> int: """Writes an annotation/event to the file. onset is relative to the starttime of the recording and must be >= 0. onset and duration are in units of 100 microSeconds. Resolution is 0.0001 second. E.g. 34.071 seconds must be written as 340710. If duration is unknown or not applicable: set a negative number (-1). Description is a string containing the text that describes the event. This function is optional. """ if (self.__status_ok == 0) or (onset < 0): return -1 self.__annotationslist.append(self.__EDFAnnotationStruct(onset = onset, duration = duration, description = description)) self.__annots_in_file += 1 return 0 ################################################################################ # from here only internal utils ################################################################################ # writes the EDF header # writes a TAL # writes the annotations to the file # minimum is the minimum digits that will be printed (minus sign not included), leading zero's will be added if necessary # if sign is zero, only negative numbers will have the sign '-' character # if sign is one, the sign '+' or '-' character will always be printed # returns the number of characters printed # minimum is the minimum digits that will be printed (minus sign not included), leading zero's will be added if necessary # if sign is zero, only negative numbers will have the sign '-' character # if sign is one, the sign '+' or '-' character will always be printed # returns the number of characters printed # minimum is the minimum digits that will be printed (minus sign not included), leading zero's will be added if necessary # if sign is zero, only negative numbers will have the sign '-' character # if sign is one, the sign '+' or '-' character will always be printed # returns the amount of characters printed # get string length # copy a string # converts Latin-1 to ASCII ################################################################################ # END class EDFwriter ################################################################################ ################################################################################ # START class EDFexception ################################################################################ ################################################################################ # END class EDFexception ################################################################################
[ 29113, 29113, 7804, 4242, 2, 198, 2, 198, 2, 15069, 357, 66, 8, 12131, 1665, 403, 271, 5719, 1355, 417, 268, 198, 2, 1439, 2489, 10395, 13, 198, 2, 198, 2, 9570, 25, 573, 403, 528, 31, 1676, 1122, 4529, 13, 785, 198, 2, 198, 2, 2297, 396, 3890, 290, 779, 287, 2723, 290, 13934, 5107, 11, 351, 393, 1231, 198, 2, 17613, 11, 389, 10431, 2810, 326, 262, 1708, 3403, 389, 1138, 25, 198, 2, 220, 220, 220, 220, 1635, 2297, 396, 2455, 507, 286, 2723, 2438, 1276, 12377, 262, 2029, 6634, 198, 2, 220, 220, 220, 220, 220, 220, 4003, 11, 428, 1351, 286, 3403, 290, 262, 1708, 37592, 13, 198, 2, 220, 220, 220, 220, 1635, 2297, 396, 2455, 507, 287, 13934, 1296, 1276, 22919, 262, 2029, 6634, 198, 2, 220, 220, 220, 220, 220, 220, 4003, 11, 428, 1351, 286, 3403, 290, 262, 1708, 37592, 287, 262, 198, 2, 220, 220, 220, 220, 220, 220, 10314, 290, 14, 273, 584, 5696, 2810, 351, 262, 6082, 13, 198, 2, 220, 220, 220, 220, 1635, 16126, 262, 1438, 286, 262, 6634, 15762, 4249, 262, 3891, 286, 663, 198, 2, 220, 220, 220, 220, 220, 220, 20420, 743, 307, 973, 284, 11438, 393, 7719, 3186, 10944, 422, 198, 2, 220, 220, 220, 220, 220, 220, 428, 3788, 1231, 2176, 3161, 3194, 7170, 13, 198, 2, 198, 2, 12680, 47466, 3180, 36592, 2389, 1961, 11050, 3336, 27975, 38162, 9947, 367, 15173, 4877, 5357, 27342, 9865, 3843, 20673, 10148, 1921, 3180, 7061, 5357, 15529, 198, 2, 7788, 32761, 6375, 8959, 49094, 34764, 11015, 11, 47783, 2751, 11, 21728, 5626, 40880, 5390, 11, 3336, 8959, 49094, 198, 2, 34764, 11015, 3963, 34482, 3398, 1565, 5603, 25382, 5357, 376, 46144, 7473, 317, 16652, 2149, 37232, 33079, 48933, 15986, 198, 2, 13954, 48778, 1961, 13, 3268, 8005, 49261, 50163, 3336, 27975, 38162, 9947, 49707, 14418, 6375, 27342, 9865, 3843, 20673, 9348, 43031, 19146, 7473, 15529, 198, 2, 42242, 11, 3268, 17931, 23988, 11, 19387, 25256, 1847, 11, 38846, 11, 7788, 3620, 6489, 13153, 11, 6375, 7102, 5188, 10917, 3525, 12576, 29506, 25552, 198, 2, 357, 1268, 39149, 2751, 11, 21728, 5626, 40880, 5390, 11, 41755, 11335, 10979, 3963, 28932, 2257, 2043, 37780, 21090, 50, 6375, 49254, 198, 2, 406, 18420, 3963, 23210, 11, 42865, 11, 6375, 4810, 19238, 29722, 6375, 43949, 44180, 23255, 49, 8577, 24131, 8, 29630, 36, 5959, 7257, 2937, 1961, 5357, 198, 2, 6177, 15529, 3336, 15513, 3963, 43031, 25382, 11, 7655, 2767, 16879, 3268, 27342, 10659, 11, 19269, 18379, 43031, 25382, 11, 6375, 309, 9863, 198, 2, 357, 1268, 39149, 2751, 399, 7156, 43, 3528, 18310, 6375, 25401, 54, 24352, 8, 5923, 1797, 2751, 3268, 15529, 34882, 16289, 3963, 3336, 23210, 3963, 12680, 198, 2, 47466, 11, 45886, 16876, 5984, 29817, 1961, 3963, 3336, 28069, 11584, 25382, 3963, 13558, 3398, 29506, 11879, 13, 198, 2, 198, 29113, 29113, 7804, 4242, 2, 198, 198, 11748, 25064, 198, 11748, 33245, 198, 11748, 28686, 198, 11748, 4731, 198, 11748, 7177, 198, 6738, 17268, 1330, 3706, 83, 29291, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 4818, 8079, 1330, 4818, 8079, 198, 198, 361, 25064, 13, 9641, 62, 10951, 58, 15, 60, 14512, 513, 393, 25064, 13, 9641, 62, 10951, 58, 16, 60, 1279, 642, 25, 198, 220, 3601, 7203, 34320, 307, 1262, 11361, 2196, 18189, 513, 13, 20, 13, 15, 4943, 198, 220, 25064, 13, 37023, 3419, 198, 198, 361, 45941, 13, 834, 9641, 834, 1279, 366, 16, 13, 1558, 13, 15, 1298, 198, 220, 3601, 7203, 34320, 307, 1262, 31835, 20519, 2196, 18189, 352, 13, 1558, 13, 15, 4943, 198, 220, 25064, 13, 37023, 3419, 198, 198, 29113, 29113, 14468, 198, 2, 33303, 1398, 412, 8068, 16002, 198, 29113, 29113, 14468, 198, 198, 4871, 412, 8068, 16002, 25, 198, 220, 37227, 32, 6260, 329, 412, 8068, 10, 290, 347, 8068, 10, 3696, 13, 628, 220, 412, 8068, 13639, 25, 628, 220, 11677, 357, 33095, 11, 875, 8, 4129, 198, 220, 16529, 30934, 198, 220, 657, 87, 405, 220, 220, 220, 220, 220, 657, 220, 220, 220, 220, 807, 355, 979, 72, 1058, 2196, 286, 428, 1366, 5794, 357, 15, 8, 198, 220, 657, 87, 2919, 220, 220, 220, 220, 220, 807, 220, 220, 220, 4019, 355, 979, 72, 1058, 1957, 5827, 11795, 198, 220, 657, 87, 3365, 220, 220, 220, 220, 9193, 220, 220, 220, 4019, 355, 979, 72, 1058, 1957, 8296, 11795, 198, 220, 657, 87, 32, 23, 220, 220, 220, 23378, 220, 220, 220, 220, 807, 355, 979, 72, 1058, 923, 4475, 286, 8296, 357, 1860, 13, 3020, 13, 22556, 8, 198, 220, 657, 87, 33, 15, 220, 220, 220, 26937, 220, 220, 220, 220, 807, 355, 979, 72, 1058, 923, 2435, 286, 8296, 357, 12337, 13, 3020, 13, 824, 8, 198, 220, 657, 87, 33, 23, 220, 220, 220, 28598, 220, 220, 220, 220, 807, 355, 979, 72, 1058, 1271, 286, 9881, 287, 13639, 1700, 198, 220, 657, 87, 34, 15, 220, 220, 220, 17817, 220, 220, 220, 5846, 355, 979, 72, 1058, 10395, 198, 220, 657, 87, 2943, 220, 220, 220, 34044, 220, 220, 220, 220, 807, 355, 979, 72, 1058, 1271, 286, 1366, 4406, 13841, 16, 611, 6439, 8, 198, 220, 657, 87, 37, 19, 220, 220, 220, 35264, 220, 220, 220, 220, 807, 355, 979, 72, 1058, 9478, 286, 257, 1366, 1700, 11, 287, 4201, 198, 220, 657, 87, 4851, 220, 220, 220, 25264, 220, 220, 220, 220, 604, 355, 979, 72, 1058, 1271, 286, 10425, 628, 220, 220, 220, 220, 220, 220, 220, 657, 87, 405, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 657, 220, 220, 220, 220, 36545, 1635, 1467, 355, 979, 72, 1058, 36545, 1635, 6167, 357, 68, 13, 70, 13, 48749, 376, 79, 89, 12, 34, 89, 393, 12290, 20218, 8, 198, 220, 220, 36545, 1635, 657, 87, 940, 220, 220, 220, 36545, 1635, 220, 1467, 220, 220, 220, 220, 36545, 1635, 4019, 355, 979, 72, 1058, 36545, 1635, 1007, 646, 2189, 2099, 357, 68, 13, 70, 13, 2449, 10262, 2601, 46203, 8, 198, 220, 220, 36545, 1635, 657, 87, 1899, 220, 220, 220, 36545, 1635, 220, 9907, 220, 220, 220, 220, 36545, 1635, 220, 807, 355, 979, 72, 1058, 36545, 1635, 3518, 15793, 357, 68, 13, 70, 13, 334, 53, 393, 4922, 34, 8, 198, 220, 220, 36545, 1635, 657, 87, 3104, 220, 220, 220, 36545, 1635, 14436, 220, 220, 220, 220, 36545, 1635, 220, 807, 355, 979, 72, 1058, 36545, 1635, 3518, 5288, 357, 68, 13, 70, 13, 532, 4059, 393, 4974, 8, 198, 220, 220, 36545, 1635, 657, 87, 2154, 220, 220, 220, 36545, 1635, 13539, 220, 220, 220, 220, 36545, 1635, 220, 807, 355, 979, 72, 1058, 36545, 1635, 3518, 5415, 357, 68, 13, 70, 13, 5323, 393, 2319, 8, 198, 220, 220, 36545, 1635, 657, 87, 3695, 220, 220, 220, 36545, 1635, 7982, 220, 220, 220, 220, 36545, 1635, 220, 807, 355, 979, 72, 1058, 36545, 1635, 4875, 5288, 357, 68, 13, 70, 13, 532, 1238, 2780, 8, 198, 220, 220, 36545, 1635, 657, 87, 1795, 220, 220, 220, 36545, 1635, 13108, 220, 220, 220, 220, 36545, 1635, 220, 807, 355, 979, 72, 1058, 36545, 1635, 4875, 5415, 357, 68, 13, 70, 13, 1160, 2857, 8, 198, 220, 220, 36545, 1635, 657, 87, 3459, 220, 220, 220, 36545, 1635, 21056, 220, 220, 220, 220, 36545, 1635, 4019, 355, 979, 72, 1058, 36545, 1635, 7694, 346, 20212, 357, 68, 13, 70, 13, 6574, 25, 15, 13, 16, 7399, 18470, 25, 2425, 7399, 399, 25, 1899, 8, 198, 220, 220, 36545, 1635, 657, 87, 35, 23, 220, 220, 220, 36545, 1635, 26881, 220, 220, 220, 220, 36545, 1635, 220, 807, 355, 979, 72, 1058, 36545, 1635, 299, 81, 286, 8405, 287, 1123, 1366, 1700, 198, 220, 220, 36545, 1635, 657, 87, 36, 15, 220, 220, 220, 36545, 1635, 26063, 220, 220, 220, 220, 36545, 1635, 3933, 355, 979, 72, 1058, 36545, 1635, 10395, 628, 220, 36545, 25, 1271, 286, 10425, 628, 220, 1439, 7032, 389, 1364, 19874, 290, 5901, 510, 351, 9029, 11, 645, 15697, 338, 13, 628, 220, 5514, 3601, 540, 37101, 3435, 389, 3142, 13, 628, 220, 4280, 4402, 2880, 1352, 357, 361, 597, 8, 1276, 307, 257, 16605, 13, 1400, 36115, 3435, 287, 3146, 13, 628, 220, 1114, 517, 7508, 546, 262, 412, 8068, 290, 412, 8068, 10, 5794, 11, 3187, 25, 3740, 1378, 276, 69, 9541, 13, 10951, 14, 4125, 6359, 14, 628, 220, 1114, 517, 7508, 546, 262, 347, 8068, 290, 347, 8068, 10, 5794, 11, 3187, 25, 3740, 1378, 2503, 13, 660, 403, 528, 13, 3262, 14, 276, 21855, 808, 2655, 14, 65, 7568, 9541, 4, 1238, 18982, 4, 1238, 11213, 13, 6494, 628, 220, 3465, 25, 554, 412, 8068, 11, 262, 14233, 357, 68, 13, 70, 13, 334, 53, 14, 2545, 8, 290, 11677, 389, 8574, 1262, 1440, 10007, 25, 198, 220, 4875, 5415, 290, 5288, 11, 290, 3518, 5415, 290, 5288, 13, 198, 220, 3423, 11, 4875, 1724, 262, 8246, 1366, 2406, 422, 257, 12694, 393, 49169, 13, 16331, 1724, 262, 4991, 588, 334, 53, 13, 198, 220, 383, 14233, 287, 4991, 14, 2545, 318, 10488, 355, 5679, 25, 628, 220, 4991, 583, 1643, 796, 357, 42854, 3509, 532, 3518, 949, 8, 1220, 357, 34725, 3509, 532, 4875, 949, 8, 628, 220, 383, 4875, 11677, 318, 10488, 355, 5679, 25, 628, 220, 11677, 796, 357, 42854, 3509, 1220, 4991, 583, 1643, 8, 532, 4875, 3509, 628, 220, 1114, 257, 1365, 7468, 546, 262, 8695, 1022, 4875, 1366, 290, 3518, 1366, 11, 198, 220, 1100, 262, 3188, 366, 34, 7656, 1446, 4411, 274, 16718, 351, 6060, 35602, 1010, 1, 357, 20456, 2599, 628, 220, 3740, 1378, 2503, 13, 20259, 13, 785, 14, 24622, 14, 31628, 14, 18250, 14, 1136, 17201, 1300, 13, 912, 79, 30, 8692, 43460, 1300, 15057, 28, 82, 7012, 64, 3023, 17, 628, 220, 3465, 25, 1052, 412, 8068, 2393, 3221, 4909, 3294, 523, 12, 7174, 4818, 533, 66, 3669, 13, 1881, 4818, 533, 66, 585, 3221, 468, 257, 9478, 286, 530, 1218, 357, 5661, 318, 262, 4277, 475, 340, 318, 407, 13677, 19588, 198, 220, 554, 326, 1339, 257, 2393, 351, 257, 9478, 286, 1936, 2431, 4909, 5867, 4818, 533, 66, 3669, 13, 383, 9478, 286, 257, 4818, 533, 66, 585, 460, 307, 12748, 1727, 5233, 475, 11, 611, 1744, 11, 779, 3815, 422, 198, 220, 657, 13, 16, 284, 352, 1218, 329, 4577, 9041, 13, 2329, 787, 1654, 326, 262, 2472, 2546, 286, 530, 4818, 533, 66, 585, 11, 6241, 287, 9881, 11, 857, 407, 7074, 838, 44, 40778, 357, 1314, 44, 45992, 329, 347, 8068, 7, 28988, 737, 628, 220, 383, 19644, 2662, 44, 10619, 6234, 286, 257, 5415, 4818, 533, 66, 3669, 1096, 286, 718, 1415, 1821, 9881, 287, 262, 412, 8068, 290, 412, 8068, 10, 20855, 373, 779, 12853, 287, 262, 640, 661, 547, 991, 1262, 43036, 355, 511, 1388, 5361, 1080, 13, 198, 220, 8554, 43036, 290, 3049, 357, 40093, 8, 32007, 357, 1433, 12, 2545, 32007, 828, 262, 5415, 36836, 21156, 2512, 286, 4088, 373, 5598, 42, 40778, 13, 198, 220, 770, 318, 407, 257, 2328, 7471, 523, 262, 5415, 4818, 533, 66, 585, 2546, 783, 318, 3614, 284, 838, 44, 40778, 329, 412, 8068, 7, 28988, 290, 1315, 44, 40778, 329, 347, 8068, 7, 10, 737, 770, 5419, 284, 15550, 329, 2440, 19232, 9700, 198, 220, 973, 416, 3660, 50088, 284, 10231, 35602, 1010, 13, 628, 220, 412, 8068, 13639, 2095, 21004, 25, 383, 412, 8068, 20855, 1139, 326, 691, 357, 4798, 540, 8, 37101, 3435, 389, 3142, 13, 198, 220, 1649, 3597, 262, 13639, 7508, 11, 8392, 7414, 571, 481, 7048, 345, 389, 1262, 9133, 16, 21004, 290, 340, 481, 6338, 10385, 198, 220, 3435, 351, 39271, 11, 334, 4029, 17712, 11, 256, 44725, 11, 3503, 13, 284, 511, 366, 11265, 1, 7548, 1231, 262, 18702, 14, 388, 75, 2306, 14, 83, 44725, 14, 14784, 13, 198, 220, 287, 1502, 284, 2251, 257, 4938, 412, 8068, 2393, 13, 628, 220, 383, 6764, 14, 3672, 286, 281, 412, 8068, 10, 23025, 319, 262, 584, 1021, 11, 318, 30240, 287, 41002, 12, 23, 13, 628, 220, 1772, 25, 1665, 403, 271, 5719, 1355, 417, 268, 198, 220, 37227, 628, 220, 8392, 3697, 9865, 62, 34694, 62, 35, 3955, 16938, 2849, 220, 220, 220, 220, 796, 1802, 20483, 198, 220, 8392, 3697, 9865, 62, 22921, 46224, 23333, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 33759, 198, 220, 8392, 3697, 9865, 62, 22921, 62, 1565, 11929, 6234, 62, 43, 1677, 220, 220, 220, 220, 220, 220, 796, 22243, 628, 220, 412, 8068, 36078, 42, 62, 28480, 796, 657, 198, 220, 412, 8068, 36078, 42, 62, 34, 4261, 796, 352, 198, 220, 412, 8068, 36078, 42, 62, 10619, 796, 362, 628, 220, 8392, 3697, 9865, 62, 25664, 25216, 62, 1961, 37, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 657, 198, 220, 8392, 3697, 9865, 62, 25664, 25216, 62, 1961, 5837, 43, 2937, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 352, 198, 220, 8392, 3697, 9865, 62, 25664, 25216, 62, 33, 8068, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 362, 198, 220, 8392, 3697, 9865, 62, 25664, 25216, 62, 14529, 5837, 43, 2937, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 513, 198, 220, 8392, 3697, 9865, 62, 44, 7036, 4503, 62, 24908, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 532, 16, 198, 220, 8392, 3697, 9865, 62, 15285, 62, 12564, 3398, 62, 25664, 62, 1581, 62, 17931, 23988, 15513, 220, 220, 796, 532, 17, 198, 220, 8392, 3697, 9865, 62, 25664, 62, 10943, 5603, 20913, 62, 21389, 1404, 62, 24908, 50, 796, 532, 18, 628, 220, 8392, 3697, 9865, 62, 22921, 46700, 1546, 62, 2200, 16219, 1961, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 532, 19, 198, 220, 8392, 3697, 9865, 62, 25664, 62, 15675, 62, 24908, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 532, 20, 198, 220, 8392, 3697, 9865, 62, 25664, 62, 1847, 15675, 56, 62, 3185, 1677, 1961, 220, 220, 220, 220, 220, 220, 220, 220, 796, 532, 21, 198, 220, 8392, 3697, 9865, 62, 25664, 25216, 62, 24908, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 532, 22, 198, 220, 8392, 3697, 9865, 62, 25664, 62, 18564, 12709, 62, 24908, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 532, 23, 198, 220, 8392, 3697, 9865, 62, 41359, 13246, 62, 19238, 62, 46224, 23333, 62, 1268, 23428, 2389, 220, 220, 796, 532, 24, 198, 220, 8392, 3697, 9865, 62, 25664, 62, 1797, 62, 26288, 37815, 1268, 52, 20958, 220, 220, 220, 220, 220, 796, 532, 940, 198, 220, 8392, 3697, 9865, 62, 1268, 23428, 2389, 62, 15675, 62, 1565, 11929, 50, 62, 39488, 220, 796, 532, 1157, 198, 220, 8392, 3697, 9865, 62, 1268, 23428, 2389, 62, 1503, 38, 5883, 3525, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 532, 1065, 198, 220, 8392, 3697, 9865, 62, 25664, 62, 5097, 48751, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 532, 1485, 628, 220, 8392, 3697, 9865, 62, 18227, 62, 11929, 62, 15675, 62, 1565, 11929, 18421, 796, 657, 198, 220, 8392, 3697, 9865, 62, 15675, 62, 1565, 11929, 18421, 220, 220, 220, 220, 220, 220, 220, 796, 352, 198, 220, 8392, 3697, 9865, 62, 15675, 62, 7036, 62, 1565, 11929, 18421, 220, 220, 220, 796, 362, 628, 220, 8392, 3697, 9865, 62, 15285, 62, 46224, 23333, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 532, 1238, 198, 220, 8392, 3697, 9865, 62, 51, 6684, 62, 10725, 56, 62, 46224, 23333, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 532, 2481, 198, 220, 8392, 3697, 9865, 62, 15285, 62, 49302, 6489, 1546, 62, 1268, 62, 38827, 12532, 220, 220, 220, 220, 220, 220, 796, 532, 1828, 198, 220, 8392, 3697, 9865, 62, 35, 3528, 23678, 62, 1797, 62, 35, 3528, 22921, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 532, 1954, 198, 220, 8392, 3697, 9865, 62, 35, 3528, 22921, 62, 43, 36048, 62, 4221, 1565, 62, 35, 3528, 23678, 220, 220, 796, 532, 1731, 198, 220, 8392, 3697, 9865, 62, 11909, 56, 12310, 1268, 62, 1797, 62, 11909, 16309, 22921, 220, 220, 220, 220, 220, 220, 220, 220, 796, 532, 1495, 198, 220, 8392, 3697, 9865, 62, 35, 1404, 1503, 2943, 12532, 62, 33489, 62, 51, 6684, 62, 3483, 38, 220, 220, 220, 796, 532, 2075, 628, 220, 8392, 3697, 9865, 62, 43717, 796, 1802, 198, 198, 2, 3509, 2546, 286, 23025, 5239, 198, 220, 11593, 1961, 3697, 9865, 62, 18564, 12709, 62, 22921, 62, 1565, 11929, 6234, 62, 43, 1677, 796, 2319, 198, 198, 2, 9881, 287, 4818, 533, 66, 585, 329, 412, 8068, 37647, 11, 1276, 307, 281, 18253, 3294, 286, 1115, 290, 734, 198, 220, 11593, 1961, 3697, 9865, 62, 1565, 11929, 6234, 62, 17513, 51, 1546, 796, 17342, 198, 198, 2, 329, 3597, 691, 198, 220, 11593, 1961, 3697, 9865, 62, 22921, 62, 1565, 11929, 6234, 62, 3398, 22846, 37142, 796, 5598, 628, 220, 11593, 1961, 3697, 9865, 62, 1565, 11929, 62, 44, 3620, 9148, 11290, 50, 57, 796, 8576, 628, 220, 11593, 1961, 37, 2025, 38983, 44909, 796, 3706, 83, 29291, 7203, 1236, 14221, 1600, 14631, 684, 316, 1600, 366, 32257, 1600, 366, 11213, 8973, 8, 628, 220, 825, 1969, 7, 944, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 19006, 4340, 290, 20612, 262, 2393, 13, 628, 220, 220, 220, 770, 2163, 318, 2672, 706, 3597, 13, 376, 11608, 284, 466, 523, 481, 2728, 257, 26940, 290, 17503, 2393, 13, 198, 220, 220, 220, 16409, 657, 319, 1943, 11, 4306, 532, 16, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 2116, 13, 834, 13376, 62, 482, 25, 198, 220, 220, 220, 220, 220, 611, 2116, 13, 834, 19608, 533, 66, 3669, 1279, 1802, 10535, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 834, 7753, 62, 448, 13, 36163, 7, 24940, 11, 33245, 13, 36078, 42, 62, 28480, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 834, 69, 4798, 62, 600, 62, 17618, 62, 13159, 12001, 1143, 7, 944, 13, 834, 7753, 62, 448, 11, 2116, 13, 834, 19608, 533, 66, 3669, 11, 657, 11, 657, 8, 1279, 362, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 834, 7753, 62, 448, 13, 13564, 7, 33661, 7203, 33172, 21004, 2625, 292, 979, 72, 48774, 198, 220, 220, 220, 220, 220, 2116, 13, 834, 13564, 62, 34574, 602, 3419, 198, 220, 220, 220, 220, 220, 2116, 13, 834, 7753, 62, 448, 13, 19836, 3419, 198, 220, 220, 220, 220, 220, 2116, 13, 834, 13376, 62, 482, 796, 657, 198, 220, 220, 220, 220, 220, 1441, 657, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 628, 220, 825, 2196, 7, 944, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 1532, 2196, 318, 352, 13, 405, 788, 340, 481, 1441, 1802, 526, 15931, 198, 220, 220, 220, 1441, 2116, 13, 1961, 3697, 9865, 62, 43717, 628, 220, 825, 900, 36674, 37, 28707, 7, 944, 11, 264, 25, 493, 11, 264, 69, 25, 493, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 50, 1039, 262, 6291, 35324, 286, 6737, 264, 13, 628, 220, 220, 220, 357, 818, 302, 439, 414, 11, 340, 5621, 262, 1271, 286, 8405, 287, 257, 4818, 533, 66, 585, 2014, 198, 220, 220, 220, 383, 6291, 35324, 286, 257, 6737, 318, 5295, 355, 25, 264, 69, 796, 1271, 286, 8405, 287, 257, 4818, 533, 66, 585, 1220, 4818, 533, 66, 585, 9478, 13, 198, 220, 220, 220, 383, 6291, 35324, 21767, 262, 1271, 286, 8405, 287, 257, 4818, 533, 66, 585, 691, 618, 262, 4818, 533, 66, 585, 9478, 318, 900, 284, 262, 4277, 286, 530, 1218, 13, 198, 220, 220, 220, 770, 2163, 318, 2672, 329, 790, 6737, 290, 460, 307, 1444, 691, 878, 262, 717, 6291, 3551, 2223, 13, 628, 220, 220, 220, 264, 318, 262, 6737, 1271, 357, 22570, 12, 3106, 737, 198, 220, 220, 220, 264, 69, 318, 262, 6291, 35324, 13, 198, 220, 220, 220, 16409, 657, 319, 1943, 11, 4306, 532, 16, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 357, 82, 1279, 657, 8, 393, 357, 82, 18189, 2116, 13, 834, 276, 9501, 570, 874, 8, 393, 357, 944, 13, 834, 19608, 533, 66, 3669, 14512, 657, 8, 393, 357, 28202, 1279, 352, 2599, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 2116, 13, 834, 17143, 62, 82, 3149, 62, 525, 62, 22105, 58, 82, 60, 796, 264, 69, 198, 220, 220, 220, 1441, 657, 628, 220, 825, 900, 31611, 40541, 7, 944, 11, 264, 25, 493, 11, 2281, 62, 9806, 25, 12178, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 50, 1039, 262, 5415, 3518, 1988, 286, 6737, 264, 13, 628, 220, 220, 220, 770, 318, 262, 1988, 286, 262, 5128, 286, 262, 49169, 618, 262, 5072, 21767, 262, 1988, 286, 366, 34725, 5415, 1911, 198, 220, 220, 220, 770, 2163, 318, 2672, 329, 790, 6737, 290, 460, 307, 1444, 691, 878, 262, 717, 6291, 3551, 2223, 13, 628, 220, 220, 220, 264, 318, 262, 6737, 1271, 357, 22570, 12, 3106, 737, 198, 220, 220, 220, 2281, 62, 9806, 318, 262, 5415, 5128, 1988, 13, 628, 220, 220, 220, 16409, 657, 319, 1943, 11, 4306, 532, 16, 13, 628, 220, 220, 220, 3465, 25, 554, 412, 8068, 11, 262, 14233, 357, 68, 13, 70, 13, 334, 53, 14, 2545, 8, 290, 11677, 389, 8574, 1262, 1440, 10007, 25, 198, 220, 220, 220, 4875, 5415, 290, 5288, 11, 290, 3518, 5415, 290, 5288, 13, 198, 220, 220, 220, 3423, 11, 4875, 1724, 262, 8246, 1366, 2406, 422, 257, 12694, 393, 49169, 13, 16331, 1724, 262, 4991, 588, 334, 53, 13, 198, 220, 220, 220, 19672, 484, 389, 262, 3257, 5128, 290, 5072, 3815, 286, 262, 49169, 13, 198, 220, 220, 220, 383, 14233, 287, 4991, 14, 2545, 318, 10488, 355, 5679, 25, 628, 220, 220, 220, 4991, 583, 1643, 796, 357, 42854, 3509, 532, 3518, 949, 8, 1220, 357, 34725, 3509, 532, 4875, 949, 8, 628, 220, 220, 220, 383, 4875, 11677, 318, 10488, 355, 5679, 25, 628, 220, 220, 220, 11677, 796, 357, 42854, 3509, 1220, 4991, 583, 1643, 8, 532, 4875, 3509, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 357, 82, 1279, 657, 8, 393, 357, 82, 18189, 2116, 13, 834, 276, 9501, 570, 874, 8, 393, 357, 944, 13, 834, 19608, 533, 66, 3669, 14512, 657, 2599, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 2116, 13, 834, 17143, 62, 34411, 62, 9806, 58, 82, 60, 796, 2281, 62, 9806, 198, 220, 220, 220, 1441, 657, 628, 220, 825, 900, 31611, 44046, 7, 944, 11, 264, 25, 493, 11, 2281, 62, 1084, 25, 12178, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 50, 1039, 262, 5288, 3518, 1988, 286, 6737, 264, 13, 628, 220, 220, 220, 770, 318, 262, 1988, 286, 262, 5128, 286, 262, 49169, 618, 262, 5072, 21767, 262, 1988, 286, 366, 34725, 5288, 1911, 198, 220, 220, 220, 770, 2163, 318, 2672, 329, 790, 6737, 290, 460, 307, 1444, 691, 878, 262, 717, 6291, 3551, 2223, 13, 628, 220, 220, 220, 264, 318, 262, 6737, 1271, 357, 22570, 12, 3106, 737, 198, 220, 220, 220, 2281, 62, 1084, 318, 262, 5288, 5128, 1988, 13, 628, 220, 220, 220, 16409, 657, 319, 1943, 11, 4306, 532, 16, 13, 628, 220, 220, 220, 3465, 25, 554, 412, 8068, 11, 262, 14233, 357, 68, 13, 70, 13, 334, 53, 14, 2545, 8, 290, 11677, 389, 8574, 1262, 1440, 10007, 25, 198, 220, 220, 220, 4875, 5415, 290, 5288, 11, 290, 3518, 5415, 290, 5288, 13, 198, 220, 220, 220, 3423, 11, 4875, 1724, 262, 8246, 1366, 2406, 422, 257, 12694, 393, 49169, 13, 16331, 1724, 262, 4991, 588, 334, 53, 13, 198, 220, 220, 220, 19672, 484, 389, 262, 3257, 5128, 290, 5072, 3815, 286, 262, 49169, 13, 198, 220, 220, 220, 383, 14233, 287, 4991, 14, 2545, 318, 10488, 355, 5679, 25, 628, 220, 220, 220, 4991, 583, 1643, 796, 357, 42854, 3509, 532, 3518, 949, 8, 1220, 357, 34725, 3509, 532, 4875, 949, 8, 628, 220, 220, 220, 383, 4875, 11677, 318, 10488, 355, 5679, 25, 628, 220, 220, 220, 11677, 796, 357, 42854, 3509, 1220, 4991, 583, 1643, 8, 532, 4875, 3509, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 357, 82, 1279, 657, 8, 393, 357, 82, 18189, 2116, 13, 834, 276, 9501, 570, 874, 8, 393, 357, 944, 13, 834, 19608, 533, 66, 3669, 14512, 657, 2599, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 2116, 13, 834, 17143, 62, 34411, 62, 1084, 58, 82, 60, 796, 2281, 62, 1084, 198, 220, 220, 220, 1441, 657, 628, 220, 825, 900, 27640, 40541, 7, 944, 11, 264, 25, 493, 11, 3100, 62, 9806, 25, 493, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 50, 1039, 262, 5415, 4875, 1988, 286, 6737, 264, 13, 628, 220, 220, 220, 770, 318, 262, 1988, 286, 262, 5072, 286, 262, 49169, 618, 262, 5128, 21767, 262, 1988, 286, 366, 42854, 5415, 1911, 198, 220, 220, 220, 770, 2163, 318, 2672, 329, 790, 6737, 290, 460, 307, 1444, 691, 878, 262, 717, 6291, 3551, 2223, 13, 628, 220, 220, 220, 264, 318, 262, 6737, 1271, 357, 22570, 12, 3106, 737, 198, 220, 220, 220, 3100, 62, 9806, 318, 262, 5415, 5072, 1988, 38155, 28, 36203, 3134, 329, 412, 8068, 290, 19841, 807, 30460, 31980, 329, 347, 8068, 737, 628, 220, 220, 220, 16409, 657, 319, 1943, 11, 4306, 532, 16, 13, 628, 220, 220, 220, 3465, 25, 554, 412, 8068, 11, 262, 14233, 357, 68, 13, 70, 13, 334, 53, 14, 2545, 8, 290, 11677, 389, 8574, 1262, 1440, 10007, 25, 198, 220, 220, 220, 4875, 5415, 290, 5288, 11, 290, 3518, 5415, 290, 5288, 13, 198, 220, 220, 220, 3423, 11, 4875, 1724, 262, 8246, 1366, 2406, 422, 257, 12694, 393, 49169, 13, 16331, 1724, 262, 4991, 588, 334, 53, 13, 198, 220, 220, 220, 19672, 484, 389, 262, 3257, 5128, 290, 5072, 3815, 286, 262, 49169, 13, 198, 220, 220, 220, 383, 14233, 287, 4991, 14, 2545, 318, 10488, 355, 5679, 25, 628, 220, 220, 220, 4991, 583, 1643, 796, 357, 42854, 3509, 532, 3518, 949, 8, 1220, 357, 34725, 3509, 532, 4875, 949, 8, 628, 220, 220, 220, 383, 4875, 11677, 318, 10488, 355, 5679, 25, 628, 220, 220, 220, 11677, 796, 357, 42854, 3509, 1220, 4991, 583, 1643, 8, 532, 4875, 3509, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 357, 82, 1279, 657, 8, 393, 357, 82, 18189, 2116, 13, 834, 276, 9501, 570, 874, 8, 393, 357, 944, 13, 834, 19608, 533, 66, 3669, 14512, 657, 2599, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 611, 2116, 13, 834, 276, 69, 14512, 657, 25, 198, 220, 220, 220, 220, 220, 611, 3100, 62, 9806, 1875, 36203, 3134, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 611, 3100, 62, 9806, 1875, 807, 30460, 31980, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 2116, 13, 834, 17143, 62, 12894, 62, 9806, 58, 82, 60, 796, 3100, 62, 9806, 198, 220, 220, 220, 1441, 657, 628, 220, 825, 900, 27640, 44046, 7, 944, 11, 264, 25, 493, 11, 3100, 62, 1084, 25, 493, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 50, 1039, 262, 5288, 4875, 1988, 286, 6737, 264, 13, 628, 220, 220, 220, 770, 318, 262, 1988, 286, 262, 5072, 286, 262, 49169, 618, 262, 5128, 21767, 262, 1988, 286, 366, 42854, 5288, 1911, 198, 220, 220, 220, 770, 2163, 318, 2672, 329, 790, 6737, 290, 460, 307, 1444, 691, 878, 262, 717, 6291, 3551, 2223, 13, 628, 220, 220, 220, 264, 318, 262, 6737, 1271, 357, 22570, 12, 3106, 737, 198, 220, 220, 220, 3100, 62, 1084, 318, 262, 5288, 5072, 1988, 45160, 28, 532, 34159, 3104, 329, 412, 8068, 290, 18189, 532, 23, 30460, 28688, 329, 347, 8068, 737, 628, 220, 220, 220, 16409, 657, 319, 1943, 11, 4306, 532, 16, 13, 628, 220, 220, 220, 3465, 25, 554, 412, 8068, 11, 262, 14233, 357, 68, 13, 70, 13, 334, 53, 14, 2545, 8, 290, 11677, 389, 8574, 1262, 1440, 10007, 25, 198, 220, 220, 220, 4875, 5415, 290, 5288, 11, 290, 3518, 5415, 290, 5288, 13, 198, 220, 220, 220, 3423, 11, 4875, 1724, 262, 8246, 1366, 2406, 422, 257, 12694, 393, 49169, 13, 16331, 1724, 262, 4991, 588, 334, 53, 13, 198, 220, 220, 220, 19672, 484, 389, 262, 3257, 5128, 290, 5072, 3815, 286, 262, 49169, 13, 198, 220, 220, 220, 383, 14233, 287, 4991, 14, 2545, 318, 10488, 355, 5679, 25, 628, 220, 220, 220, 4991, 583, 1643, 796, 357, 42854, 3509, 532, 3518, 949, 8, 1220, 357, 34725, 3509, 532, 4875, 949, 8, 628, 220, 220, 220, 383, 4875, 11677, 318, 10488, 355, 5679, 25, 628, 220, 220, 220, 11677, 796, 357, 42854, 3509, 1220, 4991, 583, 1643, 8, 532, 4875, 3509, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 357, 82, 1279, 657, 8, 393, 357, 82, 18189, 2116, 13, 834, 276, 9501, 570, 874, 8, 393, 357, 944, 13, 834, 19608, 533, 66, 3669, 14512, 657, 2599, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 611, 2116, 13, 834, 276, 69, 14512, 657, 25, 198, 220, 220, 220, 220, 220, 611, 3100, 62, 1084, 1279, 532, 34159, 3104, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 611, 3100, 62, 1084, 1279, 532, 23, 30460, 28688, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 2116, 13, 834, 17143, 62, 12894, 62, 1084, 58, 82, 60, 796, 3100, 62, 1084, 198, 220, 220, 220, 1441, 657, 628, 220, 825, 900, 11712, 282, 33986, 7, 944, 11, 264, 25, 493, 11, 6167, 25, 965, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 50, 1039, 262, 6167, 357, 3672, 8, 286, 6737, 264, 13, 628, 220, 220, 220, 357, 68, 13, 70, 13, 366, 5837, 16, 1600, 366, 33890, 46, 17, 1600, 3503, 2014, 10903, 1276, 3994, 3601, 540, 37101, 691, 13, 198, 220, 220, 220, 770, 2163, 318, 7151, 329, 790, 6737, 290, 460, 307, 1444, 691, 878, 262, 717, 6291, 3551, 2223, 13, 628, 220, 220, 220, 264, 318, 262, 6737, 1271, 357, 22570, 12, 3106, 737, 198, 220, 220, 220, 6167, 318, 262, 1051, 439, 9608, 13, 198, 220, 220, 220, 16409, 657, 319, 1943, 11, 4306, 532, 16, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 357, 82, 1279, 657, 8, 393, 357, 82, 18189, 2116, 13, 834, 276, 9501, 570, 874, 8, 393, 357, 944, 13, 834, 19608, 533, 66, 3669, 14512, 657, 2599, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 2116, 13, 834, 17143, 62, 18242, 58, 82, 60, 796, 6167, 198, 220, 220, 220, 1441, 657, 628, 220, 825, 900, 6719, 22417, 7, 944, 11, 264, 25, 493, 11, 7694, 346, 353, 25, 965, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 50, 1039, 262, 7694, 346, 353, 6764, 286, 6737, 264, 13, 628, 220, 220, 220, 357, 68, 13, 70, 13, 366, 14082, 25, 15, 13, 2713, 7399, 1600, 366, 19930, 25, 9031, 7399, 1600, 366, 45, 25, 1899, 7399, 1600, 3503, 2014, 10903, 1276, 3994, 3601, 540, 37101, 691, 13, 198, 220, 220, 220, 770, 2163, 318, 11902, 290, 460, 307, 1444, 691, 878, 262, 717, 6291, 3551, 2223, 13, 628, 220, 220, 220, 264, 318, 262, 6737, 1271, 357, 22570, 12, 3106, 737, 198, 220, 220, 220, 7694, 346, 353, 318, 262, 7694, 346, 353, 6764, 13, 198, 220, 220, 220, 16409, 657, 319, 1943, 11, 4306, 532, 16, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 357, 82, 1279, 657, 8, 393, 357, 82, 18189, 2116, 13, 834, 276, 9501, 570, 874, 8, 393, 357, 944, 13, 834, 19608, 533, 66, 3669, 14512, 657, 2599, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 2116, 13, 834, 17143, 62, 3866, 24455, 58, 82, 60, 796, 7694, 346, 353, 198, 220, 220, 220, 1441, 657, 628, 220, 825, 900, 8291, 646, 2189, 7, 944, 11, 264, 25, 493, 11, 1007, 646, 2189, 25, 965, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 50, 1039, 262, 1007, 646, 2189, 6764, 286, 6737, 264, 13, 628, 220, 220, 220, 5855, 10262, 10262, 2601, 6508, 39780, 1600, 3503, 2014, 10903, 1276, 3994, 3601, 540, 37101, 691, 13, 198, 220, 220, 220, 770, 2163, 318, 11902, 290, 460, 307, 1444, 691, 878, 262, 717, 6291, 3551, 2223, 13, 628, 220, 220, 220, 264, 318, 262, 6737, 1271, 357, 22570, 12, 3106, 737, 198, 220, 220, 220, 1007, 646, 2189, 318, 262, 1007, 646, 2189, 6764, 13, 198, 220, 220, 220, 16409, 657, 319, 1943, 11, 4306, 532, 16, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 357, 82, 1279, 657, 8, 393, 357, 82, 18189, 2116, 13, 834, 276, 9501, 570, 874, 8, 393, 357, 944, 13, 834, 19608, 533, 66, 3669, 14512, 657, 2599, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 2116, 13, 834, 17143, 62, 7645, 646, 2189, 58, 82, 60, 796, 1007, 646, 2189, 198, 220, 220, 220, 1441, 657, 628, 220, 825, 900, 31611, 29271, 3004, 7, 944, 11, 264, 25, 493, 11, 3518, 62, 46156, 25, 965, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 50, 1039, 262, 3518, 62, 46156, 357, 20850, 8, 286, 6737, 264, 13, 628, 220, 220, 220, 5855, 84, 53, 1600, 366, 33, 5868, 1600, 366, 42646, 1600, 366, 35, 1533, 81, 33283, 3503, 2014, 10903, 1276, 3994, 3601, 540, 37101, 691, 13, 198, 220, 220, 220, 770, 2163, 7151, 329, 790, 6737, 290, 460, 307, 1444, 691, 878, 262, 717, 6291, 3551, 2223, 13, 628, 220, 220, 220, 264, 318, 262, 6737, 1271, 357, 22570, 12, 3106, 737, 198, 220, 220, 220, 3518, 62, 46156, 318, 262, 3518, 15793, 6764, 13, 198, 220, 220, 220, 16409, 657, 319, 1943, 11, 4306, 532, 16, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 357, 82, 1279, 657, 8, 393, 357, 82, 18189, 2116, 13, 834, 276, 9501, 570, 874, 8, 393, 357, 944, 13, 834, 19608, 533, 66, 3669, 14512, 657, 2599, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 2116, 13, 834, 17143, 62, 34411, 46156, 58, 82, 60, 796, 3518, 62, 46156, 198, 220, 220, 220, 1441, 657, 628, 220, 825, 900, 10434, 10430, 7575, 7, 944, 11, 614, 25, 493, 11, 1227, 25, 493, 11, 1110, 25, 493, 11, 1711, 25, 493, 11, 5664, 25, 493, 11, 1218, 25, 493, 11, 850, 12227, 25, 493, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 21394, 262, 923, 4475, 290, 923, 2435, 13, 628, 220, 220, 220, 1002, 407, 1444, 11, 262, 1080, 3128, 290, 640, 379, 19124, 481, 307, 973, 13, 198, 220, 220, 220, 770, 2163, 318, 11902, 290, 460, 307, 1444, 691, 878, 262, 717, 6291, 3551, 2223, 13, 198, 220, 220, 220, 1002, 850, 12227, 15440, 318, 407, 2622, 393, 407, 9723, 11, 2666, 340, 379, 6632, 13, 628, 220, 220, 220, 614, 25, 8069, 532, 20343, 198, 220, 220, 220, 1227, 25, 352, 532, 1105, 198, 220, 220, 220, 1110, 25, 352, 532, 3261, 198, 220, 220, 220, 1711, 25, 657, 532, 2242, 198, 220, 220, 220, 5664, 25, 657, 532, 7863, 198, 220, 220, 220, 1218, 25, 657, 532, 7863, 198, 220, 220, 220, 850, 12227, 25, 657, 532, 860, 17032, 220, 6241, 287, 4991, 286, 1802, 4580, 12211, 82, 628, 220, 220, 220, 16409, 657, 319, 1943, 11, 4306, 532, 16, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 2116, 13, 834, 19608, 533, 66, 3669, 14512, 657, 25, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 611, 357, 1941, 1279, 8069, 8, 220, 220, 393, 357, 1941, 1875, 20343, 8, 393, 3467, 198, 220, 220, 220, 220, 220, 220, 357, 8424, 1279, 352, 8, 220, 220, 220, 220, 393, 357, 8424, 1875, 1105, 8, 220, 393, 3467, 198, 220, 220, 220, 220, 220, 220, 357, 820, 1279, 352, 8, 220, 220, 220, 220, 220, 220, 393, 357, 820, 1875, 3261, 8, 220, 220, 220, 393, 3467, 198, 220, 220, 220, 220, 220, 220, 357, 9769, 1279, 657, 8, 220, 220, 220, 220, 220, 393, 357, 9769, 1875, 2242, 8, 220, 220, 393, 3467, 198, 220, 220, 220, 220, 220, 220, 357, 11374, 1279, 657, 8, 220, 220, 220, 393, 357, 11374, 1875, 7863, 8, 393, 3467, 198, 220, 220, 220, 220, 220, 220, 357, 12227, 1279, 657, 8, 220, 220, 220, 393, 357, 12227, 1875, 7863, 8, 393, 3467, 198, 220, 220, 220, 220, 220, 220, 357, 7266, 12227, 1279, 657, 8, 393, 357, 7266, 12227, 1875, 860, 17032, 2599, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 2116, 13, 834, 9688, 4475, 62, 1941, 796, 614, 198, 220, 220, 220, 2116, 13, 834, 9688, 4475, 62, 8424, 796, 1227, 198, 220, 220, 220, 2116, 13, 834, 9688, 4475, 62, 820, 796, 1110, 198, 220, 220, 220, 2116, 13, 834, 9688, 2435, 62, 9769, 796, 1711, 198, 220, 220, 220, 2116, 13, 834, 9688, 2435, 62, 11374, 796, 5664, 198, 220, 220, 220, 2116, 13, 834, 9688, 2435, 62, 12227, 796, 1218, 198, 220, 220, 220, 2116, 13, 834, 9688, 2435, 62, 28968, 796, 850, 12227, 1635, 8576, 198, 220, 220, 220, 1441, 657, 628, 220, 825, 900, 12130, 1153, 5376, 7, 944, 11, 1438, 25, 965, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 50, 1039, 262, 5827, 3672, 13, 628, 220, 220, 220, 10903, 1276, 3994, 3601, 540, 37101, 691, 13, 198, 220, 220, 220, 770, 2163, 318, 11902, 290, 460, 307, 1444, 691, 878, 262, 717, 6291, 3551, 2223, 13, 198, 220, 220, 220, 16409, 657, 319, 1943, 11, 4306, 532, 16, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 2116, 13, 834, 19608, 533, 66, 3669, 14512, 657, 25, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 2116, 13, 834, 9541, 62, 26029, 62, 3672, 796, 1438, 198, 220, 220, 220, 1441, 657, 628, 220, 825, 900, 12130, 1153, 10669, 7, 944, 11, 2438, 25, 965, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 50, 1039, 262, 5827, 8189, 13, 628, 220, 220, 220, 10903, 1276, 3994, 3601, 540, 37101, 691, 13, 198, 220, 220, 220, 770, 2163, 318, 11902, 290, 460, 307, 1444, 691, 878, 262, 717, 6291, 3551, 2223, 13, 198, 220, 220, 220, 16409, 657, 319, 1943, 11, 4306, 532, 16, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 2116, 13, 834, 19608, 533, 66, 3669, 14512, 657, 25, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 2116, 13, 834, 9541, 62, 26029, 8189, 796, 2438, 198, 220, 220, 220, 1441, 657, 628, 220, 825, 900, 12130, 1153, 41394, 7, 944, 11, 5279, 25, 493, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 50, 1039, 262, 5827, 338, 5279, 13, 628, 220, 220, 220, 5279, 25, 657, 796, 4048, 11, 352, 796, 4257, 11, 362, 796, 6439, 393, 407, 9723, 357, 12286, 8, 198, 220, 220, 220, 770, 2163, 318, 11902, 290, 460, 307, 1444, 691, 878, 262, 717, 6291, 3551, 2223, 13, 198, 220, 220, 220, 16409, 657, 319, 1943, 11, 4306, 532, 16, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 2116, 13, 834, 19608, 533, 66, 3669, 14512, 657, 25, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 611, 357, 8388, 1279, 657, 8, 393, 357, 8388, 1875, 362, 2599, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 2116, 13, 834, 9541, 62, 8388, 796, 5279, 198, 220, 220, 220, 1441, 657, 628, 220, 825, 900, 12130, 1153, 38480, 10430, 7, 944, 11, 614, 25, 493, 11, 1227, 25, 493, 11, 1110, 25, 493, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 50, 1039, 262, 3871, 6, 4082, 4475, 13, 628, 220, 220, 220, 770, 2163, 318, 11902, 290, 460, 307, 1444, 691, 878, 262, 717, 6291, 3551, 2223, 13, 628, 220, 220, 220, 614, 25, 21431, 532, 20343, 198, 220, 220, 220, 1227, 25, 352, 532, 1105, 198, 220, 220, 220, 1110, 25, 352, 532, 3261, 628, 220, 220, 220, 16409, 657, 319, 1943, 11, 4306, 532, 16, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 2116, 13, 834, 19608, 533, 66, 3669, 14512, 657, 25, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 611, 357, 1941, 1279, 21431, 8, 220, 220, 393, 357, 1941, 1875, 20343, 8, 393, 3467, 198, 220, 220, 220, 220, 220, 220, 357, 8424, 1279, 352, 8, 220, 220, 220, 220, 393, 357, 8424, 1875, 1105, 8, 220, 393, 3467, 198, 220, 220, 220, 220, 220, 220, 357, 820, 1279, 352, 8, 220, 220, 220, 220, 220, 220, 393, 357, 820, 1875, 3261, 2599, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 2116, 13, 834, 9541, 62, 24280, 4475, 62, 1941, 796, 614, 198, 220, 220, 220, 2116, 13, 834, 9541, 62, 24280, 4475, 62, 8424, 796, 1227, 198, 220, 220, 220, 2116, 13, 834, 9541, 62, 24280, 4475, 62, 820, 796, 1110, 198, 220, 220, 220, 1441, 657, 628, 220, 825, 900, 17699, 12130, 1153, 12360, 7, 944, 11, 3224, 25, 965, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 50, 1039, 262, 3224, 1321, 3519, 284, 262, 5827, 13, 628, 220, 220, 220, 10903, 1276, 3994, 3601, 540, 37101, 691, 13, 198, 220, 220, 220, 770, 2163, 318, 11902, 290, 460, 307, 1444, 691, 878, 262, 717, 6291, 3551, 2223, 13, 198, 220, 220, 220, 16409, 657, 319, 1943, 11, 4306, 532, 16, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 2116, 13, 834, 19608, 533, 66, 3669, 14512, 657, 25, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 2116, 13, 834, 9541, 62, 26029, 62, 2860, 1859, 796, 3224, 198, 220, 220, 220, 1441, 657, 628, 220, 825, 900, 41862, 1358, 10669, 7, 944, 11, 13169, 62, 8189, 25, 965, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 50, 1039, 262, 3662, 2438, 13, 628, 220, 220, 220, 10903, 1276, 3994, 3601, 540, 37101, 691, 13, 198, 220, 220, 220, 770, 2163, 318, 11902, 290, 460, 307, 1444, 691, 878, 262, 717, 6291, 3551, 2223, 13, 198, 220, 220, 220, 16409, 657, 319, 1943, 11, 4306, 532, 16, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 2116, 13, 834, 19608, 533, 66, 3669, 14512, 657, 25, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 2116, 13, 834, 9541, 62, 28482, 8189, 796, 13169, 62, 8189, 198, 220, 220, 220, 1441, 657, 628, 220, 825, 900, 25574, 6749, 7, 944, 11, 33024, 25, 965, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 50, 1039, 262, 1438, 393, 4686, 286, 262, 33024, 508, 6157, 262, 8296, 13, 628, 220, 220, 220, 10903, 1276, 3994, 3601, 540, 37101, 691, 13, 198, 220, 220, 220, 770, 2163, 318, 11902, 290, 460, 307, 1444, 691, 878, 262, 717, 6291, 3551, 2223, 13, 198, 220, 220, 220, 16409, 657, 319, 1943, 11, 4306, 532, 16, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 2116, 13, 834, 19608, 533, 66, 3669, 14512, 657, 25, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 2116, 13, 834, 9541, 62, 23873, 6749, 796, 33024, 198, 220, 220, 220, 1441, 657, 628, 220, 825, 900, 23588, 4667, 7, 944, 11, 5112, 25, 965, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 50, 1039, 262, 6764, 286, 262, 5112, 973, 329, 262, 8296, 13, 628, 220, 220, 220, 10903, 1276, 3994, 3601, 540, 37101, 691, 13, 198, 220, 220, 220, 770, 2163, 318, 11902, 290, 460, 307, 1444, 691, 878, 262, 717, 6291, 3551, 2223, 13, 198, 220, 220, 220, 16409, 657, 319, 1943, 11, 4306, 532, 16, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 2116, 13, 834, 19608, 533, 66, 3669, 14512, 657, 25, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 2116, 13, 834, 9541, 62, 4853, 4667, 796, 5112, 198, 220, 220, 220, 1441, 657, 628, 220, 825, 900, 17699, 6690, 1284, 12360, 7, 944, 11, 3224, 25, 965, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 50, 1039, 262, 3224, 7508, 3519, 284, 262, 8296, 13, 628, 220, 220, 220, 10903, 1276, 3994, 3601, 540, 37101, 691, 13, 198, 220, 220, 220, 770, 2163, 318, 11902, 290, 460, 307, 1444, 691, 878, 262, 717, 6291, 3551, 2223, 13, 198, 220, 220, 220, 16409, 657, 319, 1943, 11, 4306, 532, 16, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 2116, 13, 834, 19608, 533, 66, 3669, 14512, 657, 25, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 198, 220, 220, 220, 2116, 13, 834, 9541, 62, 8344, 1284, 62, 2860, 1859, 796, 3224, 198, 220, 220, 220, 1441, 657, 628, 220, 825, 3551, 50, 12629, 7, 944, 11, 42684, 25, 45941, 13, 18747, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 16594, 8405, 13, 628, 220, 220, 220, 12257, 274, 264, 69, 8405, 656, 262, 2393, 13, 198, 220, 220, 220, 347, 3046, 1276, 307, 257, 530, 12, 19577, 299, 32152, 7177, 7268, 8405, 286, 530, 6737, 286, 4818, 265, 2981, 493, 2624, 11, 12178, 62, 393, 12178, 2414, 13, 198, 220, 220, 220, 1114, 412, 8068, 11, 4818, 323, 431, 493, 1433, 460, 635, 307, 973, 13, 198, 220, 220, 220, 1002, 42684, 318, 286, 2099, 18253, 11, 262, 8405, 389, 3194, 656, 262, 2393, 1231, 597, 11315, 13, 198, 220, 220, 220, 1002, 42684, 318, 286, 2099, 12178, 11, 262, 3518, 8405, 481, 307, 11513, 284, 4875, 8405, 1262, 262, 198, 220, 220, 220, 3815, 286, 3518, 5415, 11, 3518, 5288, 11, 4875, 5415, 290, 4875, 5288, 13, 198, 220, 220, 220, 383, 1271, 286, 8405, 3194, 318, 4961, 284, 262, 6291, 35324, 286, 262, 6737, 13, 198, 220, 220, 220, 357, 37739, 11, 340, 338, 262, 1988, 326, 318, 900, 351, 900, 36674, 37, 28707, 3419, 737, 198, 220, 220, 220, 12849, 286, 42684, 815, 307, 4961, 284, 393, 5749, 621, 262, 6291, 35324, 13, 198, 220, 220, 220, 4889, 428, 2163, 329, 790, 6737, 287, 262, 2393, 13, 383, 1502, 318, 1593, 0, 198, 220, 220, 220, 1649, 612, 389, 604, 10425, 287, 262, 2393, 11, 220, 262, 1502, 286, 4585, 428, 2163, 198, 220, 220, 220, 1276, 307, 25, 6737, 657, 11, 6737, 352, 11, 6737, 362, 11, 6737, 513, 11, 6737, 657, 11, 6737, 352, 11, 6737, 362, 11, 3503, 13, 198, 220, 220, 220, 383, 886, 286, 257, 8296, 1276, 1464, 307, 379, 262, 886, 286, 257, 1844, 6772, 13, 628, 220, 220, 220, 42684, 318, 257, 530, 12, 19577, 299, 32152, 7177, 286, 4818, 265, 2981, 493, 2624, 11, 12178, 62, 393, 12178, 2414, 13, 1114, 412, 8068, 11, 4818, 323, 431, 493, 1433, 460, 635, 307, 973, 13, 198, 220, 220, 220, 16409, 657, 319, 1943, 11, 4306, 532, 16, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 2116, 13, 834, 13376, 62, 482, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 628, 220, 220, 220, 611, 42684, 13, 358, 320, 14512, 352, 25, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 628, 220, 220, 220, 611, 357, 29325, 13, 67, 4906, 14512, 45941, 13, 600, 1433, 8, 290, 357, 29325, 13, 67, 4906, 14512, 45941, 13, 600, 2624, 8, 290, 357, 29325, 13, 67, 4906, 14512, 45941, 13, 22468, 62, 8, 290, 357, 29325, 13, 67, 4906, 14512, 45941, 13, 22468, 2414, 2599, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 628, 220, 220, 220, 611, 357, 29325, 13, 67, 4906, 6624, 45941, 13, 600, 1433, 8, 290, 357, 944, 13, 834, 65, 7568, 14512, 657, 2599, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 628, 220, 220, 220, 1225, 9501, 570, 282, 796, 2116, 13, 834, 12683, 282, 62, 13564, 62, 43167, 62, 1930, 628, 220, 220, 220, 611, 2116, 13, 834, 19608, 533, 66, 3669, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 611, 1225, 9501, 570, 282, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4049, 796, 2116, 13, 834, 13564, 62, 276, 69, 62, 25677, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 611, 4049, 14512, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4049, 628, 220, 220, 220, 264, 69, 796, 2116, 13, 834, 17143, 62, 82, 3149, 62, 525, 62, 22105, 58, 276, 9501, 570, 282, 60, 628, 220, 220, 220, 3100, 9806, 796, 2116, 13, 834, 17143, 62, 12894, 62, 9806, 58, 276, 9501, 570, 282, 60, 628, 220, 220, 220, 3100, 1084, 796, 2116, 13, 834, 17143, 62, 12894, 62, 1084, 58, 276, 9501, 570, 282, 60, 628, 220, 220, 220, 611, 264, 69, 1875, 42684, 13, 7857, 25, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 628, 220, 220, 220, 611, 2116, 13, 834, 276, 69, 14512, 657, 25, 198, 220, 220, 220, 220, 220, 611, 357, 29325, 13, 67, 4906, 6624, 45941, 13, 600, 1433, 8, 393, 357, 29325, 13, 67, 4906, 6624, 45941, 13, 600, 2624, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 15, 11, 264, 69, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 42684, 58, 72, 60, 1875, 3100, 9806, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42684, 58, 72, 60, 796, 3100, 9806, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 42684, 58, 72, 60, 1279, 3100, 1084, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42684, 58, 72, 60, 796, 3100, 1084, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 834, 7753, 62, 448, 13, 13564, 7, 29325, 58, 72, 4083, 459, 2981, 7203, 600, 1433, 11074, 83, 26730, 4879, 7, 2875, 2625, 34, 48774, 198, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 15, 11, 264, 69, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 493, 19510, 29325, 58, 72, 60, 1220, 2116, 13, 834, 17143, 62, 2545, 8367, 58, 276, 9501, 570, 282, 12962, 532, 2116, 13, 834, 17143, 62, 28968, 58, 276, 9501, 570, 282, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1988, 1875, 3100, 9806, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 3100, 9806, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1988, 1279, 3100, 1084, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 3100, 1084, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 834, 7753, 62, 448, 13, 13564, 7, 8367, 13, 1462, 62, 33661, 7, 17, 11, 18022, 2875, 2625, 31629, 1600, 4488, 28, 17821, 4008, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 611, 42684, 13, 67, 4906, 6624, 45941, 13, 600, 2624, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 15, 11, 264, 69, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 493, 7, 29325, 58, 72, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1988, 1875, 3100, 9806, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 3100, 9806, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1988, 1279, 3100, 1084, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 3100, 1084, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 834, 7753, 62, 448, 13, 13564, 7, 8367, 13, 1462, 62, 33661, 7, 18, 11, 18022, 2875, 2625, 31629, 1600, 4488, 28, 17821, 4008, 198, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 15, 11, 264, 69, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 493, 19510, 29325, 58, 72, 60, 1220, 2116, 13, 834, 17143, 62, 2545, 8367, 58, 276, 9501, 570, 282, 12962, 532, 2116, 13, 834, 17143, 62, 28968, 58, 276, 9501, 570, 282, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1988, 1875, 3100, 9806, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 3100, 9806, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1988, 1279, 3100, 1084, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 3100, 1084, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 834, 7753, 62, 448, 13, 13564, 7, 8367, 13, 1462, 62, 33661, 7, 18, 11, 18022, 2875, 2625, 31629, 1600, 4488, 28, 17821, 4008, 628, 220, 220, 220, 2116, 13, 834, 12683, 282, 62, 13564, 62, 43167, 62, 1930, 15853, 352, 628, 220, 220, 220, 611, 2116, 13, 834, 12683, 282, 62, 13564, 62, 43167, 62, 1930, 6624, 2116, 13, 834, 276, 9501, 570, 874, 25, 198, 220, 220, 220, 220, 220, 2116, 13, 834, 12683, 282, 62, 13564, 62, 43167, 62, 1930, 796, 657, 628, 220, 220, 220, 220, 220, 611, 2116, 13, 834, 13564, 62, 39240, 7, 944, 13, 834, 7753, 62, 448, 8, 14512, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 532, 16, 628, 220, 220, 220, 220, 220, 2116, 13, 834, 19608, 533, 66, 3669, 15853, 352, 628, 220, 220, 220, 1441, 657, 628, 220, 825, 900, 6601, 23739, 26054, 7, 944, 11, 9478, 25, 493, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 50, 1039, 262, 4818, 533, 66, 585, 9478, 13, 628, 220, 220, 220, 770, 2163, 318, 11902, 11, 7685, 345, 836, 470, 761, 284, 1487, 262, 4277, 1988, 286, 530, 1218, 13, 198, 220, 220, 220, 770, 2163, 318, 5626, 4526, 10917, 37819, 475, 460, 307, 1444, 691, 878, 262, 717, 6291, 3551, 2223, 13, 628, 220, 220, 220, 770, 2163, 460, 307, 973, 618, 345, 765, 284, 779, 257, 1729, 12, 41433, 6072, 20053, 378, 13, 198, 220, 220, 220, 1114, 1672, 11, 611, 345, 765, 284, 779, 257, 6072, 20053, 378, 286, 657, 13, 20, 26109, 11, 900, 262, 6291, 35324, 284, 642, 26109, 290, 198, 220, 220, 220, 262, 4818, 533, 66, 585, 9478, 284, 838, 4201, 11, 393, 46596, 11, 900, 262, 6291, 35324, 284, 352, 26109, 290, 198, 220, 220, 220, 262, 4818, 533, 66, 585, 9478, 284, 362, 4201, 13, 198, 220, 220, 220, 770, 2163, 460, 635, 307, 973, 618, 345, 765, 284, 779, 257, 845, 1029, 6072, 20053, 378, 13, 198, 220, 220, 220, 1114, 1672, 11, 611, 345, 765, 284, 779, 257, 6072, 20053, 378, 286, 642, 26499, 11, 198, 220, 220, 220, 900, 262, 6291, 35324, 284, 23336, 26109, 290, 262, 4818, 533, 66, 585, 9478, 284, 352, 4580, 12211, 13, 198, 220, 220, 220, 2141, 407, 779, 428, 2163, 611, 407, 3306, 13, 628, 220, 220, 220, 9478, 318, 6241, 287, 4580, 12211, 82, 11, 2837, 25, 352, 532, 718, 24598, 220, 357, 16, 84, 6558, 13, 532, 3126, 792, 2014, 198, 220, 220, 220, 16409, 657, 319, 1943, 11, 4306, 532, 16, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 357, 32257, 1279, 352, 8, 393, 357, 32257, 1875, 718, 24598, 8, 393, 357, 944, 13, 834, 19608, 533, 66, 3669, 14512, 657, 2599, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 628, 220, 220, 220, 2116, 13, 834, 6511, 62, 7890, 62, 22105, 62, 32257, 796, 9478, 1635, 838, 628, 220, 220, 220, 1441, 657, 628, 220, 825, 900, 15057, 5189, 2025, 38983, 11712, 874, 7, 944, 11, 24708, 62, 12683, 874, 25, 493, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 50, 1039, 262, 1271, 286, 23025, 10425, 13, 628, 220, 220, 220, 383, 4277, 1988, 318, 352, 13, 198, 220, 220, 220, 770, 2163, 318, 11902, 290, 11, 611, 973, 11, 1276, 307, 1444, 878, 262, 717, 6291, 3551, 2223, 13, 198, 220, 220, 220, 29282, 345, 836, 470, 761, 284, 1487, 262, 4277, 1988, 13, 5514, 618, 262, 1271, 286, 37647, 198, 220, 220, 220, 345, 765, 284, 3551, 318, 2440, 621, 262, 1271, 286, 4818, 533, 66, 3669, 287, 262, 8296, 11, 345, 460, 779, 198, 220, 220, 220, 428, 2163, 284, 2620, 262, 6143, 2272, 329, 37647, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 357, 34574, 62, 12683, 874, 1279, 352, 8, 393, 357, 34574, 62, 12683, 874, 18189, 2116, 13, 834, 1961, 3697, 9865, 62, 22921, 62, 1565, 11929, 6234, 62, 3398, 22846, 37142, 8, 393, 357, 944, 13, 834, 19608, 533, 66, 3669, 14512, 657, 2599, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 628, 220, 220, 220, 2116, 13, 834, 48624, 62, 34574, 62, 1349, 82, 796, 24708, 62, 12683, 874, 628, 220, 220, 220, 1441, 657, 628, 220, 825, 3551, 2025, 38983, 7, 944, 11, 21228, 25, 493, 11, 9478, 25, 493, 11, 6764, 25, 965, 8, 4613, 493, 25, 198, 220, 220, 220, 37227, 20257, 274, 281, 23025, 14, 15596, 284, 262, 2393, 13, 628, 220, 220, 220, 21228, 318, 3585, 284, 262, 923, 2435, 286, 262, 8296, 290, 1276, 307, 18189, 657, 13, 198, 220, 220, 220, 21228, 290, 9478, 389, 287, 4991, 286, 1802, 4580, 12211, 82, 13, 22406, 318, 657, 13, 18005, 1218, 13, 198, 220, 220, 220, 412, 13, 70, 13, 4974, 13, 2998, 16, 4201, 1276, 307, 3194, 355, 28560, 43147, 13, 198, 220, 220, 220, 1002, 9478, 318, 6439, 393, 407, 9723, 25, 900, 257, 4633, 1271, 13841, 16, 737, 198, 220, 220, 220, 12489, 318, 257, 4731, 7268, 262, 2420, 326, 8477, 262, 1785, 13, 198, 220, 220, 220, 770, 2163, 318, 11902, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 357, 944, 13, 834, 13376, 62, 482, 6624, 657, 8, 393, 357, 684, 316, 1279, 657, 2599, 198, 220, 220, 220, 220, 220, 1441, 532, 16, 628, 220, 220, 220, 2116, 13, 834, 34574, 602, 4868, 13, 33295, 7, 944, 13, 834, 1961, 37, 2025, 38983, 44909, 7, 684, 316, 796, 21228, 11, 9478, 796, 9478, 11, 6764, 796, 6764, 4008, 628, 220, 220, 220, 2116, 13, 834, 1236, 1747, 62, 259, 62, 7753, 15853, 352, 628, 220, 220, 220, 1441, 657, 198, 198, 29113, 29113, 14468, 198, 2, 422, 994, 691, 5387, 3384, 4487, 198, 29113, 29113, 14468, 198, 198, 2, 6797, 262, 412, 8068, 13639, 198, 198, 2, 6797, 257, 309, 1847, 198, 198, 2, 6797, 262, 37647, 284, 262, 2393, 198, 198, 2, 5288, 318, 262, 5288, 19561, 326, 481, 307, 10398, 357, 40191, 1051, 407, 3017, 828, 3756, 6632, 338, 481, 307, 2087, 611, 3306, 198, 2, 611, 1051, 318, 6632, 11, 691, 4633, 3146, 481, 423, 262, 1051, 705, 19355, 2095, 198, 2, 611, 1051, 318, 530, 11, 262, 1051, 705, 10, 6, 393, 705, 19355, 2095, 481, 1464, 307, 10398, 198, 2, 5860, 262, 1271, 286, 3435, 10398, 198, 198, 2, 5288, 318, 262, 5288, 19561, 326, 481, 307, 10398, 357, 40191, 1051, 407, 3017, 828, 3756, 6632, 338, 481, 307, 2087, 611, 3306, 198, 2, 611, 1051, 318, 6632, 11, 691, 4633, 3146, 481, 423, 262, 1051, 705, 19355, 2095, 198, 2, 611, 1051, 318, 530, 11, 262, 1051, 705, 10, 6, 393, 705, 19355, 2095, 481, 1464, 307, 10398, 198, 2, 5860, 262, 1271, 286, 3435, 10398, 198, 198, 2, 5288, 318, 262, 5288, 19561, 326, 481, 307, 10398, 357, 40191, 1051, 407, 3017, 828, 3756, 6632, 338, 481, 307, 2087, 611, 3306, 198, 2, 611, 1051, 318, 6632, 11, 691, 4633, 3146, 481, 423, 262, 1051, 705, 19355, 2095, 198, 2, 611, 1051, 318, 530, 11, 262, 1051, 705, 10, 6, 393, 705, 19355, 2095, 481, 1464, 307, 10398, 198, 2, 5860, 262, 2033, 286, 3435, 10398, 198, 198, 2, 651, 4731, 4129, 198, 198, 2, 4866, 257, 4731, 198, 198, 2, 26161, 9133, 12, 16, 284, 37101, 198, 198, 29113, 29113, 14468, 198, 2, 23578, 1398, 412, 8068, 16002, 198, 29113, 29113, 14468, 198, 198, 29113, 29113, 14468, 198, 2, 33303, 1398, 412, 8068, 1069, 4516, 198, 29113, 29113, 14468, 198, 198, 29113, 29113, 14468, 198, 2, 23578, 1398, 412, 8068, 1069, 4516, 198, 29113, 29113, 14468, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 198 ]
2.926959
10,323
n = int(input()) nums = [] nums2 = [] for i in range(n): nums.append(int(input())) print("nums.append", nums) nums2 = sorted(nums) print("sorted(nums)", nums2) print(nums2[n - 2]) print(nums2[n - 1])
[ 77, 796, 493, 7, 15414, 28955, 198, 77, 5700, 796, 17635, 198, 77, 5700, 17, 796, 17635, 198, 1640, 1312, 287, 2837, 7, 77, 2599, 198, 220, 220, 220, 997, 82, 13, 33295, 7, 600, 7, 15414, 3419, 4008, 198, 220, 220, 220, 3601, 7203, 77, 5700, 13, 33295, 1600, 997, 82, 8, 198, 77, 5700, 17, 796, 23243, 7, 77, 5700, 8, 198, 4798, 7203, 82, 9741, 7, 77, 5700, 42501, 997, 82, 17, 8, 198, 4798, 7, 77, 5700, 17, 58, 77, 532, 362, 12962, 198, 4798, 7, 77, 5700, 17, 58, 77, 532, 352, 12962, 198 ]
2.10101
99
# -*- coding: utf-8 -*- """ Created on Mon Feb 5 17:01:13 2018 @author: Pavel """ """ This function will take the whole of SUN database and flaten it into a single folder while resizing and cropping all images into given square shape. If the file is smaller than that, it will be ignored. """ import os from PIL import Image from resizeimage import resizeimage #the below should point to the file containing the alphabet letter folders SUN_images_dir = "E:/LabelMeToolbox/real_data/images" # The below folder will contain the resized images resized_address = "D:/old_files/aaaaa/Anglie/imperial/2017-2018/group_project/OcadoLobster/data/resized_background/new_test/" indoor_address = "D:/old_files/aaaaa/Anglie/imperial/2017-2018/group_project/OcadoLobster/data/resized_background/indoor/" outdoor_address = "D:/old_files/aaaaa/Anglie/imperial/2017-2018/group_project/OcadoLobster/data/resized_background/outdoor/" def resize_and_crop(image_address, output_address, f_widht, f_height): """ Function for resizing and cropping of single image. The image has to be bigger than the desired size. If smaller in any dimension, the image will be discarded Args: image_address (string): Image to be resized output_address (string): Final destination of the resized image f_widht (int): Final desired widht in pixels f_height (int): Final desired height in pixels Returns: Nothing """ with open(image_address, 'r+b') as f: with Image.open(f) as image: widht, height = image.size if(widht >= f_widht and height >= f_height): cover = resizeimage.resize_cover(image, [f_widht, f_height]) cover.save(output_address, image.format) else: print("Image too small to be resized") def find_all_files(min_pixels, origin_folder, target_folder): """ Function that searches all subfolders of given folder. This function assumes that all files in that folder are image files If this is not the case errors will occur as no check is carried out. For each file, it checks that both of its dimensions are bigger than min_pixels. If so, it will rescale and crop the image to min_pixels*min_pixels and save the file to the destination given in the top of this file There is a testing feature count, which allows only few subfolders to be searched, so that this function can be tested Args: min_pixels (int): The final image will be square of this number of pixels origin_folder (string): Path to a folder, which will be searched for any images in it or any of its subdirectories target_folder (string): path to folder to which the resized images should be saved to. This folder will have flat structure. Returns: root (string): Returns the root address of the original folder """ #count = 0 for root, dirs, files in os.walk(origin_folder): vis_files = [f for f in files if not f[0] == '.'] copy = True """ copy = False if(root.endswith("indoor")): print("I am indoor") target_folder = indoor_address copy = True if(root.endswith("outdoor")): print("I am outdoor") target_folder = outdoor_address copy = True """ if(len(vis_files)>0 and copy): for image_name in vis_files: #print(root, dirs, image_name) with Image.open(root+"/"+ image_name) as tested_image: width, height = tested_image.size if(width>=min_pixels and height>= min_pixels): cover = resizeimage.resize_cover(tested_image, [min_pixels, min_pixels]) cover.convert('RGB').save(target_folder+image_name, 'JPEG') return root if __name__ == "__main__": roots= find_all_files(300,SUN_images_dir, resized_address)
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 37811, 198, 41972, 319, 2892, 3158, 220, 642, 1596, 25, 486, 25, 1485, 2864, 198, 198, 31, 9800, 25, 49612, 198, 37811, 198, 198, 37811, 198, 1212, 2163, 481, 1011, 262, 2187, 286, 35329, 6831, 290, 6228, 268, 340, 656, 257, 2060, 220, 198, 43551, 981, 581, 2890, 290, 6763, 2105, 477, 4263, 656, 1813, 6616, 5485, 13, 198, 1532, 262, 2393, 318, 4833, 621, 326, 11, 340, 481, 307, 9514, 13, 198, 198, 37811, 198, 11748, 28686, 198, 6738, 350, 4146, 1330, 7412, 198, 6738, 47558, 9060, 1330, 47558, 9060, 198, 198, 2, 1169, 2174, 815, 966, 284, 262, 2393, 7268, 262, 24830, 3850, 24512, 198, 50, 4944, 62, 17566, 62, 15908, 796, 366, 36, 14079, 33986, 5308, 25391, 3524, 14, 5305, 62, 7890, 14, 17566, 1, 198, 2, 383, 2174, 9483, 481, 3994, 262, 581, 1143, 4263, 198, 411, 1143, 62, 21975, 796, 366, 35, 14079, 727, 62, 16624, 14, 24794, 64, 14, 13450, 14485, 14, 320, 7629, 14, 5539, 12, 7908, 14, 8094, 62, 16302, 14, 46, 66, 4533, 43, 672, 1706, 14, 7890, 14, 411, 1143, 62, 25249, 14, 3605, 62, 9288, 30487, 198, 521, 2675, 62, 21975, 796, 366, 35, 14079, 727, 62, 16624, 14, 24794, 64, 14, 13450, 14485, 14, 320, 7629, 14, 5539, 12, 7908, 14, 8094, 62, 16302, 14, 46, 66, 4533, 43, 672, 1706, 14, 7890, 14, 411, 1143, 62, 25249, 14, 521, 2675, 30487, 198, 448, 9424, 62, 21975, 796, 366, 35, 14079, 727, 62, 16624, 14, 24794, 64, 14, 13450, 14485, 14, 320, 7629, 14, 5539, 12, 7908, 14, 8094, 62, 16302, 14, 46, 66, 4533, 43, 672, 1706, 14, 7890, 14, 411, 1143, 62, 25249, 14, 448, 9424, 30487, 198, 220, 220, 198, 198, 4299, 47558, 62, 392, 62, 31476, 7, 9060, 62, 21975, 11, 5072, 62, 21975, 11, 277, 62, 28029, 4352, 11, 277, 62, 17015, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 15553, 329, 581, 2890, 290, 6763, 2105, 286, 2060, 2939, 13, 198, 220, 220, 220, 383, 2939, 468, 284, 307, 5749, 621, 262, 10348, 2546, 13, 198, 220, 220, 220, 1002, 4833, 287, 597, 15793, 11, 262, 2939, 481, 307, 25148, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2939, 62, 21975, 357, 8841, 2599, 7412, 284, 307, 581, 1143, 198, 220, 220, 220, 220, 220, 220, 220, 5072, 62, 21975, 357, 8841, 2599, 8125, 10965, 286, 262, 581, 1143, 2939, 198, 220, 220, 220, 220, 220, 220, 220, 277, 62, 28029, 4352, 357, 600, 2599, 8125, 10348, 9214, 4352, 287, 17848, 198, 220, 220, 220, 220, 220, 220, 220, 277, 62, 17015, 357, 600, 2599, 8125, 10348, 6001, 287, 17848, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 10528, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 351, 1280, 7, 9060, 62, 21975, 11, 705, 81, 10, 65, 11537, 355, 277, 25, 198, 220, 220, 220, 220, 220, 220, 220, 351, 7412, 13, 9654, 7, 69, 8, 355, 2939, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9214, 4352, 11, 6001, 796, 2939, 13, 7857, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 7, 28029, 4352, 18189, 277, 62, 28029, 4352, 290, 6001, 18189, 277, 62, 17015, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3002, 796, 47558, 9060, 13, 411, 1096, 62, 9631, 7, 9060, 11, 685, 69, 62, 28029, 4352, 11, 277, 62, 17015, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3002, 13, 21928, 7, 22915, 62, 21975, 11, 2939, 13, 18982, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 5159, 1165, 1402, 284, 307, 581, 1143, 4943, 628, 198, 4299, 1064, 62, 439, 62, 16624, 7, 1084, 62, 79, 14810, 11, 8159, 62, 43551, 11, 2496, 62, 43551, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 15553, 326, 15455, 477, 850, 11379, 364, 286, 1813, 9483, 13, 198, 220, 220, 220, 770, 2163, 18533, 326, 477, 3696, 287, 326, 9483, 389, 2939, 3696, 198, 220, 220, 220, 1002, 428, 318, 407, 262, 1339, 8563, 481, 3051, 355, 645, 2198, 318, 5281, 503, 13, 628, 220, 220, 220, 1114, 1123, 2393, 11, 340, 8794, 326, 1111, 286, 663, 15225, 389, 5749, 621, 220, 198, 220, 220, 220, 949, 62, 79, 14810, 13, 1002, 523, 11, 340, 481, 6811, 1000, 290, 13833, 262, 2939, 284, 198, 220, 220, 220, 949, 62, 79, 14810, 9, 1084, 62, 79, 14810, 290, 3613, 262, 2393, 284, 262, 10965, 1813, 198, 220, 220, 220, 287, 262, 1353, 286, 428, 2393, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1318, 318, 257, 4856, 3895, 954, 11, 543, 3578, 691, 1178, 850, 11379, 364, 220, 198, 220, 220, 220, 284, 307, 16499, 11, 523, 326, 428, 2163, 460, 307, 6789, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 949, 62, 79, 14810, 357, 600, 2599, 383, 2457, 2939, 481, 307, 6616, 286, 428, 1271, 286, 17848, 220, 198, 220, 220, 220, 220, 220, 220, 220, 8159, 62, 43551, 357, 8841, 2599, 10644, 284, 257, 9483, 11, 543, 481, 307, 16499, 329, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 597, 4263, 287, 340, 393, 597, 286, 663, 850, 12942, 1749, 198, 220, 220, 220, 220, 220, 220, 220, 2496, 62, 43551, 357, 8841, 2599, 3108, 284, 9483, 284, 543, 262, 581, 1143, 4263, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 815, 307, 7448, 284, 13, 770, 9483, 481, 423, 6228, 4645, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 16409, 25, 220, 198, 220, 220, 220, 220, 220, 220, 220, 6808, 357, 8841, 2599, 16409, 262, 6808, 2209, 286, 262, 2656, 9483, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 9127, 796, 657, 198, 220, 220, 220, 329, 6808, 11, 288, 17062, 11, 3696, 287, 28686, 13, 11152, 7, 47103, 62, 43551, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1490, 62, 16624, 796, 685, 69, 329, 277, 287, 3696, 611, 407, 277, 58, 15, 60, 6624, 705, 2637, 60, 198, 220, 220, 220, 220, 220, 220, 220, 4866, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 4866, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 611, 7, 15763, 13, 437, 2032, 342, 7203, 521, 2675, 4943, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 40, 716, 22639, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2496, 62, 43551, 796, 22639, 62, 21975, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4866, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 611, 7, 15763, 13, 437, 2032, 342, 7203, 448, 9424, 4943, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 40, 716, 15162, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2496, 62, 43551, 796, 15162, 62, 21975, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4866, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 7, 11925, 7, 4703, 62, 16624, 8, 29, 15, 290, 4866, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 2939, 62, 3672, 287, 1490, 62, 16624, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4798, 7, 15763, 11, 288, 17062, 11, 2939, 62, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 7412, 13, 9654, 7, 15763, 10, 1, 30487, 10, 2939, 62, 3672, 8, 355, 6789, 62, 9060, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9647, 11, 6001, 796, 6789, 62, 9060, 13, 7857, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 7, 10394, 29, 28, 1084, 62, 79, 14810, 290, 6001, 29, 28, 949, 62, 79, 14810, 2599, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3002, 796, 47558, 9060, 13, 411, 1096, 62, 9631, 7, 39612, 62, 9060, 11, 685, 1084, 62, 79, 14810, 11, 949, 62, 79, 14810, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3002, 13, 1102, 1851, 10786, 36982, 27691, 21928, 7, 16793, 62, 43551, 10, 9060, 62, 3672, 11, 705, 12889, 7156, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 1441, 6808, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 11135, 28, 1064, 62, 439, 62, 16624, 7, 6200, 11, 50, 4944, 62, 17566, 62, 15908, 11, 581, 1143, 62, 21975, 8 ]
2.459476
1,678
from pathlib import Path import numpy as np import torch from torch.utils.data import Dataset from Hyperparameters import sep, unet_width from Util import get_spectrogram class UNetDataset(Dataset): """ Dataset for accessing data opints of the autoencoder output. """ def __init__(self, root_dir, gt_dir, transform=None): """ Initialise the dataset. :param root_dir: The path to the data points :param gt_dir: The path to the ground truth versions of the data points :param transform: Transformation to apply to the data points """ self.root_dir = root_dir self.transform = transform # The input for this dataset is the output from the autoencoder input_mel_npys = Path(root_dir).rglob("*_output.npy") # The U-Net is trained to minimise the error between the autoencoder output # and the clean ("ground truth") versions of the synthesised files gt_mel_npys = Path(gt_dir).rglob("*_synth_mel.npy") self.input_mel_filenames = [str(npy) for npy in input_mel_npys] self.gt_mel_filenames = [str(npy) for npy in gt_mel_npys] # Create mappings between input and ground truth names (so that the order is correct) self.input_to_gt = {} len_suffix = len("_output.npy") for input_path in self.input_mel_filenames: input_filename = input_path.split(sep)[-1][:-len_suffix] for gt_path in self.gt_mel_filenames: if input_filename in gt_path: self.input_to_gt[input_path] = gt_path self.length = len(self.input_mel_filenames) class ToTensor(object): """ Transformation used to convert ndarrays in sample to PyTorch tensors. """
[ 6738, 3108, 8019, 1330, 10644, 198, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 28034, 198, 6738, 28034, 13, 26791, 13, 7890, 1330, 16092, 292, 316, 198, 198, 6738, 15079, 17143, 7307, 1330, 41767, 11, 555, 316, 62, 10394, 198, 6738, 7273, 346, 1330, 651, 62, 4443, 39529, 628, 198, 4871, 4725, 316, 27354, 292, 316, 7, 27354, 292, 316, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 16092, 292, 316, 329, 22534, 1366, 1034, 29503, 286, 262, 1960, 6571, 66, 12342, 5072, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 6808, 62, 15908, 11, 308, 83, 62, 15908, 11, 6121, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 20768, 786, 262, 27039, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 6808, 62, 15908, 25, 383, 3108, 284, 262, 1366, 2173, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 308, 83, 62, 15908, 25, 383, 3108, 284, 262, 2323, 3872, 6300, 286, 262, 1366, 2173, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 6121, 25, 49127, 284, 4174, 284, 262, 1366, 2173, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 15763, 62, 15908, 796, 6808, 62, 15908, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 35636, 796, 6121, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 383, 5128, 329, 428, 27039, 318, 262, 5072, 422, 262, 1960, 6571, 66, 12342, 198, 220, 220, 220, 220, 220, 220, 220, 5128, 62, 17694, 62, 37659, 893, 796, 10644, 7, 15763, 62, 15908, 737, 81, 4743, 672, 7203, 9, 62, 22915, 13, 77, 9078, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 383, 471, 12, 7934, 318, 8776, 284, 10356, 786, 262, 4049, 1022, 262, 1960, 6571, 66, 12342, 5072, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 290, 262, 3424, 5855, 2833, 3872, 4943, 6300, 286, 262, 24983, 1417, 3696, 198, 220, 220, 220, 220, 220, 220, 220, 308, 83, 62, 17694, 62, 37659, 893, 796, 10644, 7, 13655, 62, 15908, 737, 81, 4743, 672, 7203, 9, 62, 28869, 400, 62, 17694, 13, 77, 9078, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 15414, 62, 17694, 62, 10379, 268, 1047, 796, 685, 2536, 7, 77, 9078, 8, 329, 299, 9078, 287, 5128, 62, 17694, 62, 37659, 893, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 13655, 62, 17694, 62, 10379, 268, 1047, 796, 685, 2536, 7, 77, 9078, 8, 329, 299, 9078, 287, 308, 83, 62, 17694, 62, 37659, 893, 60, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 13610, 285, 39242, 1022, 5128, 290, 2323, 3872, 3891, 357, 568, 326, 262, 1502, 318, 3376, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 15414, 62, 1462, 62, 13655, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 18896, 62, 37333, 844, 796, 18896, 7203, 62, 22915, 13, 77, 9078, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 329, 5128, 62, 6978, 287, 2116, 13, 15414, 62, 17694, 62, 10379, 268, 1047, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5128, 62, 34345, 796, 5128, 62, 6978, 13, 35312, 7, 325, 79, 38381, 12, 16, 7131, 21912, 11925, 62, 37333, 844, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 308, 83, 62, 6978, 287, 2116, 13, 13655, 62, 17694, 62, 10379, 268, 1047, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 5128, 62, 34345, 287, 308, 83, 62, 6978, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 15414, 62, 1462, 62, 13655, 58, 15414, 62, 6978, 60, 796, 308, 83, 62, 6978, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 13664, 796, 18896, 7, 944, 13, 15414, 62, 17694, 62, 10379, 268, 1047, 8, 628, 198, 4871, 1675, 51, 22854, 7, 15252, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 49127, 973, 284, 10385, 299, 67, 3258, 592, 287, 6291, 284, 9485, 15884, 354, 11192, 669, 13, 198, 220, 220, 220, 37227, 198 ]
2.427984
729
#!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of CbM (https://github.com/ec-jrc/cbm). # Author : Gilbert Voican, Konstantinos Anastasakis # Credits : GTCAP Team # Copyright : 2021 European Commission, Joint Research Centre # License : 3-Clause BSD from ipywidgets import (HTML, HBox, VBox, Checkbox, Layout, widgets)
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 2, 770, 2393, 318, 636, 286, 327, 65, 44, 357, 5450, 1378, 12567, 13, 785, 14, 721, 12, 73, 6015, 14, 66, 20475, 737, 198, 2, 6434, 220, 220, 220, 1058, 24023, 20687, 7490, 11, 17431, 18797, 11996, 1052, 459, 292, 27321, 198, 2, 29501, 220, 220, 1058, 402, 4825, 2969, 4816, 198, 2, 15069, 1058, 33448, 3427, 4513, 11, 16798, 4992, 9072, 198, 2, 13789, 220, 220, 1058, 513, 12, 2601, 682, 347, 10305, 628, 198, 6738, 20966, 88, 28029, 11407, 1330, 357, 28656, 11, 367, 14253, 11, 569, 14253, 11, 6822, 3524, 11, 47639, 11, 40803, 8, 628, 628, 198 ]
2.771654
127
{ "targets": [{ "target_name": "catch.cc", "type": "none", "direct_dependent_settings": { "include_dirs": [ "../single_include" ], }, "sources": [ "../include/catch_with_main.hpp" ], }] }
[ 90, 198, 220, 366, 83, 853, 1039, 1298, 685, 90, 198, 220, 220, 220, 366, 16793, 62, 3672, 1298, 366, 40198, 13, 535, 1600, 198, 220, 220, 220, 366, 4906, 1298, 366, 23108, 1600, 198, 220, 220, 220, 366, 12942, 62, 21186, 62, 33692, 1298, 1391, 198, 220, 220, 220, 220, 220, 366, 17256, 62, 15908, 82, 1298, 685, 198, 220, 220, 220, 220, 220, 220, 220, 366, 40720, 29762, 62, 17256, 1, 198, 220, 220, 220, 220, 220, 16589, 198, 220, 220, 220, 8964, 198, 220, 220, 220, 366, 82, 2203, 1298, 685, 198, 220, 220, 220, 220, 220, 366, 40720, 17256, 14, 40198, 62, 4480, 62, 12417, 13, 71, 381, 1, 198, 220, 220, 220, 16589, 198, 220, 1782, 60, 198, 92, 198 ]
1.936
125
import numpy import pandas as pd from keras.models import Sequential from keras.layers import Dense from keras.wrappers.scikit_learn import KerasClassifier from sklearn.model_selection import cross_val_score from sklearn.preprocessing import LabelEncoder from sklearn.model_selection import StratifiedKFold from sklearn.preprocessing import StandardScaler from sklearn.pipeline import Pipeline from keras.preprocessing.text import Tokenizer from keras.optimizers import SGD opt = SGD(lr=100) # fix random seed for reproducibility seed = 7 numpy.random.seed(seed) # load dataset my_data = pd.read_csv("NoBlanksAndScoreAsDummy.csv") score = my_data["score"] my_data = my_data.drop("score", axis=1) my_dummies = pd.get_dummies(my_data, prefix=['T1P1', 'T1P2', 'T1P3', 'T1P4', 'T1P5', 'T1P6', 'T1P7', 'T1P8', 'T1P9', 'T1P10', 'T1P11', 'T1P12', 'T1P13', 'T1P14', 'T1P15', 'T1P16', 'T1P17', 'T1P18', 'T1G', 'T2P1', 'T2P2', 'T2P3', 'T2P4', 'T2P5', 'T2P6', 'T2P7', 'T2P8', 'T2P9', 'T2P10', 'T2P11', 'T2P12', 'T2P13', 'T2P14', 'T2P15', 'T2P16', 'T2P17', 'T2P18', 'T2G']) my_dummies["result"] = score print(my_dummies) dataset = my_dummies.values X = dataset[:,0:12993] Y = dataset[:,12993] # encode class values as integers encoder = LabelEncoder() encoder.fit(Y) encoded_Y = encoder.transform(Y) print("Number,results,epochs,batch_size,number of layers") # baseline model # evaluate model with standardized dataset estimator = KerasClassifier(build_fn=create_baseline, epochs=500, batch_size=250, verbose=0) kfold = StratifiedKFold(n_splits=10, shuffle=True, random_state=seed) results = cross_val_score(estimator, X, encoded_Y, cv=kfold) print("1, %.2f%% , (%.2f%%) ,500,25,3" % (results.mean()*100, results.std()*100)) # # second model # def create_baseline_one(): # # create model # model = Sequential() # model.add(Dense(38, input_dim=38, kernel_initializer='normal', activation='relu')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(1, kernel_initializer='normal', activation='sigmoid')) # # Compile model # model.compile(loss='binary_crossentropy', optimizer='adagrad', metrics=['accuracy']) # return model # # # evaluate model with standardized dataset # estimator = KerasClassifier(build_fn=create_baseline_one, epochs=500, batch_size=25, verbose=0) # kfold = StratifiedKFold(n_splits=10, shuffle=True, random_state=seed) # results = cross_val_score(estimator, X, encoded_Y, cv=kfold) # print("1, %.2f%% , (%.2f%%) ,500,25,1" % (results.mean()*100, results.std()*100)) # # # # # third model # def create_baseline_two(): # # create model # model = Sequential() # model.add(Dense(38, input_dim=38, kernel_initializer='normal', activation='relu')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(1, kernel_initializer='normal', activation='sigmoid')) # # Compile model # model.compile(loss='binary_crossentropy', optimizer='adagrad', metrics=['accuracy']) # return model # # # evaluate model with standardized dataset # estimator = KerasClassifier(build_fn=create_baseline_two, epochs=500, batch_size=25, verbose=0) # kfold = StratifiedKFold(n_splits=10, shuffle=True, random_state=seed) # results = cross_val_score(estimator, X, encoded_Y, cv=kfold) # print("1, %.2f%% , (%.2f%%) ,500,25,2" % (results.mean()*100, results.std()*100)) # # # # fourth model # def create_baseline_three(): # # create model # model = Sequential() # model.add(Dense(38, input_dim=38, kernel_initializer='normal', activation='relu')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(1, kernel_initializer='normal', activation='sigmoid')) # # Compile model # model.compile(loss='binary_crossentropy', optimizer='adagrad', metrics=['accuracy']) # return model # # # evaluate model with standardized dataset # estimator = KerasClassifier(build_fn=create_baseline_three, epochs=500, batch_size=25, verbose=0) # kfold = StratifiedKFold(n_splits=10, shuffle=True, random_state=seed) # results = cross_val_score(estimator, X, encoded_Y, cv=kfold) # print("1, %.2f%% , (%.2f%%) ,500,25,4" % (results.mean()*100, results.std()*100)) # # # # # # fifth model # def create_baseline_four(): # # create model # model = Sequential() # model.add(Dense(38, input_dim=38, kernel_initializer='normal', activation='relu')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(1, kernel_initializer='normal', activation='sigmoid')) # # Compile model # model.compile(loss='binary_crossentropy', optimizer='adagrad', metrics=['accuracy']) # return model # # # evaluate model with standardized dataset # estimator = KerasClassifier(build_fn=create_baseline_four, epochs=500, batch_size=25, verbose=0) # kfold = StratifiedKFold(n_splits=10, shuffle=True, random_state=seed) # results = cross_val_score(estimator, X, encoded_Y, cv=kfold) # print("1, %.2f%% , (%.2f%%) ,500,25,5" % (results.mean()*100, results.std()*100)) # # # # # # sixth model # def create_baseline_five(): # # create model # model = Sequential() # model.add(Dense(38, input_dim=38, kernel_initializer='normal', activation='relu')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(1, kernel_initializer='normal', activation='sigmoid')) # # Compile model # model.compile(loss='binary_crossentropy', optimizer='adagrad', metrics=['accuracy']) # return model # # # evaluate model with standardized dataset # estimator = KerasClassifier(build_fn=create_baseline_five, epochs=500, batch_size=25, verbose=0) # kfold = StratifiedKFold(n_splits=10, shuffle=True, random_state=seed) # results = cross_val_score(estimator, X, encoded_Y, cv=kfold) # print("1, %.2f%% , (%.2f%%) ,500,25,6" % (results.mean()*100, results.std()*100)) # # # # # # # seventh model # def create_baseline_six(): # # create model # model = Sequential() # model.add(Dense(38, input_dim=38, kernel_initializer='normal', activation='relu')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(1, kernel_initializer='normal', activation='sigmoid')) # # Compile model # model.compile(loss='binary_crossentropy', optimizer='adagrad', metrics=['accuracy']) # return model # # # evaluate model with standardized dataset # estimator = KerasClassifier(build_fn=create_baseline_six, epochs=500, batch_size=25, verbose=0) # kfold = StratifiedKFold(n_splits=10, shuffle=True, random_state=seed) # results = cross_val_score(estimator, X, encoded_Y, cv=kfold) # print("1, %.2f%% , (%.2f%%) ,500,25,8" % (results.mean()*100, results.std()*100)) # # # # # eighth model # def create_baseline_seven(): # # create model # model = Sequential() # model.add(Dense(38, input_dim=38, kernel_initializer='normal', activation='relu')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(1, kernel_initializer='normal', activation='sigmoid')) # # Compile model # model.compile(loss='binary_crossentropy', optimizer='adagrad', metrics=['accuracy']) # return model # # # evaluate model with standardized dataset # estimator = KerasClassifier(build_fn=create_baseline_seven, epochs=500, batch_size=25, verbose=0) # kfold = StratifiedKFold(n_splits=10, shuffle=True, random_state=seed) # results = cross_val_score(estimator, X, encoded_Y, cv=kfold) # print("1, %.2f%% , (%.2f%%) ,500,25,10" % (results.mean()*100, results.std()*100)) # # # # # # # # # # # # # # # # # # # These next models are the same but they have more 1000 epochs # # # # # # # # # # # # # # # # # # # # def create_baseline(): # # create model # model = Sequential() # model.add(Dense(38, input_dim=38, kernel_initializer='normal', activation='relu')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(1, kernel_initializer='normal', activation='sigmoid')) # # Compile model # model.compile(loss='binary_crossentropy', optimizer='adagrad', metrics=['accuracy']) # return model # # # evaluate model with standardized dataset # estimator = KerasClassifier(build_fn=create_baseline, epochs=1000, batch_size=25, verbose=0) # kfold = StratifiedKFold(n_splits=10, shuffle=True, random_state=seed) # results = cross_val_score(estimator, X, encoded_Y, cv=kfold) # print("1, %.2f%% , (%.2f%%) ,1000,25,3" % (results.mean()*100, results.std()*100)) # # # # # second model # def create_baseline_one(): # # create model # model = Sequential() # model.add(Dense(38, input_dim=38, kernel_initializer='normal', activation='relu')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(1, kernel_initializer='normal', activation='sigmoid')) # # Compile model # model.compile(loss='binary_crossentropy', optimizer='adagrad', metrics=['accuracy']) # return model # # # evaluate model with standardized dataset # estimator = KerasClassifier(build_fn=create_baseline_one, epochs=1000, batch_size=25, verbose=0) # kfold = StratifiedKFold(n_splits=10, shuffle=True, random_state=seed) # results = cross_val_score(estimator, X, encoded_Y, cv=kfold) # print("1, %.2f%% , (%.2f%%) ,1000,25,1" % (results.mean()*100, results.std()*100)) # # # # # third model # def create_baseline_two(): # # create model # model = Sequential() # model.add(Dense(38, input_dim=38, kernel_initializer='normal', activation='relu')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(1, kernel_initializer='normal', activation='sigmoid')) # # Compile model # model.compile(loss='binary_crossentropy', optimizer='adagrad', metrics=['accuracy']) # return model # # # evaluate model with standardized dataset # estimator = KerasClassifier(build_fn=create_baseline_two, epochs=1000, batch_size=25, verbose=0) # kfold = StratifiedKFold(n_splits=10, shuffle=True, random_state=seed) # results = cross_val_score(estimator, X, encoded_Y, cv=kfold) # print("1, %.2f%% , (%.2f%%) ,1000,25,2" % (results.mean()*100, results.std()*100)) # # # # fourth model # def create_baseline_three(): # # create model # model = Sequential() # model.add(Dense(38, input_dim=38, kernel_initializer='normal', activation='relu')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(1, kernel_initializer='normal', activation='sigmoid')) # # Compile model # model.compile(loss='binary_crossentropy', optimizer='adagrad', metrics=['accuracy']) # return model # # # evaluate model with standardized dataset # estimator = KerasClassifier(build_fn=create_baseline_three, epochs=1000, batch_size=25, verbose=0) # kfold = StratifiedKFold(n_splits=10, shuffle=True, random_state=seed) # results = cross_val_score(estimator, X, encoded_Y, cv=kfold) # print("1, %.2f%% , (%.2f%%) ,1000,25,4" % (results.mean()*100, results.std()*100)) # # # # # # fifth model # def create_baseline_four(): # # create model # model = Sequential() # model.add(Dense(38, input_dim=38, kernel_initializer='normal', activation='relu')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(1, kernel_initializer='normal', activation='sigmoid')) # # Compile model # model.compile(loss='binary_crossentropy', optimizer='adagrad', metrics=['accuracy']) # return model # # # evaluate model with standardized dataset # estimator = KerasClassifier(build_fn=create_baseline_four, epochs=1000, batch_size=25, verbose=0) # kfold = StratifiedKFold(n_splits=10, shuffle=True, random_state=seed) # results = cross_val_score(estimator, X, encoded_Y, cv=kfold) # print("1, %.2f%% , (%.2f%%) ,1000,25,5" % (results.mean()*100, results.std()*100)) # # # # # # sixth model # def create_baseline_five(): # # create model # model = Sequential() # model.add(Dense(38, input_dim=38, kernel_initializer='normal', activation='relu')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(1, kernel_initializer='normal', activation='sigmoid')) # # Compile model # model.compile(loss='binary_crossentropy', optimizer='adagrad', metrics=['accuracy']) # return model # # # evaluate model with standardized dataset # estimator = KerasClassifier(build_fn=create_baseline_five, epochs=1000, batch_size=25, verbose=0) # kfold = StratifiedKFold(n_splits=10, shuffle=True, random_state=seed) # results = cross_val_score(estimator, X, encoded_Y, cv=kfold) # print("1, %.2f%% , (%.2f%%) ,1000,25,6" % (results.mean()*100, results.std()*100)) # # # # # # # seventh model # def create_baseline_six(): # # create model # model = Sequential() # model.add(Dense(38, input_dim=38, kernel_initializer='normal', activation='relu')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(1, kernel_initializer='normal', activation='sigmoid')) # # Compile model # model.compile(loss='binary_crossentropy', optimizer='adagrad', metrics=['accuracy']) # return model # # # evaluate model with standardized dataset # estimator = KerasClassifier(build_fn=create_baseline_six, epochs=1000, batch_size=25, verbose=0) # kfold = StratifiedKFold(n_splits=10, shuffle=True, random_state=seed) # results = cross_val_score(estimator, X, encoded_Y, cv=kfold) # print("1, %.2f%% , (%.2f%%) ,1000,25,8" % (results.mean()*100, results.std()*100)) # # # # # eighth model # def create_baseline_seven(): # # create model # model = Sequential() # model.add(Dense(38, input_dim=38, kernel_initializer='normal', activation='relu')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(1, kernel_initializer='normal', activation='sigmoid')) # # Compile model # model.compile(loss='binary_crossentropy', optimizer='adagrad', metrics=['accuracy']) # return model # # # evaluate model with standardized dataset # estimator = KerasClassifier(build_fn=create_baseline_seven, epochs=1000, batch_size=25, verbose=0) # kfold = StratifiedKFold(n_splits=10, shuffle=True, random_state=seed) # results = cross_val_score(estimator, X, encoded_Y, cv=kfold) # print("1, %.2f%% , (%.2f%%) ,1000,25,10" % (results.mean()*100, results.std()*100)) # # # # # # # # # # # # # # these next ones have 2000 epochs # # # # # # # # # # # # # # # # # # # # # # def create_baseline(): # # create model # model = Sequential() # model.add(Dense(38, input_dim=38, kernel_initializer='normal', activation='relu')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(1, kernel_initializer='normal', activation='sigmoid')) # # Compile model # model.compile(loss='binary_crossentropy', optimizer='adagrad', metrics=['accuracy']) # return model # # # evaluate model with standardized dataset # estimator = KerasClassifier(build_fn=create_baseline, epochs=2000, batch_size=25, verbose=0) # kfold = StratifiedKFold(n_splits=10, shuffle=True, random_state=seed) # results = cross_val_score(estimator, X, encoded_Y, cv=kfold) # print("1, %.2f%% , (%.2f%%) ,2000,25,3" % (results.mean()*100, results.std()*100)) # # # # # second model # def create_baseline_one(): # # create model # model = Sequential() # model.add(Dense(38, input_dim=38, kernel_initializer='normal', activation='relu')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(1, kernel_initializer='normal', activation='sigmoid')) # # Compile model # model.compile(loss='binary_crossentropy', optimizer='adagrad', metrics=['accuracy']) # return model # # # evaluate model with standardized dataset # estimator = KerasClassifier(build_fn=create_baseline_one, epochs=2000, batch_size=25, verbose=0) # kfold = StratifiedKFold(n_splits=10, shuffle=True, random_state=seed) # results = cross_val_score(estimator, X, encoded_Y, cv=kfold) # print("1, %.2f%% , (%.2f%%) ,2000,25,1" % (results.mean()*100, results.std()*100)) # # # # # third model # def create_baseline_two(): # # create model # model = Sequential() # model.add(Dense(38, input_dim=38, kernel_initializer='normal', activation='relu')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(1, kernel_initializer='normal', activation='sigmoid')) # # Compile model # model.compile(loss='binary_crossentropy', optimizer='adagrad', metrics=['accuracy']) # return model # # # evaluate model with standardized dataset # estimator = KerasClassifier(build_fn=create_baseline_two, epochs=2000, batch_size=25, verbose=0) # kfold = StratifiedKFold(n_splits=10, shuffle=True, random_state=seed) # results = cross_val_score(estimator, X, encoded_Y, cv=kfold) # print("1, %.2f%% , (%.2f%%) ,2000,25,2" % (results.mean()*100, results.std()*100)) # # # # fourth model # def create_baseline_three(): # # create model # model = Sequential() # model.add(Dense(38, input_dim=38, kernel_initializer='normal', activation='relu')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(1, kernel_initializer='normal', activation='sigmoid')) # # Compile model # model.compile(loss='binary_crossentropy', optimizer='adagrad', metrics=['accuracy']) # return model # # # evaluate model with standardized dataset # estimator = KerasClassifier(build_fn=create_baseline_three, epochs=2000, batch_size=25, verbose=0) # kfold = StratifiedKFold(n_splits=10, shuffle=True, random_state=seed) # results = cross_val_score(estimator, X, encoded_Y, cv=kfold) # print("1, %.2f%% , (%.2f%%) ,2000,25,4" % (results.mean()*100, results.std()*100)) # # # # # # fifth model # def create_baseline_four(): # # create model # model = Sequential() # model.add(Dense(38, input_dim=38, kernel_initializer='normal', activation='relu')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(1, kernel_initializer='normal', activation='sigmoid')) # # Compile model # model.compile(loss='binary_crossentropy', optimizer='adagrad', metrics=['accuracy']) # return model # # # evaluate model with standardized dataset # estimator = KerasClassifier(build_fn=create_baseline_four, epochs=2000, batch_size=25, verbose=0) # kfold = StratifiedKFold(n_splits=10, shuffle=True, random_state=seed) # results = cross_val_score(estimator, X, encoded_Y, cv=kfold) # print("1, %.2f%% , (%.2f%%) ,2000,25,5" % (results.mean()*100, results.std()*100)) # # # # # # sixth model # def create_baseline_five(): # # create model # model = Sequential() # model.add(Dense(38, input_dim=38, kernel_initializer='normal', activation='relu')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(1, kernel_initializer='normal', activation='sigmoid')) # # Compile model # model.compile(loss='binary_crossentropy', optimizer='adagrad', metrics=['accuracy']) # return model # # # evaluate model with standardized dataset # estimator = KerasClassifier(build_fn=create_baseline_five, epochs=2000, batch_size=25, verbose=0) # kfold = StratifiedKFold(n_splits=10, shuffle=True, random_state=seed) # results = cross_val_score(estimator, X, encoded_Y, cv=kfold) # print("1, %.2f%% , (%.2f%%) ,2000,25,6" % (results.mean()*100, results.std()*100)) # # # # # # # seventh model # def create_baseline_six(): # # create model # model = Sequential() # model.add(Dense(38, input_dim=38, kernel_initializer='normal', activation='relu')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(1, kernel_initializer='normal', activation='sigmoid')) # # Compile model # model.compile(loss='binary_crossentropy', optimizer='adagrad', metrics=['accuracy']) # return model # # # evaluate model with standardized dataset # estimator = KerasClassifier(build_fn=create_baseline_six, epochs=2000, batch_size=25, verbose=0) # kfold = StratifiedKFold(n_splits=10, shuffle=True, random_state=seed) # results = cross_val_score(estimator, X, encoded_Y, cv=kfold) # print("1, %.2f%% , (%.2f%%) ,2000,25,8" % (results.mean()*100, results.std()*100)) # # # # # eighth model # def create_baseline_seven(): # # create model # model = Sequential() # model.add(Dense(38, input_dim=38, kernel_initializer='normal', activation='relu')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(50, kernel_initializer='normal', activation='sigmoid')) # model.add(Dense(1, kernel_initializer='normal', activation='sigmoid')) # # Compile model # model.compile(loss='binary_crossentropy', optimizer='adagrad', metrics=['accuracy']) # return model # # # evaluate model with standardized dataset # estimator = KerasClassifier(build_fn=create_baseline_seven, epochs=2000, batch_size=25, verbose=0) # kfold = StratifiedKFold(n_splits=10, shuffle=True, random_state=seed) # results = cross_val_score(estimator, X, encoded_Y, cv=kfold) # print("1, %.2f%% , (%.2f%%) ,2000,25,10" % (results.mean()*100, results.std()*100))
[ 11748, 299, 32152, 198, 11748, 19798, 292, 355, 279, 67, 198, 6738, 41927, 292, 13, 27530, 1330, 24604, 1843, 198, 6738, 41927, 292, 13, 75, 6962, 1330, 360, 1072, 198, 6738, 41927, 292, 13, 29988, 11799, 13, 36216, 15813, 62, 35720, 1330, 17337, 292, 9487, 7483, 198, 6738, 1341, 35720, 13, 19849, 62, 49283, 1330, 3272, 62, 2100, 62, 26675, 198, 6738, 1341, 35720, 13, 3866, 36948, 1330, 36052, 27195, 12342, 198, 6738, 1341, 35720, 13, 19849, 62, 49283, 1330, 29186, 1431, 42, 37, 727, 198, 6738, 1341, 35720, 13, 3866, 36948, 1330, 8997, 3351, 36213, 198, 6738, 1341, 35720, 13, 79, 541, 4470, 1330, 37709, 198, 6738, 41927, 292, 13, 3866, 36948, 13, 5239, 1330, 29130, 7509, 198, 6738, 41927, 292, 13, 40085, 11341, 1330, 26147, 35, 198, 8738, 796, 26147, 35, 7, 14050, 28, 3064, 8, 198, 198, 2, 4259, 4738, 9403, 329, 8186, 66, 2247, 198, 28826, 796, 767, 198, 77, 32152, 13, 25120, 13, 28826, 7, 28826, 8, 198, 198, 2, 3440, 27039, 198, 1820, 62, 7890, 796, 279, 67, 13, 961, 62, 40664, 7203, 2949, 3629, 2283, 1870, 26595, 1722, 35, 13513, 13, 40664, 4943, 198, 198, 26675, 796, 616, 62, 7890, 14692, 26675, 8973, 198, 198, 1820, 62, 7890, 796, 616, 62, 7890, 13, 14781, 7203, 26675, 1600, 16488, 28, 16, 8, 198, 198, 1820, 62, 67, 39578, 796, 279, 67, 13, 1136, 62, 67, 39578, 7, 1820, 62, 7890, 11, 21231, 28, 17816, 51, 16, 47, 16, 3256, 705, 51, 16, 47, 17, 3256, 705, 51, 16, 47, 18, 3256, 705, 51, 16, 47, 19, 3256, 705, 51, 16, 47, 20, 3256, 705, 51, 16, 47, 21, 3256, 705, 51, 16, 47, 22, 3256, 705, 51, 16, 47, 23, 3256, 705, 51, 16, 47, 24, 3256, 705, 51, 16, 47, 940, 3256, 705, 51, 16, 47, 1157, 3256, 705, 51, 16, 47, 1065, 3256, 705, 51, 16, 47, 1485, 3256, 705, 51, 16, 47, 1415, 3256, 705, 51, 16, 47, 1314, 3256, 705, 51, 16, 47, 1433, 3256, 705, 51, 16, 47, 1558, 3256, 705, 51, 16, 47, 1507, 3256, 705, 51, 16, 38, 3256, 705, 51, 17, 47, 16, 3256, 705, 51, 17, 47, 17, 3256, 705, 51, 17, 47, 18, 3256, 705, 51, 17, 47, 19, 3256, 705, 51, 17, 47, 20, 3256, 705, 51, 17, 47, 21, 3256, 705, 51, 17, 47, 22, 3256, 705, 51, 17, 47, 23, 3256, 705, 51, 17, 47, 24, 3256, 705, 51, 17, 47, 940, 3256, 705, 51, 17, 47, 1157, 3256, 705, 51, 17, 47, 1065, 3256, 705, 51, 17, 47, 1485, 3256, 705, 51, 17, 47, 1415, 3256, 705, 51, 17, 47, 1314, 3256, 705, 51, 17, 47, 1433, 3256, 705, 51, 17, 47, 1558, 3256, 705, 51, 17, 47, 1507, 3256, 705, 51, 17, 38, 6, 12962, 198, 198, 1820, 62, 67, 39578, 14692, 20274, 8973, 796, 4776, 198, 198, 4798, 7, 1820, 62, 67, 39578, 8, 198, 198, 19608, 292, 316, 796, 616, 62, 67, 39578, 13, 27160, 198, 198, 55, 796, 27039, 58, 45299, 15, 25, 1065, 44821, 60, 198, 56, 796, 27039, 58, 45299, 1065, 44821, 60, 198, 198, 2, 37773, 1398, 3815, 355, 37014, 198, 12685, 12342, 796, 36052, 27195, 12342, 3419, 198, 12685, 12342, 13, 11147, 7, 56, 8, 198, 12685, 9043, 62, 56, 796, 2207, 12342, 13, 35636, 7, 56, 8, 198, 198, 4798, 7203, 15057, 11, 43420, 11, 538, 5374, 82, 11, 43501, 62, 7857, 11, 17618, 286, 11685, 4943, 198, 2, 14805, 2746, 198, 198, 2, 13446, 2746, 351, 25713, 27039, 198, 395, 320, 1352, 796, 17337, 292, 9487, 7483, 7, 11249, 62, 22184, 28, 17953, 62, 12093, 4470, 11, 36835, 82, 28, 4059, 11, 15458, 62, 7857, 28, 9031, 11, 15942, 577, 28, 15, 8, 198, 74, 11379, 796, 29186, 1431, 42, 37, 727, 7, 77, 62, 22018, 896, 28, 940, 11, 36273, 28, 17821, 11, 4738, 62, 5219, 28, 28826, 8, 198, 43420, 796, 3272, 62, 2100, 62, 26675, 7, 395, 320, 1352, 11, 1395, 11, 30240, 62, 56, 11, 269, 85, 28, 74, 11379, 8, 198, 4798, 7203, 16, 11, 4064, 13, 17, 69, 16626, 837, 357, 7225, 17, 69, 4, 4407, 837, 4059, 11, 1495, 11, 18, 1, 4064, 357, 43420, 13, 32604, 3419, 9, 3064, 11, 2482, 13, 19282, 3419, 9, 3064, 4008, 628, 198, 198, 2, 1303, 1218, 2746, 198, 2, 825, 2251, 62, 12093, 4470, 62, 505, 33529, 198, 2, 220, 197, 2, 2251, 2746, 198, 2, 220, 197, 19849, 796, 24604, 1843, 3419, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 2548, 11, 5128, 62, 27740, 28, 2548, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 260, 2290, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 16, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 2, 3082, 576, 2746, 198, 2, 220, 197, 19849, 13, 5589, 576, 7, 22462, 11639, 39491, 62, 19692, 298, 28338, 3256, 6436, 7509, 11639, 324, 363, 6335, 3256, 20731, 28, 17816, 4134, 23843, 6, 12962, 198, 2, 220, 197, 7783, 2746, 198, 2, 198, 2, 1303, 13446, 2746, 351, 25713, 27039, 198, 2, 3959, 1352, 796, 17337, 292, 9487, 7483, 7, 11249, 62, 22184, 28, 17953, 62, 12093, 4470, 62, 505, 11, 36835, 82, 28, 4059, 11, 15458, 62, 7857, 28, 1495, 11, 15942, 577, 28, 15, 8, 198, 2, 479, 11379, 796, 29186, 1431, 42, 37, 727, 7, 77, 62, 22018, 896, 28, 940, 11, 36273, 28, 17821, 11, 4738, 62, 5219, 28, 28826, 8, 198, 2, 2482, 796, 3272, 62, 2100, 62, 26675, 7, 395, 320, 1352, 11, 1395, 11, 30240, 62, 56, 11, 269, 85, 28, 74, 11379, 8, 198, 2, 3601, 7203, 16, 11, 4064, 13, 17, 69, 16626, 837, 357, 7225, 17, 69, 4, 4407, 837, 4059, 11, 1495, 11, 16, 1, 4064, 357, 43420, 13, 32604, 3419, 9, 3064, 11, 2482, 13, 19282, 3419, 9, 3064, 4008, 198, 2, 198, 2, 198, 2, 198, 2, 1303, 2368, 2746, 198, 2, 825, 2251, 62, 12093, 4470, 62, 11545, 33529, 198, 2, 220, 197, 2, 2251, 2746, 198, 2, 220, 197, 19849, 796, 24604, 1843, 3419, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 2548, 11, 5128, 62, 27740, 28, 2548, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 260, 2290, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 16, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 2, 3082, 576, 2746, 198, 2, 220, 197, 19849, 13, 5589, 576, 7, 22462, 11639, 39491, 62, 19692, 298, 28338, 3256, 6436, 7509, 11639, 324, 363, 6335, 3256, 20731, 28, 17816, 4134, 23843, 6, 12962, 198, 2, 220, 197, 7783, 2746, 198, 2, 198, 2, 1303, 13446, 2746, 351, 25713, 27039, 198, 2, 3959, 1352, 796, 17337, 292, 9487, 7483, 7, 11249, 62, 22184, 28, 17953, 62, 12093, 4470, 62, 11545, 11, 36835, 82, 28, 4059, 11, 15458, 62, 7857, 28, 1495, 11, 15942, 577, 28, 15, 8, 198, 2, 479, 11379, 796, 29186, 1431, 42, 37, 727, 7, 77, 62, 22018, 896, 28, 940, 11, 36273, 28, 17821, 11, 4738, 62, 5219, 28, 28826, 8, 198, 2, 2482, 796, 3272, 62, 2100, 62, 26675, 7, 395, 320, 1352, 11, 1395, 11, 30240, 62, 56, 11, 269, 85, 28, 74, 11379, 8, 198, 2, 3601, 7203, 16, 11, 4064, 13, 17, 69, 16626, 837, 357, 7225, 17, 69, 4, 4407, 837, 4059, 11, 1495, 11, 17, 1, 4064, 357, 43420, 13, 32604, 3419, 9, 3064, 11, 2482, 13, 19282, 3419, 9, 3064, 4008, 198, 2, 198, 2, 198, 2, 1303, 5544, 2746, 198, 2, 825, 2251, 62, 12093, 4470, 62, 15542, 33529, 198, 2, 220, 197, 2, 2251, 2746, 198, 2, 220, 197, 19849, 796, 24604, 1843, 3419, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 2548, 11, 5128, 62, 27740, 28, 2548, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 260, 2290, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 16, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 2, 3082, 576, 2746, 198, 2, 220, 197, 19849, 13, 5589, 576, 7, 22462, 11639, 39491, 62, 19692, 298, 28338, 3256, 6436, 7509, 11639, 324, 363, 6335, 3256, 20731, 28, 17816, 4134, 23843, 6, 12962, 198, 2, 220, 197, 7783, 2746, 198, 2, 198, 2, 1303, 13446, 2746, 351, 25713, 27039, 198, 2, 3959, 1352, 796, 17337, 292, 9487, 7483, 7, 11249, 62, 22184, 28, 17953, 62, 12093, 4470, 62, 15542, 11, 36835, 82, 28, 4059, 11, 15458, 62, 7857, 28, 1495, 11, 15942, 577, 28, 15, 8, 198, 2, 479, 11379, 796, 29186, 1431, 42, 37, 727, 7, 77, 62, 22018, 896, 28, 940, 11, 36273, 28, 17821, 11, 4738, 62, 5219, 28, 28826, 8, 198, 2, 2482, 796, 3272, 62, 2100, 62, 26675, 7, 395, 320, 1352, 11, 1395, 11, 30240, 62, 56, 11, 269, 85, 28, 74, 11379, 8, 198, 2, 3601, 7203, 16, 11, 4064, 13, 17, 69, 16626, 837, 357, 7225, 17, 69, 4, 4407, 837, 4059, 11, 1495, 11, 19, 1, 4064, 357, 43420, 13, 32604, 3419, 9, 3064, 11, 2482, 13, 19282, 3419, 9, 3064, 4008, 198, 2, 198, 2, 198, 2, 198, 2, 198, 2, 1303, 8150, 2746, 198, 2, 825, 2251, 62, 12093, 4470, 62, 14337, 33529, 198, 2, 220, 197, 2, 2251, 2746, 198, 2, 220, 197, 19849, 796, 24604, 1843, 3419, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 2548, 11, 5128, 62, 27740, 28, 2548, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 260, 2290, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 16, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 2, 3082, 576, 2746, 198, 2, 220, 197, 19849, 13, 5589, 576, 7, 22462, 11639, 39491, 62, 19692, 298, 28338, 3256, 6436, 7509, 11639, 324, 363, 6335, 3256, 20731, 28, 17816, 4134, 23843, 6, 12962, 198, 2, 220, 197, 7783, 2746, 198, 2, 198, 2, 1303, 13446, 2746, 351, 25713, 27039, 198, 2, 3959, 1352, 796, 17337, 292, 9487, 7483, 7, 11249, 62, 22184, 28, 17953, 62, 12093, 4470, 62, 14337, 11, 36835, 82, 28, 4059, 11, 15458, 62, 7857, 28, 1495, 11, 15942, 577, 28, 15, 8, 198, 2, 479, 11379, 796, 29186, 1431, 42, 37, 727, 7, 77, 62, 22018, 896, 28, 940, 11, 36273, 28, 17821, 11, 4738, 62, 5219, 28, 28826, 8, 198, 2, 2482, 796, 3272, 62, 2100, 62, 26675, 7, 395, 320, 1352, 11, 1395, 11, 30240, 62, 56, 11, 269, 85, 28, 74, 11379, 8, 198, 2, 3601, 7203, 16, 11, 4064, 13, 17, 69, 16626, 837, 357, 7225, 17, 69, 4, 4407, 837, 4059, 11, 1495, 11, 20, 1, 4064, 357, 43420, 13, 32604, 3419, 9, 3064, 11, 2482, 13, 19282, 3419, 9, 3064, 4008, 198, 2, 198, 2, 198, 2, 198, 2, 198, 2, 1303, 11695, 2746, 198, 2, 825, 2251, 62, 12093, 4470, 62, 13261, 33529, 198, 2, 220, 197, 2, 2251, 2746, 198, 2, 220, 197, 19849, 796, 24604, 1843, 3419, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 2548, 11, 5128, 62, 27740, 28, 2548, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 260, 2290, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 16, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 2, 3082, 576, 2746, 198, 2, 220, 197, 19849, 13, 5589, 576, 7, 22462, 11639, 39491, 62, 19692, 298, 28338, 3256, 6436, 7509, 11639, 324, 363, 6335, 3256, 20731, 28, 17816, 4134, 23843, 6, 12962, 198, 2, 220, 197, 7783, 2746, 198, 2, 198, 2, 1303, 13446, 2746, 351, 25713, 27039, 198, 2, 3959, 1352, 796, 17337, 292, 9487, 7483, 7, 11249, 62, 22184, 28, 17953, 62, 12093, 4470, 62, 13261, 11, 36835, 82, 28, 4059, 11, 15458, 62, 7857, 28, 1495, 11, 15942, 577, 28, 15, 8, 198, 2, 479, 11379, 796, 29186, 1431, 42, 37, 727, 7, 77, 62, 22018, 896, 28, 940, 11, 36273, 28, 17821, 11, 4738, 62, 5219, 28, 28826, 8, 198, 2, 2482, 796, 3272, 62, 2100, 62, 26675, 7, 395, 320, 1352, 11, 1395, 11, 30240, 62, 56, 11, 269, 85, 28, 74, 11379, 8, 198, 2, 3601, 7203, 16, 11, 4064, 13, 17, 69, 16626, 837, 357, 7225, 17, 69, 4, 4407, 837, 4059, 11, 1495, 11, 21, 1, 4064, 357, 43420, 13, 32604, 3419, 9, 3064, 11, 2482, 13, 19282, 3419, 9, 3064, 4008, 198, 2, 198, 2, 198, 2, 198, 2, 198, 2, 198, 2, 1303, 14024, 2746, 198, 2, 825, 2251, 62, 12093, 4470, 62, 19412, 33529, 198, 2, 220, 197, 2, 2251, 2746, 198, 2, 220, 197, 19849, 796, 24604, 1843, 3419, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 2548, 11, 5128, 62, 27740, 28, 2548, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 260, 2290, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 16, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 2, 3082, 576, 2746, 198, 2, 220, 197, 19849, 13, 5589, 576, 7, 22462, 11639, 39491, 62, 19692, 298, 28338, 3256, 6436, 7509, 11639, 324, 363, 6335, 3256, 20731, 28, 17816, 4134, 23843, 6, 12962, 198, 2, 220, 197, 7783, 2746, 198, 2, 198, 2, 1303, 13446, 2746, 351, 25713, 27039, 198, 2, 3959, 1352, 796, 17337, 292, 9487, 7483, 7, 11249, 62, 22184, 28, 17953, 62, 12093, 4470, 62, 19412, 11, 36835, 82, 28, 4059, 11, 15458, 62, 7857, 28, 1495, 11, 15942, 577, 28, 15, 8, 198, 2, 479, 11379, 796, 29186, 1431, 42, 37, 727, 7, 77, 62, 22018, 896, 28, 940, 11, 36273, 28, 17821, 11, 4738, 62, 5219, 28, 28826, 8, 198, 2, 2482, 796, 3272, 62, 2100, 62, 26675, 7, 395, 320, 1352, 11, 1395, 11, 30240, 62, 56, 11, 269, 85, 28, 74, 11379, 8, 198, 2, 3601, 7203, 16, 11, 4064, 13, 17, 69, 16626, 837, 357, 7225, 17, 69, 4, 4407, 837, 4059, 11, 1495, 11, 23, 1, 4064, 357, 43420, 13, 32604, 3419, 9, 3064, 11, 2482, 13, 19282, 3419, 9, 3064, 4008, 198, 2, 198, 2, 198, 2, 198, 2, 1303, 16974, 2746, 198, 2, 825, 2251, 62, 12093, 4470, 62, 26548, 33529, 198, 2, 220, 197, 2, 2251, 2746, 198, 2, 220, 197, 19849, 796, 24604, 1843, 3419, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 2548, 11, 5128, 62, 27740, 28, 2548, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 260, 2290, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 16, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 2, 3082, 576, 2746, 198, 2, 220, 197, 19849, 13, 5589, 576, 7, 22462, 11639, 39491, 62, 19692, 298, 28338, 3256, 6436, 7509, 11639, 324, 363, 6335, 3256, 20731, 28, 17816, 4134, 23843, 6, 12962, 198, 2, 220, 197, 7783, 2746, 198, 2, 198, 2, 1303, 13446, 2746, 351, 25713, 27039, 198, 2, 3959, 1352, 796, 17337, 292, 9487, 7483, 7, 11249, 62, 22184, 28, 17953, 62, 12093, 4470, 62, 26548, 11, 36835, 82, 28, 4059, 11, 15458, 62, 7857, 28, 1495, 11, 15942, 577, 28, 15, 8, 198, 2, 479, 11379, 796, 29186, 1431, 42, 37, 727, 7, 77, 62, 22018, 896, 28, 940, 11, 36273, 28, 17821, 11, 4738, 62, 5219, 28, 28826, 8, 198, 2, 2482, 796, 3272, 62, 2100, 62, 26675, 7, 395, 320, 1352, 11, 1395, 11, 30240, 62, 56, 11, 269, 85, 28, 74, 11379, 8, 198, 2, 3601, 7203, 16, 11, 4064, 13, 17, 69, 16626, 837, 357, 7225, 17, 69, 4, 4407, 837, 4059, 11, 1495, 11, 940, 1, 4064, 357, 43420, 13, 32604, 3419, 9, 3064, 11, 2482, 13, 19282, 3419, 9, 3064, 4008, 198, 2, 198, 2, 198, 2, 198, 2, 1303, 198, 2, 1303, 198, 2, 1303, 198, 2, 1303, 198, 2, 1303, 198, 2, 1303, 198, 2, 1303, 198, 2, 1303, 2312, 1306, 4981, 389, 262, 976, 475, 484, 423, 517, 8576, 36835, 82, 198, 2, 1303, 198, 2, 1303, 198, 2, 1303, 198, 2, 1303, 198, 2, 1303, 198, 2, 1303, 198, 2, 1303, 198, 2, 1303, 198, 2, 1303, 198, 2, 198, 2, 825, 2251, 62, 12093, 4470, 33529, 198, 2, 220, 197, 2, 2251, 2746, 198, 2, 220, 197, 19849, 796, 24604, 1843, 3419, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 2548, 11, 5128, 62, 27740, 28, 2548, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 260, 2290, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 16, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 2, 3082, 576, 2746, 198, 2, 220, 197, 19849, 13, 5589, 576, 7, 22462, 11639, 39491, 62, 19692, 298, 28338, 3256, 6436, 7509, 11639, 324, 363, 6335, 3256, 20731, 28, 17816, 4134, 23843, 6, 12962, 198, 2, 220, 197, 7783, 2746, 198, 2, 198, 2, 1303, 13446, 2746, 351, 25713, 27039, 198, 2, 3959, 1352, 796, 17337, 292, 9487, 7483, 7, 11249, 62, 22184, 28, 17953, 62, 12093, 4470, 11, 36835, 82, 28, 12825, 11, 15458, 62, 7857, 28, 1495, 11, 15942, 577, 28, 15, 8, 198, 2, 479, 11379, 796, 29186, 1431, 42, 37, 727, 7, 77, 62, 22018, 896, 28, 940, 11, 36273, 28, 17821, 11, 4738, 62, 5219, 28, 28826, 8, 198, 2, 2482, 796, 3272, 62, 2100, 62, 26675, 7, 395, 320, 1352, 11, 1395, 11, 30240, 62, 56, 11, 269, 85, 28, 74, 11379, 8, 198, 2, 3601, 7203, 16, 11, 4064, 13, 17, 69, 16626, 837, 357, 7225, 17, 69, 4, 4407, 837, 12825, 11, 1495, 11, 18, 1, 4064, 357, 43420, 13, 32604, 3419, 9, 3064, 11, 2482, 13, 19282, 3419, 9, 3064, 4008, 198, 2, 198, 2, 198, 2, 198, 2, 1303, 1218, 2746, 198, 2, 825, 2251, 62, 12093, 4470, 62, 505, 33529, 198, 2, 220, 197, 2, 2251, 2746, 198, 2, 220, 197, 19849, 796, 24604, 1843, 3419, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 2548, 11, 5128, 62, 27740, 28, 2548, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 260, 2290, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 16, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 2, 3082, 576, 2746, 198, 2, 220, 197, 19849, 13, 5589, 576, 7, 22462, 11639, 39491, 62, 19692, 298, 28338, 3256, 6436, 7509, 11639, 324, 363, 6335, 3256, 20731, 28, 17816, 4134, 23843, 6, 12962, 198, 2, 220, 197, 7783, 2746, 198, 2, 198, 2, 1303, 13446, 2746, 351, 25713, 27039, 198, 2, 3959, 1352, 796, 17337, 292, 9487, 7483, 7, 11249, 62, 22184, 28, 17953, 62, 12093, 4470, 62, 505, 11, 36835, 82, 28, 12825, 11, 15458, 62, 7857, 28, 1495, 11, 15942, 577, 28, 15, 8, 198, 2, 479, 11379, 796, 29186, 1431, 42, 37, 727, 7, 77, 62, 22018, 896, 28, 940, 11, 36273, 28, 17821, 11, 4738, 62, 5219, 28, 28826, 8, 198, 2, 2482, 796, 3272, 62, 2100, 62, 26675, 7, 395, 320, 1352, 11, 1395, 11, 30240, 62, 56, 11, 269, 85, 28, 74, 11379, 8, 198, 2, 3601, 7203, 16, 11, 4064, 13, 17, 69, 16626, 837, 357, 7225, 17, 69, 4, 4407, 837, 12825, 11, 1495, 11, 16, 1, 4064, 357, 43420, 13, 32604, 3419, 9, 3064, 11, 2482, 13, 19282, 3419, 9, 3064, 4008, 198, 2, 198, 2, 198, 2, 198, 2, 1303, 2368, 2746, 198, 2, 825, 2251, 62, 12093, 4470, 62, 11545, 33529, 198, 2, 220, 197, 2, 2251, 2746, 198, 2, 220, 197, 19849, 796, 24604, 1843, 3419, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 2548, 11, 5128, 62, 27740, 28, 2548, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 260, 2290, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 16, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 2, 3082, 576, 2746, 198, 2, 220, 197, 19849, 13, 5589, 576, 7, 22462, 11639, 39491, 62, 19692, 298, 28338, 3256, 6436, 7509, 11639, 324, 363, 6335, 3256, 20731, 28, 17816, 4134, 23843, 6, 12962, 198, 2, 220, 197, 7783, 2746, 198, 2, 198, 2, 1303, 13446, 2746, 351, 25713, 27039, 198, 2, 3959, 1352, 796, 17337, 292, 9487, 7483, 7, 11249, 62, 22184, 28, 17953, 62, 12093, 4470, 62, 11545, 11, 36835, 82, 28, 12825, 11, 15458, 62, 7857, 28, 1495, 11, 15942, 577, 28, 15, 8, 198, 2, 479, 11379, 796, 29186, 1431, 42, 37, 727, 7, 77, 62, 22018, 896, 28, 940, 11, 36273, 28, 17821, 11, 4738, 62, 5219, 28, 28826, 8, 198, 2, 2482, 796, 3272, 62, 2100, 62, 26675, 7, 395, 320, 1352, 11, 1395, 11, 30240, 62, 56, 11, 269, 85, 28, 74, 11379, 8, 198, 2, 3601, 7203, 16, 11, 4064, 13, 17, 69, 16626, 837, 357, 7225, 17, 69, 4, 4407, 837, 12825, 11, 1495, 11, 17, 1, 4064, 357, 43420, 13, 32604, 3419, 9, 3064, 11, 2482, 13, 19282, 3419, 9, 3064, 4008, 198, 2, 198, 2, 198, 2, 1303, 5544, 2746, 198, 2, 825, 2251, 62, 12093, 4470, 62, 15542, 33529, 198, 2, 220, 197, 2, 2251, 2746, 198, 2, 220, 197, 19849, 796, 24604, 1843, 3419, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 2548, 11, 5128, 62, 27740, 28, 2548, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 260, 2290, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 16, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 2, 3082, 576, 2746, 198, 2, 220, 197, 19849, 13, 5589, 576, 7, 22462, 11639, 39491, 62, 19692, 298, 28338, 3256, 6436, 7509, 11639, 324, 363, 6335, 3256, 20731, 28, 17816, 4134, 23843, 6, 12962, 198, 2, 220, 197, 7783, 2746, 198, 2, 198, 2, 1303, 13446, 2746, 351, 25713, 27039, 198, 2, 3959, 1352, 796, 17337, 292, 9487, 7483, 7, 11249, 62, 22184, 28, 17953, 62, 12093, 4470, 62, 15542, 11, 36835, 82, 28, 12825, 11, 15458, 62, 7857, 28, 1495, 11, 15942, 577, 28, 15, 8, 198, 2, 479, 11379, 796, 29186, 1431, 42, 37, 727, 7, 77, 62, 22018, 896, 28, 940, 11, 36273, 28, 17821, 11, 4738, 62, 5219, 28, 28826, 8, 198, 2, 2482, 796, 3272, 62, 2100, 62, 26675, 7, 395, 320, 1352, 11, 1395, 11, 30240, 62, 56, 11, 269, 85, 28, 74, 11379, 8, 198, 2, 3601, 7203, 16, 11, 4064, 13, 17, 69, 16626, 837, 357, 7225, 17, 69, 4, 4407, 837, 12825, 11, 1495, 11, 19, 1, 4064, 357, 43420, 13, 32604, 3419, 9, 3064, 11, 2482, 13, 19282, 3419, 9, 3064, 4008, 198, 2, 198, 2, 198, 2, 198, 2, 198, 2, 1303, 8150, 2746, 198, 2, 825, 2251, 62, 12093, 4470, 62, 14337, 33529, 198, 2, 220, 197, 2, 2251, 2746, 198, 2, 220, 197, 19849, 796, 24604, 1843, 3419, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 2548, 11, 5128, 62, 27740, 28, 2548, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 260, 2290, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 16, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 2, 3082, 576, 2746, 198, 2, 220, 197, 19849, 13, 5589, 576, 7, 22462, 11639, 39491, 62, 19692, 298, 28338, 3256, 6436, 7509, 11639, 324, 363, 6335, 3256, 20731, 28, 17816, 4134, 23843, 6, 12962, 198, 2, 220, 197, 7783, 2746, 198, 2, 198, 2, 1303, 13446, 2746, 351, 25713, 27039, 198, 2, 3959, 1352, 796, 17337, 292, 9487, 7483, 7, 11249, 62, 22184, 28, 17953, 62, 12093, 4470, 62, 14337, 11, 36835, 82, 28, 12825, 11, 15458, 62, 7857, 28, 1495, 11, 15942, 577, 28, 15, 8, 198, 2, 479, 11379, 796, 29186, 1431, 42, 37, 727, 7, 77, 62, 22018, 896, 28, 940, 11, 36273, 28, 17821, 11, 4738, 62, 5219, 28, 28826, 8, 198, 2, 2482, 796, 3272, 62, 2100, 62, 26675, 7, 395, 320, 1352, 11, 1395, 11, 30240, 62, 56, 11, 269, 85, 28, 74, 11379, 8, 198, 2, 3601, 7203, 16, 11, 4064, 13, 17, 69, 16626, 837, 357, 7225, 17, 69, 4, 4407, 837, 12825, 11, 1495, 11, 20, 1, 4064, 357, 43420, 13, 32604, 3419, 9, 3064, 11, 2482, 13, 19282, 3419, 9, 3064, 4008, 198, 2, 198, 2, 198, 2, 198, 2, 198, 2, 1303, 11695, 2746, 198, 2, 825, 2251, 62, 12093, 4470, 62, 13261, 33529, 198, 2, 220, 197, 2, 2251, 2746, 198, 2, 220, 197, 19849, 796, 24604, 1843, 3419, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 2548, 11, 5128, 62, 27740, 28, 2548, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 260, 2290, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 16, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 2, 3082, 576, 2746, 198, 2, 220, 197, 19849, 13, 5589, 576, 7, 22462, 11639, 39491, 62, 19692, 298, 28338, 3256, 6436, 7509, 11639, 324, 363, 6335, 3256, 20731, 28, 17816, 4134, 23843, 6, 12962, 198, 2, 220, 197, 7783, 2746, 198, 2, 198, 2, 1303, 13446, 2746, 351, 25713, 27039, 198, 2, 3959, 1352, 796, 17337, 292, 9487, 7483, 7, 11249, 62, 22184, 28, 17953, 62, 12093, 4470, 62, 13261, 11, 36835, 82, 28, 12825, 11, 15458, 62, 7857, 28, 1495, 11, 15942, 577, 28, 15, 8, 198, 2, 479, 11379, 796, 29186, 1431, 42, 37, 727, 7, 77, 62, 22018, 896, 28, 940, 11, 36273, 28, 17821, 11, 4738, 62, 5219, 28, 28826, 8, 198, 2, 2482, 796, 3272, 62, 2100, 62, 26675, 7, 395, 320, 1352, 11, 1395, 11, 30240, 62, 56, 11, 269, 85, 28, 74, 11379, 8, 198, 2, 3601, 7203, 16, 11, 4064, 13, 17, 69, 16626, 837, 357, 7225, 17, 69, 4, 4407, 837, 12825, 11, 1495, 11, 21, 1, 4064, 357, 43420, 13, 32604, 3419, 9, 3064, 11, 2482, 13, 19282, 3419, 9, 3064, 4008, 198, 2, 198, 2, 198, 2, 198, 2, 198, 2, 198, 2, 1303, 14024, 2746, 198, 2, 825, 2251, 62, 12093, 4470, 62, 19412, 33529, 198, 2, 220, 197, 2, 2251, 2746, 198, 2, 220, 197, 19849, 796, 24604, 1843, 3419, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 2548, 11, 5128, 62, 27740, 28, 2548, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 260, 2290, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 16, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 2, 3082, 576, 2746, 198, 2, 220, 197, 19849, 13, 5589, 576, 7, 22462, 11639, 39491, 62, 19692, 298, 28338, 3256, 6436, 7509, 11639, 324, 363, 6335, 3256, 20731, 28, 17816, 4134, 23843, 6, 12962, 198, 2, 220, 197, 7783, 2746, 198, 2, 198, 2, 1303, 13446, 2746, 351, 25713, 27039, 198, 2, 3959, 1352, 796, 17337, 292, 9487, 7483, 7, 11249, 62, 22184, 28, 17953, 62, 12093, 4470, 62, 19412, 11, 36835, 82, 28, 12825, 11, 15458, 62, 7857, 28, 1495, 11, 15942, 577, 28, 15, 8, 198, 2, 479, 11379, 796, 29186, 1431, 42, 37, 727, 7, 77, 62, 22018, 896, 28, 940, 11, 36273, 28, 17821, 11, 4738, 62, 5219, 28, 28826, 8, 198, 2, 2482, 796, 3272, 62, 2100, 62, 26675, 7, 395, 320, 1352, 11, 1395, 11, 30240, 62, 56, 11, 269, 85, 28, 74, 11379, 8, 198, 2, 3601, 7203, 16, 11, 4064, 13, 17, 69, 16626, 837, 357, 7225, 17, 69, 4, 4407, 837, 12825, 11, 1495, 11, 23, 1, 4064, 357, 43420, 13, 32604, 3419, 9, 3064, 11, 2482, 13, 19282, 3419, 9, 3064, 4008, 198, 2, 198, 2, 198, 2, 198, 2, 1303, 16974, 2746, 198, 2, 825, 2251, 62, 12093, 4470, 62, 26548, 33529, 198, 2, 220, 197, 2, 2251, 2746, 198, 2, 220, 197, 19849, 796, 24604, 1843, 3419, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 2548, 11, 5128, 62, 27740, 28, 2548, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 260, 2290, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 16, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 2, 3082, 576, 2746, 198, 2, 220, 197, 19849, 13, 5589, 576, 7, 22462, 11639, 39491, 62, 19692, 298, 28338, 3256, 6436, 7509, 11639, 324, 363, 6335, 3256, 20731, 28, 17816, 4134, 23843, 6, 12962, 198, 2, 220, 197, 7783, 2746, 198, 2, 198, 2, 1303, 13446, 2746, 351, 25713, 27039, 198, 2, 3959, 1352, 796, 17337, 292, 9487, 7483, 7, 11249, 62, 22184, 28, 17953, 62, 12093, 4470, 62, 26548, 11, 36835, 82, 28, 12825, 11, 15458, 62, 7857, 28, 1495, 11, 15942, 577, 28, 15, 8, 198, 2, 479, 11379, 796, 29186, 1431, 42, 37, 727, 7, 77, 62, 22018, 896, 28, 940, 11, 36273, 28, 17821, 11, 4738, 62, 5219, 28, 28826, 8, 198, 2, 2482, 796, 3272, 62, 2100, 62, 26675, 7, 395, 320, 1352, 11, 1395, 11, 30240, 62, 56, 11, 269, 85, 28, 74, 11379, 8, 198, 2, 3601, 7203, 16, 11, 4064, 13, 17, 69, 16626, 837, 357, 7225, 17, 69, 4, 4407, 837, 12825, 11, 1495, 11, 940, 1, 4064, 357, 43420, 13, 32604, 3419, 9, 3064, 11, 2482, 13, 19282, 3419, 9, 3064, 4008, 198, 2, 198, 2, 198, 2, 1303, 198, 2, 1303, 198, 2, 1303, 198, 2, 1303, 198, 2, 1303, 198, 2, 1303, 777, 1306, 3392, 423, 4751, 36835, 82, 198, 2, 1303, 198, 2, 1303, 198, 2, 1303, 198, 2, 1303, 198, 2, 1303, 198, 2, 1303, 198, 2, 1303, 198, 2, 1303, 198, 2, 1303, 198, 2, 1303, 198, 2, 198, 2, 825, 2251, 62, 12093, 4470, 33529, 198, 2, 220, 197, 2, 2251, 2746, 198, 2, 220, 197, 19849, 796, 24604, 1843, 3419, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 2548, 11, 5128, 62, 27740, 28, 2548, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 260, 2290, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 16, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 2, 3082, 576, 2746, 198, 2, 220, 197, 19849, 13, 5589, 576, 7, 22462, 11639, 39491, 62, 19692, 298, 28338, 3256, 6436, 7509, 11639, 324, 363, 6335, 3256, 20731, 28, 17816, 4134, 23843, 6, 12962, 198, 2, 220, 197, 7783, 2746, 198, 2, 198, 2, 1303, 13446, 2746, 351, 25713, 27039, 198, 2, 3959, 1352, 796, 17337, 292, 9487, 7483, 7, 11249, 62, 22184, 28, 17953, 62, 12093, 4470, 11, 36835, 82, 28, 11024, 11, 15458, 62, 7857, 28, 1495, 11, 15942, 577, 28, 15, 8, 198, 2, 479, 11379, 796, 29186, 1431, 42, 37, 727, 7, 77, 62, 22018, 896, 28, 940, 11, 36273, 28, 17821, 11, 4738, 62, 5219, 28, 28826, 8, 198, 2, 2482, 796, 3272, 62, 2100, 62, 26675, 7, 395, 320, 1352, 11, 1395, 11, 30240, 62, 56, 11, 269, 85, 28, 74, 11379, 8, 198, 2, 3601, 7203, 16, 11, 4064, 13, 17, 69, 16626, 837, 357, 7225, 17, 69, 4, 4407, 837, 11024, 11, 1495, 11, 18, 1, 4064, 357, 43420, 13, 32604, 3419, 9, 3064, 11, 2482, 13, 19282, 3419, 9, 3064, 4008, 198, 2, 198, 2, 198, 2, 198, 2, 1303, 1218, 2746, 198, 2, 825, 2251, 62, 12093, 4470, 62, 505, 33529, 198, 2, 220, 197, 2, 2251, 2746, 198, 2, 220, 197, 19849, 796, 24604, 1843, 3419, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 2548, 11, 5128, 62, 27740, 28, 2548, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 260, 2290, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 16, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 2, 3082, 576, 2746, 198, 2, 220, 197, 19849, 13, 5589, 576, 7, 22462, 11639, 39491, 62, 19692, 298, 28338, 3256, 6436, 7509, 11639, 324, 363, 6335, 3256, 20731, 28, 17816, 4134, 23843, 6, 12962, 198, 2, 220, 197, 7783, 2746, 198, 2, 198, 2, 1303, 13446, 2746, 351, 25713, 27039, 198, 2, 3959, 1352, 796, 17337, 292, 9487, 7483, 7, 11249, 62, 22184, 28, 17953, 62, 12093, 4470, 62, 505, 11, 36835, 82, 28, 11024, 11, 15458, 62, 7857, 28, 1495, 11, 15942, 577, 28, 15, 8, 198, 2, 479, 11379, 796, 29186, 1431, 42, 37, 727, 7, 77, 62, 22018, 896, 28, 940, 11, 36273, 28, 17821, 11, 4738, 62, 5219, 28, 28826, 8, 198, 2, 2482, 796, 3272, 62, 2100, 62, 26675, 7, 395, 320, 1352, 11, 1395, 11, 30240, 62, 56, 11, 269, 85, 28, 74, 11379, 8, 198, 2, 3601, 7203, 16, 11, 4064, 13, 17, 69, 16626, 837, 357, 7225, 17, 69, 4, 4407, 837, 11024, 11, 1495, 11, 16, 1, 4064, 357, 43420, 13, 32604, 3419, 9, 3064, 11, 2482, 13, 19282, 3419, 9, 3064, 4008, 198, 2, 198, 2, 198, 2, 198, 2, 1303, 2368, 2746, 198, 2, 825, 2251, 62, 12093, 4470, 62, 11545, 33529, 198, 2, 220, 197, 2, 2251, 2746, 198, 2, 220, 197, 19849, 796, 24604, 1843, 3419, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 2548, 11, 5128, 62, 27740, 28, 2548, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 260, 2290, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 16, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 2, 3082, 576, 2746, 198, 2, 220, 197, 19849, 13, 5589, 576, 7, 22462, 11639, 39491, 62, 19692, 298, 28338, 3256, 6436, 7509, 11639, 324, 363, 6335, 3256, 20731, 28, 17816, 4134, 23843, 6, 12962, 198, 2, 220, 197, 7783, 2746, 198, 2, 198, 2, 1303, 13446, 2746, 351, 25713, 27039, 198, 2, 3959, 1352, 796, 17337, 292, 9487, 7483, 7, 11249, 62, 22184, 28, 17953, 62, 12093, 4470, 62, 11545, 11, 36835, 82, 28, 11024, 11, 15458, 62, 7857, 28, 1495, 11, 15942, 577, 28, 15, 8, 198, 2, 479, 11379, 796, 29186, 1431, 42, 37, 727, 7, 77, 62, 22018, 896, 28, 940, 11, 36273, 28, 17821, 11, 4738, 62, 5219, 28, 28826, 8, 198, 2, 2482, 796, 3272, 62, 2100, 62, 26675, 7, 395, 320, 1352, 11, 1395, 11, 30240, 62, 56, 11, 269, 85, 28, 74, 11379, 8, 198, 2, 3601, 7203, 16, 11, 4064, 13, 17, 69, 16626, 837, 357, 7225, 17, 69, 4, 4407, 837, 11024, 11, 1495, 11, 17, 1, 4064, 357, 43420, 13, 32604, 3419, 9, 3064, 11, 2482, 13, 19282, 3419, 9, 3064, 4008, 198, 2, 198, 2, 198, 2, 1303, 5544, 2746, 198, 2, 825, 2251, 62, 12093, 4470, 62, 15542, 33529, 198, 2, 220, 197, 2, 2251, 2746, 198, 2, 220, 197, 19849, 796, 24604, 1843, 3419, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 2548, 11, 5128, 62, 27740, 28, 2548, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 260, 2290, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 16, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 2, 3082, 576, 2746, 198, 2, 220, 197, 19849, 13, 5589, 576, 7, 22462, 11639, 39491, 62, 19692, 298, 28338, 3256, 6436, 7509, 11639, 324, 363, 6335, 3256, 20731, 28, 17816, 4134, 23843, 6, 12962, 198, 2, 220, 197, 7783, 2746, 198, 2, 198, 2, 1303, 13446, 2746, 351, 25713, 27039, 198, 2, 3959, 1352, 796, 17337, 292, 9487, 7483, 7, 11249, 62, 22184, 28, 17953, 62, 12093, 4470, 62, 15542, 11, 36835, 82, 28, 11024, 11, 15458, 62, 7857, 28, 1495, 11, 15942, 577, 28, 15, 8, 198, 2, 479, 11379, 796, 29186, 1431, 42, 37, 727, 7, 77, 62, 22018, 896, 28, 940, 11, 36273, 28, 17821, 11, 4738, 62, 5219, 28, 28826, 8, 198, 2, 2482, 796, 3272, 62, 2100, 62, 26675, 7, 395, 320, 1352, 11, 1395, 11, 30240, 62, 56, 11, 269, 85, 28, 74, 11379, 8, 198, 2, 3601, 7203, 16, 11, 4064, 13, 17, 69, 16626, 837, 357, 7225, 17, 69, 4, 4407, 837, 11024, 11, 1495, 11, 19, 1, 4064, 357, 43420, 13, 32604, 3419, 9, 3064, 11, 2482, 13, 19282, 3419, 9, 3064, 4008, 198, 2, 198, 2, 198, 2, 198, 2, 198, 2, 1303, 8150, 2746, 198, 2, 825, 2251, 62, 12093, 4470, 62, 14337, 33529, 198, 2, 220, 197, 2, 2251, 2746, 198, 2, 220, 197, 19849, 796, 24604, 1843, 3419, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 2548, 11, 5128, 62, 27740, 28, 2548, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 260, 2290, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 16, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 2, 3082, 576, 2746, 198, 2, 220, 197, 19849, 13, 5589, 576, 7, 22462, 11639, 39491, 62, 19692, 298, 28338, 3256, 6436, 7509, 11639, 324, 363, 6335, 3256, 20731, 28, 17816, 4134, 23843, 6, 12962, 198, 2, 220, 197, 7783, 2746, 198, 2, 198, 2, 1303, 13446, 2746, 351, 25713, 27039, 198, 2, 3959, 1352, 796, 17337, 292, 9487, 7483, 7, 11249, 62, 22184, 28, 17953, 62, 12093, 4470, 62, 14337, 11, 36835, 82, 28, 11024, 11, 15458, 62, 7857, 28, 1495, 11, 15942, 577, 28, 15, 8, 198, 2, 479, 11379, 796, 29186, 1431, 42, 37, 727, 7, 77, 62, 22018, 896, 28, 940, 11, 36273, 28, 17821, 11, 4738, 62, 5219, 28, 28826, 8, 198, 2, 2482, 796, 3272, 62, 2100, 62, 26675, 7, 395, 320, 1352, 11, 1395, 11, 30240, 62, 56, 11, 269, 85, 28, 74, 11379, 8, 198, 2, 3601, 7203, 16, 11, 4064, 13, 17, 69, 16626, 837, 357, 7225, 17, 69, 4, 4407, 837, 11024, 11, 1495, 11, 20, 1, 4064, 357, 43420, 13, 32604, 3419, 9, 3064, 11, 2482, 13, 19282, 3419, 9, 3064, 4008, 198, 2, 198, 2, 198, 2, 198, 2, 198, 2, 1303, 11695, 2746, 198, 2, 825, 2251, 62, 12093, 4470, 62, 13261, 33529, 198, 2, 220, 197, 2, 2251, 2746, 198, 2, 220, 197, 19849, 796, 24604, 1843, 3419, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 2548, 11, 5128, 62, 27740, 28, 2548, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 260, 2290, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 16, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 2, 3082, 576, 2746, 198, 2, 220, 197, 19849, 13, 5589, 576, 7, 22462, 11639, 39491, 62, 19692, 298, 28338, 3256, 6436, 7509, 11639, 324, 363, 6335, 3256, 20731, 28, 17816, 4134, 23843, 6, 12962, 198, 2, 220, 197, 7783, 2746, 198, 2, 198, 2, 1303, 13446, 2746, 351, 25713, 27039, 198, 2, 3959, 1352, 796, 17337, 292, 9487, 7483, 7, 11249, 62, 22184, 28, 17953, 62, 12093, 4470, 62, 13261, 11, 36835, 82, 28, 11024, 11, 15458, 62, 7857, 28, 1495, 11, 15942, 577, 28, 15, 8, 198, 2, 479, 11379, 796, 29186, 1431, 42, 37, 727, 7, 77, 62, 22018, 896, 28, 940, 11, 36273, 28, 17821, 11, 4738, 62, 5219, 28, 28826, 8, 198, 2, 2482, 796, 3272, 62, 2100, 62, 26675, 7, 395, 320, 1352, 11, 1395, 11, 30240, 62, 56, 11, 269, 85, 28, 74, 11379, 8, 198, 2, 3601, 7203, 16, 11, 4064, 13, 17, 69, 16626, 837, 357, 7225, 17, 69, 4, 4407, 837, 11024, 11, 1495, 11, 21, 1, 4064, 357, 43420, 13, 32604, 3419, 9, 3064, 11, 2482, 13, 19282, 3419, 9, 3064, 4008, 198, 2, 198, 2, 198, 2, 198, 2, 198, 2, 198, 2, 1303, 14024, 2746, 198, 2, 825, 2251, 62, 12093, 4470, 62, 19412, 33529, 198, 2, 220, 197, 2, 2251, 2746, 198, 2, 220, 197, 19849, 796, 24604, 1843, 3419, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 2548, 11, 5128, 62, 27740, 28, 2548, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 260, 2290, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 16, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 2, 3082, 576, 2746, 198, 2, 220, 197, 19849, 13, 5589, 576, 7, 22462, 11639, 39491, 62, 19692, 298, 28338, 3256, 6436, 7509, 11639, 324, 363, 6335, 3256, 20731, 28, 17816, 4134, 23843, 6, 12962, 198, 2, 220, 197, 7783, 2746, 198, 2, 198, 2, 1303, 13446, 2746, 351, 25713, 27039, 198, 2, 3959, 1352, 796, 17337, 292, 9487, 7483, 7, 11249, 62, 22184, 28, 17953, 62, 12093, 4470, 62, 19412, 11, 36835, 82, 28, 11024, 11, 15458, 62, 7857, 28, 1495, 11, 15942, 577, 28, 15, 8, 198, 2, 479, 11379, 796, 29186, 1431, 42, 37, 727, 7, 77, 62, 22018, 896, 28, 940, 11, 36273, 28, 17821, 11, 4738, 62, 5219, 28, 28826, 8, 198, 2, 2482, 796, 3272, 62, 2100, 62, 26675, 7, 395, 320, 1352, 11, 1395, 11, 30240, 62, 56, 11, 269, 85, 28, 74, 11379, 8, 198, 2, 3601, 7203, 16, 11, 4064, 13, 17, 69, 16626, 837, 357, 7225, 17, 69, 4, 4407, 837, 11024, 11, 1495, 11, 23, 1, 4064, 357, 43420, 13, 32604, 3419, 9, 3064, 11, 2482, 13, 19282, 3419, 9, 3064, 4008, 198, 2, 198, 2, 198, 2, 198, 2, 1303, 16974, 2746, 198, 2, 825, 2251, 62, 12093, 4470, 62, 26548, 33529, 198, 2, 220, 197, 2, 2251, 2746, 198, 2, 220, 197, 19849, 796, 24604, 1843, 3419, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 2548, 11, 5128, 62, 27740, 28, 2548, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 260, 2290, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 1120, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 19849, 13, 2860, 7, 35, 1072, 7, 16, 11, 9720, 62, 36733, 7509, 11639, 11265, 3256, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 2, 220, 197, 2, 3082, 576, 2746, 198, 2, 220, 197, 19849, 13, 5589, 576, 7, 22462, 11639, 39491, 62, 19692, 298, 28338, 3256, 6436, 7509, 11639, 324, 363, 6335, 3256, 20731, 28, 17816, 4134, 23843, 6, 12962, 198, 2, 220, 197, 7783, 2746, 198, 2, 198, 2, 1303, 13446, 2746, 351, 25713, 27039, 198, 2, 3959, 1352, 796, 17337, 292, 9487, 7483, 7, 11249, 62, 22184, 28, 17953, 62, 12093, 4470, 62, 26548, 11, 36835, 82, 28, 11024, 11, 15458, 62, 7857, 28, 1495, 11, 15942, 577, 28, 15, 8, 198, 2, 479, 11379, 796, 29186, 1431, 42, 37, 727, 7, 77, 62, 22018, 896, 28, 940, 11, 36273, 28, 17821, 11, 4738, 62, 5219, 28, 28826, 8, 198, 2, 2482, 796, 3272, 62, 2100, 62, 26675, 7, 395, 320, 1352, 11, 1395, 11, 30240, 62, 56, 11, 269, 85, 28, 74, 11379, 8, 198, 2, 3601, 7203, 16, 11, 4064, 13, 17, 69, 16626, 837, 357, 7225, 17, 69, 4, 4407, 837, 11024, 11, 1495, 11, 940, 1, 4064, 357, 43420, 13, 32604, 3419, 9, 3064, 11, 2482, 13, 19282, 3419, 9, 3064, 4008, 198 ]
2.646545
10,420
from .stylegan_encoder_network import * from .encoder import * from .encoding_dataset import * from .tensorboard import *
[ 6738, 764, 7635, 1030, 62, 12685, 12342, 62, 27349, 1330, 1635, 198, 6738, 764, 12685, 12342, 1330, 1635, 198, 6738, 764, 12685, 7656, 62, 19608, 292, 316, 1330, 1635, 198, 6738, 764, 83, 22854, 3526, 1330, 1635 ]
3.27027
37
# -*- coding: utf-8 -*- """ s1acker.s1acker ~~~~~~~~~~~~~~ This module provides functions that deal with s1 search interface. :copyright: (c) 2017 by quinoa42. :license: MIT, see LICENSE for more details. """ import logging import os.path as op import re import time from itertools import chain from os import makedirs import requests from bs4 import BeautifulSoup flaten = chain.from_iterable _SEARCH_URL = "http://bbs.saraba1st.com/2b/search.php?mod=forum" _SEARCH_ADV_URL = "http://bbs.saraba1st.com/2b/search.php?mod=forum&adv=yes" _TOPIC_URL = "http://bbs.saraba1st.com/2b/thread-{0}-1-1.html" _HOST = "bbs.saraba1st.com" _USER_AGENT = ( "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:54.0) " "Gecko/20100101 Firefox/54.0" ) _TIME_OUT = 10 _SLEEP_TIME = 1 logger = logging.getLogger(__name__) def _wait(): """wait for _SLEEP_TIME seconds. """ logger.info("wait for %s seconds.", _SLEEP_TIME) time.sleep(_SLEEP_TIME) class S1ack(object): """S1ack defines a class that implement search functions.""" def __init__(self, srchtxt, srchuname=None): """construct a s1ack object with given srchtxt and optional srchuname. :srchtxt: str that you want to search :srchuname: optional str that limit search topics to posts by this user """ self._session = requests.Session() self._session.headers.update({ 'User-Agent': _USER_AGENT, 'Host': _HOST }) r = self._session.get( _SEARCH_ADV_URL, timeout=_TIME_OUT, headers={'Referer': _SEARCH_URL} ) soup = BeautifulSoup(r.text, 'lxml') formhash = soup.find("input", attrs={"name": "formhash"})['value'] self._input_data = { "ascdesc": "desc", "before": "", "formhash": formhash, "orderby": "lastpost", "searchsubmit": "yes", "srchfid[]": "all", "srchfilter": "all", "srchfrom": 0, "srchtxt": srchtxt, "srchuname": srchuname if srchuname is not None else "" } logger.debug("input data: %r", self._input_data) def search(self): """Return the search result. :returns: list of Img object """ search_result = self._get_search_urls() result = list( set( flaten( map( self._get_imgs, flaten( map( self._get_pages, flaten( map(self._get_first_page, search_result) ) ) ) ) ) ) ) logger.debug("final result: %r", result) logger.info("find %d pictures", len(result)) return result def _get_search_urls(self): """Return the urls of the pages of searching result :returns: a list of str, where one str represent a url of one page """ logger.info("trying to search") r = self._session.post( _SEARCH_URL, timeout=_TIME_OUT, headers={"Referer": _SEARCH_ADV_URL}, data=self._input_data ) r.raise_for_status() result = BeautifulSoup(r.text, 'lxml').find("div", class_="pg") num = int(result.find_all("a")[-2].string) if result else 1 url = re.sub("&kw=.+$", "", r.url, 1) urls = [r.url] + [url + "&page=" + str(i) for i in range(2, num + 1)] logger.debug("search result: %r", urls) return urls def _get_first_page(self, url): """Return the first pages of the topics in the given search result page :url: str, the url of search result page :returns: list of str, represent the list of urls of topics """ _wait() logger.info("trying to get the topics in %s", url) r = self._session.get(url, timeout=_TIME_OUT) r.raise_for_status() s = BeautifulSoup(r.text, "lxml") topics = [ re.findall("tid=([0-9]{1,7})", topic.a['href'])[0] for topic in s.find_all("h3", class_="xs3") ] urls = [_TOPIC_URL.format(topic) for topic in topics] logger.debug("topics in %s: %r", url, urls) return urls def _get_pages(self, url): """Return the urls of all pages of a topic. :url: str, represent the url of a topic :returns: list of str, represent list of urls of the pages """ _wait() logger.info("trying to get the pages of %s", url) r = self._session.get(url) r.raise_for_status() soup = BeautifulSoup(r.text, 'lxml') multipage = soup.find('div', class_="pg") num = int(multipage.find_all("a")[-2].string) if multipage else 1 urls = [ re.sub("[0-9]{1,3}-1.html", str(page) + "-1.html", url) for page in range(1, num + 1) ] logger.debug("all pages of %s: %r", url, urls) return urls def _get_imgs(self, url): """Get list of imgs from the url. :url: str, represent the url wish to explore :returns: a list of Img object, represent the search result """ _wait() logger.info("trying to get imgs on the page %s", url) r = self._session.get(url) r.raise_for_status() soup = BeautifulSoup(r.text, 'lxml') imgs = [ url for url in [ img.attrs.get('file') or img.attrs.get('src') for post in soup.find_all("td", id=re.compile("postmessage_[0-9]{1,8}")) for img in post.find_all("img") ] if not re.match("http://static.saraba1st.com/image/smiley/", url) and re.search("\.(png|jpg)$", url) and not re.search("\.photobucket\.", url) ] result = [ Img(img, str(index), url) for index, img in enumerate(set(imgs)) ] logger.debug("Imgs in %s: %r", url, result) return result class Img(object): """Img defines an object that can be downloaded.""" def __init__(self, url, name, origin=""): """construct an Img object with url, name, and optional origin :url: str represent the url of the Img :name: the name given to this Img when downloading :origin: str represent the origin of the Img,i.e. the url of the topic """ self._url = url self._origin = origin self._topic = re.findall("thread-([0-9]{1,9})", origin)[0] if origin else "" self._name = name self._fmt = re.findall("(\.jpg|\.png)$", url)[0] def download(self, dest): """download this Img to the dest directory. :returns: None """ _wait() logger.info("trying to get img at %s", self._url) try: img = requests.get( self._url, headers={"User-Agent": _USER_AGENT, "Referer": self._origin}, timeout=_TIME_OUT ) img.raise_for_status() except Exception as e: logger.error("Failed when trying to get %s : %s", self._url, e) else: dir_path = op.join(dest, self._topic) if not op.exists(dir_path): logger.info("%s not exist, making the directory", dir_path) makedirs(dir_path) path = op.join(dir_path, self._name + self._fmt) logger.info("downloading img to %s", path) with open(path, 'wb') as f: f.write(img.content) __str__ = __unicode__ = __repr__
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 37811, 198, 220, 220, 220, 264, 16, 10735, 13, 82, 16, 10735, 198, 220, 220, 220, 220, 15116, 8728, 4907, 628, 220, 220, 220, 770, 8265, 3769, 5499, 326, 1730, 351, 264, 16, 2989, 7071, 13, 628, 220, 220, 220, 1058, 22163, 4766, 25, 357, 66, 8, 2177, 416, 627, 40564, 3682, 13, 198, 220, 220, 220, 1058, 43085, 25, 17168, 11, 766, 38559, 24290, 329, 517, 3307, 13, 198, 37811, 198, 198, 11748, 18931, 198, 11748, 28686, 13, 6978, 355, 1034, 198, 11748, 302, 198, 11748, 640, 198, 6738, 340, 861, 10141, 1330, 6333, 198, 6738, 28686, 1330, 285, 4335, 17062, 198, 198, 11748, 7007, 198, 6738, 275, 82, 19, 1330, 23762, 50, 10486, 198, 198, 2704, 36686, 796, 6333, 13, 6738, 62, 2676, 540, 198, 198, 62, 5188, 31315, 62, 21886, 796, 366, 4023, 1378, 65, 1443, 13, 82, 283, 15498, 16, 301, 13, 785, 14, 17, 65, 14, 12947, 13, 10121, 30, 4666, 28, 27302, 1, 198, 62, 5188, 31315, 62, 2885, 53, 62, 21886, 796, 366, 4023, 1378, 65, 1443, 13, 82, 283, 15498, 16, 301, 13, 785, 14, 17, 65, 14, 12947, 13, 10121, 30, 4666, 28, 27302, 5, 32225, 28, 8505, 1, 198, 62, 35222, 2149, 62, 21886, 796, 366, 4023, 1378, 65, 1443, 13, 82, 283, 15498, 16, 301, 13, 785, 14, 17, 65, 14, 16663, 12, 90, 15, 92, 12, 16, 12, 16, 13, 6494, 1, 198, 62, 39, 10892, 796, 366, 65, 1443, 13, 82, 283, 15498, 16, 301, 13, 785, 1, 198, 62, 29904, 62, 4760, 3525, 796, 357, 198, 220, 220, 220, 366, 44, 8590, 5049, 14, 20, 13, 15, 357, 14155, 37638, 26, 8180, 4100, 7294, 1395, 838, 13, 1065, 26, 374, 85, 25, 4051, 13, 15, 8, 366, 198, 220, 220, 220, 366, 10082, 37549, 14, 1264, 8298, 486, 16802, 14, 4051, 13, 15, 1, 198, 8, 198, 62, 34694, 62, 12425, 796, 838, 198, 62, 50, 2538, 8905, 62, 34694, 796, 352, 198, 198, 6404, 1362, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 628, 198, 4299, 4808, 17077, 33529, 198, 220, 220, 220, 37227, 17077, 329, 4808, 50, 2538, 8905, 62, 34694, 4201, 13, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 49706, 13, 10951, 7203, 17077, 329, 4064, 82, 4201, 33283, 4808, 50, 2538, 8905, 62, 34694, 8, 198, 220, 220, 220, 640, 13, 42832, 28264, 50, 2538, 8905, 62, 34694, 8, 628, 198, 4871, 311, 16, 441, 7, 15252, 2599, 198, 220, 220, 220, 37227, 50, 16, 441, 15738, 257, 1398, 326, 3494, 2989, 5499, 526, 15931, 628, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 19677, 354, 14116, 11, 19677, 354, 403, 480, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 41571, 257, 264, 16, 441, 2134, 351, 1813, 19677, 354, 14116, 290, 11902, 19677, 354, 403, 480, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 27891, 354, 14116, 25, 965, 326, 345, 765, 284, 2989, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 27891, 354, 403, 480, 25, 11902, 965, 326, 4179, 2989, 10233, 284, 6851, 416, 428, 2836, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 29891, 796, 7007, 13, 36044, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 29891, 13, 50145, 13, 19119, 15090, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 12982, 12, 36772, 10354, 4808, 29904, 62, 4760, 3525, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 17932, 10354, 4808, 39, 10892, 198, 220, 220, 220, 220, 220, 220, 220, 32092, 198, 220, 220, 220, 220, 220, 220, 220, 374, 796, 2116, 13557, 29891, 13, 1136, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 5188, 31315, 62, 2885, 53, 62, 21886, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26827, 28, 62, 34694, 62, 12425, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 24697, 34758, 6, 8134, 11882, 10354, 4808, 5188, 31315, 62, 21886, 92, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 17141, 796, 23762, 50, 10486, 7, 81, 13, 5239, 11, 705, 75, 19875, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1296, 17831, 796, 17141, 13, 19796, 7203, 15414, 1600, 708, 3808, 28, 4895, 3672, 1298, 366, 687, 17831, 20662, 8, 17816, 8367, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 15414, 62, 7890, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 3372, 20147, 1298, 366, 20147, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 19052, 1298, 366, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 687, 17831, 1298, 1296, 17831, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 2875, 1525, 1298, 366, 12957, 7353, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 12947, 46002, 1298, 366, 8505, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 27891, 354, 69, 312, 21737, 1298, 366, 439, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 27891, 354, 24455, 1298, 366, 439, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 27891, 354, 6738, 1298, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 27891, 354, 14116, 1298, 19677, 354, 14116, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 27891, 354, 403, 480, 1298, 19677, 354, 403, 480, 611, 19677, 354, 403, 480, 318, 407, 6045, 2073, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 24442, 7203, 15414, 1366, 25, 4064, 81, 1600, 2116, 13557, 15414, 62, 7890, 8, 628, 220, 220, 220, 825, 2989, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 13615, 262, 2989, 1255, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 82, 25, 1351, 286, 1846, 70, 2134, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2989, 62, 20274, 796, 2116, 13557, 1136, 62, 12947, 62, 6371, 82, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 1351, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 900, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6228, 268, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3975, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 1136, 62, 9600, 82, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6228, 268, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3975, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 1136, 62, 31126, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6228, 268, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3975, 7, 944, 13557, 1136, 62, 11085, 62, 7700, 11, 2989, 62, 20274, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 24442, 7203, 20311, 1255, 25, 4064, 81, 1600, 1255, 8, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 7203, 19796, 4064, 67, 5986, 1600, 18896, 7, 20274, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1255, 628, 220, 220, 220, 825, 4808, 1136, 62, 12947, 62, 6371, 82, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 13615, 262, 2956, 7278, 286, 262, 5468, 286, 10342, 1255, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 82, 25, 257, 1351, 286, 965, 11, 810, 530, 965, 2380, 257, 19016, 286, 530, 2443, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 7203, 83, 14992, 284, 2989, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 374, 796, 2116, 13557, 29891, 13, 7353, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 5188, 31315, 62, 21886, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26827, 28, 62, 34694, 62, 12425, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 24697, 28, 4895, 8134, 11882, 1298, 4808, 5188, 31315, 62, 2885, 53, 62, 21886, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 28, 944, 13557, 15414, 62, 7890, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 374, 13, 40225, 62, 1640, 62, 13376, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 23762, 50, 10486, 7, 81, 13, 5239, 11, 705, 75, 19875, 27691, 19796, 7203, 7146, 1600, 1398, 62, 2625, 6024, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 997, 796, 493, 7, 20274, 13, 19796, 62, 439, 7203, 64, 4943, 58, 12, 17, 4083, 8841, 8, 611, 1255, 2073, 352, 628, 220, 220, 220, 220, 220, 220, 220, 19016, 796, 302, 13, 7266, 7203, 5, 46265, 28, 13, 10, 3, 1600, 366, 1600, 374, 13, 6371, 11, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2956, 7278, 796, 685, 81, 13, 6371, 60, 1343, 685, 6371, 1343, 366, 5, 7700, 2625, 1343, 965, 7, 72, 8, 329, 1312, 287, 2837, 7, 17, 11, 997, 1343, 352, 15437, 628, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 24442, 7203, 12947, 1255, 25, 4064, 81, 1600, 2956, 7278, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2956, 7278, 628, 220, 220, 220, 825, 4808, 1136, 62, 11085, 62, 7700, 7, 944, 11, 19016, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 13615, 262, 717, 5468, 286, 262, 10233, 287, 262, 1813, 2989, 1255, 2443, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 6371, 25, 965, 11, 262, 19016, 286, 2989, 1255, 2443, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 82, 25, 1351, 286, 965, 11, 2380, 262, 1351, 286, 2956, 7278, 286, 10233, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 17077, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 7203, 83, 14992, 284, 651, 262, 10233, 287, 4064, 82, 1600, 19016, 8, 628, 220, 220, 220, 220, 220, 220, 220, 374, 796, 2116, 13557, 29891, 13, 1136, 7, 6371, 11, 26827, 28, 62, 34694, 62, 12425, 8, 198, 220, 220, 220, 220, 220, 220, 220, 374, 13, 40225, 62, 1640, 62, 13376, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 264, 796, 23762, 50, 10486, 7, 81, 13, 5239, 11, 366, 75, 19875, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 10233, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 302, 13, 19796, 439, 7203, 83, 312, 16193, 58, 15, 12, 24, 60, 90, 16, 11, 22, 30072, 1600, 7243, 13, 64, 17816, 33257, 6, 12962, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 7243, 287, 264, 13, 19796, 62, 439, 7203, 71, 18, 1600, 1398, 62, 2625, 34223, 18, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 2361, 198, 220, 220, 220, 220, 220, 220, 220, 2956, 7278, 796, 685, 62, 35222, 2149, 62, 21886, 13, 18982, 7, 26652, 8, 329, 7243, 287, 10233, 60, 628, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 24442, 7203, 4852, 873, 287, 4064, 82, 25, 4064, 81, 1600, 19016, 11, 2956, 7278, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2956, 7278, 628, 220, 220, 220, 825, 4808, 1136, 62, 31126, 7, 944, 11, 19016, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 13615, 262, 2956, 7278, 286, 477, 5468, 286, 257, 7243, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 6371, 25, 965, 11, 2380, 262, 19016, 286, 257, 7243, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 82, 25, 1351, 286, 965, 11, 2380, 1351, 286, 2956, 7278, 286, 262, 5468, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 4808, 17077, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 7203, 83, 14992, 284, 651, 262, 5468, 286, 4064, 82, 1600, 19016, 8, 628, 220, 220, 220, 220, 220, 220, 220, 374, 796, 2116, 13557, 29891, 13, 1136, 7, 6371, 8, 198, 220, 220, 220, 220, 220, 220, 220, 374, 13, 40225, 62, 1640, 62, 13376, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 17141, 796, 23762, 50, 10486, 7, 81, 13, 5239, 11, 705, 75, 19875, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 18540, 496, 796, 17141, 13, 19796, 10786, 7146, 3256, 1398, 62, 2625, 6024, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 997, 796, 493, 7, 16680, 541, 496, 13, 19796, 62, 439, 7203, 64, 4943, 58, 12, 17, 4083, 8841, 8, 611, 18540, 496, 2073, 352, 198, 220, 220, 220, 220, 220, 220, 220, 2956, 7278, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 302, 13, 7266, 7203, 58, 15, 12, 24, 60, 90, 16, 11, 18, 92, 12, 16, 13, 6494, 1600, 965, 7, 7700, 8, 1343, 27444, 16, 13, 6494, 1600, 19016, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 2443, 287, 2837, 7, 16, 11, 997, 1343, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2361, 628, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 24442, 7203, 439, 5468, 286, 4064, 82, 25, 4064, 81, 1600, 19016, 11, 2956, 7278, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2956, 7278, 628, 220, 220, 220, 825, 4808, 1136, 62, 9600, 82, 7, 944, 11, 19016, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3855, 1351, 286, 545, 14542, 422, 262, 19016, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 6371, 25, 965, 11, 2380, 262, 19016, 4601, 284, 7301, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 82, 25, 257, 1351, 286, 1846, 70, 2134, 11, 2380, 262, 2989, 1255, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 4808, 17077, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 7203, 83, 14992, 284, 651, 545, 14542, 319, 262, 2443, 4064, 82, 1600, 19016, 8, 628, 220, 220, 220, 220, 220, 220, 220, 374, 796, 2116, 13557, 29891, 13, 1136, 7, 6371, 8, 198, 220, 220, 220, 220, 220, 220, 220, 374, 13, 40225, 62, 1640, 62, 13376, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 17141, 796, 23762, 50, 10486, 7, 81, 13, 5239, 11, 705, 75, 19875, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 545, 14542, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19016, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 19016, 287, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 33705, 13, 1078, 3808, 13, 1136, 10786, 7753, 11537, 393, 33705, 13, 1078, 3808, 13, 1136, 10786, 10677, 11537, 329, 1281, 287, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17141, 13, 19796, 62, 439, 7203, 8671, 1600, 4686, 28, 260, 13, 5589, 576, 7203, 7353, 20500, 62, 58, 15, 12, 24, 60, 90, 16, 11, 23, 36786, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 33705, 287, 1281, 13, 19796, 62, 439, 7203, 9600, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2361, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 302, 13, 15699, 7203, 4023, 1378, 12708, 13, 82, 283, 15498, 16, 301, 13, 785, 14, 9060, 14, 5796, 9618, 14, 1600, 19016, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 302, 13, 12947, 7203, 59, 12195, 11134, 91, 9479, 8, 3, 1600, 19016, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 407, 302, 13, 12947, 7203, 17405, 38611, 672, 38811, 59, 33283, 19016, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2361, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1846, 70, 7, 9600, 11, 965, 7, 9630, 828, 19016, 8, 329, 6376, 11, 33705, 287, 27056, 378, 7, 2617, 7, 9600, 82, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2361, 628, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 24442, 7203, 3546, 14542, 287, 4064, 82, 25, 4064, 81, 1600, 19016, 11, 1255, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1255, 628, 198, 4871, 1846, 70, 7, 15252, 2599, 198, 220, 220, 220, 37227, 3546, 70, 15738, 281, 2134, 326, 460, 307, 15680, 526, 15931, 628, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 19016, 11, 1438, 11, 8159, 33151, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 41571, 281, 1846, 70, 2134, 351, 19016, 11, 1438, 11, 290, 11902, 8159, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 6371, 25, 965, 2380, 262, 19016, 286, 262, 1846, 70, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 3672, 25, 262, 1438, 1813, 284, 428, 1846, 70, 618, 22023, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 47103, 25, 965, 2380, 262, 8159, 286, 262, 1846, 70, 11, 72, 13, 68, 13, 262, 19016, 286, 262, 7243, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 6371, 796, 19016, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 47103, 796, 8159, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 26652, 796, 302, 13, 19796, 439, 7203, 16663, 12, 26933, 15, 12, 24, 60, 90, 16, 11, 24, 30072, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8159, 38381, 15, 60, 611, 8159, 2073, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 3672, 796, 1438, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 69, 16762, 796, 302, 13, 19796, 439, 7203, 7, 17405, 9479, 91, 17405, 11134, 8, 3, 1600, 19016, 38381, 15, 60, 628, 220, 220, 220, 825, 4321, 7, 944, 11, 2244, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 15002, 428, 1846, 70, 284, 262, 2244, 8619, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 82, 25, 6045, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 17077, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 7203, 83, 14992, 284, 651, 33705, 379, 4064, 82, 1600, 2116, 13557, 6371, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 33705, 796, 7007, 13, 1136, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 6371, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 24697, 28, 4895, 12982, 12, 36772, 1298, 4808, 29904, 62, 4760, 3525, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8134, 11882, 1298, 2116, 13557, 47103, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26827, 28, 62, 34694, 62, 12425, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 33705, 13, 40225, 62, 1640, 62, 13376, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 35528, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 18224, 7203, 37, 6255, 618, 2111, 284, 651, 4064, 82, 1058, 4064, 82, 1600, 2116, 13557, 6371, 11, 304, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26672, 62, 6978, 796, 1034, 13, 22179, 7, 16520, 11, 2116, 13557, 26652, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 1034, 13, 1069, 1023, 7, 15908, 62, 6978, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 7203, 4, 82, 407, 2152, 11, 1642, 262, 8619, 1600, 26672, 62, 6978, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 285, 4335, 17062, 7, 15908, 62, 6978, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 796, 1034, 13, 22179, 7, 15908, 62, 6978, 11, 2116, 13557, 3672, 1343, 2116, 13557, 69, 16762, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 7203, 15002, 278, 33705, 284, 4064, 82, 1600, 3108, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 6978, 11, 705, 39346, 11537, 355, 277, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 13, 13564, 7, 9600, 13, 11299, 8, 628, 220, 220, 220, 11593, 2536, 834, 796, 11593, 46903, 1098, 834, 796, 11593, 260, 1050, 834, 198 ]
1.98672
3,991
#!/usr/bin/env python ############################################################################ # # Copyright (C) 2016 The Qt Company Ltd. # Contact: https://www.qt.io/licensing/ # # This file is part of Qt Creator. # # Commercial License Usage # Licensees holding valid commercial Qt licenses may use this file in # accordance with the commercial license agreement provided with the # Software or, alternatively, in accordance with the terms contained in # a written agreement between you and The Qt Company. For licensing terms # and conditions see https://www.qt.io/terms-conditions. For further # information use the contact form at https://www.qt.io/contact-us. # # GNU General Public License Usage # Alternatively, this file may be used under the terms of the GNU # General Public License version 3 as published by the Free Software # Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT # included in the packaging of this file. Please review the following # information to ensure the GNU General Public License requirements will # be met: https://www.gnu.org/licenses/gpl-3.0.html. # ############################################################################ """ A simple program that parses untranslated.ts files current directory *must* be the top level qtcreator source directory Usage: scripts/uichanges.py old_untranslated.ts qtcreator_untranslated.ts IN TOP LEVEL QTC SOURCE DIRECTORY! """ import os, sys, string import subprocess from xml.sax import saxutils, handler, make_parser baseDir = os.getcwd() transDir = os.path.join(baseDir, 'share/qtcreator/translations') unchangedContexts = 0 # --- The ContentHandler # Generate a tree consisting of hash of context names. # Each context name value contains a hash of messages # Each message value contains a the file name (or '<unknown>') # ContentHandler methods # --- The main program oldGenerator = Generator() oldParser = make_parser() oldParser.setContentHandler(oldGenerator) oldParser.parse(sys.argv[1]) oldTree = oldGenerator.tree() newGenerator = Generator() newParser = make_parser() newParser.setContentHandler(newGenerator) newParser.parse(sys.argv[2]) newTree = newGenerator.tree() oldContextSet = set(oldTree.keys()) newContextSet = set(newTree.keys()) for c in sorted(oldContextSet.difference(newContextSet)): report = diffContext(c, oldTree[c], {}) if report: print(report.encode('utf-8')) else: unchangedContexts += 1 for c in sorted(newContextSet.difference(oldContextSet)): report = diffContext(c, {}, newTree[c]) if report: print(report.encode('utf-8')) else: unchangedContexts += 1 for c in sorted(newContextSet.intersection(oldContextSet)): report = diffContext(c, oldTree[c], newTree[c]) if report: print(report.encode('utf-8')) else: unchangedContexts += 1 print(u'{0} unchanged contexts'.format(unchangedContexts))
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 198, 29113, 29113, 7804, 4242, 198, 2, 198, 2, 15069, 357, 34, 8, 1584, 383, 33734, 5834, 12052, 13, 198, 2, 14039, 25, 3740, 1378, 2503, 13, 39568, 13, 952, 14, 677, 26426, 14, 198, 2, 198, 2, 770, 2393, 318, 636, 286, 33734, 21038, 13, 198, 2, 198, 2, 22724, 13789, 29566, 198, 2, 13789, 274, 4769, 4938, 5068, 33734, 16625, 743, 779, 428, 2393, 287, 198, 2, 10213, 351, 262, 5068, 5964, 4381, 2810, 351, 262, 198, 2, 10442, 393, 11, 46596, 11, 287, 10213, 351, 262, 2846, 7763, 287, 198, 2, 257, 3194, 4381, 1022, 345, 290, 383, 33734, 5834, 13, 1114, 15665, 2846, 198, 2, 290, 3403, 766, 3740, 1378, 2503, 13, 39568, 13, 952, 14, 38707, 12, 17561, 1756, 13, 1114, 2252, 198, 2, 1321, 779, 262, 2800, 1296, 379, 3740, 1378, 2503, 13, 39568, 13, 952, 14, 32057, 12, 385, 13, 198, 2, 198, 2, 22961, 3611, 5094, 13789, 29566, 198, 2, 25929, 11, 428, 2393, 743, 307, 973, 739, 262, 2846, 286, 262, 22961, 198, 2, 3611, 5094, 13789, 2196, 513, 355, 3199, 416, 262, 3232, 10442, 198, 2, 5693, 351, 13269, 355, 12655, 287, 262, 2393, 38559, 24290, 13, 38, 6489, 18, 12, 6369, 42006, 198, 2, 3017, 287, 262, 16846, 286, 428, 2393, 13, 4222, 2423, 262, 1708, 198, 2, 1321, 284, 4155, 262, 22961, 3611, 5094, 13789, 5359, 481, 198, 2, 307, 1138, 25, 3740, 1378, 2503, 13, 41791, 13, 2398, 14, 677, 4541, 14, 70, 489, 12, 18, 13, 15, 13, 6494, 13, 198, 2, 198, 29113, 29113, 7804, 4242, 198, 198, 37811, 198, 32, 2829, 1430, 326, 13544, 274, 1418, 26084, 17249, 13, 912, 3696, 198, 198, 14421, 8619, 1635, 27238, 9, 307, 262, 1353, 1241, 10662, 83, 45382, 2723, 8619, 198, 198, 28350, 25, 198, 220, 220, 220, 14750, 14, 84, 488, 6231, 13, 9078, 1468, 62, 403, 7645, 17249, 13, 912, 10662, 83, 45382, 62, 403, 7645, 17249, 13, 912, 628, 220, 220, 220, 3268, 28662, 49277, 1195, 4825, 311, 31033, 42242, 15513, 0, 198, 37811, 198, 198, 11748, 28686, 11, 25064, 11, 4731, 198, 11748, 850, 14681, 198, 198, 6738, 35555, 13, 82, 897, 1330, 46909, 26791, 11, 21360, 11, 787, 62, 48610, 198, 198, 8692, 35277, 796, 28686, 13, 1136, 66, 16993, 3419, 198, 7645, 35277, 796, 28686, 13, 6978, 13, 22179, 7, 8692, 35277, 11, 705, 20077, 14, 39568, 45382, 14, 7645, 49905, 11537, 198, 3316, 5102, 21947, 82, 796, 657, 198, 198, 2, 11420, 383, 14041, 25060, 198, 198, 2, 2980, 378, 257, 5509, 17747, 286, 12234, 286, 4732, 3891, 13, 198, 2, 5501, 4732, 1438, 1988, 4909, 257, 12234, 286, 6218, 198, 2, 5501, 3275, 1988, 4909, 257, 262, 2393, 1438, 357, 273, 705, 27, 34680, 29, 11537, 628, 220, 220, 220, 1303, 14041, 25060, 5050, 198, 198, 2, 11420, 383, 1388, 1430, 198, 198, 727, 8645, 1352, 796, 35986, 3419, 198, 727, 46677, 796, 787, 62, 48610, 3419, 198, 727, 46677, 13, 2617, 19746, 25060, 7, 727, 8645, 1352, 8, 198, 727, 46677, 13, 29572, 7, 17597, 13, 853, 85, 58, 16, 12962, 198, 198, 727, 27660, 796, 1468, 8645, 1352, 13, 21048, 3419, 198, 198, 3605, 8645, 1352, 796, 35986, 3419, 198, 3605, 46677, 796, 787, 62, 48610, 3419, 198, 3605, 46677, 13, 2617, 19746, 25060, 7, 3605, 8645, 1352, 8, 198, 3605, 46677, 13, 29572, 7, 17597, 13, 853, 85, 58, 17, 12962, 198, 198, 3605, 27660, 796, 649, 8645, 1352, 13, 21048, 3419, 198, 198, 727, 21947, 7248, 796, 900, 7, 727, 27660, 13, 13083, 28955, 198, 3605, 21947, 7248, 796, 900, 7, 3605, 27660, 13, 13083, 28955, 198, 198, 1640, 269, 287, 23243, 7, 727, 21947, 7248, 13, 26069, 1945, 7, 3605, 21947, 7248, 8, 2599, 198, 220, 220, 220, 989, 796, 814, 21947, 7, 66, 11, 1468, 27660, 58, 66, 4357, 23884, 8, 198, 220, 220, 220, 611, 989, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 13116, 13, 268, 8189, 10786, 40477, 12, 23, 6, 4008, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 21588, 21947, 82, 15853, 352, 198, 198, 1640, 269, 287, 23243, 7, 3605, 21947, 7248, 13, 26069, 1945, 7, 727, 21947, 7248, 8, 2599, 198, 220, 220, 220, 989, 796, 814, 21947, 7, 66, 11, 1391, 5512, 649, 27660, 58, 66, 12962, 198, 220, 220, 220, 611, 989, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 13116, 13, 268, 8189, 10786, 40477, 12, 23, 6, 4008, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 21588, 21947, 82, 15853, 352, 198, 198, 1640, 269, 287, 23243, 7, 3605, 21947, 7248, 13, 3849, 5458, 7, 727, 21947, 7248, 8, 2599, 198, 220, 220, 220, 989, 796, 814, 21947, 7, 66, 11, 1468, 27660, 58, 66, 4357, 649, 27660, 58, 66, 12962, 198, 220, 220, 220, 611, 989, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 13116, 13, 268, 8189, 10786, 40477, 12, 23, 6, 4008, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 21588, 21947, 82, 15853, 352, 198, 198, 4798, 7, 84, 6, 90, 15, 92, 21588, 26307, 4458, 18982, 7, 3316, 5102, 21947, 82, 4008, 198 ]
3.337868
882
# -*- coding: utf-8 -*- # flake8: noqa: E501 from __future__ import unicode_literals from datetime import datetime from kinopoisk.movie import Movie from .base import BaseTest
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 2, 781, 539, 23, 25, 645, 20402, 25, 412, 33548, 198, 6738, 11593, 37443, 834, 1330, 28000, 1098, 62, 17201, 874, 198, 198, 6738, 4818, 8079, 1330, 4818, 8079, 198, 198, 6738, 18967, 404, 78, 1984, 13, 41364, 1330, 15875, 198, 6738, 764, 8692, 1330, 7308, 14402, 628 ]
2.887097
62
import os import sys from argparse import ArgumentParser from azureml.core import Dataset, Datastore, Workspace from azureml.data.dataset_factory import DataType from azureml.datadrift import DataDriftDetector target_dataset_timestamp_column = "datetime" input_schema_dir = os.path.join("input", "schema") data_dir = "data" input_schema_file = "schema.csv" if __name__ == "__main__": main()
[ 11748, 28686, 198, 11748, 25064, 198, 6738, 1822, 29572, 1330, 45751, 46677, 198, 198, 6738, 35560, 495, 4029, 13, 7295, 1330, 16092, 292, 316, 11, 16092, 459, 382, 11, 10933, 10223, 198, 6738, 35560, 495, 4029, 13, 7890, 13, 19608, 292, 316, 62, 69, 9548, 1330, 6060, 6030, 198, 6738, 35560, 495, 4029, 13, 19608, 324, 35357, 1330, 6060, 6187, 2135, 11242, 9250, 198, 198, 16793, 62, 19608, 292, 316, 62, 16514, 27823, 62, 28665, 796, 366, 19608, 8079, 1, 198, 15414, 62, 15952, 2611, 62, 15908, 796, 28686, 13, 6978, 13, 22179, 7203, 15414, 1600, 366, 15952, 2611, 4943, 198, 7890, 62, 15908, 796, 366, 7890, 1, 198, 15414, 62, 15952, 2611, 62, 7753, 796, 366, 15952, 2611, 13, 40664, 1, 628, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1388, 3419, 198 ]
2.823944
142
import matplotlib matplotlib.use('Agg') import matplotlib.pyplot as plt import matplotlib.ticker as ticker import numpy as np import os from plot_constants import * plt.rcParams.update(params) plt.rc('font', family='serif') if __name__ == "__main__": fig, axs = plt.subplots(1, 4) fig.set_size_inches(28, 6) from params_exp_noise import * algorithms = ["ucss", "iso_reg_ss", "platt_scal_ss"] algorithm_df_guarantee = { "css": True, "ucss": False, "iso_reg_ss": False, "platt_scal_ss": False } algorithm_labels = { "css": "CSS", "ucss": "Uncalibrated", "iso_reg_ss": "Isotonic", "platt_scal_ss": "Platt" } algorithm_colors = { "css": "tab:blue", "ucss": "tab:red", "iso_reg_ss": "tab:purple", "platt_scal_ss": "tab:cyan" } algorithm_markers = { "css": "s", "ucss": 9, "iso_reg_ss": 10, "platt_scal_ss": 11 } for umb_num_bin in umb_num_bins: algorithms.append("umb_" + str(umb_num_bin)) algorithm_labels["umb_" + str(umb_num_bin)] = "UMB {} Bins".format(umb_num_bin) algorithm_colors["umb_" + str(umb_num_bin)] = umb_colors[umb_num_bin] algorithm_df_guarantee["umb_" + str(umb_num_bin)] = True algorithm_markers["umb_" + str(umb_num_bin)] = umb_markers[umb_num_bin] algorithms.append("css") metrics = ["num_selected", "num_qualified", "num_unqualified", "constraint_satisfied"] results = {} for noise_ratio in noise_ratios: results[noise_ratio] = {} for algorithm in algorithms: results[noise_ratio][algorithm] = {} for metric in metrics: results[noise_ratio][algorithm][metric] = {} results[noise_ratio][algorithm][metric]["values"] = [] for noise_ratio in noise_ratios: for run in runs: exp_identity_string = "_".join([str(n_train), str(noise_ratio), str(n_cal), lbd, str(run)]) for algorithm in algorithms: result_path = os.path.join(exp_dir, exp_identity_string + "_{}_result.pkl".format(algorithm)) collect_results_normal_exp(result_path, noise_ratio, algorithm, results) for noise_ratio in noise_ratios: for algorithm in algorithms: for metric in metrics: results[noise_ratio][algorithm][metric]["mean"] = np.mean(results[noise_ratio][algorithm][metric]["values"]) results[noise_ratio][algorithm][metric]["std"] = np.std(results[noise_ratio][algorithm][metric]["values"], ddof=1) # plotting whether constraint is satisfied handles = [] for algorithm in algorithms: mean_algorithm = np.array([results[noise_ratio][algorithm]["constraint_satisfied"]["mean"] for noise_ratio in noise_ratios]) std_err_algorithm = np.array( [results[noise_ratio][algorithm]["constraint_satisfied"]["std"] / np.sqrt(n_runs) for noise_ratio in noise_ratios]) line = axs[0].plot(noise_ratios_label, mean_algorithm, color=algorithm_colors[algorithm], marker=algorithm_markers[algorithm], linewidth=line_width, label=algorithm_labels[algorithm]) if algorithm == "css": handles = [line[0]] + handles else: handles.append(line[0]) axs[0].errorbar(noise_ratios_label, mean_algorithm, std_err_algorithm, color=algorithm_colors[algorithm], marker=algorithm_markers[algorithm], linewidth=line_width, label=algorithm_labels[algorithm], capthick=capthick) axs[0].yaxis.set_major_locator(ticker.MultipleLocator(0.5)) axs[0].set_xlabel("$r_{\mathrm{noise}}$", fontsize=font_size) axs[0].set_ylabel("EQ", fontsize=font_size) # plotting the number of selected applicants for algorithm in algorithms: if not algorithm_df_guarantee[algorithm]: continue mean_algorithm = np.array([results[noise_ratio][algorithm]["num_selected"]["mean"] for noise_ratio in noise_ratios]) std_algorithm = np.array([results[noise_ratio][algorithm]["num_selected"]["std"] for noise_ratio in noise_ratios]) axs[1].plot(noise_ratios_label, mean_algorithm, linewidth=line_width, color=algorithm_colors[algorithm], marker=algorithm_markers[algorithm] , label=algorithm_labels[algorithm]) axs[1].fill_between(noise_ratios_label, mean_algorithm - std_algorithm, mean_algorithm + std_algorithm, alpha=transparency, color=algorithm_colors[algorithm]) axs[1].set_xlabel("$r_{\mathrm{noise}}$", fontsize=font_size) axs[1].set_ylabel("SS", fontsize=font_size) axs[1].set_ylim(top=35) axs[1].set_ylim(bottom=5) from params_exp_cal_size import * results = {} for n_cal in n_cals: results[n_cal] = {} for algorithm in algorithms: results[n_cal][algorithm] = {} for metric in metrics: results[n_cal][algorithm][metric] = {} results[n_cal][algorithm][metric]["values"] = [] for n_cal in n_cals: for run in runs: exp_identity_string = "_".join([str(n_train), str(noise_ratio), str(n_cal), lbd, str(run)]) for algorithm in algorithms: result_path = os.path.join(exp_dir, exp_identity_string + "_{}_result.pkl".format(algorithm)) collect_results_normal_exp(result_path, n_cal, algorithm, results) for n_cal in n_cals: for algorithm in algorithms: for metric in metrics: results[n_cal][algorithm][metric]["mean"] = np.mean(results[n_cal][algorithm][metric]["values"]) results[n_cal][algorithm][metric]["std"] = np.std(results[n_cal][algorithm][metric]["values"], ddof=1) # plotting whether constraint is satisfied for algorithm in algorithms: # if algorithm_df_guarantee[algorithm] and algorithm != "css": # continue mean_algorithm = np.array([results[n_cal][algorithm]["constraint_satisfied"]["mean"] for n_cal in n_cals]) std_err_algorithm = np.array( [results[n_cal][algorithm]["constraint_satisfied"]["std"] / np.sqrt(n_runs) for n_cal in n_cals]) axs[2].errorbar(n_cals_label, mean_algorithm, std_err_algorithm, color=algorithm_colors[algorithm], linewidth=line_width, label=algorithm_labels[algorithm], marker=algorithm_markers[algorithm], capthick=capthick) axs[2].yaxis.set_major_locator(ticker.MultipleLocator(0.5)) axs[2].set_xlabel("$n$", fontsize=font_size) axs[2].set_ylabel("EQ", fontsize=font_size) # plotting the number of selected applicants for algorithm in algorithms: if not algorithm_df_guarantee[algorithm]: continue mean_algorithm = np.array([results[n_cal][algorithm]["num_selected"]["mean"] for n_cal in n_cals]) std_algorithm = np.array([results[n_cal][algorithm]["num_selected"]["std"] for n_cal in n_cals]) axs[3].plot(n_cals_label, mean_algorithm, linewidth=line_width, color=algorithm_colors[algorithm], marker=algorithm_markers[algorithm] , label=algorithm_labels[algorithm]) axs[3].fill_between(n_cals_label, mean_algorithm - std_algorithm, mean_algorithm + std_algorithm, alpha=transparency, color=algorithm_colors[algorithm]) axs[3].set_xlabel("$n$", fontsize=font_size) axs[3].set_ylabel("SS", fontsize=font_size) axs[3].set_ylim(top=35) axs[3].set_ylim(bottom=5) fig.legend(handles=handles, bbox_to_anchor=(0.5, 1.02), loc="upper center", ncol=5) plt.tight_layout(rect=[0, 0, 1, 0.78]) fig.savefig("./plots/exp_normal.pdf", format="pdf")
[ 11748, 2603, 29487, 8019, 198, 6759, 29487, 8019, 13, 1904, 10786, 46384, 11537, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 2603, 29487, 8019, 13, 83, 15799, 355, 4378, 263, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 28686, 198, 6738, 7110, 62, 9979, 1187, 1330, 1635, 198, 489, 83, 13, 6015, 10044, 4105, 13, 19119, 7, 37266, 8, 198, 489, 83, 13, 6015, 10786, 10331, 3256, 1641, 11639, 2655, 361, 11537, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 2336, 11, 7877, 82, 796, 458, 83, 13, 7266, 489, 1747, 7, 16, 11, 604, 8, 198, 220, 220, 220, 2336, 13, 2617, 62, 7857, 62, 45457, 7, 2078, 11, 718, 8, 198, 220, 220, 220, 422, 42287, 62, 11201, 62, 3919, 786, 1330, 1635, 198, 220, 220, 220, 16113, 796, 14631, 1229, 824, 1600, 366, 26786, 62, 2301, 62, 824, 1600, 366, 489, 1078, 62, 1416, 282, 62, 824, 8973, 198, 220, 220, 220, 11862, 62, 7568, 62, 5162, 4741, 1453, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 25471, 1298, 6407, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 1229, 824, 1298, 10352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 26786, 62, 2301, 62, 824, 1298, 10352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 489, 1078, 62, 1416, 282, 62, 824, 1298, 10352, 198, 220, 220, 220, 1782, 198, 220, 220, 220, 11862, 62, 23912, 1424, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 25471, 1298, 366, 49155, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 1229, 824, 1298, 366, 3118, 9948, 2889, 515, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 26786, 62, 2301, 62, 824, 1298, 366, 3792, 313, 9229, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 489, 1078, 62, 1416, 282, 62, 824, 1298, 366, 3646, 1078, 1, 198, 220, 220, 220, 1782, 198, 220, 220, 220, 11862, 62, 4033, 669, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 25471, 1298, 366, 8658, 25, 17585, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 1229, 824, 1298, 366, 8658, 25, 445, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 26786, 62, 2301, 62, 824, 1298, 366, 8658, 25, 14225, 1154, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 489, 1078, 62, 1416, 282, 62, 824, 1298, 366, 8658, 25, 948, 272, 1, 198, 220, 220, 220, 1782, 198, 220, 220, 220, 11862, 62, 4102, 364, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 25471, 1298, 366, 82, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 1229, 824, 1298, 860, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 26786, 62, 2301, 62, 824, 1298, 838, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 489, 1078, 62, 1416, 282, 62, 824, 1298, 1367, 198, 220, 220, 220, 1782, 198, 220, 220, 220, 329, 20810, 62, 22510, 62, 8800, 287, 20810, 62, 22510, 62, 65, 1040, 25, 198, 220, 220, 220, 220, 220, 220, 220, 16113, 13, 33295, 7203, 2178, 62, 1, 1343, 965, 7, 2178, 62, 22510, 62, 8800, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 11862, 62, 23912, 1424, 14692, 2178, 62, 1, 1343, 965, 7, 2178, 62, 22510, 62, 8800, 15437, 796, 366, 5883, 33, 23884, 347, 1040, 1911, 18982, 7, 2178, 62, 22510, 62, 8800, 8, 198, 220, 220, 220, 220, 220, 220, 220, 11862, 62, 4033, 669, 14692, 2178, 62, 1, 1343, 965, 7, 2178, 62, 22510, 62, 8800, 15437, 796, 20810, 62, 4033, 669, 58, 2178, 62, 22510, 62, 8800, 60, 198, 220, 220, 220, 220, 220, 220, 220, 11862, 62, 7568, 62, 5162, 4741, 1453, 14692, 2178, 62, 1, 1343, 965, 7, 2178, 62, 22510, 62, 8800, 15437, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 11862, 62, 4102, 364, 14692, 2178, 62, 1, 1343, 965, 7, 2178, 62, 22510, 62, 8800, 15437, 796, 20810, 62, 4102, 364, 58, 2178, 62, 22510, 62, 8800, 60, 198, 220, 220, 220, 16113, 13, 33295, 7203, 25471, 4943, 198, 220, 220, 220, 20731, 796, 14631, 22510, 62, 34213, 1600, 366, 22510, 62, 22557, 1600, 366, 22510, 62, 403, 22557, 1600, 366, 1102, 2536, 2913, 62, 82, 17403, 798, 8973, 198, 220, 220, 220, 2482, 796, 23884, 198, 220, 220, 220, 329, 7838, 62, 10366, 952, 287, 7838, 62, 10366, 4267, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2482, 58, 3919, 786, 62, 10366, 952, 60, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 329, 11862, 287, 16113, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2482, 58, 3919, 786, 62, 10366, 952, 7131, 282, 42289, 60, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 18663, 287, 20731, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2482, 58, 3919, 786, 62, 10366, 952, 7131, 282, 42289, 7131, 4164, 1173, 60, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2482, 58, 3919, 786, 62, 10366, 952, 7131, 282, 42289, 7131, 4164, 1173, 7131, 1, 27160, 8973, 796, 17635, 628, 220, 220, 220, 329, 7838, 62, 10366, 952, 287, 7838, 62, 10366, 4267, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1057, 287, 4539, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1033, 62, 738, 414, 62, 8841, 796, 45434, 1911, 22179, 26933, 2536, 7, 77, 62, 27432, 828, 965, 7, 3919, 786, 62, 10366, 952, 828, 965, 7, 77, 62, 9948, 828, 300, 17457, 11, 965, 7, 5143, 8, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 11862, 287, 16113, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 62, 6978, 796, 28686, 13, 6978, 13, 22179, 7, 11201, 62, 15908, 11, 1033, 62, 738, 414, 62, 8841, 1343, 366, 23330, 92, 62, 20274, 13, 79, 41582, 1911, 18982, 7, 282, 42289, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2824, 62, 43420, 62, 11265, 62, 11201, 7, 20274, 62, 6978, 11, 7838, 62, 10366, 952, 11, 11862, 11, 2482, 8, 628, 220, 220, 220, 329, 7838, 62, 10366, 952, 287, 7838, 62, 10366, 4267, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 11862, 287, 16113, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 18663, 287, 20731, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2482, 58, 3919, 786, 62, 10366, 952, 7131, 282, 42289, 7131, 4164, 1173, 7131, 1, 32604, 8973, 796, 45941, 13, 32604, 7, 43420, 58, 3919, 786, 62, 10366, 952, 7131, 282, 42289, 7131, 4164, 1173, 7131, 1, 27160, 8973, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2482, 58, 3919, 786, 62, 10366, 952, 7131, 282, 42289, 7131, 4164, 1173, 7131, 1, 19282, 8973, 796, 45941, 13, 19282, 7, 43420, 58, 3919, 786, 62, 10366, 952, 7131, 282, 42289, 7131, 4164, 1173, 7131, 1, 27160, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49427, 1659, 28, 16, 8, 198, 220, 220, 220, 1303, 29353, 1771, 32315, 318, 11378, 198, 220, 220, 220, 17105, 796, 17635, 198, 220, 220, 220, 329, 11862, 287, 16113, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1612, 62, 282, 42289, 796, 45941, 13, 18747, 26933, 43420, 58, 3919, 786, 62, 10366, 952, 7131, 282, 42289, 7131, 1, 1102, 2536, 2913, 62, 82, 17403, 798, 1, 7131, 1, 32604, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 7838, 62, 10366, 952, 287, 7838, 62, 10366, 4267, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 14367, 62, 8056, 62, 282, 42289, 796, 45941, 13, 18747, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 43420, 58, 3919, 786, 62, 10366, 952, 7131, 282, 42289, 7131, 1, 1102, 2536, 2913, 62, 82, 17403, 798, 1, 7131, 1, 19282, 8973, 1220, 45941, 13, 31166, 17034, 7, 77, 62, 48381, 8, 329, 7838, 62, 10366, 952, 287, 7838, 62, 10366, 4267, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 1627, 796, 7877, 82, 58, 15, 4083, 29487, 7, 3919, 786, 62, 10366, 4267, 62, 18242, 11, 1612, 62, 282, 42289, 11, 3124, 28, 282, 42289, 62, 4033, 669, 58, 282, 42289, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18364, 28, 282, 42289, 62, 4102, 364, 58, 282, 42289, 4357, 9493, 413, 5649, 28, 1370, 62, 10394, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6167, 28, 282, 42289, 62, 23912, 1424, 58, 282, 42289, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 611, 11862, 6624, 366, 25471, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17105, 796, 685, 1370, 58, 15, 11907, 1343, 17105, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17105, 13, 33295, 7, 1370, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 82, 58, 15, 4083, 18224, 5657, 7, 3919, 786, 62, 10366, 4267, 62, 18242, 11, 1612, 62, 282, 42289, 11, 14367, 62, 8056, 62, 282, 42289, 11, 3124, 28, 282, 42289, 62, 4033, 669, 58, 282, 42289, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18364, 28, 282, 42289, 62, 4102, 364, 58, 282, 42289, 4357, 9493, 413, 5649, 28, 1370, 62, 10394, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6167, 28, 282, 42289, 62, 23912, 1424, 58, 282, 42289, 4357, 1451, 400, 624, 28, 11128, 400, 624, 8, 198, 220, 220, 220, 7877, 82, 58, 15, 4083, 88, 22704, 13, 2617, 62, 22478, 62, 17946, 1352, 7, 83, 15799, 13, 31217, 33711, 1352, 7, 15, 13, 20, 4008, 198, 220, 220, 220, 7877, 82, 58, 15, 4083, 2617, 62, 87, 18242, 7203, 3, 81, 23330, 59, 11018, 26224, 90, 3919, 786, 11709, 3, 1600, 10369, 7857, 28, 10331, 62, 7857, 8, 198, 220, 220, 220, 7877, 82, 58, 15, 4083, 2617, 62, 2645, 9608, 7203, 36, 48, 1600, 10369, 7857, 28, 10331, 62, 7857, 8, 628, 220, 220, 220, 1303, 29353, 262, 1271, 286, 6163, 17057, 198, 220, 220, 220, 329, 11862, 287, 16113, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 11862, 62, 7568, 62, 5162, 4741, 1453, 58, 282, 42289, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 1612, 62, 282, 42289, 796, 45941, 13, 18747, 26933, 43420, 58, 3919, 786, 62, 10366, 952, 7131, 282, 42289, 7131, 1, 22510, 62, 34213, 1, 7131, 1, 32604, 8973, 329, 7838, 62, 10366, 952, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 7838, 62, 10366, 4267, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 14367, 62, 282, 42289, 796, 45941, 13, 18747, 26933, 43420, 58, 3919, 786, 62, 10366, 952, 7131, 282, 42289, 7131, 1, 22510, 62, 34213, 1, 7131, 1, 19282, 8973, 329, 7838, 62, 10366, 952, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 7838, 62, 10366, 4267, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 7877, 82, 58, 16, 4083, 29487, 7, 3919, 786, 62, 10366, 4267, 62, 18242, 11, 1612, 62, 282, 42289, 11, 9493, 413, 5649, 28, 1370, 62, 10394, 11, 3124, 28, 282, 42289, 62, 4033, 669, 58, 282, 42289, 4357, 18364, 28, 282, 42289, 62, 4102, 364, 58, 282, 42289, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 837, 6167, 28, 282, 42289, 62, 23912, 1424, 58, 282, 42289, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 82, 58, 16, 4083, 20797, 62, 23395, 7, 3919, 786, 62, 10366, 4267, 62, 18242, 11, 1612, 62, 282, 42289, 532, 14367, 62, 282, 42289, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1612, 62, 282, 42289, 1343, 14367, 62, 282, 42289, 11, 17130, 28, 7645, 11944, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3124, 28, 282, 42289, 62, 4033, 669, 58, 282, 42289, 12962, 198, 220, 220, 220, 7877, 82, 58, 16, 4083, 2617, 62, 87, 18242, 7203, 3, 81, 23330, 59, 11018, 26224, 90, 3919, 786, 11709, 3, 1600, 10369, 7857, 28, 10331, 62, 7857, 8, 198, 220, 220, 220, 7877, 82, 58, 16, 4083, 2617, 62, 2645, 9608, 7203, 5432, 1600, 10369, 7857, 28, 10331, 62, 7857, 8, 198, 220, 220, 220, 7877, 82, 58, 16, 4083, 2617, 62, 88, 2475, 7, 4852, 28, 2327, 8, 198, 220, 220, 220, 7877, 82, 58, 16, 4083, 2617, 62, 88, 2475, 7, 22487, 28, 20, 8, 628, 220, 220, 220, 422, 42287, 62, 11201, 62, 9948, 62, 7857, 1330, 1635, 628, 220, 220, 220, 2482, 796, 23884, 198, 220, 220, 220, 329, 299, 62, 9948, 287, 299, 62, 66, 874, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2482, 58, 77, 62, 9948, 60, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 329, 11862, 287, 16113, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2482, 58, 77, 62, 9948, 7131, 282, 42289, 60, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 18663, 287, 20731, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2482, 58, 77, 62, 9948, 7131, 282, 42289, 7131, 4164, 1173, 60, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2482, 58, 77, 62, 9948, 7131, 282, 42289, 7131, 4164, 1173, 7131, 1, 27160, 8973, 796, 17635, 628, 220, 220, 220, 329, 299, 62, 9948, 287, 299, 62, 66, 874, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1057, 287, 4539, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1033, 62, 738, 414, 62, 8841, 796, 45434, 1911, 22179, 26933, 2536, 7, 77, 62, 27432, 828, 965, 7, 3919, 786, 62, 10366, 952, 828, 965, 7, 77, 62, 9948, 828, 300, 17457, 11, 965, 7, 5143, 8, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 11862, 287, 16113, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 62, 6978, 796, 28686, 13, 6978, 13, 22179, 7, 11201, 62, 15908, 11, 1033, 62, 738, 414, 62, 8841, 1343, 366, 23330, 92, 62, 20274, 13, 79, 41582, 1911, 18982, 7, 282, 42289, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2824, 62, 43420, 62, 11265, 62, 11201, 7, 20274, 62, 6978, 11, 299, 62, 9948, 11, 11862, 11, 2482, 8, 628, 220, 220, 220, 329, 299, 62, 9948, 287, 299, 62, 66, 874, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 11862, 287, 16113, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 18663, 287, 20731, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2482, 58, 77, 62, 9948, 7131, 282, 42289, 7131, 4164, 1173, 7131, 1, 32604, 8973, 796, 45941, 13, 32604, 7, 43420, 58, 77, 62, 9948, 7131, 282, 42289, 7131, 4164, 1173, 7131, 1, 27160, 8973, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2482, 58, 77, 62, 9948, 7131, 282, 42289, 7131, 4164, 1173, 7131, 1, 19282, 8973, 796, 45941, 13, 19282, 7, 43420, 58, 77, 62, 9948, 7131, 282, 42289, 7131, 4164, 1173, 7131, 1, 27160, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49427, 1659, 28, 16, 8, 198, 220, 220, 220, 1303, 29353, 1771, 32315, 318, 11378, 198, 220, 220, 220, 329, 11862, 287, 16113, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 611, 11862, 62, 7568, 62, 5162, 4741, 1453, 58, 282, 42289, 60, 290, 11862, 14512, 366, 25471, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 1612, 62, 282, 42289, 796, 45941, 13, 18747, 26933, 43420, 58, 77, 62, 9948, 7131, 282, 42289, 7131, 1, 1102, 2536, 2913, 62, 82, 17403, 798, 1, 7131, 1, 32604, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 299, 62, 9948, 287, 299, 62, 66, 874, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 14367, 62, 8056, 62, 282, 42289, 796, 45941, 13, 18747, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 43420, 58, 77, 62, 9948, 7131, 282, 42289, 7131, 1, 1102, 2536, 2913, 62, 82, 17403, 798, 1, 7131, 1, 19282, 8973, 1220, 45941, 13, 31166, 17034, 7, 77, 62, 48381, 8, 329, 299, 62, 9948, 287, 299, 62, 66, 874, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 82, 58, 17, 4083, 18224, 5657, 7, 77, 62, 66, 874, 62, 18242, 11, 1612, 62, 282, 42289, 11, 14367, 62, 8056, 62, 282, 42289, 11, 3124, 28, 282, 42289, 62, 4033, 669, 58, 282, 42289, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9493, 413, 5649, 28, 1370, 62, 10394, 11, 6167, 28, 282, 42289, 62, 23912, 1424, 58, 282, 42289, 4357, 18364, 28, 282, 42289, 62, 4102, 364, 58, 282, 42289, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1451, 400, 624, 28, 11128, 400, 624, 8, 198, 220, 220, 220, 7877, 82, 58, 17, 4083, 88, 22704, 13, 2617, 62, 22478, 62, 17946, 1352, 7, 83, 15799, 13, 31217, 33711, 1352, 7, 15, 13, 20, 4008, 198, 220, 220, 220, 7877, 82, 58, 17, 4083, 2617, 62, 87, 18242, 7203, 3, 77, 3, 1600, 10369, 7857, 28, 10331, 62, 7857, 8, 198, 220, 220, 220, 7877, 82, 58, 17, 4083, 2617, 62, 2645, 9608, 7203, 36, 48, 1600, 10369, 7857, 28, 10331, 62, 7857, 8, 628, 220, 220, 220, 1303, 29353, 262, 1271, 286, 6163, 17057, 198, 220, 220, 220, 329, 11862, 287, 16113, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 11862, 62, 7568, 62, 5162, 4741, 1453, 58, 282, 42289, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 1612, 62, 282, 42289, 796, 45941, 13, 18747, 26933, 43420, 58, 77, 62, 9948, 7131, 282, 42289, 7131, 1, 22510, 62, 34213, 1, 7131, 1, 32604, 8973, 329, 299, 62, 9948, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 299, 62, 66, 874, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 14367, 62, 282, 42289, 796, 45941, 13, 18747, 26933, 43420, 58, 77, 62, 9948, 7131, 282, 42289, 7131, 1, 22510, 62, 34213, 1, 7131, 1, 19282, 8973, 329, 299, 62, 9948, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 299, 62, 66, 874, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 82, 58, 18, 4083, 29487, 7, 77, 62, 66, 874, 62, 18242, 11, 1612, 62, 282, 42289, 11, 9493, 413, 5649, 28, 1370, 62, 10394, 11, 3124, 28, 282, 42289, 62, 4033, 669, 58, 282, 42289, 4357, 18364, 28, 282, 42289, 62, 4102, 364, 58, 282, 42289, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 837, 6167, 28, 282, 42289, 62, 23912, 1424, 58, 282, 42289, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 7877, 82, 58, 18, 4083, 20797, 62, 23395, 7, 77, 62, 66, 874, 62, 18242, 11, 1612, 62, 282, 42289, 532, 14367, 62, 282, 42289, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1612, 62, 282, 42289, 1343, 14367, 62, 282, 42289, 11, 17130, 28, 7645, 11944, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3124, 28, 282, 42289, 62, 4033, 669, 58, 282, 42289, 12962, 198, 220, 220, 220, 7877, 82, 58, 18, 4083, 2617, 62, 87, 18242, 7203, 3, 77, 3, 1600, 10369, 7857, 28, 10331, 62, 7857, 8, 198, 220, 220, 220, 7877, 82, 58, 18, 4083, 2617, 62, 2645, 9608, 7203, 5432, 1600, 10369, 7857, 28, 10331, 62, 7857, 8, 198, 220, 220, 220, 7877, 82, 58, 18, 4083, 2617, 62, 88, 2475, 7, 4852, 28, 2327, 8, 198, 220, 220, 220, 7877, 82, 58, 18, 4083, 2617, 62, 88, 2475, 7, 22487, 28, 20, 8, 628, 220, 220, 220, 2336, 13, 1455, 437, 7, 4993, 829, 28, 4993, 829, 11, 275, 3524, 62, 1462, 62, 3702, 273, 16193, 15, 13, 20, 11, 352, 13, 2999, 828, 1179, 2625, 45828, 3641, 1600, 299, 4033, 28, 20, 8, 198, 220, 220, 220, 458, 83, 13, 33464, 62, 39786, 7, 2554, 41888, 15, 11, 657, 11, 352, 11, 657, 13, 3695, 12962, 198, 220, 220, 220, 2336, 13, 21928, 5647, 7, 1911, 14, 489, 1747, 14, 11201, 62, 11265, 13, 12315, 1600, 5794, 2625, 12315, 4943, 198 ]
2.035994
4,084
from typing import List, Type, Union from pydantic import BaseModel from tortoise import Model, fields from fast_tmp.utils.password import make_password, verify_password
[ 6738, 19720, 1330, 7343, 11, 5994, 11, 4479, 198, 198, 6738, 279, 5173, 5109, 1330, 7308, 17633, 198, 6738, 7619, 25678, 1330, 9104, 11, 7032, 198, 198, 6738, 3049, 62, 22065, 13, 26791, 13, 28712, 1330, 787, 62, 28712, 11, 11767, 62, 28712, 628, 628, 198 ]
3.826087
46
import numpy as np import matplotlib as mpl # import matplotlib.cm as cm import matplotlib.pyplot as plt import matplotlib.patheffects as pe from brightness_temperature import * from plot_searchlight import get_intensity, font_size, iunits #plt.rc('text.latex', preamble=r'\usepackage{cmbright}') #plt.rc('text', usetex=False) lambda0 = 121.56841096386111 # nm wavelength = np.array([120.85647513019845, 121.04863120292787, 121.18861407155109, 121.29060823835265, 121.36494181786958, 121.41913498583673, 121.45866338283498, 121.48751396885412, 121.50858975582949, 121.52400450419977, 121.53529729933265, 121.54358879034517, 121.54969495175679, 121.55420991638432, 121.55756628818231, 121.56007905763141, 121.56197757770408, 121.5634288464184, 121.56455445948667, 121.56544295399095, 121.56615879614279, 121.56674892551068, 121.56724752004678, 121.56767946562972, 121.56806288233183, 121.56841096386111, 121.56875904539042, 121.56914246209253, 121.56957440767549, 121.57007300221157, 121.57066313157947, 121.57137897373131, 121.5722674682356, 121.57339308130386, 121.57484435001817, 121.57674287009084, 121.57925563953995, 121.58261201133794, 121.58712697596546, 121.5932331373771, 121.6015246283896, 121.6128174235225, 121.62823217189276, 121.64930795886815, 121.67815854488727, 121.71768694188553, 121.77188010985269, 121.84621368936962, 121.94820785617118, 122.0881907247944, 122.2803467975238]) # nm center = np.argmin(np.abs(wavelength - lambda0)) blue_wing = center - 11 red_wing = center + 11 continuum = np.argmax(wavelength) plt.rcParams['text.usetex'] = True PATH = "./linedata/" CMAX = 100 CMIN = 0 CMAX_wing = 80 CMIN_wing = 0 CMAP = "gist_gray_r" CMAP_CONT = "gist_gray_r" lpad = 8 if __name__ == "__main__": intensity_half = get_intensity("half_res_ul7n12_disk_centre_1.npy", PATH) intensity_third = get_intensity("regular_third_disk_centre.npy", PATH) intensity_quarter = get_intensity("regular_quarter_disk_centre.npy", PATH) intensity_cont_ext_5e5 = get_intensity("voronoi_5e5_disk_centre.npy", PATH) intensity_cont_ext_5e5_1dot5 = get_intensity("voronoi_ul7n12_5e5_disk_centre_1dot5.npy", PATH) intensity_cont_ext_1e6 = get_intensity("voronoi_ul7n12_1e6_disk_centre_1.npy", PATH) intensity_cont_ext_1e6_1dot5 = get_intensity("voronoi_ul7n12_1e6_disk_centre_1dot5.npy", PATH) intensity_cont_ext_2e6 = get_intensity("voronoi_ul7n12_2e6_disk_centre_1.npy", PATH) intensity_cont_ext_3e6 = get_intensity("voronoi_ul7n12_3e6_disk_centre_1.npy", PATH) intensity_tot_ext_5e5 = get_intensity("total_ext_5e5_disk_centre_1.npy", PATH) intensity_tot_ext_1e6 = get_intensity("total_ext_1e6_disk_centre_1.npy", PATH) intensity_tot_ext_2e6 = get_intensity("total_ext_2e6_disk_centre_1.npy", PATH) intensity_tot_ext_3e6 = get_intensity("total_ext_3e6_disk_centre_1.npy", PATH) intensity_destruction_5e5 = get_intensity("destruction_5e5_disk_centre_1.npy", PATH) intensity_destruction_1e6 = get_intensity("destruction_1e6_disk_centre_1.npy", PATH) intensity_density_5e5 = get_intensity("density_5e5_disk_centre_1.npy", PATH) intensity_ionised_5e5 = get_intensity("ionised_hydrogen_5e5_disk_centre_1.npy", PATH) intensity_ionised_1e6 = get_intensity("ionised_hydrogen_1e6_disk_centre_1.npy", PATH) intensity_ionised_2e6 = get_intensity("ionised_hydrogen_2e6_disk_centre_1.npy", PATH) intensity_uniform_1e6 = get_intensity("uniform_1e6_disk_centre_1.npy", PATH) convergence_quarter = np.load(PATH+"regular_ul7n12_quarter.npy") convergence_half = np.load(PATH+"regular_ul7n12_half.npy") convergence_third = np.load(PATH+"regular_ul7n12_third.npy") convergence_cont_5e5 = np.load("./convergence/voronoi_ul7n12_5e5_convergence.npy") convergence_cont_1e6 = np.load("./convergence/voronoi_ul7n12_1e6_convergence.npy") convergence_cont_2e6 = np.load("./convergence/voronoi_ul7n12_2e6_convergence.npy") convergence_cont_3e6 = np.load("./convergence/voronoi_ul7n12_3e6_convergence.npy") convergence_ionised_5e5 = np.load("./convergence/ionised_hydrogen_5e5_convergence.npy") convergence_ionised_1e6 = np.load("./convergence/ionised_hydrogen_1e6_convergence.npy") convergence_ionised_2e6 = np.load("./convergence/ionised_hydrogen_2000000_convergence.npy") convergence_density_5e5 = np.load("./convergence/density_5e5_convergence.npy") convergence_destruction_5e5 = np.load("./convergence/destruction_5e5_convergence.npy") convergence_destruction_1e6 = np.load("./convergence/destruction_1e6_convergence.npy") convergence_tot_ext_5e5 = np.load("./convergence/total_ext_5e5_convergence.npy") convergence_tot_ext_1e6 = np.load("./convergence/total_ext_1e6_convergence.npy") convergence_tot_ext_2e6 = np.load("./convergence/total_ext_2e6_convergence.npy") convergence_tot_ext_3e6 = np.load("./convergence/total_ext_3e6_convergence.npy") convergence_uniform_1e6 = np.load("./convergence/uniform_1e6_convergence.npy") velocity = ((wavelength - lambda0)/lambda0*constants.c).to("km s-1") print("Velocity at blue wing: %.3f" %(velocity[blue_wing].value)) print("Velocity at continuum: %.3f" %(velocity[continuum].value)) CMAX_continuum = intensity_half[continuum, :, :].max() CMIN_continuum = intensity_half[continuum, :, :].min() font_size() # compare sampling methods fig, ax = plt.subplots(1, 2, figsize=(7.5,4), constrained_layout=True) # plot disk-centre intensity in wings and centre, and continuum ax[0].imshow(intensity_cont_ext_1e6[center, :, :], cmap=CMAP, origin="lower", vmax=CMAX, vmin=CMIN) ax[0].axis(False) ax[0].set_title(r"$\alpha^c~\textrm{sampling}$") im = ax[1].imshow(intensity_uniform_1e6[center, :, :], cmap=CMAP, origin="lower", vmax=CMAX, vmin=CMIN) ax[1].axis(False) ax[1].set_title(r"$U~\textrm{sampling}$") x = np.load("../data/LTE/x_regular_full.npy") pix2Mm = (x.max() - x.min())*1e-6/len(x) # Line: ax[0].hlines(y=16, xmin=20, xmax=20 + 1/pix2Mm, lw=3, color='w', path_effects=[pe.Stroke(linewidth=5, foreground="black"),pe.Normal()]) # ax[0].vlines(x=(40+1/pix2Mm)/2, ymin=14, ymax=18, lw=1/pix2Mm-8.25, color='w', # path_effects=[pe.Stroke(linewidth=1/pix2Mm-6.25, foreground="black"),pe.Normal()]) # Text: ax[0].text(18, 20, r"\textbf{1 Mm}", color='w', fontsize=14, path_effects=[pe.Stroke(linewidth=2, foreground="black"),pe.Normal()]) # Line: ax[1].hlines(y=16, xmin=20, xmax=20 + 1/pix2Mm, lw=3, color='w', path_effects=[pe.Stroke(linewidth=5, foreground="black"),pe.Normal()]) # Text: ax[1].text(18, 20, r"\textbf{1 Mm}", color='w', fontsize=14, path_effects=[pe.Stroke(linewidth=2, foreground="black"),pe.Normal()]) fig.colorbar(im, fraction=0.043, pad=0.04, label=iunits) fig.suptitle(r"$\textbf{Disk-centre intensity at line centre, irregular grid}$") plt.savefig("../img/compare_line/quick_compare.pdf") plt.close() ################################################################################ ################################################################################ ################################################################################ # compare sampling methods fig, ax = plt.subplots(1, 4, figsize=(14.5,4), constrained_layout=True) # plot disk-centre intensity in wings and centre, and continuum ax[0].imshow(intensity_cont_ext_1e6[center, :, :], cmap=CMAP, origin="lower", vmax=CMAX, vmin=CMIN) ax[0].axis(False) ax[0].set_title(r"$\alpha^c~\textrm{sampling}$") ax[1].imshow(intensity_ionised_1e6[center, :, :], cmap=CMAP, origin="lower", vmax=CMAX, vmin=CMIN) ax[1].axis(False) ax[1].set_title(r"$N_\textrm{\small{H\,II}}^\textrm{\small{LTE}}~\textrm{sampling}$") ax[2].imshow(intensity_tot_ext_1e6[center, :, :], cmap=CMAP, origin="lower", vmax=CMAX, vmin=CMIN) ax[2].axis(False) ax[2].set_title(r"$\alpha^\textrm{tot}~\textrm{sampling}$") im = ax[3].imshow(intensity_destruction_1e6[center, :, :], cmap=CMAP, origin="lower", vmax=CMAX, vmin=CMIN) ax[3].axis(False) ax[3].set_title(r"$\varepsilon~\textrm{sampling}$") x = np.load("../data/LTE/x_regular_full.npy") pix2Mm = (x.max() - x.min())*1e-6/len(x) # Line: ax[0].hlines(y=16, xmin=20, xmax=20 + 1/pix2Mm, lw=3, color='w', path_effects=[pe.Stroke(linewidth=5, foreground="black"),pe.Normal()]) # ax[0].vlines(x=(40+1/pix2Mm)/2, ymin=14, ymax=18, lw=1/pix2Mm-8.25, color='w', # path_effects=[pe.Stroke(linewidth=1/pix2Mm-6.25, foreground="black"),pe.Normal()]) # Text: ax[0].text(18, 20, r"\textbf{1 Mm}", color='w', fontsize=14, path_effects=[pe.Stroke(linewidth=2, foreground="black"),pe.Normal()]) # Line: ax[1].hlines(y=16, xmin=20, xmax=20 + 1/pix2Mm, lw=3, color='w', path_effects=[pe.Stroke(linewidth=5, foreground="black"),pe.Normal()]) # Text: ax[1].text(18, 20, r"\textbf{1 Mm}", color='w', fontsize=14, path_effects=[pe.Stroke(linewidth=2, foreground="black"),pe.Normal()]) # Line: ax[2].hlines(y=16, xmin=20, xmax=20 + 1/pix2Mm, lw=3, color='w', path_effects=[pe.Stroke(linewidth=5, foreground="black"),pe.Normal()]) # Text: ax[2].text(18, 20, r"\textbf{1 Mm}", color='w', fontsize=14, path_effects=[pe.Stroke(linewidth=2, foreground="black"),pe.Normal()]) # Line: ax[3].hlines(y=16, xmin=20, xmax=20 + 1/pix2Mm, lw=3, color='w', path_effects=[pe.Stroke(linewidth=5, foreground="black"),pe.Normal()]) # Text: ax[3].text(18, 20, r"\textbf{1 Mm}", color='w', fontsize=14, path_effects=[pe.Stroke(linewidth=2, foreground="black"),pe.Normal()]) fig.colorbar(im, fraction=0.043, pad=0.04, label=iunits) fig.suptitle(r"$\textbf{Disk-centre intensity at line centre, irregular grid}$") # plt.show() plt.savefig("../img/compare_line/compare_sites.pdf") ################################################################################ ################################################################################ ################################################################################ # Plot images over line wing, centre, and continuum, regular grid fig, ax = plt.subplots(1, 3, figsize=(13,4), constrained_layout=True) # plot disk-centre intensity in wings and centre, and continuum im = ax[0].imshow(intensity_half[blue_wing, :, :], cmap=CMAP, origin="lower", vmax=CMAX_wing, vmin=CMIN_wing) ax[0].axis(False) wl = wavelength[blue_wing] ax[0].set_title(r"$\textrm{Blue wing}~%.3f\,\textrm{nm}$" %wl) cbar = plt.colorbar(im, ax=ax[0], fraction=0.046, pad=0.04) cbar.set_label(iunits, rotation=90, labelpad=0) im = ax[1].imshow(intensity_half[center, :, :], cmap=CMAP, origin="lower", vmax=CMAX, vmin=CMIN) ax[1].axis(False) wl = wavelength[center] ax[1].set_title(r"$\textrm{Line centre}~%.3f\,\textrm{nm}$" %wl) cbar = plt.colorbar(im, ax=ax[1], fraction=0.046, pad=0.04) cbar.set_label(iunits, rotation=90, labelpad=0) im = ax[2].imshow(intensity_half[continuum, :, :], cmap=CMAP_CONT, origin="lower", vmax=CMAX_continuum, vmin=CMIN_continuum) ax[2].axis(False) wl = wavelength[continuum] ax[2].set_title(r"$\textrm{Continuum}~%.3f\,\textrm{nm}$" %wl) cbar = plt.colorbar(im, ax=ax[2], fraction=0.046, pad=0.04) cbar.set_label(iunits, rotation=90, labelpad=lpad) x = np.load("../data/LTE/x_regular_half.npy") pix2Mm = (x.max() - x.min())*1e-6/len(x) # Line: ax[0].hlines(y=8, xmin=10, xmax=10 + 1/pix2Mm, lw=3, color='w', path_effects=[pe.Stroke(linewidth=5, foreground="black"),pe.Normal()]) # ax[0].vlines(x=(20+1/pix2Mm)/2, ymin=7, ymax=9, lw=1/pix2Mm, color='w', # path_effects=[pe.Stroke(linewidth=1/pix2Mm, foreground="black"),pe.Normal()]) # Text: ax[0].text(9, 10, r"\textbf{1 Mm}", color='w', fontsize=14, path_effects=[pe.Stroke(linewidth=2, foreground="black"),pe.Normal()]) # Line: ax[1].hlines(y=8, xmin=10, xmax=10 + 1/pix2Mm, lw=3, color='w', path_effects=[pe.Stroke(linewidth=5, foreground="black"),pe.Normal()]) # ax[1].vlines(x=(20+1/pix2Mm)/2, ymin=7, ymax=9, lw=1/pix2Mm, color='w', # path_effects=[pe.Stroke(linewidth=1/pix2Mm, foreground="black"),pe.Normal()]) # Text: ax[1].text(9, 10, r"\textbf{1 Mm}", color='w', fontsize=14, path_effects=[pe.Stroke(linewidth=2, foreground="black"),pe.Normal()]) # Line: ax[2].hlines(y=8, xmin=10, xmax=10 + 1/pix2Mm, lw=3, color='w', path_effects=[pe.Stroke(linewidth=5, foreground="black"),pe.Normal()]) # ax[2].vlines(x=(20+1/pix2Mm)/2, ymin=7, ymax=9, lw=1/pix2Mm, color='w', # path_effects=[pe.Stroke(linewidth=1/pix2Mm, foreground="black"),pe.Normal()]) # Text: ax[2].text(9, 10, r"\textbf{1 Mm}", color='w', fontsize=14, path_effects=[pe.Stroke(linewidth=2, foreground="black"),pe.Normal()]) fig.suptitle(r"$\textbf{Disk-centre intensity, regular Grid}$") plt.savefig("../img/compare_line/regular_disk_centre.pdf") ################################################################################ ################################################################################ ################################################################################ # Plot images over line wing, centre, and continuum, irregular grid fig, ax = plt.subplots(1, 3, figsize=(13,4), constrained_layout=True) # plot disk-centre intensity in wings and centre, and continuum im = ax[0].imshow(intensity_cont_ext_3e6[blue_wing, :, :], cmap=CMAP, origin="lower", vmax=CMAX_wing, vmin=CMIN_wing) ax[0].axis(False) wl = wavelength[blue_wing] ax[0].set_title(r"$\textrm{Blue wing}~%.3f\,\textrm{nm}$" %wl) cbar = plt.colorbar(im, ax=ax[0], fraction=0.046, pad=0.04) cbar.set_label(iunits, rotation=90, labelpad=0) im = ax[1].imshow(intensity_cont_ext_3e6[center, :, :], cmap=CMAP, origin="lower", vmax=CMAX, vmin=CMIN) ax[1].axis(False) wl = wavelength[center] ax[1].set_title(r"$\textrm{Line centre}~%.3f\,\textrm{nm}$" %wl) cbar = plt.colorbar(im, ax=ax[1], fraction=0.046, pad=0.04) cbar.set_label(iunits, rotation=90, labelpad=0) im = ax[2].imshow(intensity_cont_ext_3e6[continuum, :, :], cmap=CMAP_CONT, origin="lower", vmax=CMAX_continuum, vmin=CMIN_continuum) ax[2].axis(False) wl = wavelength[continuum] ax[2].set_title(r"$\textrm{Continuum}~%.3f\,\textrm{nm}$" %wl) cbar = plt.colorbar(im, ax=ax[2], fraction=0.046, pad=0.04) cbar.set_label(iunits, rotation=90, labelpad=lpad) x = np.load("../data/LTE/x_regular_full.npy") pix2Mm = (x.max() - x.min())*1e-6/len(x) # Line: ax[0].hlines(y=16, xmin=20, xmax=20 + 1/pix2Mm, lw=3, color='w', path_effects=[pe.Stroke(linewidth=5, foreground="black"),pe.Normal()]) # ax[0].vlines(x=(40+1/pix2Mm)/2, ymin=14, ymax=18, lw=1/pix2Mm-8.25, color='w', # path_effects=[pe.Stroke(linewidth=1/pix2Mm-6.25, foreground="black"),pe.Normal()]) # Text: ax[0].text(18, 20, r"\textbf{1 Mm}", color='w', fontsize=14, path_effects=[pe.Stroke(linewidth=2, foreground="black"),pe.Normal()]) # Line: ax[1].hlines(y=16, xmin=20, xmax=20 + 1/pix2Mm, lw=3, color='w', path_effects=[pe.Stroke(linewidth=5, foreground="black"),pe.Normal()]) # ax[1].vlines(x=(40+1/pix2Mm)/2, ymin=14, ymax=18, lw=1/pix2Mm-8.25, color='w', # path_effects=[pe.Stroke(linewidth=1/pix2Mm-6.25, foreground="black"),pe.Normal()]) # Text: ax[1].text(18, 20, r"\textbf{1 Mm}", color='w', fontsize=14, path_effects=[pe.Stroke(linewidth=2, foreground="black"),pe.Normal()]) # Line: ax[2].hlines(y=16, xmin=20, xmax=20 + 1/pix2Mm, lw=3, color='w', path_effects=[pe.Stroke(linewidth=5, foreground="black"),pe.Normal()]) # ax[2].vlines(x=(40+1/pix2Mm)/2, ymin=14, ymax=18, lw=1/pix2Mm-8.25, color='w', # path_effects=[pe.Stroke(linewidth=1/pix2Mm-6.25, foreground="black"),pe.Normal()]) # Text: ax[2].text(18, 20, r"\textbf{1 Mm}", color='w', fontsize=14, path_effects=[pe.Stroke(linewidth=2, foreground="black"),pe.Normal()]) fig.suptitle(r"$\textbf{Disk-centre intensity, irregular grid}$") plt.savefig("../img/compare_line/irregular_disk_centre.pdf") ################################################################################ ################################################################################ ################################################################################ # compare regular resolutions fig, ax = plt.subplots(1, 3, figsize=(11.75,4), constrained_layout=True) ax[0].imshow(intensity_quarter[center, :, :], cmap=CMAP, origin="lower", vmax=CMAX, vmin=CMIN) ax[0].axis(False) ax[0].set_title(r"$\textrm{Quarter resolution}$") ax[1].imshow(intensity_third[center, :, :], cmap=CMAP, origin="lower", vmax=CMAX, vmin=CMIN) ax[1].axis(False) ax[1].set_title(r"$\textrm{One-third resolution}$") im = ax[2].imshow(intensity_half[center, :, :], cmap=CMAP, origin="lower", vmax=CMAX, vmin=CMIN) ax[2].axis(False) ax[2].set_title(r"$\textrm{Half resolution}$") # Line: x = np.load("../data/LTE/x_regular_quarter.npy") pix2Mm = (x.max() - x.min())*1e-6/len(x) ax[0].hlines(y=8/2, xmin=10/2, xmax=10/2 + 1/pix2Mm, lw=3, color='w', path_effects=[pe.Stroke(linewidth=5, foreground="black"),pe.Normal()]) # Text: ax[0].text(9/2, 10/2, r"\textbf{1 Mm}", color='w', fontsize=14, path_effects=[pe.Stroke(linewidth=2, foreground="black"),pe.Normal()]) # Line: x = np.load("../data/LTE/x_regular_third.npy") pix2Mm = (x.max() - x.min())*1e-6/len(x) ax[1].hlines(y=8*2/3, xmin=10*2/3, xmax=10*2/3 + 1/pix2Mm, lw=3, color='w', path_effects=[pe.Stroke(linewidth=5, foreground="black"),pe.Normal()]) # Text: ax[1].text(9*2/3, 10*2/3, r"\textbf{1 Mm}", color='w', fontsize=14, path_effects=[pe.Stroke(linewidth=2, foreground="black"),pe.Normal()]) # Line: x = np.load("../data/LTE/x_regular_half.npy") pix2Mm = (x.max() - x.min())*1e-6/len(x) ax[2].hlines(y=8, xmin=10, xmax=10 + 1/pix2Mm, lw=3, color='w', path_effects=[pe.Stroke(linewidth=5, foreground="black"),pe.Normal()]) # Text: ax[2].text(9, 10, r"\textbf{1 Mm}", color='w', fontsize=14, path_effects=[pe.Stroke(linewidth=2, foreground="black"),pe.Normal()]) # fig.suptitle(r"$\textbf{Disk-centre Intensity line centre, Regular Grid}$") fig.colorbar(im, fraction=0.043, pad=0.04, label=iunits) plt.savefig("../img/compare_line/regular_resolutions.pdf") ################################################################################ ################################################################################ ################################################################################ # plot convergence fig, ax = plt.subplots(1, 3, figsize=(14, 5.5), sharey=True) ax[0].plot(convergence_quarter, label=r"$\textrm{regular (1/4 res.)}$", color="k", ls="solid") ax[0].plot(convergence_ionised_5e5, label=r"$N_\textrm{H\,\small{II}}$", color="red", ls="solid") ax[0].plot(convergence_cont_5e5, label=r"$\alpha^\textrm{cont}$", color="blue", ls="dashed") ax[0].plot(convergence_tot_ext_5e5, label=r"$\alpha^\textrm{tot}$", color="gold", ls="solid") ax[0].plot(convergence_density_5e5, label=r"$\rho$", color="gray", ls="dashdot") ax[0].plot(convergence_destruction_5e5, label=r"$\varepsilon$", color="cyan", ls="solid") ax[1].plot(convergence_third, label=r"$\textrm{regular (1/3 res.)}$", color="k", ls="solid") ax[1].plot(convergence_destruction_1e6, label=r"$\varepsilon$", color="cyan", ls="solid") ax[1].plot(convergence_cont_1e6, label=r"$\alpha^\textrm{cont}$", color="blue", ls="dashed") ax[1].plot(convergence_ionised_1e6, label=r"$N_\textrm{H\,\small{II}}$", color="red", ls="solid") ax[1].plot(convergence_uniform_1e6, label=r"$U~\textrm{(uniform)}$", color="pink", ls="solid") ax[2].plot(convergence_half, label=r"$\textrm{regular (1/2 res.)}$", color="k", ls="solid") ax[2].plot(convergence_cont_3e6, label=r"$\alpha^\textrm{cont}$", color="blue", ls="dashed") # ax.plot(convergence_cont_2e6, label=r"$\alpha^\textrm{cont}~2\cdot 10^6~\textrm{sites}$", color="b", ls="dashdot") # ax.plot(convergence_tot_ext_2e6, label=r"$\alpha^\textrm{tot}~2\cdot 10^6~\textrm{sites}$", color="g", ls="dashdot") # ax.plot(convergence_tot_ext_1e6, label=r"$\alpha^\textrm{tot}~1\cdot 10^6~\textrm{sites}$", color="g", ls="dashed") ax[0].set_ylabel(r"$\textrm{Max rel. change,}~\max\left(1 - S_\textrm{new}/S_\textrm{old}\right)$") ax[0].set_yscale("log") ax[0].legend() ax[1].legend() ax[2].legend() ax[0].set_xlabel(r"$\textrm{Iterations}$") ax[1].set_xlabel(r"$\textrm{Iterations}$") ax[2].set_xlabel(r"$\textrm{Iterations}$") ax[0].set_title(r"$\sim 5\cdot 10^5~\textrm{points}$") ax[1].set_title(r"$\sim 10^6~\textrm{points}$") ax[2].set_title(r"$\sim 3\cdot10^6~\textrm{points}$") #ax.set_title(r"$\textrm{Convergence}$") fig.tight_layout() plt.savefig("../img/compare_line/convergence.pdf") ################################################################################ ################################################################################ ################################################################################ # resolution irregular grid fig, ax = plt.subplots(1, 3, figsize=(11.75,4), constrained_layout=True) ax[0].imshow(intensity_cont_ext_5e5[center, :, :], cmap=CMAP, origin="lower", vmax=CMAX, vmin=CMIN) ax[0].set_title(r"$5\cdot 10^5~\textrm{sites}$") ax[0].axis(False) ax[1].imshow(intensity_cont_ext_2e6[center, :, :], cmap=CMAP, origin="lower", vmax=CMAX, vmin=CMIN) ax[1].set_title(r"$2 \cdot 10^6~\textrm{sites}$") ax[1].axis(False) im = ax[2].imshow(intensity_cont_ext_3e6[center, :, :], cmap=CMAP, origin="lower", vmax=CMAX, vmin=CMIN) ax[2].set_title(r"$3 \cdot 10^6~\textrm{sites}$") ax[2].axis(False) x = np.load("../data/LTE/x_regular_full.npy") pix2Mm = (x.max() - x.min())*1e-6/len(x) # Line: ax[0].hlines(y=16, xmin=20, xmax=20 + 1/pix2Mm, lw=3, color='w', path_effects=[pe.Stroke(linewidth=5, foreground="black"),pe.Normal()]) # Text: ax[0].text(18, 20, r"\textbf{1 Mm}", color='w', fontsize=14, path_effects=[pe.Stroke(linewidth=2, foreground="black"),pe.Normal()]) # Line: ax[1].hlines(y=16, xmin=20, xmax=20 + 1/pix2Mm, lw=3, color='w', path_effects=[pe.Stroke(linewidth=5, foreground="black"),pe.Normal()]) # Text: ax[1].text(18, 20, r"\textbf{1 Mm}", color='w', fontsize=14, path_effects=[pe.Stroke(linewidth=2, foreground="black"),pe.Normal()]) # Line: ax[2].hlines(y=16, xmin=20, xmax=20 + 1/pix2Mm, lw=3, color='w', path_effects=[pe.Stroke(linewidth=5, foreground="black"),pe.Normal()]) # Text: ax[2].text(18, 20, r"\textbf{1 Mm}", color='w', fontsize=14, path_effects=[pe.Stroke(linewidth=2, foreground="black"),pe.Normal()]) fig.colorbar(im, fraction=0.046, pad=0.04, label=iunits) # fig.suptitle(r"$\textbf{Disk-Centre~Intensity~\textit{I}}_{\lambda_0}$") # plt.show() plt.savefig("../img/compare_line/disk_centre_irregular_resolution.pdf") ################################################################################ ################################################################################ ################################################################################ # plot all lines to highlight differences fig, ax = plt.subplots(1, 2, figsize=(10, 5.5), constrained_layout=True, sharey=True) I_regular = intensity_half.reshape(len(wavelength), -1) I_regular *= units.kW*units.m**(-2)*units.nm**(-1) I_irregular = intensity_cont_ext_3e6.reshape(len(wavelength), -1) I_irregular *= units.kW*units.m**(-2)*units.nm**(-1) Tb_regular = T_b(wavelength[:, np.newaxis]*units.nm, I_regular) Tb_irregular = T_b(wavelength[:, np.newaxis]*units.nm, I_irregular) ax[0].plot(wavelength[center-17:center+18], Tb_regular[center-17:center+18, ::4].value, color='k', lw=0.03, alpha=0.5, rasterized=True) ax[0].plot(wavelength[center-17:center+18], np.mean(Tb_regular[center-17:center+18], axis=1).value, color="crimson", label=r"$\textrm{spatial average}$") ax[0].axvline(lambda0, ls="dashed", color="royalblue", lw=0.75) ax[0].axvline(wavelength[blue_wing], ls="dashed", color="deepskyblue", lw=0.75) ax[0].set_xlabel(r"$\textrm{Wavelength [nm]}$") ax[0].set_ylabel(r"$\textrm{Brightness temperature [K]}$") ax[0].set_title(r"$\textrm{Regular grid}$") ax[0].legend(loc="upper right") ax[0].text(x=lambda0+0.001, y=6150, s=r"$\lambda_0$", color="royalblue") ax[0].text(x=wavelength[blue_wing]-0.006, y=6150, s=r"$\textrm{wing}$", color="deepskyblue", rotation="vertical") # ax[0].set_xticks(list(ax[0].get_xticks()) + [lambda0]) # ax[0].set_xticklabels([r"$%.2f$" %x for x in list(ax[0].get_xticks())[:-1]] + [r"$\lambda_0$"]) ax[1].plot(wavelength[center-17:center+18], Tb_irregular[center-17:center+18, ::16].value, color='k', lw=0.03, alpha=0.5, rasterized=True) ax[1].plot(wavelength[center-17:center+18], np.mean(Tb_irregular[center-17:center+18], axis=1).value, color="crimson", label=r"$\textrm{spatial average}$") ax[1].axvline(lambda0, ls="dashed", color="royalblue", lw=0.75) ax[1].axvline(wavelength[blue_wing], ls="dashed", color="deepskyblue", lw=0.75) ax[1].set_xlabel(r"$\textrm{Wavelength [nm]}$") ax[1].set_ylim(6000,12000) ax[1].set_title(r"$\textrm{Irregular grid}$") ax[1].legend(loc="upper right") ax[1].text(x=lambda0+0.001, y=6150, s=r"$\lambda_0$", color="royalblue") ax[1].text(x=wavelength[blue_wing]-0.006, y=6150, s=r"$\textrm{wing}$", color="deepskyblue", rotation="vertical") # ax[1].set_xticklabels([r"$%.2f$" %x for x in list(ax[0].get_xticks())[:-1]] + [r"$\lambda_0$"]) # ax[1].set_xticks(list(ax[1].get_xticks()) + [lambda0]) # fig.suptitle(r"$\textrm{Disk-Centre Intensity}$") plt.savefig("../img/compare_line/lines.pdf", dpi=300)
[ 11748, 299, 32152, 355, 45941, 198, 11748, 2603, 29487, 8019, 355, 285, 489, 198, 2, 1330, 2603, 29487, 8019, 13, 11215, 355, 12067, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 2603, 29487, 8019, 13, 8071, 258, 4812, 82, 355, 613, 198, 198, 6738, 22204, 62, 11498, 21069, 1330, 1635, 198, 6738, 7110, 62, 12947, 2971, 1330, 651, 62, 47799, 11, 10369, 62, 7857, 11, 1312, 41667, 198, 198, 2, 489, 83, 13, 6015, 10786, 5239, 13, 17660, 87, 3256, 662, 321, 903, 28, 81, 6, 59, 1904, 26495, 90, 11215, 29199, 92, 11537, 198, 2, 489, 83, 13, 6015, 10786, 5239, 3256, 514, 316, 1069, 28, 25101, 8, 628, 198, 50033, 15, 796, 20416, 13, 49211, 33289, 4846, 21734, 16243, 1303, 28642, 198, 10247, 26623, 796, 45941, 13, 18747, 26933, 10232, 13, 5332, 2414, 2425, 1485, 486, 4089, 2231, 11, 20416, 13, 47202, 5066, 10232, 1959, 1983, 5774, 11, 20416, 13, 1507, 4521, 1415, 2998, 18742, 14454, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20416, 13, 24369, 28688, 23721, 2327, 22980, 11, 20416, 13, 26780, 5824, 1507, 23188, 3388, 3365, 11, 20416, 13, 45068, 1485, 36260, 3365, 2623, 4790, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20416, 13, 29334, 2791, 28460, 2078, 2682, 4089, 11, 20416, 13, 2780, 2425, 20219, 34427, 4051, 1065, 11, 20416, 13, 33042, 3365, 42716, 3365, 1959, 2920, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20416, 13, 48057, 405, 17885, 19, 19104, 3324, 11, 20416, 13, 44465, 26561, 22579, 2091, 22980, 11, 20416, 13, 4051, 2327, 3459, 3720, 3070, 2231, 1558, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20416, 13, 44966, 3388, 33781, 17430, 37601, 11, 20416, 13, 2816, 27211, 2079, 1433, 22842, 2624, 11, 20416, 13, 2816, 2425, 2791, 25270, 1507, 25667, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20416, 13, 3980, 405, 3720, 2713, 49641, 23756, 11, 20416, 13, 3980, 24991, 2425, 3324, 2154, 26200, 11, 20416, 13, 3980, 2682, 2078, 5705, 2414, 22883, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20416, 13, 3980, 2231, 4051, 33459, 2780, 28933, 11, 20416, 13, 47372, 2598, 1959, 4310, 2079, 2931, 20, 11, 20416, 13, 20, 2791, 21273, 41060, 1415, 26050, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20416, 13, 20, 28933, 35890, 13381, 940, 3104, 11, 20416, 13, 20, 3134, 1731, 2425, 15724, 30924, 11, 20416, 13, 20, 3134, 3134, 5824, 37466, 1959, 4761, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20416, 13, 3980, 37988, 25270, 25429, 24839, 11, 20416, 13, 49211, 33289, 4846, 21734, 16243, 11, 20416, 13, 49211, 2425, 3829, 2231, 2670, 3023, 17, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20416, 13, 20, 3388, 1415, 26912, 22567, 28592, 11, 20416, 13, 20, 3388, 3553, 25644, 4304, 2425, 2920, 11, 20416, 13, 3553, 405, 4790, 405, 1828, 1157, 3553, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20416, 13, 39254, 2791, 25838, 1314, 3720, 2857, 11, 20416, 13, 3553, 1485, 3695, 5607, 34770, 22042, 11, 20416, 13, 3553, 1828, 3134, 38472, 1954, 3980, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20416, 13, 3553, 29626, 1270, 6659, 1270, 21734, 11, 20416, 13, 3553, 2780, 2598, 2327, 405, 1507, 1558, 11, 20416, 13, 3553, 3134, 40173, 9879, 24, 2919, 19, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20416, 13, 41734, 1495, 3980, 2670, 4310, 33438, 11, 20416, 13, 3365, 2075, 1065, 486, 1485, 2718, 5824, 11, 20416, 13, 44617, 1065, 3388, 38314, 2996, 3510, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20416, 13, 49051, 25429, 19708, 2718, 4869, 11, 220, 20416, 13, 21, 25150, 26912, 2078, 2548, 4846, 11, 220, 20416, 13, 21, 12762, 22985, 1954, 4309, 1495, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20416, 13, 48200, 24339, 1558, 23362, 27988, 11, 20416, 13, 33300, 1270, 3720, 39118, 3104, 1314, 11, 20416, 13, 30924, 1314, 5332, 2598, 46660, 1983, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20416, 13, 22, 1558, 3104, 45214, 20356, 48096, 11, 20416, 13, 3324, 20356, 486, 2931, 5332, 26276, 11, 20416, 13, 23, 3510, 26427, 40523, 2623, 4846, 17, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20416, 13, 24, 2780, 1238, 3695, 3980, 1558, 16817, 11, 19409, 13, 46556, 1129, 2998, 1731, 3720, 2598, 11, 220, 19409, 13, 21033, 2682, 37601, 2425, 23721, 12962, 1303, 28642, 628, 198, 16159, 796, 45941, 13, 853, 1084, 7, 37659, 13, 8937, 7, 10247, 26623, 532, 37456, 15, 4008, 198, 17585, 62, 5469, 796, 3641, 532, 1367, 198, 445, 62, 5469, 796, 3641, 1343, 1367, 198, 18487, 13814, 796, 45941, 13, 853, 9806, 7, 10247, 26623, 8, 198, 198, 489, 83, 13, 6015, 10044, 4105, 17816, 5239, 13, 385, 316, 1069, 20520, 796, 6407, 198, 198, 34219, 796, 366, 19571, 10837, 1045, 30487, 198, 198, 34, 22921, 796, 1802, 198, 34, 23678, 796, 657, 198, 198, 34, 22921, 62, 5469, 796, 4019, 198, 34, 23678, 62, 5469, 796, 657, 198, 198, 24187, 2969, 796, 366, 70, 396, 62, 44605, 62, 81, 1, 198, 24187, 2969, 62, 37815, 796, 366, 70, 396, 62, 44605, 62, 81, 1, 198, 198, 75, 15636, 796, 807, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 628, 220, 220, 220, 12245, 62, 13959, 796, 651, 62, 47799, 7203, 13959, 62, 411, 62, 377, 22, 77, 1065, 62, 39531, 62, 1087, 260, 62, 16, 13, 77, 9078, 1600, 46490, 8, 198, 220, 220, 220, 12245, 62, 17089, 796, 651, 62, 47799, 7203, 16338, 62, 17089, 62, 39531, 62, 1087, 260, 13, 77, 9078, 1600, 46490, 8, 198, 220, 220, 220, 12245, 62, 24385, 796, 651, 62, 47799, 7203, 16338, 62, 24385, 62, 39531, 62, 1087, 260, 13, 77, 9078, 1600, 46490, 8, 628, 220, 220, 220, 12245, 62, 3642, 62, 2302, 62, 20, 68, 20, 796, 651, 62, 47799, 7203, 20867, 261, 23013, 62, 20, 68, 20, 62, 39531, 62, 1087, 260, 13, 77, 9078, 1600, 46490, 8, 198, 220, 220, 220, 12245, 62, 3642, 62, 2302, 62, 20, 68, 20, 62, 16, 26518, 20, 796, 651, 62, 47799, 7203, 20867, 261, 23013, 62, 377, 22, 77, 1065, 62, 20, 68, 20, 62, 39531, 62, 1087, 260, 62, 16, 26518, 20, 13, 77, 9078, 1600, 46490, 8, 198, 220, 220, 220, 12245, 62, 3642, 62, 2302, 62, 16, 68, 21, 796, 651, 62, 47799, 7203, 20867, 261, 23013, 62, 377, 22, 77, 1065, 62, 16, 68, 21, 62, 39531, 62, 1087, 260, 62, 16, 13, 77, 9078, 1600, 46490, 8, 198, 220, 220, 220, 12245, 62, 3642, 62, 2302, 62, 16, 68, 21, 62, 16, 26518, 20, 796, 651, 62, 47799, 7203, 20867, 261, 23013, 62, 377, 22, 77, 1065, 62, 16, 68, 21, 62, 39531, 62, 1087, 260, 62, 16, 26518, 20, 13, 77, 9078, 1600, 46490, 8, 198, 220, 220, 220, 12245, 62, 3642, 62, 2302, 62, 17, 68, 21, 796, 651, 62, 47799, 7203, 20867, 261, 23013, 62, 377, 22, 77, 1065, 62, 17, 68, 21, 62, 39531, 62, 1087, 260, 62, 16, 13, 77, 9078, 1600, 46490, 8, 198, 220, 220, 220, 12245, 62, 3642, 62, 2302, 62, 18, 68, 21, 796, 651, 62, 47799, 7203, 20867, 261, 23013, 62, 377, 22, 77, 1065, 62, 18, 68, 21, 62, 39531, 62, 1087, 260, 62, 16, 13, 77, 9078, 1600, 46490, 8, 628, 220, 220, 220, 12245, 62, 83, 313, 62, 2302, 62, 20, 68, 20, 796, 651, 62, 47799, 7203, 23350, 62, 2302, 62, 20, 68, 20, 62, 39531, 62, 1087, 260, 62, 16, 13, 77, 9078, 1600, 46490, 8, 198, 220, 220, 220, 12245, 62, 83, 313, 62, 2302, 62, 16, 68, 21, 796, 651, 62, 47799, 7203, 23350, 62, 2302, 62, 16, 68, 21, 62, 39531, 62, 1087, 260, 62, 16, 13, 77, 9078, 1600, 46490, 8, 198, 220, 220, 220, 12245, 62, 83, 313, 62, 2302, 62, 17, 68, 21, 796, 651, 62, 47799, 7203, 23350, 62, 2302, 62, 17, 68, 21, 62, 39531, 62, 1087, 260, 62, 16, 13, 77, 9078, 1600, 46490, 8, 198, 220, 220, 220, 12245, 62, 83, 313, 62, 2302, 62, 18, 68, 21, 796, 651, 62, 47799, 7203, 23350, 62, 2302, 62, 18, 68, 21, 62, 39531, 62, 1087, 260, 62, 16, 13, 77, 9078, 1600, 46490, 8, 628, 220, 220, 220, 12245, 62, 16520, 2762, 62, 20, 68, 20, 796, 651, 62, 47799, 7203, 16520, 2762, 62, 20, 68, 20, 62, 39531, 62, 1087, 260, 62, 16, 13, 77, 9078, 1600, 46490, 8, 198, 220, 220, 220, 12245, 62, 16520, 2762, 62, 16, 68, 21, 796, 651, 62, 47799, 7203, 16520, 2762, 62, 16, 68, 21, 62, 39531, 62, 1087, 260, 62, 16, 13, 77, 9078, 1600, 46490, 8, 628, 220, 220, 220, 12245, 62, 43337, 62, 20, 68, 20, 796, 651, 62, 47799, 7203, 43337, 62, 20, 68, 20, 62, 39531, 62, 1087, 260, 62, 16, 13, 77, 9078, 1600, 46490, 8, 628, 220, 220, 220, 12245, 62, 295, 1417, 62, 20, 68, 20, 796, 651, 62, 47799, 7203, 295, 1417, 62, 15511, 8648, 62, 20, 68, 20, 62, 39531, 62, 1087, 260, 62, 16, 13, 77, 9078, 1600, 46490, 8, 198, 220, 220, 220, 12245, 62, 295, 1417, 62, 16, 68, 21, 796, 651, 62, 47799, 7203, 295, 1417, 62, 15511, 8648, 62, 16, 68, 21, 62, 39531, 62, 1087, 260, 62, 16, 13, 77, 9078, 1600, 46490, 8, 198, 220, 220, 220, 12245, 62, 295, 1417, 62, 17, 68, 21, 796, 651, 62, 47799, 7203, 295, 1417, 62, 15511, 8648, 62, 17, 68, 21, 62, 39531, 62, 1087, 260, 62, 16, 13, 77, 9078, 1600, 46490, 8, 628, 220, 220, 220, 12245, 62, 403, 6933, 62, 16, 68, 21, 796, 651, 62, 47799, 7203, 403, 6933, 62, 16, 68, 21, 62, 39531, 62, 1087, 260, 62, 16, 13, 77, 9078, 1600, 46490, 8, 628, 220, 220, 220, 40826, 62, 24385, 796, 45941, 13, 2220, 7, 34219, 10, 1, 16338, 62, 377, 22, 77, 1065, 62, 24385, 13, 77, 9078, 4943, 198, 220, 220, 220, 40826, 62, 13959, 796, 45941, 13, 2220, 7, 34219, 10, 1, 16338, 62, 377, 22, 77, 1065, 62, 13959, 13, 77, 9078, 4943, 198, 220, 220, 220, 40826, 62, 17089, 796, 45941, 13, 2220, 7, 34219, 10, 1, 16338, 62, 377, 22, 77, 1065, 62, 17089, 13, 77, 9078, 4943, 628, 220, 220, 220, 40826, 62, 3642, 62, 20, 68, 20, 796, 45941, 13, 2220, 7, 1911, 14, 1102, 332, 12745, 14, 20867, 261, 23013, 62, 377, 22, 77, 1065, 62, 20, 68, 20, 62, 1102, 332, 12745, 13, 77, 9078, 4943, 198, 220, 220, 220, 40826, 62, 3642, 62, 16, 68, 21, 796, 45941, 13, 2220, 7, 1911, 14, 1102, 332, 12745, 14, 20867, 261, 23013, 62, 377, 22, 77, 1065, 62, 16, 68, 21, 62, 1102, 332, 12745, 13, 77, 9078, 4943, 198, 220, 220, 220, 40826, 62, 3642, 62, 17, 68, 21, 796, 45941, 13, 2220, 7, 1911, 14, 1102, 332, 12745, 14, 20867, 261, 23013, 62, 377, 22, 77, 1065, 62, 17, 68, 21, 62, 1102, 332, 12745, 13, 77, 9078, 4943, 198, 220, 220, 220, 40826, 62, 3642, 62, 18, 68, 21, 796, 45941, 13, 2220, 7, 1911, 14, 1102, 332, 12745, 14, 20867, 261, 23013, 62, 377, 22, 77, 1065, 62, 18, 68, 21, 62, 1102, 332, 12745, 13, 77, 9078, 4943, 628, 220, 220, 220, 40826, 62, 295, 1417, 62, 20, 68, 20, 796, 45941, 13, 2220, 7, 1911, 14, 1102, 332, 12745, 14, 295, 1417, 62, 15511, 8648, 62, 20, 68, 20, 62, 1102, 332, 12745, 13, 77, 9078, 4943, 198, 220, 220, 220, 40826, 62, 295, 1417, 62, 16, 68, 21, 796, 45941, 13, 2220, 7, 1911, 14, 1102, 332, 12745, 14, 295, 1417, 62, 15511, 8648, 62, 16, 68, 21, 62, 1102, 332, 12745, 13, 77, 9078, 4943, 198, 220, 220, 220, 40826, 62, 295, 1417, 62, 17, 68, 21, 796, 45941, 13, 2220, 7, 1911, 14, 1102, 332, 12745, 14, 295, 1417, 62, 15511, 8648, 62, 2167, 2388, 62, 1102, 332, 12745, 13, 77, 9078, 4943, 628, 220, 220, 220, 40826, 62, 43337, 62, 20, 68, 20, 796, 45941, 13, 2220, 7, 1911, 14, 1102, 332, 12745, 14, 43337, 62, 20, 68, 20, 62, 1102, 332, 12745, 13, 77, 9078, 4943, 628, 220, 220, 220, 40826, 62, 16520, 2762, 62, 20, 68, 20, 796, 45941, 13, 2220, 7, 1911, 14, 1102, 332, 12745, 14, 16520, 2762, 62, 20, 68, 20, 62, 1102, 332, 12745, 13, 77, 9078, 4943, 198, 220, 220, 220, 40826, 62, 16520, 2762, 62, 16, 68, 21, 796, 45941, 13, 2220, 7, 1911, 14, 1102, 332, 12745, 14, 16520, 2762, 62, 16, 68, 21, 62, 1102, 332, 12745, 13, 77, 9078, 4943, 628, 220, 220, 220, 40826, 62, 83, 313, 62, 2302, 62, 20, 68, 20, 796, 45941, 13, 2220, 7, 1911, 14, 1102, 332, 12745, 14, 23350, 62, 2302, 62, 20, 68, 20, 62, 1102, 332, 12745, 13, 77, 9078, 4943, 198, 220, 220, 220, 40826, 62, 83, 313, 62, 2302, 62, 16, 68, 21, 796, 45941, 13, 2220, 7, 1911, 14, 1102, 332, 12745, 14, 23350, 62, 2302, 62, 16, 68, 21, 62, 1102, 332, 12745, 13, 77, 9078, 4943, 198, 220, 220, 220, 40826, 62, 83, 313, 62, 2302, 62, 17, 68, 21, 796, 45941, 13, 2220, 7, 1911, 14, 1102, 332, 12745, 14, 23350, 62, 2302, 62, 17, 68, 21, 62, 1102, 332, 12745, 13, 77, 9078, 4943, 198, 220, 220, 220, 40826, 62, 83, 313, 62, 2302, 62, 18, 68, 21, 796, 45941, 13, 2220, 7, 1911, 14, 1102, 332, 12745, 14, 23350, 62, 2302, 62, 18, 68, 21, 62, 1102, 332, 12745, 13, 77, 9078, 4943, 628, 220, 220, 220, 40826, 62, 403, 6933, 62, 16, 68, 21, 796, 45941, 13, 2220, 7, 1911, 14, 1102, 332, 12745, 14, 403, 6933, 62, 16, 68, 21, 62, 1102, 332, 12745, 13, 77, 9078, 4943, 628, 220, 220, 220, 15432, 796, 14808, 10247, 26623, 532, 37456, 15, 20679, 50033, 15, 9, 9979, 1187, 13, 66, 737, 1462, 7203, 13276, 264, 12, 16, 4943, 198, 220, 220, 220, 3601, 7203, 46261, 11683, 379, 4171, 8539, 25, 4064, 13, 18, 69, 1, 4064, 7, 626, 11683, 58, 17585, 62, 5469, 4083, 8367, 4008, 198, 220, 220, 220, 3601, 7203, 46261, 11683, 379, 44422, 25, 4064, 13, 18, 69, 1, 4064, 7, 626, 11683, 58, 18487, 13814, 4083, 8367, 4008, 628, 220, 220, 220, 327, 22921, 62, 18487, 13814, 796, 12245, 62, 13959, 58, 18487, 13814, 11, 1058, 11, 1058, 4083, 9806, 3419, 198, 220, 220, 220, 16477, 1268, 62, 18487, 13814, 796, 12245, 62, 13959, 58, 18487, 13814, 11, 1058, 11, 1058, 4083, 1084, 3419, 628, 220, 220, 220, 10369, 62, 7857, 3419, 628, 220, 220, 220, 1303, 8996, 19232, 5050, 198, 220, 220, 220, 2336, 11, 7877, 796, 458, 83, 13, 7266, 489, 1747, 7, 16, 11, 362, 11, 2336, 7857, 16193, 22, 13, 20, 11, 19, 828, 31070, 62, 39786, 28, 17821, 8, 628, 220, 220, 220, 1303, 7110, 11898, 12, 1087, 260, 12245, 287, 12098, 290, 7372, 11, 290, 44422, 198, 220, 220, 220, 7877, 58, 15, 4083, 320, 12860, 7, 47799, 62, 3642, 62, 2302, 62, 16, 68, 21, 58, 16159, 11, 1058, 11, 1058, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 8899, 28, 24187, 2969, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8159, 2625, 21037, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 9806, 28, 34, 22921, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 1084, 28, 34, 23678, 8, 198, 220, 220, 220, 7877, 58, 15, 4083, 22704, 7, 25101, 8, 198, 220, 220, 220, 7877, 58, 15, 4083, 2617, 62, 7839, 7, 81, 1, 3, 59, 26591, 61, 66, 93, 59, 5239, 26224, 90, 37687, 11347, 92, 3, 4943, 628, 220, 220, 220, 545, 796, 7877, 58, 16, 4083, 320, 12860, 7, 47799, 62, 403, 6933, 62, 16, 68, 21, 58, 16159, 11, 1058, 11, 1058, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 8899, 28, 24187, 2969, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8159, 2625, 21037, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 9806, 28, 34, 22921, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 1084, 28, 34, 23678, 8, 198, 220, 220, 220, 7877, 58, 16, 4083, 22704, 7, 25101, 8, 198, 220, 220, 220, 7877, 58, 16, 4083, 2617, 62, 7839, 7, 81, 1, 3, 52, 93, 59, 5239, 26224, 90, 37687, 11347, 92, 3, 4943, 628, 220, 220, 220, 2124, 796, 45941, 13, 2220, 7203, 40720, 7890, 14, 43, 9328, 14, 87, 62, 16338, 62, 12853, 13, 77, 9078, 4943, 198, 220, 220, 220, 279, 844, 17, 44, 76, 796, 357, 87, 13, 9806, 3419, 532, 2124, 13, 1084, 3419, 27493, 16, 68, 12, 21, 14, 11925, 7, 87, 8, 628, 220, 220, 220, 1303, 6910, 25, 198, 220, 220, 220, 7877, 58, 15, 4083, 71, 6615, 7, 88, 28, 1433, 11, 2124, 1084, 28, 1238, 11, 2124, 9806, 28, 1238, 1343, 352, 14, 79, 844, 17, 44, 76, 11, 300, 86, 28, 18, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 20, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 7877, 58, 15, 4083, 85, 6615, 7, 87, 16193, 1821, 10, 16, 14, 79, 844, 17, 44, 76, 20679, 17, 11, 331, 1084, 28, 1415, 11, 331, 9806, 28, 1507, 11, 300, 86, 28, 16, 14, 79, 844, 17, 44, 76, 12, 23, 13, 1495, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 16, 14, 79, 844, 17, 44, 76, 12, 21, 13, 1495, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 8255, 25, 198, 220, 220, 220, 7877, 58, 15, 4083, 5239, 7, 1507, 11, 1160, 11, 374, 1, 59, 5239, 19881, 90, 16, 337, 76, 92, 1600, 3124, 11639, 86, 3256, 10369, 7857, 28, 1415, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 17, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 6910, 25, 198, 220, 220, 220, 7877, 58, 16, 4083, 71, 6615, 7, 88, 28, 1433, 11, 2124, 1084, 28, 1238, 11, 2124, 9806, 28, 1238, 1343, 352, 14, 79, 844, 17, 44, 76, 11, 300, 86, 28, 18, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 20, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 8255, 25, 198, 220, 220, 220, 7877, 58, 16, 4083, 5239, 7, 1507, 11, 1160, 11, 374, 1, 59, 5239, 19881, 90, 16, 337, 76, 92, 1600, 3124, 11639, 86, 3256, 10369, 7857, 28, 1415, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 17, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 2336, 13, 8043, 5657, 7, 320, 11, 13390, 28, 15, 13, 48768, 11, 14841, 28, 15, 13, 3023, 11, 6167, 28, 72, 41667, 8, 628, 220, 220, 220, 2336, 13, 2385, 457, 2578, 7, 81, 1, 3, 59, 5239, 19881, 90, 40961, 12, 1087, 260, 12245, 379, 1627, 7372, 11, 21388, 10706, 92, 3, 4943, 198, 220, 220, 220, 458, 83, 13, 21928, 5647, 7203, 40720, 9600, 14, 5589, 533, 62, 1370, 14, 24209, 62, 5589, 533, 13, 12315, 4943, 198, 220, 220, 220, 458, 83, 13, 19836, 3419, 628, 220, 220, 220, 1303, 29113, 29113, 7804, 4242, 21017, 198, 220, 220, 220, 1303, 29113, 29113, 7804, 4242, 21017, 198, 220, 220, 220, 1303, 29113, 29113, 7804, 4242, 21017, 198, 220, 220, 220, 1303, 8996, 19232, 5050, 198, 220, 220, 220, 2336, 11, 7877, 796, 458, 83, 13, 7266, 489, 1747, 7, 16, 11, 604, 11, 2336, 7857, 16193, 1415, 13, 20, 11, 19, 828, 31070, 62, 39786, 28, 17821, 8, 628, 220, 220, 220, 1303, 7110, 11898, 12, 1087, 260, 12245, 287, 12098, 290, 7372, 11, 290, 44422, 198, 220, 220, 220, 7877, 58, 15, 4083, 320, 12860, 7, 47799, 62, 3642, 62, 2302, 62, 16, 68, 21, 58, 16159, 11, 1058, 11, 1058, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 8899, 28, 24187, 2969, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8159, 2625, 21037, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 9806, 28, 34, 22921, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 1084, 28, 34, 23678, 8, 198, 220, 220, 220, 7877, 58, 15, 4083, 22704, 7, 25101, 8, 198, 220, 220, 220, 7877, 58, 15, 4083, 2617, 62, 7839, 7, 81, 1, 3, 59, 26591, 61, 66, 93, 59, 5239, 26224, 90, 37687, 11347, 92, 3, 4943, 628, 220, 220, 220, 7877, 58, 16, 4083, 320, 12860, 7, 47799, 62, 295, 1417, 62, 16, 68, 21, 58, 16159, 11, 1058, 11, 1058, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 8899, 28, 24187, 2969, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8159, 2625, 21037, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 9806, 28, 34, 22921, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 1084, 28, 34, 23678, 8, 198, 220, 220, 220, 7877, 58, 16, 4083, 22704, 7, 25101, 8, 198, 220, 220, 220, 7877, 58, 16, 4083, 2617, 62, 7839, 7, 81, 1, 3, 45, 62, 59, 5239, 26224, 31478, 17470, 90, 39, 59, 11, 3978, 11709, 61, 59, 5239, 26224, 31478, 17470, 90, 43, 9328, 11709, 93, 59, 5239, 26224, 90, 37687, 11347, 92, 3, 4943, 628, 220, 220, 220, 7877, 58, 17, 4083, 320, 12860, 7, 47799, 62, 83, 313, 62, 2302, 62, 16, 68, 21, 58, 16159, 11, 1058, 11, 1058, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 8899, 28, 24187, 2969, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8159, 2625, 21037, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 9806, 28, 34, 22921, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 1084, 28, 34, 23678, 8, 198, 220, 220, 220, 7877, 58, 17, 4083, 22704, 7, 25101, 8, 198, 220, 220, 220, 7877, 58, 17, 4083, 2617, 62, 7839, 7, 81, 1, 3, 59, 26591, 61, 59, 5239, 26224, 90, 83, 313, 92, 93, 59, 5239, 26224, 90, 37687, 11347, 92, 3, 4943, 628, 220, 220, 220, 545, 796, 7877, 58, 18, 4083, 320, 12860, 7, 47799, 62, 16520, 2762, 62, 16, 68, 21, 58, 16159, 11, 1058, 11, 1058, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 8899, 28, 24187, 2969, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8159, 2625, 21037, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 9806, 28, 34, 22921, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 1084, 28, 34, 23678, 8, 198, 220, 220, 220, 7877, 58, 18, 4083, 22704, 7, 25101, 8, 198, 220, 220, 220, 7877, 58, 18, 4083, 2617, 62, 7839, 7, 81, 1, 3, 59, 85, 533, 862, 33576, 93, 59, 5239, 26224, 90, 37687, 11347, 92, 3, 4943, 628, 220, 220, 220, 2124, 796, 45941, 13, 2220, 7203, 40720, 7890, 14, 43, 9328, 14, 87, 62, 16338, 62, 12853, 13, 77, 9078, 4943, 198, 220, 220, 220, 279, 844, 17, 44, 76, 796, 357, 87, 13, 9806, 3419, 532, 2124, 13, 1084, 3419, 27493, 16, 68, 12, 21, 14, 11925, 7, 87, 8, 628, 220, 220, 220, 1303, 6910, 25, 198, 220, 220, 220, 7877, 58, 15, 4083, 71, 6615, 7, 88, 28, 1433, 11, 2124, 1084, 28, 1238, 11, 2124, 9806, 28, 1238, 1343, 352, 14, 79, 844, 17, 44, 76, 11, 300, 86, 28, 18, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 20, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 7877, 58, 15, 4083, 85, 6615, 7, 87, 16193, 1821, 10, 16, 14, 79, 844, 17, 44, 76, 20679, 17, 11, 331, 1084, 28, 1415, 11, 331, 9806, 28, 1507, 11, 300, 86, 28, 16, 14, 79, 844, 17, 44, 76, 12, 23, 13, 1495, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 16, 14, 79, 844, 17, 44, 76, 12, 21, 13, 1495, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 8255, 25, 198, 220, 220, 220, 7877, 58, 15, 4083, 5239, 7, 1507, 11, 1160, 11, 374, 1, 59, 5239, 19881, 90, 16, 337, 76, 92, 1600, 3124, 11639, 86, 3256, 10369, 7857, 28, 1415, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 17, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 6910, 25, 198, 220, 220, 220, 7877, 58, 16, 4083, 71, 6615, 7, 88, 28, 1433, 11, 2124, 1084, 28, 1238, 11, 2124, 9806, 28, 1238, 1343, 352, 14, 79, 844, 17, 44, 76, 11, 300, 86, 28, 18, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 20, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 8255, 25, 198, 220, 220, 220, 7877, 58, 16, 4083, 5239, 7, 1507, 11, 1160, 11, 374, 1, 59, 5239, 19881, 90, 16, 337, 76, 92, 1600, 3124, 11639, 86, 3256, 10369, 7857, 28, 1415, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 17, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 6910, 25, 198, 220, 220, 220, 7877, 58, 17, 4083, 71, 6615, 7, 88, 28, 1433, 11, 2124, 1084, 28, 1238, 11, 2124, 9806, 28, 1238, 1343, 352, 14, 79, 844, 17, 44, 76, 11, 300, 86, 28, 18, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 20, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 198, 220, 220, 220, 1303, 8255, 25, 198, 220, 220, 220, 7877, 58, 17, 4083, 5239, 7, 1507, 11, 1160, 11, 374, 1, 59, 5239, 19881, 90, 16, 337, 76, 92, 1600, 3124, 11639, 86, 3256, 10369, 7857, 28, 1415, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 17, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 6910, 25, 198, 220, 220, 220, 7877, 58, 18, 4083, 71, 6615, 7, 88, 28, 1433, 11, 2124, 1084, 28, 1238, 11, 2124, 9806, 28, 1238, 1343, 352, 14, 79, 844, 17, 44, 76, 11, 300, 86, 28, 18, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 20, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 198, 220, 220, 220, 1303, 8255, 25, 198, 220, 220, 220, 7877, 58, 18, 4083, 5239, 7, 1507, 11, 1160, 11, 374, 1, 59, 5239, 19881, 90, 16, 337, 76, 92, 1600, 3124, 11639, 86, 3256, 10369, 7857, 28, 1415, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 17, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 2336, 13, 8043, 5657, 7, 320, 11, 13390, 28, 15, 13, 48768, 11, 14841, 28, 15, 13, 3023, 11, 6167, 28, 72, 41667, 8, 628, 220, 220, 220, 2336, 13, 2385, 457, 2578, 7, 81, 1, 3, 59, 5239, 19881, 90, 40961, 12, 1087, 260, 12245, 379, 1627, 7372, 11, 21388, 10706, 92, 3, 4943, 198, 220, 220, 220, 1303, 458, 83, 13, 12860, 3419, 198, 220, 220, 220, 458, 83, 13, 21928, 5647, 7203, 40720, 9600, 14, 5589, 533, 62, 1370, 14, 5589, 533, 62, 49315, 13, 12315, 4943, 628, 220, 220, 220, 1303, 29113, 29113, 7804, 4242, 21017, 198, 220, 220, 220, 1303, 29113, 29113, 7804, 4242, 21017, 198, 220, 220, 220, 1303, 29113, 29113, 7804, 4242, 21017, 198, 220, 220, 220, 1303, 28114, 4263, 625, 1627, 8539, 11, 7372, 11, 290, 44422, 11, 3218, 10706, 198, 220, 220, 220, 2336, 11, 7877, 796, 458, 83, 13, 7266, 489, 1747, 7, 16, 11, 513, 11, 2336, 7857, 16193, 1485, 11, 19, 828, 31070, 62, 39786, 28, 17821, 8, 628, 220, 220, 220, 1303, 7110, 11898, 12, 1087, 260, 12245, 287, 12098, 290, 7372, 11, 290, 44422, 198, 220, 220, 220, 545, 796, 7877, 58, 15, 4083, 320, 12860, 7, 47799, 62, 13959, 58, 17585, 62, 5469, 11, 1058, 11, 1058, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 8899, 28, 24187, 2969, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8159, 2625, 21037, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 9806, 28, 34, 22921, 62, 5469, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 1084, 28, 34, 23678, 62, 5469, 8, 198, 220, 220, 220, 7877, 58, 15, 4083, 22704, 7, 25101, 8, 198, 220, 220, 220, 266, 75, 796, 28400, 58, 17585, 62, 5469, 60, 198, 220, 220, 220, 7877, 58, 15, 4083, 2617, 62, 7839, 7, 81, 1, 3, 59, 5239, 26224, 90, 14573, 8539, 92, 93, 7225, 18, 69, 59, 11, 59, 5239, 26224, 90, 21533, 92, 3, 1, 4064, 40989, 8, 628, 220, 220, 220, 269, 5657, 796, 458, 83, 13, 8043, 5657, 7, 320, 11, 7877, 28, 897, 58, 15, 4357, 13390, 28, 15, 13, 45438, 11, 14841, 28, 15, 13, 3023, 8, 198, 220, 220, 220, 269, 5657, 13, 2617, 62, 18242, 7, 72, 41667, 11, 13179, 28, 3829, 11, 6167, 15636, 28, 15, 8, 628, 220, 220, 220, 545, 796, 7877, 58, 16, 4083, 320, 12860, 7, 47799, 62, 13959, 58, 16159, 11, 1058, 11, 1058, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 8899, 28, 24187, 2969, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8159, 2625, 21037, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 9806, 28, 34, 22921, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 1084, 28, 34, 23678, 8, 198, 220, 220, 220, 7877, 58, 16, 4083, 22704, 7, 25101, 8, 198, 220, 220, 220, 266, 75, 796, 28400, 58, 16159, 60, 198, 220, 220, 220, 7877, 58, 16, 4083, 2617, 62, 7839, 7, 81, 1, 3, 59, 5239, 26224, 90, 13949, 7372, 92, 93, 7225, 18, 69, 59, 11, 59, 5239, 26224, 90, 21533, 92, 3, 1, 4064, 40989, 8, 628, 220, 220, 220, 269, 5657, 796, 458, 83, 13, 8043, 5657, 7, 320, 11, 7877, 28, 897, 58, 16, 4357, 13390, 28, 15, 13, 45438, 11, 14841, 28, 15, 13, 3023, 8, 198, 220, 220, 220, 269, 5657, 13, 2617, 62, 18242, 7, 72, 41667, 11, 13179, 28, 3829, 11, 6167, 15636, 28, 15, 8, 628, 220, 220, 220, 545, 796, 7877, 58, 17, 4083, 320, 12860, 7, 47799, 62, 13959, 58, 18487, 13814, 11, 1058, 11, 1058, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 8899, 28, 24187, 2969, 62, 37815, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8159, 2625, 21037, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 9806, 28, 34, 22921, 62, 18487, 13814, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 1084, 28, 34, 23678, 62, 18487, 13814, 8, 198, 220, 220, 220, 7877, 58, 17, 4083, 22704, 7, 25101, 8, 198, 220, 220, 220, 266, 75, 796, 28400, 58, 18487, 13814, 60, 198, 220, 220, 220, 7877, 58, 17, 4083, 2617, 62, 7839, 7, 81, 1, 3, 59, 5239, 26224, 90, 17875, 13814, 92, 93, 7225, 18, 69, 59, 11, 59, 5239, 26224, 90, 21533, 92, 3, 1, 4064, 40989, 8, 628, 220, 220, 220, 269, 5657, 796, 458, 83, 13, 8043, 5657, 7, 320, 11, 7877, 28, 897, 58, 17, 4357, 13390, 28, 15, 13, 45438, 11, 14841, 28, 15, 13, 3023, 8, 198, 220, 220, 220, 269, 5657, 13, 2617, 62, 18242, 7, 72, 41667, 11, 13179, 28, 3829, 11, 6167, 15636, 28, 75, 15636, 8, 628, 220, 220, 220, 2124, 796, 45941, 13, 2220, 7203, 40720, 7890, 14, 43, 9328, 14, 87, 62, 16338, 62, 13959, 13, 77, 9078, 4943, 198, 220, 220, 220, 279, 844, 17, 44, 76, 796, 357, 87, 13, 9806, 3419, 532, 2124, 13, 1084, 3419, 27493, 16, 68, 12, 21, 14, 11925, 7, 87, 8, 628, 220, 220, 220, 1303, 6910, 25, 198, 220, 220, 220, 7877, 58, 15, 4083, 71, 6615, 7, 88, 28, 23, 11, 2124, 1084, 28, 940, 11, 2124, 9806, 28, 940, 1343, 352, 14, 79, 844, 17, 44, 76, 11, 300, 86, 28, 18, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 20, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 7877, 58, 15, 4083, 85, 6615, 7, 87, 16193, 1238, 10, 16, 14, 79, 844, 17, 44, 76, 20679, 17, 11, 331, 1084, 28, 22, 11, 331, 9806, 28, 24, 11, 300, 86, 28, 16, 14, 79, 844, 17, 44, 76, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 16, 14, 79, 844, 17, 44, 76, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 8255, 25, 198, 220, 220, 220, 7877, 58, 15, 4083, 5239, 7, 24, 11, 838, 11, 374, 1, 59, 5239, 19881, 90, 16, 337, 76, 92, 1600, 3124, 11639, 86, 3256, 10369, 7857, 28, 1415, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 17, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 6910, 25, 198, 220, 220, 220, 7877, 58, 16, 4083, 71, 6615, 7, 88, 28, 23, 11, 2124, 1084, 28, 940, 11, 2124, 9806, 28, 940, 1343, 352, 14, 79, 844, 17, 44, 76, 11, 300, 86, 28, 18, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 20, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 7877, 58, 16, 4083, 85, 6615, 7, 87, 16193, 1238, 10, 16, 14, 79, 844, 17, 44, 76, 20679, 17, 11, 331, 1084, 28, 22, 11, 331, 9806, 28, 24, 11, 300, 86, 28, 16, 14, 79, 844, 17, 44, 76, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 16, 14, 79, 844, 17, 44, 76, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 8255, 25, 198, 220, 220, 220, 7877, 58, 16, 4083, 5239, 7, 24, 11, 838, 11, 374, 1, 59, 5239, 19881, 90, 16, 337, 76, 92, 1600, 3124, 11639, 86, 3256, 10369, 7857, 28, 1415, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 17, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 6910, 25, 198, 220, 220, 220, 7877, 58, 17, 4083, 71, 6615, 7, 88, 28, 23, 11, 2124, 1084, 28, 940, 11, 2124, 9806, 28, 940, 1343, 352, 14, 79, 844, 17, 44, 76, 11, 300, 86, 28, 18, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 20, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 7877, 58, 17, 4083, 85, 6615, 7, 87, 16193, 1238, 10, 16, 14, 79, 844, 17, 44, 76, 20679, 17, 11, 331, 1084, 28, 22, 11, 331, 9806, 28, 24, 11, 300, 86, 28, 16, 14, 79, 844, 17, 44, 76, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 16, 14, 79, 844, 17, 44, 76, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 8255, 25, 198, 220, 220, 220, 7877, 58, 17, 4083, 5239, 7, 24, 11, 838, 11, 374, 1, 59, 5239, 19881, 90, 16, 337, 76, 92, 1600, 3124, 11639, 86, 3256, 10369, 7857, 28, 1415, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 17, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 2336, 13, 2385, 457, 2578, 7, 81, 1, 3, 59, 5239, 19881, 90, 40961, 12, 1087, 260, 12245, 11, 3218, 24846, 92, 3, 4943, 198, 220, 220, 220, 458, 83, 13, 21928, 5647, 7203, 40720, 9600, 14, 5589, 533, 62, 1370, 14, 16338, 62, 39531, 62, 1087, 260, 13, 12315, 4943, 628, 198, 220, 220, 220, 1303, 29113, 29113, 7804, 4242, 21017, 198, 220, 220, 220, 1303, 29113, 29113, 7804, 4242, 21017, 198, 220, 220, 220, 1303, 29113, 29113, 7804, 4242, 21017, 198, 220, 220, 220, 1303, 28114, 4263, 625, 1627, 8539, 11, 7372, 11, 290, 44422, 11, 21388, 10706, 198, 220, 220, 220, 2336, 11, 7877, 796, 458, 83, 13, 7266, 489, 1747, 7, 16, 11, 513, 11, 2336, 7857, 16193, 1485, 11, 19, 828, 31070, 62, 39786, 28, 17821, 8, 628, 220, 220, 220, 1303, 7110, 11898, 12, 1087, 260, 12245, 287, 12098, 290, 7372, 11, 290, 44422, 198, 220, 220, 220, 545, 796, 7877, 58, 15, 4083, 320, 12860, 7, 47799, 62, 3642, 62, 2302, 62, 18, 68, 21, 58, 17585, 62, 5469, 11, 1058, 11, 1058, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 8899, 28, 24187, 2969, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8159, 2625, 21037, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 9806, 28, 34, 22921, 62, 5469, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 1084, 28, 34, 23678, 62, 5469, 8, 198, 220, 220, 220, 7877, 58, 15, 4083, 22704, 7, 25101, 8, 198, 220, 220, 220, 266, 75, 796, 28400, 58, 17585, 62, 5469, 60, 198, 220, 220, 220, 7877, 58, 15, 4083, 2617, 62, 7839, 7, 81, 1, 3, 59, 5239, 26224, 90, 14573, 8539, 92, 93, 7225, 18, 69, 59, 11, 59, 5239, 26224, 90, 21533, 92, 3, 1, 4064, 40989, 8, 628, 220, 220, 220, 269, 5657, 796, 458, 83, 13, 8043, 5657, 7, 320, 11, 7877, 28, 897, 58, 15, 4357, 13390, 28, 15, 13, 45438, 11, 14841, 28, 15, 13, 3023, 8, 198, 220, 220, 220, 269, 5657, 13, 2617, 62, 18242, 7, 72, 41667, 11, 13179, 28, 3829, 11, 6167, 15636, 28, 15, 8, 628, 220, 220, 220, 545, 796, 7877, 58, 16, 4083, 320, 12860, 7, 47799, 62, 3642, 62, 2302, 62, 18, 68, 21, 58, 16159, 11, 1058, 11, 1058, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 8899, 28, 24187, 2969, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8159, 2625, 21037, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 9806, 28, 34, 22921, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 1084, 28, 34, 23678, 8, 198, 220, 220, 220, 7877, 58, 16, 4083, 22704, 7, 25101, 8, 198, 220, 220, 220, 266, 75, 796, 28400, 58, 16159, 60, 198, 220, 220, 220, 7877, 58, 16, 4083, 2617, 62, 7839, 7, 81, 1, 3, 59, 5239, 26224, 90, 13949, 7372, 92, 93, 7225, 18, 69, 59, 11, 59, 5239, 26224, 90, 21533, 92, 3, 1, 4064, 40989, 8, 628, 220, 220, 220, 269, 5657, 796, 458, 83, 13, 8043, 5657, 7, 320, 11, 7877, 28, 897, 58, 16, 4357, 13390, 28, 15, 13, 45438, 11, 14841, 28, 15, 13, 3023, 8, 198, 220, 220, 220, 269, 5657, 13, 2617, 62, 18242, 7, 72, 41667, 11, 13179, 28, 3829, 11, 6167, 15636, 28, 15, 8, 628, 220, 220, 220, 545, 796, 7877, 58, 17, 4083, 320, 12860, 7, 47799, 62, 3642, 62, 2302, 62, 18, 68, 21, 58, 18487, 13814, 11, 1058, 11, 1058, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 8899, 28, 24187, 2969, 62, 37815, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8159, 2625, 21037, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 9806, 28, 34, 22921, 62, 18487, 13814, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 1084, 28, 34, 23678, 62, 18487, 13814, 8, 198, 220, 220, 220, 7877, 58, 17, 4083, 22704, 7, 25101, 8, 198, 220, 220, 220, 266, 75, 796, 28400, 58, 18487, 13814, 60, 198, 220, 220, 220, 7877, 58, 17, 4083, 2617, 62, 7839, 7, 81, 1, 3, 59, 5239, 26224, 90, 17875, 13814, 92, 93, 7225, 18, 69, 59, 11, 59, 5239, 26224, 90, 21533, 92, 3, 1, 4064, 40989, 8, 628, 220, 220, 220, 269, 5657, 796, 458, 83, 13, 8043, 5657, 7, 320, 11, 7877, 28, 897, 58, 17, 4357, 13390, 28, 15, 13, 45438, 11, 14841, 28, 15, 13, 3023, 8, 198, 220, 220, 220, 269, 5657, 13, 2617, 62, 18242, 7, 72, 41667, 11, 13179, 28, 3829, 11, 6167, 15636, 28, 75, 15636, 8, 628, 220, 220, 220, 2124, 796, 45941, 13, 2220, 7203, 40720, 7890, 14, 43, 9328, 14, 87, 62, 16338, 62, 12853, 13, 77, 9078, 4943, 198, 220, 220, 220, 279, 844, 17, 44, 76, 796, 357, 87, 13, 9806, 3419, 532, 2124, 13, 1084, 3419, 27493, 16, 68, 12, 21, 14, 11925, 7, 87, 8, 628, 220, 220, 220, 1303, 6910, 25, 198, 220, 220, 220, 7877, 58, 15, 4083, 71, 6615, 7, 88, 28, 1433, 11, 2124, 1084, 28, 1238, 11, 2124, 9806, 28, 1238, 1343, 352, 14, 79, 844, 17, 44, 76, 11, 300, 86, 28, 18, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 20, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 7877, 58, 15, 4083, 85, 6615, 7, 87, 16193, 1821, 10, 16, 14, 79, 844, 17, 44, 76, 20679, 17, 11, 331, 1084, 28, 1415, 11, 331, 9806, 28, 1507, 11, 300, 86, 28, 16, 14, 79, 844, 17, 44, 76, 12, 23, 13, 1495, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 16, 14, 79, 844, 17, 44, 76, 12, 21, 13, 1495, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 8255, 25, 198, 220, 220, 220, 7877, 58, 15, 4083, 5239, 7, 1507, 11, 1160, 11, 374, 1, 59, 5239, 19881, 90, 16, 337, 76, 92, 1600, 3124, 11639, 86, 3256, 10369, 7857, 28, 1415, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 17, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 6910, 25, 198, 220, 220, 220, 7877, 58, 16, 4083, 71, 6615, 7, 88, 28, 1433, 11, 2124, 1084, 28, 1238, 11, 2124, 9806, 28, 1238, 1343, 352, 14, 79, 844, 17, 44, 76, 11, 300, 86, 28, 18, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 20, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 7877, 58, 16, 4083, 85, 6615, 7, 87, 16193, 1821, 10, 16, 14, 79, 844, 17, 44, 76, 20679, 17, 11, 331, 1084, 28, 1415, 11, 331, 9806, 28, 1507, 11, 300, 86, 28, 16, 14, 79, 844, 17, 44, 76, 12, 23, 13, 1495, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 16, 14, 79, 844, 17, 44, 76, 12, 21, 13, 1495, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 8255, 25, 198, 220, 220, 220, 7877, 58, 16, 4083, 5239, 7, 1507, 11, 1160, 11, 374, 1, 59, 5239, 19881, 90, 16, 337, 76, 92, 1600, 3124, 11639, 86, 3256, 10369, 7857, 28, 1415, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 17, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 6910, 25, 198, 220, 220, 220, 7877, 58, 17, 4083, 71, 6615, 7, 88, 28, 1433, 11, 2124, 1084, 28, 1238, 11, 2124, 9806, 28, 1238, 1343, 352, 14, 79, 844, 17, 44, 76, 11, 300, 86, 28, 18, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 20, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 7877, 58, 17, 4083, 85, 6615, 7, 87, 16193, 1821, 10, 16, 14, 79, 844, 17, 44, 76, 20679, 17, 11, 331, 1084, 28, 1415, 11, 331, 9806, 28, 1507, 11, 300, 86, 28, 16, 14, 79, 844, 17, 44, 76, 12, 23, 13, 1495, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 16, 14, 79, 844, 17, 44, 76, 12, 21, 13, 1495, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 8255, 25, 198, 220, 220, 220, 7877, 58, 17, 4083, 5239, 7, 1507, 11, 1160, 11, 374, 1, 59, 5239, 19881, 90, 16, 337, 76, 92, 1600, 3124, 11639, 86, 3256, 10369, 7857, 28, 1415, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 17, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 2336, 13, 2385, 457, 2578, 7, 81, 1, 3, 59, 5239, 19881, 90, 40961, 12, 1087, 260, 12245, 11, 21388, 10706, 92, 3, 4943, 198, 220, 220, 220, 458, 83, 13, 21928, 5647, 7203, 40720, 9600, 14, 5589, 533, 62, 1370, 14, 343, 16338, 62, 39531, 62, 1087, 260, 13, 12315, 4943, 628, 220, 220, 220, 1303, 29113, 29113, 7804, 4242, 21017, 198, 220, 220, 220, 1303, 29113, 29113, 7804, 4242, 21017, 198, 220, 220, 220, 1303, 29113, 29113, 7804, 4242, 21017, 198, 220, 220, 220, 1303, 8996, 3218, 21811, 198, 220, 220, 220, 2336, 11, 7877, 796, 458, 83, 13, 7266, 489, 1747, 7, 16, 11, 513, 11, 2336, 7857, 16193, 1157, 13, 2425, 11, 19, 828, 31070, 62, 39786, 28, 17821, 8, 628, 220, 220, 220, 7877, 58, 15, 4083, 320, 12860, 7, 47799, 62, 24385, 58, 16159, 11, 1058, 11, 1058, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 8899, 28, 24187, 2969, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8159, 2625, 21037, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 9806, 28, 34, 22921, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 1084, 28, 34, 23678, 8, 198, 220, 220, 220, 7877, 58, 15, 4083, 22704, 7, 25101, 8, 198, 220, 220, 220, 7877, 58, 15, 4083, 2617, 62, 7839, 7, 81, 1, 3, 59, 5239, 26224, 90, 4507, 2571, 6323, 92, 3, 4943, 628, 220, 220, 220, 7877, 58, 16, 4083, 320, 12860, 7, 47799, 62, 17089, 58, 16159, 11, 1058, 11, 1058, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 8899, 28, 24187, 2969, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8159, 2625, 21037, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 9806, 28, 34, 22921, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 1084, 28, 34, 23678, 8, 198, 220, 220, 220, 7877, 58, 16, 4083, 22704, 7, 25101, 8, 198, 220, 220, 220, 7877, 58, 16, 4083, 2617, 62, 7839, 7, 81, 1, 3, 59, 5239, 26224, 90, 3198, 12, 17089, 6323, 92, 3, 4943, 628, 220, 220, 220, 545, 796, 7877, 58, 17, 4083, 320, 12860, 7, 47799, 62, 13959, 58, 16159, 11, 1058, 11, 1058, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 8899, 28, 24187, 2969, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8159, 2625, 21037, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 9806, 28, 34, 22921, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 1084, 28, 34, 23678, 8, 198, 220, 220, 220, 7877, 58, 17, 4083, 22704, 7, 25101, 8, 198, 220, 220, 220, 7877, 58, 17, 4083, 2617, 62, 7839, 7, 81, 1, 3, 59, 5239, 26224, 90, 31305, 6323, 92, 3, 4943, 628, 220, 220, 220, 1303, 6910, 25, 198, 220, 220, 220, 2124, 796, 45941, 13, 2220, 7203, 40720, 7890, 14, 43, 9328, 14, 87, 62, 16338, 62, 24385, 13, 77, 9078, 4943, 198, 220, 220, 220, 279, 844, 17, 44, 76, 796, 357, 87, 13, 9806, 3419, 532, 2124, 13, 1084, 3419, 27493, 16, 68, 12, 21, 14, 11925, 7, 87, 8, 198, 220, 220, 220, 7877, 58, 15, 4083, 71, 6615, 7, 88, 28, 23, 14, 17, 11, 2124, 1084, 28, 940, 14, 17, 11, 2124, 9806, 28, 940, 14, 17, 1343, 352, 14, 79, 844, 17, 44, 76, 11, 300, 86, 28, 18, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 20, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 198, 220, 220, 220, 1303, 8255, 25, 198, 220, 220, 220, 7877, 58, 15, 4083, 5239, 7, 24, 14, 17, 11, 838, 14, 17, 11, 374, 1, 59, 5239, 19881, 90, 16, 337, 76, 92, 1600, 3124, 11639, 86, 3256, 10369, 7857, 28, 1415, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 17, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 628, 220, 220, 220, 1303, 6910, 25, 198, 220, 220, 220, 2124, 796, 45941, 13, 2220, 7203, 40720, 7890, 14, 43, 9328, 14, 87, 62, 16338, 62, 17089, 13, 77, 9078, 4943, 198, 220, 220, 220, 279, 844, 17, 44, 76, 796, 357, 87, 13, 9806, 3419, 532, 2124, 13, 1084, 3419, 27493, 16, 68, 12, 21, 14, 11925, 7, 87, 8, 198, 220, 220, 220, 7877, 58, 16, 4083, 71, 6615, 7, 88, 28, 23, 9, 17, 14, 18, 11, 2124, 1084, 28, 940, 9, 17, 14, 18, 11, 2124, 9806, 28, 940, 9, 17, 14, 18, 1343, 352, 14, 79, 844, 17, 44, 76, 11, 300, 86, 28, 18, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 20, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 8255, 25, 198, 220, 220, 220, 7877, 58, 16, 4083, 5239, 7, 24, 9, 17, 14, 18, 11, 838, 9, 17, 14, 18, 11, 374, 1, 59, 5239, 19881, 90, 16, 337, 76, 92, 1600, 3124, 11639, 86, 3256, 10369, 7857, 28, 1415, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 17, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 6910, 25, 198, 220, 220, 220, 2124, 796, 45941, 13, 2220, 7203, 40720, 7890, 14, 43, 9328, 14, 87, 62, 16338, 62, 13959, 13, 77, 9078, 4943, 198, 220, 220, 220, 279, 844, 17, 44, 76, 796, 357, 87, 13, 9806, 3419, 532, 2124, 13, 1084, 3419, 27493, 16, 68, 12, 21, 14, 11925, 7, 87, 8, 198, 220, 220, 220, 7877, 58, 17, 4083, 71, 6615, 7, 88, 28, 23, 11, 2124, 1084, 28, 940, 11, 2124, 9806, 28, 940, 1343, 352, 14, 79, 844, 17, 44, 76, 11, 300, 86, 28, 18, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 20, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 198, 220, 220, 220, 1303, 8255, 25, 198, 220, 220, 220, 7877, 58, 17, 4083, 5239, 7, 24, 11, 838, 11, 374, 1, 59, 5239, 19881, 90, 16, 337, 76, 92, 1600, 3124, 11639, 86, 3256, 10369, 7857, 28, 1415, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 17, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 2336, 13, 2385, 457, 2578, 7, 81, 1, 3, 59, 5239, 19881, 90, 40961, 12, 1087, 260, 2558, 6377, 1627, 7372, 11, 23603, 24846, 92, 3, 4943, 628, 220, 220, 220, 2336, 13, 8043, 5657, 7, 320, 11, 13390, 28, 15, 13, 48768, 11, 14841, 28, 15, 13, 3023, 11, 6167, 28, 72, 41667, 8, 628, 220, 220, 220, 458, 83, 13, 21928, 5647, 7203, 40720, 9600, 14, 5589, 533, 62, 1370, 14, 16338, 62, 411, 14191, 13, 12315, 4943, 628, 220, 220, 220, 1303, 29113, 29113, 7804, 4242, 21017, 198, 220, 220, 220, 1303, 29113, 29113, 7804, 4242, 21017, 198, 220, 220, 220, 1303, 29113, 29113, 7804, 4242, 21017, 198, 220, 220, 220, 1303, 7110, 40826, 198, 220, 220, 220, 2336, 11, 7877, 796, 458, 83, 13, 7266, 489, 1747, 7, 16, 11, 513, 11, 2336, 7857, 16193, 1415, 11, 642, 13, 20, 828, 2648, 88, 28, 17821, 8, 628, 220, 220, 220, 7877, 58, 15, 4083, 29487, 7, 1102, 332, 12745, 62, 24385, 11, 6167, 28, 81, 1, 3, 59, 5239, 26224, 90, 16338, 357, 16, 14, 19, 581, 2014, 92, 3, 1600, 3124, 2625, 74, 1600, 43979, 2625, 39390, 4943, 198, 220, 220, 220, 7877, 58, 15, 4083, 29487, 7, 1102, 332, 12745, 62, 295, 1417, 62, 20, 68, 20, 11, 6167, 28, 81, 1, 3, 45, 62, 59, 5239, 26224, 90, 39, 59, 11, 59, 17470, 90, 3978, 11709, 3, 1600, 3124, 2625, 445, 1600, 43979, 2625, 39390, 4943, 198, 220, 220, 220, 7877, 58, 15, 4083, 29487, 7, 1102, 332, 12745, 62, 3642, 62, 20, 68, 20, 11, 6167, 28, 81, 1, 3, 59, 26591, 61, 59, 5239, 26224, 90, 3642, 92, 3, 1600, 3124, 2625, 17585, 1600, 43979, 2625, 67, 5263, 4943, 198, 220, 220, 220, 7877, 58, 15, 4083, 29487, 7, 1102, 332, 12745, 62, 83, 313, 62, 2302, 62, 20, 68, 20, 11, 6167, 28, 81, 1, 3, 59, 26591, 61, 59, 5239, 26224, 90, 83, 313, 92, 3, 1600, 3124, 2625, 24267, 1600, 43979, 2625, 39390, 4943, 198, 220, 220, 220, 7877, 58, 15, 4083, 29487, 7, 1102, 332, 12745, 62, 43337, 62, 20, 68, 20, 11, 6167, 28, 81, 1, 3, 59, 81, 8873, 3, 1600, 3124, 2625, 44605, 1600, 43979, 2625, 42460, 26518, 4943, 198, 220, 220, 220, 7877, 58, 15, 4083, 29487, 7, 1102, 332, 12745, 62, 16520, 2762, 62, 20, 68, 20, 11, 6167, 28, 81, 1, 3, 59, 85, 533, 862, 33576, 3, 1600, 3124, 2625, 948, 272, 1600, 43979, 2625, 39390, 4943, 628, 220, 220, 220, 7877, 58, 16, 4083, 29487, 7, 1102, 332, 12745, 62, 17089, 11, 6167, 28, 81, 1, 3, 59, 5239, 26224, 90, 16338, 357, 16, 14, 18, 581, 2014, 92, 3, 1600, 3124, 2625, 74, 1600, 43979, 2625, 39390, 4943, 198, 220, 220, 220, 7877, 58, 16, 4083, 29487, 7, 1102, 332, 12745, 62, 16520, 2762, 62, 16, 68, 21, 11, 6167, 28, 81, 1, 3, 59, 85, 533, 862, 33576, 3, 1600, 3124, 2625, 948, 272, 1600, 43979, 2625, 39390, 4943, 198, 220, 220, 220, 7877, 58, 16, 4083, 29487, 7, 1102, 332, 12745, 62, 3642, 62, 16, 68, 21, 11, 6167, 28, 81, 1, 3, 59, 26591, 61, 59, 5239, 26224, 90, 3642, 92, 3, 1600, 3124, 2625, 17585, 1600, 43979, 2625, 67, 5263, 4943, 198, 220, 220, 220, 7877, 58, 16, 4083, 29487, 7, 1102, 332, 12745, 62, 295, 1417, 62, 16, 68, 21, 11, 6167, 28, 81, 1, 3, 45, 62, 59, 5239, 26224, 90, 39, 59, 11, 59, 17470, 90, 3978, 11709, 3, 1600, 3124, 2625, 445, 1600, 43979, 2625, 39390, 4943, 198, 220, 220, 220, 7877, 58, 16, 4083, 29487, 7, 1102, 332, 12745, 62, 403, 6933, 62, 16, 68, 21, 11, 6167, 28, 81, 1, 3, 52, 93, 59, 5239, 26224, 90, 7, 403, 6933, 38165, 3, 1600, 3124, 2625, 79, 676, 1600, 43979, 2625, 39390, 4943, 628, 220, 220, 220, 7877, 58, 17, 4083, 29487, 7, 1102, 332, 12745, 62, 13959, 11, 6167, 28, 81, 1, 3, 59, 5239, 26224, 90, 16338, 357, 16, 14, 17, 581, 2014, 92, 3, 1600, 3124, 2625, 74, 1600, 43979, 2625, 39390, 4943, 198, 220, 220, 220, 7877, 58, 17, 4083, 29487, 7, 1102, 332, 12745, 62, 3642, 62, 18, 68, 21, 11, 6167, 28, 81, 1, 3, 59, 26591, 61, 59, 5239, 26224, 90, 3642, 92, 3, 1600, 3124, 2625, 17585, 1600, 43979, 2625, 67, 5263, 4943, 628, 220, 220, 220, 1303, 7877, 13, 29487, 7, 1102, 332, 12745, 62, 3642, 62, 17, 68, 21, 11, 6167, 28, 81, 1, 3, 59, 26591, 61, 59, 5239, 26224, 90, 3642, 92, 93, 17, 59, 10210, 313, 838, 61, 21, 93, 59, 5239, 26224, 90, 49315, 92, 3, 1600, 3124, 2625, 65, 1600, 43979, 2625, 42460, 26518, 4943, 198, 220, 220, 220, 1303, 7877, 13, 29487, 7, 1102, 332, 12745, 62, 83, 313, 62, 2302, 62, 17, 68, 21, 11, 6167, 28, 81, 1, 3, 59, 26591, 61, 59, 5239, 26224, 90, 83, 313, 92, 93, 17, 59, 10210, 313, 838, 61, 21, 93, 59, 5239, 26224, 90, 49315, 92, 3, 1600, 3124, 2625, 70, 1600, 43979, 2625, 42460, 26518, 4943, 198, 220, 220, 220, 1303, 7877, 13, 29487, 7, 1102, 332, 12745, 62, 83, 313, 62, 2302, 62, 16, 68, 21, 11, 6167, 28, 81, 1, 3, 59, 26591, 61, 59, 5239, 26224, 90, 83, 313, 92, 93, 16, 59, 10210, 313, 838, 61, 21, 93, 59, 5239, 26224, 90, 49315, 92, 3, 1600, 3124, 2625, 70, 1600, 43979, 2625, 67, 5263, 4943, 628, 220, 220, 220, 7877, 58, 15, 4083, 2617, 62, 2645, 9608, 7, 81, 1, 3, 59, 5239, 26224, 90, 11518, 823, 13, 1487, 11, 92, 93, 59, 9806, 59, 9464, 7, 16, 532, 311, 62, 59, 5239, 26224, 90, 3605, 92, 14, 50, 62, 59, 5239, 26224, 90, 727, 32239, 3506, 8, 3, 4943, 198, 220, 220, 220, 7877, 58, 15, 4083, 2617, 62, 28349, 1000, 7203, 6404, 4943, 628, 220, 220, 220, 7877, 58, 15, 4083, 1455, 437, 3419, 198, 220, 220, 220, 7877, 58, 16, 4083, 1455, 437, 3419, 198, 220, 220, 220, 7877, 58, 17, 4083, 1455, 437, 3419, 628, 220, 220, 220, 7877, 58, 15, 4083, 2617, 62, 87, 18242, 7, 81, 1, 3, 59, 5239, 26224, 90, 29993, 602, 92, 3, 4943, 198, 220, 220, 220, 7877, 58, 16, 4083, 2617, 62, 87, 18242, 7, 81, 1, 3, 59, 5239, 26224, 90, 29993, 602, 92, 3, 4943, 198, 220, 220, 220, 7877, 58, 17, 4083, 2617, 62, 87, 18242, 7, 81, 1, 3, 59, 5239, 26224, 90, 29993, 602, 92, 3, 4943, 628, 220, 220, 220, 7877, 58, 15, 4083, 2617, 62, 7839, 7, 81, 1, 3, 59, 14323, 642, 59, 10210, 313, 838, 61, 20, 93, 59, 5239, 26224, 90, 13033, 92, 3, 4943, 198, 220, 220, 220, 7877, 58, 16, 4083, 2617, 62, 7839, 7, 81, 1, 3, 59, 14323, 838, 61, 21, 93, 59, 5239, 26224, 90, 13033, 92, 3, 4943, 198, 220, 220, 220, 7877, 58, 17, 4083, 2617, 62, 7839, 7, 81, 1, 3, 59, 14323, 513, 59, 10210, 313, 940, 61, 21, 93, 59, 5239, 26224, 90, 13033, 92, 3, 4943, 628, 220, 220, 220, 1303, 897, 13, 2617, 62, 7839, 7, 81, 1, 3, 59, 5239, 26224, 90, 3103, 332, 12745, 92, 3, 4943, 198, 220, 220, 220, 2336, 13, 33464, 62, 39786, 3419, 198, 220, 220, 220, 458, 83, 13, 21928, 5647, 7203, 40720, 9600, 14, 5589, 533, 62, 1370, 14, 1102, 332, 12745, 13, 12315, 4943, 628, 220, 220, 220, 1303, 29113, 29113, 7804, 4242, 21017, 198, 220, 220, 220, 1303, 29113, 29113, 7804, 4242, 21017, 198, 220, 220, 220, 1303, 29113, 29113, 7804, 4242, 21017, 198, 220, 220, 220, 1303, 6323, 21388, 10706, 198, 220, 220, 220, 2336, 11, 7877, 796, 458, 83, 13, 7266, 489, 1747, 7, 16, 11, 513, 11, 2336, 7857, 16193, 1157, 13, 2425, 11, 19, 828, 31070, 62, 39786, 28, 17821, 8, 628, 220, 220, 220, 7877, 58, 15, 4083, 320, 12860, 7, 47799, 62, 3642, 62, 2302, 62, 20, 68, 20, 58, 16159, 11, 1058, 11, 1058, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 8899, 28, 24187, 2969, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8159, 2625, 21037, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 9806, 28, 34, 22921, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 1084, 28, 34, 23678, 8, 198, 220, 220, 220, 7877, 58, 15, 4083, 2617, 62, 7839, 7, 81, 1, 3, 20, 59, 10210, 313, 838, 61, 20, 93, 59, 5239, 26224, 90, 49315, 92, 3, 4943, 198, 220, 220, 220, 7877, 58, 15, 4083, 22704, 7, 25101, 8, 628, 220, 220, 220, 7877, 58, 16, 4083, 320, 12860, 7, 47799, 62, 3642, 62, 2302, 62, 17, 68, 21, 58, 16159, 11, 1058, 11, 1058, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 8899, 28, 24187, 2969, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8159, 2625, 21037, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 9806, 28, 34, 22921, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 1084, 28, 34, 23678, 8, 628, 220, 220, 220, 7877, 58, 16, 4083, 2617, 62, 7839, 7, 81, 1, 3, 17, 3467, 10210, 313, 838, 61, 21, 93, 59, 5239, 26224, 90, 49315, 92, 3, 4943, 198, 220, 220, 220, 7877, 58, 16, 4083, 22704, 7, 25101, 8, 628, 220, 220, 220, 545, 796, 7877, 58, 17, 4083, 320, 12860, 7, 47799, 62, 3642, 62, 2302, 62, 18, 68, 21, 58, 16159, 11, 1058, 11, 1058, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 8899, 28, 24187, 2969, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8159, 2625, 21037, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 9806, 28, 34, 22921, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 1084, 28, 34, 23678, 8, 198, 220, 220, 220, 7877, 58, 17, 4083, 2617, 62, 7839, 7, 81, 1, 3, 18, 3467, 10210, 313, 838, 61, 21, 93, 59, 5239, 26224, 90, 49315, 92, 3, 4943, 198, 220, 220, 220, 7877, 58, 17, 4083, 22704, 7, 25101, 8, 628, 220, 220, 220, 2124, 796, 45941, 13, 2220, 7203, 40720, 7890, 14, 43, 9328, 14, 87, 62, 16338, 62, 12853, 13, 77, 9078, 4943, 198, 220, 220, 220, 279, 844, 17, 44, 76, 796, 357, 87, 13, 9806, 3419, 532, 2124, 13, 1084, 3419, 27493, 16, 68, 12, 21, 14, 11925, 7, 87, 8, 628, 220, 220, 220, 1303, 6910, 25, 198, 220, 220, 220, 7877, 58, 15, 4083, 71, 6615, 7, 88, 28, 1433, 11, 2124, 1084, 28, 1238, 11, 2124, 9806, 28, 1238, 1343, 352, 14, 79, 844, 17, 44, 76, 11, 300, 86, 28, 18, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 20, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 8255, 25, 198, 220, 220, 220, 7877, 58, 15, 4083, 5239, 7, 1507, 11, 1160, 11, 374, 1, 59, 5239, 19881, 90, 16, 337, 76, 92, 1600, 3124, 11639, 86, 3256, 10369, 7857, 28, 1415, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 17, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 6910, 25, 198, 220, 220, 220, 7877, 58, 16, 4083, 71, 6615, 7, 88, 28, 1433, 11, 2124, 1084, 28, 1238, 11, 2124, 9806, 28, 1238, 1343, 352, 14, 79, 844, 17, 44, 76, 11, 300, 86, 28, 18, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 20, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 8255, 25, 198, 220, 220, 220, 7877, 58, 16, 4083, 5239, 7, 1507, 11, 1160, 11, 374, 1, 59, 5239, 19881, 90, 16, 337, 76, 92, 1600, 3124, 11639, 86, 3256, 10369, 7857, 28, 1415, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 17, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 6910, 25, 198, 220, 220, 220, 7877, 58, 17, 4083, 71, 6615, 7, 88, 28, 1433, 11, 2124, 1084, 28, 1238, 11, 2124, 9806, 28, 1238, 1343, 352, 14, 79, 844, 17, 44, 76, 11, 300, 86, 28, 18, 11, 3124, 11639, 86, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 20, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 1303, 8255, 25, 198, 220, 220, 220, 7877, 58, 17, 4083, 5239, 7, 1507, 11, 1160, 11, 374, 1, 59, 5239, 19881, 90, 16, 337, 76, 92, 1600, 3124, 11639, 86, 3256, 10369, 7857, 28, 1415, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 62, 34435, 41888, 431, 13, 1273, 305, 365, 7, 2815, 413, 5649, 28, 17, 11, 36282, 2625, 13424, 12340, 431, 13, 26447, 3419, 12962, 628, 220, 220, 220, 2336, 13, 8043, 5657, 7, 320, 11, 13390, 28, 15, 13, 45438, 11, 14841, 28, 15, 13, 3023, 11, 6167, 28, 72, 41667, 8, 198, 220, 220, 220, 1303, 2336, 13, 2385, 457, 2578, 7, 81, 1, 3, 59, 5239, 19881, 90, 40961, 12, 19085, 260, 93, 5317, 6377, 93, 59, 5239, 270, 90, 40, 11709, 23330, 59, 50033, 62, 15, 92, 3, 4943, 198, 220, 220, 220, 1303, 458, 83, 13, 12860, 3419, 198, 220, 220, 220, 458, 83, 13, 21928, 5647, 7203, 40720, 9600, 14, 5589, 533, 62, 1370, 14, 39531, 62, 1087, 260, 62, 343, 16338, 62, 29268, 13, 12315, 4943, 628, 220, 220, 220, 1303, 29113, 29113, 7804, 4242, 21017, 198, 220, 220, 220, 1303, 29113, 29113, 7804, 4242, 21017, 198, 220, 220, 220, 1303, 29113, 29113, 7804, 4242, 21017, 198, 220, 220, 220, 1303, 7110, 477, 3951, 284, 7238, 5400, 628, 220, 220, 220, 2336, 11, 7877, 796, 458, 83, 13, 7266, 489, 1747, 7, 16, 11, 362, 11, 2336, 7857, 16193, 940, 11, 642, 13, 20, 828, 31070, 62, 39786, 28, 17821, 11, 2648, 88, 28, 17821, 8, 628, 220, 220, 220, 314, 62, 16338, 796, 12245, 62, 13959, 13, 3447, 1758, 7, 11925, 7, 10247, 26623, 828, 532, 16, 8, 198, 220, 220, 220, 314, 62, 16338, 1635, 28, 4991, 13, 74, 54, 9, 41667, 13, 76, 1174, 32590, 17, 27493, 41667, 13, 21533, 1174, 32590, 16, 8, 628, 220, 220, 220, 314, 62, 343, 16338, 796, 12245, 62, 3642, 62, 2302, 62, 18, 68, 21, 13, 3447, 1758, 7, 11925, 7, 10247, 26623, 828, 532, 16, 8, 198, 220, 220, 220, 314, 62, 343, 16338, 1635, 28, 4991, 13, 74, 54, 9, 41667, 13, 76, 1174, 32590, 17, 27493, 41667, 13, 21533, 1174, 32590, 16, 8, 628, 198, 220, 220, 220, 309, 65, 62, 16338, 796, 309, 62, 65, 7, 10247, 26623, 58, 45299, 45941, 13, 3605, 22704, 60, 9, 41667, 13, 21533, 11, 314, 62, 16338, 8, 198, 220, 220, 220, 309, 65, 62, 343, 16338, 796, 309, 62, 65, 7, 10247, 26623, 58, 45299, 45941, 13, 3605, 22704, 60, 9, 41667, 13, 21533, 11, 314, 62, 343, 16338, 8, 628, 220, 220, 220, 7877, 58, 15, 4083, 29487, 7, 10247, 26623, 58, 16159, 12, 1558, 25, 16159, 10, 1507, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 309, 65, 62, 16338, 58, 16159, 12, 1558, 25, 16159, 10, 1507, 11, 7904, 19, 4083, 8367, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3124, 11639, 74, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 300, 86, 28, 15, 13, 3070, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17130, 28, 15, 13, 20, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 1603, 1143, 28, 17821, 8, 198, 220, 220, 220, 7877, 58, 15, 4083, 29487, 7, 10247, 26623, 58, 16159, 12, 1558, 25, 16159, 10, 1507, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 32604, 7, 51, 65, 62, 16338, 58, 16159, 12, 1558, 25, 16159, 10, 1507, 4357, 16488, 28, 16, 737, 8367, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3124, 2625, 50086, 1559, 1600, 6167, 28, 81, 1, 3, 59, 5239, 26224, 90, 2777, 34961, 2811, 92, 3, 4943, 198, 220, 220, 220, 7877, 58, 15, 4083, 897, 85, 1370, 7, 50033, 15, 11, 43979, 2625, 67, 5263, 1600, 3124, 2625, 3287, 282, 17585, 1600, 300, 86, 28, 15, 13, 2425, 8, 198, 220, 220, 220, 7877, 58, 15, 4083, 897, 85, 1370, 7, 10247, 26623, 58, 17585, 62, 5469, 4357, 43979, 2625, 67, 5263, 1600, 3124, 2625, 22089, 15688, 17585, 1600, 300, 86, 28, 15, 13, 2425, 8, 198, 220, 220, 220, 7877, 58, 15, 4083, 2617, 62, 87, 18242, 7, 81, 1, 3, 59, 5239, 26224, 90, 33484, 26623, 685, 21533, 48999, 3, 4943, 198, 220, 220, 220, 7877, 58, 15, 4083, 2617, 62, 2645, 9608, 7, 81, 1, 3, 59, 5239, 26224, 90, 41267, 1108, 5951, 685, 42, 48999, 3, 4943, 198, 220, 220, 220, 7877, 58, 15, 4083, 2617, 62, 7839, 7, 81, 1, 3, 59, 5239, 26224, 90, 40164, 10706, 92, 3, 4943, 198, 220, 220, 220, 7877, 58, 15, 4083, 1455, 437, 7, 17946, 2625, 45828, 826, 4943, 198, 220, 220, 220, 7877, 58, 15, 4083, 5239, 7, 87, 28, 50033, 15, 10, 15, 13, 8298, 11, 331, 28, 5333, 1120, 11, 264, 28, 81, 1, 3, 59, 50033, 62, 15, 3, 1600, 3124, 2625, 3287, 282, 17585, 4943, 198, 220, 220, 220, 7877, 58, 15, 4083, 5239, 7, 87, 28, 10247, 26623, 58, 17585, 62, 5469, 45297, 15, 13, 28041, 11, 331, 28, 5333, 1120, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 28, 81, 1, 3, 59, 5239, 26224, 90, 5469, 92, 3, 1600, 3124, 2625, 22089, 15688, 17585, 1600, 13179, 2625, 1851, 605, 4943, 198, 220, 220, 220, 1303, 7877, 58, 15, 4083, 2617, 62, 742, 3378, 7, 4868, 7, 897, 58, 15, 4083, 1136, 62, 742, 3378, 28955, 1343, 685, 50033, 15, 12962, 198, 220, 220, 220, 1303, 7877, 58, 15, 4083, 2617, 62, 742, 624, 23912, 1424, 26933, 81, 1, 3, 7225, 17, 69, 3, 1, 4064, 87, 329, 2124, 287, 1351, 7, 897, 58, 15, 4083, 1136, 62, 742, 3378, 28955, 58, 21912, 16, 11907, 1343, 685, 81, 1, 3, 59, 50033, 62, 15, 3, 8973, 8, 628, 220, 220, 220, 7877, 58, 16, 4083, 29487, 7, 10247, 26623, 58, 16159, 12, 1558, 25, 16159, 10, 1507, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 309, 65, 62, 343, 16338, 58, 16159, 12, 1558, 25, 16159, 10, 1507, 11, 7904, 1433, 4083, 8367, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3124, 11639, 74, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 300, 86, 28, 15, 13, 3070, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17130, 28, 15, 13, 20, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 1603, 1143, 28, 17821, 8, 198, 220, 220, 220, 7877, 58, 16, 4083, 29487, 7, 10247, 26623, 58, 16159, 12, 1558, 25, 16159, 10, 1507, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 32604, 7, 51, 65, 62, 343, 16338, 58, 16159, 12, 1558, 25, 16159, 10, 1507, 4357, 16488, 28, 16, 737, 8367, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3124, 2625, 50086, 1559, 1600, 6167, 28, 81, 1, 3, 59, 5239, 26224, 90, 2777, 34961, 2811, 92, 3, 4943, 198, 220, 220, 220, 7877, 58, 16, 4083, 897, 85, 1370, 7, 50033, 15, 11, 43979, 2625, 67, 5263, 1600, 3124, 2625, 3287, 282, 17585, 1600, 300, 86, 28, 15, 13, 2425, 8, 198, 220, 220, 220, 7877, 58, 16, 4083, 897, 85, 1370, 7, 10247, 26623, 58, 17585, 62, 5469, 4357, 43979, 2625, 67, 5263, 1600, 3124, 2625, 22089, 15688, 17585, 1600, 300, 86, 28, 15, 13, 2425, 8, 198, 220, 220, 220, 7877, 58, 16, 4083, 2617, 62, 87, 18242, 7, 81, 1, 3, 59, 5239, 26224, 90, 33484, 26623, 685, 21533, 48999, 3, 4943, 198, 220, 220, 220, 7877, 58, 16, 4083, 2617, 62, 88, 2475, 7, 43434, 11, 1065, 830, 8, 198, 220, 220, 220, 7877, 58, 16, 4083, 2617, 62, 7839, 7, 81, 1, 3, 59, 5239, 26224, 90, 23820, 16338, 10706, 92, 3, 4943, 198, 220, 220, 220, 7877, 58, 16, 4083, 1455, 437, 7, 17946, 2625, 45828, 826, 4943, 198, 220, 220, 220, 7877, 58, 16, 4083, 5239, 7, 87, 28, 50033, 15, 10, 15, 13, 8298, 11, 331, 28, 5333, 1120, 11, 264, 28, 81, 1, 3, 59, 50033, 62, 15, 3, 1600, 3124, 2625, 3287, 282, 17585, 4943, 198, 220, 220, 220, 7877, 58, 16, 4083, 5239, 7, 87, 28, 10247, 26623, 58, 17585, 62, 5469, 45297, 15, 13, 28041, 11, 331, 28, 5333, 1120, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 28, 81, 1, 3, 59, 5239, 26224, 90, 5469, 92, 3, 1600, 3124, 2625, 22089, 15688, 17585, 1600, 13179, 2625, 1851, 605, 4943, 198, 220, 220, 220, 1303, 7877, 58, 16, 4083, 2617, 62, 742, 624, 23912, 1424, 26933, 81, 1, 3, 7225, 17, 69, 3, 1, 4064, 87, 329, 2124, 287, 1351, 7, 897, 58, 15, 4083, 1136, 62, 742, 3378, 28955, 58, 21912, 16, 11907, 1343, 685, 81, 1, 3, 59, 50033, 62, 15, 3, 8973, 8, 198, 220, 220, 220, 1303, 7877, 58, 16, 4083, 2617, 62, 742, 3378, 7, 4868, 7, 897, 58, 16, 4083, 1136, 62, 742, 3378, 28955, 1343, 685, 50033, 15, 12962, 628, 220, 220, 220, 1303, 2336, 13, 2385, 457, 2578, 7, 81, 1, 3, 59, 5239, 26224, 90, 40961, 12, 19085, 260, 2558, 6377, 92, 3, 4943, 198, 220, 220, 220, 458, 83, 13, 21928, 5647, 7203, 40720, 9600, 14, 5589, 533, 62, 1370, 14, 6615, 13, 12315, 1600, 288, 14415, 28, 6200, 8, 198 ]
2.032543
14,166
import numpy as np import matplotlib.pylab as plt from Gradient_2D import numerical_gradient init_x = np.array([-4.0, 5.0]) lr = 0.1 step_num = 30 x, x_history = gradient_descent(function, init_x, lr=lr, step_num=step_num) plt.plot( [-6, 6], [0,0], '--b') plt.plot( [0,0], [-6, 6], '--b') plt.plot(x_history[:,0], x_history[:,1], 'o') plt.xlim(-4.5, 4.5) plt.ylim(-5.5, 5.5) plt.xlabel("X0") plt.ylabel("X1") plt.show()
[ 11748, 299, 32152, 355, 45941, 198, 11748, 2603, 29487, 8019, 13, 79, 2645, 397, 355, 458, 83, 198, 6738, 17701, 1153, 62, 17, 35, 1330, 29052, 62, 49607, 628, 628, 198, 15003, 62, 87, 796, 45941, 13, 18747, 26933, 12, 19, 13, 15, 11, 642, 13, 15, 12962, 198, 198, 14050, 796, 657, 13, 16, 198, 9662, 62, 22510, 796, 1542, 198, 87, 11, 2124, 62, 23569, 796, 31312, 62, 8906, 1087, 7, 8818, 11, 2315, 62, 87, 11, 300, 81, 28, 14050, 11, 2239, 62, 22510, 28, 9662, 62, 22510, 8, 198, 198, 489, 83, 13, 29487, 7, 25915, 21, 11, 718, 4357, 685, 15, 11, 15, 4357, 705, 438, 65, 11537, 198, 489, 83, 13, 29487, 7, 685, 15, 11, 15, 4357, 25915, 21, 11, 718, 4357, 705, 438, 65, 11537, 198, 489, 83, 13, 29487, 7, 87, 62, 23569, 58, 45299, 15, 4357, 2124, 62, 23569, 58, 45299, 16, 4357, 705, 78, 11537, 198, 198, 489, 83, 13, 87, 2475, 32590, 19, 13, 20, 11, 604, 13, 20, 8, 198, 489, 83, 13, 88, 2475, 32590, 20, 13, 20, 11, 642, 13, 20, 8, 198, 489, 83, 13, 87, 18242, 7203, 55, 15, 4943, 198, 489, 83, 13, 2645, 9608, 7203, 55, 16, 4943, 198, 489, 83, 13, 12860, 3419, 198 ]
1.995327
214
import cv2 import numpy as np cap=cv2.VideoCapture(0) max_radius=0 max_center=(0,0) lower=np.array([7,137,132]) upper=np.array([25,255,255]) while True: ret, frame = cap.read() if frame is None: break hsv=cv2.cvtColor(frame,cv2.COLOR_BGR2HSV) out=cv2.inRange(hsv,lower,upper) erosion=cv2.erode(out,None,iterations=1) dilate=cv2.dilate(erosion,None,iterations=2) cnts,_=cv2.findContours(dilate,cv2.RETR_EXTERNAL,cv2.CHAIN_APPROX_SIMPLE) for c in cnts: (x, y),r=cv2.minEnclosingCircle(c) center=(int(x),int(y)) r=int(r) if r>max_radius: max_radius=r max_center=center cv2.circle(frame,center,r,(0,255,0),2) cv2.imshow("image",frame) if cv2.waitKey(30)==ord('q'): break cv2.destroyAllWindows() cap.release()
[ 11748, 269, 85, 17, 198, 11748, 299, 32152, 355, 45941, 198, 198, 11128, 28, 33967, 17, 13, 10798, 49630, 7, 15, 8, 198, 198, 9806, 62, 42172, 28, 15, 198, 9806, 62, 16159, 16193, 15, 11, 15, 8, 198, 198, 21037, 28, 37659, 13, 18747, 26933, 22, 11, 19708, 11, 19924, 12962, 198, 45828, 28, 37659, 13, 18747, 26933, 1495, 11, 13381, 11, 13381, 12962, 198, 198, 4514, 6407, 25, 198, 220, 220, 220, 1005, 11, 5739, 796, 1451, 13, 961, 3419, 198, 220, 220, 220, 611, 5739, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2270, 628, 220, 220, 220, 289, 21370, 28, 33967, 17, 13, 33967, 83, 10258, 7, 14535, 11, 33967, 17, 13, 46786, 62, 33, 10761, 17, 7998, 53, 8, 198, 220, 220, 220, 503, 28, 33967, 17, 13, 259, 17257, 7, 11994, 85, 11, 21037, 11, 45828, 8, 628, 220, 220, 220, 29337, 28, 33967, 17, 13, 263, 1098, 7, 448, 11, 14202, 11, 2676, 602, 28, 16, 8, 198, 220, 220, 220, 11844, 378, 28, 33967, 17, 13, 67, 346, 378, 7, 263, 18442, 11, 14202, 11, 2676, 602, 28, 17, 8, 198, 220, 220, 220, 269, 429, 82, 11, 62, 28, 33967, 17, 13, 19796, 4264, 4662, 7, 67, 346, 378, 11, 33967, 17, 13, 2200, 5446, 62, 6369, 31800, 1847, 11, 33967, 17, 13, 3398, 29833, 62, 2969, 31190, 55, 62, 48913, 16437, 8, 628, 220, 220, 220, 329, 269, 287, 269, 429, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 357, 87, 11, 331, 828, 81, 28, 33967, 17, 13, 1084, 4834, 565, 2752, 31560, 293, 7, 66, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3641, 16193, 600, 7, 87, 828, 600, 7, 88, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 374, 28, 600, 7, 81, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 374, 29, 9806, 62, 42172, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 62, 42172, 28, 81, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 62, 16159, 28, 16159, 628, 220, 220, 220, 269, 85, 17, 13, 45597, 7, 14535, 11, 16159, 11, 81, 11, 7, 15, 11, 13381, 11, 15, 828, 17, 8, 198, 220, 220, 220, 269, 85, 17, 13, 320, 12860, 7203, 9060, 1600, 14535, 8, 628, 198, 220, 220, 220, 611, 269, 85, 17, 13, 17077, 9218, 7, 1270, 8, 855, 585, 10786, 80, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2270, 628, 198, 33967, 17, 13, 41659, 3237, 11209, 3419, 198, 11128, 13, 20979, 3419, 628 ]
1.90205
439
# Copyright 2017 Mycroft AI Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # """ DisplayManager This module provides basic "state" for the visual representation associated with this Mycroft instance. The current states are: ActiveSkill - The skill that last interacted with the display via the Enclosure API. Currently, a wakeword sets the ActiveSkill to "wakeword", which will auto clear after 10 seconds. A skill is set to Active when it matches an intent, outputs audio, or changes the display via the EnclosureAPI() A skill is automatically cleared from Active two seconds after audio output is spoken, or 2 seconds after resetting the display. So it is common to have '' as the active skill. """ import json from threading import Thread, Timer import os from mycroft.messagebus.client import MessageBusClient from mycroft.util import get_ipc_directory from mycroft.util.log import LOG def _write_data(dictionary): """ Writes the dictionary of state data to the IPC directory. Args: dictionary (dict): information to place in the 'disp_info' file """ managerIPCDir = os.path.join(get_ipc_directory(), "managers") # change read/write permissions based on if file exists or not path = os.path.join(managerIPCDir, "disp_info") permission = "r+" if os.path.isfile(path) else "w+" if permission == "w+" and os.path.isdir(managerIPCDir) is False: os.makedirs(managerIPCDir) os.chmod(managerIPCDir, 0o777) try: with open(path, permission) as dispFile: # check if file is empty if os.stat(str(dispFile.name)).st_size != 0: data = json.load(dispFile) else: data = {} LOG.info("Display Manager is creating " + dispFile.name) for key in dictionary: data[key] = dictionary[key] dispFile.seek(0) dispFile.write(json.dumps(data)) dispFile.truncate() os.chmod(path, 0o777) except Exception as e: LOG.error(e) LOG.error("Error found in display manager file, deleting...") os.remove(path) _write_data(dictionary) def _read_data(): """ Writes the dictionary of state data from the IPC directory. Returns: dict: loaded state information """ managerIPCDir = os.path.join(get_ipc_directory(), "managers") path = os.path.join(managerIPCDir, "disp_info") permission = "r" if os.path.isfile(path) else "w+" if permission == "w+" and os.path.isdir(managerIPCDir) is False: os.makedirs(managerIPCDir) data = {} try: with open(path, permission) as dispFile: if os.stat(str(dispFile.name)).st_size != 0: data = json.load(dispFile) except Exception as e: LOG.error(e) os.remove(path) _read_data() return data class DisplayManager: """ The Display manager handles the basic state of the display, be it a mark-1 or a mark-2 or even a future Mark-3. """ def set_active(self, skill_name=None): """ Sets skill name as active in the display Manager Args: string: skill_name """ name = skill_name if skill_name is not None else self.name _write_data({"active_skill": name}) def get_active(self): """ Get the currenlty active skill from the display manager Returns: string: The active skill's name """ data = _read_data() active_skill = "" if "active_skill" in data: active_skill = data["active_skill"] return active_skill def remove_active(self): """ Clears the active skill """ LOG.debug("Removing active skill...") _write_data({"active_skill": ""}) def init_display_manager_bus_connection(): """ Connects the display manager to the messagebus """ LOG.info("Connecting display manager to messagebus") # Should remove needs to be an object so it can be referenced in functions # [https://stackoverflow.com/questions/986006/how-do-i-pass-a-variable-by-reference] display_manager = DisplayManager() should_remove = [True] bus = MessageBusClient() bus.on('recognizer_loop:audio_output_end', set_delay) bus.on('recognizer_loop:audio_output_start', set_remove_flag) bus.on('recognizer_loop:record_begin', set_wakeword_skill) event_thread = Thread(target=connect) event_thread.setDaemon(True) event_thread.start()
[ 2, 15069, 2177, 2011, 36714, 9552, 3457, 13, 198, 2, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 2, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 2, 921, 743, 7330, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 198, 2, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 198, 2, 4091, 262, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 198, 2, 11247, 739, 262, 13789, 13, 198, 2, 198, 198, 37811, 16531, 13511, 198, 198, 1212, 8265, 3769, 4096, 366, 5219, 1, 329, 262, 5874, 10552, 3917, 198, 4480, 428, 2011, 36714, 4554, 13, 220, 383, 1459, 2585, 389, 25, 198, 220, 220, 14199, 35040, 532, 383, 5032, 326, 938, 49236, 351, 262, 3359, 2884, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2039, 17966, 7824, 13, 198, 198, 21327, 11, 257, 7765, 4775, 5621, 262, 14199, 35040, 284, 366, 48530, 4775, 1600, 543, 481, 8295, 198, 20063, 706, 838, 4201, 13, 198, 198, 32, 5032, 318, 900, 284, 14199, 618, 340, 7466, 281, 6824, 11, 23862, 6597, 11, 393, 198, 36653, 262, 3359, 2884, 262, 2039, 17966, 17614, 3419, 198, 198, 32, 5032, 318, 6338, 12539, 422, 14199, 734, 4201, 706, 6597, 198, 22915, 318, 9635, 11, 393, 362, 4201, 706, 13259, 889, 262, 3359, 13, 198, 198, 2396, 340, 318, 2219, 284, 423, 10148, 355, 262, 4075, 5032, 13, 198, 37811, 198, 198, 11748, 33918, 198, 6738, 4704, 278, 1330, 14122, 11, 5045, 263, 198, 198, 11748, 28686, 198, 198, 6738, 616, 36714, 13, 20500, 10885, 13, 16366, 1330, 16000, 16286, 11792, 198, 6738, 616, 36714, 13, 22602, 1330, 651, 62, 541, 66, 62, 34945, 198, 6738, 616, 36714, 13, 22602, 13, 6404, 1330, 41605, 628, 198, 4299, 4808, 13564, 62, 7890, 7, 67, 14188, 2599, 198, 220, 220, 220, 37227, 12257, 274, 262, 22155, 286, 1181, 1366, 284, 262, 314, 5662, 8619, 13, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 22155, 357, 11600, 2599, 1321, 284, 1295, 287, 262, 705, 6381, 79, 62, 10951, 6, 2393, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 4706, 4061, 8610, 343, 796, 28686, 13, 6978, 13, 22179, 7, 1136, 62, 541, 66, 62, 34945, 22784, 366, 805, 10321, 4943, 198, 220, 220, 220, 1303, 1487, 1100, 14, 13564, 21627, 1912, 319, 611, 2393, 7160, 393, 407, 198, 220, 220, 220, 3108, 796, 28686, 13, 6978, 13, 22179, 7, 37153, 4061, 8610, 343, 11, 366, 6381, 79, 62, 10951, 4943, 198, 220, 220, 220, 7170, 796, 366, 81, 10, 1, 611, 28686, 13, 6978, 13, 4468, 576, 7, 6978, 8, 2073, 366, 86, 10, 1, 628, 220, 220, 220, 611, 7170, 6624, 366, 86, 10, 1, 290, 28686, 13, 6978, 13, 9409, 343, 7, 37153, 4061, 8610, 343, 8, 318, 10352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 28686, 13, 76, 4335, 17062, 7, 37153, 4061, 8610, 343, 8, 198, 220, 220, 220, 220, 220, 220, 220, 28686, 13, 354, 4666, 7, 37153, 4061, 8610, 343, 11, 657, 78, 29331, 8, 628, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 6978, 11, 7170, 8, 355, 4596, 8979, 25, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2198, 611, 2393, 318, 6565, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 28686, 13, 14269, 7, 2536, 7, 6381, 79, 8979, 13, 3672, 29720, 301, 62, 7857, 14512, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 33918, 13, 2220, 7, 6381, 79, 8979, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 41605, 13, 10951, 7203, 23114, 9142, 318, 4441, 366, 1343, 4596, 8979, 13, 3672, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1994, 287, 22155, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 58, 2539, 60, 796, 22155, 58, 2539, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4596, 8979, 13, 36163, 7, 15, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4596, 8979, 13, 13564, 7, 17752, 13, 67, 8142, 7, 7890, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4596, 8979, 13, 2213, 19524, 378, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 28686, 13, 354, 4666, 7, 6978, 11, 657, 78, 29331, 8, 628, 220, 220, 220, 2845, 35528, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 41605, 13, 18224, 7, 68, 8, 198, 220, 220, 220, 220, 220, 220, 220, 41605, 13, 18224, 7203, 12331, 1043, 287, 3359, 4706, 2393, 11, 34817, 9313, 8, 198, 220, 220, 220, 220, 220, 220, 220, 28686, 13, 28956, 7, 6978, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 13564, 62, 7890, 7, 67, 14188, 8, 628, 198, 4299, 4808, 961, 62, 7890, 33529, 198, 220, 220, 220, 37227, 12257, 274, 262, 22155, 286, 1181, 1366, 422, 262, 314, 5662, 8619, 13, 198, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 8633, 25, 9639, 1181, 1321, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 4706, 4061, 8610, 343, 796, 28686, 13, 6978, 13, 22179, 7, 1136, 62, 541, 66, 62, 34945, 22784, 366, 805, 10321, 4943, 628, 220, 220, 220, 3108, 796, 28686, 13, 6978, 13, 22179, 7, 37153, 4061, 8610, 343, 11, 366, 6381, 79, 62, 10951, 4943, 198, 220, 220, 220, 7170, 796, 366, 81, 1, 611, 28686, 13, 6978, 13, 4468, 576, 7, 6978, 8, 2073, 366, 86, 10, 1, 628, 220, 220, 220, 611, 7170, 6624, 366, 86, 10, 1, 290, 28686, 13, 6978, 13, 9409, 343, 7, 37153, 4061, 8610, 343, 8, 318, 10352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 28686, 13, 76, 4335, 17062, 7, 37153, 4061, 8610, 343, 8, 628, 220, 220, 220, 1366, 796, 23884, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 6978, 11, 7170, 8, 355, 4596, 8979, 25, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 28686, 13, 14269, 7, 2536, 7, 6381, 79, 8979, 13, 3672, 29720, 301, 62, 7857, 14512, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 33918, 13, 2220, 7, 6381, 79, 8979, 8, 628, 220, 220, 220, 2845, 35528, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 41605, 13, 18224, 7, 68, 8, 198, 220, 220, 220, 220, 220, 220, 220, 28686, 13, 28956, 7, 6978, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 961, 62, 7890, 3419, 628, 220, 220, 220, 1441, 1366, 628, 198, 4871, 16531, 13511, 25, 198, 220, 220, 220, 37227, 383, 16531, 4706, 17105, 262, 4096, 1181, 286, 262, 3359, 11, 198, 220, 220, 220, 307, 340, 257, 1317, 12, 16, 393, 257, 1317, 12, 17, 393, 772, 257, 2003, 2940, 12, 18, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 825, 900, 62, 5275, 7, 944, 11, 5032, 62, 3672, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 21394, 5032, 1438, 355, 4075, 287, 262, 3359, 9142, 198, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4731, 25, 5032, 62, 3672, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 796, 5032, 62, 3672, 611, 5032, 62, 3672, 318, 407, 6045, 2073, 2116, 13, 3672, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 13564, 62, 7890, 7, 4895, 5275, 62, 42401, 1298, 1438, 30072, 628, 220, 220, 220, 825, 651, 62, 5275, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3497, 262, 1090, 918, 75, 774, 4075, 5032, 422, 262, 3359, 4706, 198, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4731, 25, 383, 4075, 5032, 338, 1438, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 4808, 961, 62, 7890, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 4075, 62, 42401, 796, 13538, 628, 220, 220, 220, 220, 220, 220, 220, 611, 366, 5275, 62, 42401, 1, 287, 1366, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4075, 62, 42401, 796, 1366, 14692, 5275, 62, 42401, 8973, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 4075, 62, 42401, 628, 220, 220, 220, 825, 4781, 62, 5275, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3779, 945, 262, 4075, 5032, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 41605, 13, 24442, 7203, 8413, 5165, 4075, 5032, 9313, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 13564, 62, 7890, 7, 4895, 5275, 62, 42401, 1298, 13538, 30072, 628, 198, 4299, 2315, 62, 13812, 62, 37153, 62, 10885, 62, 38659, 33529, 198, 220, 220, 220, 37227, 8113, 82, 262, 3359, 4706, 284, 262, 3275, 10885, 37227, 198, 220, 220, 220, 41605, 13, 10951, 7203, 13313, 278, 3359, 4706, 284, 3275, 10885, 4943, 628, 220, 220, 220, 1303, 10358, 4781, 2476, 284, 307, 281, 2134, 523, 340, 460, 307, 20717, 287, 5499, 198, 220, 220, 220, 1303, 685, 5450, 1378, 25558, 2502, 11125, 13, 785, 14, 6138, 507, 14, 4089, 8054, 21, 14, 4919, 12, 4598, 12, 72, 12, 6603, 12, 64, 12, 45286, 12, 1525, 12, 35790, 60, 198, 220, 220, 220, 3359, 62, 37153, 796, 16531, 13511, 3419, 198, 220, 220, 220, 815, 62, 28956, 796, 685, 17821, 60, 628, 220, 220, 220, 1323, 796, 16000, 16286, 11792, 3419, 198, 220, 220, 220, 1323, 13, 261, 10786, 26243, 7509, 62, 26268, 25, 24051, 62, 22915, 62, 437, 3256, 900, 62, 40850, 8, 198, 220, 220, 220, 1323, 13, 261, 10786, 26243, 7509, 62, 26268, 25, 24051, 62, 22915, 62, 9688, 3256, 900, 62, 28956, 62, 32109, 8, 198, 220, 220, 220, 1323, 13, 261, 10786, 26243, 7509, 62, 26268, 25, 22105, 62, 27471, 3256, 900, 62, 48530, 4775, 62, 42401, 8, 628, 220, 220, 220, 1785, 62, 16663, 796, 14122, 7, 16793, 28, 8443, 8, 198, 220, 220, 220, 1785, 62, 16663, 13, 2617, 26531, 7966, 7, 17821, 8, 198, 220, 220, 220, 1785, 62, 16663, 13, 9688, 3419, 198 ]
2.670719
1,892
from typing import Any, Tuple from Crypto.Cipher import PKCS1_OAEP from Crypto.PublicKey import RSA def keyGen(key_size: int) -> Tuple[Any, Any]: """Genrates key for RSA algorithm. Parameters ---------- key_size : int Size of key """ key_pair = RSA.generate(key_size) private_key = key_pair.exportKey() public_key = key_pair.publickey() public_key = public_key.exportKey() return private_key, public_key, key_pair def encrypt(plain_text: bytes, key_size: int) -> Tuple[bytes, Any]: """Encrypts plain text using RSA. Parameters ---------- plain_message : bytes Message to encrypt key_size : int Size of key Returns ------- Tuple[bytes, Any] Private Key, Encrypted text """ private_key, public_key, key_pair = keyGen(key_size) key = RSA.importKey(public_key) encryptor = PKCS1_OAEP.new(key) cipher_text = encryptor.encrypt(plain_text) return key_pair, plain_text, cipher_text def decrypt(cipher_text: bytes, key_pair: Any) -> bytes: """Decrypts RSA encrypted text. Parameters ---------- ciphertext : bytes Encrypted text key_size : Any Size of key Returns ------- bytes Decrypted text """ decryptor = PKCS1_OAEP.new(key_pair) plain_text = decryptor.decrypt(cipher_text) return plain_text
[ 6738, 19720, 1330, 4377, 11, 309, 29291, 198, 198, 6738, 36579, 13, 34, 10803, 1330, 29673, 7902, 16, 62, 23621, 8905, 198, 6738, 36579, 13, 15202, 9218, 1330, 42319, 628, 198, 4299, 1994, 13746, 7, 2539, 62, 7857, 25, 493, 8, 4613, 309, 29291, 58, 7149, 11, 4377, 5974, 198, 220, 220, 220, 37227, 13746, 9700, 1994, 329, 42319, 11862, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 1994, 62, 7857, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 12849, 286, 1994, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1994, 62, 24874, 796, 42319, 13, 8612, 378, 7, 2539, 62, 7857, 8, 628, 220, 220, 220, 2839, 62, 2539, 796, 1994, 62, 24874, 13, 39344, 9218, 3419, 628, 220, 220, 220, 1171, 62, 2539, 796, 1994, 62, 24874, 13, 11377, 2539, 3419, 198, 220, 220, 220, 1171, 62, 2539, 796, 1171, 62, 2539, 13, 39344, 9218, 3419, 628, 220, 220, 220, 1441, 2839, 62, 2539, 11, 1171, 62, 2539, 11, 1994, 62, 24874, 628, 198, 4299, 34117, 7, 25638, 62, 5239, 25, 9881, 11, 1994, 62, 7857, 25, 493, 8, 4613, 309, 29291, 58, 33661, 11, 4377, 5974, 198, 220, 220, 220, 37227, 27195, 6012, 82, 8631, 2420, 1262, 42319, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 8631, 62, 20500, 1058, 9881, 198, 220, 220, 220, 220, 220, 220, 220, 16000, 284, 34117, 198, 220, 220, 220, 1994, 62, 7857, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 12849, 286, 1994, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 309, 29291, 58, 33661, 11, 4377, 60, 198, 220, 220, 220, 220, 220, 220, 220, 15348, 7383, 11, 14711, 15109, 2420, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2839, 62, 2539, 11, 1171, 62, 2539, 11, 1994, 62, 24874, 796, 1994, 13746, 7, 2539, 62, 7857, 8, 198, 220, 220, 220, 1994, 796, 42319, 13, 11748, 9218, 7, 11377, 62, 2539, 8, 198, 220, 220, 220, 34117, 273, 796, 29673, 7902, 16, 62, 23621, 8905, 13, 3605, 7, 2539, 8, 198, 220, 220, 220, 38012, 62, 5239, 796, 34117, 273, 13, 12685, 6012, 7, 25638, 62, 5239, 8, 628, 220, 220, 220, 1441, 1994, 62, 24874, 11, 8631, 62, 5239, 11, 38012, 62, 5239, 628, 198, 4299, 42797, 7, 66, 10803, 62, 5239, 25, 9881, 11, 1994, 62, 24874, 25, 4377, 8, 4613, 9881, 25, 198, 220, 220, 220, 37227, 10707, 6012, 82, 42319, 19365, 2420, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 38012, 5239, 1058, 9881, 198, 220, 220, 220, 220, 220, 220, 220, 14711, 15109, 2420, 198, 220, 220, 220, 1994, 62, 7857, 1058, 4377, 198, 220, 220, 220, 220, 220, 220, 220, 12849, 286, 1994, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 9881, 198, 220, 220, 220, 220, 220, 220, 220, 4280, 15109, 2420, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 42797, 273, 796, 29673, 7902, 16, 62, 23621, 8905, 13, 3605, 7, 2539, 62, 24874, 8, 198, 220, 220, 220, 8631, 62, 5239, 796, 42797, 273, 13, 12501, 6012, 7, 66, 10803, 62, 5239, 8, 628, 220, 220, 220, 1441, 8631, 62, 5239, 198 ]
2.523381
556
import sys import requests import getopt import json import calendar import math from datetime import datetime, timezone, timedelta from veracode_api_signing.plugin_requests import RequestsAuthPluginVeracodeHMAC api_base = "https://api.veracode.com/was/configservice/v1/" headers = { "User-Agent": "Dynamic Analysis API Example Client", "Content-Type": "application/json" } analysis_update_template= r'''{ "schedule": { "duration": { "length": {duration_length}, "unit": "{duration_unit}" }, "end_date": "", "now": false, "scan_recurrence_schedule": { "day_of_week": "{day_of_week}", "recurrence_interval": {recurrence_interval}, "recurrence_type": "{recurrence_type}", "schedule_end_after": {schedule_end_after}, "week_of_month": "{week_of_month}" }, "schedule_status": "ACTIVE", "start_date": "{start_date}" } }''' weekly_update_template= r'''{ "schedule": { "duration": { "length": {duration_length}, "unit": "{duration_unit}" }, "end_date": "", "now": false, "scan_recurrence_schedule": { "day_of_week": "{day_of_week}", "recurrence_interval": {recurrence_interval}, "recurrence_type": "{recurrence_type}", "schedule_end_after": {schedule_end_after} }, "schedule_status": "ACTIVE", "start_date": "{start_date}" } }''' monthly_update_template= r'''{ "schedule": { "duration": { "length": {duration_length}, "unit": "{duration_unit}" }, "end_date": "", "now": false, "scan_recurrence_schedule": { "day_of_week": "{day_of_week}", "recurrence_interval": {recurrence_interval}, "recurrence_type": "{recurrence_type}", "schedule_end_after": {schedule_end_after}, "week_of_month": "{week_of_month}" }, "schedule_status": "ACTIVE", "start_date": "{start_date}" } }''' scan_update_hold = r'''{ "name": "{name}" } ''' cmdsettings = CommandSettings() def print_help(): """Prints command line options and exits""" print("""veracode-da-reset-scheduler.py [-h] [-d] [-v] -x Updates all Dynamic Analysis Recurring Scheduled scans that have expired with recurrences for one year. Passing of the -x or --execute is required to run program Options: -h --help shows this help menu -d --dry-run performs a dry run for updating content without committing changes -v --verbose turns on the verbose debug logging for the program -x --execute performs a live update to content """) sys.exit() def main(argv): """Simple command line support for creating, deleting, and listing DA scanner variables""" try: #TODO: Add to commandline functionality application_name = '' target_url = '' #print('ARGV :', argv) options, args = getopt.getopt(argv, "hvdixa:u:", ["help","verbose","dry-run","execute"]) #, "interactive","application_name=", "target_url="]) #print('OPTIONS :', options) for opt, arg in options: if opt == '-h': print_help() elif opt == '-v': cmdsettings.verbose = True elif opt in ('-d', '--dry-run'): cmdsettings.dry_run = True elif opt in ('-x', '--execute'): cmdsettings.dry_run = True #elif opt in ('-i', '--interactive'): # cmdsettings.interactive = True #if opt in ('-a', '--application_name'): # application_name = arg #if opt in ('-u', '--url'): # target_url = arg #print('VERBOSE :', cmdsettings.verbose) #print('DRY RUN :', cmdsettings.dry_run) #print('INTERACTIVE :', cmdsettings.interactive) #print('APPLICATION NAME:', application_name) #print('TARGET URL :', target_url) #print('REMAINING :', args) if cmdsettings.execute or cmdsettings.dry_run: execution_process() else: print_help() except requests.RequestException as e: print("An error occurred!") print(e) sys.exit(1) if __name__ == "__main__": main(sys.argv[1:])
[ 11748, 25064, 198, 11748, 7007, 198, 11748, 651, 8738, 198, 11748, 33918, 198, 11748, 11845, 198, 11748, 10688, 198, 198, 6738, 4818, 8079, 1330, 4818, 8079, 11, 640, 11340, 11, 28805, 12514, 198, 6738, 3326, 330, 1098, 62, 15042, 62, 12683, 278, 13, 33803, 62, 8897, 3558, 1330, 9394, 3558, 30515, 37233, 13414, 330, 1098, 36905, 2246, 198, 198, 15042, 62, 8692, 796, 366, 5450, 1378, 15042, 13, 332, 330, 1098, 13, 785, 14, 9776, 14, 11250, 15271, 14, 85, 16, 30487, 198, 50145, 796, 1391, 198, 220, 220, 220, 366, 12982, 12, 36772, 1298, 366, 44090, 14691, 7824, 17934, 20985, 1600, 198, 220, 220, 220, 366, 19746, 12, 6030, 1298, 366, 31438, 14, 17752, 1, 198, 92, 198, 198, 20930, 62, 19119, 62, 28243, 28, 374, 7061, 6, 90, 198, 220, 220, 220, 366, 15952, 5950, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 32257, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 13664, 1298, 1391, 32257, 62, 13664, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 20850, 1298, 45144, 32257, 62, 20850, 36786, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 366, 437, 62, 4475, 1298, 366, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 2197, 1298, 3991, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 35836, 62, 8344, 33928, 62, 15952, 5950, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 820, 62, 1659, 62, 10464, 1298, 45144, 820, 62, 1659, 62, 10464, 92, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8344, 33928, 62, 3849, 2100, 1298, 1391, 8344, 33928, 62, 3849, 2100, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8344, 33928, 62, 4906, 1298, 45144, 8344, 33928, 62, 4906, 92, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 15952, 5950, 62, 437, 62, 8499, 1298, 1391, 15952, 5950, 62, 437, 62, 8499, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 10464, 62, 1659, 62, 8424, 1298, 45144, 10464, 62, 1659, 62, 8424, 36786, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 366, 15952, 5950, 62, 13376, 1298, 366, 10659, 9306, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 9688, 62, 4475, 1298, 45144, 9688, 62, 4475, 36786, 198, 220, 220, 220, 1782, 198, 92, 7061, 6, 198, 198, 45291, 62, 19119, 62, 28243, 28, 374, 7061, 6, 90, 198, 220, 220, 220, 366, 15952, 5950, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 32257, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 13664, 1298, 1391, 32257, 62, 13664, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 20850, 1298, 45144, 32257, 62, 20850, 36786, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 366, 437, 62, 4475, 1298, 366, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 2197, 1298, 3991, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 35836, 62, 8344, 33928, 62, 15952, 5950, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 820, 62, 1659, 62, 10464, 1298, 45144, 820, 62, 1659, 62, 10464, 92, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8344, 33928, 62, 3849, 2100, 1298, 1391, 8344, 33928, 62, 3849, 2100, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8344, 33928, 62, 4906, 1298, 45144, 8344, 33928, 62, 4906, 92, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 15952, 5950, 62, 437, 62, 8499, 1298, 1391, 15952, 5950, 62, 437, 62, 8499, 92, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 366, 15952, 5950, 62, 13376, 1298, 366, 10659, 9306, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 9688, 62, 4475, 1298, 45144, 9688, 62, 4475, 36786, 198, 220, 220, 220, 1782, 198, 92, 7061, 6, 198, 198, 8424, 306, 62, 19119, 62, 28243, 28, 374, 7061, 6, 90, 198, 220, 220, 220, 366, 15952, 5950, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 32257, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 13664, 1298, 1391, 32257, 62, 13664, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 20850, 1298, 45144, 32257, 62, 20850, 36786, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 366, 437, 62, 4475, 1298, 366, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 2197, 1298, 3991, 11, 198, 220, 220, 220, 220, 220, 220, 220, 366, 35836, 62, 8344, 33928, 62, 15952, 5950, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 820, 62, 1659, 62, 10464, 1298, 45144, 820, 62, 1659, 62, 10464, 92, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8344, 33928, 62, 3849, 2100, 1298, 1391, 8344, 33928, 62, 3849, 2100, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8344, 33928, 62, 4906, 1298, 45144, 8344, 33928, 62, 4906, 92, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 15952, 5950, 62, 437, 62, 8499, 1298, 1391, 15952, 5950, 62, 437, 62, 8499, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 10464, 62, 1659, 62, 8424, 1298, 45144, 10464, 62, 1659, 62, 8424, 36786, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 366, 15952, 5950, 62, 13376, 1298, 366, 10659, 9306, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 9688, 62, 4475, 1298, 45144, 9688, 62, 4475, 36786, 198, 220, 220, 220, 1782, 198, 92, 7061, 6, 198, 198, 35836, 62, 19119, 62, 2946, 796, 374, 7061, 6, 90, 198, 220, 220, 220, 366, 3672, 1298, 45144, 3672, 36786, 198, 92, 198, 7061, 6, 628, 198, 28758, 33692, 796, 9455, 26232, 3419, 198, 198, 4299, 3601, 62, 16794, 33529, 198, 220, 220, 220, 37227, 18557, 82, 3141, 1627, 3689, 290, 30151, 37811, 198, 220, 220, 220, 3601, 7203, 15931, 332, 330, 1098, 12, 6814, 12, 42503, 12, 1416, 704, 18173, 13, 9078, 25915, 71, 60, 25915, 67, 60, 25915, 85, 60, 532, 87, 220, 198, 220, 220, 220, 220, 220, 220, 220, 28090, 477, 26977, 14691, 3311, 14924, 27774, 6309, 23824, 326, 423, 21350, 351, 664, 333, 34303, 329, 530, 614, 13, 198, 220, 220, 220, 220, 220, 220, 220, 46389, 286, 262, 532, 87, 393, 1377, 41049, 318, 2672, 284, 1057, 1430, 198, 220, 220, 220, 220, 220, 220, 220, 18634, 25, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 71, 1377, 16794, 220, 220, 220, 220, 220, 220, 2523, 428, 1037, 6859, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 67, 1377, 39140, 12, 5143, 220, 220, 220, 17706, 257, 5894, 1057, 329, 19698, 2695, 1231, 17222, 2458, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 85, 1377, 19011, 577, 220, 220, 220, 4962, 319, 262, 15942, 577, 14257, 18931, 329, 262, 1430, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 87, 1377, 41049, 220, 220, 220, 17706, 257, 2107, 4296, 284, 2695, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13538, 4943, 198, 220, 220, 220, 25064, 13, 37023, 3419, 198, 198, 4299, 1388, 7, 853, 85, 2599, 198, 220, 220, 220, 37227, 26437, 3141, 1627, 1104, 329, 4441, 11, 34817, 11, 290, 13487, 17051, 27474, 9633, 37811, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 51, 3727, 46, 25, 3060, 284, 3141, 1370, 11244, 198, 220, 220, 220, 220, 220, 220, 220, 3586, 62, 3672, 796, 10148, 198, 220, 220, 220, 220, 220, 220, 220, 2496, 62, 6371, 796, 10148, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 4798, 10786, 1503, 37094, 220, 220, 220, 220, 220, 1058, 3256, 1822, 85, 8, 628, 220, 220, 220, 220, 220, 220, 220, 3689, 11, 26498, 796, 651, 8738, 13, 1136, 8738, 7, 853, 85, 11, 366, 71, 20306, 844, 64, 25, 84, 25, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14631, 16794, 2430, 19011, 577, 2430, 39140, 12, 5143, 2430, 41049, 8973, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 11, 366, 3849, 5275, 2430, 31438, 62, 3672, 28, 1600, 366, 16793, 62, 6371, 2625, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 4798, 10786, 3185, 51, 11053, 220, 220, 1058, 3256, 3689, 8, 628, 220, 220, 220, 220, 220, 220, 220, 329, 2172, 11, 1822, 287, 3689, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2172, 6624, 705, 12, 71, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 62, 16794, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2172, 6624, 705, 12, 85, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23991, 33692, 13, 19011, 577, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2172, 287, 19203, 12, 67, 3256, 705, 438, 39140, 12, 5143, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23991, 33692, 13, 39140, 62, 5143, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2172, 287, 19203, 12, 87, 3256, 705, 438, 41049, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23991, 33692, 13, 39140, 62, 5143, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 417, 361, 2172, 287, 19203, 12, 72, 3256, 705, 438, 3849, 5275, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 23991, 33692, 13, 3849, 5275, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 361, 2172, 287, 19203, 12, 64, 3256, 705, 438, 31438, 62, 3672, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 3586, 62, 3672, 796, 1822, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 361, 2172, 287, 19203, 12, 84, 3256, 705, 438, 6371, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 2496, 62, 6371, 796, 1822, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 4798, 10786, 5959, 33, 14058, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 3256, 23991, 33692, 13, 19011, 577, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 4798, 10786, 7707, 56, 32494, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 3256, 23991, 33692, 13, 39140, 62, 5143, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 4798, 10786, 41358, 10659, 9306, 220, 220, 220, 220, 1058, 3256, 23991, 33692, 13, 3849, 5275, 8, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 4798, 10786, 2969, 31484, 6234, 36751, 25, 3256, 3586, 62, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 4798, 10786, 51, 46095, 10289, 220, 220, 220, 220, 220, 1058, 3256, 2496, 62, 6371, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 4798, 10786, 2200, 5673, 1268, 2751, 220, 220, 220, 220, 220, 220, 1058, 3256, 26498, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 23991, 33692, 13, 41049, 393, 23991, 33692, 13, 39140, 62, 5143, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9706, 62, 14681, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 62, 16794, 3419, 628, 220, 220, 220, 2845, 7007, 13, 18453, 16922, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 2025, 4049, 5091, 2474, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 68, 8, 198, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 37023, 7, 16, 8, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1388, 7, 17597, 13, 853, 85, 58, 16, 25, 12962, 198 ]
2.065421
2,247
from django.contrib import admin from django.urls import path, include from .views import * urlpatterns = [ path('staff/all', StaffListView.as_view()), path('staff/<int:pk>', StaffRetrieveView.as_view()), path('staff/update/<int:pk>', StaffUpdateView.as_view()), path('staff/new', StaffCreateView.as_view()), path('staff/delete/<int:pk>', StaffRetrieveView.as_view()), path('room/all', RoomListView.as_view()), path('room/<int:pk>', RoomRetrieveView.as_view()), path('room/update/<int:pk>', RoomUpdateView.as_view()), path('room/new', RoomCreateView.as_view()), path('room/delete/<int:pk>', RoomRetrieveView.as_view()), path('guest/all', GuestListView.as_view()), path('guest/<int:pk>', GuestRetrieveView.as_view()), path('guest/update/<int:pk>', GuestUpdateView.as_view()), path('guest/new', GuestCreateView.as_view()), path('guest/delete/<int:pk>', GuestRetrieveView.as_view()), path('schedule/all', ScheduleListView.as_view()), path('schedule/<int:pk>', ScheduleRetrieveView.as_view()), path('schedule/update/<int:pk>', ScheduleUpdateView.as_view()), path('schedule/new', ScheduleCreateView.as_view()), path('schedule/delete/<int:pk>', ScheduleRetrieveView.as_view()), ]
[ 6738, 42625, 14208, 13, 3642, 822, 1330, 13169, 201, 198, 6738, 42625, 14208, 13, 6371, 82, 1330, 3108, 11, 2291, 201, 198, 6738, 764, 33571, 1330, 1635, 201, 198, 201, 198, 201, 198, 6371, 33279, 82, 796, 685, 201, 198, 220, 220, 220, 3108, 10786, 28120, 14, 439, 3256, 9983, 8053, 7680, 13, 292, 62, 1177, 3419, 828, 201, 198, 220, 220, 220, 3108, 10786, 28120, 14, 27, 600, 25, 79, 74, 29, 3256, 9983, 9781, 30227, 7680, 13, 292, 62, 1177, 3419, 828, 201, 198, 220, 220, 220, 3108, 10786, 28120, 14, 19119, 14, 27, 600, 25, 79, 74, 29, 3256, 9983, 10260, 7680, 13, 292, 62, 1177, 3419, 828, 201, 198, 220, 220, 220, 3108, 10786, 28120, 14, 3605, 3256, 9983, 16447, 7680, 13, 292, 62, 1177, 3419, 828, 201, 198, 220, 220, 220, 3108, 10786, 28120, 14, 33678, 14, 27, 600, 25, 79, 74, 29, 3256, 9983, 9781, 30227, 7680, 13, 292, 62, 1177, 3419, 828, 201, 198, 201, 198, 220, 220, 220, 3108, 10786, 3823, 14, 439, 3256, 10096, 8053, 7680, 13, 292, 62, 1177, 3419, 828, 201, 198, 220, 220, 220, 3108, 10786, 3823, 14, 27, 600, 25, 79, 74, 29, 3256, 10096, 9781, 30227, 7680, 13, 292, 62, 1177, 3419, 828, 201, 198, 220, 220, 220, 3108, 10786, 3823, 14, 19119, 14, 27, 600, 25, 79, 74, 29, 3256, 10096, 10260, 7680, 13, 292, 62, 1177, 3419, 828, 201, 198, 220, 220, 220, 3108, 10786, 3823, 14, 3605, 3256, 10096, 16447, 7680, 13, 292, 62, 1177, 3419, 828, 201, 198, 220, 220, 220, 3108, 10786, 3823, 14, 33678, 14, 27, 600, 25, 79, 74, 29, 3256, 10096, 9781, 30227, 7680, 13, 292, 62, 1177, 3419, 828, 201, 198, 201, 198, 220, 220, 220, 3108, 10786, 5162, 395, 14, 439, 3256, 22358, 8053, 7680, 13, 292, 62, 1177, 3419, 828, 201, 198, 220, 220, 220, 3108, 10786, 5162, 395, 14, 27, 600, 25, 79, 74, 29, 3256, 22358, 9781, 30227, 7680, 13, 292, 62, 1177, 3419, 828, 201, 198, 220, 220, 220, 3108, 10786, 5162, 395, 14, 19119, 14, 27, 600, 25, 79, 74, 29, 3256, 22358, 10260, 7680, 13, 292, 62, 1177, 3419, 828, 201, 198, 220, 220, 220, 3108, 10786, 5162, 395, 14, 3605, 3256, 22358, 16447, 7680, 13, 292, 62, 1177, 3419, 828, 201, 198, 220, 220, 220, 3108, 10786, 5162, 395, 14, 33678, 14, 27, 600, 25, 79, 74, 29, 3256, 22358, 9781, 30227, 7680, 13, 292, 62, 1177, 3419, 828, 201, 198, 201, 198, 220, 220, 220, 3108, 10786, 15952, 5950, 14, 439, 3256, 19281, 8053, 7680, 13, 292, 62, 1177, 3419, 828, 201, 198, 220, 220, 220, 3108, 10786, 15952, 5950, 14, 27, 600, 25, 79, 74, 29, 3256, 19281, 9781, 30227, 7680, 13, 292, 62, 1177, 3419, 828, 201, 198, 220, 220, 220, 3108, 10786, 15952, 5950, 14, 19119, 14, 27, 600, 25, 79, 74, 29, 3256, 19281, 10260, 7680, 13, 292, 62, 1177, 3419, 828, 201, 198, 220, 220, 220, 3108, 10786, 15952, 5950, 14, 3605, 3256, 19281, 16447, 7680, 13, 292, 62, 1177, 3419, 828, 201, 198, 220, 220, 220, 3108, 10786, 15952, 5950, 14, 33678, 14, 27, 600, 25, 79, 74, 29, 3256, 19281, 9781, 30227, 7680, 13, 292, 62, 1177, 3419, 828, 201, 198, 201, 198, 201, 198, 201, 198, 60 ]
2.363803
547
import torch.nn as nn from torchvision import models import torch.nn.functional as F import torch """ # https://zhuanlan.zhihu.com/p/93806755 class res50(torch.nn.Module): def __init__(self, num_classes): super(res50, self).__init__() resnet = resnet50(pretrained=True) self.backbone = torch.nn.Sequential( resnet.conv1, resnet.bn1, resnet.relu, resnet.layer1, resnet.layer2, resnet.layer3, resnet.layer4 ) self.pool = torch.nn.AdaptiveMaxPool2d(1) self.bnneck = nn.BatchNorm1d(2048) self.bnneck.bias.requires_grad_(False) # no shift self.classifier = nn.Linear(2048, num_classes, bias=False) def forward(self, x): x = self.backbone(x) x = self.pool(x) feat = x.view(x.shape[0], -1) feat = self.bnneck(feat) if not self.training: return nn.functional.normalize(feat, dim=1, p=2) x = self.classifier(feat) return x """
[ 11748, 28034, 13, 20471, 355, 299, 77, 201, 198, 6738, 28034, 10178, 1330, 4981, 201, 198, 11748, 28034, 13, 20471, 13, 45124, 355, 376, 201, 198, 11748, 28034, 201, 198, 201, 198, 201, 198, 37811, 201, 198, 2, 3740, 1378, 23548, 7258, 9620, 13, 23548, 48406, 13, 785, 14, 79, 14, 6052, 37988, 38172, 201, 198, 4871, 581, 1120, 7, 13165, 354, 13, 20471, 13, 26796, 2599, 201, 198, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 997, 62, 37724, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2208, 7, 411, 1120, 11, 2116, 737, 834, 15003, 834, 3419, 201, 198, 220, 220, 220, 220, 220, 220, 220, 581, 3262, 796, 581, 3262, 1120, 7, 5310, 13363, 28, 17821, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1891, 15992, 796, 28034, 13, 20471, 13, 44015, 1843, 7, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 581, 3262, 13, 42946, 16, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 581, 3262, 13, 9374, 16, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 581, 3262, 13, 260, 2290, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 581, 3262, 13, 29289, 16, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 581, 3262, 13, 29289, 17, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 581, 3262, 13, 29289, 18, 11, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 581, 3262, 13, 29289, 19, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7742, 796, 28034, 13, 20471, 13, 48003, 425, 11518, 27201, 17, 67, 7, 16, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9374, 27235, 796, 299, 77, 13, 33, 963, 35393, 16, 67, 7, 1238, 2780, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9374, 27235, 13, 65, 4448, 13, 47911, 62, 9744, 41052, 25101, 8, 220, 1303, 645, 6482, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 4871, 7483, 796, 299, 77, 13, 14993, 451, 7, 1238, 2780, 11, 997, 62, 37724, 11, 10690, 28, 25101, 8, 201, 198, 220, 220, 220, 825, 2651, 7, 944, 11, 2124, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 2116, 13, 1891, 15992, 7, 87, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 2116, 13, 7742, 7, 87, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2218, 796, 2124, 13, 1177, 7, 87, 13, 43358, 58, 15, 4357, 532, 16, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2218, 796, 2116, 13, 9374, 27235, 7, 27594, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2116, 13, 34409, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 299, 77, 13, 45124, 13, 11265, 1096, 7, 27594, 11, 5391, 28, 16, 11, 279, 28, 17, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 2116, 13, 4871, 7483, 7, 27594, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2124, 201, 198, 37811 ]
1.790447
649
v = [17, 92, 18, 33, 58, 7, 33, 42, 79, 37] print(find_max(v))
[ 201, 198, 85, 796, 685, 1558, 11, 10190, 11, 1248, 11, 4747, 11, 7618, 11, 767, 11, 4747, 11, 5433, 11, 9225, 11, 5214, 60, 201, 198, 4798, 7, 19796, 62, 9806, 7, 85, 4008, 201, 198 ]
1.810811
37
from flask_app.database.db import * from flask_app.database.models.User import *
[ 6738, 42903, 62, 1324, 13, 48806, 13, 9945, 1330, 1635, 198, 198, 6738, 42903, 62, 1324, 13, 48806, 13, 27530, 13, 12982, 1330, 1635, 198 ]
3.28
25
from __future__ import absolute_import, division, print_function import numpy as np import tensorflow as tf from tensorflow.python import keras from tensorflow_probability.python import distributions as tfd from tensorflow_probability.python import layers as tfl from tensorflow_probability.python.internal import \ distribution_util as dist_util from tensorflow_probability.python.layers import DistributionLambda from tensorflow_probability.python.layers.distribution_layer import _event_size from odin.backend import parse_activation from odin.backend.maths import softplus1 from odin.bay.distributions import NegativeBinomialDisp, ZeroInflated __all__ = [ 'PoissonLayer', 'NegativeBinomialDispLayer', 'NegativeBinomialLayer', 'ZINegativeBinomialDispLayer', 'ZINegativeBinomialLayer', 'ZIPoissonLayer', 'MultinomialLayer', 'DirichletMultinomialLayer', 'BinomialLayer', ] PoissonLayer = tfl.IndependentPoisson # =========================================================================== # Negative binomial # =========================================================================== class NegativeBinomialLayer(DistributionLambda): r"""An independent NegativeBinomial Keras layer. Arguments: event_shape: integer vector `Tensor` representing the shape of single draw from this distribution. count_activation: activation function return non-negative floating-point, i.e. the `total_count` of failures dispersion : {'full', 'share', 'single'} - 'full' creates a dispersion value for each individual data point, - 'share' creates a single vector of dispersion for all examples, and - 'single' uses a single value as dispersion for all data points. Note: the dispersion in this case is the probability of success. convert_to_tensor_fn: Python `callable` that takes a `tfd.Distribution` instance and returns a `tf.Tensor`-like object. Default value: `tfd.Distribution.sample`. validate_args: Python `bool`, default `False`. When `True` distribution parameters are checked for validity despite possibly degrading runtime performance. When `False` invalid inputs may silently render incorrect outputs. Default value: `False`. **kwargs: Additional keyword arguments passed to `tf.keras.Layer`. """ @staticmethod def new(params, event_shape=(), count_activation=tf.exp, validate_args=False, name="NegativeBinomialLayer", disp=None): r"""Create the distribution instance from a `params` vector.""" params = tf.convert_to_tensor(value=params, name='params') event_shape = dist_util.expand_to_vector( tf.convert_to_tensor(value=event_shape, name='event_shape', dtype=tf.int32), tensor_name='event_shape', ) output_shape = tf.concat( [tf.shape(input=params)[:-1], event_shape], axis=0, ) if disp is None: total_count, logits = tf.split(params, 2, axis=-1) logits = tf.reshape(logits, output_shape) else: total_count = params logits = disp total_count = tf.reshape(total_count, output_shape) total_count = count_activation(total_count) return tfd.Independent( tfd.NegativeBinomial(total_count=total_count, logits=logits, validate_args=validate_args), reinterpreted_batch_ndims=tf.size(input=event_shape), name=name, ) @staticmethod def params_size(event_shape=(), dispersion='full', name="NegativeBinomialLayer_params_size"): r"""The number of `params` needed to create a single distribution.""" if dispersion == 'full': return 2 * _event_size(event_shape, name=name) return _event_size(event_shape, name=name) class NegativeBinomialDispLayer(DistributionLambda): r"""An alternative parameterization of the NegativeBinomial Keras layer. The order of input parameters are: mean, dispersion Arguments: event_shape: integer vector `Tensor` representing the shape of single draw from this distribution. mean_activation : activation for the non-negative mean disp_activation : activation for the non-negative dispersion dispersion : {'full', 'share', 'single'} 'full' creates a dispersion value for each individual data point, 'share' creates a single dispersion vector of `event_shape` for all examples, and 'single' uses a single value as dispersion for all data points. convert_to_tensor_fn: Python `callable` that takes a `tfd.Distribution` instance and returns a `tf.Tensor`-like object. Default value: `tfd.Distribution.sample`. validate_args: Python `bool`, default `False`. When `True` distribution parameters are checked for validity despite possibly degrading runtime performance. When `False` invalid inputs may silently render incorrect outputs. Default value: `False`. **kwargs: Additional keyword arguments passed to `tf.keras.Layer`. """ @staticmethod def new(params, event_shape=(), mean_activation=tf.nn.softplus, disp_activation=softplus1, validate_args=False, name="NegativeBinomialDispLayer", disp=None): r""" Create the distribution instance from a `params` vector. """ params = tf.convert_to_tensor(value=params, name='params') event_shape = dist_util.expand_to_vector( tf.convert_to_tensor(value=event_shape, name='event_shape', dtype=tf.int32), tensor_name='event_shape', ) output_shape = tf.concat( [tf.shape(input=params)[:-1], event_shape], axis=0, ) if disp is None: loc, disp = tf.split(params, 2, axis=-1) disp = tf.reshape(disp, output_shape) else: loc = params loc = tf.reshape(loc, output_shape) loc = mean_activation(loc) disp = disp_activation(disp) return tfd.Independent( NegativeBinomialDisp(loc=loc, disp=disp, validate_args=validate_args), reinterpreted_batch_ndims=tf.size(input=event_shape), name=name, ) @staticmethod def params_size(event_shape=(), dispersion='full', name="NegativeBinomialDispLayer_params_size"): r"""The number of `params` needed to create a single distribution.""" if dispersion == 'full': return 2 * _event_size(event_shape, name=name) return _event_size(event_shape, name=name) # =========================================================================== # Zero inflated # =========================================================================== class ZIPoissonLayer(DistributionLambda): r"""A Independent zero-inflated Poisson keras layer """ @staticmethod def new(params, event_shape=(), activation=tf.identity, validate_args=False, name="ZIPoissonLayer"): """Create the distribution instance from a `params` vector.""" params = tf.convert_to_tensor(value=params, name='params') event_shape = dist_util.expand_to_vector( tf.convert_to_tensor(value=event_shape, name='event_shape', dtype=tf.int32), tensor_name='event_shape', ) output_shape = tf.concat( [tf.shape(input=params)[:-1], event_shape], axis=0, ) (log_rate_params, logits_params) = tf.split(params, 2, axis=-1) return tfd.Independent( ZeroInflated(count_distribution=tfd.Poisson( log_rate=activation(tf.reshape(log_rate_params, output_shape)), validate_args=validate_args), logits=tf.reshape(logits_params, output_shape), validate_args=validate_args), reinterpreted_batch_ndims=tf.size(input=event_shape), name=name, ) @staticmethod def params_size(event_shape=(), name="ZeroInflatedPoisson_params_size"): r"""The number of `params` needed to create a single distribution.""" return 2 * _event_size(event_shape, name=name) class ZINegativeBinomialLayer(DistributionLambda): r"""A Independent zero-inflated negative binomial keras layer Arguments: event_shape: integer vector `Tensor` representing the shape of single draw from this distribution. count_activation: activation function return non-negative floating-point, i.e. the `total_count` of failures dispersion, inflation : {'full', 'share', 'single'} 'full' creates a dispersion value for each individual data point, 'share' creates a single vector of dispersion for all examples, and 'single' uses a single value as dispersion for all data points. convert_to_tensor_fn: Python `callable` that takes a `tfd.Distribution` instance and returns a `tf.Tensor`-like object. Default value: `tfd.Distribution.sample`. validate_args: Python `bool`, default `False`. When `True` distribution parameters are checked for validity despite possibly degrading runtime performance. When `False` invalid inputs may silently render incorrect outputs. Default value: `False`. **kwargs: Additional keyword arguments passed to `tf.keras.Layer`. """ @staticmethod def new(params, event_shape=(), count_activation=tf.exp, validate_args=False, name="ZINegativeBinomialLayer", disp=None, rate=None): r"""Create the distribution instance from a `params` vector.""" params = tf.convert_to_tensor(value=params, name='params') event_shape = dist_util.expand_to_vector( tf.convert_to_tensor(value=event_shape, name='event_shape', dtype=tf.int32), tensor_name='event_shape', ) output_shape = tf.concat((tf.shape(input=params)[:-1], event_shape), axis=0) if disp is None: # full dispersion if rate is None: total_count, logits, rate = tf.split(params, 3, axis=-1) rate = tf.reshape(rate, output_shape) else: total_count, logits = tf.split(params, 2, axis=-1) logits = tf.reshape(logits, output_shape) else: # share dispersion if rate is None: total_count, rate = tf.split(params, 2, axis=-1) rate = tf.reshape(rate, output_shape) else: total_count = params logits = disp total_count = tf.reshape(total_count, output_shape) total_count = count_activation(total_count) nb = tfd.NegativeBinomial(total_count=total_count, logits=logits, validate_args=validate_args) zinb = ZeroInflated(count_distribution=nb, logits=rate, validate_args=validate_args) return tfd.Independent(zinb, reinterpreted_batch_ndims=tf.size(input=event_shape), name=name) @staticmethod def params_size(event_shape=(), dispersion='full', inflation='full', name="ZeroInflatedNegativeBinomial_params_size"): r"""The number of `params` needed to create a single distribution.""" size = _event_size(event_shape, name=name) total = 3 * size if dispersion != 'full': total -= size if inflation != 'full': total -= size return total class ZINegativeBinomialDispLayer(DistributionLambda): r"""A Independent zero-inflated negative binomial (alternative parameterization) keras layer. The order of input parameters are: mean, dispersion, dropout rate Arguments: event_shape: integer vector `Tensor` representing the shape of single draw from this distribution. mean_activation : activation for the non-negative mean disp_activation : activation for the non-negative dispersion dispersion, inflation : {'full', 'share', 'single'} 'full' creates a dispersion value for each individual data point, 'share' creates a single dispersion vector of `event_shape` for all examples, and 'single' uses a single value as dispersion for all data points. convert_to_tensor_fn: Python `callable` that takes a `tfd.Distribution` instance and returns a `tf.Tensor`-like object. Default value: `tfd.Distribution.sample`. validate_args: Python `bool`, default `False`. When `True` distribution parameters are checked for validity despite possibly degrading runtime performance. When `False` invalid inputs may silently render incorrect outputs. Default value: `False`. **kwargs: Additional keyword arguments passed to `tf.keras.Layer`. """ @staticmethod def new(params, event_shape=(), mean_activation=tf.nn.softplus, disp_activation=softplus1, validate_args=False, name="ZINegativeBinomialDispLayer", disp=None, rate=None): r"""Create the distribution instance from a `params` vector.""" params = tf.convert_to_tensor(value=params, name='params') event_shape = dist_util.expand_to_vector( tf.convert_to_tensor(value=event_shape, name='event_shape', dtype=tf.int32), tensor_name='event_shape', ) output_shape = tf.concat((tf.shape(input=params)[:-1], event_shape), axis=0) ### splitting the parameters if disp is None: # full dispersion if rate is None: loc, disp, rate = tf.split(params, 3, axis=-1) rate = tf.reshape(rate, output_shape) else: loc, disp = tf.split(params, 2, axis=-1) disp = tf.reshape(disp, output_shape) else: # share dispersion if rate is None: loc, rate = tf.split(params, 2, axis=-1) rate = tf.reshape(rate, output_shape) else: loc = params # as count value, do exp if necessary loc = tf.reshape(loc, output_shape) loc = mean_activation(loc) disp = disp_activation(disp) # create the distribution nb = NegativeBinomialDisp(loc=loc, disp=disp, validate_args=validate_args) zinb = ZeroInflated(count_distribution=nb, logits=rate, validate_args=validate_args) return tfd.Independent(zinb, reinterpreted_batch_ndims=tf.size(input=event_shape), name=name) @staticmethod def params_size(event_shape=(), dispersion='full', inflation='full', name="ZINegativeBinomialDisp_params_size"): r"""The number of `params` needed to create a single distribution.""" size = _event_size(event_shape, name=name) total = 3 * size if dispersion != 'full': total -= size if inflation != 'full': total -= size return total # =========================================================================== # Binomial Multinomial layer # =========================================================================== class MultinomialLayer(tfl.DistributionLambda): r""" Parameterization: - total_count : `[batch_size, 1]` - logits : `[batch_size, ndim]` - sample : `[batch_size, ndim]` with `sum(x, axis=1) = total_count` """ @staticmethod def new(params, event_shape=(), count_activation=tf.nn.softplus, validate_args=False, name='MultinomialLayer'): r"""Create the distribution instance from a `params` vector.""" params = tf.convert_to_tensor(value=params, name='params') count_activation = parse_activation(count_activation, 'tf') total_count = count_activation(params[..., 0]) logits = params[..., 1:] return tfd.Multinomial(total_count=total_count, logits=logits, validate_args=validate_args, name=name) @staticmethod def params_size(event_shape=(), name='MultinomialLayer_params_size'): r"""The number of `params` needed to create a single distribution.""" return _event_size(event_shape, name=name) + 1. class DirichletMultinomialLayer(tfl.DistributionLambda): r""" Dirichlet-Multinomial compound distribution. K=2 equal to Beta-Binomial distribution """ @staticmethod def new(params, event_shape=(), count_activation=tf.nn.softplus, concentration_activation=softplus1, clip_for_stable=True, validate_args=False, name='DirichletMultinomialLayer'): r"""Create the distribution instance from a `params` vector.""" params = tf.convert_to_tensor(value=params, name='params') count_activation = parse_activation(count_activation, 'tf') concentration_activation = parse_activation(concentration_activation, 'tf') total_count = count_activation(params[..., 0]) concentration = concentration_activation(params[..., 1:]) if clip_for_stable: concentration = tf.clip_by_value(concentration, 1e-3, 1e3) return tfd.DirichletMultinomial(total_count=total_count, concentration=concentration, validate_args=validate_args, name=name) @staticmethod def params_size(event_shape=(), name='DirichletMultinomialLayer_params_size'): r"""The number of `params` needed to create a single distribution.""" return _event_size(event_shape, name=name) + 1. class BinomialLayer(tfl.DistributionLambda): r""" Binomial distribution, each entry is a flipping of the coin K times ( parameterized by `total_count` """ @staticmethod def new(params, event_shape=(), count_activation=tf.nn.softplus, validate_args=False, name='BinomialLayer'): r"""Create the distribution instance from a `params` vector.""" count_activation = parse_activation(count_activation, 'tf') params = tf.convert_to_tensor(value=params, name='params') event_shape = dist_util.expand_to_vector( tf.convert_to_tensor(value=event_shape, name='event_shape', dtype=tf.int32), tensor_name='event_shape', ) output_shape = tf.concat((tf.shape(params)[:-1], event_shape), axis=0) total_count, logits = tf.split(params, 2, axis=-1) total_count = tf.reshape(total_count, output_shape) logits = tf.reshape(logits, output_shape) return tfd.Independent( tfd.Binomial(total_count=count_activation(total_count), logits=logits, validate_args=validate_args), reinterpreted_batch_ndims=tf.size(event_shape), name=name, ) @staticmethod def params_size(event_shape=(), name='BinomialLayer_params_size'): r"""The number of `params` needed to create a single distribution.""" return 2 * _event_size(event_shape, name=name)
[ 6738, 11593, 37443, 834, 1330, 4112, 62, 11748, 11, 7297, 11, 3601, 62, 8818, 198, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 11192, 273, 11125, 355, 48700, 198, 6738, 11192, 273, 11125, 13, 29412, 1330, 41927, 292, 198, 6738, 11192, 273, 11125, 62, 1676, 65, 1799, 13, 29412, 1330, 24570, 355, 256, 16344, 198, 6738, 11192, 273, 11125, 62, 1676, 65, 1799, 13, 29412, 1330, 11685, 355, 256, 2704, 198, 6738, 11192, 273, 11125, 62, 1676, 65, 1799, 13, 29412, 13, 32538, 1330, 3467, 198, 220, 220, 220, 6082, 62, 22602, 355, 1233, 62, 22602, 198, 6738, 11192, 273, 11125, 62, 1676, 65, 1799, 13, 29412, 13, 75, 6962, 1330, 27484, 43, 4131, 6814, 198, 6738, 11192, 273, 11125, 62, 1676, 65, 1799, 13, 29412, 13, 75, 6962, 13, 17080, 3890, 62, 29289, 1330, 4808, 15596, 62, 7857, 198, 198, 6738, 16298, 259, 13, 1891, 437, 1330, 21136, 62, 48545, 198, 6738, 16298, 259, 13, 1891, 437, 13, 11018, 82, 1330, 2705, 9541, 16, 198, 6738, 16298, 259, 13, 24406, 13, 17080, 2455, 507, 1330, 36183, 33, 259, 49070, 7279, 79, 11, 12169, 818, 2704, 515, 198, 198, 834, 439, 834, 796, 685, 198, 220, 220, 220, 705, 18833, 30927, 49925, 3256, 198, 220, 220, 220, 705, 32863, 876, 33, 259, 49070, 7279, 79, 49925, 3256, 198, 220, 220, 220, 705, 32863, 876, 33, 259, 49070, 49925, 3256, 198, 220, 220, 220, 705, 57, 1268, 1533, 876, 33, 259, 49070, 7279, 79, 49925, 3256, 198, 220, 220, 220, 705, 57, 1268, 1533, 876, 33, 259, 49070, 49925, 3256, 198, 220, 220, 220, 705, 57, 4061, 78, 30927, 49925, 3256, 198, 220, 220, 220, 705, 15205, 259, 49070, 49925, 3256, 198, 220, 220, 220, 705, 35277, 488, 1616, 15205, 259, 49070, 49925, 3256, 198, 220, 220, 220, 705, 33, 259, 49070, 49925, 3256, 198, 60, 198, 198, 18833, 30927, 49925, 796, 256, 2704, 13, 40566, 18833, 30927, 628, 198, 2, 38093, 2559, 855, 198, 2, 36183, 9874, 49070, 198, 2, 38093, 2559, 855, 628, 198, 4871, 36183, 33, 259, 49070, 49925, 7, 20344, 3890, 43, 4131, 6814, 2599, 198, 220, 374, 37811, 2025, 4795, 36183, 33, 259, 49070, 17337, 292, 7679, 13, 628, 220, 20559, 2886, 25, 198, 220, 220, 220, 1785, 62, 43358, 25, 18253, 15879, 4600, 51, 22854, 63, 10200, 262, 5485, 286, 2060, 198, 220, 220, 220, 220, 220, 3197, 422, 428, 6082, 13, 198, 220, 220, 220, 954, 62, 48545, 25, 14916, 2163, 1441, 1729, 12, 31591, 12462, 12, 4122, 11, 198, 220, 220, 220, 220, 220, 1312, 13, 68, 13, 262, 4600, 23350, 62, 9127, 63, 286, 15536, 198, 220, 220, 220, 4596, 6900, 1058, 1391, 6, 12853, 3256, 705, 20077, 3256, 705, 29762, 6, 92, 198, 220, 220, 220, 220, 220, 532, 705, 12853, 6, 8075, 257, 4596, 6900, 1988, 329, 1123, 1981, 1366, 966, 11, 198, 220, 220, 220, 220, 220, 532, 705, 20077, 6, 8075, 257, 2060, 15879, 286, 4596, 6900, 329, 477, 6096, 11, 290, 198, 220, 220, 220, 220, 220, 532, 705, 29762, 6, 3544, 257, 2060, 1988, 355, 4596, 6900, 329, 477, 1366, 2173, 13, 198, 220, 220, 220, 220, 220, 5740, 25, 262, 4596, 6900, 287, 428, 1339, 318, 262, 12867, 286, 1943, 13, 198, 220, 220, 220, 10385, 62, 1462, 62, 83, 22854, 62, 22184, 25, 11361, 4600, 13345, 540, 63, 326, 2753, 257, 4600, 83, 16344, 13, 20344, 3890, 63, 198, 220, 220, 220, 220, 220, 4554, 290, 5860, 257, 4600, 27110, 13, 51, 22854, 63, 12, 2339, 2134, 13, 198, 220, 220, 220, 220, 220, 15161, 1988, 25, 4600, 83, 16344, 13, 20344, 3890, 13, 39873, 44646, 198, 220, 220, 220, 26571, 62, 22046, 25, 11361, 4600, 30388, 47671, 4277, 4600, 25101, 44646, 1649, 4600, 17821, 63, 6082, 198, 220, 220, 220, 220, 220, 10007, 389, 10667, 329, 19648, 3805, 5457, 40354, 19124, 198, 220, 220, 220, 220, 220, 2854, 13, 1649, 4600, 25101, 63, 12515, 17311, 743, 24595, 8543, 11491, 198, 220, 220, 220, 220, 220, 23862, 13, 198, 220, 220, 220, 220, 220, 15161, 1988, 25, 4600, 25101, 44646, 198, 220, 220, 220, 12429, 46265, 22046, 25, 15891, 21179, 7159, 3804, 284, 4600, 27110, 13, 6122, 292, 13, 49925, 44646, 628, 220, 37227, 628, 220, 2488, 12708, 24396, 198, 220, 825, 649, 7, 37266, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1785, 62, 43358, 16193, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 954, 62, 48545, 28, 27110, 13, 11201, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26571, 62, 22046, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 2625, 32863, 876, 33, 259, 49070, 49925, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4596, 28, 14202, 2599, 198, 220, 220, 220, 374, 37811, 16447, 262, 6082, 4554, 422, 257, 4600, 37266, 63, 15879, 526, 15931, 198, 220, 220, 220, 42287, 796, 48700, 13, 1102, 1851, 62, 1462, 62, 83, 22854, 7, 8367, 28, 37266, 11, 1438, 11639, 37266, 11537, 198, 220, 220, 220, 1785, 62, 43358, 796, 1233, 62, 22602, 13, 11201, 392, 62, 1462, 62, 31364, 7, 198, 220, 220, 220, 220, 220, 220, 220, 48700, 13, 1102, 1851, 62, 1462, 62, 83, 22854, 7, 8367, 28, 15596, 62, 43358, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 11639, 15596, 62, 43358, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 4906, 28, 27110, 13, 600, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 11192, 273, 62, 3672, 11639, 15596, 62, 43358, 3256, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 5072, 62, 43358, 796, 48700, 13, 1102, 9246, 7, 198, 220, 220, 220, 220, 220, 220, 220, 685, 27110, 13, 43358, 7, 15414, 28, 37266, 38381, 21912, 16, 4357, 1785, 62, 43358, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 16488, 28, 15, 11, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 611, 4596, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 2472, 62, 9127, 11, 2604, 896, 796, 48700, 13, 35312, 7, 37266, 11, 362, 11, 16488, 10779, 16, 8, 198, 220, 220, 220, 220, 220, 2604, 896, 796, 48700, 13, 3447, 1758, 7, 6404, 896, 11, 5072, 62, 43358, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 2472, 62, 9127, 796, 42287, 198, 220, 220, 220, 220, 220, 2604, 896, 796, 4596, 198, 220, 220, 220, 2472, 62, 9127, 796, 48700, 13, 3447, 1758, 7, 23350, 62, 9127, 11, 5072, 62, 43358, 8, 198, 220, 220, 220, 2472, 62, 9127, 796, 954, 62, 48545, 7, 23350, 62, 9127, 8, 198, 220, 220, 220, 1441, 256, 16344, 13, 40566, 7, 198, 220, 220, 220, 220, 220, 220, 220, 256, 16344, 13, 32863, 876, 33, 259, 49070, 7, 23350, 62, 9127, 28, 23350, 62, 9127, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 896, 28, 6404, 896, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26571, 62, 22046, 28, 12102, 378, 62, 22046, 828, 198, 220, 220, 220, 220, 220, 220, 220, 302, 27381, 276, 62, 43501, 62, 358, 12078, 28, 27110, 13, 7857, 7, 15414, 28, 15596, 62, 43358, 828, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 28, 3672, 11, 198, 220, 220, 220, 1267, 628, 220, 2488, 12708, 24396, 198, 220, 825, 42287, 62, 7857, 7, 15596, 62, 43358, 16193, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4596, 6900, 11639, 12853, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 2625, 32863, 876, 33, 259, 49070, 49925, 62, 37266, 62, 7857, 1, 2599, 198, 220, 220, 220, 374, 37811, 464, 1271, 286, 4600, 37266, 63, 2622, 284, 2251, 257, 2060, 6082, 526, 15931, 198, 220, 220, 220, 611, 4596, 6900, 6624, 705, 12853, 10354, 198, 220, 220, 220, 220, 220, 1441, 362, 1635, 4808, 15596, 62, 7857, 7, 15596, 62, 43358, 11, 1438, 28, 3672, 8, 198, 220, 220, 220, 1441, 4808, 15596, 62, 7857, 7, 15596, 62, 43358, 11, 1438, 28, 3672, 8, 628, 198, 4871, 36183, 33, 259, 49070, 7279, 79, 49925, 7, 20344, 3890, 43, 4131, 6814, 2599, 198, 220, 374, 37811, 2025, 5559, 11507, 1634, 286, 262, 36183, 33, 259, 49070, 17337, 292, 7679, 13, 628, 220, 383, 1502, 286, 5128, 10007, 389, 25, 1612, 11, 4596, 6900, 628, 220, 20559, 2886, 25, 198, 220, 220, 220, 1785, 62, 43358, 25, 18253, 15879, 4600, 51, 22854, 63, 10200, 262, 5485, 286, 2060, 198, 220, 220, 220, 220, 220, 3197, 422, 428, 6082, 13, 198, 220, 220, 220, 1612, 62, 48545, 1058, 14916, 329, 262, 1729, 12, 31591, 1612, 198, 220, 220, 220, 4596, 62, 48545, 1058, 14916, 329, 262, 1729, 12, 31591, 4596, 6900, 198, 220, 220, 220, 4596, 6900, 1058, 1391, 6, 12853, 3256, 705, 20077, 3256, 705, 29762, 6, 92, 198, 220, 220, 220, 220, 220, 705, 12853, 6, 8075, 257, 4596, 6900, 1988, 329, 1123, 1981, 1366, 966, 11, 198, 220, 220, 220, 220, 220, 705, 20077, 6, 8075, 257, 2060, 4596, 6900, 15879, 286, 4600, 15596, 62, 43358, 63, 329, 477, 6096, 11, 198, 220, 220, 220, 220, 220, 290, 705, 29762, 6, 3544, 257, 2060, 1988, 355, 4596, 6900, 329, 477, 1366, 2173, 13, 198, 220, 220, 220, 10385, 62, 1462, 62, 83, 22854, 62, 22184, 25, 11361, 4600, 13345, 540, 63, 326, 2753, 257, 4600, 83, 16344, 13, 20344, 3890, 63, 198, 220, 220, 220, 220, 220, 4554, 290, 5860, 257, 4600, 27110, 13, 51, 22854, 63, 12, 2339, 2134, 13, 198, 220, 220, 220, 220, 220, 15161, 1988, 25, 4600, 83, 16344, 13, 20344, 3890, 13, 39873, 44646, 198, 220, 220, 220, 26571, 62, 22046, 25, 11361, 4600, 30388, 47671, 4277, 4600, 25101, 44646, 1649, 4600, 17821, 63, 6082, 198, 220, 220, 220, 220, 220, 10007, 389, 10667, 329, 19648, 3805, 5457, 40354, 19124, 198, 220, 220, 220, 220, 220, 2854, 13, 1649, 4600, 25101, 63, 12515, 17311, 743, 24595, 8543, 11491, 198, 220, 220, 220, 220, 220, 23862, 13, 198, 220, 220, 220, 220, 220, 15161, 1988, 25, 4600, 25101, 44646, 198, 220, 220, 220, 12429, 46265, 22046, 25, 15891, 21179, 7159, 3804, 284, 4600, 27110, 13, 6122, 292, 13, 49925, 44646, 628, 220, 37227, 628, 220, 2488, 12708, 24396, 198, 220, 825, 649, 7, 37266, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1785, 62, 43358, 16193, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1612, 62, 48545, 28, 27110, 13, 20471, 13, 4215, 9541, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4596, 62, 48545, 28, 4215, 9541, 16, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26571, 62, 22046, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 2625, 32863, 876, 33, 259, 49070, 7279, 79, 49925, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4596, 28, 14202, 2599, 198, 220, 220, 220, 374, 37811, 13610, 262, 6082, 4554, 422, 257, 4600, 37266, 63, 15879, 13, 37227, 198, 220, 220, 220, 42287, 796, 48700, 13, 1102, 1851, 62, 1462, 62, 83, 22854, 7, 8367, 28, 37266, 11, 1438, 11639, 37266, 11537, 198, 220, 220, 220, 1785, 62, 43358, 796, 1233, 62, 22602, 13, 11201, 392, 62, 1462, 62, 31364, 7, 198, 220, 220, 220, 220, 220, 220, 220, 48700, 13, 1102, 1851, 62, 1462, 62, 83, 22854, 7, 8367, 28, 15596, 62, 43358, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 11639, 15596, 62, 43358, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 4906, 28, 27110, 13, 600, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 11192, 273, 62, 3672, 11639, 15596, 62, 43358, 3256, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 5072, 62, 43358, 796, 48700, 13, 1102, 9246, 7, 198, 220, 220, 220, 220, 220, 220, 220, 685, 27110, 13, 43358, 7, 15414, 28, 37266, 38381, 21912, 16, 4357, 1785, 62, 43358, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 16488, 28, 15, 11, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 611, 4596, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 1179, 11, 4596, 796, 48700, 13, 35312, 7, 37266, 11, 362, 11, 16488, 10779, 16, 8, 198, 220, 220, 220, 220, 220, 4596, 796, 48700, 13, 3447, 1758, 7, 6381, 79, 11, 5072, 62, 43358, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 1179, 796, 42287, 198, 220, 220, 220, 1179, 796, 48700, 13, 3447, 1758, 7, 17946, 11, 5072, 62, 43358, 8, 198, 220, 220, 220, 1179, 796, 1612, 62, 48545, 7, 17946, 8, 198, 220, 220, 220, 4596, 796, 4596, 62, 48545, 7, 6381, 79, 8, 198, 220, 220, 220, 1441, 256, 16344, 13, 40566, 7, 198, 220, 220, 220, 220, 220, 220, 220, 36183, 33, 259, 49070, 7279, 79, 7, 17946, 28, 17946, 11, 4596, 28, 6381, 79, 11, 26571, 62, 22046, 28, 12102, 378, 62, 22046, 828, 198, 220, 220, 220, 220, 220, 220, 220, 302, 27381, 276, 62, 43501, 62, 358, 12078, 28, 27110, 13, 7857, 7, 15414, 28, 15596, 62, 43358, 828, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 28, 3672, 11, 198, 220, 220, 220, 1267, 628, 220, 2488, 12708, 24396, 198, 220, 825, 42287, 62, 7857, 7, 15596, 62, 43358, 16193, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4596, 6900, 11639, 12853, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 2625, 32863, 876, 33, 259, 49070, 7279, 79, 49925, 62, 37266, 62, 7857, 1, 2599, 198, 220, 220, 220, 374, 37811, 464, 1271, 286, 4600, 37266, 63, 2622, 284, 2251, 257, 2060, 6082, 526, 15931, 198, 220, 220, 220, 611, 4596, 6900, 6624, 705, 12853, 10354, 198, 220, 220, 220, 220, 220, 1441, 362, 1635, 4808, 15596, 62, 7857, 7, 15596, 62, 43358, 11, 1438, 28, 3672, 8, 198, 220, 220, 220, 1441, 4808, 15596, 62, 7857, 7, 15596, 62, 43358, 11, 1438, 28, 3672, 8, 628, 198, 2, 38093, 2559, 855, 198, 2, 12169, 32387, 198, 2, 38093, 2559, 855, 198, 4871, 42977, 78, 30927, 49925, 7, 20344, 3890, 43, 4131, 6814, 2599, 198, 220, 374, 37811, 32, 13362, 6632, 12, 259, 2704, 515, 7695, 30927, 41927, 292, 7679, 37227, 628, 220, 2488, 12708, 24396, 198, 220, 825, 649, 7, 37266, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1785, 62, 43358, 16193, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14916, 28, 27110, 13, 738, 414, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26571, 62, 22046, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 2625, 57, 4061, 78, 30927, 49925, 1, 2599, 198, 220, 220, 220, 37227, 16447, 262, 6082, 4554, 422, 257, 4600, 37266, 63, 15879, 526, 15931, 198, 220, 220, 220, 42287, 796, 48700, 13, 1102, 1851, 62, 1462, 62, 83, 22854, 7, 8367, 28, 37266, 11, 1438, 11639, 37266, 11537, 198, 220, 220, 220, 1785, 62, 43358, 796, 1233, 62, 22602, 13, 11201, 392, 62, 1462, 62, 31364, 7, 198, 220, 220, 220, 220, 220, 220, 220, 48700, 13, 1102, 1851, 62, 1462, 62, 83, 22854, 7, 8367, 28, 15596, 62, 43358, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 11639, 15596, 62, 43358, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 4906, 28, 27110, 13, 600, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 11192, 273, 62, 3672, 11639, 15596, 62, 43358, 3256, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 5072, 62, 43358, 796, 48700, 13, 1102, 9246, 7, 198, 220, 220, 220, 220, 220, 220, 220, 685, 27110, 13, 43358, 7, 15414, 28, 37266, 38381, 21912, 16, 4357, 1785, 62, 43358, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 16488, 28, 15, 11, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 357, 6404, 62, 4873, 62, 37266, 11, 2604, 896, 62, 37266, 8, 796, 48700, 13, 35312, 7, 37266, 11, 362, 11, 16488, 10779, 16, 8, 198, 220, 220, 220, 1441, 256, 16344, 13, 40566, 7, 198, 220, 220, 220, 220, 220, 220, 220, 12169, 818, 2704, 515, 7, 9127, 62, 17080, 3890, 28, 83, 16344, 13, 18833, 30927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 62, 4873, 28, 48545, 7, 27110, 13, 3447, 1758, 7, 6404, 62, 4873, 62, 37266, 11, 5072, 62, 43358, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26571, 62, 22046, 28, 12102, 378, 62, 22046, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 896, 28, 27110, 13, 3447, 1758, 7, 6404, 896, 62, 37266, 11, 5072, 62, 43358, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26571, 62, 22046, 28, 12102, 378, 62, 22046, 828, 198, 220, 220, 220, 220, 220, 220, 220, 302, 27381, 276, 62, 43501, 62, 358, 12078, 28, 27110, 13, 7857, 7, 15414, 28, 15596, 62, 43358, 828, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 28, 3672, 11, 198, 220, 220, 220, 1267, 628, 220, 2488, 12708, 24396, 198, 220, 825, 42287, 62, 7857, 7, 15596, 62, 43358, 16193, 828, 1438, 2625, 28667, 818, 2704, 515, 18833, 30927, 62, 37266, 62, 7857, 1, 2599, 198, 220, 220, 220, 374, 37811, 464, 1271, 286, 4600, 37266, 63, 2622, 284, 2251, 257, 2060, 6082, 526, 15931, 198, 220, 220, 220, 1441, 362, 1635, 4808, 15596, 62, 7857, 7, 15596, 62, 43358, 11, 1438, 28, 3672, 8, 628, 198, 4871, 1168, 1268, 1533, 876, 33, 259, 49070, 49925, 7, 20344, 3890, 43, 4131, 6814, 2599, 198, 220, 374, 37811, 32, 13362, 6632, 12, 259, 2704, 515, 4633, 9874, 49070, 41927, 292, 7679, 628, 220, 20559, 2886, 25, 198, 220, 220, 220, 1785, 62, 43358, 25, 18253, 15879, 4600, 51, 22854, 63, 10200, 262, 5485, 286, 2060, 198, 220, 220, 220, 220, 220, 3197, 422, 428, 6082, 13, 198, 220, 220, 220, 954, 62, 48545, 25, 14916, 2163, 1441, 1729, 12, 31591, 12462, 12, 4122, 11, 198, 220, 220, 220, 220, 220, 1312, 13, 68, 13, 262, 4600, 23350, 62, 9127, 63, 286, 15536, 198, 220, 220, 220, 4596, 6900, 11, 10610, 1058, 1391, 6, 12853, 3256, 705, 20077, 3256, 705, 29762, 6, 92, 198, 220, 220, 220, 220, 220, 705, 12853, 6, 8075, 257, 4596, 6900, 1988, 329, 1123, 1981, 1366, 966, 11, 198, 220, 220, 220, 220, 220, 705, 20077, 6, 8075, 257, 2060, 15879, 286, 4596, 6900, 329, 477, 6096, 11, 290, 198, 220, 220, 220, 220, 220, 705, 29762, 6, 3544, 257, 2060, 1988, 355, 4596, 6900, 329, 477, 1366, 2173, 13, 198, 220, 220, 220, 10385, 62, 1462, 62, 83, 22854, 62, 22184, 25, 11361, 4600, 13345, 540, 63, 326, 2753, 257, 4600, 83, 16344, 13, 20344, 3890, 63, 198, 220, 220, 220, 220, 220, 4554, 290, 5860, 257, 4600, 27110, 13, 51, 22854, 63, 12, 2339, 2134, 13, 198, 220, 220, 220, 220, 220, 15161, 1988, 25, 4600, 83, 16344, 13, 20344, 3890, 13, 39873, 44646, 198, 220, 220, 220, 26571, 62, 22046, 25, 11361, 4600, 30388, 47671, 4277, 4600, 25101, 44646, 1649, 4600, 17821, 63, 6082, 198, 220, 220, 220, 220, 220, 10007, 389, 10667, 329, 19648, 3805, 5457, 40354, 19124, 198, 220, 220, 220, 220, 220, 2854, 13, 1649, 4600, 25101, 63, 12515, 17311, 743, 24595, 8543, 11491, 198, 220, 220, 220, 220, 220, 23862, 13, 198, 220, 220, 220, 220, 220, 15161, 1988, 25, 4600, 25101, 44646, 198, 220, 220, 220, 12429, 46265, 22046, 25, 15891, 21179, 7159, 3804, 284, 4600, 27110, 13, 6122, 292, 13, 49925, 44646, 628, 220, 37227, 628, 220, 2488, 12708, 24396, 198, 220, 825, 649, 7, 37266, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1785, 62, 43358, 16193, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 954, 62, 48545, 28, 27110, 13, 11201, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26571, 62, 22046, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 2625, 57, 1268, 1533, 876, 33, 259, 49070, 49925, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4596, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2494, 28, 14202, 2599, 198, 220, 220, 220, 374, 37811, 16447, 262, 6082, 4554, 422, 257, 4600, 37266, 63, 15879, 526, 15931, 198, 220, 220, 220, 42287, 796, 48700, 13, 1102, 1851, 62, 1462, 62, 83, 22854, 7, 8367, 28, 37266, 11, 1438, 11639, 37266, 11537, 198, 220, 220, 220, 1785, 62, 43358, 796, 1233, 62, 22602, 13, 11201, 392, 62, 1462, 62, 31364, 7, 198, 220, 220, 220, 220, 220, 220, 220, 48700, 13, 1102, 1851, 62, 1462, 62, 83, 22854, 7, 8367, 28, 15596, 62, 43358, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 11639, 15596, 62, 43358, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 4906, 28, 27110, 13, 600, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 11192, 273, 62, 3672, 11639, 15596, 62, 43358, 3256, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 5072, 62, 43358, 796, 48700, 13, 1102, 9246, 19510, 27110, 13, 43358, 7, 15414, 28, 37266, 38381, 21912, 16, 4357, 1785, 62, 43358, 828, 16488, 28, 15, 8, 198, 220, 220, 220, 611, 4596, 318, 6045, 25, 220, 1303, 1336, 4596, 6900, 198, 220, 220, 220, 220, 220, 611, 2494, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2472, 62, 9127, 11, 2604, 896, 11, 2494, 796, 48700, 13, 35312, 7, 37266, 11, 513, 11, 16488, 10779, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2494, 796, 48700, 13, 3447, 1758, 7, 4873, 11, 5072, 62, 43358, 8, 198, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2472, 62, 9127, 11, 2604, 896, 796, 48700, 13, 35312, 7, 37266, 11, 362, 11, 16488, 10779, 16, 8, 198, 220, 220, 220, 220, 220, 2604, 896, 796, 48700, 13, 3447, 1758, 7, 6404, 896, 11, 5072, 62, 43358, 8, 198, 220, 220, 220, 2073, 25, 220, 1303, 2648, 4596, 6900, 198, 220, 220, 220, 220, 220, 611, 2494, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2472, 62, 9127, 11, 2494, 796, 48700, 13, 35312, 7, 37266, 11, 362, 11, 16488, 10779, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2494, 796, 48700, 13, 3447, 1758, 7, 4873, 11, 5072, 62, 43358, 8, 198, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2472, 62, 9127, 796, 42287, 198, 220, 220, 220, 220, 220, 2604, 896, 796, 4596, 198, 220, 220, 220, 2472, 62, 9127, 796, 48700, 13, 3447, 1758, 7, 23350, 62, 9127, 11, 5072, 62, 43358, 8, 198, 220, 220, 220, 2472, 62, 9127, 796, 954, 62, 48545, 7, 23350, 62, 9127, 8, 198, 220, 220, 220, 299, 65, 796, 256, 16344, 13, 32863, 876, 33, 259, 49070, 7, 23350, 62, 9127, 28, 23350, 62, 9127, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 896, 28, 6404, 896, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26571, 62, 22046, 28, 12102, 378, 62, 22046, 8, 198, 220, 220, 220, 1976, 259, 65, 796, 12169, 818, 2704, 515, 7, 9127, 62, 17080, 3890, 28, 46803, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 896, 28, 4873, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26571, 62, 22046, 28, 12102, 378, 62, 22046, 8, 198, 220, 220, 220, 1441, 256, 16344, 13, 40566, 7, 42140, 65, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 302, 27381, 276, 62, 43501, 62, 358, 12078, 28, 27110, 13, 7857, 7, 15414, 28, 15596, 62, 43358, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 28, 3672, 8, 628, 220, 2488, 12708, 24396, 198, 220, 825, 42287, 62, 7857, 7, 15596, 62, 43358, 16193, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4596, 6900, 11639, 12853, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10610, 11639, 12853, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 2625, 28667, 818, 2704, 515, 32863, 876, 33, 259, 49070, 62, 37266, 62, 7857, 1, 2599, 198, 220, 220, 220, 374, 37811, 464, 1271, 286, 4600, 37266, 63, 2622, 284, 2251, 257, 2060, 6082, 526, 15931, 198, 220, 220, 220, 2546, 796, 4808, 15596, 62, 7857, 7, 15596, 62, 43358, 11, 1438, 28, 3672, 8, 198, 220, 220, 220, 2472, 796, 513, 1635, 2546, 198, 220, 220, 220, 611, 4596, 6900, 14512, 705, 12853, 10354, 198, 220, 220, 220, 220, 220, 2472, 48185, 2546, 198, 220, 220, 220, 611, 10610, 14512, 705, 12853, 10354, 198, 220, 220, 220, 220, 220, 2472, 48185, 2546, 198, 220, 220, 220, 1441, 2472, 628, 198, 4871, 1168, 1268, 1533, 876, 33, 259, 49070, 7279, 79, 49925, 7, 20344, 3890, 43, 4131, 6814, 2599, 198, 220, 374, 37811, 32, 13362, 6632, 12, 259, 2704, 515, 4633, 9874, 49070, 357, 33645, 876, 198, 220, 11507, 1634, 8, 41927, 292, 7679, 13, 628, 220, 383, 1502, 286, 5128, 10007, 389, 25, 1612, 11, 4596, 6900, 11, 4268, 448, 2494, 628, 220, 20559, 2886, 25, 198, 220, 220, 220, 1785, 62, 43358, 25, 18253, 15879, 4600, 51, 22854, 63, 10200, 262, 5485, 286, 2060, 198, 220, 220, 220, 220, 220, 3197, 422, 428, 6082, 13, 198, 220, 220, 220, 1612, 62, 48545, 1058, 14916, 329, 262, 1729, 12, 31591, 1612, 198, 220, 220, 220, 4596, 62, 48545, 1058, 14916, 329, 262, 1729, 12, 31591, 4596, 6900, 198, 220, 220, 220, 4596, 6900, 11, 10610, 1058, 1391, 6, 12853, 3256, 705, 20077, 3256, 705, 29762, 6, 92, 198, 220, 220, 220, 220, 220, 705, 12853, 6, 8075, 257, 4596, 6900, 1988, 329, 1123, 1981, 1366, 966, 11, 198, 220, 220, 220, 220, 220, 705, 20077, 6, 8075, 257, 2060, 4596, 6900, 15879, 286, 4600, 15596, 62, 43358, 63, 329, 477, 6096, 11, 198, 220, 220, 220, 220, 220, 290, 705, 29762, 6, 3544, 257, 2060, 1988, 355, 4596, 6900, 329, 477, 1366, 2173, 13, 198, 220, 220, 220, 10385, 62, 1462, 62, 83, 22854, 62, 22184, 25, 11361, 4600, 13345, 540, 63, 326, 2753, 257, 4600, 83, 16344, 13, 20344, 3890, 63, 198, 220, 220, 220, 220, 220, 4554, 290, 5860, 257, 4600, 27110, 13, 51, 22854, 63, 12, 2339, 2134, 13, 198, 220, 220, 220, 220, 220, 15161, 1988, 25, 4600, 83, 16344, 13, 20344, 3890, 13, 39873, 44646, 198, 220, 220, 220, 26571, 62, 22046, 25, 11361, 4600, 30388, 47671, 4277, 4600, 25101, 44646, 1649, 4600, 17821, 63, 6082, 198, 220, 220, 220, 220, 220, 10007, 389, 10667, 329, 19648, 3805, 5457, 40354, 19124, 198, 220, 220, 220, 220, 220, 2854, 13, 1649, 4600, 25101, 63, 12515, 17311, 743, 24595, 8543, 11491, 198, 220, 220, 220, 220, 220, 23862, 13, 198, 220, 220, 220, 220, 220, 15161, 1988, 25, 4600, 25101, 44646, 198, 220, 220, 220, 12429, 46265, 22046, 25, 15891, 21179, 7159, 3804, 284, 4600, 27110, 13, 6122, 292, 13, 49925, 44646, 198, 220, 37227, 628, 220, 2488, 12708, 24396, 198, 220, 825, 649, 7, 37266, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1785, 62, 43358, 16193, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1612, 62, 48545, 28, 27110, 13, 20471, 13, 4215, 9541, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4596, 62, 48545, 28, 4215, 9541, 16, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26571, 62, 22046, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 2625, 57, 1268, 1533, 876, 33, 259, 49070, 7279, 79, 49925, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4596, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2494, 28, 14202, 2599, 198, 220, 220, 220, 374, 37811, 16447, 262, 6082, 4554, 422, 257, 4600, 37266, 63, 15879, 526, 15931, 198, 220, 220, 220, 42287, 796, 48700, 13, 1102, 1851, 62, 1462, 62, 83, 22854, 7, 8367, 28, 37266, 11, 1438, 11639, 37266, 11537, 198, 220, 220, 220, 1785, 62, 43358, 796, 1233, 62, 22602, 13, 11201, 392, 62, 1462, 62, 31364, 7, 198, 220, 220, 220, 220, 220, 220, 220, 48700, 13, 1102, 1851, 62, 1462, 62, 83, 22854, 7, 8367, 28, 15596, 62, 43358, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 11639, 15596, 62, 43358, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 4906, 28, 27110, 13, 600, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 11192, 273, 62, 3672, 11639, 15596, 62, 43358, 3256, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 5072, 62, 43358, 796, 48700, 13, 1102, 9246, 19510, 27110, 13, 43358, 7, 15414, 28, 37266, 38381, 21912, 16, 4357, 1785, 62, 43358, 828, 16488, 28, 15, 8, 198, 220, 220, 220, 44386, 26021, 262, 10007, 198, 220, 220, 220, 611, 4596, 318, 6045, 25, 220, 1303, 1336, 4596, 6900, 198, 220, 220, 220, 220, 220, 611, 2494, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1179, 11, 4596, 11, 2494, 796, 48700, 13, 35312, 7, 37266, 11, 513, 11, 16488, 10779, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2494, 796, 48700, 13, 3447, 1758, 7, 4873, 11, 5072, 62, 43358, 8, 198, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1179, 11, 4596, 796, 48700, 13, 35312, 7, 37266, 11, 362, 11, 16488, 10779, 16, 8, 198, 220, 220, 220, 220, 220, 4596, 796, 48700, 13, 3447, 1758, 7, 6381, 79, 11, 5072, 62, 43358, 8, 198, 220, 220, 220, 2073, 25, 220, 1303, 2648, 4596, 6900, 198, 220, 220, 220, 220, 220, 611, 2494, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1179, 11, 2494, 796, 48700, 13, 35312, 7, 37266, 11, 362, 11, 16488, 10779, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2494, 796, 48700, 13, 3447, 1758, 7, 4873, 11, 5072, 62, 43358, 8, 198, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1179, 796, 42287, 198, 220, 220, 220, 1303, 355, 954, 1988, 11, 466, 1033, 611, 3306, 198, 220, 220, 220, 1179, 796, 48700, 13, 3447, 1758, 7, 17946, 11, 5072, 62, 43358, 8, 198, 220, 220, 220, 1179, 796, 1612, 62, 48545, 7, 17946, 8, 198, 220, 220, 220, 4596, 796, 4596, 62, 48545, 7, 6381, 79, 8, 198, 220, 220, 220, 1303, 2251, 262, 6082, 198, 220, 220, 220, 299, 65, 796, 36183, 33, 259, 49070, 7279, 79, 7, 17946, 28, 17946, 11, 4596, 28, 6381, 79, 11, 26571, 62, 22046, 28, 12102, 378, 62, 22046, 8, 198, 220, 220, 220, 1976, 259, 65, 796, 12169, 818, 2704, 515, 7, 9127, 62, 17080, 3890, 28, 46803, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 896, 28, 4873, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26571, 62, 22046, 28, 12102, 378, 62, 22046, 8, 198, 220, 220, 220, 1441, 256, 16344, 13, 40566, 7, 42140, 65, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 302, 27381, 276, 62, 43501, 62, 358, 12078, 28, 27110, 13, 7857, 7, 15414, 28, 15596, 62, 43358, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 28, 3672, 8, 628, 220, 2488, 12708, 24396, 198, 220, 825, 42287, 62, 7857, 7, 15596, 62, 43358, 16193, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4596, 6900, 11639, 12853, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10610, 11639, 12853, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 2625, 57, 1268, 1533, 876, 33, 259, 49070, 7279, 79, 62, 37266, 62, 7857, 1, 2599, 198, 220, 220, 220, 374, 37811, 464, 1271, 286, 4600, 37266, 63, 2622, 284, 2251, 257, 2060, 6082, 526, 15931, 198, 220, 220, 220, 2546, 796, 4808, 15596, 62, 7857, 7, 15596, 62, 43358, 11, 1438, 28, 3672, 8, 198, 220, 220, 220, 2472, 796, 513, 1635, 2546, 198, 220, 220, 220, 611, 4596, 6900, 14512, 705, 12853, 10354, 198, 220, 220, 220, 220, 220, 2472, 48185, 2546, 198, 220, 220, 220, 611, 10610, 14512, 705, 12853, 10354, 198, 220, 220, 220, 220, 220, 2472, 48185, 2546, 198, 220, 220, 220, 1441, 2472, 628, 198, 2, 38093, 2559, 855, 198, 2, 20828, 49070, 7854, 259, 49070, 7679, 198, 2, 38093, 2559, 855, 198, 4871, 7854, 259, 49070, 49925, 7, 83, 2704, 13, 20344, 3890, 43, 4131, 6814, 2599, 198, 220, 374, 37811, 25139, 2357, 1634, 25, 628, 220, 220, 220, 532, 2472, 62, 9127, 1058, 4600, 58, 43501, 62, 7857, 11, 352, 60, 63, 198, 220, 220, 220, 532, 2604, 896, 1058, 4600, 58, 43501, 62, 7857, 11, 299, 27740, 60, 63, 198, 220, 220, 220, 532, 6291, 1058, 4600, 58, 43501, 62, 7857, 11, 299, 27740, 60, 63, 351, 4600, 16345, 7, 87, 11, 16488, 28, 16, 8, 796, 2472, 62, 9127, 63, 198, 220, 37227, 628, 220, 2488, 12708, 24396, 198, 220, 825, 649, 7, 37266, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1785, 62, 43358, 16193, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 954, 62, 48545, 28, 27110, 13, 20471, 13, 4215, 9541, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26571, 62, 22046, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 11639, 15205, 259, 49070, 49925, 6, 2599, 198, 220, 220, 220, 374, 37811, 16447, 262, 6082, 4554, 422, 257, 4600, 37266, 63, 15879, 526, 15931, 198, 220, 220, 220, 42287, 796, 48700, 13, 1102, 1851, 62, 1462, 62, 83, 22854, 7, 8367, 28, 37266, 11, 1438, 11639, 37266, 11537, 198, 220, 220, 220, 954, 62, 48545, 796, 21136, 62, 48545, 7, 9127, 62, 48545, 11, 705, 27110, 11537, 198, 220, 220, 220, 2472, 62, 9127, 796, 954, 62, 48545, 7, 37266, 58, 986, 11, 657, 12962, 198, 220, 220, 220, 2604, 896, 796, 42287, 58, 986, 11, 352, 47715, 198, 220, 220, 220, 1441, 256, 16344, 13, 15205, 259, 49070, 7, 23350, 62, 9127, 28, 23350, 62, 9127, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 896, 28, 6404, 896, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26571, 62, 22046, 28, 12102, 378, 62, 22046, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 28, 3672, 8, 628, 220, 2488, 12708, 24396, 198, 220, 825, 42287, 62, 7857, 7, 15596, 62, 43358, 16193, 828, 1438, 11639, 15205, 259, 49070, 49925, 62, 37266, 62, 7857, 6, 2599, 198, 220, 220, 220, 374, 37811, 464, 1271, 286, 4600, 37266, 63, 2622, 284, 2251, 257, 2060, 6082, 526, 15931, 198, 220, 220, 220, 1441, 4808, 15596, 62, 7857, 7, 15596, 62, 43358, 11, 1438, 28, 3672, 8, 1343, 352, 13, 628, 198, 4871, 36202, 488, 1616, 15205, 259, 49070, 49925, 7, 83, 2704, 13, 20344, 3890, 43, 4131, 6814, 2599, 198, 220, 374, 37811, 36202, 488, 1616, 12, 15205, 259, 49070, 13061, 6082, 13, 628, 220, 509, 28, 17, 4961, 284, 17993, 12, 33, 259, 49070, 6082, 198, 220, 37227, 628, 220, 2488, 12708, 24396, 198, 220, 825, 649, 7, 37266, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1785, 62, 43358, 16193, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 954, 62, 48545, 28, 27110, 13, 20471, 13, 4215, 9541, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10368, 62, 48545, 28, 4215, 9541, 16, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10651, 62, 1640, 62, 31284, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26571, 62, 22046, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 11639, 35277, 488, 1616, 15205, 259, 49070, 49925, 6, 2599, 198, 220, 220, 220, 374, 37811, 16447, 262, 6082, 4554, 422, 257, 4600, 37266, 63, 15879, 526, 15931, 198, 220, 220, 220, 42287, 796, 48700, 13, 1102, 1851, 62, 1462, 62, 83, 22854, 7, 8367, 28, 37266, 11, 1438, 11639, 37266, 11537, 198, 220, 220, 220, 954, 62, 48545, 796, 21136, 62, 48545, 7, 9127, 62, 48545, 11, 705, 27110, 11537, 198, 220, 220, 220, 10368, 62, 48545, 796, 21136, 62, 48545, 7, 1102, 1087, 1358, 62, 48545, 11, 705, 27110, 11537, 198, 220, 220, 220, 2472, 62, 9127, 796, 954, 62, 48545, 7, 37266, 58, 986, 11, 657, 12962, 198, 220, 220, 220, 10368, 796, 10368, 62, 48545, 7, 37266, 58, 986, 11, 352, 25, 12962, 198, 220, 220, 220, 611, 10651, 62, 1640, 62, 31284, 25, 198, 220, 220, 220, 220, 220, 10368, 796, 48700, 13, 15036, 62, 1525, 62, 8367, 7, 1102, 1087, 1358, 11, 352, 68, 12, 18, 11, 352, 68, 18, 8, 198, 220, 220, 220, 1441, 256, 16344, 13, 35277, 488, 1616, 15205, 259, 49070, 7, 23350, 62, 9127, 28, 23350, 62, 9127, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10368, 28, 1102, 1087, 1358, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26571, 62, 22046, 28, 12102, 378, 62, 22046, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 28, 3672, 8, 628, 220, 2488, 12708, 24396, 198, 220, 825, 42287, 62, 7857, 7, 15596, 62, 43358, 16193, 828, 1438, 11639, 35277, 488, 1616, 15205, 259, 49070, 49925, 62, 37266, 62, 7857, 6, 2599, 198, 220, 220, 220, 374, 37811, 464, 1271, 286, 4600, 37266, 63, 2622, 284, 2251, 257, 2060, 6082, 526, 15931, 198, 220, 220, 220, 1441, 4808, 15596, 62, 7857, 7, 15596, 62, 43358, 11, 1438, 28, 3672, 8, 1343, 352, 13, 628, 198, 4871, 20828, 49070, 49925, 7, 83, 2704, 13, 20344, 3890, 43, 4131, 6814, 2599, 198, 220, 374, 37811, 20828, 49070, 6082, 11, 1123, 5726, 318, 257, 33097, 286, 262, 10752, 509, 1661, 357, 198, 220, 220, 220, 11507, 1143, 416, 4600, 23350, 62, 9127, 63, 37227, 628, 220, 2488, 12708, 24396, 198, 220, 825, 649, 7, 37266, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1785, 62, 43358, 16193, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 954, 62, 48545, 28, 27110, 13, 20471, 13, 4215, 9541, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26571, 62, 22046, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 11639, 33, 259, 49070, 49925, 6, 2599, 198, 220, 220, 220, 374, 37811, 16447, 262, 6082, 4554, 422, 257, 4600, 37266, 63, 15879, 526, 15931, 198, 220, 220, 220, 954, 62, 48545, 796, 21136, 62, 48545, 7, 9127, 62, 48545, 11, 705, 27110, 11537, 198, 220, 220, 220, 42287, 796, 48700, 13, 1102, 1851, 62, 1462, 62, 83, 22854, 7, 8367, 28, 37266, 11, 1438, 11639, 37266, 11537, 198, 220, 220, 220, 1785, 62, 43358, 796, 1233, 62, 22602, 13, 11201, 392, 62, 1462, 62, 31364, 7, 198, 220, 220, 220, 220, 220, 220, 220, 48700, 13, 1102, 1851, 62, 1462, 62, 83, 22854, 7, 8367, 28, 15596, 62, 43358, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 11639, 15596, 62, 43358, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 4906, 28, 27110, 13, 600, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 11192, 273, 62, 3672, 11639, 15596, 62, 43358, 3256, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 5072, 62, 43358, 796, 48700, 13, 1102, 9246, 19510, 27110, 13, 43358, 7, 37266, 38381, 21912, 16, 4357, 1785, 62, 43358, 828, 16488, 28, 15, 8, 198, 220, 220, 220, 2472, 62, 9127, 11, 2604, 896, 796, 48700, 13, 35312, 7, 37266, 11, 362, 11, 16488, 10779, 16, 8, 198, 220, 220, 220, 2472, 62, 9127, 796, 48700, 13, 3447, 1758, 7, 23350, 62, 9127, 11, 5072, 62, 43358, 8, 198, 220, 220, 220, 2604, 896, 796, 48700, 13, 3447, 1758, 7, 6404, 896, 11, 5072, 62, 43358, 8, 198, 220, 220, 220, 1441, 256, 16344, 13, 40566, 7, 198, 220, 220, 220, 220, 220, 220, 220, 256, 16344, 13, 33, 259, 49070, 7, 23350, 62, 9127, 28, 9127, 62, 48545, 7, 23350, 62, 9127, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 896, 28, 6404, 896, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26571, 62, 22046, 28, 12102, 378, 62, 22046, 828, 198, 220, 220, 220, 220, 220, 220, 220, 302, 27381, 276, 62, 43501, 62, 358, 12078, 28, 27110, 13, 7857, 7, 15596, 62, 43358, 828, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 28, 3672, 11, 198, 220, 220, 220, 1267, 628, 220, 2488, 12708, 24396, 198, 220, 825, 42287, 62, 7857, 7, 15596, 62, 43358, 16193, 828, 1438, 11639, 33, 259, 49070, 49925, 62, 37266, 62, 7857, 6, 2599, 198, 220, 220, 220, 374, 37811, 464, 1271, 286, 4600, 37266, 63, 2622, 284, 2251, 257, 2060, 6082, 526, 15931, 198, 220, 220, 220, 1441, 362, 1635, 4808, 15596, 62, 7857, 7, 15596, 62, 43358, 11, 1438, 28, 3672, 8, 198 ]
2.510845
7,607
# -*- coding: utf-8 -*- ## # \file pe_absorbing_layer.py # \title Definition of an absorbing layer for the parabolic equation. # \author Pierre Chobeau # \version 0.1 # \license BSD 3-Clause License # \inst UMRAE (Ifsttar Nantes), LAUM (Le Mans Université) # \date 2017, 20 Nov. ## import numpy as np def abs_lay_top(p_ij, dy, Ny, y_start_abs): """ Absorbing layer for the parabolic equation defined following the vertical direction - i.e. along the y axis. For more details see **[chevret_phd1994, Eq.(4.38), p.59]**. :param p_ij: pressure at the discrete location i,j ~ (x, y) (Pa). :type p_ij: 2D numpy arrays of complexes :param dy: spatial step for the y directions (m). :type dy: float :param Ny: length of the domain in number of nodes following the y dir. :type Ny: int :param y_start_abs: y coordinate of the layer starting position (m). :type y_start_abs: float :return: the pressure array inclunding the absorption of the layer (Pa). :rtype: 2D numpy arrays of complexes """ a_empirical = 4.5 b_empirical = int(round(1.4/dy)) abs_lay_top = np.ones((Ny + 1), dtype=np.float64) for j in range(int(y_start_abs / dy) + 1, Ny + 1): abs_lay_top[j] = np.exp(-((j - int(y_start_abs / dy)) / (a_empirical * (Ny + b_empirical - j)))**2) p_ij[j] = p_ij[j] * abs_lay_top[j] plot_abs_profil = False if plot_abs_profil: import matplotlib.pyplot as plt plt.figure(1) plt.plot(range(int(y_start_abs / dy) + 1, Ny + 1), abs_lay_top[int(y_start_abs / dy) + 1: Ny + 1]) plt.show() return p_ij def abs_lay_bottom_top(p_ij, dy, Ny, y_start_abs): """ Absorbing layer for the ground (low part) of the parabolic equation, in order to simulate free field propagation. The absorbing layer is defined following the vertical direction - i.e. along the y axis. For more details see **[chevret_phd1994, Eq.(4.38), p.59]**. :param p_ij: pressure at the discrete location i,j ~ (x, y) (Pa). :type p_ij: 2D numpy arrays of complexes :param dy: spatial step for the y directions (m). :type dy: float :param Ny: length of the domain in number of nodes following the y dir. :type Ny: int :param y_start_abs: y coordinate of the layer starting position (m). :type y_start_abs: float :return: the pressure array inclunding the absorption of the layer (Pa). :rtype: 2D numpy arrays of complexes """ a_empirical = 4.5 b_empirical = int(round(1.4/dy)) abs_lay_top = np.ones((Ny + 1), dtype=np.float64) abs_lay_total = np.ones((Ny + 1), dtype=np.float64) abs_lay_bottom = np.ones((Ny + 1), dtype=np.float64) for j in range(int(y_start_abs / dy) + 1, Ny + 1): abs_lay_top[j] = np.exp(-((j - int(y_start_abs / dy)) / (a_empirical * (Ny + b_empirical - j)))**2) abs_lay_bottom[Ny - j - 1] = np.exp(-((j + 1 - int(y_start_abs / dy)) / (a_empirical * (- Ny - b_empirical + j))) ** 2) for j in range(Ny + 1): abs_lay_total[j] = abs_lay_bottom[j] * abs_lay_top[j] p_ij[j] = p_ij[j] * abs_lay_total[j] plot_abs_profil = False if plot_abs_profil: import matplotlib.pyplot as plt plt.figure(1) plt.plot(range(int(y_start_abs / dy) + 1, Ny + 1), abs_lay_top[int(y_start_abs / dy) + 1: Ny + 1]) plt.figure(2) plt.plot(range(Ny - int(y_start_abs / dy)), abs_lay_bottom[: Ny - int(y_start_abs / dy)]) plt.show() return p_ij def abs_lay_top_1(k, dy, Ny, y_start_abs): """ Absorbing layer for the parabolic equation defined following the vertical direction - It has to be applied on the wavenumber directly. :param p_ij: pressure at the discrete location i,j ~ (x, y) (Pa). :type p_ij: 2D numpy arrays of complexes :param dy: spatial step for the y directions (m). :type dy: float :param Ny: length of the domain in number of nodes following the y dir. :type Ny: int :param y_start_abs: y coordinate of the layer starting position (m). :type y_start_abs: float :return: the wavenumber. :rtype: 2D numpy arrays of complexes """ abs_lay_top = np.ones((Ny + 1), dtype=np.float64) A = np.ones((Ny + 1), dtype=np.float64) for j in range(int(y_start_abs / dy) + 1, Ny + 1): A[Ny + 1 - j + int(y_start_abs / dy)] = np.exp(-4. * ((j * dy) - y_start_abs) / ((Ny + 1) * dy - y_start_abs)) abs_lay_top[Ny + 1 - j + int(y_start_abs / dy)] = A[j] * \ ((j * dy - y_start_abs) / ((Ny + 1) * dy - y_start_abs)) ** 2 k[j] = k[j] * abs_lay_top[j] return k
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 2235, 198, 2, 3467, 7753, 220, 220, 220, 220, 613, 62, 46303, 4623, 62, 29289, 13, 9078, 198, 2, 3467, 7839, 220, 220, 220, 30396, 286, 281, 34418, 7679, 329, 262, 1582, 29304, 16022, 13, 198, 2, 3467, 9800, 220, 220, 21204, 609, 5910, 559, 198, 2, 3467, 9641, 220, 657, 13, 16, 198, 2, 3467, 43085, 220, 347, 10305, 513, 12, 2601, 682, 13789, 198, 2, 3467, 8625, 220, 220, 220, 220, 44352, 3861, 36, 357, 1532, 301, 18870, 399, 39781, 828, 9131, 5883, 357, 3123, 18580, 26986, 43816, 8, 198, 2, 3467, 4475, 220, 220, 220, 220, 2177, 11, 1160, 5267, 13, 198, 2235, 198, 11748, 299, 32152, 355, 45941, 628, 198, 4299, 2352, 62, 10724, 62, 4852, 7, 79, 62, 2926, 11, 20268, 11, 17735, 11, 331, 62, 9688, 62, 8937, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 13051, 273, 4623, 7679, 329, 262, 1582, 29304, 16022, 5447, 1708, 262, 198, 220, 220, 220, 11723, 4571, 532, 1312, 13, 68, 13, 1863, 262, 331, 16488, 13, 198, 220, 220, 220, 1114, 517, 3307, 766, 12429, 58, 49916, 1186, 62, 746, 67, 22666, 11, 412, 80, 12195, 19, 13, 2548, 828, 279, 13, 3270, 60, 1174, 13, 628, 220, 220, 220, 1058, 17143, 279, 62, 2926, 25, 3833, 379, 262, 28810, 4067, 1312, 11, 73, 5299, 357, 87, 11, 331, 8, 357, 28875, 737, 198, 220, 220, 220, 1058, 4906, 279, 62, 2926, 25, 362, 35, 299, 32152, 26515, 286, 42665, 198, 220, 220, 220, 1058, 17143, 20268, 25, 21739, 2239, 329, 262, 331, 11678, 357, 76, 737, 198, 220, 220, 220, 1058, 4906, 20268, 25, 12178, 198, 220, 220, 220, 1058, 17143, 17735, 25, 4129, 286, 262, 7386, 287, 1271, 286, 13760, 1708, 262, 331, 26672, 13, 198, 220, 220, 220, 1058, 4906, 17735, 25, 493, 198, 220, 220, 220, 1058, 17143, 331, 62, 9688, 62, 8937, 25, 331, 20435, 286, 262, 7679, 3599, 2292, 357, 76, 737, 198, 220, 220, 220, 1058, 4906, 331, 62, 9688, 62, 8937, 25, 12178, 198, 220, 220, 220, 1058, 7783, 25, 262, 3833, 7177, 13358, 917, 278, 262, 24774, 286, 262, 7679, 357, 28875, 737, 198, 220, 220, 220, 1058, 81, 4906, 25, 362, 35, 299, 32152, 26515, 286, 42665, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 257, 62, 368, 4063, 605, 796, 604, 13, 20, 198, 220, 220, 220, 275, 62, 368, 4063, 605, 796, 493, 7, 744, 7, 16, 13, 19, 14, 9892, 4008, 198, 220, 220, 220, 2352, 62, 10724, 62, 4852, 796, 45941, 13, 1952, 19510, 45, 88, 1343, 352, 828, 288, 4906, 28, 37659, 13, 22468, 2414, 8, 198, 220, 220, 220, 329, 474, 287, 2837, 7, 600, 7, 88, 62, 9688, 62, 8937, 1220, 20268, 8, 1343, 352, 11, 17735, 1343, 352, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2352, 62, 10724, 62, 4852, 58, 73, 60, 796, 45941, 13, 11201, 32590, 19510, 73, 532, 493, 7, 88, 62, 9688, 62, 8937, 1220, 20268, 4008, 1220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 64, 62, 368, 4063, 605, 1635, 357, 45, 88, 1343, 275, 62, 368, 4063, 605, 532, 474, 22305, 1174, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 279, 62, 2926, 58, 73, 60, 796, 279, 62, 2926, 58, 73, 60, 1635, 2352, 62, 10724, 62, 4852, 58, 73, 60, 628, 220, 220, 220, 7110, 62, 8937, 62, 5577, 346, 796, 10352, 198, 220, 220, 220, 611, 7110, 62, 8937, 62, 5577, 346, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1330, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 26875, 7, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 29487, 7, 9521, 7, 600, 7, 88, 62, 9688, 62, 8937, 1220, 20268, 8, 1343, 352, 11, 17735, 1343, 352, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2352, 62, 10724, 62, 4852, 58, 600, 7, 88, 62, 9688, 62, 8937, 1220, 20268, 8, 1343, 352, 25, 17735, 1343, 352, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 12860, 3419, 198, 220, 220, 220, 1441, 279, 62, 2926, 628, 198, 4299, 2352, 62, 10724, 62, 22487, 62, 4852, 7, 79, 62, 2926, 11, 20268, 11, 17735, 11, 331, 62, 9688, 62, 8937, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 13051, 273, 4623, 7679, 329, 262, 2323, 357, 9319, 636, 8, 286, 262, 1582, 29304, 16022, 11, 287, 198, 220, 220, 220, 1502, 284, 29308, 1479, 2214, 43594, 13, 198, 220, 220, 220, 383, 34418, 7679, 318, 5447, 1708, 262, 11723, 4571, 532, 198, 220, 220, 220, 1312, 13, 68, 13, 1863, 262, 331, 16488, 13, 198, 220, 220, 220, 1114, 517, 3307, 766, 12429, 58, 49916, 1186, 62, 746, 67, 22666, 11, 412, 80, 12195, 19, 13, 2548, 828, 279, 13, 3270, 60, 1174, 13, 628, 220, 220, 220, 1058, 17143, 279, 62, 2926, 25, 3833, 379, 262, 28810, 4067, 1312, 11, 73, 5299, 357, 87, 11, 331, 8, 357, 28875, 737, 198, 220, 220, 220, 1058, 4906, 279, 62, 2926, 25, 362, 35, 299, 32152, 26515, 286, 42665, 198, 220, 220, 220, 1058, 17143, 20268, 25, 21739, 2239, 329, 262, 331, 11678, 357, 76, 737, 198, 220, 220, 220, 1058, 4906, 20268, 25, 12178, 198, 220, 220, 220, 1058, 17143, 17735, 25, 4129, 286, 262, 7386, 287, 1271, 286, 13760, 1708, 262, 331, 26672, 13, 198, 220, 220, 220, 1058, 4906, 17735, 25, 493, 198, 220, 220, 220, 1058, 17143, 331, 62, 9688, 62, 8937, 25, 331, 20435, 286, 262, 7679, 3599, 2292, 357, 76, 737, 198, 220, 220, 220, 1058, 4906, 331, 62, 9688, 62, 8937, 25, 12178, 198, 220, 220, 220, 1058, 7783, 25, 262, 3833, 7177, 13358, 917, 278, 262, 24774, 286, 262, 7679, 357, 28875, 737, 198, 220, 220, 220, 1058, 81, 4906, 25, 362, 35, 299, 32152, 26515, 286, 42665, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 257, 62, 368, 4063, 605, 796, 604, 13, 20, 198, 220, 220, 220, 275, 62, 368, 4063, 605, 796, 493, 7, 744, 7, 16, 13, 19, 14, 9892, 4008, 198, 220, 220, 220, 2352, 62, 10724, 62, 4852, 796, 45941, 13, 1952, 19510, 45, 88, 1343, 352, 828, 288, 4906, 28, 37659, 13, 22468, 2414, 8, 198, 220, 220, 220, 2352, 62, 10724, 62, 23350, 796, 45941, 13, 1952, 19510, 45, 88, 1343, 352, 828, 288, 4906, 28, 37659, 13, 22468, 2414, 8, 198, 220, 220, 220, 2352, 62, 10724, 62, 22487, 796, 45941, 13, 1952, 19510, 45, 88, 1343, 352, 828, 288, 4906, 28, 37659, 13, 22468, 2414, 8, 198, 220, 220, 220, 329, 474, 287, 2837, 7, 600, 7, 88, 62, 9688, 62, 8937, 1220, 20268, 8, 1343, 352, 11, 17735, 1343, 352, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2352, 62, 10724, 62, 4852, 58, 73, 60, 796, 45941, 13, 11201, 32590, 19510, 73, 532, 493, 7, 88, 62, 9688, 62, 8937, 1220, 20268, 4008, 1220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 64, 62, 368, 4063, 605, 1635, 357, 45, 88, 1343, 275, 62, 368, 4063, 605, 532, 474, 22305, 1174, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2352, 62, 10724, 62, 22487, 58, 45, 88, 532, 474, 532, 352, 60, 796, 45941, 13, 11201, 32590, 19510, 73, 1343, 352, 532, 493, 7, 88, 62, 9688, 62, 8937, 1220, 20268, 4008, 1220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 64, 62, 368, 4063, 605, 1635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13841, 17735, 532, 275, 62, 368, 4063, 605, 1343, 474, 22305, 12429, 362, 8, 628, 220, 220, 220, 329, 474, 287, 2837, 7, 45, 88, 1343, 352, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2352, 62, 10724, 62, 23350, 58, 73, 60, 796, 2352, 62, 10724, 62, 22487, 58, 73, 60, 1635, 2352, 62, 10724, 62, 4852, 58, 73, 60, 198, 220, 220, 220, 220, 220, 220, 220, 279, 62, 2926, 58, 73, 60, 796, 279, 62, 2926, 58, 73, 60, 1635, 2352, 62, 10724, 62, 23350, 58, 73, 60, 628, 220, 220, 220, 7110, 62, 8937, 62, 5577, 346, 796, 10352, 198, 220, 220, 220, 611, 7110, 62, 8937, 62, 5577, 346, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1330, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 26875, 7, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 29487, 7, 9521, 7, 600, 7, 88, 62, 9688, 62, 8937, 1220, 20268, 8, 1343, 352, 11, 17735, 1343, 352, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2352, 62, 10724, 62, 4852, 58, 600, 7, 88, 62, 9688, 62, 8937, 1220, 20268, 8, 1343, 352, 25, 17735, 1343, 352, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 26875, 7, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 29487, 7, 9521, 7, 45, 88, 532, 493, 7, 88, 62, 9688, 62, 8937, 1220, 20268, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2352, 62, 10724, 62, 22487, 58, 25, 17735, 532, 493, 7, 88, 62, 9688, 62, 8937, 1220, 20268, 8, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 458, 83, 13, 12860, 3419, 628, 220, 220, 220, 1441, 279, 62, 2926, 628, 198, 4299, 2352, 62, 10724, 62, 4852, 62, 16, 7, 74, 11, 20268, 11, 17735, 11, 331, 62, 9688, 62, 8937, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 13051, 273, 4623, 7679, 329, 262, 1582, 29304, 16022, 5447, 1708, 262, 198, 220, 220, 220, 11723, 4571, 532, 632, 468, 284, 307, 5625, 319, 262, 2082, 574, 4494, 3264, 13, 628, 220, 220, 220, 1058, 17143, 279, 62, 2926, 25, 3833, 379, 262, 28810, 4067, 1312, 11, 73, 5299, 357, 87, 11, 331, 8, 357, 28875, 737, 198, 220, 220, 220, 1058, 4906, 279, 62, 2926, 25, 362, 35, 299, 32152, 26515, 286, 42665, 198, 220, 220, 220, 1058, 17143, 20268, 25, 21739, 2239, 329, 262, 331, 11678, 357, 76, 737, 198, 220, 220, 220, 1058, 4906, 20268, 25, 12178, 198, 220, 220, 220, 1058, 17143, 17735, 25, 4129, 286, 262, 7386, 287, 1271, 286, 13760, 1708, 262, 331, 26672, 13, 198, 220, 220, 220, 1058, 4906, 17735, 25, 493, 198, 220, 220, 220, 1058, 17143, 331, 62, 9688, 62, 8937, 25, 331, 20435, 286, 262, 7679, 3599, 2292, 357, 76, 737, 198, 220, 220, 220, 1058, 4906, 331, 62, 9688, 62, 8937, 25, 12178, 198, 220, 220, 220, 1058, 7783, 25, 262, 2082, 574, 4494, 13, 198, 220, 220, 220, 1058, 81, 4906, 25, 362, 35, 299, 32152, 26515, 286, 42665, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2352, 62, 10724, 62, 4852, 796, 45941, 13, 1952, 19510, 45, 88, 1343, 352, 828, 288, 4906, 28, 37659, 13, 22468, 2414, 8, 198, 220, 220, 220, 317, 796, 45941, 13, 1952, 19510, 45, 88, 1343, 352, 828, 288, 4906, 28, 37659, 13, 22468, 2414, 8, 198, 220, 220, 220, 329, 474, 287, 2837, 7, 600, 7, 88, 62, 9688, 62, 8937, 1220, 20268, 8, 1343, 352, 11, 17735, 1343, 352, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 317, 58, 45, 88, 1343, 352, 532, 474, 1343, 493, 7, 88, 62, 9688, 62, 8937, 1220, 20268, 15437, 796, 45941, 13, 11201, 32590, 19, 13, 1635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14808, 73, 1635, 20268, 8, 532, 331, 62, 9688, 62, 8937, 8, 1220, 14808, 45, 88, 1343, 352, 8, 1635, 20268, 532, 331, 62, 9688, 62, 8937, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2352, 62, 10724, 62, 4852, 58, 45, 88, 1343, 352, 532, 474, 1343, 493, 7, 88, 62, 9688, 62, 8937, 1220, 20268, 15437, 796, 317, 58, 73, 60, 1635, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14808, 73, 1635, 20268, 532, 331, 62, 9688, 62, 8937, 8, 1220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14808, 45, 88, 1343, 352, 8, 1635, 20268, 532, 331, 62, 9688, 62, 8937, 4008, 12429, 362, 198, 220, 220, 220, 220, 220, 220, 220, 479, 58, 73, 60, 796, 479, 58, 73, 60, 1635, 2352, 62, 10724, 62, 4852, 58, 73, 60, 198, 220, 220, 220, 1441, 479, 198 ]
2.156469
2,288
# # Copyright (C) 2005, Giovanni Bajo # # Based on previous work under copyright (c) 2002 McMillan Enterprises, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA # import sys, string, os, imp, marshal, dircache, glob try: # zipimport is supported starting with Python 2.3 import zipimport except ImportError: zipimport = None try: # if ctypes is present, we can enable specific dependency discovery import ctypes from ctypes.util import find_library except ImportError: ctypes = None import suffixes try: STRINGTYPE = basestring except NameError: STRINGTYPE = type("") if not os.environ.has_key('PYTHONCASEOK') and sys.version_info >= (2, 1): else: def pyco(): """ Returns correct extension ending: 'c' or 'o' """ if __debug__: return 'c' else: return 'o' #=======================Owners==========================# # An Owner does imports from a particular piece of turf # That is, there's an Owner for each thing on sys.path # There are owners for directories and .pyz files. # There could be owners for zip files, or even URLs. # Note that they replace the string in sys.path, # but str(sys.path[n]) should yield the original string. ZipOwner = None if zipimport: # We cannot use zipimporter here because it has a stupid bug: # # >>> z.find_module("setuptools.setuptools.setuptools.setuptools.setuptools") is not None # True # # So mf will go into infinite recursion. # Instead, we'll reuse the BaseDirOwner logic, simply changing # the template methods. _globalownertypes = filter(None, [ DirOwner, ZipOwner, PYZOwner, Owner, ]) #===================Import Directors====================================# # ImportDirectors live on the metapath # There's one for builtins, one for frozen modules, and one for sys.path # Windows gets one for modules gotten from the Registry # There should be one for Frozen modules # Mac would have them for PY_RESOURCE modules etc. # A generalization of Owner - their concept of "turf" is broader # for Windows only #=================Import Tracker============================# # This one doesn't really import, just analyzes # If it *were* importing, it would be the one-and-only ImportManager # ie, the builtin import UNTRIED = -1 imptyps = ['top-level', 'conditional', 'delayed', 'delayed, conditional'] import hooks if __debug__: import sys import UserDict else: LogDict = dict # really the equivalent of builtin import #====================Modules============================# # All we're doing here is tracking, not importing # If we were importing, these would be hooked to the real module objects #======================== Utility ================================# # Scan the code object for imports, __all__ and wierd stuff import dis IMPORT_NAME = dis.opname.index('IMPORT_NAME') IMPORT_FROM = dis.opname.index('IMPORT_FROM') try: IMPORT_STAR = dis.opname.index('IMPORT_STAR') except: IMPORT_STAR = 999 STORE_NAME = dis.opname.index('STORE_NAME') STORE_FAST = dis.opname.index('STORE_FAST') STORE_GLOBAL = dis.opname.index('STORE_GLOBAL') try: STORE_MAP = dis.opname.index('STORE_MAP') except: STORE_MAP = 999 LOAD_GLOBAL = dis.opname.index('LOAD_GLOBAL') LOAD_ATTR = dis.opname.index('LOAD_ATTR') LOAD_NAME = dis.opname.index('LOAD_NAME') EXEC_STMT = dis.opname.index('EXEC_STMT') try: SET_LINENO = dis.opname.index('SET_LINENO') except ValueError: SET_LINENO = 999 BUILD_LIST = dis.opname.index('BUILD_LIST') LOAD_CONST = dis.opname.index('LOAD_CONST') if getattr(sys, 'version_info', (0,0,0)) > (2,5,0): LOAD_CONST_level = LOAD_CONST else: LOAD_CONST_level = 999 if getattr(sys, 'version_info', (0,0,0)) >= (2,7,0): COND_OPS = [dis.opname.index('POP_JUMP_IF_TRUE'), dis.opname.index('POP_JUMP_IF_FALSE'), dis.opname.index('JUMP_IF_TRUE_OR_POP'), dis.opname.index('JUMP_IF_FALSE_OR_POP'), ] else: COND_OPS = [dis.opname.index('JUMP_IF_FALSE'), dis.opname.index('JUMP_IF_TRUE'), ] JUMP_FORWARD = dis.opname.index('JUMP_FORWARD') try: STORE_DEREF = dis.opname.index('STORE_DEREF') except ValueError: STORE_DEREF = 999 STORE_OPS = [STORE_NAME, STORE_FAST, STORE_GLOBAL, STORE_DEREF, STORE_MAP] #IMPORT_STAR -> IMPORT_NAME mod ; IMPORT_STAR #JUMP_IF_FALSE / JUMP_IF_TRUE / JUMP_FORWARD def scan_code_for_ctypes(co, instrs, i): """Detects ctypes dependencies, using reasonable heuristics that should cover most common ctypes usages; returns a tuple of two lists, one containing names of binaries detected as dependencies, the other containing warnings. """ def _libFromConst(i): """Extracts library name from an expected LOAD_CONST instruction and appends it to local binaries list. """ op, oparg, conditional, curline = instrs[i] if op == LOAD_CONST: soname = co.co_consts[oparg] b.append(soname) b = [] op, oparg, conditional, curline = instrs[i] if op in (LOAD_GLOBAL, LOAD_NAME): name = co.co_names[oparg] if name in ("CDLL", "WinDLL"): # Guesses ctypes imports of this type: CDLL("library.so") # LOAD_GLOBAL 0 (CDLL) <--- we "are" here right now # LOAD_CONST 1 ('library.so') _libFromConst(i+1) elif name == "ctypes": # Guesses ctypes imports of this type: ctypes.DLL("library.so") # LOAD_GLOBAL 0 (ctypes) <--- we "are" here right now # LOAD_ATTR 1 (CDLL) # LOAD_CONST 1 ('library.so') op2, oparg2, conditional2, curline2 = instrs[i+1] if op2 == LOAD_ATTR: if co.co_names[oparg2] in ("CDLL", "WinDLL"): # Fetch next, and finally get the library name _libFromConst(i+2) elif name in ("cdll", "windll"): # Guesses ctypes imports of these types: # * cdll.library (only valid on Windows) # LOAD_GLOBAL 0 (cdll) <--- we "are" here right now # LOAD_ATTR 1 (library) # * cdll.LoadLibrary("library.so") # LOAD_GLOBAL 0 (cdll) <--- we "are" here right now # LOAD_ATTR 1 (LoadLibrary) # LOAD_CONST 1 ('library.so') op2, oparg2, conditional2, curline2 = instrs[i+1] if op2 == LOAD_ATTR: if co.co_names[oparg2] != "LoadLibrary": # First type soname = co.co_names[oparg2] + ".dll" b.append(soname) else: # Second type, needs to fetch one more instruction _libFromConst(i+2) # If any of the libraries has been requested with anything different from # the bare filename, drop that entry and warn the user - pyinstaller would # need to patch the compiled pyc file to make it work correctly! w = [] for bin in list(b): if bin != os.path.basename(bin): b.remove(bin) w.append("W: ignoring %s - ctypes imports only supported using bare filenames" % (bin,)) return b, w def _resolveCtypesImports(cbinaries): """Completes ctypes BINARY entries for modules with their full path. """ if sys.platform.startswith("linux"): envvar = "LD_LIBRARY_PATH" elif sys.platform.startswith("darwin"): envvar = "DYLD_LIBRARY_PATH" else: envvar = "PATH" ret = [] # Try to locate the shared library on disk. This is done by # executing ctypes.utile.find_library prepending ImportTracker's # local paths to library search paths, then replaces original values. old = _savePaths() for cbin in cbinaries: ext = os.path.splitext(cbin)[1] # On Windows, only .dll files can be loaded. if os.name == "nt" and ext.lower() in [".so", ".dylib"]: continue cpath = find_library(os.path.splitext(cbin)[0]) if sys.platform == "linux2": # CAVEAT: find_library() is not the correct function. Ctype's # documentation says that it is meant to resolve only the filename # (as a *compiler* does) not the full path. Anyway, it works well # enough on Windows and Mac. On Linux, we need to implement # more code to find out the full path. if cpath is None: cpath = cbin # "man ld.so" says that we should first search LD_LIBRARY_PATH # and then the ldcache for d in os.environ["LD_LIBRARY_PATH"].split(":"): if os.path.isfile(d + "/" + cpath): cpath = d + "/" + cpath break else: for L in os.popen("ldconfig -p").read().splitlines(): if cpath in L: cpath = L.split("=>", 1)[1].strip() assert os.path.isfile(cpath) break else: cpath = None if cpath is None: print "W: library %s required via ctypes not found" % (cbin,) else: ret.append((cbin, cpath, "BINARY")) _restorePaths(old) return ret
[ 2, 198, 2, 15069, 357, 34, 8, 5075, 11, 50191, 347, 34944, 198, 2, 198, 2, 13403, 319, 2180, 670, 739, 6634, 357, 66, 8, 6244, 15359, 359, 272, 41253, 11, 3457, 13, 198, 2, 198, 2, 770, 1430, 318, 1479, 3788, 26, 345, 460, 17678, 4163, 340, 290, 14, 273, 198, 2, 13096, 340, 739, 262, 2846, 286, 262, 22961, 3611, 5094, 13789, 198, 2, 355, 3199, 416, 262, 3232, 10442, 5693, 26, 2035, 2196, 362, 198, 2, 286, 262, 13789, 11, 393, 357, 265, 534, 3038, 8, 597, 1568, 2196, 13, 198, 2, 198, 2, 770, 1430, 318, 9387, 287, 262, 2911, 326, 340, 481, 307, 4465, 11, 198, 2, 475, 42881, 15529, 34764, 56, 26, 1231, 772, 262, 17142, 18215, 286, 198, 2, 34482, 3398, 1565, 5603, 25382, 393, 376, 46144, 7473, 317, 16652, 2149, 37232, 33079, 48933, 13, 220, 4091, 262, 198, 2, 22961, 3611, 5094, 13789, 329, 517, 3307, 13, 198, 2, 198, 2, 921, 815, 423, 2722, 257, 4866, 286, 262, 22961, 3611, 5094, 13789, 198, 2, 1863, 351, 428, 1430, 26, 611, 407, 11, 3551, 284, 262, 3232, 10442, 198, 2, 5693, 11, 3457, 1539, 6885, 14021, 3530, 11, 19383, 22343, 11, 6182, 11, 8779, 220, 657, 2481, 940, 12, 1485, 486, 11, 4916, 198, 2, 198, 198, 11748, 25064, 11, 4731, 11, 28686, 11, 848, 11, 22397, 282, 11, 288, 1980, 4891, 11, 15095, 198, 28311, 25, 198, 220, 220, 220, 1303, 19974, 11748, 318, 4855, 3599, 351, 11361, 362, 13, 18, 198, 220, 220, 220, 1330, 19974, 11748, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 19974, 11748, 796, 6045, 198, 198, 28311, 25, 198, 220, 220, 220, 1303, 611, 269, 19199, 318, 1944, 11, 356, 460, 7139, 2176, 20203, 9412, 198, 220, 220, 220, 1330, 269, 19199, 198, 220, 220, 220, 422, 269, 19199, 13, 22602, 1330, 1064, 62, 32016, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 269, 19199, 796, 6045, 198, 198, 11748, 35488, 274, 198, 198, 28311, 25, 198, 220, 220, 220, 19269, 2751, 25216, 796, 1615, 395, 1806, 198, 16341, 6530, 12331, 25, 198, 220, 220, 220, 19269, 2751, 25216, 796, 2099, 7203, 4943, 198, 198, 361, 407, 28686, 13, 268, 2268, 13, 10134, 62, 2539, 10786, 47, 56, 4221, 1340, 34, 1921, 4720, 42, 11537, 290, 25064, 13, 9641, 62, 10951, 18189, 357, 17, 11, 352, 2599, 198, 17772, 25, 198, 198, 4299, 12972, 1073, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 16409, 3376, 7552, 7464, 25, 705, 66, 6, 393, 705, 78, 6, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 11593, 24442, 834, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 705, 66, 6, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 705, 78, 6, 198, 198, 2, 4770, 1421, 18604, 23858, 364, 4770, 2559, 855, 2, 198, 2, 1052, 23853, 857, 17944, 422, 257, 1948, 3704, 286, 29553, 198, 2, 1320, 318, 11, 612, 338, 281, 23853, 329, 1123, 1517, 319, 25064, 13, 6978, 198, 2, 1318, 389, 4393, 329, 29196, 290, 764, 9078, 89, 3696, 13, 198, 2, 1318, 714, 307, 4393, 329, 19974, 3696, 11, 393, 772, 32336, 13, 198, 2, 5740, 326, 484, 6330, 262, 4731, 287, 25064, 13, 6978, 11, 198, 2, 475, 965, 7, 17597, 13, 6978, 58, 77, 12962, 815, 7800, 262, 2656, 4731, 13, 628, 198, 41729, 42419, 796, 6045, 198, 361, 19974, 11748, 25, 198, 220, 220, 220, 1303, 775, 2314, 779, 19974, 320, 26634, 994, 780, 340, 468, 257, 8531, 5434, 25, 198, 220, 220, 220, 1303, 198, 220, 220, 220, 1303, 13163, 1976, 13, 19796, 62, 21412, 7203, 2617, 37623, 10141, 13, 2617, 37623, 10141, 13, 2617, 37623, 10141, 13, 2617, 37623, 10141, 13, 2617, 37623, 10141, 4943, 318, 407, 6045, 198, 220, 220, 220, 1303, 6407, 198, 220, 220, 220, 1303, 198, 220, 220, 220, 1303, 1406, 285, 69, 481, 467, 656, 15541, 664, 24197, 13, 198, 220, 220, 220, 1303, 5455, 11, 356, 1183, 32349, 262, 7308, 35277, 42419, 9156, 11, 2391, 5609, 198, 220, 220, 220, 1303, 262, 11055, 5050, 13, 198, 198, 62, 20541, 18403, 19199, 796, 8106, 7, 14202, 11, 685, 198, 220, 220, 220, 36202, 42419, 11, 198, 220, 220, 220, 38636, 42419, 11, 198, 220, 220, 220, 350, 56, 57, 42419, 11, 198, 220, 220, 220, 23853, 11, 198, 12962, 198, 198, 2, 4770, 18604, 20939, 29200, 10052, 1421, 2, 198, 2, 17267, 13470, 669, 2107, 319, 262, 1138, 499, 776, 198, 2, 1318, 338, 530, 329, 3170, 1040, 11, 530, 329, 12912, 13103, 11, 290, 530, 329, 25064, 13, 6978, 198, 2, 3964, 3011, 530, 329, 13103, 7891, 422, 262, 33432, 198, 2, 1318, 815, 307, 530, 329, 23673, 13103, 198, 2, 4100, 561, 423, 606, 329, 350, 56, 62, 19535, 31033, 13103, 3503, 13, 198, 2, 317, 2276, 1634, 286, 23853, 532, 511, 3721, 286, 366, 36590, 69, 1, 318, 11622, 198, 220, 220, 220, 1303, 329, 3964, 691, 628, 198, 2, 4770, 28, 20939, 26885, 4770, 25609, 2, 198, 2, 770, 530, 1595, 470, 1107, 1330, 11, 655, 4284, 12271, 198, 2, 1002, 340, 1635, 22474, 9, 33332, 11, 340, 561, 307, 262, 530, 12, 392, 12, 8807, 17267, 13511, 198, 2, 37941, 11, 262, 3170, 259, 1330, 198, 198, 4944, 5446, 19767, 796, 532, 16, 198, 198, 320, 5835, 862, 796, 37250, 4852, 12, 5715, 3256, 705, 17561, 1859, 3256, 705, 12381, 16548, 3256, 705, 12381, 16548, 11, 26340, 20520, 198, 11748, 26569, 198, 198, 361, 11593, 24442, 834, 25, 198, 220, 220, 220, 1330, 25064, 198, 220, 220, 220, 1330, 11787, 35, 713, 198, 17772, 25, 198, 220, 220, 220, 5972, 35, 713, 796, 8633, 628, 220, 220, 220, 1303, 1107, 262, 7548, 286, 3170, 259, 1330, 628, 198, 2, 4770, 1421, 5841, 5028, 4770, 25609, 2, 198, 2, 1439, 356, 821, 1804, 994, 318, 9646, 11, 407, 33332, 198, 2, 1002, 356, 547, 33332, 11, 777, 561, 307, 23373, 284, 262, 1103, 8265, 5563, 628, 628, 198, 2, 4770, 2559, 34030, 36658, 25609, 18604, 2, 198, 2, 20937, 262, 2438, 2134, 329, 17944, 11, 11593, 439, 834, 290, 266, 959, 67, 3404, 198, 198, 11748, 595, 198, 3955, 15490, 62, 20608, 796, 595, 13, 404, 3672, 13, 9630, 10786, 3955, 15490, 62, 20608, 11537, 198, 3955, 15490, 62, 10913, 2662, 796, 595, 13, 404, 3672, 13, 9630, 10786, 3955, 15490, 62, 10913, 2662, 11537, 198, 28311, 25, 198, 220, 220, 220, 30023, 9863, 62, 46678, 796, 595, 13, 404, 3672, 13, 9630, 10786, 3955, 15490, 62, 46678, 11537, 198, 16341, 25, 198, 220, 220, 220, 30023, 9863, 62, 46678, 796, 36006, 198, 2257, 6965, 62, 20608, 796, 595, 13, 404, 3672, 13, 9630, 10786, 2257, 6965, 62, 20608, 11537, 198, 2257, 6965, 62, 37, 11262, 796, 595, 13, 404, 3672, 13, 9630, 10786, 2257, 6965, 62, 37, 11262, 11537, 198, 2257, 6965, 62, 8763, 9864, 1847, 796, 595, 13, 404, 3672, 13, 9630, 10786, 2257, 6965, 62, 8763, 9864, 1847, 11537, 198, 28311, 25, 198, 220, 220, 220, 3563, 6965, 62, 33767, 796, 595, 13, 404, 3672, 13, 9630, 10786, 2257, 6965, 62, 33767, 11537, 198, 16341, 25, 198, 220, 220, 220, 3563, 6965, 62, 33767, 796, 36006, 198, 35613, 62, 8763, 9864, 1847, 796, 595, 13, 404, 3672, 13, 9630, 10786, 35613, 62, 8763, 9864, 1847, 11537, 198, 35613, 62, 1404, 5446, 796, 595, 13, 404, 3672, 13, 9630, 10786, 35613, 62, 1404, 5446, 11537, 198, 35613, 62, 20608, 796, 595, 13, 404, 3672, 13, 9630, 10786, 35613, 62, 20608, 11537, 198, 6369, 2943, 62, 2257, 13752, 796, 595, 13, 404, 3672, 13, 9630, 10786, 6369, 2943, 62, 2257, 13752, 11537, 198, 28311, 25, 198, 220, 220, 220, 25823, 62, 34509, 1677, 46, 796, 595, 13, 404, 3672, 13, 9630, 10786, 28480, 62, 34509, 1677, 46, 11537, 198, 16341, 11052, 12331, 25, 198, 220, 220, 220, 25823, 62, 34509, 1677, 46, 796, 36006, 198, 19499, 26761, 62, 45849, 796, 595, 13, 404, 3672, 13, 9630, 10786, 19499, 26761, 62, 45849, 11537, 198, 35613, 62, 10943, 2257, 796, 595, 13, 404, 3672, 13, 9630, 10786, 35613, 62, 10943, 2257, 11537, 198, 361, 651, 35226, 7, 17597, 11, 705, 9641, 62, 10951, 3256, 357, 15, 11, 15, 11, 15, 4008, 1875, 357, 17, 11, 20, 11, 15, 2599, 198, 220, 220, 220, 17579, 2885, 62, 10943, 2257, 62, 5715, 796, 17579, 2885, 62, 10943, 2257, 198, 17772, 25, 198, 220, 220, 220, 17579, 2885, 62, 10943, 2257, 62, 5715, 796, 36006, 198, 361, 651, 35226, 7, 17597, 11, 705, 9641, 62, 10951, 3256, 357, 15, 11, 15, 11, 15, 4008, 18189, 357, 17, 11, 22, 11, 15, 2599, 198, 220, 220, 220, 7102, 35, 62, 30737, 796, 685, 6381, 13, 404, 3672, 13, 9630, 10786, 47, 3185, 62, 41, 20476, 62, 5064, 62, 5446, 8924, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 595, 13, 404, 3672, 13, 9630, 10786, 47, 3185, 62, 41, 20476, 62, 5064, 62, 37, 23719, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 595, 13, 404, 3672, 13, 9630, 10786, 41, 20476, 62, 5064, 62, 5446, 8924, 62, 1581, 62, 47, 3185, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 595, 13, 404, 3672, 13, 9630, 10786, 41, 20476, 62, 5064, 62, 37, 23719, 62, 1581, 62, 47, 3185, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2361, 198, 17772, 25, 198, 220, 220, 220, 7102, 35, 62, 30737, 796, 685, 6381, 13, 404, 3672, 13, 9630, 10786, 41, 20476, 62, 5064, 62, 37, 23719, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 595, 13, 404, 3672, 13, 9630, 10786, 41, 20476, 62, 5064, 62, 5446, 8924, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2361, 198, 41, 20476, 62, 13775, 39743, 796, 595, 13, 404, 3672, 13, 9630, 10786, 41, 20476, 62, 13775, 39743, 11537, 198, 28311, 25, 198, 220, 220, 220, 3563, 6965, 62, 35, 9338, 37, 796, 595, 13, 404, 3672, 13, 9630, 10786, 2257, 6965, 62, 35, 9338, 37, 11537, 198, 16341, 11052, 12331, 25, 198, 220, 220, 220, 3563, 6965, 62, 35, 9338, 37, 796, 36006, 198, 2257, 6965, 62, 30737, 796, 685, 2257, 6965, 62, 20608, 11, 3563, 6965, 62, 37, 11262, 11, 3563, 6965, 62, 8763, 9864, 1847, 11, 3563, 6965, 62, 35, 9338, 37, 11, 3563, 6965, 62, 33767, 60, 198, 2, 3955, 15490, 62, 46678, 4613, 30023, 9863, 62, 20608, 953, 2162, 30023, 9863, 62, 46678, 198, 2, 41, 20476, 62, 5064, 62, 37, 23719, 1220, 449, 20476, 62, 5064, 62, 5446, 8924, 1220, 449, 20476, 62, 13775, 39743, 198, 198, 4299, 9367, 62, 8189, 62, 1640, 62, 310, 9497, 7, 1073, 11, 916, 3808, 11, 1312, 2599, 198, 220, 220, 220, 37227, 47504, 82, 269, 19199, 20086, 11, 1262, 6397, 339, 333, 3969, 326, 815, 198, 220, 220, 220, 3002, 749, 2219, 269, 19199, 514, 1095, 26, 5860, 257, 46545, 286, 734, 8341, 11, 530, 198, 220, 220, 220, 7268, 3891, 286, 38640, 12326, 355, 20086, 11, 262, 584, 7268, 198, 220, 220, 220, 14601, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 825, 4808, 8019, 4863, 34184, 7, 72, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 11627, 974, 82, 5888, 1438, 422, 281, 2938, 17579, 2885, 62, 10943, 2257, 12064, 290, 198, 220, 220, 220, 220, 220, 220, 220, 598, 2412, 340, 284, 1957, 38640, 1351, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1034, 11, 1034, 853, 11, 26340, 11, 1090, 1370, 796, 916, 3808, 58, 72, 60, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1034, 6624, 17579, 2885, 62, 10943, 2257, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3367, 480, 796, 763, 13, 1073, 62, 1102, 6448, 58, 404, 853, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 275, 13, 33295, 7, 1559, 480, 8, 628, 220, 220, 220, 275, 796, 17635, 628, 220, 220, 220, 1034, 11, 1034, 853, 11, 26340, 11, 1090, 1370, 796, 916, 3808, 58, 72, 60, 628, 220, 220, 220, 611, 1034, 287, 357, 35613, 62, 8763, 9864, 1847, 11, 17579, 2885, 62, 20608, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 796, 763, 13, 1073, 62, 14933, 58, 404, 853, 60, 628, 220, 220, 220, 220, 220, 220, 220, 611, 1438, 287, 5855, 8610, 3069, 1600, 366, 16643, 35, 3069, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 37571, 274, 269, 19199, 17944, 286, 428, 2099, 25, 6458, 3069, 7203, 32016, 13, 568, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 17579, 2885, 62, 8763, 9864, 1847, 657, 357, 8610, 3069, 8, 1279, 6329, 356, 366, 533, 1, 994, 826, 783, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 17579, 2885, 62, 10943, 2257, 352, 19203, 32016, 13, 568, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 8019, 4863, 34184, 7, 72, 10, 16, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1438, 6624, 366, 310, 9497, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 37571, 274, 269, 19199, 17944, 286, 428, 2099, 25, 269, 19199, 13, 35, 3069, 7203, 32016, 13, 568, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 17579, 2885, 62, 8763, 9864, 1847, 657, 357, 310, 9497, 8, 1279, 6329, 356, 366, 533, 1, 994, 826, 783, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 17579, 2885, 62, 1404, 5446, 352, 357, 8610, 3069, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 17579, 2885, 62, 10943, 2257, 352, 19203, 32016, 13, 568, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1034, 17, 11, 1034, 853, 17, 11, 26340, 17, 11, 1090, 1370, 17, 796, 916, 3808, 58, 72, 10, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1034, 17, 6624, 17579, 2885, 62, 1404, 5446, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 763, 13, 1073, 62, 14933, 58, 404, 853, 17, 60, 287, 5855, 8610, 3069, 1600, 366, 16643, 35, 3069, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 376, 7569, 1306, 11, 290, 3443, 651, 262, 5888, 1438, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 8019, 4863, 34184, 7, 72, 10, 17, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1438, 287, 5855, 10210, 297, 1600, 366, 7972, 297, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 37571, 274, 269, 19199, 17944, 286, 777, 3858, 25, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 1635, 269, 12736, 13, 32016, 357, 8807, 4938, 319, 3964, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 17579, 2885, 62, 8763, 9864, 1847, 657, 357, 10210, 297, 8, 1279, 6329, 356, 366, 533, 1, 994, 826, 783, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 17579, 2885, 62, 1404, 5446, 352, 357, 32016, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 1635, 269, 12736, 13, 8912, 23377, 7203, 32016, 13, 568, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 17579, 2885, 62, 8763, 9864, 1847, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 657, 357, 10210, 297, 8, 1279, 6329, 356, 366, 533, 1, 994, 826, 783, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 17579, 2885, 62, 1404, 5446, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 352, 357, 8912, 23377, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 17579, 2885, 62, 10943, 2257, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 352, 19203, 32016, 13, 568, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1034, 17, 11, 1034, 853, 17, 11, 26340, 17, 11, 1090, 1370, 17, 796, 916, 3808, 58, 72, 10, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1034, 17, 6624, 17579, 2885, 62, 1404, 5446, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 763, 13, 1073, 62, 14933, 58, 404, 853, 17, 60, 14512, 366, 8912, 23377, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3274, 2099, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3367, 480, 796, 763, 13, 1073, 62, 14933, 58, 404, 853, 17, 60, 1343, 27071, 12736, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 275, 13, 33295, 7, 1559, 480, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5498, 2099, 11, 2476, 284, 21207, 530, 517, 12064, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 8019, 4863, 34184, 7, 72, 10, 17, 8, 628, 220, 220, 220, 1303, 1002, 597, 286, 262, 12782, 468, 587, 9167, 351, 1997, 1180, 422, 198, 220, 220, 220, 1303, 262, 6247, 29472, 11, 4268, 326, 5726, 290, 9828, 262, 2836, 532, 12972, 17350, 263, 561, 198, 220, 220, 220, 1303, 761, 284, 8529, 262, 14102, 12972, 66, 2393, 284, 787, 340, 670, 9380, 0, 628, 220, 220, 220, 266, 796, 17635, 198, 220, 220, 220, 329, 9874, 287, 1351, 7, 65, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 9874, 14512, 28686, 13, 6978, 13, 12093, 12453, 7, 8800, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 275, 13, 28956, 7, 8800, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 266, 13, 33295, 7203, 54, 25, 15482, 4064, 82, 532, 269, 19199, 17944, 691, 4855, 1262, 6247, 1226, 268, 1047, 1, 4064, 357, 8800, 11, 4008, 628, 220, 220, 220, 1441, 275, 11, 266, 628, 198, 4299, 4808, 411, 6442, 34, 19199, 3546, 3742, 7, 66, 8800, 3166, 2599, 198, 220, 220, 220, 37227, 5377, 1154, 4879, 269, 19199, 347, 1268, 13153, 12784, 329, 13103, 351, 511, 1336, 3108, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 25064, 13, 24254, 13, 9688, 2032, 342, 7203, 23289, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 17365, 7785, 796, 366, 11163, 62, 40347, 49, 13153, 62, 34219, 1, 198, 220, 220, 220, 1288, 361, 25064, 13, 24254, 13, 9688, 2032, 342, 7203, 27455, 5404, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 17365, 7785, 796, 366, 35, 56, 11163, 62, 40347, 49, 13153, 62, 34219, 1, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 17365, 7785, 796, 366, 34219, 1, 628, 220, 220, 220, 1005, 796, 17635, 628, 220, 220, 220, 1303, 9993, 284, 17276, 262, 4888, 5888, 319, 11898, 13, 770, 318, 1760, 416, 198, 220, 220, 220, 1303, 23710, 269, 19199, 13, 315, 576, 13, 19796, 62, 32016, 3143, 1571, 17267, 35694, 338, 198, 220, 220, 220, 1303, 1957, 13532, 284, 5888, 2989, 13532, 11, 788, 24020, 2656, 3815, 13, 198, 220, 220, 220, 1468, 796, 4808, 21928, 15235, 82, 3419, 198, 220, 220, 220, 329, 269, 8800, 287, 269, 8800, 3166, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1070, 796, 28686, 13, 6978, 13, 22018, 578, 742, 7, 66, 8800, 38381, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1550, 3964, 11, 691, 764, 12736, 3696, 460, 307, 9639, 13, 198, 220, 220, 220, 220, 220, 220, 220, 611, 28686, 13, 3672, 6624, 366, 429, 1, 290, 1070, 13, 21037, 3419, 287, 685, 1911, 568, 1600, 27071, 31739, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 269, 6978, 796, 1064, 62, 32016, 7, 418, 13, 6978, 13, 22018, 578, 742, 7, 66, 8800, 38381, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 611, 25064, 13, 24254, 6624, 366, 23289, 17, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 7257, 6089, 1404, 25, 1064, 62, 32016, 3419, 318, 407, 262, 3376, 2163, 13, 327, 4906, 338, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 10314, 1139, 326, 340, 318, 4001, 284, 10568, 691, 262, 29472, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 357, 292, 257, 1635, 5589, 5329, 9, 857, 8, 407, 262, 1336, 3108, 13, 21836, 11, 340, 2499, 880, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1576, 319, 3964, 290, 4100, 13, 1550, 7020, 11, 356, 761, 284, 3494, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 517, 2438, 284, 1064, 503, 262, 1336, 3108, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 269, 6978, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 6978, 796, 269, 8800, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 366, 805, 300, 67, 13, 568, 1, 1139, 326, 356, 815, 717, 2989, 27178, 62, 40347, 49, 13153, 62, 34219, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 290, 788, 262, 300, 17896, 4891, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 288, 287, 28686, 13, 268, 2268, 14692, 11163, 62, 40347, 49, 13153, 62, 34219, 1, 4083, 35312, 7, 2404, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 28686, 13, 6978, 13, 4468, 576, 7, 67, 1343, 12813, 1, 1343, 269, 6978, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 6978, 796, 288, 1343, 12813, 1, 1343, 269, 6978, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 406, 287, 28686, 13, 79, 9654, 7203, 335, 11250, 532, 79, 11074, 961, 22446, 35312, 6615, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 269, 6978, 287, 406, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 6978, 796, 406, 13, 35312, 7203, 14804, 1600, 352, 38381, 16, 4083, 36311, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 28686, 13, 6978, 13, 4468, 576, 7, 66, 6978, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 6978, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 611, 269, 6978, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 366, 54, 25, 5888, 4064, 82, 2672, 2884, 269, 19199, 407, 1043, 1, 4064, 357, 66, 8800, 35751, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1005, 13, 33295, 19510, 66, 8800, 11, 269, 6978, 11, 366, 33, 1268, 13153, 48774, 198, 220, 220, 220, 4808, 2118, 382, 15235, 82, 7, 727, 8, 198, 220, 220, 220, 1441, 1005, 628, 198 ]
2.380062
4,223
import os import numpy as np import dolfin as df import matplotlib.pyplot as plt from finmag import Simulation from finmag.energies import Demag, Exchange MODULE_DIR = os.path.dirname(os.path.abspath(__file__)) IMAGE = os.path.join(MODULE_DIR, 'precession.png') ts = np.linspace(0, 3e-10) subfigures = ("without precession", "with precession") figure, axes = plt.subplots(nrows=1, ncols=2, figsize=(8, 4)) for i, subfigure_name in enumerate(subfigures): m = zip(* run_simulation(bool(i))) for dim in xrange(3): axes[i].plot(ts, m[dim], label="m{}".format(chr(120+dim))) axes[i].legend() axes[i].set_title(subfigure_name) axes[i].set_xlabel("time (s)") axes[i].set_ylabel("unit magnetisation") axes[i].set_ylim([-0.1, 1.0]) figure.savefig(IMAGE)
[ 11748, 28686, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 288, 4024, 259, 355, 47764, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 6738, 957, 19726, 1330, 41798, 198, 6738, 957, 19726, 13, 877, 70, 444, 1330, 1897, 363, 11, 12516, 198, 198, 33365, 24212, 62, 34720, 796, 28686, 13, 6978, 13, 15908, 3672, 7, 418, 13, 6978, 13, 397, 2777, 776, 7, 834, 7753, 834, 4008, 198, 3955, 11879, 796, 28686, 13, 6978, 13, 22179, 7, 33365, 24212, 62, 34720, 11, 705, 3866, 43914, 13, 11134, 11537, 198, 198, 912, 796, 45941, 13, 21602, 10223, 7, 15, 11, 513, 68, 12, 940, 8, 198, 198, 7266, 5647, 942, 796, 5855, 19419, 662, 43914, 1600, 366, 4480, 662, 43914, 4943, 198, 26875, 11, 34197, 796, 458, 83, 13, 7266, 489, 1747, 7, 77, 8516, 28, 16, 11, 299, 4033, 82, 28, 17, 11, 2336, 7857, 16193, 23, 11, 604, 4008, 198, 1640, 1312, 11, 850, 26875, 62, 3672, 287, 27056, 378, 7, 7266, 5647, 942, 2599, 198, 220, 220, 220, 285, 796, 19974, 46491, 1057, 62, 14323, 1741, 7, 30388, 7, 72, 22305, 198, 220, 220, 220, 329, 5391, 287, 2124, 9521, 7, 18, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 34197, 58, 72, 4083, 29487, 7, 912, 11, 285, 58, 27740, 4357, 6167, 2625, 76, 90, 92, 1911, 18982, 7, 354, 81, 7, 10232, 10, 27740, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 34197, 58, 72, 4083, 1455, 437, 3419, 198, 220, 220, 220, 34197, 58, 72, 4083, 2617, 62, 7839, 7, 7266, 26875, 62, 3672, 8, 198, 220, 220, 220, 34197, 58, 72, 4083, 2617, 62, 87, 18242, 7203, 2435, 357, 82, 8, 4943, 198, 220, 220, 220, 34197, 58, 72, 4083, 2617, 62, 2645, 9608, 7203, 20850, 19972, 5612, 4943, 198, 220, 220, 220, 34197, 58, 72, 4083, 2617, 62, 88, 2475, 26933, 12, 15, 13, 16, 11, 352, 13, 15, 12962, 198, 26875, 13, 21928, 5647, 7, 3955, 11879, 8, 198 ]
2.366366
333
#!/usr/bin/env python3 import sys import matplotlib.pyplot as plt import numpy as np from typex.encryptor import Encryptor plt.rcdefaults() input_text = sys.stdin.read() letter_appearances = {} for char in Encryptor.ALPHABET: letter_appearances[char] = 0 for char in input_text: if char.upper() in Encryptor.ALPHABET: letter_appearances[char.upper()] += 1 sorted_letters = sorted( letter_appearances.keys(), key=lambda letter: letter_appearances[letter], reverse=True) sorted_appearances = sorted(letter_appearances.values(), reverse=True) y_pos = np.arange(len(sorted_appearances)) plt.bar(y_pos, sorted_appearances, align='center', alpha=1) plt.xticks(y_pos, sorted_letters) plt.ylabel('Number of occurances') plt.xlabel('Letter') plt.title('Letter Frequency') plt.show()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 11748, 25064, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 2099, 87, 13, 12685, 6012, 273, 1330, 14711, 6012, 273, 198, 198, 489, 83, 13, 6015, 12286, 82, 3419, 198, 15414, 62, 5239, 796, 25064, 13, 19282, 259, 13, 961, 3419, 198, 9291, 62, 1324, 35630, 796, 23884, 198, 198, 1640, 1149, 287, 14711, 6012, 273, 13, 1847, 11909, 6242, 2767, 25, 198, 220, 220, 220, 3850, 62, 1324, 35630, 58, 10641, 60, 796, 657, 198, 198, 1640, 1149, 287, 5128, 62, 5239, 25, 198, 220, 220, 220, 611, 1149, 13, 45828, 3419, 287, 14711, 6012, 273, 13, 1847, 11909, 6242, 2767, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3850, 62, 1324, 35630, 58, 10641, 13, 45828, 3419, 60, 15853, 352, 198, 198, 82, 9741, 62, 15653, 796, 23243, 7, 198, 220, 220, 220, 220, 220, 220, 220, 3850, 62, 1324, 35630, 13, 13083, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 1994, 28, 50033, 3850, 25, 3850, 62, 1324, 35630, 58, 9291, 4357, 9575, 28, 17821, 8, 198, 82, 9741, 62, 1324, 35630, 796, 23243, 7, 9291, 62, 1324, 35630, 13, 27160, 22784, 9575, 28, 17821, 8, 198, 198, 88, 62, 1930, 796, 45941, 13, 283, 858, 7, 11925, 7, 82, 9741, 62, 1324, 35630, 4008, 198, 198, 489, 83, 13, 5657, 7, 88, 62, 1930, 11, 23243, 62, 1324, 35630, 11, 10548, 11639, 16159, 3256, 17130, 28, 16, 8, 198, 489, 83, 13, 742, 3378, 7, 88, 62, 1930, 11, 23243, 62, 15653, 8, 198, 489, 83, 13, 2645, 9608, 10786, 15057, 286, 3051, 1817, 11537, 198, 489, 83, 13, 87, 18242, 10786, 45708, 11537, 198, 489, 83, 13, 7839, 10786, 45708, 31902, 11537, 198, 489, 83, 13, 12860, 3419, 198 ]
2.623794
311
# # Copyright (c) 2018 Wind River Systems, Inc. # # SPDX-License-Identifier: Apache-2.0 # import pecan from pecan import rest from inventory.api.controllers.v1 import base from inventory.api.controllers.v1 import cpu from inventory.api.controllers.v1 import ethernet_port from inventory.api.controllers.v1 import host from inventory.api.controllers.v1 import link from inventory.api.controllers.v1 import lldp_agent from inventory.api.controllers.v1 import lldp_neighbour from inventory.api.controllers.v1 import memory from inventory.api.controllers.v1 import node from inventory.api.controllers.v1 import pci_device from inventory.api.controllers.v1 import port from inventory.api.controllers.v1 import sensor from inventory.api.controllers.v1 import sensorgroup from inventory.api.controllers.v1 import system from wsme import types as wtypes import wsmeext.pecan as wsme_pecan class MediaType(base.APIBase): """A media type representation.""" base = wtypes.text type = wtypes.text class V1(base.APIBase): """The representation of the version 1 of the API.""" id = wtypes.text "The ID of the version, also acts as the release number" media_types = [MediaType] "An array of supported media types for this version" links = [link.Link] "Links that point to a specific URL for this version and documentation" systems = [link.Link] "Links to the system resource" hosts = [link.Link] "Links to the host resource" lldp_agents = [link.Link] "Links to the lldp agents resource" lldp_neighbours = [link.Link] "Links to the lldp neighbours resource" @classmethod class Controller(rest.RestController): """Version 1 API controller root.""" systems = system.SystemController() hosts = host.HostController() nodes = node.NodeController() cpus = cpu.CPUController() memorys = memory.MemoryController() ports = port.PortController() ethernet_ports = ethernet_port.EthernetPortController() lldp_agents = lldp_agent.LLDPAgentController() lldp_neighbours = lldp_neighbour.LLDPNeighbourController() pci_devices = pci_device.PCIDeviceController() sensors = sensor.SensorController() sensorgroups = sensorgroup.SensorGroupController() @wsme_pecan.wsexpose(V1) __all__ = ('Controller',)
[ 2, 198, 2, 15069, 357, 66, 8, 2864, 3086, 5866, 11998, 11, 3457, 13, 198, 2, 198, 2, 30628, 55, 12, 34156, 12, 33234, 7483, 25, 24843, 12, 17, 13, 15, 198, 2, 628, 198, 11748, 613, 5171, 198, 6738, 613, 5171, 1330, 1334, 198, 198, 6738, 13184, 13, 15042, 13, 3642, 36667, 13, 85, 16, 1330, 2779, 198, 6738, 13184, 13, 15042, 13, 3642, 36667, 13, 85, 16, 1330, 42804, 198, 6738, 13184, 13, 15042, 13, 3642, 36667, 13, 85, 16, 1330, 28475, 3262, 62, 634, 198, 6738, 13184, 13, 15042, 13, 3642, 36667, 13, 85, 16, 1330, 2583, 198, 6738, 13184, 13, 15042, 13, 3642, 36667, 13, 85, 16, 1330, 2792, 198, 6738, 13184, 13, 15042, 13, 3642, 36667, 13, 85, 16, 1330, 32660, 26059, 62, 25781, 198, 6738, 13184, 13, 15042, 13, 3642, 36667, 13, 85, 16, 1330, 32660, 26059, 62, 710, 394, 6084, 198, 6738, 13184, 13, 15042, 13, 3642, 36667, 13, 85, 16, 1330, 4088, 198, 6738, 13184, 13, 15042, 13, 3642, 36667, 13, 85, 16, 1330, 10139, 198, 6738, 13184, 13, 15042, 13, 3642, 36667, 13, 85, 16, 1330, 39886, 62, 25202, 198, 6738, 13184, 13, 15042, 13, 3642, 36667, 13, 85, 16, 1330, 2493, 198, 6738, 13184, 13, 15042, 13, 3642, 36667, 13, 85, 16, 1330, 12694, 198, 6738, 13184, 13, 15042, 13, 3642, 36667, 13, 85, 16, 1330, 3054, 2398, 3233, 198, 198, 6738, 13184, 13, 15042, 13, 3642, 36667, 13, 85, 16, 1330, 1080, 198, 6738, 266, 82, 1326, 1330, 3858, 355, 266, 19199, 198, 11748, 266, 82, 1326, 2302, 13, 431, 5171, 355, 266, 82, 1326, 62, 431, 5171, 628, 198, 4871, 6343, 6030, 7, 8692, 13, 2969, 9865, 589, 2599, 198, 220, 220, 220, 37227, 32, 2056, 2099, 10552, 526, 15931, 628, 220, 220, 220, 2779, 796, 266, 19199, 13, 5239, 198, 220, 220, 220, 2099, 796, 266, 19199, 13, 5239, 628, 198, 4871, 569, 16, 7, 8692, 13, 2969, 9865, 589, 2599, 198, 220, 220, 220, 37227, 464, 10552, 286, 262, 2196, 352, 286, 262, 7824, 526, 15931, 628, 220, 220, 220, 4686, 796, 266, 19199, 13, 5239, 198, 220, 220, 220, 366, 464, 4522, 286, 262, 2196, 11, 635, 6529, 355, 262, 2650, 1271, 1, 628, 220, 220, 220, 2056, 62, 19199, 796, 685, 13152, 6030, 60, 198, 220, 220, 220, 366, 2025, 7177, 286, 4855, 2056, 3858, 329, 428, 2196, 1, 628, 220, 220, 220, 6117, 796, 685, 8726, 13, 11280, 60, 198, 220, 220, 220, 366, 31815, 326, 966, 284, 257, 2176, 10289, 329, 428, 2196, 290, 10314, 1, 628, 220, 220, 220, 3341, 796, 685, 8726, 13, 11280, 60, 198, 220, 220, 220, 366, 31815, 284, 262, 1080, 8271, 1, 628, 220, 220, 220, 11453, 796, 685, 8726, 13, 11280, 60, 198, 220, 220, 220, 366, 31815, 284, 262, 2583, 8271, 1, 628, 220, 220, 220, 32660, 26059, 62, 49638, 796, 685, 8726, 13, 11280, 60, 198, 220, 220, 220, 366, 31815, 284, 262, 32660, 26059, 6554, 8271, 1, 628, 220, 220, 220, 32660, 26059, 62, 710, 394, 65, 4662, 796, 685, 8726, 13, 11280, 60, 198, 220, 220, 220, 366, 31815, 284, 262, 32660, 26059, 23788, 8271, 1, 628, 220, 220, 220, 2488, 4871, 24396, 628, 198, 4871, 22741, 7, 2118, 13, 19452, 22130, 2599, 198, 220, 220, 220, 37227, 14815, 352, 7824, 10444, 6808, 526, 15931, 628, 220, 220, 220, 3341, 796, 1080, 13, 11964, 22130, 3419, 198, 220, 220, 220, 11453, 796, 2583, 13, 17932, 22130, 3419, 198, 220, 220, 220, 13760, 796, 10139, 13, 19667, 22130, 3419, 198, 220, 220, 220, 31396, 385, 796, 42804, 13, 36037, 22130, 3419, 198, 220, 220, 220, 4088, 82, 796, 4088, 13, 30871, 22130, 3419, 198, 220, 220, 220, 14090, 796, 2493, 13, 13924, 22130, 3419, 198, 220, 220, 220, 28475, 3262, 62, 3742, 796, 28475, 3262, 62, 634, 13, 36, 490, 3262, 13924, 22130, 3419, 198, 220, 220, 220, 32660, 26059, 62, 49638, 796, 32660, 26059, 62, 25781, 13, 3069, 35, 4537, 6783, 22130, 3419, 198, 220, 220, 220, 32660, 26059, 62, 710, 394, 65, 4662, 796, 32660, 26059, 62, 710, 394, 6084, 13, 3069, 6322, 46445, 6084, 22130, 3419, 198, 220, 220, 220, 39886, 62, 42034, 796, 39886, 62, 25202, 13, 5662, 2389, 1990, 501, 22130, 3419, 198, 220, 220, 220, 15736, 796, 12694, 13, 47864, 22130, 3419, 198, 220, 220, 220, 3054, 2398, 14459, 796, 3054, 2398, 3233, 13, 47864, 13247, 22130, 3419, 628, 220, 220, 220, 2488, 18504, 1326, 62, 431, 5171, 13, 86, 8044, 3455, 7, 53, 16, 8, 628, 198, 834, 439, 834, 796, 19203, 22130, 3256, 8, 198 ]
3.051248
761
import pytest from thumbor_extras.detectors.dnn_face_detector import Detector @pytest.mark.parametrize('image_context_arg', [ 'face_image_context', 'gray_face_image_context', 'cmyk_face_image_context' ])
[ 11748, 12972, 9288, 198, 6738, 15683, 273, 62, 2302, 8847, 13, 15255, 478, 669, 13, 67, 20471, 62, 2550, 62, 15255, 9250, 1330, 4614, 9250, 198, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 10786, 9060, 62, 22866, 62, 853, 3256, 685, 198, 220, 220, 220, 705, 2550, 62, 9060, 62, 22866, 3256, 705, 44605, 62, 2550, 62, 9060, 62, 22866, 3256, 705, 66, 1820, 74, 62, 2550, 62, 9060, 62, 22866, 6, 198, 12962, 198 ]
2.64557
79
import time hall1 = Sensor(1) hall1.enable() # set start times to show display is working t1 = 999 while True: td1 = hall1.getDiff() if td1 != None: t1 = td1 printToDisplay(t1)
[ 11748, 640, 198, 198, 18323, 16, 796, 35367, 7, 16, 8, 198, 18323, 16, 13, 21633, 3419, 198, 198, 2, 900, 923, 1661, 284, 905, 3359, 318, 1762, 198, 83, 16, 796, 36006, 198, 198, 4514, 6407, 25, 198, 197, 8671, 16, 796, 6899, 16, 13, 1136, 28813, 3419, 198, 197, 361, 41560, 16, 14512, 6045, 25, 198, 197, 197, 83, 16, 796, 41560, 16, 198, 197, 198, 197, 4798, 2514, 23114, 7, 83, 16, 8, 198, 197 ]
2.410256
78
""" By David Oswald, [email protected] 26 August 2015 Some of this code is based on information or code from - Sam Kerr: http://samuelkerr.com/?p=431 - Eli Bendersky: http://eli.thegreenplace.net/2009/03/07/computing-modular-square-roots-in-python/ - http://cr.yp.to/highspeed/naclcrypto-20090310.pdf, page 7 The code of Eli is in the public domain: "Some of the blog posts contain code; unless otherwise stated, all of it is in the public domain" ======================================================================= This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ======================================================================= If this software is useful to you, I'd appreciate an attribution, contribution (e.g. bug fixes, improvements, ...), or a beer. """ from smartcard.Exceptions import NoCardException from smartcard.System import * from smartcard.util import toHexString from struct import * from timeit import default_timer as timer if __name__ == '__main__': main()
[ 37811, 198, 2750, 3271, 34374, 11, 288, 13, 69, 13, 418, 21667, 31, 6359, 13, 65, 2763, 13, 330, 13, 2724, 198, 2608, 2932, 1853, 198, 220, 198, 2773, 286, 428, 2438, 318, 1912, 319, 1321, 393, 2438, 422, 198, 220, 198, 532, 3409, 32879, 25, 2638, 1378, 37687, 2731, 6122, 81, 13, 785, 20924, 79, 28, 50080, 220, 198, 532, 25204, 347, 7338, 2584, 25, 2638, 1378, 43733, 13, 1169, 14809, 5372, 13, 3262, 14, 10531, 14, 3070, 14, 2998, 14, 785, 48074, 12, 4666, 934, 12, 23415, 12, 19150, 12, 259, 12, 29412, 14, 220, 198, 532, 2638, 1378, 6098, 13, 4464, 13, 1462, 14, 8929, 12287, 14, 77, 37779, 29609, 78, 12, 10531, 3070, 940, 13, 12315, 11, 2443, 767, 198, 220, 198, 383, 2438, 286, 25204, 318, 287, 262, 1171, 7386, 25, 198, 366, 4366, 286, 262, 4130, 6851, 3994, 2438, 26, 4556, 4306, 5081, 11, 477, 286, 340, 318, 220, 198, 287, 262, 1171, 7386, 1, 198, 220, 198, 38093, 50155, 198, 220, 198, 770, 318, 1479, 290, 555, 12685, 26584, 3788, 2716, 656, 262, 1171, 7386, 13, 198, 220, 198, 17462, 318, 1479, 284, 4866, 11, 13096, 11, 7715, 11, 779, 11, 17632, 11, 3677, 11, 393, 198, 14983, 428, 3788, 11, 2035, 287, 2723, 2438, 1296, 393, 355, 257, 14102, 198, 13934, 11, 329, 597, 4007, 11, 5068, 393, 1729, 12, 36313, 11, 290, 416, 597, 198, 1724, 13, 198, 220, 198, 3336, 47466, 3180, 36592, 2389, 1961, 366, 1921, 3180, 1600, 42881, 34764, 56, 3963, 15529, 509, 12115, 11, 198, 7788, 32761, 6375, 8959, 49094, 11, 47783, 2751, 21728, 5626, 40880, 5390, 3336, 34764, 11015, 3963, 198, 34482, 3398, 1565, 5603, 25382, 11, 376, 46144, 7473, 317, 16652, 2149, 37232, 33079, 48933, 5357, 44521, 1268, 10913, 2751, 12529, 13, 198, 3268, 8005, 49261, 50163, 3336, 37195, 20673, 9348, 43031, 19146, 7473, 15529, 47666, 3955, 11, 29506, 25552, 6375, 198, 25401, 43031, 25382, 11, 7655, 2767, 16879, 3268, 3537, 40282, 3963, 27342, 10659, 11, 309, 9863, 6375, 25401, 54, 24352, 11, 198, 5923, 1797, 2751, 16034, 11, 16289, 3963, 6375, 3268, 7102, 45, 24565, 13315, 3336, 47466, 6375, 3336, 23210, 6375, 198, 25401, 5550, 1847, 20754, 3268, 3336, 47466, 13, 198, 220, 198, 38093, 50155, 198, 220, 198, 1002, 428, 3788, 318, 4465, 284, 345, 11, 314, 1549, 9144, 281, 39629, 11, 198, 10156, 357, 68, 13, 70, 13, 5434, 13040, 11, 8561, 11, 2644, 828, 393, 257, 6099, 13, 198, 37811, 198, 198, 6738, 4451, 9517, 13, 3109, 11755, 1330, 1400, 16962, 16922, 198, 6738, 4451, 9517, 13, 11964, 1330, 1635, 198, 6738, 4451, 9517, 13, 22602, 1330, 284, 39, 1069, 10100, 198, 6738, 2878, 1330, 1635, 198, 6738, 640, 270, 1330, 4277, 62, 45016, 355, 19781, 628, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 1388, 3419, 198 ]
3.621053
475
#!/usr/bin/env python3 import math import time if __name__ == "__main__": start = time.time() main() end = time.time() print("Duration: {0:0.6f}s".format(end - start))
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 198, 11748, 10688, 198, 11748, 640, 628, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 923, 796, 640, 13, 2435, 3419, 198, 220, 220, 220, 1388, 3419, 198, 220, 220, 220, 886, 796, 640, 13, 2435, 3419, 198, 220, 220, 220, 3601, 7203, 26054, 25, 1391, 15, 25, 15, 13, 21, 69, 92, 82, 1911, 18982, 7, 437, 532, 923, 4008, 198 ]
2.3625
80
#!/bin/python # coding=utf-8 from optparse import OptionParser import urllib import re osmap = { 'mac' : 'Mac', 'osx' : 'Mac', 'win' : 'Windows', 'win64' : 'Windows64', 'win32' : 'Windows32', } # -------------- main -------------- if __name__ == '__main__': usage = "usage: %prog [options]" parser = OptionParser(usage=usage) parser.add_option( '-v', '--version', dest='version', help='filter unity version, beta last latest 5 5.3[+|-] 5.3.5') parser.add_option( '-o', '--os', dest='os', help='filter os, win[64|32] or osx or mac') parser.add_option( '-l', '--list', dest='list', action='store_true', default=False, help='show a list') (opts, args) = parser.parse_args() if opts.version == 'beta': urlTuples = getBetaUrlTuples() else: urlTuples = getUrlTuples() urlTuples = filterUrlTuples(urlTuples, opts.os, opts.version) if opts.list: for urlTuple in urlTuples: print urlTuple[0] elif len(urlTuples) > 0: print urlTuples[0][0]
[ 2, 48443, 8800, 14, 29412, 198, 2, 19617, 28, 40477, 12, 23, 628, 198, 6738, 2172, 29572, 1330, 16018, 46677, 198, 11748, 2956, 297, 571, 198, 11748, 302, 198, 198, 418, 8899, 796, 1391, 198, 220, 220, 220, 705, 20285, 6, 220, 220, 1058, 705, 14155, 3256, 198, 220, 220, 220, 705, 418, 87, 6, 220, 220, 1058, 705, 14155, 3256, 198, 220, 220, 220, 705, 5404, 6, 220, 220, 1058, 705, 11209, 3256, 198, 220, 220, 220, 705, 5404, 2414, 6, 1058, 705, 11209, 2414, 3256, 198, 220, 220, 220, 705, 5404, 2624, 6, 1058, 705, 11209, 2624, 3256, 198, 92, 198, 198, 2, 220, 26171, 1388, 220, 26171, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 8748, 796, 366, 26060, 25, 4064, 1676, 70, 685, 25811, 30866, 198, 220, 220, 220, 30751, 796, 16018, 46677, 7, 26060, 28, 26060, 8, 198, 220, 220, 220, 30751, 13, 2860, 62, 18076, 7, 198, 220, 220, 220, 220, 220, 220, 220, 705, 12, 85, 3256, 705, 438, 9641, 3256, 2244, 11639, 9641, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 11639, 24455, 14111, 2196, 11, 12159, 938, 3452, 642, 642, 13, 18, 58, 10, 91, 12, 60, 642, 13, 18, 13, 20, 11537, 198, 220, 220, 220, 30751, 13, 2860, 62, 18076, 7, 198, 220, 220, 220, 220, 220, 220, 220, 705, 12, 78, 3256, 705, 438, 418, 3256, 2244, 11639, 418, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 11639, 24455, 28686, 11, 1592, 58, 2414, 91, 2624, 60, 393, 28686, 87, 393, 8352, 11537, 198, 220, 220, 220, 30751, 13, 2860, 62, 18076, 7, 198, 220, 220, 220, 220, 220, 220, 220, 705, 12, 75, 3256, 705, 438, 4868, 3256, 2244, 11639, 4868, 3256, 2223, 11639, 8095, 62, 7942, 3256, 4277, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 11639, 12860, 257, 1351, 11537, 198, 220, 220, 220, 357, 404, 912, 11, 26498, 8, 796, 30751, 13, 29572, 62, 22046, 3419, 628, 220, 220, 220, 611, 2172, 82, 13, 9641, 6624, 705, 31361, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 19016, 47247, 2374, 796, 651, 43303, 28165, 47247, 2374, 3419, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 19016, 47247, 2374, 796, 651, 28165, 47247, 2374, 3419, 198, 220, 220, 220, 19016, 47247, 2374, 796, 8106, 28165, 47247, 2374, 7, 6371, 47247, 2374, 11, 2172, 82, 13, 418, 11, 2172, 82, 13, 9641, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 611, 2172, 82, 13, 4868, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 19016, 51, 29291, 287, 19016, 47247, 2374, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 19016, 51, 29291, 58, 15, 60, 198, 220, 220, 220, 1288, 361, 18896, 7, 6371, 47247, 2374, 8, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 19016, 47247, 2374, 58, 15, 7131, 15, 60, 198 ]
2.195219
502
dicts={ 0xe88f9c: [0x00,0x00,0x00,0x00,0x00,0x3F,0x00,0x00,0x00,0x00,0x07,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x0C,0x30,0x00,0x00, 0x00,0x00,0x1C,0x18,0x18,0xFF,0x18,0x18,0x10,0x00,0xFF,0x02,0x01,0x81,0xC0,0xC0,0x41,0x01,0xFF,0x07,0x0D,0x19,0x31,0x61,0xC1,0x01,0x01,0x01,0x01,0x00, 0x00,0x00,0x38,0x30,0x30,0xFF,0x30,0x30,0x07,0xFF,0x00,0x01,0x81,0xC3,0xC2,0x86,0xCC,0x88,0xFF,0xA0,0xA0,0x90,0x8C,0x86,0x83,0x81,0x80,0x80,0x00,0x00, 0x00,0x00,0x00,0x00,0x38,0xFC,0x00,0x80,0xC0,0xC0,0x00,0x80,0xC0,0x00,0x00,0x00,0x00,0x18,0xFC,0x00,0x00,0x00,0x00,0x00,0x80,0xF0,0x7C,0x10,0x00,0x00],#/*"菜",0*/ 0xe58d95: [0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x00,0x00,0x3F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x40,0x20,0x38,0x18,0x0C,0x08,0xFF,0x01,0x01,0x01,0x01,0xFF,0x01,0x01,0x01,0x01,0xFF,0x01,0x01,0x01,0xFF,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00, 0x00,0x00,0x0C,0x0C,0x18,0x10,0x20,0xFF,0x80,0x80,0x80,0x80,0xFF,0x80,0x80,0x80,0x80,0xFF,0x80,0x80,0x80,0xFF,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x38,0xFC,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00],#/*"单",1*/ 0xe697b6: [0x00,0x00,0x00,0x00,0x00,0x10,0x1F,0x18,0x18,0x18,0x18,0x18,0x18,0x1F,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x1F,0x18,0x18,0x10,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x30,0xF0,0x30,0x30,0x3F,0x30,0x30,0x30,0xF3,0x31,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0xF0,0x30,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0xFF,0x03,0x03,0x03,0x03,0x83,0xC3,0xE3,0x63,0x43,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x3F,0x06,0x04,0x00, 0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x18,0xFC,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00],#/*"时",0*/ 0xe9929f: [0x00,0x00,0x03,0x03,0x03,0x06,0x06,0x05,0x0C,0x08,0x08,0x1F,0x13,0x23,0x43,0x03,0x03,0x3F,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x01,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x18,0xE0,0x01,0x01,0x11,0xF9,0x01,0x01,0x01,0x01,0x19,0xE1,0x01,0x00,0x00,0x08,0x10,0x60,0xC0,0x80,0x00,0x00,0x00,0x00, 0x00,0x00,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0xFF,0x86,0x86,0x86,0x86,0x86,0x86,0xFF,0x86,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0xF8,0x10,0x10,0x10,0x10,0x10,0x10,0xF0,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00],#/*"钟",1*/ 0xe997b9: [0x00,0x00,0x01,0x00,0x00,0x00,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x08,0x00, 0x00,0x00,0x00,0xC0,0xE7,0x60,0x42,0x03,0x01,0x00,0xFF,0x01,0x01,0x01,0x7F,0x61,0x61,0x61,0x61,0x61,0x61,0x61,0x61,0x01,0x01,0x01,0x01,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0xFF,0x00,0x00,0x80,0x80,0x82,0xFF,0x80,0x80,0x80,0xFE,0x86,0x86,0x86,0x86,0x86,0x86,0xBC,0x8C,0x80,0x80,0x80,0x03,0x00,0x00,0x00, 0x00,0x00,0x00,0x30,0xF0,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0xE0,0xE0,0x00,0x00],#/*"闹",0*/ '30': [0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x07,0x0F,0x0F,0x1F,0x1F,0x1F,0x1F,0x1F,0x1F,0x1F,0x0F,0x0F,0x07,0x03,0x01,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x07,0x7C,0xF0,0xC0,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0xC0,0xE0,0x7C,0x07,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0xE0,0x1E,0x07,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x03,0x07,0x1E,0xE0,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0xE0,0xE0,0xF0,0xF0,0xF8,0xF8,0xF8,0xF8,0xF8,0xF0,0xF0,0xE0,0xE0,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00],#/*"0",0*/ '31': [0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0xFF,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x07,0xFF,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x40,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xF0,0xFF,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x00,0x00,0x00,0x00],#/*"1",1*/ '32': [0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x07,0x0F,0x0F,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x07,0x0C,0x1F,0x1F,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x0F,0xF0,0x80,0x00,0x00,0xC0,0xC0,0x00,0x00,0x00,0x00,0x00,0x01,0x07,0x1C,0x70,0xC0,0x00,0x00,0xFF,0xFF,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0xF0,0x1F,0x03,0x01,0x01,0x01,0x01,0x03,0x07,0x0F,0x1C,0x70,0xC0,0x00,0x00,0x00,0x00,0x00,0x01,0xFF,0xFF,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0xE0,0xE0,0xE0,0xE0,0xE0,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x60,0xE0,0xE0,0xE0,0x00,0x00,0x00,0x00],#/*"2",2*/ '33': [0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x07,0x07,0x07,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x0F,0x0F,0x07,0x01,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x1F,0xE0,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x0F,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0xE0,0x1F,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0xE0,0x3E,0x0F,0x07,0x03,0x03,0x03,0x07,0x1E,0xE0,0x7C,0x07,0x03,0x01,0x01,0x01,0x01,0x01,0x03,0x1E,0xE0,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xC0,0xC0,0xC0,0xC0,0x80,0x00,0x00,0x00,0x80,0xE0,0xE0,0xF0,0xF0,0xF0,0xE0,0xC0,0x00,0x00,0x00,0x00,0x00,0x00],#/*"3",3*/ '34': [0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x07,0x0C,0x18,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x07,0x0C,0x18,0x70,0xC0,0x80,0x00,0x00,0x00,0xFF,0x00,0x00,0x00,0x00,0x00,0x0F,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x0E,0x1E,0x7E,0xDE,0x9E,0x1E,0x1E,0x1E,0x1E,0x1E,0x1E,0x1E,0x1E,0x1E,0xFF,0x1E,0x1E,0x1E,0x1E,0x3F,0xFF,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xF8,0x00,0x00,0x00,0x00,0x00,0xF8,0x00,0x00,0x00,0x00],#/*"4",4*/ '35': [0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x00,0x00,0x00,0x00,0x0F,0x0F,0x0F,0x07,0x01,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x3F,0xE0,0x80,0x00,0x00,0x00,0x00,0x80,0x80,0x00,0x00,0xE0,0x1F,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFE,0x07,0x03,0x01,0x00,0x00,0x00,0x00,0x01,0x01,0x07,0x1F,0xF0,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0xE0,0xE0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xE0,0xE0,0xF0,0xF0,0xF0,0xF0,0xE0,0xE0,0x80,0x00,0x00,0x00,0x00,0x00,0x00],#/*"5",5*/ '36': [0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x07,0x0F,0x0F,0x1F,0x1F,0x1F,0x1F,0x1F,0x1F,0x1F,0x0F,0x07,0x07,0x01,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x01,0x3E,0xE0,0xC0,0x80,0x80,0x00,0x00,0x0F,0x78,0xC0,0x80,0x00,0x00,0x00,0x00,0x80,0xC0,0xE0,0x78,0x07,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0xFC,0x07,0x07,0x07,0x00,0x00,0x00,0x00,0xFF,0x07,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x07,0xF8,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xC0,0xC0,0x00,0x00,0x00,0x00,0x00,0xC0,0xE0,0xF0,0xF8,0xF8,0xF8,0xF8,0xF0,0xE0,0xC0,0x00,0x00,0x00,0x00,0x00,0x00],#/*"6",6*/ '37': [0x00,0x00,0x00,0x00,0x00,0x03,0x07,0x07,0x06,0x0C,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x07,0x07,0x0F,0x0F,0x1F,0x1F,0x1F,0x07,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x00,0x01,0x03,0x06,0x0C,0x18,0x30,0x70,0xE0,0xC0,0xC0,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0xF0,0xF0,0xE0,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00],#/*"7",7*/ '38': [0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x07,0x0F,0x0E,0x0F,0x0F,0x07,0x01,0x00,0x00,0x03,0x07,0x0E,0x1C,0x1C,0x1C,0x0E,0x07,0x01,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x0F,0xF0,0x80,0x00,0x00,0x00,0x80,0xE0,0xFC,0x3F,0x77,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x1F,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0xF0,0x0F,0x01,0x00,0x00,0x00,0x00,0x01,0x07,0xF8,0xFC,0x3F,0x07,0x01,0x00,0x00,0x00,0x00,0x01,0x0F,0xF0,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0xE0,0xF0,0xF0,0xE0,0xC0,0x00,0x00,0x00,0x80,0xC0,0xE0,0xF0,0xF0,0xF0,0xE0,0xC0,0x00,0x00,0x00,0x00,0x00,0x00],#/*"8",8*/ '39': [0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x07,0x0F,0x1E,0x1E,0x1E,0x1E,0x1E,0x1F,0x0F,0x03,0x00,0x00,0x00,0x00,0x00,0x07,0x07,0x03,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x1F,0xE0,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xE0,0xFF,0x00,0x00,0x00,0x00,0xC0,0xC0,0xE0,0x7F,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0xE0,0x1E,0x07,0x03,0x01,0x00,0x00,0x00,0x01,0x03,0x06,0x38,0xE1,0x01,0x01,0x03,0x03,0x07,0x1E,0x78,0x80,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xC0,0xE0,0xF0,0xF0,0xF0,0xF0,0xF0,0xF0,0xF0,0xF0,0xF0,0xE0,0xC0,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00],#/*"9",9*/ '20': [0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00],#/*" ",1*/ '3a': [0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x00,0x00,0x00,0x00]#/*":",1*/ }
[ 11600, 82, 34758, 198, 15, 27705, 3459, 69, 24, 66, 25, 198, 197, 58, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 18, 37, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 2998, 11, 15, 87, 405, 11, 15, 87, 2999, 11, 15, 87, 486, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 22, 37, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 3070, 11, 15, 87, 15, 34, 11, 15, 87, 1270, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 16, 34, 11, 15, 87, 1507, 11, 15, 87, 1507, 11, 15, 87, 5777, 11, 15, 87, 1507, 11, 15, 87, 1507, 11, 15, 87, 940, 11, 15, 87, 405, 11, 15, 87, 5777, 11, 15, 87, 2999, 11, 15, 87, 486, 11, 15, 87, 6659, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 3901, 11, 15, 87, 486, 11, 15, 87, 5777, 11, 15, 87, 2998, 11, 15, 87, 15, 35, 11, 15, 87, 1129, 11, 15, 87, 3132, 11, 15, 87, 5333, 11, 15, 87, 34, 16, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 2548, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 5777, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 2998, 11, 15, 87, 5777, 11, 15, 87, 405, 11, 15, 87, 486, 11, 15, 87, 6659, 11, 15, 87, 34, 18, 11, 15, 87, 34, 17, 11, 15, 87, 4521, 11, 15, 87, 4093, 11, 15, 87, 3459, 11, 15, 87, 5777, 11, 15, 87, 32, 15, 11, 15, 87, 32, 15, 11, 15, 87, 3829, 11, 15, 87, 23, 34, 11, 15, 87, 4521, 11, 15, 87, 5999, 11, 15, 87, 6659, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 2548, 11, 15, 87, 4851, 11, 15, 87, 405, 11, 15, 87, 1795, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 405, 11, 15, 87, 1795, 11, 15, 87, 34, 15, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 1507, 11, 15, 87, 4851, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 1795, 11, 15, 87, 37, 15, 11, 15, 87, 22, 34, 11, 15, 87, 940, 11, 15, 87, 405, 11, 15, 87, 405, 4357, 2, 15211, 1, 164, 237, 250, 1600, 15, 16208, 198, 15, 27705, 3365, 67, 3865, 25, 198, 197, 58, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 18, 37, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 1821, 11, 15, 87, 1238, 11, 15, 87, 2548, 11, 15, 87, 1507, 11, 15, 87, 15, 34, 11, 15, 87, 2919, 11, 15, 87, 5777, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 5777, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 5777, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 5777, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 15, 34, 11, 15, 87, 15, 34, 11, 15, 87, 1507, 11, 15, 87, 940, 11, 15, 87, 1238, 11, 15, 87, 5777, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 5777, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 5777, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 5777, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 34, 15, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 2548, 11, 15, 87, 4851, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 4357, 2, 15211, 1, 39355, 243, 1600, 16, 16208, 198, 15, 27705, 40035, 65, 21, 25, 198, 197, 58, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 940, 11, 15, 87, 16, 37, 11, 15, 87, 1507, 11, 15, 87, 1507, 11, 15, 87, 1507, 11, 15, 87, 1507, 11, 15, 87, 1507, 11, 15, 87, 1507, 11, 15, 87, 16, 37, 11, 15, 87, 1507, 11, 15, 87, 1507, 11, 15, 87, 1507, 11, 15, 87, 1507, 11, 15, 87, 1507, 11, 15, 87, 1507, 11, 15, 87, 1507, 11, 15, 87, 1507, 11, 15, 87, 16, 37, 11, 15, 87, 1507, 11, 15, 87, 1507, 11, 15, 87, 940, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 1270, 11, 15, 87, 37, 15, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 18, 37, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 37, 18, 11, 15, 87, 3132, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 37, 15, 11, 15, 87, 1270, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 5777, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 5999, 11, 15, 87, 34, 18, 11, 15, 87, 36, 18, 11, 15, 87, 5066, 11, 15, 87, 3559, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 18, 37, 11, 15, 87, 3312, 11, 15, 87, 3023, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 1795, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 1507, 11, 15, 87, 4851, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 4357, 2, 15211, 1, 33768, 114, 1600, 15, 16208, 198, 198, 15, 27705, 2079, 1959, 69, 25, 198, 197, 58, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3312, 11, 15, 87, 3312, 11, 15, 87, 2713, 11, 15, 87, 15, 34, 11, 15, 87, 2919, 11, 15, 87, 2919, 11, 15, 87, 16, 37, 11, 15, 87, 1485, 11, 15, 87, 1954, 11, 15, 87, 3559, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 18, 37, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 486, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 1507, 11, 15, 87, 36, 15, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 1157, 11, 15, 87, 37, 24, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 1129, 11, 15, 87, 36, 16, 11, 15, 87, 486, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 2919, 11, 15, 87, 940, 11, 15, 87, 1899, 11, 15, 87, 34, 15, 11, 15, 87, 1795, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 3312, 11, 15, 87, 3312, 11, 15, 87, 3312, 11, 15, 87, 3312, 11, 15, 87, 3312, 11, 15, 87, 3312, 11, 15, 87, 3312, 11, 15, 87, 5777, 11, 15, 87, 4521, 11, 15, 87, 4521, 11, 15, 87, 4521, 11, 15, 87, 4521, 11, 15, 87, 4521, 11, 15, 87, 4521, 11, 15, 87, 5777, 11, 15, 87, 4521, 11, 15, 87, 3312, 11, 15, 87, 3312, 11, 15, 87, 3312, 11, 15, 87, 3312, 11, 15, 87, 3312, 11, 15, 87, 3312, 11, 15, 87, 3312, 11, 15, 87, 3312, 11, 15, 87, 3312, 11, 15, 87, 3312, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 1507, 11, 15, 87, 37, 23, 11, 15, 87, 940, 11, 15, 87, 940, 11, 15, 87, 940, 11, 15, 87, 940, 11, 15, 87, 940, 11, 15, 87, 940, 11, 15, 87, 37, 15, 11, 15, 87, 940, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 4357, 2, 15211, 1, 165, 240, 253, 1600, 16, 16208, 198, 15, 27705, 39647, 65, 24, 25, 198, 197, 58, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 486, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 15, 34, 11, 15, 87, 15, 34, 11, 15, 87, 15, 34, 11, 15, 87, 15, 34, 11, 15, 87, 15, 34, 11, 15, 87, 15, 34, 11, 15, 87, 15, 34, 11, 15, 87, 15, 34, 11, 15, 87, 15, 34, 11, 15, 87, 15, 34, 11, 15, 87, 15, 34, 11, 15, 87, 15, 34, 11, 15, 87, 15, 34, 11, 15, 87, 15, 34, 11, 15, 87, 15, 34, 11, 15, 87, 15, 34, 11, 15, 87, 15, 34, 11, 15, 87, 15, 34, 11, 15, 87, 15, 34, 11, 15, 87, 15, 34, 11, 15, 87, 15, 34, 11, 15, 87, 15, 34, 11, 15, 87, 2919, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 34, 15, 11, 15, 87, 36, 22, 11, 15, 87, 1899, 11, 15, 87, 3682, 11, 15, 87, 3070, 11, 15, 87, 486, 11, 15, 87, 405, 11, 15, 87, 5777, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 22, 37, 11, 15, 87, 5333, 11, 15, 87, 5333, 11, 15, 87, 5333, 11, 15, 87, 5333, 11, 15, 87, 5333, 11, 15, 87, 5333, 11, 15, 87, 5333, 11, 15, 87, 5333, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 5777, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 6469, 11, 15, 87, 5777, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 15112, 11, 15, 87, 4521, 11, 15, 87, 4521, 11, 15, 87, 4521, 11, 15, 87, 4521, 11, 15, 87, 4521, 11, 15, 87, 4521, 11, 15, 87, 2749, 11, 15, 87, 23, 34, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 3070, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 1270, 11, 15, 87, 37, 15, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 36, 15, 11, 15, 87, 36, 15, 11, 15, 87, 405, 11, 15, 87, 405, 4357, 2, 15211, 1, 29785, 117, 1600, 15, 16208, 628, 198, 6, 1270, 10354, 198, 197, 58, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 486, 11, 15, 87, 3070, 11, 15, 87, 2998, 11, 15, 87, 15, 37, 11, 15, 87, 15, 37, 11, 15, 87, 16, 37, 11, 15, 87, 16, 37, 11, 15, 87, 16, 37, 11, 15, 87, 16, 37, 11, 15, 87, 16, 37, 11, 15, 87, 16, 37, 11, 15, 87, 16, 37, 11, 15, 87, 15, 37, 11, 15, 87, 15, 37, 11, 15, 87, 2998, 11, 15, 87, 3070, 11, 15, 87, 486, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 2998, 11, 15, 87, 22, 34, 11, 15, 87, 37, 15, 11, 15, 87, 34, 15, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 34, 15, 11, 15, 87, 36, 15, 11, 15, 87, 22, 34, 11, 15, 87, 2998, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 36, 15, 11, 15, 87, 16, 36, 11, 15, 87, 2998, 11, 15, 87, 3070, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 3070, 11, 15, 87, 2998, 11, 15, 87, 16, 36, 11, 15, 87, 36, 15, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 34, 15, 11, 15, 87, 36, 15, 11, 15, 87, 36, 15, 11, 15, 87, 37, 15, 11, 15, 87, 37, 15, 11, 15, 87, 37, 23, 11, 15, 87, 37, 23, 11, 15, 87, 37, 23, 11, 15, 87, 37, 23, 11, 15, 87, 37, 23, 11, 15, 87, 37, 15, 11, 15, 87, 37, 15, 11, 15, 87, 36, 15, 11, 15, 87, 36, 15, 11, 15, 87, 34, 15, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 4357, 2, 15211, 1, 15, 1600, 15, 16208, 198, 6, 3132, 10354, 198, 197, 58, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 486, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 486, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 486, 11, 15, 87, 5777, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 2998, 11, 15, 87, 5777, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 1821, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 37, 15, 11, 15, 87, 5777, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 34, 15, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 4357, 2, 15211, 1, 16, 1600, 16, 16208, 198, 6, 2624, 10354, 198, 197, 58, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 3070, 11, 15, 87, 2998, 11, 15, 87, 15, 37, 11, 15, 87, 15, 37, 11, 15, 87, 2998, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 486, 11, 15, 87, 2998, 11, 15, 87, 15, 34, 11, 15, 87, 16, 37, 11, 15, 87, 16, 37, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 15, 37, 11, 15, 87, 37, 15, 11, 15, 87, 1795, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 486, 11, 15, 87, 2998, 11, 15, 87, 16, 34, 11, 15, 87, 2154, 11, 15, 87, 34, 15, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 5777, 11, 15, 87, 5777, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 37, 15, 11, 15, 87, 16, 37, 11, 15, 87, 3070, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 3070, 11, 15, 87, 2998, 11, 15, 87, 15, 37, 11, 15, 87, 16, 34, 11, 15, 87, 2154, 11, 15, 87, 34, 15, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 486, 11, 15, 87, 5777, 11, 15, 87, 5777, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 34, 15, 11, 15, 87, 36, 15, 11, 15, 87, 36, 15, 11, 15, 87, 36, 15, 11, 15, 87, 36, 15, 11, 15, 87, 36, 15, 11, 15, 87, 34, 15, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 1270, 11, 15, 87, 1270, 11, 15, 87, 1899, 11, 15, 87, 36, 15, 11, 15, 87, 36, 15, 11, 15, 87, 36, 15, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 4357, 2, 15211, 1, 17, 1600, 17, 16208, 198, 6, 2091, 10354, 198, 197, 58, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 486, 11, 15, 87, 2998, 11, 15, 87, 2998, 11, 15, 87, 2998, 11, 15, 87, 2998, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 2998, 11, 15, 87, 15, 37, 11, 15, 87, 15, 37, 11, 15, 87, 2998, 11, 15, 87, 486, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 16, 37, 11, 15, 87, 36, 15, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 15, 37, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 36, 15, 11, 15, 87, 16, 37, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 36, 15, 11, 15, 87, 18, 36, 11, 15, 87, 15, 37, 11, 15, 87, 2998, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 2998, 11, 15, 87, 16, 36, 11, 15, 87, 36, 15, 11, 15, 87, 22, 34, 11, 15, 87, 2998, 11, 15, 87, 3070, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 3070, 11, 15, 87, 16, 36, 11, 15, 87, 36, 15, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 1795, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 1795, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 1795, 11, 15, 87, 36, 15, 11, 15, 87, 36, 15, 11, 15, 87, 37, 15, 11, 15, 87, 37, 15, 11, 15, 87, 37, 15, 11, 15, 87, 36, 15, 11, 15, 87, 34, 15, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 4357, 2, 15211, 1, 18, 1600, 18, 16208, 198, 6, 2682, 10354, 198, 197, 58, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 486, 11, 15, 87, 2998, 11, 15, 87, 15, 34, 11, 15, 87, 1507, 11, 15, 87, 2998, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 486, 11, 15, 87, 2998, 11, 15, 87, 15, 34, 11, 15, 87, 1507, 11, 15, 87, 2154, 11, 15, 87, 34, 15, 11, 15, 87, 1795, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 5777, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 15, 37, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 15, 36, 11, 15, 87, 16, 36, 11, 15, 87, 22, 36, 11, 15, 87, 7206, 11, 15, 87, 24, 36, 11, 15, 87, 16, 36, 11, 15, 87, 16, 36, 11, 15, 87, 16, 36, 11, 15, 87, 16, 36, 11, 15, 87, 16, 36, 11, 15, 87, 16, 36, 11, 15, 87, 16, 36, 11, 15, 87, 16, 36, 11, 15, 87, 16, 36, 11, 15, 87, 5777, 11, 15, 87, 16, 36, 11, 15, 87, 16, 36, 11, 15, 87, 16, 36, 11, 15, 87, 16, 36, 11, 15, 87, 18, 37, 11, 15, 87, 5777, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 37, 23, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 37, 23, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 4357, 2, 15211, 1, 19, 1600, 19, 16208, 198, 6, 2327, 10354, 198, 197, 58, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 15, 37, 11, 15, 87, 15, 37, 11, 15, 87, 15, 37, 11, 15, 87, 2998, 11, 15, 87, 486, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 5777, 11, 15, 87, 5777, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 18, 37, 11, 15, 87, 36, 15, 11, 15, 87, 1795, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 36, 15, 11, 15, 87, 16, 37, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 5777, 11, 15, 87, 5777, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 15112, 11, 15, 87, 2998, 11, 15, 87, 3070, 11, 15, 87, 486, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 2998, 11, 15, 87, 16, 37, 11, 15, 87, 37, 15, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 36, 15, 11, 15, 87, 36, 15, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 1795, 11, 15, 87, 36, 15, 11, 15, 87, 36, 15, 11, 15, 87, 37, 15, 11, 15, 87, 37, 15, 11, 15, 87, 37, 15, 11, 15, 87, 37, 15, 11, 15, 87, 36, 15, 11, 15, 87, 36, 15, 11, 15, 87, 1795, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 4357, 2, 15211, 1, 20, 1600, 20, 16208, 198, 6, 2623, 10354, 198, 197, 58, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 486, 11, 15, 87, 3070, 11, 15, 87, 2998, 11, 15, 87, 15, 37, 11, 15, 87, 15, 37, 11, 15, 87, 16, 37, 11, 15, 87, 16, 37, 11, 15, 87, 16, 37, 11, 15, 87, 16, 37, 11, 15, 87, 16, 37, 11, 15, 87, 16, 37, 11, 15, 87, 16, 37, 11, 15, 87, 15, 37, 11, 15, 87, 2998, 11, 15, 87, 2998, 11, 15, 87, 486, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 486, 11, 15, 87, 18, 36, 11, 15, 87, 36, 15, 11, 15, 87, 34, 15, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 15, 37, 11, 15, 87, 3695, 11, 15, 87, 34, 15, 11, 15, 87, 1795, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 1795, 11, 15, 87, 34, 15, 11, 15, 87, 36, 15, 11, 15, 87, 3695, 11, 15, 87, 2998, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 4851, 11, 15, 87, 2998, 11, 15, 87, 2998, 11, 15, 87, 2998, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 5777, 11, 15, 87, 2998, 11, 15, 87, 486, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 486, 11, 15, 87, 2998, 11, 15, 87, 37, 23, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 1795, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 34, 15, 11, 15, 87, 36, 15, 11, 15, 87, 37, 15, 11, 15, 87, 37, 23, 11, 15, 87, 37, 23, 11, 15, 87, 37, 23, 11, 15, 87, 37, 23, 11, 15, 87, 37, 15, 11, 15, 87, 36, 15, 11, 15, 87, 34, 15, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 4357, 2, 15211, 1, 21, 1600, 21, 16208, 198, 6, 2718, 10354, 198, 197, 58, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 3070, 11, 15, 87, 2998, 11, 15, 87, 2998, 11, 15, 87, 3312, 11, 15, 87, 15, 34, 11, 15, 87, 3023, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 5777, 11, 15, 87, 5777, 11, 15, 87, 34, 15, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 486, 11, 15, 87, 3070, 11, 15, 87, 2998, 11, 15, 87, 2998, 11, 15, 87, 15, 37, 11, 15, 87, 15, 37, 11, 15, 87, 16, 37, 11, 15, 87, 16, 37, 11, 15, 87, 16, 37, 11, 15, 87, 2998, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 5777, 11, 15, 87, 5777, 11, 15, 87, 405, 11, 15, 87, 486, 11, 15, 87, 3070, 11, 15, 87, 3312, 11, 15, 87, 15, 34, 11, 15, 87, 1507, 11, 15, 87, 1270, 11, 15, 87, 2154, 11, 15, 87, 36, 15, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 1795, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 37, 15, 11, 15, 87, 37, 15, 11, 15, 87, 36, 15, 11, 15, 87, 34, 15, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 4357, 2, 15211, 1, 22, 1600, 22, 16208, 198, 6, 2548, 10354, 198, 197, 58, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 486, 11, 15, 87, 2998, 11, 15, 87, 15, 37, 11, 15, 87, 15, 36, 11, 15, 87, 15, 37, 11, 15, 87, 15, 37, 11, 15, 87, 2998, 11, 15, 87, 486, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 3070, 11, 15, 87, 2998, 11, 15, 87, 15, 36, 11, 15, 87, 16, 34, 11, 15, 87, 16, 34, 11, 15, 87, 16, 34, 11, 15, 87, 15, 36, 11, 15, 87, 2998, 11, 15, 87, 486, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 15, 37, 11, 15, 87, 37, 15, 11, 15, 87, 1795, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 1795, 11, 15, 87, 36, 15, 11, 15, 87, 4851, 11, 15, 87, 18, 37, 11, 15, 87, 3324, 11, 15, 87, 34, 15, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 36, 15, 11, 15, 87, 16, 37, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 37, 15, 11, 15, 87, 15, 37, 11, 15, 87, 486, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 486, 11, 15, 87, 2998, 11, 15, 87, 37, 23, 11, 15, 87, 4851, 11, 15, 87, 18, 37, 11, 15, 87, 2998, 11, 15, 87, 486, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 486, 11, 15, 87, 15, 37, 11, 15, 87, 37, 15, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 34, 15, 11, 15, 87, 36, 15, 11, 15, 87, 37, 15, 11, 15, 87, 37, 15, 11, 15, 87, 36, 15, 11, 15, 87, 34, 15, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 1795, 11, 15, 87, 34, 15, 11, 15, 87, 36, 15, 11, 15, 87, 37, 15, 11, 15, 87, 37, 15, 11, 15, 87, 37, 15, 11, 15, 87, 36, 15, 11, 15, 87, 34, 15, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 4357, 2, 15211, 1, 23, 1600, 23, 16208, 198, 6, 2670, 10354, 198, 197, 58, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 486, 11, 15, 87, 2998, 11, 15, 87, 15, 37, 11, 15, 87, 16, 36, 11, 15, 87, 16, 36, 11, 15, 87, 16, 36, 11, 15, 87, 16, 36, 11, 15, 87, 16, 36, 11, 15, 87, 16, 37, 11, 15, 87, 15, 37, 11, 15, 87, 3070, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 2998, 11, 15, 87, 2998, 11, 15, 87, 3070, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 16, 37, 11, 15, 87, 36, 15, 11, 15, 87, 1795, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 1795, 11, 15, 87, 36, 15, 11, 15, 87, 5777, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 36, 15, 11, 15, 87, 22, 37, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 36, 15, 11, 15, 87, 16, 36, 11, 15, 87, 2998, 11, 15, 87, 3070, 11, 15, 87, 486, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 486, 11, 15, 87, 3070, 11, 15, 87, 3312, 11, 15, 87, 2548, 11, 15, 87, 36, 16, 11, 15, 87, 486, 11, 15, 87, 486, 11, 15, 87, 3070, 11, 15, 87, 3070, 11, 15, 87, 2998, 11, 15, 87, 16, 36, 11, 15, 87, 3695, 11, 15, 87, 1795, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 1795, 11, 15, 87, 34, 15, 11, 15, 87, 36, 15, 11, 15, 87, 37, 15, 11, 15, 87, 37, 15, 11, 15, 87, 37, 15, 11, 15, 87, 37, 15, 11, 15, 87, 37, 15, 11, 15, 87, 37, 15, 11, 15, 87, 37, 15, 11, 15, 87, 37, 15, 11, 15, 87, 37, 15, 11, 15, 87, 36, 15, 11, 15, 87, 34, 15, 11, 15, 87, 34, 15, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 4357, 2, 15211, 1, 24, 1600, 24, 16208, 198, 6, 1238, 10354, 198, 197, 58, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 198, 197, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 4357, 2, 15211, 1, 33172, 16, 16208, 198, 6, 18, 64, 10354, 198, 197, 58, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 1821, 11, 15, 87, 1821, 11, 15, 87, 1821, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 1821, 11, 15, 87, 1821, 11, 15, 87, 1821, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 11, 15, 87, 405, 60, 2, 15211, 1298, 1600, 16, 16208, 198, 197, 198, 197, 92 ]
1.202212
8,501
import tensorflow as tf import numpy as np # computes VGG loss or content loss
[ 11748, 11192, 273, 11125, 355, 48700, 198, 11748, 299, 32152, 355, 45941, 628, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 1303, 552, 1769, 569, 11190, 2994, 393, 2695, 2994, 628, 220, 220, 220, 220 ]
2.512821
39
from ..utils import Object class GetSuitableDiscussionChats(Object): """ Returns a list of basic group and supergroup chats, which can be used as a discussion group for a channel. Basic group chats need to be first upgraded to supergroups before they can be set as a discussion group Attributes: ID (:obj:`str`): ``GetSuitableDiscussionChats`` No parameters required. Returns: Chats Raises: :class:`telegram.Error` """ ID = "getSuitableDiscussionChats" @staticmethod
[ 198, 198, 6738, 11485, 26791, 1330, 9515, 628, 198, 4871, 3497, 5606, 4674, 34255, 1925, 1381, 7, 10267, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 16409, 257, 1351, 286, 4096, 1448, 290, 2208, 8094, 40815, 11, 543, 460, 307, 973, 355, 257, 5114, 1448, 329, 257, 6518, 13, 14392, 1448, 40815, 761, 284, 307, 717, 17955, 284, 2208, 24432, 878, 484, 460, 307, 900, 355, 257, 5114, 1448, 628, 220, 220, 220, 49213, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4522, 357, 25, 26801, 25, 63, 2536, 63, 2599, 7559, 3855, 5606, 4674, 34255, 1925, 1381, 15506, 628, 220, 220, 220, 1400, 10007, 2672, 13, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 609, 1381, 628, 220, 220, 220, 7567, 2696, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4871, 25, 63, 660, 30536, 13, 12331, 63, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 4522, 796, 366, 1136, 5606, 4674, 34255, 1925, 1381, 1, 628, 220, 220, 220, 2488, 12708, 24396, 198 ]
3.028249
177