content
stringlengths
1
1.04M
input_ids
sequencelengths
1
774k
ratio_char_token
float64
0.38
22.9
token_count
int64
1
774k
from pyvisdk.esxcli.executer import execute_soap from pyvisdk.esxcli.base import Base class StorageCorePathStats(Base): ''' Stats operations pertaining to the pluggable storage architectures' device paths on the system. ''' moid = 'ha-cli-handler-storage-core-path-stats' def get(self, path=None): ''' List the SCSI stats for the SCSI Paths in the system. :param path: string, Limit the stats output to one specific path. This path name can be the runtime name or the path UID. :returns: vim.EsxCLI.storage.core.path.stats.get.ScsiPathStats[] ''' return execute_soap(self._client, self._host, self.moid, 'vim.EsxCLI.storage.core.path.stats.Get', path=path, )
[ 198, 6738, 12972, 4703, 34388, 13, 274, 87, 44506, 13, 18558, 11894, 1330, 12260, 62, 568, 499, 198, 6738, 12972, 4703, 34388, 13, 274, 87, 44506, 13, 8692, 1330, 7308, 198, 198, 4871, 20514, 14055, 15235, 29668, 7, 14881, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 20595, 4560, 27113, 284, 262, 6107, 70, 540, 6143, 45619, 6, 3335, 13532, 319, 262, 1080, 13, 220, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 285, 1868, 796, 705, 3099, 12, 44506, 12, 30281, 12, 35350, 12, 7295, 12, 6978, 12, 34242, 6, 198, 220, 220, 220, 825, 651, 7, 944, 11, 3108, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 262, 6374, 11584, 9756, 329, 262, 6374, 11584, 10644, 82, 287, 262, 1080, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 3108, 25, 4731, 11, 27272, 262, 9756, 5072, 284, 530, 2176, 3108, 13, 770, 3108, 1438, 460, 307, 262, 19124, 1438, 393, 262, 3108, 25105, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 82, 25, 43907, 13, 23041, 87, 5097, 40, 13, 35350, 13, 7295, 13, 6978, 13, 34242, 13, 1136, 13, 3351, 13396, 15235, 29668, 21737, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 12260, 62, 568, 499, 7, 944, 13557, 16366, 11, 2116, 13557, 4774, 11, 2116, 13, 76, 1868, 11, 705, 31124, 13, 23041, 87, 5097, 40, 13, 35350, 13, 7295, 13, 6978, 13, 34242, 13, 3855, 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, 3108, 28, 6978, 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, 1267, 220, 220, 220 ]
2.380665
331
from dataclasses import dataclass from typing import Optional @dataclass
[ 6738, 4818, 330, 28958, 1330, 4818, 330, 31172, 198, 6738, 19720, 1330, 32233, 628, 198, 31, 19608, 330, 31172, 198 ]
3.75
20
#BEWARE: automatically generated code #This code was generated by /generate/__main__.py from opengl.gl.raw.bindings import * @accepts(t.enum, t.enum) @returns(t.void) @binds(dll) def blend_equation_separate(modergb, modealpha): ''' set the RGB blend equation and the alpha blend equation separately. Args: modergb: the rgb blend equation, how the red, green, and blue components of the source and destination colors are combined. modealpha: the alpha blend equation, how the alpha component of the source and destination colors are combined. ''' @accepts(t.sizei, POINTER(t.enum)) @returns(t.void) @binds(dll) def draw_buffers(n, bufs): ''' Specifies a list of color buffers to be drawn into. gl.draw_buffers and gl.named_framebuffer_draw_buffers define an array of buffers into which outputs from the fragment shader data will be written. If a fragment shader writes a value to one or more user defined output variables, then the value of each variable will be written into the buffer specified at a location within bufs corresponding to the location assigned to that user defined output. The draw buffer used for user defined outputs assigned to locations greater than or equal to n is implicitly set to gl.NONE and any data written to such an output is discarded. Args: n: the number of buffers in bufs. bufs: points to an array of symbolic constants specifying the buffers into which fragment colors or data values will be written. ''' @accepts(t.enum, t.enum, t.enum, t.enum) @returns(t.void) @binds(dll) def stencil_op_separate(face, sfail, dpfail, dppass): ''' set front and/or back stencil test actions. gl.stencil_op_separate takes three arguments that indicate what happens to the stored stencil value while stenciling is enabled. If the stencil test fails, no change is made to the pixel's color or depth buffers, and sfail specifies what happens to the stencil buffer contents. The following eight actions are possible. Args: face: whether front and/or back stencil state is updated. sfail: the action to take when the stencil test fails. dpfail: the stencil action when the stencil test passes, but the depth test fails. dppass: the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. ''' @accepts(t.enum, t.enum, t.int, t.uint) @returns(t.void) @binds(dll) def stencil_func_separate(face, func, ref, mask): ''' set front and/or back function and reference value for stencil testing. Args: face: whether front and/or back stencil state is updated. func: the test function. ref: the reference value for the stencil test. mask: a mask that is anded with both the reference value and the stored stencil value when the test is done. ''' @accepts(t.enum, t.uint) @returns(t.void) @binds(dll) def stencil_mask_separate(face, mask): ''' control the front and/or back writing of individual bits in the stencil planes. gl.stencil_mask_separate controls the writing of individual bits in the stencil planes. The least significant n bits of mask, where. Args: face: whether the front and/or back stencil writemask is updated. mask: a bit mask to enable and disable writing of individual bits in the stencil planes. ''' @accepts(t.uint, t.uint) @returns(t.void) @binds(dll) def attach_shader(program, shader): ''' Attaches a shader object to a program object. Args: program: the program object to which a shader object will be attached. shader: the shader object that is to be attached. ''' @accepts(t.uint, t.uint, t.char_p) @returns(t.void) @binds(dll) def bind_attrib_location(program, index, name): ''' Associates a generic vertex attribute index with a named attribute variable. gl.bind_attrib_location is used to associate a user-defined attribute variable in the program object specified by program with a generic vertex attribute index. The name of the user-defined attribute variable is passed as a null terminated string in name. The generic vertex attribute index to be bound to this variable is specified by index. When program is made part of current state, values provided via the generic vertex attribute index will modify the value of the user-defined attribute variable specified by name. Args: program: the handle of the program object in which the association is to be made. index: the index of the generic vertex attribute to be bound. name: a null terminated string containing the name of the vertex shader attribute variable to which index is to be bound. ''' @accepts(t.uint) @returns(t.void) @binds(dll) def compile_shader(shader): ''' Compiles a shader object. gl.compile_shader compiles the source code strings that have been stored in the shader object specified by shader. Args: shader: the shader object to be compiled. ''' @accepts() @returns(t.uint) @binds(dll) def create_program(): ''' Creates a program object. ''' @accepts(t.enum) @returns(t.uint) @binds(dll) def create_shader(type): ''' Creates a shader object. gl.create_shader creates an empty shader object and returns a non-zero value by which it can be referenced. A shader object is used to maintain the source code strings that define a shader. shaderType indicates the type of shader to be created. Five types of shader are supported. Args: type: the type of shader to be created. ''' @accepts(t.uint) @returns(t.void) @binds(dll) def delete_program(program): ''' Deletes a program object. gl.delete_program frees the memory and invalidates the name associated with the program object specified by program. This command effectively undoes the effects of a call to gl.create_program. Args: program: the program object to be deleted. ''' @accepts(t.uint) @returns(t.void) @binds(dll) def delete_shader(shader): ''' Deletes a shader object. gl.delete_shader frees the memory and invalidates the name associated with the shader object specified by shader. This command effectively undoes the effects of a call to gl.create_shader. Args: shader: the shader object to be deleted. ''' @accepts(t.uint, t.uint) @returns(t.void) @binds(dll) def detach_shader(program, shader): ''' Detaches a shader object from a program object to which it is attached. gl.detach_shader detaches the shader object specified by shader from the program object specified by program. This command can be used to undo the effect of the command gl.attach_shader. Args: program: the program object from which to detach the shader object. shader: the shader object to be detached. ''' @accepts(t.uint) @returns(t.void) @binds(dll) @accepts(t.uint) @returns(t.void) @binds(dll) def enable_vertex_attrib_array(index): ''' Enable or disable a generic vertex attribute array. gl.enable_vertex_attrib_array and gl.enable_vertex_array_attrib enable the generic vertex attribute array specified by index. gl.enable_vertex_attrib_array uses currently bound vertex array object for the operation, whereas gl.enable_vertex_array_attrib updates state of the vertex array object with ID vaobj. Args: index: the index of the generic vertex attribute to be enabled or disabled. ''' @accepts(t.uint, t.uint, t.sizei, POINTER(t.sizei), POINTER(t.int), POINTER(t.enum), t.char_p) @returns(t.void) @binds(dll) def get_active_attrib(program, index, bufsize, length, size, type, name): ''' Returns information about an active attribute variable for the specified program object. gl.get_active_attrib returns information about an active attribute variable in the program object specified by program. The number of active attributes can be obtained by calling gl.get_program with the value gl.ACTIVE_ATTRIBUTES. A value of 0 for index selects the first active attribute variable. Permissible values for index range from zero to the number of active attribute variables minus one. Args: program: the program object to be queried. index: the index of the attribute variable to be queried. bufsize: the maximum number of characters opengl is allowed to write in the character buffer indicated by name. length: returns the number of characters actually written by opengl in the string indicated by name (excluding the null terminator) if a value other than null is passed. size: returns the size of the attribute variable. type: returns the data type of the attribute variable. name: returns a null terminated string containing the name of the attribute variable. ''' @accepts(t.uint, t.uint, t.sizei, POINTER(t.sizei), POINTER(t.int), POINTER(t.enum), t.char_p) @returns(t.void) @binds(dll) def get_active_uniform(program, index, bufsize, length, size, type, name): ''' Returns information about an active uniform variable for the specified program object. gl.get_active_uniform returns information about an active uniform variable in the program object specified by program. The number of active uniform variables can be obtained by calling gl.get_program with the value gl.ACTIVE_UNIFORMS. A value of 0 for index selects the first active uniform variable. Permissible values for index range from zero to the number of active uniform variables minus one. Args: program: the program object to be queried. index: the index of the uniform variable to be queried. bufsize: the maximum number of characters opengl is allowed to write in the character buffer indicated by name. length: returns the number of characters actually written by opengl in the string indicated by name (excluding the null terminator) if a value other than null is passed. size: returns the size of the uniform variable. type: returns the data type of the uniform variable. name: returns a null terminated string containing the name of the uniform variable. ''' @accepts(t.uint, t.sizei, POINTER(t.sizei), POINTER(t.uint)) @returns(t.void) @binds(dll) def get_attached_shaders(program, maxcount, count, shaders): ''' Returns the handles of the shader objects attached to a program object. gl.get_attached_shaders returns the names of the shader objects attached to program. The names of shader objects that are attached to program will be returned in shaders. The actual number of shader names written into shaders is returned in count. If no shader objects are attached to program, count is set to 0. Args: program: the program object to be queried. maxcount: the size of the array for storing the returned object names. count: returns the number of names actually returned in shaders. shaders: an array that is used to return the names of attached shader objects. ''' @accepts(t.uint, t.char_p) @returns(t.int) @binds(dll) def get_attrib_location(program, name): ''' Returns the location of an attribute variable. gl.get_attrib_location queries the previously linked program object specified by program for the attribute variable specified by name and returns the index of the generic vertex attribute that is bound to that attribute variable. If name is a matrix attribute variable, the index of the first column of the matrix is returned. If the named attribute variable is not an active attribute in the specified program object or if name starts with the reserved prefix "gl_", a value of -1 is returned. Args: program: the program object to be queried. name: points to a null terminated string containing the name of the attribute variable whose location is to be queried. ''' @accepts(t.uint, t.enum, POINTER(t.int)) @returns(t.void) @binds(dll) @accepts(t.uint, t.sizei, POINTER(t.sizei), t.char_p) @returns(t.void) @binds(dll) def get_program_info_log(program, bufsize, length, infolog): ''' Returns the information log for a program object. gl.get_program_info_log returns the information log for the specified program object. The information log for a program object is modified when the program object is linked or validated. The string that is returned will be null terminated. Args: program: the program object whose information log is to be queried. bufsize: the size of the character buffer for storing the returned information log. length: returns the length of the string returned in infolog (excluding the null terminator). infolog: an array of characters that is used to return the information log. ''' @accepts(t.uint, t.enum, POINTER(t.int)) @returns(t.void) @binds(dll) @accepts(t.uint, t.sizei, POINTER(t.sizei), t.char_p) @returns(t.void) @binds(dll) def get_shader_info_log(shader, bufsize, length, infolog): ''' Returns the information log for a shader object. gl.get_shader_info_log returns the information log for the specified shader object. The information log for a shader object is modified when the shader is compiled. The string that is returned will be null terminated. Args: shader: the shader object whose information log is to be queried. bufsize: the size of the character buffer for storing the returned information log. length: returns the length of the string returned in infolog (excluding the null terminator). infolog: an array of characters that is used to return the information log. ''' @accepts(t.uint, t.sizei, POINTER(t.sizei), t.char_p) @returns(t.void) @binds(dll) def get_shader_source(shader, bufsize, length, source): ''' Returns the source code string from a shader object. gl.get_shader_source returns the concatenation of the source code strings from the shader object specified by shader. The source code strings for a shader object are the result of a previous call to gl.shader_source. The string returned by the function will be null terminated. Args: shader: the shader object to be queried. bufsize: the size of the character buffer for storing the returned source code string. length: returns the length of the string returned in source (excluding the null terminator). source: an array of characters that is used to return the source code string. ''' @accepts(t.uint, t.char_p) @returns(t.int) @binds(dll) def get_uniform_location(program, name): ''' Returns the location of a uniform variable. gl.get_uniform_location returns an integer that represents the location of a specific uniform variable within a program object. name must be a null terminated string that contains no white space. name must be an active uniform variable name in program that is not a structure, an array of structures, or a subcomponent of a vector or a matrix. This function returns -1 if name does not correspond to an active uniform variable in program, if name starts with the reserved prefix "gl_", or if name is associated with an atomic counter or a named uniform block. Args: program: the program object to be queried. name: points to a null terminated string containing the name of the uniform variable whose location is to be queried. ''' @accepts(t.uint, t.int, POINTER(t.float)) @returns(t.void) @binds(dll) @accepts(t.uint, t.int, POINTER(t.int)) @returns(t.void) @binds(dll) @accepts(t.uint, t.enum, POINTER(t.double)) @returns(t.void) @binds(dll) @accepts(t.uint, t.enum, POINTER(t.float)) @returns(t.void) @binds(dll) @accepts(t.uint, t.enum, POINTER(t.int)) @returns(t.void) @binds(dll) @accepts(t.uint, t.enum, t.void) @returns(t.void) @binds(dll) def get_vertex_attrib_pointerv(index, pname, pointer): ''' return the address of the specified generic vertex attribute pointer. gl.get_vertex_attrib_pointerv returns pointer information. index is the generic vertex attribute to be queried, pname is a symbolic constant indicating the pointer to be returned, and params is a pointer to a location in which to place the returned data. Args: index: the generic vertex attribute parameter to be returned. pname: the symbolic name of the generic vertex attribute parameter to be returned. pointer: returns the pointer value. ''' @accepts(t.uint) @returns(t.boolean) @binds(dll) def is_program(program): ''' Determines if a name corresponds to a program object. gl.is_program returns gl.TRUE if program is the name of a program object previously created with gl.create_program and not yet deleted with gl.delete_program. If program is zero or a non-zero value that is not the name of a program object, or if an error occurs, gl.is_program returns gl.FALSE. Args: program: a potential program object. ''' @accepts(t.uint) @returns(t.boolean) @binds(dll) def is_shader(shader): ''' Determines if a name corresponds to a shader object. gl.is_shader returns gl.TRUE if shader is the name of a shader object previously created with gl.create_shader and not yet deleted with gl.delete_shader. If shader is zero or a non-zero value that is not the name of a shader object, or if an error occurs, gl.is_shader returns gl.FALSE. Args: shader: a potential shader object. ''' @accepts(t.uint) @returns(t.void) @binds(dll) def link_program(program): ''' Links a program object. gl.link_program links the program object specified by program. If any shader objects of type gl.VERTEX_SHADER are attached to program, they will be used to create an executable that will run on the programmable vertex processor. If any shader objects of type gl.GEOMETRY_SHADER are attached to program, they will be used to create an executable that will run on the programmable geometry processor. If any shader objects of type gl.FRAGMENT_SHADER are attached to program, they will be used to create an executable that will run on the programmable fragment processor. Args: program: the handle of the program object to be linked. ''' @accepts(t.uint, t.sizei, POINTER(t.char_p), POINTER(t.int)) @returns(t.void) @binds(dll) def shader_source(shader, count, string, length): ''' Replaces the source code in a shader object. gl.shader_source sets the source code in shader to the source code in the array of strings specified by string. Any source code previously stored in the shader object is completely replaced. The number of strings in the array is specified by count. If length is None, each string is assumed to be null terminated. Args: shader: the handle of the shader object whose source code is to be replaced. count: the number of elements in the string and length arrays. string: an array of pointers to strings containing the source code to be loaded into the shader. length: an array of string lengths. ''' @accepts(t.uint) @returns(t.void) @binds(dll) def use_program(program): ''' Installs a program object as part of current rendering state. gl.use_program installs the program object specified by program as part of current rendering state. One or more executables are created in a program object by successfully attaching shader objects to it with gl.attach_shader, successfully compiling the shader objects with gl.compile_shader, and successfully linking the program object with gl.link_program. Args: program: the handle of the program object whose executables are to be used as part of current rendering state. ''' @accepts(t.int, t.float) @returns(t.void) @binds(dll) @accepts(t.int, t.float, t.float) @returns(t.void) @binds(dll) @accepts(t.int, t.float, t.float, t.float) @returns(t.void) @binds(dll) @accepts(t.int, t.float, t.float, t.float, t.float) @returns(t.void) @binds(dll) @accepts(t.int, t.int) @returns(t.void) @binds(dll) @accepts(t.int, t.int, t.int) @returns(t.void) @binds(dll) @accepts(t.int, t.int, t.int, t.int) @returns(t.void) @binds(dll) @accepts(t.int, t.int, t.int, t.int, t.int) @returns(t.void) @binds(dll) @accepts(t.int, t.sizei, POINTER(t.float)) @returns(t.void) @binds(dll) @accepts(t.int, t.sizei, POINTER(t.float)) @returns(t.void) @binds(dll) @accepts(t.int, t.sizei, POINTER(t.float)) @returns(t.void) @binds(dll) @accepts(t.int, t.sizei, POINTER(t.float)) @returns(t.void) @binds(dll) @accepts(t.int, t.sizei, POINTER(t.int)) @returns(t.void) @binds(dll) @accepts(t.int, t.sizei, POINTER(t.int)) @returns(t.void) @binds(dll) @accepts(t.int, t.sizei, POINTER(t.int)) @returns(t.void) @binds(dll) @accepts(t.int, t.sizei, POINTER(t.int)) @returns(t.void) @binds(dll) @accepts(t.int, t.sizei, t.boolean, POINTER(t.float)) @returns(t.void) @binds(dll) @accepts(t.int, t.sizei, t.boolean, POINTER(t.float)) @returns(t.void) @binds(dll) @accepts(t.int, t.sizei, t.boolean, POINTER(t.float)) @returns(t.void) @binds(dll) @accepts(t.uint) @returns(t.void) @binds(dll) def validate_program(program): ''' Validates a program object. gl.validate_program checks to see whether the executables contained in program can execute given the current OpenGL state. The information generated by the validation process will be stored in program's information log. The validation information may consist of an empty string, or it may be a string containing information about how the current program object interacts with the rest of current OpenGL state. This provides a way for OpenGL implementers to convey more information about why the current program is inefficient, suboptimal, failing to execute, and so on. Args: program: the handle of the program object to be validated. ''' @accepts(t.uint, t.double) @returns(t.void) @binds(dll) @accepts(t.uint, POINTER(t.double)) @returns(t.void) @binds(dll) @accepts(t.uint, t.float) @returns(t.void) @binds(dll) @accepts(t.uint, POINTER(t.float)) @returns(t.void) @binds(dll) @accepts(t.uint, t.short) @returns(t.void) @binds(dll) @accepts(t.uint, POINTER(t.short)) @returns(t.void) @binds(dll) @accepts(t.uint, t.double, t.double) @returns(t.void) @binds(dll) @accepts(t.uint, POINTER(t.double)) @returns(t.void) @binds(dll) @accepts(t.uint, t.float, t.float) @returns(t.void) @binds(dll) @accepts(t.uint, POINTER(t.float)) @returns(t.void) @binds(dll) @accepts(t.uint, t.short, t.short) @returns(t.void) @binds(dll) @accepts(t.uint, POINTER(t.short)) @returns(t.void) @binds(dll) @accepts(t.uint, t.double, t.double, t.double) @returns(t.void) @binds(dll) @accepts(t.uint, POINTER(t.double)) @returns(t.void) @binds(dll) @accepts(t.uint, t.float, t.float, t.float) @returns(t.void) @binds(dll) @accepts(t.uint, POINTER(t.float)) @returns(t.void) @binds(dll) @accepts(t.uint, t.short, t.short, t.short) @returns(t.void) @binds(dll) @accepts(t.uint, POINTER(t.short)) @returns(t.void) @binds(dll) @accepts(t.uint, POINTER(t.byte)) @returns(t.void) @binds(dll) @accepts(t.uint, POINTER(t.int)) @returns(t.void) @binds(dll) @accepts(t.uint, POINTER(t.short)) @returns(t.void) @binds(dll) @accepts(t.uint, t.ubyte, t.ubyte, t.ubyte, t.ubyte) @returns(t.void) @binds(dll) @accepts(t.uint, POINTER(t.ubyte)) @returns(t.void) @binds(dll) @accepts(t.uint, POINTER(t.uint)) @returns(t.void) @binds(dll) @accepts(t.uint, POINTER(t.ushort)) @returns(t.void) @binds(dll) @accepts(t.uint, POINTER(t.byte)) @returns(t.void) @binds(dll) @accepts(t.uint, t.double, t.double, t.double, t.double) @returns(t.void) @binds(dll) @accepts(t.uint, POINTER(t.double)) @returns(t.void) @binds(dll) @accepts(t.uint, t.float, t.float, t.float, t.float) @returns(t.void) @binds(dll) @accepts(t.uint, POINTER(t.float)) @returns(t.void) @binds(dll) @accepts(t.uint, POINTER(t.int)) @returns(t.void) @binds(dll) @accepts(t.uint, t.short, t.short, t.short, t.short) @returns(t.void) @binds(dll) @accepts(t.uint, POINTER(t.short)) @returns(t.void) @binds(dll) @accepts(t.uint, POINTER(t.ubyte)) @returns(t.void) @binds(dll) @accepts(t.uint, POINTER(t.uint)) @returns(t.void) @binds(dll) @accepts(t.uint, POINTER(t.ushort)) @returns(t.void) @binds(dll) @accepts(t.uint, t.int, t.enum, t.boolean, t.sizei, t.void) @returns(t.void) @binds(dll) def vertex_attrib_pointer(index, size, type, normalized, stride, pointer): ''' define an array of generic vertex attribute data. gl.vertex_attrib_pointer, gl.vertex_attrib_i_pointer and gl.vertex_attrib_l_pointer specify the location and data format of the array of generic vertex attributes at index index to use when rendering. size specifies the number of components per attribute and must be 1, 2, 3, 4, or gl.BGRA. type specifies the data type of each component, and stride specifies the byte stride from one attribute to the next, allowing vertices and attributes to be packed into a single array or stored in separate arrays. Args: index: the index of the generic vertex attribute to be modified. size: the number of components per generic vertex attribute. type: the data type of each component in the array. normalized: for glvertexattribpointer, specifies whether fixed-point data values should be normalized (gl_true) or converted directly as fixed-point values (gl_false) when they are accessed. stride: the byte offset between consecutive generic vertex attributes. pointer: a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the gl_array_buffer target. ''' BLEND_EQUATION_RGB = 0x8009 VERTEX_ATTRIB_ARRAY_ENABLED = 0x8622 VERTEX_ATTRIB_ARRAY_SIZE = 0x8623 VERTEX_ATTRIB_ARRAY_STRIDE = 0x8624 VERTEX_ATTRIB_ARRAY_TYPE = 0x8625 CURRENT_VERTEX_ATTRIB = 0x8626 VERTEX_PROGRAM_POINT_SIZE = 0x8642 VERTEX_ATTRIB_ARRAY_POINTER = 0x8645 STENCIL_BACK_FUNC = 0x8800 STENCIL_BACK_FAIL = 0x8801 STENCIL_BACK_PASS_DEPTH_FAIL = 0x8802 STENCIL_BACK_PASS_DEPTH_PASS = 0x8803 MAX_DRAW_BUFFERS = 0x8824 DRAW_BUFFER0 = 0x8825 DRAW_BUFFER1 = 0x8826 DRAW_BUFFER2 = 0x8827 DRAW_BUFFER3 = 0x8828 DRAW_BUFFER4 = 0x8829 DRAW_BUFFER5 = 0x882A DRAW_BUFFER6 = 0x882B DRAW_BUFFER7 = 0x882C DRAW_BUFFER8 = 0x882D DRAW_BUFFER9 = 0x882E DRAW_BUFFER10 = 0x882F DRAW_BUFFER11 = 0x8830 DRAW_BUFFER12 = 0x8831 DRAW_BUFFER13 = 0x8832 DRAW_BUFFER14 = 0x8833 DRAW_BUFFER15 = 0x8834 BLEND_EQUATION_ALPHA = 0x883D MAX_VERTEX_ATTRIBS = 0x8869 VERTEX_ATTRIB_ARRAY_NORMALIZED = 0x886A MAX_TEXTURE_IMAGE_UNITS = 0x8872 FRAGMENT_SHADER = 0x8B30 VERTEX_SHADER = 0x8B31 MAX_FRAGMENT_UNIFORM_COMPONENTS = 0x8B49 MAX_VERTEX_UNIFORM_COMPONENTS = 0x8B4A MAX_VARYING_FLOATS = 0x8B4B MAX_VERTEX_TEXTURE_IMAGE_UNITS = 0x8B4C MAX_COMBINED_TEXTURE_IMAGE_UNITS = 0x8B4D SHADER_TYPE = 0x8B4F FLOAT_VEC2 = 0x8B50 FLOAT_VEC3 = 0x8B51 FLOAT_VEC4 = 0x8B52 INT_VEC2 = 0x8B53 INT_VEC3 = 0x8B54 INT_VEC4 = 0x8B55 BOOL = 0x8B56 BOOL_VEC2 = 0x8B57 BOOL_VEC3 = 0x8B58 BOOL_VEC4 = 0x8B59 FLOAT_MAT2 = 0x8B5A FLOAT_MAT3 = 0x8B5B FLOAT_MAT4 = 0x8B5C SAMPLER_1D = 0x8B5D SAMPLER_2D = 0x8B5E SAMPLER_3D = 0x8B5F SAMPLER_CUBE = 0x8B60 SAMPLER_1D_SHADOW = 0x8B61 SAMPLER_2D_SHADOW = 0x8B62 DELETE_STATUS = 0x8B80 COMPILE_STATUS = 0x8B81 LINK_STATUS = 0x8B82 VALIDATE_STATUS = 0x8B83 INFO_LOG_LENGTH = 0x8B84 ATTACHED_SHADERS = 0x8B85 ACTIVE_UNIFORMS = 0x8B86 ACTIVE_UNIFORM_MAX_LENGTH = 0x8B87 SHADER_SOURCE_LENGTH = 0x8B88 ACTIVE_ATTRIBUTES = 0x8B89 ACTIVE_ATTRIBUTE_MAX_LENGTH = 0x8B8A FRAGMENT_SHADER_DERIVATIVE_HINT = 0x8B8B SHADING_LANGUAGE_VERSION = 0x8B8C CURRENT_PROGRAM = 0x8B8D POINT_SPRITE_COORD_ORIGIN = 0x8CA0 LOWER_LEFT = 0x8CA1 UPPER_LEFT = 0x8CA2 STENCIL_BACK_REF = 0x8CA3 STENCIL_BACK_VALUE_MASK = 0x8CA4 STENCIL_BACK_WRITEMASK = 0x8CA5 VERTEX_PROGRAM_TWO_SIDE = 0x8643 POINT_SPRITE = 0x8861 COORD_REPLACE = 0x8862 MAX_TEXTURE_COORDS = 0x8871
[ 2, 33, 6217, 12203, 25, 6338, 7560, 2438, 198, 2, 1212, 2438, 373, 7560, 416, 1220, 8612, 378, 14, 834, 12417, 834, 13, 9078, 198, 198, 6738, 1280, 4743, 13, 4743, 13, 1831, 13, 21653, 654, 1330, 1635, 198, 198, 31, 13635, 82, 7, 83, 13, 44709, 11, 256, 13, 44709, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 13516, 62, 4853, 341, 62, 25512, 378, 7, 4666, 6422, 65, 11, 953, 2287, 7566, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 900, 262, 25228, 13516, 16022, 290, 262, 17130, 13516, 16022, 13869, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 953, 6422, 65, 25, 262, 46140, 13516, 16022, 11, 703, 262, 2266, 11, 4077, 11, 290, 4171, 6805, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 286, 262, 2723, 290, 10965, 7577, 389, 5929, 13, 198, 220, 220, 220, 220, 220, 220, 220, 953, 2287, 7566, 25, 262, 17130, 13516, 16022, 11, 703, 262, 17130, 7515, 286, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2723, 290, 10965, 7577, 389, 5929, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 7857, 72, 11, 19922, 41358, 7, 83, 13, 44709, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 3197, 62, 36873, 364, 7, 77, 11, 809, 9501, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 18291, 6945, 257, 1351, 286, 3124, 39334, 284, 307, 7428, 656, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 19334, 62, 36873, 364, 290, 1278, 13, 13190, 62, 14535, 22252, 62, 19334, 62, 36873, 364, 8160, 281, 7177, 286, 198, 220, 220, 220, 39334, 656, 543, 23862, 422, 262, 24225, 33030, 1366, 481, 307, 3194, 13, 1002, 198, 220, 220, 220, 257, 24225, 33030, 6797, 257, 1988, 284, 530, 393, 517, 2836, 5447, 5072, 198, 220, 220, 220, 9633, 11, 788, 262, 1988, 286, 1123, 7885, 481, 307, 3194, 656, 262, 11876, 198, 220, 220, 220, 7368, 379, 257, 4067, 1626, 809, 9501, 11188, 284, 262, 4067, 8686, 198, 220, 220, 220, 284, 326, 2836, 5447, 5072, 13, 383, 3197, 11876, 973, 329, 2836, 5447, 23862, 198, 220, 220, 220, 8686, 284, 7064, 3744, 621, 393, 4961, 284, 299, 318, 31821, 900, 284, 198, 220, 220, 220, 1278, 13, 45, 11651, 290, 597, 1366, 3194, 284, 884, 281, 5072, 318, 25148, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 299, 25, 262, 1271, 286, 39334, 287, 809, 9501, 13, 198, 220, 220, 220, 220, 220, 220, 220, 809, 9501, 25, 2173, 284, 281, 7177, 286, 18975, 38491, 31577, 262, 39334, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 656, 543, 24225, 7577, 393, 1366, 3815, 481, 307, 3194, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 44709, 11, 256, 13, 44709, 11, 256, 13, 44709, 11, 256, 13, 44709, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 45219, 2856, 62, 404, 62, 25512, 378, 7, 2550, 11, 264, 32165, 11, 288, 79, 32165, 11, 288, 381, 562, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 900, 2166, 290, 14, 273, 736, 45219, 2856, 1332, 4028, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 26400, 2856, 62, 404, 62, 25512, 378, 2753, 1115, 7159, 326, 7603, 644, 4325, 284, 198, 220, 220, 220, 262, 8574, 45219, 2856, 1988, 981, 45219, 2856, 278, 318, 9343, 13, 1002, 262, 45219, 2856, 1332, 198, 220, 220, 220, 10143, 11, 645, 1487, 318, 925, 284, 262, 17465, 338, 3124, 393, 6795, 39334, 11, 290, 264, 32165, 198, 220, 220, 220, 26052, 644, 4325, 284, 262, 45219, 2856, 11876, 10154, 13, 383, 1708, 3624, 198, 220, 220, 220, 4028, 389, 1744, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1986, 25, 1771, 2166, 290, 14, 273, 736, 45219, 2856, 1181, 318, 6153, 13, 198, 220, 220, 220, 220, 220, 220, 220, 264, 32165, 25, 262, 2223, 284, 1011, 618, 262, 45219, 2856, 1332, 10143, 13, 198, 220, 220, 220, 220, 220, 220, 220, 288, 79, 32165, 25, 262, 45219, 2856, 2223, 618, 262, 45219, 2856, 1332, 8318, 11, 475, 262, 6795, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1332, 10143, 13, 198, 220, 220, 220, 220, 220, 220, 220, 288, 381, 562, 25, 262, 45219, 2856, 2223, 618, 1111, 262, 45219, 2856, 1332, 290, 262, 6795, 1332, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 11, 393, 618, 262, 45219, 2856, 1332, 8318, 290, 2035, 612, 318, 645, 6795, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11876, 393, 6795, 4856, 318, 407, 9343, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 44709, 11, 256, 13, 44709, 11, 256, 13, 600, 11, 256, 13, 28611, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 45219, 2856, 62, 20786, 62, 25512, 378, 7, 2550, 11, 25439, 11, 1006, 11, 9335, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 900, 2166, 290, 14, 273, 736, 2163, 290, 4941, 1988, 329, 45219, 2856, 4856, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1986, 25, 1771, 2166, 290, 14, 273, 736, 45219, 2856, 1181, 318, 6153, 13, 198, 220, 220, 220, 220, 220, 220, 220, 25439, 25, 262, 1332, 2163, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1006, 25, 262, 4941, 1988, 329, 262, 45219, 2856, 1332, 13, 198, 220, 220, 220, 220, 220, 220, 220, 9335, 25, 257, 9335, 326, 318, 290, 276, 351, 1111, 262, 4941, 1988, 290, 262, 8574, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45219, 2856, 1988, 618, 262, 1332, 318, 1760, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 44709, 11, 256, 13, 28611, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 45219, 2856, 62, 27932, 62, 25512, 378, 7, 2550, 11, 9335, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 1630, 262, 2166, 290, 14, 273, 736, 3597, 286, 1981, 10340, 287, 262, 45219, 2856, 198, 220, 220, 220, 13016, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 26400, 2856, 62, 27932, 62, 25512, 378, 6973, 262, 3597, 286, 1981, 10340, 287, 262, 198, 220, 220, 220, 45219, 2856, 13016, 13, 383, 1551, 2383, 299, 10340, 286, 9335, 11, 810, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1986, 25, 1771, 262, 2166, 290, 14, 273, 736, 45219, 2856, 1991, 368, 2093, 318, 6153, 13, 198, 220, 220, 220, 220, 220, 220, 220, 9335, 25, 257, 1643, 9335, 284, 7139, 290, 15560, 3597, 286, 1981, 10340, 287, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45219, 2856, 13016, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 28611, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 10199, 62, 1477, 5067, 7, 23065, 11, 33030, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 3460, 3694, 257, 33030, 2134, 284, 257, 1430, 2134, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1430, 25, 262, 1430, 2134, 284, 543, 257, 33030, 2134, 481, 307, 7223, 13, 198, 220, 220, 220, 220, 220, 220, 220, 33030, 25, 262, 33030, 2134, 326, 318, 284, 307, 7223, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 28611, 11, 256, 13, 10641, 62, 79, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 11007, 62, 1078, 822, 62, 24886, 7, 23065, 11, 6376, 11, 1438, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 29306, 257, 14276, 37423, 11688, 6376, 351, 257, 3706, 11688, 7885, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 21653, 62, 1078, 822, 62, 24886, 318, 973, 284, 11602, 257, 2836, 12, 23211, 11688, 198, 220, 220, 220, 7885, 287, 262, 1430, 2134, 7368, 416, 1430, 351, 257, 14276, 37423, 198, 220, 220, 220, 11688, 6376, 13, 383, 1438, 286, 262, 2836, 12, 23211, 11688, 7885, 318, 3804, 198, 220, 220, 220, 355, 257, 9242, 23083, 4731, 287, 1438, 13, 383, 14276, 37423, 11688, 6376, 284, 198, 220, 220, 220, 307, 5421, 284, 428, 7885, 318, 7368, 416, 6376, 13, 1649, 1430, 318, 925, 636, 198, 220, 220, 220, 286, 1459, 1181, 11, 3815, 2810, 2884, 262, 14276, 37423, 11688, 6376, 198, 220, 220, 220, 481, 13096, 262, 1988, 286, 262, 2836, 12, 23211, 11688, 7885, 7368, 416, 198, 220, 220, 220, 1438, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1430, 25, 262, 5412, 286, 262, 1430, 2134, 287, 543, 262, 8112, 318, 284, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 307, 925, 13, 198, 220, 220, 220, 220, 220, 220, 220, 6376, 25, 262, 6376, 286, 262, 14276, 37423, 11688, 284, 307, 5421, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 257, 9242, 23083, 4731, 7268, 262, 1438, 286, 262, 37423, 33030, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11688, 7885, 284, 543, 6376, 318, 284, 307, 5421, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 17632, 62, 1477, 5067, 7, 1477, 5067, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 3082, 2915, 257, 33030, 2134, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 5589, 576, 62, 1477, 5067, 552, 2915, 262, 2723, 2438, 13042, 326, 423, 587, 8574, 287, 198, 220, 220, 220, 262, 33030, 2134, 7368, 416, 33030, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 33030, 25, 262, 33030, 2134, 284, 307, 14102, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 3419, 198, 31, 7783, 82, 7, 83, 13, 28611, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 2251, 62, 23065, 33529, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 7921, 274, 257, 1430, 2134, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 44709, 8, 198, 31, 7783, 82, 7, 83, 13, 28611, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 2251, 62, 1477, 5067, 7, 4906, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 7921, 274, 257, 33030, 2134, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 17953, 62, 1477, 5067, 8075, 281, 6565, 33030, 2134, 290, 5860, 257, 1729, 12, 22570, 1988, 198, 220, 220, 220, 416, 543, 340, 460, 307, 20717, 13, 317, 33030, 2134, 318, 973, 284, 5529, 262, 198, 220, 220, 220, 2723, 2438, 13042, 326, 8160, 257, 33030, 13, 33030, 6030, 9217, 262, 2099, 286, 198, 220, 220, 220, 33030, 284, 307, 2727, 13, 10579, 3858, 286, 33030, 389, 4855, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 262, 2099, 286, 33030, 284, 307, 2727, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 12233, 62, 23065, 7, 23065, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 1024, 40676, 257, 1430, 2134, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 33678, 62, 23065, 2030, 274, 262, 4088, 290, 12515, 689, 262, 1438, 3917, 351, 198, 220, 220, 220, 262, 1430, 2134, 7368, 416, 1430, 13, 770, 3141, 6840, 3318, 3028, 262, 198, 220, 220, 220, 3048, 286, 257, 869, 284, 1278, 13, 17953, 62, 23065, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1430, 25, 262, 1430, 2134, 284, 307, 13140, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 12233, 62, 1477, 5067, 7, 1477, 5067, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 1024, 40676, 257, 33030, 2134, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 33678, 62, 1477, 5067, 2030, 274, 262, 4088, 290, 12515, 689, 262, 1438, 3917, 351, 198, 220, 220, 220, 262, 33030, 2134, 7368, 416, 33030, 13, 770, 3141, 6840, 3318, 3028, 262, 198, 220, 220, 220, 3048, 286, 257, 869, 284, 1278, 13, 17953, 62, 1477, 5067, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 33030, 25, 262, 33030, 2134, 284, 307, 13140, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 28611, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 48224, 62, 1477, 5067, 7, 23065, 11, 33030, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 4614, 3694, 257, 33030, 2134, 422, 257, 1430, 2134, 284, 543, 340, 318, 7223, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 15255, 620, 62, 1477, 5067, 1062, 3694, 262, 33030, 2134, 7368, 416, 33030, 422, 262, 198, 220, 220, 220, 1430, 2134, 7368, 416, 1430, 13, 770, 3141, 460, 307, 973, 284, 23981, 262, 198, 220, 220, 220, 1245, 286, 262, 3141, 1278, 13, 47348, 62, 1477, 5067, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1430, 25, 262, 1430, 2134, 422, 543, 284, 48224, 262, 33030, 2134, 13, 198, 220, 220, 220, 220, 220, 220, 220, 33030, 25, 262, 33030, 2134, 284, 307, 30795, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 7139, 62, 332, 16886, 62, 1078, 822, 62, 18747, 7, 9630, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 27882, 393, 15560, 257, 14276, 37423, 11688, 7177, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 21633, 62, 332, 16886, 62, 1078, 822, 62, 18747, 290, 1278, 13, 21633, 62, 332, 16886, 62, 18747, 62, 1078, 822, 7139, 262, 198, 220, 220, 220, 14276, 37423, 11688, 7177, 7368, 416, 6376, 13, 198, 220, 220, 220, 1278, 13, 21633, 62, 332, 16886, 62, 1078, 822, 62, 18747, 3544, 3058, 5421, 37423, 7177, 2134, 329, 198, 220, 220, 220, 262, 4905, 11, 9472, 1278, 13, 21633, 62, 332, 16886, 62, 18747, 62, 1078, 822, 5992, 1181, 286, 262, 198, 220, 220, 220, 37423, 7177, 2134, 351, 4522, 46935, 26801, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6376, 25, 262, 6376, 286, 262, 14276, 37423, 11688, 284, 307, 9343, 393, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10058, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 28611, 11, 256, 13, 7857, 72, 11, 19922, 41358, 7, 83, 13, 7857, 72, 828, 19922, 41358, 7, 83, 13, 600, 828, 19922, 41358, 7, 83, 13, 44709, 828, 256, 13, 10641, 62, 79, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 651, 62, 5275, 62, 1078, 822, 7, 23065, 11, 6376, 11, 42684, 7857, 11, 4129, 11, 2546, 11, 2099, 11, 1438, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 16409, 1321, 546, 281, 4075, 11688, 7885, 329, 262, 7368, 198, 220, 220, 220, 1430, 2134, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 1136, 62, 5275, 62, 1078, 822, 5860, 1321, 546, 281, 4075, 11688, 7885, 198, 220, 220, 220, 287, 262, 1430, 2134, 7368, 416, 1430, 13, 383, 1271, 286, 4075, 12608, 198, 220, 220, 220, 460, 307, 6492, 416, 4585, 1278, 13, 1136, 62, 23065, 351, 262, 1988, 198, 220, 220, 220, 1278, 13, 10659, 9306, 62, 1404, 5446, 9865, 3843, 1546, 13, 317, 1988, 286, 657, 329, 6376, 40573, 262, 717, 4075, 198, 220, 220, 220, 11688, 7885, 13, 2448, 21597, 3815, 329, 6376, 2837, 422, 6632, 284, 262, 198, 220, 220, 220, 1271, 286, 4075, 11688, 9633, 20208, 530, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1430, 25, 262, 1430, 2134, 284, 307, 42517, 798, 13, 198, 220, 220, 220, 220, 220, 220, 220, 6376, 25, 262, 6376, 286, 262, 11688, 7885, 284, 307, 42517, 798, 13, 198, 220, 220, 220, 220, 220, 220, 220, 42684, 7857, 25, 262, 5415, 1271, 286, 3435, 1280, 4743, 318, 3142, 284, 3551, 287, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 2095, 11876, 8203, 416, 1438, 13, 198, 220, 220, 220, 220, 220, 220, 220, 4129, 25, 5860, 262, 1271, 286, 3435, 1682, 3194, 416, 1280, 4743, 287, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 4731, 8203, 416, 1438, 357, 42218, 262, 9242, 5651, 1352, 8, 611, 257, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 584, 621, 9242, 318, 3804, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2546, 25, 5860, 262, 2546, 286, 262, 11688, 7885, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 5860, 262, 1366, 2099, 286, 262, 11688, 7885, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 5860, 257, 9242, 23083, 4731, 7268, 262, 1438, 286, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11688, 7885, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 28611, 11, 256, 13, 7857, 72, 11, 19922, 41358, 7, 83, 13, 7857, 72, 828, 19922, 41358, 7, 83, 13, 600, 828, 19922, 41358, 7, 83, 13, 44709, 828, 256, 13, 10641, 62, 79, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 651, 62, 5275, 62, 403, 6933, 7, 23065, 11, 6376, 11, 42684, 7857, 11, 4129, 11, 2546, 11, 2099, 11, 1438, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 16409, 1321, 546, 281, 4075, 8187, 7885, 329, 262, 7368, 198, 220, 220, 220, 1430, 2134, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 1136, 62, 5275, 62, 403, 6933, 5860, 1321, 546, 281, 4075, 8187, 7885, 198, 220, 220, 220, 287, 262, 1430, 2134, 7368, 416, 1430, 13, 383, 1271, 286, 4075, 8187, 198, 220, 220, 220, 9633, 460, 307, 6492, 416, 4585, 1278, 13, 1136, 62, 23065, 351, 262, 1988, 198, 220, 220, 220, 1278, 13, 10659, 9306, 62, 4944, 5064, 1581, 5653, 13, 317, 1988, 286, 657, 329, 6376, 40573, 262, 717, 4075, 8187, 198, 220, 220, 220, 7885, 13, 2448, 21597, 3815, 329, 6376, 2837, 422, 6632, 284, 262, 1271, 286, 198, 220, 220, 220, 4075, 8187, 9633, 20208, 530, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1430, 25, 262, 1430, 2134, 284, 307, 42517, 798, 13, 198, 220, 220, 220, 220, 220, 220, 220, 6376, 25, 262, 6376, 286, 262, 8187, 7885, 284, 307, 42517, 798, 13, 198, 220, 220, 220, 220, 220, 220, 220, 42684, 7857, 25, 262, 5415, 1271, 286, 3435, 1280, 4743, 318, 3142, 284, 3551, 287, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 2095, 11876, 8203, 416, 1438, 13, 198, 220, 220, 220, 220, 220, 220, 220, 4129, 25, 5860, 262, 1271, 286, 3435, 1682, 3194, 416, 1280, 4743, 287, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 4731, 8203, 416, 1438, 357, 42218, 262, 9242, 5651, 1352, 8, 611, 257, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 584, 621, 9242, 318, 3804, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2546, 25, 5860, 262, 2546, 286, 262, 8187, 7885, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 5860, 262, 1366, 2099, 286, 262, 8187, 7885, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 5860, 257, 9242, 23083, 4731, 7268, 262, 1438, 286, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8187, 7885, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 7857, 72, 11, 19922, 41358, 7, 83, 13, 7857, 72, 828, 19922, 41358, 7, 83, 13, 28611, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 651, 62, 1078, 2317, 62, 1477, 9972, 7, 23065, 11, 3509, 9127, 11, 954, 11, 427, 9972, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 16409, 262, 17105, 286, 262, 33030, 5563, 7223, 284, 257, 1430, 2134, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 1136, 62, 1078, 2317, 62, 1477, 9972, 5860, 262, 3891, 286, 262, 33030, 5563, 7223, 284, 198, 220, 220, 220, 1430, 13, 383, 3891, 286, 33030, 5563, 326, 389, 7223, 284, 1430, 481, 307, 198, 220, 220, 220, 4504, 287, 427, 9972, 13, 383, 4036, 1271, 286, 33030, 3891, 3194, 656, 427, 9972, 198, 220, 220, 220, 318, 4504, 287, 954, 13, 1002, 645, 33030, 5563, 389, 7223, 284, 1430, 11, 954, 318, 198, 220, 220, 220, 900, 284, 657, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1430, 25, 262, 1430, 2134, 284, 307, 42517, 798, 13, 198, 220, 220, 220, 220, 220, 220, 220, 3509, 9127, 25, 262, 2546, 286, 262, 7177, 329, 23069, 262, 4504, 2134, 3891, 13, 198, 220, 220, 220, 220, 220, 220, 220, 954, 25, 5860, 262, 1271, 286, 3891, 1682, 4504, 287, 427, 9972, 13, 198, 220, 220, 220, 220, 220, 220, 220, 427, 9972, 25, 281, 7177, 326, 318, 973, 284, 1441, 262, 3891, 286, 7223, 33030, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5563, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 10641, 62, 79, 8, 198, 31, 7783, 82, 7, 83, 13, 600, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 651, 62, 1078, 822, 62, 24886, 7, 23065, 11, 1438, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 16409, 262, 4067, 286, 281, 11688, 7885, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 1136, 62, 1078, 822, 62, 24886, 20743, 262, 4271, 6692, 1430, 2134, 198, 220, 220, 220, 7368, 416, 1430, 329, 262, 11688, 7885, 7368, 416, 1438, 290, 198, 220, 220, 220, 5860, 262, 6376, 286, 262, 14276, 37423, 11688, 326, 318, 5421, 284, 326, 198, 220, 220, 220, 11688, 7885, 13, 1002, 1438, 318, 257, 17593, 11688, 7885, 11, 262, 6376, 286, 262, 198, 220, 220, 220, 717, 5721, 286, 262, 17593, 318, 4504, 13, 1002, 262, 3706, 11688, 7885, 318, 198, 220, 220, 220, 407, 281, 4075, 11688, 287, 262, 7368, 1430, 2134, 393, 611, 1438, 4940, 198, 220, 220, 220, 351, 262, 10395, 21231, 366, 4743, 62, 1600, 257, 1988, 286, 532, 16, 318, 4504, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1430, 25, 262, 1430, 2134, 284, 307, 42517, 798, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 2173, 284, 257, 9242, 23083, 4731, 7268, 262, 1438, 286, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11688, 7885, 3025, 4067, 318, 284, 307, 42517, 798, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 44709, 11, 19922, 41358, 7, 83, 13, 600, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 7857, 72, 11, 19922, 41358, 7, 83, 13, 7857, 72, 828, 256, 13, 10641, 62, 79, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 651, 62, 23065, 62, 10951, 62, 6404, 7, 23065, 11, 42684, 7857, 11, 4129, 11, 1167, 928, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 16409, 262, 1321, 2604, 329, 257, 1430, 2134, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 1136, 62, 23065, 62, 10951, 62, 6404, 5860, 262, 1321, 2604, 329, 262, 7368, 198, 220, 220, 220, 1430, 2134, 13, 383, 1321, 2604, 329, 257, 1430, 2134, 318, 9518, 618, 198, 220, 220, 220, 262, 1430, 2134, 318, 6692, 393, 31031, 13, 383, 4731, 326, 318, 4504, 481, 198, 220, 220, 220, 307, 9242, 23083, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1430, 25, 262, 1430, 2134, 3025, 1321, 2604, 318, 284, 307, 42517, 798, 13, 198, 220, 220, 220, 220, 220, 220, 220, 42684, 7857, 25, 262, 2546, 286, 262, 2095, 11876, 329, 23069, 262, 4504, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1321, 2604, 13, 198, 220, 220, 220, 220, 220, 220, 220, 4129, 25, 5860, 262, 4129, 286, 262, 4731, 4504, 287, 1167, 928, 357, 42218, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 9242, 5651, 1352, 737, 198, 220, 220, 220, 220, 220, 220, 220, 1167, 928, 25, 281, 7177, 286, 3435, 326, 318, 973, 284, 1441, 262, 1321, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 44709, 11, 19922, 41358, 7, 83, 13, 600, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 7857, 72, 11, 19922, 41358, 7, 83, 13, 7857, 72, 828, 256, 13, 10641, 62, 79, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 651, 62, 1477, 5067, 62, 10951, 62, 6404, 7, 1477, 5067, 11, 42684, 7857, 11, 4129, 11, 1167, 928, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 16409, 262, 1321, 2604, 329, 257, 33030, 2134, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 1136, 62, 1477, 5067, 62, 10951, 62, 6404, 5860, 262, 1321, 2604, 329, 262, 7368, 33030, 198, 220, 220, 220, 2134, 13, 383, 1321, 2604, 329, 257, 33030, 2134, 318, 9518, 618, 262, 33030, 198, 220, 220, 220, 318, 14102, 13, 383, 4731, 326, 318, 4504, 481, 307, 9242, 23083, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 33030, 25, 262, 33030, 2134, 3025, 1321, 2604, 318, 284, 307, 42517, 798, 13, 198, 220, 220, 220, 220, 220, 220, 220, 42684, 7857, 25, 262, 2546, 286, 262, 2095, 11876, 329, 23069, 262, 4504, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1321, 2604, 13, 198, 220, 220, 220, 220, 220, 220, 220, 4129, 25, 5860, 262, 4129, 286, 262, 4731, 4504, 287, 1167, 928, 357, 42218, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 9242, 5651, 1352, 737, 198, 220, 220, 220, 220, 220, 220, 220, 1167, 928, 25, 281, 7177, 286, 3435, 326, 318, 973, 284, 1441, 262, 1321, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 7857, 72, 11, 19922, 41358, 7, 83, 13, 7857, 72, 828, 256, 13, 10641, 62, 79, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 651, 62, 1477, 5067, 62, 10459, 7, 1477, 5067, 11, 42684, 7857, 11, 4129, 11, 2723, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 16409, 262, 2723, 2438, 4731, 422, 257, 33030, 2134, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 1136, 62, 1477, 5067, 62, 10459, 5860, 262, 1673, 36686, 341, 286, 262, 2723, 2438, 13042, 198, 220, 220, 220, 422, 262, 33030, 2134, 7368, 416, 33030, 13, 383, 2723, 2438, 13042, 329, 257, 198, 220, 220, 220, 33030, 2134, 389, 262, 1255, 286, 257, 2180, 869, 284, 1278, 13, 1477, 5067, 62, 10459, 13, 383, 198, 220, 220, 220, 4731, 4504, 416, 262, 2163, 481, 307, 9242, 23083, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 33030, 25, 262, 33030, 2134, 284, 307, 42517, 798, 13, 198, 220, 220, 220, 220, 220, 220, 220, 42684, 7857, 25, 262, 2546, 286, 262, 2095, 11876, 329, 23069, 262, 4504, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2723, 2438, 4731, 13, 198, 220, 220, 220, 220, 220, 220, 220, 4129, 25, 5860, 262, 4129, 286, 262, 4731, 4504, 287, 2723, 357, 42218, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 9242, 5651, 1352, 737, 198, 220, 220, 220, 220, 220, 220, 220, 2723, 25, 281, 7177, 286, 3435, 326, 318, 973, 284, 1441, 262, 2723, 2438, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4731, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 10641, 62, 79, 8, 198, 31, 7783, 82, 7, 83, 13, 600, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 651, 62, 403, 6933, 62, 24886, 7, 23065, 11, 1438, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 16409, 262, 4067, 286, 257, 8187, 7885, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 1136, 62, 403, 6933, 62, 24886, 5860, 281, 18253, 326, 6870, 262, 4067, 286, 257, 198, 220, 220, 220, 2176, 8187, 7885, 1626, 257, 1430, 2134, 13, 1438, 1276, 307, 257, 9242, 198, 220, 220, 220, 23083, 4731, 326, 4909, 645, 2330, 2272, 13, 1438, 1276, 307, 281, 4075, 198, 220, 220, 220, 8187, 7885, 1438, 287, 1430, 326, 318, 407, 257, 4645, 11, 281, 7177, 286, 198, 220, 220, 220, 8573, 11, 393, 257, 850, 42895, 286, 257, 15879, 393, 257, 17593, 13, 770, 2163, 5860, 198, 220, 220, 220, 532, 16, 611, 1438, 857, 407, 6053, 284, 281, 4075, 8187, 7885, 287, 1430, 11, 611, 198, 220, 220, 220, 1438, 4940, 351, 262, 10395, 21231, 366, 4743, 62, 1600, 393, 611, 1438, 318, 3917, 351, 281, 198, 220, 220, 220, 17226, 3753, 393, 257, 3706, 8187, 2512, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1430, 25, 262, 1430, 2134, 284, 307, 42517, 798, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 2173, 284, 257, 9242, 23083, 4731, 7268, 262, 1438, 286, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8187, 7885, 3025, 4067, 318, 284, 307, 42517, 798, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 600, 11, 19922, 41358, 7, 83, 13, 22468, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 600, 11, 19922, 41358, 7, 83, 13, 600, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 44709, 11, 19922, 41358, 7, 83, 13, 23352, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 44709, 11, 19922, 41358, 7, 83, 13, 22468, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 44709, 11, 19922, 41358, 7, 83, 13, 600, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 44709, 11, 256, 13, 19382, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 651, 62, 332, 16886, 62, 1078, 822, 62, 29536, 85, 7, 9630, 11, 279, 3672, 11, 17562, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 1441, 262, 2209, 286, 262, 7368, 14276, 37423, 11688, 17562, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 1136, 62, 332, 16886, 62, 1078, 822, 62, 29536, 85, 5860, 17562, 1321, 13, 6376, 318, 262, 198, 220, 220, 220, 14276, 37423, 11688, 284, 307, 42517, 798, 11, 279, 3672, 318, 257, 18975, 6937, 198, 220, 220, 220, 12739, 262, 17562, 284, 307, 4504, 11, 290, 42287, 318, 257, 17562, 284, 257, 4067, 198, 220, 220, 220, 287, 543, 284, 1295, 262, 4504, 1366, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6376, 25, 262, 14276, 37423, 11688, 11507, 284, 307, 4504, 13, 198, 220, 220, 220, 220, 220, 220, 220, 279, 3672, 25, 262, 18975, 1438, 286, 262, 14276, 37423, 11688, 11507, 284, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4504, 13, 198, 220, 220, 220, 220, 220, 220, 220, 17562, 25, 5860, 262, 17562, 1988, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 8, 198, 31, 7783, 82, 7, 83, 13, 2127, 21052, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 318, 62, 23065, 7, 23065, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 360, 13221, 274, 611, 257, 1438, 24866, 284, 257, 1430, 2134, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 271, 62, 23065, 5860, 1278, 13, 5446, 8924, 611, 1430, 318, 262, 1438, 286, 257, 1430, 2134, 198, 220, 220, 220, 4271, 2727, 351, 1278, 13, 17953, 62, 23065, 290, 407, 1865, 13140, 351, 198, 220, 220, 220, 1278, 13, 33678, 62, 23065, 13, 1002, 1430, 318, 6632, 393, 257, 1729, 12, 22570, 1988, 326, 318, 407, 262, 198, 220, 220, 220, 1438, 286, 257, 1430, 2134, 11, 393, 611, 281, 4049, 8833, 11, 1278, 13, 271, 62, 23065, 5860, 198, 220, 220, 220, 1278, 13, 37, 23719, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1430, 25, 257, 2785, 1430, 2134, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 8, 198, 31, 7783, 82, 7, 83, 13, 2127, 21052, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 318, 62, 1477, 5067, 7, 1477, 5067, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 360, 13221, 274, 611, 257, 1438, 24866, 284, 257, 33030, 2134, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 271, 62, 1477, 5067, 5860, 1278, 13, 5446, 8924, 611, 33030, 318, 262, 1438, 286, 257, 33030, 2134, 198, 220, 220, 220, 4271, 2727, 351, 1278, 13, 17953, 62, 1477, 5067, 290, 407, 1865, 13140, 351, 198, 220, 220, 220, 1278, 13, 33678, 62, 1477, 5067, 13, 1002, 33030, 318, 6632, 393, 257, 1729, 12, 22570, 1988, 326, 318, 407, 262, 1438, 198, 220, 220, 220, 286, 257, 33030, 2134, 11, 393, 611, 281, 4049, 8833, 11, 1278, 13, 271, 62, 1477, 5067, 5860, 1278, 13, 37, 23719, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 33030, 25, 257, 2785, 33030, 2134, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 2792, 62, 23065, 7, 23065, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 21691, 257, 1430, 2134, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 8726, 62, 23065, 6117, 262, 1430, 2134, 7368, 416, 1430, 13, 1002, 597, 33030, 198, 220, 220, 220, 5563, 286, 2099, 1278, 13, 15858, 6369, 62, 9693, 2885, 1137, 389, 7223, 284, 1430, 11, 484, 481, 307, 973, 198, 220, 220, 220, 284, 2251, 281, 28883, 326, 481, 1057, 319, 262, 1430, 44102, 37423, 12649, 13, 198, 220, 220, 220, 1002, 597, 33030, 5563, 286, 2099, 1278, 13, 8264, 2662, 2767, 18276, 62, 9693, 2885, 1137, 389, 7223, 284, 1430, 11, 198, 220, 220, 220, 484, 481, 307, 973, 284, 2251, 281, 28883, 326, 481, 1057, 319, 262, 1430, 44102, 198, 220, 220, 220, 22939, 12649, 13, 1002, 597, 33030, 5563, 286, 2099, 1278, 13, 37, 33202, 10979, 62, 9693, 2885, 1137, 389, 198, 220, 220, 220, 7223, 284, 1430, 11, 484, 481, 307, 973, 284, 2251, 281, 28883, 326, 481, 1057, 198, 220, 220, 220, 319, 262, 1430, 44102, 24225, 12649, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1430, 25, 262, 5412, 286, 262, 1430, 2134, 284, 307, 6692, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 7857, 72, 11, 19922, 41358, 7, 83, 13, 10641, 62, 79, 828, 19922, 41358, 7, 83, 13, 600, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 33030, 62, 10459, 7, 1477, 5067, 11, 954, 11, 4731, 11, 4129, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 18407, 2114, 262, 2723, 2438, 287, 257, 33030, 2134, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 1477, 5067, 62, 10459, 5621, 262, 2723, 2438, 287, 33030, 284, 262, 2723, 2438, 287, 262, 198, 220, 220, 220, 7177, 286, 13042, 7368, 416, 4731, 13, 4377, 2723, 2438, 4271, 8574, 287, 198, 220, 220, 220, 262, 33030, 2134, 318, 3190, 6928, 13, 383, 1271, 286, 13042, 287, 262, 7177, 198, 220, 220, 220, 318, 7368, 416, 954, 13, 1002, 4129, 318, 6045, 11, 1123, 4731, 318, 9672, 284, 307, 9242, 198, 220, 220, 220, 23083, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 33030, 25, 262, 5412, 286, 262, 33030, 2134, 3025, 2723, 2438, 318, 284, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6928, 13, 198, 220, 220, 220, 220, 220, 220, 220, 954, 25, 262, 1271, 286, 4847, 287, 262, 4731, 290, 4129, 26515, 13, 198, 220, 220, 220, 220, 220, 220, 220, 4731, 25, 281, 7177, 286, 32007, 284, 13042, 7268, 262, 2723, 2438, 284, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9639, 656, 262, 33030, 13, 198, 220, 220, 220, 220, 220, 220, 220, 4129, 25, 281, 7177, 286, 4731, 20428, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 779, 62, 23065, 7, 23065, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 2262, 5691, 257, 1430, 2134, 355, 636, 286, 1459, 14837, 1181, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 1904, 62, 23065, 42027, 262, 1430, 2134, 7368, 416, 1430, 355, 636, 286, 198, 220, 220, 220, 1459, 14837, 1181, 13, 1881, 393, 517, 3121, 2977, 389, 2727, 287, 257, 1430, 198, 220, 220, 220, 2134, 416, 7675, 39550, 33030, 5563, 284, 340, 351, 1278, 13, 47348, 62, 1477, 5067, 11, 198, 220, 220, 220, 7675, 33393, 262, 33030, 5563, 351, 1278, 13, 5589, 576, 62, 1477, 5067, 11, 290, 198, 220, 220, 220, 7675, 17795, 262, 1430, 2134, 351, 1278, 13, 8726, 62, 23065, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1430, 25, 262, 5412, 286, 262, 1430, 2134, 3025, 3121, 2977, 389, 284, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 973, 355, 636, 286, 1459, 14837, 1181, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 600, 11, 256, 13, 22468, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 600, 11, 256, 13, 22468, 11, 256, 13, 22468, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 600, 11, 256, 13, 22468, 11, 256, 13, 22468, 11, 256, 13, 22468, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 600, 11, 256, 13, 22468, 11, 256, 13, 22468, 11, 256, 13, 22468, 11, 256, 13, 22468, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 600, 11, 256, 13, 600, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 600, 11, 256, 13, 600, 11, 256, 13, 600, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 600, 11, 256, 13, 600, 11, 256, 13, 600, 11, 256, 13, 600, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 600, 11, 256, 13, 600, 11, 256, 13, 600, 11, 256, 13, 600, 11, 256, 13, 600, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 600, 11, 256, 13, 7857, 72, 11, 19922, 41358, 7, 83, 13, 22468, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 600, 11, 256, 13, 7857, 72, 11, 19922, 41358, 7, 83, 13, 22468, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 600, 11, 256, 13, 7857, 72, 11, 19922, 41358, 7, 83, 13, 22468, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 600, 11, 256, 13, 7857, 72, 11, 19922, 41358, 7, 83, 13, 22468, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 600, 11, 256, 13, 7857, 72, 11, 19922, 41358, 7, 83, 13, 600, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 600, 11, 256, 13, 7857, 72, 11, 19922, 41358, 7, 83, 13, 600, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 600, 11, 256, 13, 7857, 72, 11, 19922, 41358, 7, 83, 13, 600, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 600, 11, 256, 13, 7857, 72, 11, 19922, 41358, 7, 83, 13, 600, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 600, 11, 256, 13, 7857, 72, 11, 256, 13, 2127, 21052, 11, 19922, 41358, 7, 83, 13, 22468, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 600, 11, 256, 13, 7857, 72, 11, 256, 13, 2127, 21052, 11, 19922, 41358, 7, 83, 13, 22468, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 600, 11, 256, 13, 7857, 72, 11, 256, 13, 2127, 21052, 11, 19922, 41358, 7, 83, 13, 22468, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 26571, 62, 23065, 7, 23065, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 3254, 37051, 257, 1430, 2134, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 12102, 378, 62, 23065, 8794, 284, 766, 1771, 262, 3121, 2977, 7763, 287, 198, 220, 220, 220, 1430, 460, 12260, 1813, 262, 1459, 30672, 1181, 13, 383, 1321, 198, 220, 220, 220, 7560, 416, 262, 21201, 1429, 481, 307, 8574, 287, 1430, 338, 1321, 198, 220, 220, 220, 2604, 13, 383, 21201, 1321, 743, 3473, 286, 281, 6565, 4731, 11, 393, 340, 743, 307, 198, 220, 220, 220, 257, 4731, 7268, 1321, 546, 703, 262, 1459, 1430, 2134, 198, 220, 220, 220, 44020, 351, 262, 1334, 286, 1459, 30672, 1181, 13, 770, 3769, 257, 835, 329, 198, 220, 220, 220, 30672, 3494, 364, 284, 13878, 517, 1321, 546, 1521, 262, 1459, 1430, 198, 220, 220, 220, 318, 30904, 11, 850, 8738, 4402, 11, 9894, 284, 12260, 11, 290, 523, 319, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1430, 25, 262, 5412, 286, 262, 1430, 2134, 284, 307, 31031, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 23352, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 19922, 41358, 7, 83, 13, 23352, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 22468, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 19922, 41358, 7, 83, 13, 22468, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 19509, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 19922, 41358, 7, 83, 13, 19509, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 23352, 11, 256, 13, 23352, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 19922, 41358, 7, 83, 13, 23352, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 22468, 11, 256, 13, 22468, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 19922, 41358, 7, 83, 13, 22468, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 19509, 11, 256, 13, 19509, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 19922, 41358, 7, 83, 13, 19509, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 23352, 11, 256, 13, 23352, 11, 256, 13, 23352, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 19922, 41358, 7, 83, 13, 23352, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 22468, 11, 256, 13, 22468, 11, 256, 13, 22468, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 19922, 41358, 7, 83, 13, 22468, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 19509, 11, 256, 13, 19509, 11, 256, 13, 19509, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 19922, 41358, 7, 83, 13, 19509, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 19922, 41358, 7, 83, 13, 26327, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 19922, 41358, 7, 83, 13, 600, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 19922, 41358, 7, 83, 13, 19509, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 549, 88, 660, 11, 256, 13, 549, 88, 660, 11, 256, 13, 549, 88, 660, 11, 256, 13, 549, 88, 660, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 19922, 41358, 7, 83, 13, 549, 88, 660, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 19922, 41358, 7, 83, 13, 28611, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 19922, 41358, 7, 83, 13, 1530, 419, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 19922, 41358, 7, 83, 13, 26327, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 23352, 11, 256, 13, 23352, 11, 256, 13, 23352, 11, 256, 13, 23352, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 19922, 41358, 7, 83, 13, 23352, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 22468, 11, 256, 13, 22468, 11, 256, 13, 22468, 11, 256, 13, 22468, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 19922, 41358, 7, 83, 13, 22468, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 19922, 41358, 7, 83, 13, 600, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 19509, 11, 256, 13, 19509, 11, 256, 13, 19509, 11, 256, 13, 19509, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 19922, 41358, 7, 83, 13, 19509, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 19922, 41358, 7, 83, 13, 549, 88, 660, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 19922, 41358, 7, 83, 13, 28611, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 19922, 41358, 7, 83, 13, 1530, 419, 4008, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 198, 31, 13635, 82, 7, 83, 13, 28611, 11, 256, 13, 600, 11, 256, 13, 44709, 11, 256, 13, 2127, 21052, 11, 256, 13, 7857, 72, 11, 256, 13, 19382, 8, 198, 31, 7783, 82, 7, 83, 13, 19382, 8, 198, 31, 21653, 82, 7, 12736, 8, 198, 4299, 37423, 62, 1078, 822, 62, 29536, 7, 9630, 11, 2546, 11, 2099, 11, 39279, 11, 33769, 11, 17562, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 8160, 281, 7177, 286, 14276, 37423, 11688, 1366, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1278, 13, 332, 16886, 62, 1078, 822, 62, 29536, 11, 1278, 13, 332, 16886, 62, 1078, 822, 62, 72, 62, 29536, 290, 198, 220, 220, 220, 1278, 13, 332, 16886, 62, 1078, 822, 62, 75, 62, 29536, 11986, 262, 4067, 290, 1366, 5794, 286, 262, 7177, 198, 220, 220, 220, 286, 14276, 37423, 12608, 379, 6376, 6376, 284, 779, 618, 14837, 13, 2546, 198, 220, 220, 220, 26052, 262, 1271, 286, 6805, 583, 11688, 290, 1276, 307, 352, 11, 362, 11, 513, 11, 604, 11, 393, 198, 220, 220, 220, 1278, 13, 40469, 3861, 13, 2099, 26052, 262, 1366, 2099, 286, 1123, 7515, 11, 290, 33769, 198, 220, 220, 220, 26052, 262, 18022, 33769, 422, 530, 11688, 284, 262, 1306, 11, 5086, 9421, 1063, 198, 220, 220, 220, 290, 12608, 284, 307, 11856, 656, 257, 2060, 7177, 393, 8574, 287, 4553, 198, 220, 220, 220, 26515, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6376, 25, 262, 6376, 286, 262, 14276, 37423, 11688, 284, 307, 9518, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2546, 25, 262, 1271, 286, 6805, 583, 14276, 37423, 11688, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 262, 1366, 2099, 286, 1123, 7515, 287, 262, 7177, 13, 198, 220, 220, 220, 220, 220, 220, 220, 39279, 25, 329, 1278, 332, 16886, 1078, 822, 29536, 11, 26052, 1771, 5969, 12, 4122, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 3815, 815, 307, 39279, 357, 4743, 62, 7942, 8, 393, 11513, 3264, 355, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5969, 12, 4122, 3815, 357, 4743, 62, 9562, 8, 618, 484, 389, 17535, 13, 198, 220, 220, 220, 220, 220, 220, 220, 33769, 25, 262, 18022, 11677, 1022, 12785, 14276, 37423, 12608, 13, 198, 220, 220, 220, 220, 220, 220, 220, 17562, 25, 257, 11677, 286, 262, 717, 7515, 286, 262, 717, 14276, 37423, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11688, 287, 262, 7177, 287, 262, 1366, 3650, 286, 262, 11876, 3058, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5421, 284, 262, 1278, 62, 18747, 62, 22252, 2496, 13, 198, 220, 220, 220, 705, 7061, 198, 198, 9148, 10619, 62, 36, 10917, 6234, 62, 36982, 796, 657, 87, 7410, 24, 198, 15858, 6369, 62, 1404, 5446, 9865, 62, 1503, 30631, 62, 1677, 6242, 30465, 796, 657, 87, 4521, 1828, 198, 15858, 6369, 62, 1404, 5446, 9865, 62, 1503, 30631, 62, 33489, 796, 657, 87, 4521, 1954, 198, 15858, 6369, 62, 1404, 5446, 9865, 62, 1503, 30631, 62, 18601, 14114, 796, 657, 87, 4521, 1731, 198, 15858, 6369, 62, 1404, 5446, 9865, 62, 1503, 30631, 62, 25216, 796, 657, 87, 4521, 1495, 198, 34, 39237, 62, 15858, 6369, 62, 1404, 5446, 9865, 796, 657, 87, 4521, 2075, 198, 15858, 6369, 62, 4805, 7730, 24115, 62, 16402, 12394, 62, 33489, 796, 657, 87, 39570, 17, 198, 15858, 6369, 62, 1404, 5446, 9865, 62, 1503, 30631, 62, 16402, 41358, 796, 657, 87, 4521, 2231, 198, 2257, 24181, 4146, 62, 31098, 62, 42296, 34, 796, 657, 87, 3459, 405, 198, 2257, 24181, 4146, 62, 31098, 62, 7708, 4146, 796, 657, 87, 3459, 486, 198, 2257, 24181, 4146, 62, 31098, 62, 47924, 62, 46162, 4221, 62, 7708, 4146, 796, 657, 87, 23, 30863, 198, 2257, 24181, 4146, 62, 31098, 62, 47924, 62, 46162, 4221, 62, 47924, 796, 657, 87, 41655, 18, 198, 22921, 62, 35, 20530, 62, 19499, 5777, 4877, 796, 657, 87, 3459, 1731, 198, 35, 20530, 62, 19499, 45746, 15, 796, 657, 87, 3459, 1495, 198, 35, 20530, 62, 19499, 45746, 16, 796, 657, 87, 3459, 2075, 198, 35, 20530, 62, 19499, 45746, 17, 796, 657, 87, 3459, 1983, 198, 35, 20530, 62, 19499, 45746, 18, 796, 657, 87, 3459, 2078, 198, 35, 20530, 62, 19499, 45746, 19, 796, 657, 87, 3459, 1959, 198, 35, 20530, 62, 19499, 45746, 20, 796, 657, 87, 42980, 32, 198, 35, 20530, 62, 19499, 45746, 21, 796, 657, 87, 42980, 33, 198, 35, 20530, 62, 19499, 45746, 22, 796, 657, 87, 42980, 34, 198, 35, 20530, 62, 19499, 45746, 23, 796, 657, 87, 42980, 35, 198, 35, 20530, 62, 19499, 45746, 24, 796, 657, 87, 42980, 36, 198, 35, 20530, 62, 19499, 45746, 940, 796, 657, 87, 42980, 37, 198, 35, 20530, 62, 19499, 45746, 1157, 796, 657, 87, 3459, 1270, 198, 35, 20530, 62, 19499, 45746, 1065, 796, 657, 87, 3459, 3132, 198, 35, 20530, 62, 19499, 45746, 1485, 796, 657, 87, 3459, 2624, 198, 35, 20530, 62, 19499, 45746, 1415, 796, 657, 87, 3459, 2091, 198, 35, 20530, 62, 19499, 45746, 1314, 796, 657, 87, 3459, 2682, 198, 9148, 10619, 62, 36, 10917, 6234, 62, 1847, 47, 7801, 796, 657, 87, 49287, 35, 198, 22921, 62, 15858, 6369, 62, 1404, 5446, 40, 4462, 796, 657, 87, 3459, 3388, 198, 15858, 6369, 62, 1404, 5446, 9865, 62, 1503, 30631, 62, 35510, 42126, 14887, 1961, 796, 657, 87, 44980, 32, 198, 22921, 62, 47648, 62, 3955, 11879, 62, 4944, 29722, 796, 657, 87, 3459, 4761, 198, 37, 33202, 10979, 62, 9693, 2885, 1137, 796, 657, 87, 23, 33, 1270, 198, 15858, 6369, 62, 9693, 2885, 1137, 796, 657, 87, 23, 33, 3132, 198, 22921, 62, 37, 33202, 10979, 62, 4944, 5064, 1581, 44, 62, 9858, 47, 1340, 15365, 796, 657, 87, 23, 33, 2920, 198, 22921, 62, 15858, 6369, 62, 4944, 5064, 1581, 44, 62, 9858, 47, 1340, 15365, 796, 657, 87, 23, 33, 19, 32, 198, 22921, 62, 53, 13153, 2751, 62, 3697, 46, 33586, 796, 657, 87, 23, 33, 19, 33, 198, 22921, 62, 15858, 6369, 62, 47648, 62, 3955, 11879, 62, 4944, 29722, 796, 657, 87, 23, 33, 19, 34, 198, 22921, 62, 9858, 33, 1268, 1961, 62, 47648, 62, 3955, 11879, 62, 4944, 29722, 796, 657, 87, 23, 33, 19, 35, 198, 9693, 2885, 1137, 62, 25216, 796, 657, 87, 23, 33, 19, 37, 198, 3697, 46, 1404, 62, 53, 2943, 17, 796, 657, 87, 23, 33, 1120, 198, 3697, 46, 1404, 62, 53, 2943, 18, 796, 657, 87, 23, 33, 4349, 198, 3697, 46, 1404, 62, 53, 2943, 19, 796, 657, 87, 23, 33, 4309, 198, 12394, 62, 53, 2943, 17, 796, 657, 87, 23, 33, 4310, 198, 12394, 62, 53, 2943, 18, 796, 657, 87, 23, 33, 4051, 198, 12394, 62, 53, 2943, 19, 796, 657, 87, 23, 33, 2816, 198, 8202, 3535, 796, 657, 87, 23, 33, 3980, 198, 8202, 3535, 62, 53, 2943, 17, 796, 657, 87, 23, 33, 3553, 198, 8202, 3535, 62, 53, 2943, 18, 796, 657, 87, 23, 33, 3365, 198, 8202, 3535, 62, 53, 2943, 19, 796, 657, 87, 23, 33, 3270, 198, 3697, 46, 1404, 62, 41636, 17, 796, 657, 87, 23, 33, 20, 32, 198, 3697, 46, 1404, 62, 41636, 18, 796, 657, 87, 23, 33, 20, 33, 198, 3697, 46, 1404, 62, 41636, 19, 796, 657, 87, 23, 33, 20, 34, 198, 49302, 6489, 1137, 62, 16, 35, 796, 657, 87, 23, 33, 20, 35, 198, 49302, 6489, 1137, 62, 17, 35, 796, 657, 87, 23, 33, 20, 36, 198, 49302, 6489, 1137, 62, 18, 35, 796, 657, 87, 23, 33, 20, 37, 198, 49302, 6489, 1137, 62, 34, 10526, 36, 796, 657, 87, 23, 33, 1899, 198, 49302, 6489, 1137, 62, 16, 35, 62, 9693, 2885, 3913, 796, 657, 87, 23, 33, 5333, 198, 49302, 6489, 1137, 62, 17, 35, 62, 9693, 2885, 3913, 796, 657, 87, 23, 33, 5237, 198, 7206, 2538, 9328, 62, 35744, 2937, 796, 657, 87, 23, 33, 1795, 198, 9858, 11901, 2538, 62, 35744, 2937, 796, 657, 87, 23, 33, 6659, 198, 43, 17248, 62, 35744, 2937, 796, 657, 87, 23, 33, 6469, 198, 23428, 2389, 6158, 62, 35744, 2937, 796, 657, 87, 23, 33, 5999, 198, 10778, 62, 25294, 62, 43, 49494, 796, 657, 87, 23, 33, 5705, 198, 17139, 16219, 1961, 62, 9693, 2885, 4877, 796, 657, 87, 23, 33, 5332, 198, 10659, 9306, 62, 4944, 5064, 1581, 5653, 796, 657, 87, 23, 33, 4521, 198, 10659, 9306, 62, 4944, 5064, 1581, 44, 62, 22921, 62, 43, 49494, 796, 657, 87, 23, 33, 5774, 198, 9693, 2885, 1137, 62, 47690, 62, 43, 49494, 796, 657, 87, 23, 33, 3459, 198, 10659, 9306, 62, 1404, 5446, 9865, 3843, 1546, 796, 657, 87, 23, 33, 4531, 198, 10659, 9306, 62, 1404, 5446, 9865, 37780, 62, 22921, 62, 43, 49494, 796, 657, 87, 23, 33, 23, 32, 198, 37, 33202, 10979, 62, 9693, 2885, 1137, 62, 14418, 3824, 37045, 62, 39, 12394, 796, 657, 87, 23, 33, 23, 33, 198, 9693, 2885, 2751, 62, 43, 15567, 52, 11879, 62, 43717, 796, 657, 87, 23, 33, 23, 34, 198, 34, 39237, 62, 4805, 7730, 24115, 796, 657, 87, 23, 33, 23, 35, 198, 16402, 12394, 62, 4303, 49, 12709, 62, 8220, 12532, 62, 1581, 3528, 1268, 796, 657, 87, 23, 8141, 15, 198, 43, 36048, 62, 2538, 9792, 796, 657, 87, 23, 8141, 16, 198, 8577, 18973, 62, 2538, 9792, 796, 657, 87, 23, 8141, 17, 198, 2257, 24181, 4146, 62, 31098, 62, 31688, 796, 657, 87, 23, 8141, 18, 198, 2257, 24181, 4146, 62, 31098, 62, 39488, 62, 31180, 42, 796, 657, 87, 23, 8141, 19, 198, 2257, 24181, 4146, 62, 31098, 62, 18564, 2043, 3620, 1921, 42, 796, 657, 87, 23, 8141, 20, 198, 15858, 6369, 62, 4805, 7730, 24115, 62, 34551, 46, 62, 50, 14114, 796, 657, 87, 39570, 18, 198, 16402, 12394, 62, 4303, 49, 12709, 796, 657, 87, 3459, 5333, 198, 8220, 12532, 62, 2200, 6489, 11598, 796, 657, 87, 3459, 5237, 198, 22921, 62, 47648, 62, 8220, 1581, 5258, 796, 657, 87, 3459, 4869 ]
2.637426
11,035
from bs4 import BeautifulSoup from urllib import request from urllib.error import HTTPError import tqdm import os import argparse if __name__ == '__main__': main()
[ 6738, 275, 82, 19, 1330, 23762, 50, 10486, 201, 198, 6738, 2956, 297, 571, 1330, 2581, 201, 198, 6738, 2956, 297, 571, 13, 18224, 1330, 14626, 12331, 201, 198, 11748, 256, 80, 36020, 201, 198, 11748, 28686, 201, 198, 11748, 1822, 29572, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 201, 198, 220, 220, 220, 1388, 3419 ]
2.637681
69
# -*- coding: utf-8 -*- """ Created on Sat May 2 11:26:18 2020 @author: max """ import cv2 import numpy as np from PIL import Image, ImageDraw, ImageFont import requests
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 37811, 198, 41972, 319, 7031, 1737, 220, 362, 1367, 25, 2075, 25, 1507, 12131, 198, 198, 31, 9800, 25, 3509, 198, 37811, 198, 11748, 269, 85, 17, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 350, 4146, 1330, 7412, 11, 7412, 25302, 11, 7412, 23252, 198, 11748, 7007 ]
2.758065
62
from nose.tools import assert_equal import os import tempfile import re from asciinema.config import Config
[ 6738, 9686, 13, 31391, 1330, 6818, 62, 40496, 198, 198, 11748, 28686, 198, 11748, 20218, 7753, 198, 11748, 302, 198, 198, 6738, 355, 979, 7749, 64, 13, 11250, 1330, 17056, 628, 198 ]
3.5
32
import requests from base64 import b32encode, b32decode, b64encode, b64decode, b85encode, b85decode from base58 import b58decode, b58encode import base91 import hashlib import json def ensure_str(s, encoding='utf-8', errors='strict'): """Coerce *s* to `str`. For Python 3: - `str` -> `str` - `bytes or bytearray` -> decoded to `str` """ if not isinstance(s, (str, bytes, bytearray)): raise TypeError("not expecting type '%s'" % type(s)) if isinstance(s, (bytes, bytearray)): s = s.decode(encoding, errors) return s if __name__ == '__main__': test()
[ 11748, 7007, 198, 6738, 2779, 2414, 1330, 220, 275, 2624, 268, 8189, 11, 275, 2624, 12501, 1098, 11, 275, 2414, 268, 8189, 11, 275, 2414, 12501, 1098, 11, 275, 5332, 268, 8189, 11, 275, 5332, 12501, 1098, 198, 6738, 2779, 3365, 1330, 275, 3365, 12501, 1098, 11, 275, 3365, 268, 8189, 198, 11748, 2779, 6420, 198, 11748, 12234, 8019, 198, 11748, 33918, 628, 198, 4299, 4155, 62, 2536, 7, 82, 11, 21004, 11639, 40477, 12, 23, 3256, 8563, 11639, 301, 2012, 6, 2599, 198, 220, 220, 220, 37227, 7222, 263, 344, 1635, 82, 9, 284, 4600, 2536, 44646, 198, 220, 220, 220, 1114, 11361, 513, 25, 198, 220, 220, 220, 220, 220, 532, 4600, 2536, 63, 4613, 4600, 2536, 63, 198, 220, 220, 220, 220, 220, 532, 4600, 33661, 393, 416, 83, 451, 2433, 63, 4613, 875, 9043, 284, 4600, 2536, 63, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 407, 318, 39098, 7, 82, 11, 357, 2536, 11, 9881, 11, 416, 83, 451, 2433, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 5994, 12331, 7203, 1662, 12451, 2099, 705, 4, 82, 29653, 4064, 2099, 7, 82, 4008, 198, 220, 220, 220, 611, 318, 39098, 7, 82, 11, 357, 33661, 11, 416, 83, 451, 2433, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 264, 796, 264, 13, 12501, 1098, 7, 12685, 7656, 11, 8563, 8, 198, 220, 220, 220, 1441, 264, 628, 220, 220, 220, 220, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 1332, 3419, 198 ]
2.347328
262
""" Cascaded Convolution Model - Pranav Shrestha (ps2958) - Jeffrey Wan (jw3468) """ import pickle import numpy as np import pandas as pd import matplotlib.pyplot as plt from keras.preprocessing import text, sequence from keras.preprocessing.text import Tokenizer from keras.utils import to_categorical from keras.models import * from keras.layers import * from sklearn.model_selection import train_test_split, KFold from keras.metrics import categorical_accuracy from keras import backend as K from keras.regularizers import l1, l2 import tensorflow as tf import keras from keras.callbacks import EarlyStopping ,ModelCheckpoint from utils import * ### Data Retrieval cb513filename = '../data/data_princeton/cb513.npy' cb6133filteredfilename = '../data/data_princeton/cb6133filtered.npy' maxlen_seq = r = 700 # protein residues padded to 700 f = 57 # number of features for each residue #load train train_df, X_aug_train = load_augmented_data(cb6133filteredfilename ,maxlen_seq) train_input_seqs, train_target_seqs = train_df[['input', 'expected']][(train_df.len <= maxlen_seq)].values.T #load test test_df, X_aug_test = load_augmented_data(cb513filename,maxlen_seq) test_input_seqs, test_target_seqs = test_df[['input','expected']][(test_df.len <= maxlen_seq)].values.T #tokenizer # Converting the inputs to trigrams train_input_grams = seq2ngrams(train_input_seqs) # Initializing and defining the tokenizer encoders and decoders based on the train set tokenizer_encoder = Tokenizer() tokenizer_encoder.fit_on_texts(train_input_grams) tokenizer_decoder = Tokenizer(char_level = True) tokenizer_decoder.fit_on_texts(train_target_seqs) # Using the tokenizer to encode and decode the sequences for use in training #train inputs train_input_data = tokenizer_encoder.texts_to_sequences(train_input_grams) X_train = sequence.pad_sequences(train_input_data, maxlen = maxlen_seq, padding = 'post') #train targets train_target_data = tokenizer_decoder.texts_to_sequences(train_target_seqs) train_target_data = sequence.pad_sequences(train_target_data, maxlen = maxlen_seq, padding = 'post') y_train = to_categorical(train_target_data) #test inputs test_input_grams = seq2ngrams(test_input_seqs) test_input_data = tokenizer_encoder.texts_to_sequences(test_input_grams) X_test = sequence.pad_sequences(test_input_data, maxlen = maxlen_seq, padding = 'post') #test targets test_target_data = tokenizer_decoder.texts_to_sequences(test_target_seqs) test_target_data = sequence.pad_sequences(test_target_data, maxlen = maxlen_seq, padding = 'post') y_test = to_categorical(test_target_data) # Computing the number of words and number of tags n_words = len(tokenizer_encoder.word_index) + 1 n_tags = len(tokenizer_decoder.word_index) + 1 #### validation data n_samples = len(train_df) np.random.seed(0) validation_idx = np.random.choice(np.arange(n_samples), size=300, replace=False) training_idx = np.array(list(set(np.arange(n_samples))-set(validation_idx))) X_val = X_train[validation_idx] X_train = X_train[training_idx] y_val = y_train[validation_idx] y_train = y_train[training_idx] X_aug_val = X_aug_train[validation_idx] X_aug_train = X_aug_train[training_idx] #### end validation p = {'activation1':[relu, softmax], 'activation2':[relu, softmax], 'optimizer': ['Nadam', "RMSprop"], 'losses': ['categorical_crossentropy', keras.losses.binary_crossentropy], 'first_hidden_layer': [10, 8, 6], 'second_hidden_layer': [2, 4, 6], 'batch_size': [64, 128, 10000], 'epochs': [50, 75]} def train(X_train, y_train, X_val=None, y_val=None): """ Main Training function with the following properties: Optimizer - Nadam Loss function - Categorical Crossentropy Batch Size - 128 (any more will exceed Collab GPU RAM) Epochs - 50 """ model = CNN_BIGRU() model.compile( optimizer="Nadam", loss="categorical_crossentropy", metrics=["accuracy", accuracy]) if X_val is not None and y_val is not None: earlyStopping = EarlyStopping(monitor='val_accuracy', patience=10, verbose=1, mode='max') checkpointer = ModelCheckpoint(filepath=load_file, monitor='val_accuracy', verbose=1, save_best_only=True, mode='max') # Training the model on the training data and validating using the validation set history = model.fit(X_train, y_train, validation_data=(X_val, y_val), epochs=75, batch_size=128, callbacks=[checkpointer, earlyStopping], verbose=1, shuffle=True) else: history = model.fit(X_train, y_train, batch_size=128, epochs=75) return history, model """ Build model """ load_file = "./model/mod_1-CB513-"+datetime.now().strftime("%Y_%m_%d-%H_%M")+".h5" history, model = train([X_train, X_aug_train], y_train, X_val=[X_val, X_aug_val], y_val=y_val) model.load_weights(load_file) print("####evaluate:") score = model.evaluate([X_test,X_aug_test], y_test, verbose=2, batch_size=1) print(score) print ('test loss:', score[0]) print ('test accuracy:', score[2])
[ 37811, 198, 34, 3372, 5286, 34872, 2122, 9104, 198, 198, 12, 1736, 272, 615, 911, 2118, 3099, 357, 862, 1959, 3365, 8, 198, 12, 19627, 33242, 357, 73, 86, 2682, 3104, 8, 198, 198, 37811, 198, 198, 11748, 2298, 293, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 19798, 292, 355, 279, 67, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 198, 6738, 41927, 292, 13, 3866, 36948, 1330, 2420, 11, 8379, 198, 6738, 41927, 292, 13, 3866, 36948, 13, 5239, 1330, 29130, 7509, 198, 6738, 41927, 292, 13, 26791, 1330, 284, 62, 66, 2397, 12409, 198, 6738, 41927, 292, 13, 27530, 1330, 1635, 198, 6738, 41927, 292, 13, 75, 6962, 1330, 1635, 198, 6738, 1341, 35720, 13, 19849, 62, 49283, 1330, 4512, 62, 9288, 62, 35312, 11, 509, 37, 727, 198, 6738, 41927, 292, 13, 4164, 10466, 1330, 4253, 12409, 62, 4134, 23843, 198, 6738, 41927, 292, 1330, 30203, 355, 509, 198, 6738, 41927, 292, 13, 16338, 11341, 1330, 300, 16, 11, 300, 17, 198, 11748, 11192, 273, 11125, 355, 48700, 198, 11748, 41927, 292, 198, 6738, 41927, 292, 13, 13345, 10146, 1330, 12556, 1273, 33307, 837, 17633, 9787, 4122, 198, 198, 6738, 3384, 4487, 1330, 1635, 198, 198, 21017, 6060, 4990, 380, 18206, 198, 21101, 48645, 34345, 796, 705, 40720, 7890, 14, 7890, 62, 1050, 1939, 18483, 14, 21101, 48645, 13, 77, 9078, 6, 198, 21101, 21, 16945, 10379, 4400, 34345, 796, 705, 40720, 7890, 14, 7890, 62, 1050, 1939, 18483, 14, 21101, 21, 16945, 10379, 4400, 13, 77, 9078, 6, 198, 198, 9806, 11925, 62, 41068, 796, 374, 796, 13037, 220, 1303, 7532, 47185, 44582, 284, 13037, 198, 69, 796, 7632, 220, 1303, 1271, 286, 3033, 329, 1123, 35186, 198, 198, 2, 2220, 4512, 198, 27432, 62, 7568, 11, 1395, 62, 7493, 62, 27432, 796, 3440, 62, 559, 5154, 276, 62, 7890, 7, 21101, 21, 16945, 10379, 4400, 34345, 220, 837, 9806, 11925, 62, 41068, 8, 198, 27432, 62, 15414, 62, 41068, 82, 11, 4512, 62, 16793, 62, 41068, 82, 796, 4512, 62, 7568, 58, 17816, 15414, 3256, 705, 40319, 20520, 7131, 7, 27432, 62, 7568, 13, 11925, 19841, 3509, 11925, 62, 41068, 25295, 27160, 13, 51, 198, 2, 2220, 1332, 198, 9288, 62, 7568, 11, 1395, 62, 7493, 62, 9288, 796, 3440, 62, 559, 5154, 276, 62, 7890, 7, 21101, 48645, 34345, 11, 9806, 11925, 62, 41068, 8, 198, 9288, 62, 15414, 62, 41068, 82, 11, 1332, 62, 16793, 62, 41068, 82, 796, 1332, 62, 7568, 58, 17816, 15414, 41707, 40319, 20520, 7131, 7, 9288, 62, 7568, 13, 11925, 19841, 3509, 11925, 62, 41068, 25295, 27160, 13, 51, 198, 198, 2, 30001, 7509, 198, 2, 35602, 889, 262, 17311, 284, 5192, 9474, 198, 27432, 62, 15414, 62, 4546, 82, 796, 33756, 17, 782, 9474, 7, 27432, 62, 15414, 62, 41068, 82, 8, 198, 2, 20768, 2890, 290, 16215, 262, 11241, 7509, 2207, 375, 364, 290, 875, 375, 364, 1912, 319, 262, 4512, 900, 198, 30001, 7509, 62, 12685, 12342, 796, 29130, 7509, 3419, 198, 30001, 7509, 62, 12685, 12342, 13, 11147, 62, 261, 62, 5239, 82, 7, 27432, 62, 15414, 62, 4546, 82, 8, 198, 30001, 7509, 62, 12501, 12342, 796, 29130, 7509, 7, 10641, 62, 5715, 796, 6407, 8, 198, 30001, 7509, 62, 12501, 12342, 13, 11147, 62, 261, 62, 5239, 82, 7, 27432, 62, 16793, 62, 41068, 82, 8, 628, 198, 2, 8554, 262, 11241, 7509, 284, 37773, 290, 36899, 262, 16311, 329, 779, 287, 3047, 198, 198, 2, 27432, 17311, 198, 27432, 62, 15414, 62, 7890, 796, 11241, 7509, 62, 12685, 12342, 13, 5239, 82, 62, 1462, 62, 3107, 3007, 7, 27432, 62, 15414, 62, 4546, 82, 8, 198, 55, 62, 27432, 796, 8379, 13, 15636, 62, 3107, 3007, 7, 27432, 62, 15414, 62, 7890, 11, 3509, 11925, 796, 3509, 11925, 62, 41068, 11, 24511, 796, 705, 7353, 11537, 198, 2, 27432, 6670, 198, 27432, 62, 16793, 62, 7890, 796, 11241, 7509, 62, 12501, 12342, 13, 5239, 82, 62, 1462, 62, 3107, 3007, 7, 27432, 62, 16793, 62, 41068, 82, 8, 198, 27432, 62, 16793, 62, 7890, 796, 8379, 13, 15636, 62, 3107, 3007, 7, 27432, 62, 16793, 62, 7890, 11, 3509, 11925, 796, 3509, 11925, 62, 41068, 11, 24511, 796, 705, 7353, 11537, 198, 88, 62, 27432, 796, 284, 62, 66, 2397, 12409, 7, 27432, 62, 16793, 62, 7890, 8, 198, 2, 9288, 17311, 198, 9288, 62, 15414, 62, 4546, 82, 796, 33756, 17, 782, 9474, 7, 9288, 62, 15414, 62, 41068, 82, 8, 198, 9288, 62, 15414, 62, 7890, 796, 11241, 7509, 62, 12685, 12342, 13, 5239, 82, 62, 1462, 62, 3107, 3007, 7, 9288, 62, 15414, 62, 4546, 82, 8, 198, 55, 62, 9288, 796, 8379, 13, 15636, 62, 3107, 3007, 7, 9288, 62, 15414, 62, 7890, 11, 3509, 11925, 796, 3509, 11925, 62, 41068, 11, 24511, 796, 705, 7353, 11537, 198, 2, 9288, 6670, 198, 9288, 62, 16793, 62, 7890, 796, 11241, 7509, 62, 12501, 12342, 13, 5239, 82, 62, 1462, 62, 3107, 3007, 7, 9288, 62, 16793, 62, 41068, 82, 8, 198, 9288, 62, 16793, 62, 7890, 796, 8379, 13, 15636, 62, 3107, 3007, 7, 9288, 62, 16793, 62, 7890, 11, 3509, 11925, 796, 3509, 11925, 62, 41068, 11, 24511, 796, 705, 7353, 11537, 198, 88, 62, 9288, 796, 284, 62, 66, 2397, 12409, 7, 9288, 62, 16793, 62, 7890, 8, 198, 198, 2, 38589, 262, 1271, 286, 2456, 290, 1271, 286, 15940, 198, 77, 62, 10879, 796, 18896, 7, 30001, 7509, 62, 12685, 12342, 13, 4775, 62, 9630, 8, 1343, 352, 198, 77, 62, 31499, 796, 18896, 7, 30001, 7509, 62, 12501, 12342, 13, 4775, 62, 9630, 8, 1343, 352, 198, 198, 4242, 21201, 1366, 198, 198, 77, 62, 82, 12629, 796, 18896, 7, 27432, 62, 7568, 8, 198, 37659, 13, 25120, 13, 28826, 7, 15, 8, 198, 12102, 341, 62, 312, 87, 796, 45941, 13, 25120, 13, 25541, 7, 37659, 13, 283, 858, 7, 77, 62, 82, 12629, 828, 2546, 28, 6200, 11, 6330, 28, 25101, 8, 198, 34409, 62, 312, 87, 796, 45941, 13, 18747, 7, 4868, 7, 2617, 7, 37659, 13, 283, 858, 7, 77, 62, 82, 12629, 4008, 12, 2617, 7, 12102, 341, 62, 312, 87, 22305, 198, 198, 55, 62, 2100, 796, 1395, 62, 27432, 58, 12102, 341, 62, 312, 87, 60, 198, 55, 62, 27432, 796, 1395, 62, 27432, 58, 34409, 62, 312, 87, 60, 198, 88, 62, 2100, 796, 331, 62, 27432, 58, 12102, 341, 62, 312, 87, 60, 198, 88, 62, 27432, 796, 331, 62, 27432, 58, 34409, 62, 312, 87, 60, 198, 55, 62, 7493, 62, 2100, 796, 1395, 62, 7493, 62, 27432, 58, 12102, 341, 62, 312, 87, 60, 198, 55, 62, 7493, 62, 27432, 796, 1395, 62, 7493, 62, 27432, 58, 34409, 62, 312, 87, 60, 198, 4242, 886, 21201, 628, 198, 79, 796, 1391, 6, 48545, 16, 10354, 58, 260, 2290, 11, 2705, 9806, 4357, 198, 220, 220, 220, 220, 705, 48545, 17, 10354, 58, 260, 2290, 11, 2705, 9806, 4357, 198, 220, 220, 220, 220, 705, 40085, 7509, 10354, 37250, 45, 324, 321, 3256, 366, 49, 5653, 22930, 33116, 198, 220, 220, 220, 220, 705, 22462, 274, 10354, 37250, 66, 2397, 12409, 62, 19692, 298, 28338, 3256, 41927, 292, 13, 22462, 274, 13, 39491, 62, 19692, 298, 28338, 4357, 198, 220, 220, 220, 220, 705, 11085, 62, 30342, 62, 29289, 10354, 685, 940, 11, 807, 11, 718, 4357, 198, 220, 220, 220, 220, 705, 12227, 62, 30342, 62, 29289, 10354, 685, 17, 11, 604, 11, 718, 4357, 198, 220, 220, 220, 220, 705, 43501, 62, 7857, 10354, 685, 2414, 11, 13108, 11, 33028, 4357, 198, 220, 220, 220, 220, 705, 538, 5374, 82, 10354, 685, 1120, 11, 5441, 48999, 198, 198, 4299, 4512, 7, 55, 62, 27432, 11, 331, 62, 27432, 11, 1395, 62, 2100, 28, 14202, 11, 331, 62, 2100, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 8774, 13614, 2163, 351, 262, 1708, 6608, 25, 198, 220, 220, 220, 220, 220, 220, 220, 30011, 7509, 532, 21877, 321, 198, 220, 220, 220, 220, 220, 220, 220, 22014, 2163, 532, 327, 2397, 12409, 6372, 298, 28338, 198, 220, 220, 220, 220, 220, 220, 220, 347, 963, 12849, 532, 13108, 357, 1092, 517, 481, 7074, 7778, 397, 11362, 13931, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4551, 5374, 82, 532, 2026, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2746, 796, 8100, 62, 3483, 10761, 52, 3419, 198, 220, 220, 220, 2746, 13, 5589, 576, 7, 198, 220, 220, 220, 220, 220, 220, 220, 6436, 7509, 2625, 45, 324, 321, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 2994, 2625, 66, 2397, 12409, 62, 19692, 298, 28338, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 20731, 28, 14692, 4134, 23843, 1600, 9922, 12962, 628, 220, 220, 220, 611, 1395, 62, 2100, 318, 407, 6045, 290, 331, 62, 2100, 318, 407, 6045, 25, 628, 198, 220, 220, 220, 220, 220, 220, 220, 1903, 1273, 33307, 796, 12556, 1273, 33307, 7, 41143, 11639, 2100, 62, 4134, 23843, 3256, 16336, 28, 940, 11, 15942, 577, 28, 16, 11, 4235, 11639, 9806, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 2198, 29536, 796, 9104, 9787, 4122, 7, 7753, 6978, 28, 2220, 62, 7753, 11, 5671, 11639, 2100, 62, 4134, 23843, 3256, 15942, 577, 28, 16, 11, 3613, 62, 13466, 62, 8807, 28, 17821, 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, 4235, 11639, 9806, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 13614, 262, 2746, 319, 262, 3047, 1366, 290, 4938, 803, 1262, 262, 21201, 900, 198, 220, 220, 220, 220, 220, 220, 220, 2106, 796, 2746, 13, 11147, 7, 55, 62, 27432, 11, 331, 62, 27432, 11, 21201, 62, 7890, 16193, 55, 62, 2100, 11, 331, 62, 2100, 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, 220, 36835, 82, 28, 2425, 11, 15458, 62, 7857, 28, 12762, 11, 869, 10146, 41888, 9122, 29536, 11, 1903, 1273, 33307, 4357, 15942, 577, 28, 16, 11, 36273, 28, 17821, 8, 628, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2106, 796, 2746, 13, 11147, 7, 55, 62, 27432, 11, 331, 62, 27432, 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, 15458, 62, 7857, 28, 12762, 11, 36835, 82, 28, 2425, 8, 628, 220, 220, 220, 1441, 2106, 11, 2746, 628, 198, 37811, 10934, 2746, 37227, 628, 628, 198, 2220, 62, 7753, 796, 366, 19571, 19849, 14, 4666, 62, 16, 12, 23199, 48645, 21215, 10, 19608, 8079, 13, 2197, 22446, 2536, 31387, 7203, 4, 56, 62, 4, 76, 62, 4, 67, 12, 4, 39, 62, 4, 44, 4943, 10, 1911, 71, 20, 1, 198, 23569, 11, 2746, 796, 4512, 26933, 55, 62, 27432, 11, 1395, 62, 7493, 62, 27432, 4357, 331, 62, 27432, 11, 1395, 62, 2100, 41888, 55, 62, 2100, 11, 1395, 62, 7493, 62, 2100, 4357, 331, 62, 2100, 28, 88, 62, 2100, 8, 198, 198, 19849, 13, 2220, 62, 43775, 7, 2220, 62, 7753, 8, 198, 198, 4798, 7203, 4242, 49786, 25, 4943, 198, 26675, 796, 2746, 13, 49786, 26933, 55, 62, 9288, 11, 55, 62, 7493, 62, 9288, 4357, 331, 62, 9288, 11, 15942, 577, 28, 17, 11, 15458, 62, 7857, 28, 16, 8, 198, 4798, 7, 26675, 8, 198, 4798, 19203, 9288, 2994, 25, 3256, 4776, 58, 15, 12962, 198, 4798, 19203, 9288, 9922, 25, 3256, 4776, 58, 17, 12962 ]
2.601626
1,968
# #author :Sachin Mehta #Description : This repository contains source code for semantically segmenting WSIs; however, it could be easily # adapted for other domains such as natural image segmentation #File Description: This file implements the Cross entropy loss for 2D data. #============================================================================== import torch import torch.nn as nn import torch.nn.functional as F
[ 2, 198, 2, 9800, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 50, 620, 259, 2185, 4352, 64, 198, 2, 11828, 220, 220, 220, 220, 1058, 770, 16099, 4909, 2723, 2438, 329, 5026, 31589, 10618, 278, 25290, 3792, 26, 2158, 11, 340, 714, 307, 3538, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16573, 329, 584, 18209, 884, 355, 3288, 2939, 10618, 341, 198, 2, 8979, 12489, 25, 770, 2393, 23986, 262, 6372, 40709, 2994, 329, 362, 35, 1366, 13, 198, 2, 23926, 25609, 855, 198, 198, 11748, 28034, 198, 11748, 28034, 13, 20471, 355, 299, 77, 198, 11748, 28034, 13, 20471, 13, 45124, 355, 376 ]
3.791667
120
""" Defines the abstract class Aardvark Connection, which is used by child classes to test the I2C and SPI connections. """ from abc import ABCMeta, abstractmethod import unittest from aardvark_py import aa_find_devices_ext, aa_open, aa_close, AA_PORT_NOT_FREE class AardvarkConnection(unittest.TestCase): """ Abstract class which is used by child classes to test the I2C and SPI connections. """ __metaclass__ = ABCMeta @staticmethod @abstractmethod def get_port_number(): """Returns the port number""" pass def test_01_port_ready(self): """Tests that PORT_NUMBER is connected and available""" num, ports, unique_ids = aa_find_devices_ext(16, 16) self.assertGreater(num, 0) # check that devices have been returned if num > 0: # dictionary of form = port : (unique_id, in_use_status) devices = {} for i in range(num): port, in_use_status = AardvarkConnection.get_status(ports[i]) devices[port] = unique_ids, in_use_status # checks that the port is detected self.assertEqual(self.port_number in devices.keys(), True) # checks that it's available self.assertEqual(devices[self.port_number][1], False) @staticmethod def get_status(port): """Returns the status of the port and the port number""" if port & AA_PORT_NOT_FREE: port = port & ~AA_PORT_NOT_FREE return port, True return port, False def test_02_open_close(self): """Tests that the port can be successfully opened and closed""" handle = aa_open(self.port_number) self.assertGreater(handle, 0) # check that the port is open self.configure() _, status = AardvarkConnection.get_status(self.port_number) self.assertEqual(status, False) num_closed = aa_close(handle) self.assertEqual(num_closed, 1) @abstractmethod def configure(self): """ Configures the following attributes: - handle_config - pullup_resistors - target_power - bitrate - bus_timeout """ pass
[ 37811, 198, 7469, 1127, 262, 12531, 1398, 317, 446, 85, 668, 26923, 11, 543, 318, 973, 416, 1200, 6097, 198, 1462, 1332, 262, 314, 17, 34, 290, 49091, 8787, 13, 198, 37811, 198, 198, 6738, 450, 66, 1330, 9738, 48526, 11, 12531, 24396, 198, 11748, 555, 715, 395, 198, 6738, 257, 446, 85, 668, 62, 9078, 1330, 257, 64, 62, 19796, 62, 42034, 62, 2302, 11, 257, 64, 62, 9654, 11, 257, 64, 62, 19836, 11, 15923, 62, 15490, 62, 11929, 62, 39274, 628, 198, 4871, 317, 446, 85, 668, 32048, 7, 403, 715, 395, 13, 14402, 20448, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 27741, 1398, 543, 318, 973, 416, 1200, 6097, 284, 1332, 262, 314, 17, 34, 290, 49091, 8787, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 11593, 4164, 330, 31172, 834, 796, 9738, 48526, 628, 220, 220, 220, 2488, 12708, 24396, 198, 220, 220, 220, 2488, 397, 8709, 24396, 198, 220, 220, 220, 825, 651, 62, 634, 62, 17618, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 262, 2493, 1271, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1208, 628, 220, 220, 220, 825, 1332, 62, 486, 62, 634, 62, 1493, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 51, 3558, 326, 350, 9863, 62, 41359, 13246, 318, 5884, 290, 1695, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 997, 11, 14090, 11, 3748, 62, 2340, 796, 257, 64, 62, 19796, 62, 42034, 62, 2302, 7, 1433, 11, 1467, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 13681, 263, 7, 22510, 11, 657, 8, 220, 1303, 2198, 326, 4410, 423, 587, 4504, 198, 220, 220, 220, 220, 220, 220, 220, 611, 997, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 22155, 286, 1296, 796, 2493, 1058, 357, 34642, 62, 312, 11, 287, 62, 1904, 62, 13376, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4410, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 22510, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2493, 11, 287, 62, 1904, 62, 13376, 796, 317, 446, 85, 668, 32048, 13, 1136, 62, 13376, 7, 3742, 58, 72, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4410, 58, 634, 60, 796, 3748, 62, 2340, 11, 287, 62, 1904, 62, 13376, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 8794, 326, 262, 2493, 318, 12326, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 944, 13, 634, 62, 17618, 287, 4410, 13, 13083, 22784, 6407, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 8794, 326, 340, 338, 1695, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 42034, 58, 944, 13, 634, 62, 17618, 7131, 16, 4357, 10352, 8, 628, 220, 220, 220, 2488, 12708, 24396, 198, 220, 220, 220, 825, 651, 62, 13376, 7, 634, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 262, 3722, 286, 262, 2493, 290, 262, 2493, 1271, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2493, 1222, 15923, 62, 15490, 62, 11929, 62, 39274, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2493, 796, 2493, 1222, 5299, 3838, 62, 15490, 62, 11929, 62, 39274, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2493, 11, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2493, 11, 10352, 628, 220, 220, 220, 825, 1332, 62, 2999, 62, 9654, 62, 19836, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 51, 3558, 326, 262, 2493, 460, 307, 7675, 4721, 290, 4838, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 5412, 796, 257, 64, 62, 9654, 7, 944, 13, 634, 62, 17618, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 13681, 263, 7, 28144, 11, 657, 8, 220, 1303, 2198, 326, 262, 2493, 318, 1280, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11250, 495, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 11, 3722, 796, 317, 446, 85, 668, 32048, 13, 1136, 62, 13376, 7, 944, 13, 634, 62, 17618, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 13376, 11, 10352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 997, 62, 20225, 796, 257, 64, 62, 19836, 7, 28144, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 22510, 62, 20225, 11, 352, 8, 628, 220, 220, 220, 2488, 397, 8709, 24396, 198, 220, 220, 220, 825, 17425, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 17056, 942, 262, 1708, 12608, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 532, 5412, 62, 11250, 198, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2834, 929, 62, 35119, 669, 198, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2496, 62, 6477, 198, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1643, 4873, 198, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1323, 62, 48678, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1208, 198 ]
2.367694
941
#!/usr/bin/env python # _*_coding:utf-8 _*_ #@Time :2020/12/8 13:52 #@Author :Wenbo #@FileName: dataset.py.py import numpy as np from PIL import Image from paddle.io import Dataset import paddle.vision.transforms as T import paddle as pd class MyDataset(Dataset): """ 步骤一:继承paddle.io.Dataset类 """ def __init__(self, txt, transform=None): """ 步骤二:实现构造函数,定义数据读取方式,划分训练和测试数据集 """ super(MyDataset, self).__init__() imgs = [] f = open(txt, 'r') for line in f: line = line.strip('\n') line = line.rstrip('\n') words = line.split() imgs.append((words[0], int(words[1]))) self.imgs = imgs self.transform = transform # self.loader = loader # if __name__ == '__main__': # transform = T.Compose([ # T.RandomResizedCrop([448,448]), # T.Transpose(), # T.Normalize(mean=[0.5, 0.5, 0.5], std=[0.5, 0.5, 0.5]) # ]) # # train_data=MyDataset(txt=r'C:\Users\11982\Desktop\paddle\train.txt', transform=transform) # # for i in range(len(train_data)): # sample = train_data[i] # print(sample[0], sample[1].shape)
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 201, 198, 2, 4808, 9, 62, 66, 7656, 25, 40477, 12, 23, 4808, 9, 62, 201, 198, 2, 31, 7575, 220, 220, 220, 1058, 42334, 14, 1065, 14, 23, 1511, 25, 4309, 201, 198, 2, 31, 13838, 220, 1058, 54, 268, 2127, 220, 201, 198, 2, 31, 8979, 5376, 25, 27039, 13, 9078, 13, 9078, 201, 198, 201, 198, 11748, 299, 32152, 355, 45941, 201, 198, 6738, 350, 4146, 1330, 7412, 201, 198, 6738, 39517, 13, 952, 1330, 16092, 292, 316, 201, 198, 11748, 39517, 13, 10178, 13, 7645, 23914, 355, 309, 201, 198, 11748, 39517, 355, 279, 67, 201, 198, 201, 198, 4871, 2011, 27354, 292, 316, 7, 27354, 292, 316, 2599, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 10545, 255, 98, 165, 103, 97, 31660, 171, 120, 248, 163, 119, 100, 33699, 123, 79, 37382, 13, 952, 13, 27354, 292, 316, 163, 109, 119, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 256, 742, 11, 6121, 28, 14202, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 220, 220, 220, 220, 10545, 255, 98, 165, 103, 97, 12859, 234, 171, 120, 248, 22522, 252, 163, 236, 108, 162, 252, 226, 34460, 254, 49035, 121, 46763, 108, 171, 120, 234, 22522, 248, 20046, 231, 46763, 108, 162, 235, 106, 46237, 119, 20998, 244, 43095, 28156, 237, 171, 120, 234, 161, 7134, 26344, 228, 164, 106, 255, 163, 119, 225, 161, 240, 234, 38184, 233, 46237, 243, 46763, 108, 162, 235, 106, 37239, 228, 201, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2208, 7, 3666, 27354, 292, 316, 11, 2116, 737, 834, 15003, 834, 3419, 201, 198, 220, 220, 220, 220, 220, 220, 220, 545, 14542, 796, 17635, 201, 198, 220, 220, 220, 220, 220, 220, 220, 277, 796, 1280, 7, 14116, 11, 705, 81, 11537, 201, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1627, 287, 277, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1627, 796, 1627, 13, 36311, 10786, 59, 77, 11537, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1627, 796, 1627, 13, 81, 36311, 10786, 59, 77, 11537, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2456, 796, 1627, 13, 35312, 3419, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 545, 14542, 13, 33295, 19510, 10879, 58, 15, 4357, 493, 7, 10879, 58, 16, 60, 22305, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9600, 82, 796, 545, 14542, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 35636, 796, 6121, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2116, 13, 29356, 796, 40213, 201, 198, 201, 198, 201, 198, 2, 611, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 201, 198, 2, 220, 220, 220, 220, 6121, 796, 309, 13, 7293, 577, 26933, 201, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 309, 13, 29531, 4965, 1143, 34, 1773, 26933, 31115, 11, 31115, 46570, 201, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 309, 13, 8291, 3455, 22784, 201, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 309, 13, 26447, 1096, 7, 32604, 41888, 15, 13, 20, 11, 657, 13, 20, 11, 657, 13, 20, 4357, 14367, 41888, 15, 13, 20, 11, 657, 13, 20, 11, 657, 13, 20, 12962, 201, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 33761, 201, 198, 2, 201, 198, 2, 220, 220, 220, 220, 4512, 62, 7890, 28, 3666, 27354, 292, 316, 7, 14116, 28, 81, 6, 34, 7479, 14490, 59, 16315, 6469, 59, 36881, 59, 79, 37382, 59, 27432, 13, 14116, 3256, 6121, 28, 35636, 8, 201, 198, 2, 201, 198, 2, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 11925, 7, 27432, 62, 7890, 8, 2599, 201, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 6291, 796, 4512, 62, 7890, 58, 72, 60, 201, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 39873, 58, 15, 4357, 6291, 58, 16, 4083, 43358, 8, 201, 198 ]
1.661635
795
from avatar2.targets import Target, TargetStates from avatar2.protocols.gdb import GDBProtocol from .target import action_valid_decorator_factory, synchronize_state from ..watchmen import watch
[ 6738, 30919, 17, 13, 83, 853, 1039, 1330, 12744, 11, 12744, 42237, 198, 6738, 30919, 17, 13, 11235, 4668, 82, 13, 70, 9945, 1330, 402, 11012, 19703, 4668, 198, 198, 6738, 764, 16793, 1330, 2223, 62, 12102, 62, 12501, 273, 1352, 62, 69, 9548, 11, 18305, 1096, 62, 5219, 198, 6738, 11485, 8340, 3653, 1330, 2342, 198, 220, 220, 220, 220, 198 ]
3.225806
62
print("merhaba") print("merhaba") print("merhaba") print("merhaba")
[ 4798, 7203, 647, 5976, 64, 4943, 198, 4798, 7203, 647, 5976, 64, 4943, 198, 4798, 7203, 647, 5976, 64, 4943, 198, 4798, 7203, 647, 5976, 64, 4943 ]
2.481481
27
import re import math from copy import deepcopy import pulsar as psr from . import ApplyBasisSet def make_system(SomeString): """This function turns a string into a system object, which it then returns Special thanks to Lori A. Burns for the original version of this function ================================= Rules For Structuring Your String ================================= * An entire line may be commented out by prepending a '#' character * To specify the units of your system: * Add the line: 'units X' or 'units=X' * 'X' may be: * 'bohr', 'au', or 'a.u.' for atomic units * 'ang'or angstrom for Angstroms * Unit cells of crystals may be used as input. This is done by providing the fractional coordinates of your atoms and the cell's dimensions * sides are specified by 'sides a b c' * Units can be specified by units keyword * angles are specified by 'angles alpha beta gamma' * Units are in degrees """ #For the below comments, "any number" includes 0 comment = re.compile(r'^\s*#')#Comment line blank = re.compile(r'^\s*$')#Blank aside from white-space bohr = re.compile(r'^\s*units?[\s=]+(bohr|au|a.u.)\s*$', re.IGNORECASE)#a.u. ang = re.compile(r'^\s*units?[\s=]+(ang|angstrom)\s*$', re.IGNORECASE)#Ang #Ghosts and atoms? atom = re.compile(r'^(?:(?P<gh1>@)|(?P<gh2>Gh\())?(?P<label>(?P<symbol>[A-Z]{1,3})(?:(_\w+)|(\d+))?)(?(gh2)\))(?:@(?P<mass>\d+\.\d+))?$', re.IGNORECASE) cgmp = re.compile(r'^\s*(-?\d+)\s+(\d+)\s*$')#Charge/Mult frag = re.compile(r'^\s*--\s*$')#Fragment sperator #Matches something equals a number variable = re.compile(r'^\s*(\w+)\s*=\s*(-?\d+\.\d+|-?\d+\.|-?\.\d+|-?\d+|tda)\s*$', re.IGNORECASE) ghost = re.compile(r'@(.*)|Gh\((.*)\)', re.IGNORECASE)#Matches ghosts #Mathches a line that starts with 'sides' and has three numbers UCsides = re.compile(r'^\s*sides\s*(\d+|\d+\.\d+)\s*(\d+|\d+\.\d+)\s*(\d+|\d+\.\d+)\s*$',re.IGNORECASE) #Mathches a line that starts with 'angles' and has three numbers UCangles = re.compile(r'^\s*angles\s*(\d+|\d+\.\d+)\s*(\d+|\d+\.\d+)\s*(\d+|\d+\.\d+)\s*$',re.IGNORECASE) Systems=[0] #Atoms per fragment Zs=[] #Atomic number of each atom ToAU=1/0.52917721067 Charge=[0] #Charges, 0-th element is full system, i-th (i>0) is i-th frag Mult=[1] #Multiplicities, same as charges Sides=[] Angles=[] Carts=[] lines = re.split('\n', SomeString) for line in lines: if comment.match(line) or blank.match(line) or ang.match(line): continue elif bohr.match(line): ToAU=1.0 elif cgmp.match(line): Charge[NFrags()] = int(cgmp.match(line).group(1)) Mult[NFrags()] = int(cgmp.match(line).group(2)) # handle fragment markers and default fragment cgmp elif frag.match(line): Systems.append(0) Charge.append(0) Mult.append(1) DaAtoms[len(DaAtoms)]=[] elif UCsides.match(line): for i in range(1,4): Sides.append(float(UCsides.match(line).group(i))) elif UCangles.match(line): for i in range(1,4): Angles.append(float(UCangles.match(line).group(i))) # handle atoms elif atom.match(line.split()[0].strip()): entries = re.split(r'\s+|\s*,\s*', line.strip()) atomm = atom.match(line.split()[0].strip().upper()) atomLabel = atomm.group('label') atomSym = atomm.group('symbol') # We don't know whether the @C or Gh(C) notation matched. Do a quick check. ghostAtom = False if (atomm.group('gh1') is None and atomm.group('gh2') is None) else True # handle cartesians if len(entries) == 4: for i in range(1,4): Carts.append(float(entries[i])) Zs.append(psr.atomic_z_from_symbol(atomSym)) Systems[NFrags()]+=1 else: raise PulsarException('make_system: Unidentifiable line in geometry specification: %s' % (line)) DaSpace=psr.Space() Periodic=(len(Sides)==3 and len(Angles)==3) NewSides=[ToAU*i for i in Sides] if Periodic: DaSpace=psr.Space(Angles,NewSides) ToAU=1.0 molu=psr.AtomSetUniverse() for i in range(0,len(Zs)): TempCarts=[ToAU*Carts[3*i+j] for j in range(0,3)] molu.insert(psr.create_atom(TempCarts,Zs[i])) DaSys=psr.System(molu,True) if Periodic: Newu=psr.system.Frac2Cart(molu,DaSpace) UC=psr.CarveUC( psr.MakeSuperCell(Newu,[3,3,3],DaSpace.LatticeSides), DaSpace.LatticeSides) molu=psr.CleanUC(UC,DaSpace.LatticeSides) DaSys=psr.System(molu,True) DaSys.space=DaSpace DaSys.charge=Charge[0] DaSys.multiplicity=Mult[0] return DaSys def make_wf(bs,sysstring): """This is a convenience function for making a default input wavefunction. params: bs : string giving the name of the basis set sysstring: string to pass to make_system example: wfn = make_wf("aug-cc-pvdz", <triple_quote> H 0.0 0.0 0.0 H 0.0 0.0 0.89 <triple_quote>) """ temp_sys = make_system(sysstring) temp_sys = ApplyBasisSet.apply_single_basis("PRIMARY",bs,temp_sys) try: #Try to put a fitting basis on it sys = psr.apply_single_basis("FITTING",bs+"-jkfit",temp_sys) temp_sys = sys except: pass wf = psr.Wavefunction() wf.system = temp_sys return wf
[ 11748, 302, 198, 11748, 10688, 198, 6738, 4866, 1330, 2769, 30073, 198, 11748, 22271, 283, 355, 26692, 81, 198, 6738, 764, 1330, 27967, 15522, 271, 7248, 628, 198, 4299, 787, 62, 10057, 7, 4366, 10100, 2599, 198, 220, 220, 220, 37227, 1212, 2163, 4962, 257, 4731, 656, 257, 1080, 2134, 11, 543, 340, 788, 5860, 628, 220, 220, 220, 6093, 5176, 284, 43741, 317, 13, 23592, 329, 262, 2656, 2196, 286, 428, 2163, 628, 220, 220, 220, 46111, 198, 220, 220, 220, 14252, 1114, 32112, 870, 3406, 10903, 198, 220, 220, 220, 46111, 198, 220, 220, 220, 1635, 1052, 2104, 1627, 743, 307, 16476, 503, 416, 3143, 1571, 257, 705, 2, 6, 2095, 198, 220, 220, 220, 1635, 1675, 11986, 262, 4991, 286, 534, 1080, 25, 198, 220, 220, 220, 220, 220, 1635, 3060, 262, 1627, 25, 705, 41667, 1395, 6, 393, 705, 41667, 28, 55, 6, 198, 220, 220, 220, 220, 220, 1635, 705, 55, 6, 743, 307, 25, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 705, 65, 1219, 81, 3256, 705, 559, 3256, 393, 705, 64, 13, 84, 2637, 329, 17226, 4991, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 705, 648, 6, 273, 3550, 20282, 329, 2895, 20282, 82, 198, 220, 220, 220, 1635, 11801, 4778, 286, 24770, 743, 307, 973, 355, 5128, 13, 220, 770, 318, 1760, 416, 4955, 198, 220, 220, 220, 220, 220, 262, 13390, 282, 22715, 286, 534, 23235, 290, 262, 2685, 338, 15225, 198, 220, 220, 220, 220, 220, 1635, 5389, 389, 7368, 416, 705, 82, 1460, 257, 275, 269, 6, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 27719, 460, 307, 7368, 416, 4991, 21179, 198, 220, 220, 220, 220, 220, 1635, 18333, 389, 7368, 416, 705, 27787, 17130, 12159, 34236, 6, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 27719, 389, 287, 7370, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 1890, 262, 2174, 3651, 11, 366, 1092, 1271, 1, 3407, 657, 198, 220, 220, 220, 2912, 796, 302, 13, 5589, 576, 7, 81, 6, 61, 59, 82, 9, 2, 11537, 2, 21357, 1627, 198, 220, 220, 220, 9178, 796, 302, 13, 5589, 576, 7, 81, 6, 61, 59, 82, 9, 3, 11537, 2, 3629, 962, 7263, 422, 2330, 12, 13200, 198, 220, 220, 220, 275, 1219, 81, 796, 302, 13, 5589, 576, 7, 81, 6, 61, 59, 82, 9, 41667, 30, 58, 59, 82, 48874, 33747, 65, 1219, 81, 91, 559, 91, 64, 13, 84, 2014, 59, 82, 9, 3, 3256, 302, 13, 16284, 1581, 2943, 11159, 8, 2, 64, 13, 84, 13, 198, 220, 220, 220, 3550, 796, 302, 13, 5589, 576, 7, 81, 6, 61, 59, 82, 9, 41667, 30, 58, 59, 82, 48874, 33747, 648, 91, 648, 20282, 19415, 82, 9, 3, 3256, 302, 13, 16284, 1581, 2943, 11159, 8, 2, 13450, 198, 220, 220, 220, 1303, 32001, 82, 290, 23235, 30, 198, 220, 220, 220, 22037, 796, 302, 13, 5589, 576, 7, 81, 6, 61, 7, 27514, 7, 30, 47, 27, 456, 16, 29, 31, 14726, 7, 30, 47, 27, 456, 17, 29, 41126, 59, 3419, 19427, 7, 30, 47, 27, 18242, 33994, 30, 47, 27, 1837, 23650, 36937, 32, 12, 57, 60, 90, 16, 11, 18, 92, 5769, 27514, 28264, 59, 86, 10, 14726, 38016, 67, 10, 4008, 30, 5769, 30, 7, 456, 17, 19415, 4008, 7, 27514, 31, 7, 30, 47, 27, 22208, 29, 59, 67, 10, 17405, 59, 67, 10, 4008, 30, 3, 3256, 302, 13, 16284, 1581, 2943, 11159, 8, 198, 220, 220, 220, 269, 70, 3149, 796, 302, 13, 5589, 576, 7, 81, 6, 61, 59, 82, 9, 32590, 30, 59, 67, 10, 19415, 82, 33747, 59, 67, 10, 19415, 82, 9, 3, 11537, 2, 50044, 14, 15205, 198, 220, 220, 220, 7956, 796, 302, 13, 5589, 576, 7, 81, 6, 61, 59, 82, 9, 438, 59, 82, 9, 3, 11537, 2, 42974, 434, 264, 525, 1352, 198, 220, 220, 220, 1303, 19044, 2052, 1223, 21767, 257, 1271, 198, 220, 220, 220, 7885, 796, 302, 13, 5589, 576, 7, 81, 6, 61, 59, 82, 9, 38016, 86, 10, 19415, 82, 9, 28, 59, 82, 9, 32590, 30, 59, 67, 10, 17405, 59, 67, 10, 91, 12, 30, 59, 67, 10, 17405, 91, 12, 30, 17405, 59, 67, 10, 91, 12, 30, 59, 67, 10, 91, 83, 6814, 19415, 82, 9, 3, 3256, 302, 13, 16284, 1581, 2943, 11159, 8, 198, 220, 220, 220, 10905, 796, 302, 13, 5589, 576, 7, 81, 6, 31, 7, 15885, 14726, 41126, 59, 19510, 15885, 19415, 8, 3256, 302, 13, 16284, 1581, 2943, 11159, 8, 2, 19044, 2052, 25899, 628, 220, 220, 220, 1303, 37372, 2052, 257, 1627, 326, 4940, 351, 705, 82, 1460, 6, 290, 468, 1115, 3146, 198, 220, 220, 220, 14417, 82, 1460, 796, 302, 13, 5589, 576, 7, 81, 6, 61, 59, 82, 9, 82, 1460, 59, 82, 9, 38016, 67, 10, 91, 59, 67, 10, 17405, 59, 67, 10, 19415, 82, 9, 38016, 67, 10, 91, 59, 67, 10, 17405, 59, 67, 10, 19415, 82, 9, 38016, 67, 10, 91, 59, 67, 10, 17405, 59, 67, 10, 19415, 82, 9, 3, 3256, 260, 13, 16284, 1581, 2943, 11159, 8, 628, 220, 220, 220, 1303, 37372, 2052, 257, 1627, 326, 4940, 351, 705, 27787, 6, 290, 468, 1115, 3146, 198, 220, 220, 220, 14417, 27787, 796, 302, 13, 5589, 576, 7, 81, 6, 61, 59, 82, 9, 27787, 59, 82, 9, 38016, 67, 10, 91, 59, 67, 10, 17405, 59, 67, 10, 19415, 82, 9, 38016, 67, 10, 91, 59, 67, 10, 17405, 59, 67, 10, 19415, 82, 9, 38016, 67, 10, 91, 59, 67, 10, 17405, 59, 67, 10, 19415, 82, 9, 3, 3256, 260, 13, 16284, 1581, 2943, 11159, 8, 628, 220, 220, 220, 11998, 41888, 15, 60, 1303, 2953, 3150, 583, 24225, 198, 220, 220, 220, 1168, 82, 28, 21737, 1303, 2953, 10179, 1271, 286, 1123, 22037, 198, 220, 220, 220, 1675, 26830, 28, 16, 14, 15, 13, 49721, 1558, 4761, 940, 3134, 198, 220, 220, 220, 20260, 41888, 15, 60, 1303, 36970, 11, 657, 12, 400, 5002, 318, 1336, 1080, 11, 1312, 12, 400, 357, 72, 29, 15, 8, 318, 1312, 12, 400, 7956, 198, 220, 220, 220, 7854, 41888, 16, 60, 1303, 15205, 24705, 291, 871, 11, 976, 355, 4530, 198, 220, 220, 220, 311, 1460, 28, 21737, 198, 220, 220, 220, 2895, 829, 28, 21737, 198, 220, 220, 220, 327, 5889, 28, 21737, 628, 220, 220, 220, 3951, 796, 302, 13, 35312, 10786, 59, 77, 3256, 2773, 10100, 8, 198, 220, 220, 220, 329, 1627, 287, 3951, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2912, 13, 15699, 7, 1370, 8, 393, 9178, 13, 15699, 7, 1370, 8, 393, 3550, 13, 15699, 7, 1370, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 275, 1219, 81, 13, 15699, 7, 1370, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1675, 26830, 28, 16, 13, 15, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 269, 70, 3149, 13, 15699, 7, 1370, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20260, 58, 45, 6732, 3775, 3419, 60, 796, 493, 7, 66, 70, 3149, 13, 15699, 7, 1370, 737, 8094, 7, 16, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7854, 58, 45, 6732, 3775, 3419, 60, 796, 493, 7, 66, 70, 3149, 13, 15699, 7, 1370, 737, 8094, 7, 17, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 5412, 24225, 19736, 290, 4277, 24225, 269, 70, 3149, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 7956, 13, 15699, 7, 1370, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11998, 13, 33295, 7, 15, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20260, 13, 33295, 7, 15, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7854, 13, 33295, 7, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9637, 2953, 3150, 58, 11925, 7, 26531, 2953, 3150, 15437, 28, 21737, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 14417, 82, 1460, 13, 15699, 7, 1370, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 16, 11, 19, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 311, 1460, 13, 33295, 7, 22468, 7, 9598, 82, 1460, 13, 15699, 7, 1370, 737, 8094, 7, 72, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 14417, 27787, 13, 15699, 7, 1370, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 16, 11, 19, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2895, 829, 13, 33295, 7, 22468, 7, 9598, 27787, 13, 15699, 7, 1370, 737, 8094, 7, 72, 22305, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 5412, 23235, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 22037, 13, 15699, 7, 1370, 13, 35312, 3419, 58, 15, 4083, 36311, 3419, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12784, 796, 302, 13, 35312, 7, 81, 6, 59, 82, 10, 91, 59, 82, 25666, 59, 82, 9, 3256, 1627, 13, 36311, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 379, 2002, 796, 22037, 13, 15699, 7, 1370, 13, 35312, 3419, 58, 15, 4083, 36311, 22446, 45828, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22037, 33986, 796, 379, 2002, 13, 8094, 10786, 18242, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22037, 43094, 796, 379, 2002, 13, 8094, 10786, 1837, 23650, 11537, 198, 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, 1303, 775, 836, 470, 760, 1771, 262, 2488, 34, 393, 11972, 7, 34, 8, 33274, 14451, 13, 2141, 257, 2068, 2198, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10905, 2953, 296, 796, 10352, 611, 357, 265, 2002, 13, 8094, 10786, 456, 16, 11537, 318, 6045, 290, 379, 2002, 13, 8094, 10786, 456, 17, 11537, 318, 6045, 8, 2073, 6407, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5412, 6383, 274, 1547, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 298, 1678, 8, 6624, 604, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 16, 11, 19, 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, 327, 5889, 13, 33295, 7, 22468, 7, 298, 1678, 58, 72, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1168, 82, 13, 33295, 7, 862, 81, 13, 47116, 62, 89, 62, 6738, 62, 1837, 23650, 7, 37696, 43094, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11998, 58, 45, 6732, 3775, 3419, 60, 47932, 16, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 350, 5753, 283, 16922, 10786, 15883, 62, 10057, 25, 791, 738, 16823, 1627, 287, 22939, 20855, 25, 4064, 82, 6, 4064, 357, 1370, 4008, 628, 220, 220, 220, 9637, 14106, 28, 862, 81, 13, 14106, 3419, 198, 220, 220, 220, 18581, 291, 16193, 11925, 7, 50, 1460, 8, 855, 18, 290, 18896, 7, 13450, 829, 8, 855, 18, 8, 198, 220, 220, 220, 968, 50, 1460, 41888, 2514, 26830, 9, 72, 329, 1312, 287, 311, 1460, 60, 198, 220, 220, 220, 611, 18581, 291, 25, 198, 220, 220, 220, 220, 220, 220, 220, 9637, 14106, 28, 862, 81, 13, 14106, 7, 13450, 829, 11, 3791, 50, 1460, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1675, 26830, 28, 16, 13, 15, 198, 220, 220, 220, 18605, 84, 28, 862, 81, 13, 2953, 296, 7248, 3118, 3997, 3419, 198, 220, 220, 220, 329, 1312, 287, 2837, 7, 15, 11, 11925, 7, 57, 82, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 24189, 34, 5889, 41888, 2514, 26830, 9, 34, 5889, 58, 18, 9, 72, 10, 73, 60, 329, 474, 287, 2837, 7, 15, 11, 18, 15437, 198, 220, 220, 220, 220, 220, 220, 220, 18605, 84, 13, 28463, 7, 862, 81, 13, 17953, 62, 37696, 7, 30782, 34, 5889, 11, 57, 82, 58, 72, 60, 4008, 198, 220, 220, 220, 9637, 44387, 28, 862, 81, 13, 11964, 7, 43132, 84, 11, 17821, 8, 198, 220, 220, 220, 611, 18581, 291, 25, 198, 220, 220, 220, 220, 220, 220, 220, 968, 84, 28, 862, 81, 13, 10057, 13, 6732, 330, 17, 43476, 7, 43132, 84, 11, 26531, 14106, 8, 198, 220, 220, 220, 220, 220, 220, 220, 14417, 28, 862, 81, 13, 9914, 303, 9598, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26692, 81, 13, 12050, 12442, 28780, 7, 3791, 84, 17414, 18, 11, 18, 11, 18, 4357, 26531, 14106, 13, 43, 1078, 501, 50, 1460, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9637, 14106, 13, 43, 1078, 501, 50, 1460, 8, 198, 220, 220, 220, 220, 220, 220, 220, 18605, 84, 28, 862, 81, 13, 32657, 9598, 7, 9598, 11, 26531, 14106, 13, 43, 1078, 501, 50, 1460, 8, 198, 220, 220, 220, 9637, 44387, 28, 862, 81, 13, 11964, 7, 43132, 84, 11, 17821, 8, 198, 220, 220, 220, 9637, 44387, 13, 13200, 28, 26531, 14106, 198, 220, 220, 220, 9637, 44387, 13, 10136, 28, 50044, 58, 15, 60, 198, 220, 220, 220, 9637, 44387, 13, 47945, 8467, 28, 15205, 58, 15, 60, 198, 220, 220, 220, 1441, 9637, 44387, 198, 198, 4299, 787, 62, 86, 69, 7, 1443, 11, 17597, 8841, 2599, 198, 220, 220, 220, 37227, 1212, 318, 257, 15607, 2163, 329, 1642, 257, 4277, 5128, 198, 220, 220, 220, 220, 220, 220, 6769, 8818, 13, 628, 220, 220, 220, 220, 220, 220, 42287, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 275, 82, 1058, 4731, 3501, 262, 1438, 286, 262, 4308, 900, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25064, 8841, 25, 4731, 284, 1208, 284, 787, 62, 10057, 628, 220, 220, 220, 220, 220, 220, 1672, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 266, 22184, 796, 787, 62, 86, 69, 7203, 7493, 12, 535, 12, 79, 20306, 89, 1600, 1279, 28461, 1154, 62, 22708, 29, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 367, 657, 13, 15, 657, 13, 15, 657, 13, 15, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 367, 657, 13, 15, 657, 13, 15, 657, 13, 4531, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1279, 28461, 1154, 62, 22708, 43734, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 20218, 62, 17597, 796, 787, 62, 10057, 7, 17597, 8841, 8, 198, 220, 220, 220, 20218, 62, 17597, 796, 27967, 15522, 271, 7248, 13, 39014, 62, 29762, 62, 12093, 271, 7203, 4805, 3955, 13153, 1600, 1443, 11, 29510, 62, 17597, 8, 198, 220, 220, 220, 1949, 25, 1303, 23433, 284, 1234, 257, 15830, 4308, 319, 340, 198, 220, 220, 220, 220, 220, 220, 220, 25064, 796, 26692, 81, 13, 39014, 62, 29762, 62, 12093, 271, 7203, 37, 22470, 2751, 1600, 1443, 10, 26793, 73, 74, 11147, 1600, 29510, 62, 17597, 8, 198, 220, 220, 220, 220, 220, 220, 220, 20218, 62, 17597, 796, 25064, 198, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 220, 220, 220, 266, 69, 796, 26692, 81, 13, 39709, 8818, 3419, 198, 220, 220, 220, 266, 69, 13, 10057, 796, 20218, 62, 17597, 198, 220, 220, 220, 1441, 266, 69, 198 ]
2.045166
2,834
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Поле first — целое число, целая часть числа; поле second — положительное целое число, дробная часть числа. Реализовать метод multiply() — умножение на произвольное целое число типа int. Метод должен правильно работать при любых допустимых значениях first и second. """ import math if __name__ == '__main__': t1 = Real(12, 5) t2 = Real(6, 5) t2.read() t1.display() print(t1 * 5)
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 201, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 201, 198, 201, 198, 37811, 201, 198, 140, 253, 25443, 119, 16843, 717, 851, 220, 141, 228, 16843, 30143, 15166, 16843, 220, 141, 229, 18849, 21727, 30143, 15166, 11, 220, 141, 228, 16843, 30143, 16142, 40623, 220, 141, 229, 16142, 21727, 20375, 45367, 220, 141, 229, 18849, 21727, 30143, 16142, 26, 12466, 123, 25443, 119, 16843, 1218, 851, 12466, 123, 25443, 119, 25443, 114, 18849, 20375, 16843, 30143, 45367, 22177, 15166, 16843, 220, 141, 228, 16843, 30143, 15166, 16843, 220, 141, 229, 18849, 21727, 30143, 15166, 11, 201, 198, 43666, 21169, 25443, 109, 22177, 16142, 40623, 220, 141, 229, 16142, 21727, 20375, 45367, 220, 141, 229, 18849, 21727, 30143, 16142, 13, 12466, 254, 16843, 16142, 30143, 18849, 140, 115, 25443, 110, 16142, 20375, 45367, 12466, 120, 16843, 20375, 25443, 112, 29162, 3419, 851, 220, 35072, 43108, 22177, 25443, 114, 16843, 22177, 18849, 16843, 12466, 121, 16142, 12466, 123, 21169, 15166, 18849, 140, 115, 38857, 25443, 119, 45367, 22177, 15166, 16843, 220, 141, 228, 16843, 30143, 15166, 16843, 201, 198, 141, 229, 18849, 21727, 30143, 15166, 220, 20375, 18849, 140, 123, 16142, 493, 13, 12466, 250, 16843, 20375, 25443, 112, 12466, 112, 25443, 119, 140, 114, 16843, 22177, 12466, 123, 21169, 16142, 38857, 18849, 30143, 45367, 22177, 15166, 220, 21169, 16142, 140, 109, 15166, 20375, 16142, 20375, 45367, 12466, 123, 21169, 18849, 12466, 119, 141, 236, 140, 109, 45035, 141, 227, 12466, 112, 25443, 123, 35072, 21727, 20375, 18849, 43108, 45035, 141, 227, 12466, 115, 22177, 16142, 141, 229, 16843, 22177, 18849, 40623, 141, 227, 717, 12466, 116, 201, 198, 12227, 13, 201, 198, 37811, 201, 198, 11748, 10688, 201, 198, 201, 198, 201, 198, 201, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 201, 198, 220, 220, 220, 256, 16, 796, 6416, 7, 1065, 11, 642, 8, 201, 198, 220, 220, 220, 256, 17, 796, 6416, 7, 21, 11, 642, 8, 201, 198, 220, 220, 220, 256, 17, 13, 961, 3419, 201, 198, 220, 220, 220, 256, 16, 13, 13812, 3419, 201, 198, 220, 220, 220, 3601, 7, 83, 16, 1635, 642, 8, 201, 198 ]
1.268817
372
from flask import Flask, render_template, redirect, url_for, request, make_response from flask_bootstrap import Bootstrap from flask_wtf import FlaskForm from wtforms import StringField, PasswordField, BooleanField from wtforms.validators import InputRequired , Email, Length from flask_sqlalchemy import SQLAlchemy from werkzeug.security import generate_password_hash, check_password_hash from flask_login import LoginManager, UserMixin, login_user, login_required, logout_user, current_user from datetime import datetime app = Flask( __name__, static_folder='static' ) app.config.from_pyfile('config.py') Bootstrap(app) db = SQLAlchemy(app) login_manager = LoginManager() login_manager.init_app(app) login_manager.login_view = 'login' @login_manager.user_loader @app.route('/login', methods=['GET', 'POST']) @app.route('/signup', methods=['GET', 'POST']) @app.route('/') @app.route('/all') @app.route('/about') @app.route('/post/<int:post_id>') @app.route('/add') @login_required @app.route('/addpost', methods=['GET', 'POST']) @login_required @app.route('/feedback') @app.route('/addFeed', methods = ['GET', 'POST']) @app.route('/admin') @login_required @app.route('/delete/<int:post_id>') @login_required @app.errorhandler(404) @app.route('/logout') @login_required @app.route("/sitemap.xml") @app.route("/robots.txt") if __name__ == "__main__": app.run()
[ 6738, 42903, 1330, 46947, 11, 8543, 62, 28243, 11, 18941, 11, 19016, 62, 1640, 11, 2581, 11, 787, 62, 26209, 198, 6738, 42903, 62, 18769, 26418, 1330, 18892, 26418, 198, 6738, 42903, 62, 86, 27110, 1330, 46947, 8479, 198, 6738, 266, 83, 23914, 1330, 10903, 15878, 11, 30275, 15878, 11, 41146, 15878, 198, 6738, 266, 83, 23914, 13, 12102, 2024, 1330, 23412, 37374, 837, 9570, 11, 22313, 198, 6738, 42903, 62, 25410, 282, 26599, 1330, 16363, 2348, 26599, 198, 6738, 266, 9587, 2736, 1018, 13, 12961, 1330, 7716, 62, 28712, 62, 17831, 11, 2198, 62, 28712, 62, 17831, 198, 6738, 42903, 62, 38235, 1330, 23093, 13511, 11, 11787, 35608, 259, 11, 17594, 62, 7220, 11, 17594, 62, 35827, 11, 2604, 448, 62, 7220, 11, 1459, 62, 7220, 198, 6738, 4818, 8079, 1330, 4818, 8079, 628, 198, 1324, 796, 46947, 7, 11593, 3672, 834, 11, 9037, 62, 43551, 11639, 12708, 6, 1267, 198, 198, 1324, 13, 11250, 13, 6738, 62, 9078, 7753, 10786, 11250, 13, 9078, 11537, 198, 198, 36476, 26418, 7, 1324, 8, 198, 9945, 796, 16363, 2348, 26599, 7, 1324, 8, 628, 198, 38235, 62, 37153, 796, 23093, 13511, 3419, 198, 38235, 62, 37153, 13, 15003, 62, 1324, 7, 1324, 8, 198, 38235, 62, 37153, 13, 38235, 62, 1177, 796, 705, 38235, 6, 628, 628, 198, 198, 31, 38235, 62, 37153, 13, 7220, 62, 29356, 628, 628, 198, 198, 31, 1324, 13, 38629, 10786, 14, 38235, 3256, 5050, 28, 17816, 18851, 3256, 705, 32782, 6, 12962, 628, 198, 31, 1324, 13, 38629, 10786, 14, 12683, 929, 3256, 5050, 28, 17816, 18851, 3256, 705, 32782, 6, 12962, 628, 198, 31, 1324, 13, 38629, 10786, 14, 11537, 628, 198, 31, 1324, 13, 38629, 10786, 14, 439, 11537, 628, 198, 31, 1324, 13, 38629, 10786, 14, 10755, 11537, 628, 198, 31, 1324, 13, 38629, 10786, 14, 7353, 14, 27, 600, 25, 7353, 62, 312, 29, 11537, 628, 198, 31, 1324, 13, 38629, 10786, 14, 2860, 11537, 198, 31, 38235, 62, 35827, 628, 198, 31, 1324, 13, 38629, 10786, 14, 2860, 7353, 3256, 5050, 28, 17816, 18851, 3256, 705, 32782, 6, 12962, 198, 31, 38235, 62, 35827, 628, 198, 31, 1324, 13, 38629, 10786, 14, 12363, 1891, 11537, 628, 198, 31, 1324, 13, 38629, 10786, 14, 2860, 18332, 3256, 5050, 796, 37250, 18851, 3256, 705, 32782, 6, 12962, 198, 198, 31, 1324, 13, 38629, 10786, 14, 28482, 11537, 198, 31, 38235, 62, 35827, 628, 198, 31, 1324, 13, 38629, 10786, 14, 33678, 14, 27, 600, 25, 7353, 62, 312, 29, 11537, 198, 31, 38235, 62, 35827, 628, 198, 31, 1324, 13, 18224, 30281, 7, 26429, 8, 628, 198, 31, 1324, 13, 38629, 10786, 14, 6404, 448, 11537, 198, 31, 38235, 62, 35827, 198, 198, 31, 1324, 13, 38629, 7203, 14, 82, 9186, 499, 13, 19875, 4943, 198, 198, 31, 1324, 13, 38629, 7203, 14, 22609, 1747, 13, 14116, 4943, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 197, 1324, 13, 5143, 3419 ]
2.842105
494
import inspect import importlib import os.path from urlparse import urlunsplit """ * adds github_link(mode) context variable: provides URL (in relevant mode) of current document on github * if sphinx.ext.linkcode is enabled, automatically generates github linkcode links (by setting config.linkcode_resolve) Settings ======== * ``github_user``, username/organisation under which the project lives * ``github_project``, name of the project on github * (optional) ``version``, github branch to link to (default: master) Notes ===== * provided ``linkcode_resolve`` only supports Python domain * generates https github links * explicitly imports ``openerp``, so useless for anyone else """ def add_doc_link(app, pagename, templatename, context, doctree): """ Add github_link function linking to the current page on github """ if not app.config.github_user and app.config.github_project: return # FIXME: find other way to recover current document's source suffix # in Sphinx 1.3 it's possible to have mutliple source suffixes and that # may be useful in the future source_suffix = app.config.source_suffix source_suffix = source_suffix if isinstance(source_suffix, basestring) else source_suffix[0] # can't use functools.partial because 3rd positional is line not mode context['github_link'] = lambda mode='edit': make_github_link( app, 'doc/%s%s' % (pagename, source_suffix), mode=mode)
[ 11748, 10104, 198, 11748, 1330, 8019, 198, 11748, 28686, 13, 6978, 198, 6738, 19016, 29572, 1330, 19016, 13271, 489, 270, 198, 198, 37811, 198, 9, 6673, 33084, 62, 8726, 7, 14171, 8, 4732, 7885, 25, 3769, 10289, 357, 259, 5981, 4235, 8, 286, 198, 220, 1459, 3188, 319, 33084, 198, 9, 611, 599, 20079, 87, 13, 2302, 13, 8726, 8189, 318, 9343, 11, 6338, 18616, 33084, 2792, 8189, 198, 220, 6117, 357, 1525, 4634, 4566, 13, 8726, 8189, 62, 411, 6442, 8, 198, 198, 26232, 198, 2559, 198, 198, 9, 7559, 12567, 62, 7220, 15506, 11, 20579, 14, 9971, 5612, 739, 543, 262, 1628, 3160, 198, 9, 7559, 12567, 62, 16302, 15506, 11, 1438, 286, 262, 1628, 319, 33084, 198, 9, 357, 25968, 8, 7559, 9641, 15506, 11, 33084, 8478, 284, 2792, 284, 357, 12286, 25, 4958, 8, 198, 198, 16130, 198, 1421, 28, 198, 198, 9, 2810, 7559, 8726, 8189, 62, 411, 6442, 15506, 691, 6971, 11361, 7386, 198, 9, 18616, 3740, 33084, 6117, 198, 9, 11777, 17944, 7559, 404, 877, 79, 15506, 11, 523, 13894, 329, 2687, 2073, 198, 37811, 198, 198, 4299, 751, 62, 15390, 62, 8726, 7, 1324, 11, 279, 11286, 480, 11, 2169, 489, 265, 12453, 11, 4732, 11, 10412, 631, 2599, 198, 220, 220, 220, 37227, 3060, 33084, 62, 8726, 2163, 17795, 284, 262, 1459, 2443, 319, 33084, 37227, 198, 220, 220, 220, 611, 407, 598, 13, 11250, 13, 12567, 62, 7220, 290, 598, 13, 11250, 13, 12567, 62, 16302, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 1303, 44855, 11682, 25, 1064, 584, 835, 284, 8551, 1459, 3188, 338, 2723, 35488, 198, 220, 220, 220, 1303, 287, 45368, 28413, 352, 13, 18, 340, 338, 1744, 284, 423, 4517, 75, 2480, 2723, 35488, 274, 290, 326, 198, 220, 220, 220, 1303, 743, 307, 4465, 287, 262, 2003, 198, 220, 220, 220, 2723, 62, 37333, 844, 796, 598, 13, 11250, 13, 10459, 62, 37333, 844, 198, 220, 220, 220, 2723, 62, 37333, 844, 796, 2723, 62, 37333, 844, 611, 318, 39098, 7, 10459, 62, 37333, 844, 11, 1615, 395, 1806, 8, 2073, 2723, 62, 37333, 844, 58, 15, 60, 198, 220, 220, 220, 1303, 460, 470, 779, 1257, 310, 10141, 13, 47172, 780, 513, 4372, 45203, 318, 1627, 407, 4235, 198, 220, 220, 220, 4732, 17816, 12567, 62, 8726, 20520, 796, 37456, 4235, 11639, 19312, 10354, 787, 62, 12567, 62, 8726, 7, 198, 220, 220, 220, 220, 220, 220, 220, 598, 11, 705, 15390, 14, 4, 82, 4, 82, 6, 4064, 357, 79, 11286, 480, 11, 2723, 62, 37333, 844, 828, 4235, 28, 14171, 8, 198 ]
3.308924
437
#! /usr/bin/python # -*- coding: utf-8 -*- """ Module is used for visualization of segmentation stored in pkl, dcm and other files. """ from loguru import logger import io3d import sed3 import numpy as np pth = io3d.datasets.join_path("medical", "orig", "3Dircadb1.1", "PATIENT_DICOM", get_root=True) datap = io3d.read(pth) # pth = io3d.datasets.join_path("medical", "orig", "3Dircadb1.1", "LABELLED_DICOM" , get_root=True) pth = io3d.datasets.join_path("medical", "orig", "3Dircadb1.1", "MASKS_DICOM", "liver", get_root=True) datap_labeled = io3d.read(pth) ed = sed3.sed3(datap["data3d"], contour=datap_labeled["data3d"]) ed.show() ed.seeds nz = np.nonzero(ed.seeds == 1) print(np.unique(nz[0])) nz = np.nonzero(ed.seeds == 2) print(np.unique(nz[0])) nz = np.nonzero(ed.seeds == 3) print(np.unique(nz[0])) pth = io3d.datasets.join_path("medical", "orig", "3Dircadb1.1", "MASKS_DICOM", "liver", get_root=True) datap = io3d.read(pth) ed = sed3.sed3(datap["data3d"]) ed.show() nz_liver = np.nonzero(datap["data3d"]) print(np.unique(nz_liver[0])) print(f"first slide with the liver: {np.min(np.unique(nz_liver[0]))}") print(f"last slide with the liver: {np.max(np.unique(nz_liver[0]))}")
[ 2, 0, 1220, 14629, 14, 8800, 14, 29412, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 37811, 198, 26796, 318, 973, 329, 32704, 286, 10618, 341, 8574, 287, 279, 41582, 11, 288, 11215, 290, 584, 3696, 13, 198, 37811, 198, 198, 6738, 2604, 14717, 1330, 49706, 198, 11748, 33245, 18, 67, 198, 11748, 10081, 18, 198, 11748, 299, 32152, 355, 45941, 198, 198, 79, 400, 796, 33245, 18, 67, 13, 19608, 292, 1039, 13, 22179, 62, 6978, 7203, 41693, 1600, 366, 11612, 1600, 366, 18, 35, 1980, 324, 65, 16, 13, 16, 1600, 366, 47, 1404, 28495, 62, 35, 2149, 2662, 1600, 651, 62, 15763, 28, 17821, 8, 198, 19608, 499, 796, 33245, 18, 67, 13, 961, 7, 79, 400, 8, 198, 2, 279, 400, 796, 33245, 18, 67, 13, 19608, 292, 1039, 13, 22179, 62, 6978, 7203, 41693, 1600, 366, 11612, 1600, 366, 18, 35, 1980, 324, 65, 16, 13, 16, 1600, 366, 48780, 23304, 1961, 62, 35, 2149, 2662, 1, 837, 651, 62, 15763, 28, 17821, 8, 198, 79, 400, 796, 33245, 18, 67, 13, 19608, 292, 1039, 13, 22179, 62, 6978, 7203, 41693, 1600, 366, 11612, 1600, 366, 18, 35, 1980, 324, 65, 16, 13, 16, 1600, 366, 31180, 27015, 62, 35, 2149, 2662, 1600, 366, 75, 1428, 1600, 651, 62, 15763, 28, 17821, 8, 198, 19608, 499, 62, 18242, 276, 796, 33245, 18, 67, 13, 961, 7, 79, 400, 8, 198, 276, 796, 10081, 18, 13, 36622, 18, 7, 19608, 499, 14692, 7890, 18, 67, 33116, 542, 454, 28, 19608, 499, 62, 18242, 276, 14692, 7890, 18, 67, 8973, 8, 198, 276, 13, 12860, 3419, 198, 198, 276, 13, 325, 5379, 198, 27305, 796, 45941, 13, 13159, 22570, 7, 276, 13, 325, 5379, 6624, 352, 8, 198, 4798, 7, 37659, 13, 34642, 7, 27305, 58, 15, 60, 4008, 198, 27305, 796, 45941, 13, 13159, 22570, 7, 276, 13, 325, 5379, 6624, 362, 8, 198, 4798, 7, 37659, 13, 34642, 7, 27305, 58, 15, 60, 4008, 198, 27305, 796, 45941, 13, 13159, 22570, 7, 276, 13, 325, 5379, 6624, 513, 8, 198, 4798, 7, 37659, 13, 34642, 7, 27305, 58, 15, 60, 4008, 628, 198, 198, 79, 400, 796, 33245, 18, 67, 13, 19608, 292, 1039, 13, 22179, 62, 6978, 7203, 41693, 1600, 366, 11612, 1600, 366, 18, 35, 1980, 324, 65, 16, 13, 16, 1600, 366, 31180, 27015, 62, 35, 2149, 2662, 1600, 366, 75, 1428, 1600, 651, 62, 15763, 28, 17821, 8, 198, 19608, 499, 796, 33245, 18, 67, 13, 961, 7, 79, 400, 8, 198, 276, 796, 10081, 18, 13, 36622, 18, 7, 19608, 499, 14692, 7890, 18, 67, 8973, 8, 198, 276, 13, 12860, 3419, 198, 198, 27305, 62, 75, 1428, 796, 45941, 13, 13159, 22570, 7, 19608, 499, 14692, 7890, 18, 67, 8973, 8, 198, 4798, 7, 37659, 13, 34642, 7, 27305, 62, 75, 1428, 58, 15, 60, 4008, 198, 4798, 7, 69, 1, 11085, 10649, 351, 262, 14383, 25, 1391, 37659, 13, 1084, 7, 37659, 13, 34642, 7, 27305, 62, 75, 1428, 58, 15, 60, 4008, 92, 4943, 198, 4798, 7, 69, 1, 12957, 10649, 351, 262, 14383, 25, 1391, 37659, 13, 9806, 7, 37659, 13, 34642, 7, 27305, 62, 75, 1428, 58, 15, 60, 4008, 92, 4943, 628, 628, 628 ]
2.1883
547
from threading import Thread import gui from tools import clipboard, qrcode, generate_token import os import tempfile import uuid import time import shutil import tkinter as tk from tkinter.filedialog import asksaveasfilename from tkinter.messagebox import askyesno class Gallery(Thread): """ The Gallery class starts a new window with the image gallery. """ def __init__(self, image_queue, upload_path, active_gallery_windows): """ The gallery class is going to be initialized. :param image_queue: A queue where all incoming pictures are put in :param upload_path: The path where the images are going to be stored :param active_gallery_windows: A list of all currently active gallery windows """ Thread.__init__(self) self.stop = False self.image_queue = image_queue self.upload_path = upload_path self.active_gallery_windows = active_gallery_windows def task(self): """ This task is going to be executed in the main UI thread. It handles the browser/window setup for the gallery as well as the image to clipboard javascript binding. After that, it starts its own thread and runs in a loop. :return: """ self.browser = gui.GUI.add_browser( instance=self, callback_func_name='on_window_close', url="file:///resources/html/gallery.html", window_title="ImageShare Gallery" ) gui.GUI.set_javascript_bindings( self.browser, "image_to_clipboard", clipboard.Clipboard.image_to_clipboard ) self.start() def clear_images(self): """ When this method is called, all previously displayed images from the gallery disappear. This happends for example after a new session was started. :return: """ gui.GUI.execute_javascript_func( self.browser, "clear" ) def run(self): """ This method creates a thread which is looping continiously. Everytime a new Image enters the image queue, it will be displayed on in the gallery window using a javascript function. :return: """ time.sleep(.5) while not self.stop: if not self.image_queue.empty(): item = self.image_queue.get() gui.GUI.execute_javascript_func( self.browser, "add_image", item ) self.image_queue.delete_queue() def on_window_close(self): """ This callback is triggered when the window is going to be closed. It stops the main loop and removes the window from the list of currently active windows. :return: """ self.stop = True self.active_gallery_windows.remove(self) class QRCode(Thread): """ The QRCode class starts a new window with the qr code. """ def __init__(self, ip, port, token_obj, active_qr_code_windows): """ The QR code class is going to be initialized. :param ip: The IP address the server is listing on. It is used to generate the QR code. :param port: The post the server is listening on. It is used to generate the QR code. :param token_obj: The object which contains the current auth token. It is used to generate the QR code. :param active_qr_code_windows: A list of all currently active qr code windows """ Thread.__init__(self) self.active_qr_code_windows = active_qr_code_windows self.ip = ip self.port = port self.token_obj = token_obj def task(self): """ This task is going to be executed in the main UI thread. It handles the browser/window setup for the qr code window. After that, it starts its own thread and runs in a loop. :return: """ self.browser = gui.GUI.add_browser( url="file:///resources/html/qr_code.html", callback_func_name='on_window_close', window_title="ImageShare QR Connect" ) self.start() def generate_msg(self): """ This method generates the QR code message based on the ip, the port and the current token. :return: """ return "http://{}:{}/?key={}".format( self.ip, self.port, self.token_obj.obj) def set_qr_code(self): """ This method generates the qr code message, generates the qr code and injects it into the active window via a javascript function. :return: """ path = os.path.join(tempfile.gettempdir(), "{}.png".format(uuid.uuid4())).replace("\\", "/") qrcode.generate_qr_code(self.generate_msg(), path) gui.GUI.execute_javascript_func( self.browser, "set_qr_code", path ) def run(self): """ This method starts a thread which will then asynchronously add the qr code to the window. :return: """ self.set_qr_code() def on_window_close(self): """ This callback gets executed when the qr code window is closed. It removes the window from the list of currently active ones. :return: """ self.active_qr_code_windows.remove(self) class NewSession(Thread): """ When a new session should start, this class handles the whole procedure. """ def __init__(self, token_obj, upload_path, active_gallery_windows, active_qr_code_windows, image_queue): """ This method initializes all the pieces that are needed to start a new session. :param token_obj: The object which contains the current auth token. :param upload_path: The path where the images are going to be stored :param active_gallery_windows: A list of all currently active gallery windows :param active_qr_code_windows: A list of all currently active qr code windows :param image_queue: A queue where all incoming pictures are put in """ Thread.__init__(self) self.token_obj = token_obj self.upload_path = upload_path self.active_gallery_windows = active_gallery_windows self.active_qr_code_windows = active_qr_code_windows self.image_queue = image_queue self.new_session = False def start_new_session(self): """ When this method gets called, the mainloop of the thread opens a dialog to start a new session. :return: """ self.new_session = True def run(self): """ This method start a thread which contains a continous loop. It handles the creating of new sessions, the generation of new tokens, saving the images to a new path, cleaning the standart output folder, cleaning the gallery and clearing the queues. To avoid the loss of data, multiple confirmations are needed to start a new session. :return: """ root = tk.Tk() root.withdraw() while True: if self.new_session: if askyesno("New Session", "Are you sure you want to start a new session?"): abort = False if os.listdir(self.upload_path) != [] else True path = "" while not abort: path = asksaveasfilename() if not path: abort = askyesno("Cancel", "Are you sure you don't want to save the image files?") else: break for window in self.active_gallery_windows: window.clear_images() self.token_obj.setValue(generate_token.generate_token()) for window in self.active_qr_code_windows: window.set_qr_code() self.image_queue.clear() if not abort: shutil.copytree(self.upload_path, path) shutil.rmtree(self.upload_path) os.mkdir(self.upload_path) self.new_session = False
[ 6738, 4704, 278, 1330, 14122, 198, 11748, 11774, 198, 6738, 4899, 1330, 47999, 11, 10662, 6015, 1098, 11, 7716, 62, 30001, 198, 11748, 28686, 198, 11748, 20218, 7753, 198, 11748, 334, 27112, 198, 11748, 640, 198, 11748, 4423, 346, 198, 198, 11748, 256, 74, 3849, 355, 256, 74, 198, 6738, 256, 74, 3849, 13, 69, 3902, 498, 519, 1330, 7893, 1015, 292, 34345, 198, 6738, 256, 74, 3849, 13, 20500, 3524, 1330, 1265, 8505, 3919, 628, 198, 4871, 12917, 7, 16818, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 383, 12917, 1398, 4940, 257, 649, 4324, 351, 262, 2939, 15604, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 2939, 62, 36560, 11, 9516, 62, 6978, 11, 4075, 62, 24460, 62, 28457, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 383, 15604, 1398, 318, 1016, 284, 307, 23224, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 2939, 62, 36560, 25, 317, 16834, 810, 477, 15619, 5986, 389, 1234, 287, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 9516, 62, 6978, 25, 383, 3108, 810, 262, 4263, 389, 1016, 284, 307, 8574, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 4075, 62, 24460, 62, 28457, 25, 317, 1351, 286, 477, 3058, 4075, 15604, 9168, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 14122, 13, 834, 15003, 834, 7, 944, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11338, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9060, 62, 36560, 796, 2939, 62, 36560, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 25850, 62, 6978, 796, 9516, 62, 6978, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 5275, 62, 24460, 62, 28457, 796, 4075, 62, 24460, 62, 28457, 628, 220, 220, 220, 825, 4876, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 770, 4876, 318, 1016, 284, 307, 10945, 287, 262, 1388, 12454, 4704, 13, 632, 17105, 262, 6444, 14, 17497, 9058, 329, 262, 15604, 198, 220, 220, 220, 220, 220, 220, 220, 355, 880, 355, 262, 2939, 284, 47999, 44575, 12765, 13, 2293, 326, 11, 340, 4940, 663, 898, 4704, 290, 4539, 287, 257, 9052, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 40259, 796, 11774, 13, 40156, 13, 2860, 62, 40259, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4554, 28, 944, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23838, 62, 20786, 62, 3672, 11639, 261, 62, 17497, 62, 19836, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19016, 2625, 7753, 1378, 14, 37540, 14, 6494, 14, 24460, 13, 6494, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4324, 62, 7839, 2625, 5159, 11649, 12917, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 11774, 13, 40156, 13, 2617, 62, 37495, 62, 21653, 654, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 40259, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 9060, 62, 1462, 62, 15036, 3526, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 47999, 13, 2601, 541, 3526, 13, 9060, 62, 1462, 62, 15036, 3526, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9688, 3419, 628, 220, 220, 220, 825, 1598, 62, 17566, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1649, 428, 2446, 318, 1444, 11, 477, 4271, 9066, 4263, 422, 262, 15604, 10921, 13, 770, 1147, 2412, 329, 198, 220, 220, 220, 220, 220, 220, 220, 1672, 706, 257, 649, 6246, 373, 2067, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 11774, 13, 40156, 13, 41049, 62, 37495, 62, 20786, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 40259, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 20063, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 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, 770, 2446, 8075, 257, 4704, 543, 318, 9052, 278, 1261, 6819, 13, 3887, 2435, 257, 649, 7412, 14170, 262, 2939, 16834, 11, 198, 220, 220, 220, 220, 220, 220, 220, 340, 481, 307, 9066, 319, 287, 262, 15604, 4324, 1262, 257, 44575, 2163, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 640, 13, 42832, 7, 13, 20, 8, 198, 220, 220, 220, 220, 220, 220, 220, 981, 407, 2116, 13, 11338, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2116, 13, 9060, 62, 36560, 13, 28920, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2378, 796, 2116, 13, 9060, 62, 36560, 13, 1136, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11774, 13, 40156, 13, 41049, 62, 37495, 62, 20786, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 40259, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 2860, 62, 9060, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2378, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9060, 62, 36560, 13, 33678, 62, 36560, 3419, 628, 220, 220, 220, 825, 319, 62, 17497, 62, 19836, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 770, 23838, 318, 13973, 618, 262, 4324, 318, 1016, 284, 307, 4838, 13, 632, 9911, 262, 1388, 9052, 290, 20694, 262, 198, 220, 220, 220, 220, 220, 220, 220, 4324, 422, 262, 1351, 286, 3058, 4075, 9168, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11338, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 5275, 62, 24460, 62, 28457, 13, 28956, 7, 944, 8, 628, 198, 4871, 1195, 7397, 1098, 7, 16818, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 383, 1195, 7397, 1098, 1398, 4940, 257, 649, 4324, 351, 262, 10662, 81, 2438, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 20966, 11, 2493, 11, 11241, 62, 26801, 11, 4075, 62, 80, 81, 62, 8189, 62, 28457, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 383, 42137, 2438, 1398, 318, 1016, 284, 307, 23224, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 20966, 25, 383, 6101, 2209, 262, 4382, 318, 13487, 319, 13, 632, 318, 973, 284, 7716, 262, 42137, 2438, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 2493, 25, 383, 1281, 262, 4382, 318, 8680, 319, 13, 632, 318, 973, 284, 7716, 262, 42137, 2438, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 11241, 62, 26801, 25, 383, 2134, 543, 4909, 262, 1459, 6284, 11241, 13, 632, 318, 973, 284, 7716, 262, 42137, 2438, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 4075, 62, 80, 81, 62, 8189, 62, 28457, 25, 317, 1351, 286, 477, 3058, 4075, 10662, 81, 2438, 9168, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 14122, 13, 834, 15003, 834, 7, 944, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 5275, 62, 80, 81, 62, 8189, 62, 28457, 796, 4075, 62, 80, 81, 62, 8189, 62, 28457, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 541, 796, 20966, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 634, 796, 2493, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30001, 62, 26801, 796, 11241, 62, 26801, 628, 220, 220, 220, 825, 4876, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 770, 4876, 318, 1016, 284, 307, 10945, 287, 262, 1388, 12454, 4704, 13, 632, 17105, 262, 6444, 14, 17497, 9058, 329, 262, 10662, 81, 2438, 198, 220, 220, 220, 220, 220, 220, 220, 4324, 13, 2293, 326, 11, 340, 4940, 663, 898, 4704, 290, 4539, 287, 257, 9052, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 40259, 796, 11774, 13, 40156, 13, 2860, 62, 40259, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19016, 2625, 7753, 1378, 14, 37540, 14, 6494, 14, 80, 81, 62, 8189, 13, 6494, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23838, 62, 20786, 62, 3672, 11639, 261, 62, 17497, 62, 19836, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4324, 62, 7839, 2625, 5159, 11649, 42137, 8113, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9688, 3419, 628, 220, 220, 220, 825, 7716, 62, 19662, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 770, 2446, 18616, 262, 42137, 2438, 3275, 1912, 319, 262, 20966, 11, 262, 2493, 290, 262, 1459, 11241, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 366, 4023, 1378, 90, 92, 29164, 92, 20924, 2539, 34758, 92, 1911, 18982, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 541, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 634, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30001, 62, 26801, 13, 26801, 8, 628, 220, 220, 220, 825, 900, 62, 80, 81, 62, 8189, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 770, 2446, 18616, 262, 10662, 81, 2438, 3275, 11, 18616, 262, 10662, 81, 2438, 290, 8677, 82, 340, 656, 262, 4075, 4324, 2884, 198, 220, 220, 220, 220, 220, 220, 220, 257, 44575, 2163, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 3108, 796, 28686, 13, 6978, 13, 22179, 7, 29510, 7753, 13, 1136, 29510, 15908, 22784, 45144, 27422, 11134, 1911, 18982, 7, 12303, 312, 13, 12303, 312, 19, 28955, 737, 33491, 7203, 6852, 1600, 12813, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 10662, 6015, 1098, 13, 8612, 378, 62, 80, 81, 62, 8189, 7, 944, 13, 8612, 378, 62, 19662, 22784, 3108, 8, 628, 220, 220, 220, 220, 220, 220, 220, 11774, 13, 40156, 13, 41049, 62, 37495, 62, 20786, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 40259, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 2617, 62, 80, 81, 62, 8189, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 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, 770, 2446, 4940, 257, 4704, 543, 481, 788, 355, 24871, 3481, 751, 262, 10662, 81, 2438, 284, 262, 4324, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2617, 62, 80, 81, 62, 8189, 3419, 628, 220, 220, 220, 825, 319, 62, 17497, 62, 19836, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 770, 23838, 3011, 10945, 618, 262, 10662, 81, 2438, 4324, 318, 4838, 13, 632, 20694, 262, 4324, 422, 262, 1351, 286, 198, 220, 220, 220, 220, 220, 220, 220, 3058, 4075, 3392, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 5275, 62, 80, 81, 62, 8189, 62, 28457, 13, 28956, 7, 944, 8, 628, 198, 4871, 968, 36044, 7, 16818, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1649, 257, 649, 6246, 815, 923, 11, 428, 1398, 17105, 262, 2187, 8771, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 11241, 62, 26801, 11, 9516, 62, 6978, 11, 4075, 62, 24460, 62, 28457, 11, 4075, 62, 80, 81, 62, 8189, 62, 28457, 11, 2939, 62, 36560, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 770, 2446, 4238, 4340, 477, 262, 5207, 326, 389, 2622, 284, 923, 257, 649, 6246, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 11241, 62, 26801, 25, 383, 2134, 543, 4909, 262, 1459, 6284, 11241, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 9516, 62, 6978, 25, 383, 3108, 810, 262, 4263, 389, 1016, 284, 307, 8574, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 4075, 62, 24460, 62, 28457, 25, 317, 1351, 286, 477, 3058, 4075, 15604, 9168, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 4075, 62, 80, 81, 62, 8189, 62, 28457, 25, 317, 1351, 286, 477, 3058, 4075, 10662, 81, 2438, 9168, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 2939, 62, 36560, 25, 317, 16834, 810, 477, 15619, 5986, 389, 1234, 287, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 14122, 13, 834, 15003, 834, 7, 944, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30001, 62, 26801, 796, 11241, 62, 26801, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 25850, 62, 6978, 796, 9516, 62, 6978, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 5275, 62, 24460, 62, 28457, 796, 4075, 62, 24460, 62, 28457, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 5275, 62, 80, 81, 62, 8189, 62, 28457, 796, 4075, 62, 80, 81, 62, 8189, 62, 28457, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9060, 62, 36560, 796, 2939, 62, 36560, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3605, 62, 29891, 796, 10352, 628, 220, 220, 220, 825, 923, 62, 3605, 62, 29891, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1649, 428, 2446, 3011, 1444, 11, 262, 1388, 26268, 286, 262, 4704, 9808, 257, 17310, 284, 923, 257, 649, 6246, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3605, 62, 29891, 796, 6407, 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, 770, 2446, 923, 257, 4704, 543, 4909, 257, 1261, 516, 9052, 13, 632, 17105, 262, 4441, 286, 649, 10991, 11, 262, 198, 220, 220, 220, 220, 220, 220, 220, 5270, 286, 649, 16326, 11, 8914, 262, 4263, 284, 257, 649, 3108, 11, 12724, 262, 1302, 433, 5072, 9483, 11, 12724, 198, 220, 220, 220, 220, 220, 220, 220, 262, 15604, 290, 17304, 262, 43359, 13, 1675, 3368, 262, 2994, 286, 1366, 11, 3294, 6216, 602, 389, 2622, 284, 923, 198, 220, 220, 220, 220, 220, 220, 220, 257, 649, 6246, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 6808, 796, 256, 74, 13, 51, 74, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 6808, 13, 4480, 19334, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 981, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 3605, 62, 29891, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1265, 8505, 3919, 7203, 3791, 23575, 1600, 366, 8491, 345, 1654, 345, 765, 284, 923, 257, 649, 6246, 1701, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15614, 796, 10352, 611, 28686, 13, 4868, 15908, 7, 944, 13, 25850, 62, 6978, 8, 14512, 17635, 2073, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 407, 15614, 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, 3108, 796, 7893, 1015, 292, 34345, 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, 611, 407, 3108, 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, 220, 220, 220, 220, 15614, 796, 1265, 8505, 3919, 7203, 34, 21130, 1600, 366, 8491, 345, 1654, 345, 836, 470, 765, 284, 3613, 262, 2939, 3696, 1701, 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, 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, 220, 220, 220, 220, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 4324, 287, 2116, 13, 5275, 62, 24460, 62, 28457, 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, 4324, 13, 20063, 62, 17566, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30001, 62, 26801, 13, 2617, 11395, 7, 8612, 378, 62, 30001, 13, 8612, 378, 62, 30001, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 4324, 287, 2116, 13, 5275, 62, 80, 81, 62, 8189, 62, 28457, 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, 4324, 13, 2617, 62, 80, 81, 62, 8189, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9060, 62, 36560, 13, 20063, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 15614, 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, 4423, 346, 13, 30073, 21048, 7, 944, 13, 25850, 62, 6978, 11, 3108, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4423, 346, 13, 81, 16762, 631, 7, 944, 13, 25850, 62, 6978, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 28686, 13, 28015, 15908, 7, 944, 13, 25850, 62, 6978, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3605, 62, 29891, 796, 10352, 198 ]
2.334642
3,565
# -*- coding: utf-8 -*- # Generated by Django 1.9.6 on 2016-05-12 00:31 from __future__ import unicode_literals from django.db import migrations, models import jsonfield.fields
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 2, 2980, 515, 416, 37770, 352, 13, 24, 13, 21, 319, 1584, 12, 2713, 12, 1065, 3571, 25, 3132, 198, 6738, 11593, 37443, 834, 1330, 28000, 1098, 62, 17201, 874, 198, 198, 6738, 42625, 14208, 13, 9945, 1330, 15720, 602, 11, 4981, 198, 11748, 33918, 3245, 13, 25747, 628 ]
2.84127
63
#!/usr/bin/python3.9 # Copyright (c) 2021 MobileCoin Inc. # Copyright (c) 2021 The Forest Team import asyncio import copy import logging import os from contextlib import asynccontextmanager from typing import Any, AsyncGenerator, Callable, Optional, Union try: import asyncpg DUMMY = False except ImportError: from dummy_asyncpg import asyncpg DUMMY = True Loop = Optional[asyncio.events.AbstractEventLoop] AUTOCREATE = "true" in os.getenv("AUTOCREATE_TABLES", "false").lower() MAX_RESP_LOG_LEN = int(os.getenv("MAX_RESP_LOG_LEN", "256")) LOG_LEVEL_DEBUG = bool(os.getenv("DEBUG", None)) pools: list[asyncpg.Pool] = [] class PGInterface: """Implements an abstraction for both sync and async PG requests: - provided a map of method names to SQL query strings - an optional database URI ( defaults to "") - and an optional event loop""" def __init__( self, query_strings: PGExpressions, database: str = "", loop: Loop = None ) -> None: """Accepts a PGExpressions argument containing postgresql expressions, a database string, and an optional event loop.""" self.loop = loop or asyncio.get_event_loop() self.database: Union[str, dict] = copy.deepcopy( database ) # either a db uri or canned resps self.queries = query_strings self.table = self.queries.table self.MAX_RESP_LOG_LEN = MAX_RESP_LOG_LEN # self.loop.create_task(self.connect_pg()) self.pool = None if isinstance(database, dict): self.invocations: list[dict] = [] self.logger = get_logger( f'{self.table}{"_fake" if not self.pool else ""}_interface' ) def finish_init(self) -> None: """Optionally triggers creating tables and checks existence.""" if not self.pool: self.logger.warning("RUNNING IN FAKE MODE") if self.pool and self.table and not self.sync_exists(): if AUTOCREATE: self.sync_create_table() self.logger.warning(f"building table {self.table}") else: self.logger.warning( f"not autocreating! table: {self.table} does not exist!" ) for k in self.queries: if AUTOCREATE and "create" in k and "index" in k: self.logger.info(f"creating index via {k}") self.__getattribute__(f"sync_{k}")() async def execute( self, qstring: str, *args: str, ) -> Optional[list[asyncpg.Record]]: """Invoke the asyncpg connection's `execute` given a provided query string and set of arguments""" timeout: int = 180 if not self.pool and not isinstance(self.database, dict): await self.connect_pg() if self.pool: async with self.pool.acquire() as connection: # try: # except asyncpg.TooManyConnectionsError: # await connection.execute( # """SELECT pg_terminate_backend(pg_stat_activity.pid) # FROM pg_stat_activity # WHERE pg_stat_activity.datname = 'postgres' # AND pid <> pg_backend_pid();""" # ) # return self.execute(qstring, *args, timeout=timeout) # _execute takes query, args, limit, timeout result = await connection._execute( qstring, args, 0, timeout, return_status=True ) # list[asyncpg.Record], str, bool return result[0] return None def sync_execute(self, qstring: str, *args: Any) -> asyncpg.Record: """Synchronous wrapper for `self.execute`""" ret = self.loop.run_until_complete(self.execute(qstring, *args)) return ret def truncate(self, thing: str) -> str: """Logging helper. Truncates and formats.""" if len(thing) > self.MAX_RESP_LOG_LEN: return ( f"{thing[:self.MAX_RESP_LOG_LEN]}..." "[{len(thing)-self.MAX_RESP_LOG_LEN} omitted]" ) return thing def __getattribute__(self, key: str) -> Callable[..., asyncpg.Record]: """Implicitly define methods on this class for every statement in self.query_strings. If method is prefaced with "sync_": wrap as a synchronous function call. If statement in self.query_strings looks like an f-string, treat it as such by evaling before passing to `executer`.""" try: return object.__getattribute__(self, key) except AttributeError: pass if key.startswith( "sync_" ): # sync_ prefix implicitly wraps query as synchronous qstring = key.replace("sync_", "") executer = self.sync_execute else: executer = self.execute qstring = key try: statement = self.queries.get_query(qstring) except KeyError as e: raise ValueError(f"No statement of name {qstring} or {key} found!") from e if not self.pool and isinstance(self.database, dict): canned_response = self.database.get(qstring, [[None]]).pop(0) if qstring in self.database and not self.database.get(qstring, []): self.database.pop(qstring) return return_canned if "$1" in statement or "{" in statement and "}" in statement: def executer_with_args(*args: Any) -> Any: """Closure over 'statement' in local state for application to arguments. Allows deferred execution of f-strs, allowing PGExpresssions to operate on `args`.""" rebuilt_statement = eval(f'f"{statement}"') # pylint: disable=eval-used if ( rebuilt_statement != statement and "args" in statement and "$1" not in statement ): args = () resp = executer(rebuilt_statement, *args) short_strresp = self.truncate(f"{resp}") short_args = self.truncate(str(args)) self.logger.debug( f"{rebuilt_statement} {short_args} -> {short_strresp}" ) return resp return executer_with_args def executer_without_args() -> Any: """Closure over local state for executer without arguments.""" return executer(statement) return executer_without_args
[ 2, 48443, 14629, 14, 8800, 14, 29412, 18, 13, 24, 198, 2, 15069, 357, 66, 8, 33448, 12173, 24387, 3457, 13, 198, 2, 15069, 357, 66, 8, 33448, 383, 9115, 4816, 198, 198, 11748, 30351, 952, 198, 11748, 4866, 198, 11748, 18931, 198, 11748, 28686, 198, 6738, 4732, 8019, 1330, 355, 2047, 535, 261, 5239, 37153, 198, 6738, 19720, 1330, 4377, 11, 1081, 13361, 8645, 1352, 11, 4889, 540, 11, 32233, 11, 4479, 198, 198, 28311, 25, 198, 220, 220, 220, 1330, 30351, 6024, 628, 220, 220, 220, 360, 5883, 26708, 796, 10352, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 422, 31548, 62, 292, 13361, 6024, 1330, 30351, 6024, 628, 220, 220, 220, 360, 5883, 26708, 796, 6407, 628, 198, 39516, 796, 32233, 58, 292, 13361, 952, 13, 31534, 13, 23839, 9237, 39516, 60, 198, 198, 39371, 4503, 2200, 6158, 796, 366, 7942, 1, 287, 28686, 13, 1136, 24330, 7203, 39371, 4503, 2200, 6158, 62, 5603, 9148, 1546, 1600, 366, 9562, 11074, 21037, 3419, 198, 22921, 62, 19535, 47, 62, 25294, 62, 43, 1677, 796, 493, 7, 418, 13, 1136, 24330, 7203, 22921, 62, 19535, 47, 62, 25294, 62, 43, 1677, 1600, 366, 11645, 48774, 198, 25294, 62, 2538, 18697, 62, 30531, 796, 20512, 7, 418, 13, 1136, 24330, 7203, 30531, 1600, 6045, 4008, 628, 198, 198, 7742, 82, 25, 1351, 58, 292, 13361, 6024, 13, 27201, 60, 796, 17635, 628, 628, 198, 198, 4871, 23842, 39317, 25, 198, 220, 220, 220, 37227, 3546, 1154, 902, 281, 34651, 329, 1111, 17510, 290, 30351, 23842, 7007, 25, 198, 220, 220, 220, 532, 2810, 257, 3975, 286, 2446, 3891, 284, 16363, 12405, 13042, 198, 220, 220, 220, 532, 281, 11902, 6831, 43975, 357, 26235, 284, 366, 4943, 198, 220, 220, 220, 532, 290, 281, 11902, 1785, 9052, 37811, 628, 220, 220, 220, 825, 11593, 15003, 834, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 11, 12405, 62, 37336, 25, 23842, 38839, 507, 11, 6831, 25, 965, 796, 366, 1600, 9052, 25, 26304, 796, 6045, 198, 220, 220, 220, 1267, 4613, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 38855, 82, 257, 23842, 38839, 507, 4578, 7268, 1281, 34239, 13976, 14700, 11, 257, 6831, 4731, 11, 290, 281, 11902, 1785, 9052, 526, 15931, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 26268, 796, 9052, 393, 30351, 952, 13, 1136, 62, 15596, 62, 26268, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 48806, 25, 4479, 58, 2536, 11, 8633, 60, 796, 4866, 13, 22089, 30073, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6831, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 220, 1303, 2035, 257, 20613, 2956, 72, 393, 32530, 581, 862, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 421, 10640, 796, 12405, 62, 37336, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11487, 796, 2116, 13, 421, 10640, 13, 11487, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 22921, 62, 19535, 47, 62, 25294, 62, 43, 1677, 796, 25882, 62, 19535, 47, 62, 25294, 62, 43, 1677, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2116, 13, 26268, 13, 17953, 62, 35943, 7, 944, 13, 8443, 62, 6024, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7742, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 48806, 11, 8633, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 16340, 20968, 25, 1351, 58, 11600, 60, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 1362, 796, 651, 62, 6404, 1362, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 6, 90, 944, 13, 11487, 92, 4895, 62, 30706, 1, 611, 407, 2116, 13, 7742, 2073, 13538, 92, 62, 39994, 6, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 825, 5461, 62, 15003, 7, 944, 8, 4613, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 19722, 453, 20022, 4441, 8893, 290, 8794, 6224, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2116, 13, 7742, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 1362, 13, 43917, 7203, 49, 4944, 15871, 3268, 9677, 7336, 337, 16820, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 7742, 290, 2116, 13, 11487, 290, 407, 2116, 13, 27261, 62, 1069, 1023, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 47044, 4503, 2200, 6158, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 27261, 62, 17953, 62, 11487, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 1362, 13, 43917, 7, 69, 1, 16894, 3084, 1391, 944, 13, 11487, 92, 4943, 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, 2116, 13, 6404, 1362, 13, 43917, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 1, 1662, 1960, 420, 34567, 0, 3084, 25, 1391, 944, 13, 11487, 92, 857, 407, 2152, 2474, 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, 329, 479, 287, 2116, 13, 421, 10640, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 47044, 4503, 2200, 6158, 290, 366, 17953, 1, 287, 479, 290, 366, 9630, 1, 287, 479, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 1362, 13, 10951, 7, 69, 1, 20123, 278, 6376, 2884, 1391, 74, 92, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 834, 1136, 42348, 834, 7, 69, 1, 27261, 23330, 74, 92, 4943, 3419, 628, 220, 220, 220, 30351, 825, 12260, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 11, 198, 220, 220, 220, 220, 220, 220, 220, 10662, 8841, 25, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 22046, 25, 965, 11, 198, 220, 220, 220, 1267, 4613, 32233, 58, 4868, 58, 292, 13361, 6024, 13, 23739, 60, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 19904, 2088, 262, 30351, 6024, 4637, 338, 4600, 41049, 63, 1813, 257, 2810, 12405, 4731, 290, 900, 286, 7159, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 26827, 25, 493, 796, 11546, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2116, 13, 7742, 290, 407, 318, 39098, 7, 944, 13, 48806, 11, 8633, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25507, 2116, 13, 8443, 62, 6024, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 7742, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30351, 351, 2116, 13, 7742, 13, 330, 29782, 3419, 355, 4637, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2845, 30351, 6024, 13, 23307, 7085, 13313, 507, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 25507, 4637, 13, 41049, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 37227, 46506, 23241, 62, 23705, 378, 62, 1891, 437, 7, 6024, 62, 14269, 62, 21797, 13, 35317, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 16034, 23241, 62, 14269, 62, 21797, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 33411, 23241, 62, 14269, 62, 21797, 13, 19608, 3672, 796, 705, 7353, 34239, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 5357, 46514, 1279, 29, 23241, 62, 1891, 437, 62, 35317, 9783, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1441, 2116, 13, 41049, 7, 80, 8841, 11, 1635, 22046, 11, 26827, 28, 48678, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4808, 41049, 2753, 12405, 11, 26498, 11, 4179, 11, 26827, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 25507, 4637, 13557, 41049, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10662, 8841, 11, 26498, 11, 657, 11, 26827, 11, 1441, 62, 13376, 28, 17821, 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, 220, 220, 220, 220, 1303, 1351, 58, 292, 13361, 6024, 13, 23739, 4357, 965, 11, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1255, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 6045, 628, 220, 220, 220, 825, 17510, 62, 41049, 7, 944, 11, 10662, 8841, 25, 965, 11, 1635, 22046, 25, 4377, 8, 4613, 30351, 6024, 13, 23739, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 50, 31301, 29908, 329, 4600, 944, 13, 41049, 63, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1005, 796, 2116, 13, 26268, 13, 5143, 62, 28446, 62, 20751, 7, 944, 13, 41049, 7, 80, 8841, 11, 1635, 22046, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1005, 628, 220, 220, 220, 825, 40122, 378, 7, 944, 11, 1517, 25, 965, 8, 4613, 965, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 11187, 2667, 31904, 13, 833, 19524, 689, 290, 17519, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 1197, 8, 1875, 2116, 13, 22921, 62, 19535, 47, 62, 25294, 62, 43, 1677, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 1, 90, 1197, 58, 25, 944, 13, 22921, 62, 19535, 47, 62, 25294, 62, 43, 1677, 48999, 9313, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12878, 90, 11925, 7, 1197, 13219, 944, 13, 22921, 62, 19535, 47, 62, 25294, 62, 43, 1677, 92, 22532, 30866, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1517, 628, 220, 220, 220, 825, 11593, 1136, 42348, 834, 7, 944, 11, 1994, 25, 965, 8, 4613, 4889, 540, 58, 986, 11, 30351, 6024, 13, 23739, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 29710, 3628, 306, 8160, 5050, 319, 428, 1398, 329, 790, 2643, 287, 2116, 13, 22766, 62, 37336, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1002, 2446, 318, 7694, 2286, 351, 366, 27261, 62, 1298, 14441, 355, 257, 18305, 516, 2163, 869, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1002, 2643, 287, 2116, 13, 22766, 62, 37336, 3073, 588, 281, 277, 12, 8841, 11, 2190, 340, 198, 220, 220, 220, 220, 220, 220, 220, 355, 884, 416, 819, 4272, 878, 6427, 284, 4600, 18558, 11894, 63, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2134, 13, 834, 1136, 42348, 834, 7, 944, 11, 1994, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 3460, 4163, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1994, 13, 9688, 2032, 342, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 27261, 62, 1, 198, 220, 220, 220, 220, 220, 220, 220, 15179, 220, 1303, 17510, 62, 21231, 31821, 27521, 12405, 355, 18305, 516, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10662, 8841, 796, 1994, 13, 33491, 7203, 27261, 62, 1600, 366, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3121, 263, 796, 2116, 13, 27261, 62, 41049, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3121, 263, 796, 2116, 13, 41049, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10662, 8841, 796, 1994, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2643, 796, 2116, 13, 421, 10640, 13, 1136, 62, 22766, 7, 80, 8841, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 7383, 12331, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7, 69, 1, 2949, 2643, 286, 1438, 1391, 80, 8841, 92, 393, 1391, 2539, 92, 1043, 2474, 8, 422, 304, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2116, 13, 7742, 290, 318, 39098, 7, 944, 13, 48806, 11, 8633, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32530, 62, 26209, 796, 2116, 13, 48806, 13, 1136, 7, 80, 8841, 11, 16410, 14202, 11907, 737, 12924, 7, 15, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 10662, 8841, 287, 2116, 13, 48806, 290, 407, 2116, 13, 48806, 13, 1136, 7, 80, 8841, 11, 17635, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 48806, 13, 12924, 7, 80, 8841, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1441, 62, 66, 3577, 198, 220, 220, 220, 220, 220, 220, 220, 611, 17971, 16, 1, 287, 2643, 393, 366, 4895, 287, 2643, 290, 366, 36786, 287, 2643, 25, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 825, 3121, 263, 62, 4480, 62, 22046, 46491, 22046, 25, 4377, 8, 4613, 4377, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 45398, 625, 705, 26090, 6, 287, 1957, 1181, 329, 3586, 284, 7159, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40402, 28651, 9706, 286, 277, 12, 2536, 82, 11, 5086, 23842, 38839, 82, 507, 284, 8076, 319, 4600, 22046, 63, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30080, 62, 26090, 796, 5418, 7, 69, 6, 69, 1, 90, 26090, 36786, 11537, 220, 1303, 279, 2645, 600, 25, 15560, 28, 18206, 12, 1484, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30080, 62, 26090, 14512, 2643, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 366, 22046, 1, 287, 2643, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 17971, 16, 1, 407, 287, 2643, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15179, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26498, 796, 7499, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1217, 796, 3121, 263, 7, 260, 18780, 62, 26090, 11, 1635, 22046, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1790, 62, 2536, 4363, 796, 2116, 13, 2213, 19524, 378, 7, 69, 1, 90, 4363, 92, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1790, 62, 22046, 796, 2116, 13, 2213, 19524, 378, 7, 2536, 7, 22046, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 1362, 13, 24442, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 1, 90, 260, 18780, 62, 26090, 92, 1391, 19509, 62, 22046, 92, 4613, 1391, 19509, 62, 2536, 4363, 36786, 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, 220, 220, 220, 220, 1441, 1217, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 3121, 263, 62, 4480, 62, 22046, 628, 220, 220, 220, 220, 220, 220, 220, 825, 3121, 263, 62, 19419, 62, 22046, 3419, 4613, 4377, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 45398, 625, 1957, 1181, 329, 3121, 263, 1231, 7159, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 3121, 263, 7, 26090, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 3121, 263, 62, 19419, 62, 22046, 198 ]
2.198737
3,009
"""Visitors that make certain mutations to the AST""" import sys import os from src.modules.php import syntax_tree from src.modules.php.base import Visitor from src.compiler.php import phpast class DependencyResolver(Visitor): """Expands the tree by augmenting the ASTs for files added in it using Include and Require tags Should preceed any visitors that depend on it. """ def evaluate_require(self, expr): """ Takes the 'expr' block of a require/include call and reduces it to the actual string produced from that expression """ if isinstance(expr, str): return expr elif isinstance(expr, phpast.BinaryOp): if expr.op == ".": return self.evaluate_require(expr.left) + self.evaluate_require(expr.right) elif isinstance(expr, phpast.Constant): const_value = self.constants.get(expr.name) if not isinstance(const_value, str): return "[PATH]" if const_value is None: const_value = "[PATH]" self.expr_fails.append((expr, expr.lineno, self.current_file_tree.file_path )) return const_value else: self.expr_fails.append((expr, expr.lineno, self.current_file_tree.file_path )) return "[PATH]"
[ 37811, 15854, 6742, 326, 787, 1728, 23005, 284, 262, 29273, 37811, 198, 198, 11748, 25064, 198, 11748, 28686, 198, 198, 6738, 12351, 13, 18170, 13, 10121, 1330, 15582, 62, 21048, 198, 6738, 12351, 13, 18170, 13, 10121, 13, 8692, 1330, 6911, 2072, 198, 6738, 12351, 13, 5589, 5329, 13, 10121, 1330, 872, 30119, 628, 198, 4871, 37947, 1387, 4965, 14375, 7, 15854, 2072, 2599, 198, 220, 220, 220, 37227, 16870, 1746, 262, 5509, 416, 35016, 278, 262, 29273, 82, 329, 3696, 2087, 287, 340, 1262, 198, 220, 220, 220, 220, 220, 220, 40348, 290, 9394, 557, 15940, 198, 220, 220, 220, 220, 220, 220, 10358, 662, 2707, 597, 9692, 326, 4745, 319, 340, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 825, 13446, 62, 46115, 7, 944, 11, 44052, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 33687, 262, 705, 31937, 6, 2512, 286, 257, 2421, 14, 17256, 869, 290, 198, 220, 220, 220, 220, 220, 220, 220, 12850, 340, 284, 262, 4036, 4731, 4635, 422, 326, 5408, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 31937, 11, 965, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 44052, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 318, 39098, 7, 31937, 11, 872, 30119, 13, 33, 3219, 18257, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 44052, 13, 404, 6624, 366, 526, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 49786, 62, 46115, 7, 31937, 13, 9464, 8, 1343, 2116, 13, 49786, 62, 46115, 7, 31937, 13, 3506, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 318, 39098, 7, 31937, 11, 872, 30119, 13, 3103, 18797, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1500, 62, 8367, 796, 2116, 13, 9979, 1187, 13, 1136, 7, 31937, 13, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 318, 39098, 7, 9979, 62, 8367, 11, 965, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 12878, 34219, 30866, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1500, 62, 8367, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1500, 62, 8367, 796, 12878, 34219, 30866, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 31937, 62, 69, 1768, 13, 33295, 19510, 31937, 11, 44052, 13, 2815, 23397, 11, 2116, 13, 14421, 62, 7753, 62, 21048, 13, 7753, 62, 6978, 15306, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1500, 62, 8367, 628, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 31937, 62, 69, 1768, 13, 33295, 19510, 31937, 11, 44052, 13, 2815, 23397, 11, 2116, 13, 14421, 62, 7753, 62, 21048, 13, 7753, 62, 6978, 15306, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 12878, 34219, 30866, 628, 628 ]
2.407143
560
# coding: utf-8 # # Copyright (c) 2019 Zoltán Máté # All Rights Reserved. # # Author: Zoltán Máté <[email protected]> #
[ 2, 19617, 25, 3384, 69, 12, 23, 198, 2, 198, 2, 15069, 357, 66, 8, 13130, 1168, 5978, 21162, 337, 6557, 83, 2634, 198, 2, 1439, 6923, 33876, 13, 198, 2, 198, 2, 6434, 25, 1168, 5978, 21162, 337, 6557, 83, 2634, 1279, 9830, 13, 89, 5978, 272, 15, 31, 14816, 13, 785, 29, 198, 2, 628 ]
2.210526
57
# send mail function import smtplib from email.mime.multipart import MIMEMultipart from email.mime.text import MIMEText from email.header import Header import time from jinja2 import Environment, FileSystemLoader import configparser
[ 2, 3758, 6920, 2163, 198, 11748, 895, 83, 489, 571, 198, 6738, 3053, 13, 76, 524, 13, 16680, 541, 433, 1330, 337, 3955, 3620, 586, 541, 433, 198, 6738, 3053, 13, 76, 524, 13, 5239, 1330, 337, 3955, 2767, 2302, 198, 6738, 3053, 13, 25677, 1330, 48900, 198, 11748, 640, 198, 6738, 474, 259, 6592, 17, 1330, 9344, 11, 9220, 11964, 17401, 198, 11748, 4566, 48610 ]
3.515152
66
#!/usr/bin/env python # vim: ai ts=4 sts=4 et sw=4 from django.db import models from rapidsms.webui.managers import * class Location(models.Model): """A Location is technically a geopgraphical point (lat+long), but is often used to represent a large area such as a city or state. It is recursive via the _parent_ field, which can be used to create a hierachy (Country -> State -> County -> City) in combination with the _type_ field.""" objects = RecursiveManager() type = models.ForeignKey(LocationType, related_name="locations", blank=True, null=True) name = models.CharField(max_length=100, help_text="Name of location") code = models.CharField(max_length=30, unique=True) parent = models.ForeignKey("Location", related_name="children", null=True, blank=True, help_text="The parent of this Location. Although it is not enforced, it" +\ "is expected that the parent will be of a different LocationType") latitude = models.DecimalField(max_digits=8, decimal_places=6, blank=True, null=True, help_text="The physical latitude of this location") longitude = models.DecimalField(max_digits=8, decimal_places=6, blank=True, null=True, help_text="The physical longitude of this location") # TODO: how can we port the Location.contacts and Location.one_contact # methods, now that the locations app has been split from reporters? # even if they can import one another, they can't know if they're # both running at parse time, and can't monkey-patch later. def ancestors(self, include_self=False): """Returns all of the parent locations of this location, optionally including itself in the output. This is very inefficient, so consider caching the output.""" locs = [self] if include_self else [] loc = self # keep on iterating # until we return while True: locs.append(loc) loc = loc.parent # are we at the top? if loc is None: return locs def descendants(self, include_self=False): """Returns all of the locations which are descended from this location, optionally including itself in the output. This is very inefficient (it recurses once for EACH), so consider caching the output.""" locs = [self] if include_self else [] for loc in self.children.all(): locs.extend(loc.descendants(True)) return locs
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 43907, 25, 257, 72, 40379, 28, 19, 39747, 28, 19, 2123, 1509, 28, 19, 628, 198, 6738, 42625, 14208, 13, 9945, 1330, 4981, 198, 6738, 4095, 2340, 907, 13, 12384, 9019, 13, 805, 10321, 1330, 1635, 628, 198, 198, 4871, 13397, 7, 27530, 13, 17633, 2599, 198, 220, 220, 220, 37227, 32, 13397, 318, 14497, 257, 30324, 34960, 605, 966, 357, 15460, 10, 6511, 828, 475, 318, 1690, 198, 220, 220, 220, 220, 220, 220, 973, 284, 2380, 257, 1588, 1989, 884, 355, 257, 1748, 393, 1181, 13, 632, 318, 45115, 198, 220, 220, 220, 220, 220, 220, 2884, 262, 4808, 8000, 62, 2214, 11, 543, 460, 307, 973, 284, 2251, 257, 13550, 35586, 357, 33921, 198, 220, 220, 220, 220, 220, 220, 4613, 1812, 4613, 3418, 4613, 2254, 8, 287, 6087, 351, 262, 4808, 4906, 62, 2214, 526, 15931, 198, 220, 220, 220, 220, 198, 220, 220, 220, 5563, 796, 3311, 30753, 13511, 3419, 198, 220, 220, 220, 2099, 796, 4981, 13, 33616, 9218, 7, 14749, 6030, 11, 3519, 62, 3672, 2625, 17946, 602, 1600, 9178, 28, 17821, 11, 9242, 28, 17821, 8, 198, 220, 220, 220, 1438, 796, 4981, 13, 12441, 15878, 7, 9806, 62, 13664, 28, 3064, 11, 1037, 62, 5239, 2625, 5376, 286, 4067, 4943, 198, 220, 220, 220, 2438, 796, 4981, 13, 12441, 15878, 7, 9806, 62, 13664, 28, 1270, 11, 3748, 28, 17821, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2560, 796, 4981, 13, 33616, 9218, 7203, 14749, 1600, 3519, 62, 3672, 2625, 17197, 1600, 9242, 28, 17821, 11, 9178, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 62, 5239, 2625, 464, 2560, 286, 428, 13397, 13, 4900, 340, 318, 407, 20326, 11, 340, 1, 1343, 59, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 271, 2938, 326, 262, 2560, 481, 307, 286, 257, 1180, 13397, 6030, 4943, 198, 220, 220, 220, 220, 198, 220, 220, 220, 32477, 220, 796, 4981, 13, 10707, 4402, 15878, 7, 9806, 62, 12894, 896, 28, 23, 11, 32465, 62, 23625, 28, 21, 11, 9178, 28, 17821, 11, 9242, 28, 17821, 11, 1037, 62, 5239, 2625, 464, 3518, 32477, 286, 428, 4067, 4943, 198, 220, 220, 220, 890, 3984, 796, 4981, 13, 10707, 4402, 15878, 7, 9806, 62, 12894, 896, 28, 23, 11, 32465, 62, 23625, 28, 21, 11, 9178, 28, 17821, 11, 9242, 28, 17821, 11, 1037, 62, 5239, 2625, 464, 3518, 890, 3984, 286, 428, 4067, 4943, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1303, 16926, 46, 25, 703, 460, 356, 2493, 262, 13397, 13, 3642, 8656, 290, 13397, 13, 505, 62, 32057, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 5050, 11, 783, 326, 262, 7064, 598, 468, 587, 6626, 422, 7638, 30, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 772, 611, 484, 460, 1330, 530, 1194, 11, 484, 460, 470, 760, 611, 484, 821, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 1111, 2491, 379, 21136, 640, 11, 290, 460, 470, 21657, 12, 17147, 1568, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 18668, 7, 944, 11, 2291, 62, 944, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 477, 286, 262, 2560, 7064, 286, 428, 4067, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42976, 1390, 2346, 287, 262, 5072, 13, 770, 318, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 845, 30904, 11, 523, 2074, 40918, 262, 5072, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1179, 82, 796, 685, 944, 60, 611, 2291, 62, 944, 2073, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 1179, 796, 2116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1394, 319, 11629, 803, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1566, 356, 1441, 198, 220, 220, 220, 220, 220, 220, 220, 981, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1179, 82, 13, 33295, 7, 17946, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1179, 796, 1179, 13, 8000, 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, 389, 356, 379, 262, 1353, 30, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1179, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1179, 82, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 25321, 7, 944, 11, 2291, 62, 944, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 477, 286, 262, 7064, 543, 389, 23667, 422, 428, 4067, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 42976, 1390, 2346, 287, 262, 5072, 13, 770, 318, 845, 30904, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 270, 664, 46998, 1752, 329, 412, 16219, 828, 523, 2074, 40918, 262, 5072, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1179, 82, 796, 685, 944, 60, 611, 2291, 62, 944, 2073, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1179, 287, 2116, 13, 17197, 13, 439, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1179, 82, 13, 2302, 437, 7, 17946, 13, 20147, 30841, 7, 17821, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1179, 82, 198 ]
2.650051
983
from .randomized import * from .swap import * from .comp_uncomp import *
[ 6738, 764, 25120, 1143, 1330, 1635, 198, 6738, 764, 2032, 499, 1330, 1635, 198, 6738, 764, 5589, 62, 403, 5589, 1330, 1635, 198 ]
3.173913
23
# # ---------------------------------------------------------------------------------------------------- # DESCRIPTION # ---------------------------------------------------------------------------------------------------- # # ---------------------------------------------------------------------------------------------------- # IMPORTS # ---------------------------------------------------------------------------------------------------- from django.http import Http404 from rest_framework import status from rest_framework.pagination import LimitOffsetPagination from rest_framework.response import Response from rest_framework.views import APIView from userAccount.authentications import UserAccountAuthentication from userAccount.permissions import UserAccountSuperUserPermission # # ---------------------------------------------------------------------------------------------------- # CODE # ---------------------------------------------------------------------------------------------------- # ## @brief [ REST FRAMEWORK API VIEW CLASS ] - REST framework simple collection API view class. # ## @brief [ REST FRAMEWORK API VIEW CLASS ] - REST framework simple detail API view class.
[ 2, 198, 2, 16529, 3880, 650, 198, 2, 22196, 40165, 198, 2, 16529, 3880, 650, 628, 198, 2, 198, 2, 16529, 3880, 650, 198, 2, 30023, 33002, 198, 2, 16529, 3880, 650, 198, 6738, 42625, 14208, 13, 4023, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1330, 367, 29281, 26429, 198, 198, 6738, 1334, 62, 30604, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1330, 3722, 198, 6738, 1334, 62, 30604, 13, 79, 363, 1883, 220, 220, 220, 220, 220, 1330, 27272, 34519, 47, 363, 1883, 198, 6738, 1334, 62, 30604, 13, 26209, 220, 220, 220, 220, 220, 220, 220, 1330, 18261, 198, 6738, 1334, 62, 30604, 13, 33571, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1330, 3486, 3824, 769, 198, 198, 6738, 2836, 30116, 13, 41299, 3736, 220, 220, 220, 1330, 11787, 30116, 47649, 3299, 198, 6738, 2836, 30116, 13, 525, 8481, 220, 220, 220, 220, 220, 220, 220, 1330, 11787, 30116, 12442, 12982, 5990, 3411, 628, 198, 2, 198, 2, 16529, 3880, 650, 198, 2, 42714, 198, 2, 16529, 3880, 650, 198, 2, 198, 2235, 2488, 65, 3796, 685, 30617, 8782, 2390, 6217, 14670, 7824, 49880, 42715, 2361, 532, 30617, 9355, 2829, 4947, 7824, 1570, 1398, 13, 198, 198, 2, 198, 2235, 2488, 65, 3796, 685, 30617, 8782, 2390, 6217, 14670, 7824, 49880, 42715, 2361, 532, 30617, 9355, 2829, 3703, 7824, 1570, 1398, 13 ]
5.092742
248
""" Copyright (C) 2020 Intel 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 numpy as np import logging as log from extensions.ops.Cast import Cast from extensions.ops.ctc_greedy_decoder import CTCGreedyDecoderOp from extensions.ops.ctc_loss import CTCLoss from extensions.ops.elementwise import Equal from extensions.ops.parameter import Parameter from extensions.ops.ReduceOps import ReduceSum from extensions.ops.select import Select from extensions.ops.transpose import Transpose from mo.front.common.partial_infer.utils import int64_array from mo.front.common.replacement import FrontReplacementSubgraph from mo.front.tf.graph_utils import create_op_with_const_inputs from mo.graph.graph import Graph, rename_nodes from mo.middle.passes.convert_data_type import data_type_str_to_np from mo.ops.broadcast import Broadcast from mo.ops.shape import Shape from mo.ops.squeeze import Squeeze from mo.utils.error import Error class CTCLossReplacement(FrontReplacementSubgraph): """ The CTCLoss appears along with CTCGreedyDecoder operation in particular. Since the TensorFlow* CTCGreedyDecoder outputs sparse tensor format, the OpenVINO CTCGreedyDecoder has a different format and the CTCLoss is also affected in terms of different format for its inputs. So the corresponding sub-graph with CTCGreedyDecoding and CTCLoss must be transformed properly. Also, the transformation changes the input sequence length format into a mask format. For example, 1D tensor of sequence lengths equal to [4 2] is coded as 2D tensor [[1 1 1 1 0], [1 1 0 0 0]] with a time dimension is equal to 5. """ enabled = True
[ 37811, 198, 15069, 357, 34, 8, 12131, 8180, 10501, 628, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 921, 743, 7330, 257, 4866, 286, 262, 13789, 379, 628, 220, 220, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 628, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 198, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 198, 4091, 262, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 198, 11247, 739, 262, 13789, 13, 198, 37811, 198, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 18931, 355, 2604, 198, 198, 6738, 18366, 13, 2840, 13, 19248, 1330, 5833, 198, 6738, 18366, 13, 2840, 13, 310, 66, 62, 16694, 4716, 62, 12501, 12342, 1330, 327, 4825, 43887, 4716, 10707, 12342, 18257, 198, 6738, 18366, 13, 2840, 13, 310, 66, 62, 22462, 1330, 327, 4825, 43, 793, 198, 6738, 18366, 13, 2840, 13, 30854, 3083, 1330, 28701, 198, 6738, 18366, 13, 2840, 13, 17143, 2357, 1330, 25139, 2357, 198, 6738, 18366, 13, 2840, 13, 7738, 7234, 41472, 1330, 44048, 13065, 198, 6738, 18366, 13, 2840, 13, 19738, 1330, 9683, 198, 6738, 18366, 13, 2840, 13, 7645, 3455, 1330, 3602, 3455, 198, 6738, 6941, 13, 8534, 13, 11321, 13, 47172, 62, 259, 2232, 13, 26791, 1330, 493, 2414, 62, 18747, 198, 6738, 6941, 13, 8534, 13, 11321, 13, 35666, 5592, 1330, 8880, 39232, 5592, 7004, 34960, 198, 6738, 6941, 13, 8534, 13, 27110, 13, 34960, 62, 26791, 1330, 2251, 62, 404, 62, 4480, 62, 9979, 62, 15414, 82, 198, 6738, 6941, 13, 34960, 13, 34960, 1330, 29681, 11, 36265, 62, 77, 4147, 198, 6738, 6941, 13, 27171, 13, 6603, 274, 13, 1102, 1851, 62, 7890, 62, 4906, 1330, 1366, 62, 4906, 62, 2536, 62, 1462, 62, 37659, 198, 6738, 6941, 13, 2840, 13, 36654, 2701, 1330, 44244, 198, 6738, 6941, 13, 2840, 13, 43358, 1330, 25959, 198, 6738, 6941, 13, 2840, 13, 16485, 1453, 2736, 1330, 5056, 1453, 2736, 198, 6738, 6941, 13, 26791, 13, 18224, 1330, 13047, 628, 198, 4871, 327, 4825, 43, 793, 39232, 5592, 7, 25886, 39232, 5592, 7004, 34960, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 383, 327, 4825, 43, 793, 3568, 1863, 351, 327, 4825, 43887, 4716, 10707, 12342, 4905, 287, 1948, 13, 4619, 262, 309, 22854, 37535, 9, 327, 4825, 43887, 4716, 10707, 12342, 198, 220, 220, 220, 23862, 29877, 11192, 273, 5794, 11, 262, 4946, 53, 46016, 327, 4825, 43887, 4716, 10707, 12342, 468, 257, 1180, 5794, 290, 262, 327, 4825, 43, 793, 318, 635, 5676, 198, 220, 220, 220, 287, 2846, 286, 1180, 5794, 329, 663, 17311, 13, 1406, 262, 11188, 850, 12, 34960, 351, 327, 4825, 43887, 4716, 10707, 7656, 290, 327, 4825, 43, 793, 198, 220, 220, 220, 1276, 307, 14434, 6105, 13, 198, 220, 220, 220, 4418, 11, 262, 13389, 2458, 262, 5128, 8379, 4129, 5794, 656, 257, 9335, 5794, 13, 1114, 1672, 11, 352, 35, 11192, 273, 286, 198, 220, 220, 220, 8379, 20428, 4961, 284, 685, 19, 362, 60, 318, 30817, 355, 362, 35, 11192, 273, 16410, 16, 352, 352, 352, 657, 4357, 685, 16, 352, 657, 657, 657, 11907, 351, 257, 640, 15793, 318, 198, 220, 220, 220, 4961, 284, 642, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 9343, 796, 6407, 198 ]
3.578073
602
import csv
[ 11748, 269, 21370 ]
3.333333
3
# -*- coding: utf-8 -*- # @author Vasileios Choutas # Contact: [email protected] from __future__ import absolute_import from __future__ import print_function from __future__ import division from typing import NewType, List, Tuple import torch from torch import norm import torch.optim as optim import torch.autograd as autograd import math Tensor = NewType('Tensor', torch.Tensor)
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 2, 2488, 9800, 23663, 576, 4267, 609, 448, 292, 198, 2, 14039, 25, 410, 562, 346, 271, 13, 354, 448, 292, 31, 83, 518, 4623, 268, 13, 3149, 70, 13, 2934, 628, 198, 6738, 11593, 37443, 834, 1330, 4112, 62, 11748, 198, 6738, 11593, 37443, 834, 1330, 3601, 62, 8818, 198, 6738, 11593, 37443, 834, 1330, 7297, 198, 198, 6738, 19720, 1330, 968, 6030, 11, 7343, 11, 309, 29291, 198, 198, 11748, 28034, 198, 6738, 28034, 1330, 2593, 198, 11748, 28034, 13, 40085, 355, 6436, 198, 11748, 28034, 13, 2306, 519, 6335, 355, 1960, 519, 6335, 198, 198, 11748, 10688, 198, 198, 51, 22854, 796, 968, 6030, 10786, 51, 22854, 3256, 28034, 13, 51, 22854, 8, 628, 628 ]
3.06015
133
# -*- coding: utf-8 -*- # # 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. # """ Trains a decision tree classifier for phrase similarity. Reads the input file and trains the classifier. """ import argparse import csv import logging import graphviz import matplotlib.pyplot as plt from sklearn import tree from sklearn.metrics import classification_report from sklearn.tree import export_graphviz INFILE_DEF = 'data/phrase_similarity_combined.csv' OUTFILE_DEF = 'drawings/phrase_similarity_graph.png' def run(infile, outfile, val_file): """Load training data and train the classifier Args: infile: input file with the mutual information and training points outfile: file name to write graphviz export to """ x, y = load_training2(infile) feature_names = ['Unigram count / len', 'Hamming distance / len'] train(x, y, feature_names, outfile) x, y = load_training3(infile) feature_names = ['Unigram count', 'Hamming distance', 'Query length'] clf = train(x, y, feature_names, outfile) if len(val_file) > 0: x, y = load_training3(val_file) validate(clf, x, y, feature_names) def train(x, y, feature_names, outfile): """Train the classifier Args: x: list of values for feature variables y: list of target values feature_names: Names of feature variables outfile: file name to write graphviz export to Returns: the trained classifier """ clf = tree.DecisionTreeClassifier(random_state=0, max_depth=2, criterion='gini', min_samples_split=3) clf = clf.fit(x, y) score = clf.score(x, y) logging.info(f'Classifier score: {score}\n') y_pred = clf.predict(x) print("Training results") print(classification_report(y, y_pred)) dot_data = tree.export_graphviz(clf, filled = True, rounded = True) graph = graphviz.Source(dot_data) class_names = ['Not relevant', 'Relevant'] r = tree.export_text(clf, feature_names=feature_names) print(r) tree.plot_tree(clf, feature_names=feature_names, class_names=class_names, filled=True, impurity=False) #plt.show() plt.savefig(outfile, dpi=160) return clf def validate(clf, x, y, feature_names): """Validate the classifier Args: x: list of values for feature variables y: list of target values feature_names: Names of feature variables """ y_pred = clf.predict(x) print("Validation results") print(classification_report(y, y_pred)) def load_training2(infile): """Load training data with normalized unigram count and hamming distance. Args: infile: file name to load data from """ X = [] Y = [] with open(infile, 'r') as f: reader = csv.reader(f) for row in reader: if reader.line_num == 1: # Skip header row continue if len(row) > 8: query = row[0] unigram_count = float(row[5]) / len(query) hamming = float(row[6]) / len(query) relevance = int(row[8]) x = [unigram_count, hamming] X.append(x) Y.append(relevance) return (X, Y) def load_training3(infile): """Load training data with normalized unigram count, hamming distance, and query length. Args: infile: file name to load data from """ X = [] Y = [] with open(infile, 'r') as f: reader = csv.reader(f) for row in reader: if reader.line_num == 1: # Skip header row continue if len(row) > 8: query = row[0] unigram_count = int(row[5]) hamming = int(row[6]) relevance = int(row[8]) x = [unigram_count, hamming, len(query)] X.append(x) Y.append(relevance) return (X, Y) # Entry point from a script if __name__ == "__main__": main()
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 2, 198, 2, 49962, 284, 262, 24843, 10442, 5693, 357, 1921, 37, 8, 739, 530, 393, 517, 198, 2, 18920, 5964, 11704, 13, 220, 4091, 262, 28536, 2393, 9387, 351, 198, 2, 428, 670, 329, 3224, 1321, 5115, 6634, 9238, 13, 198, 2, 383, 7054, 37, 16625, 428, 2393, 284, 921, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 198, 2, 357, 1169, 366, 34156, 15341, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 198, 2, 262, 13789, 13, 220, 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, 198, 2898, 1299, 257, 2551, 5509, 1398, 7483, 329, 9546, 26789, 13, 198, 198, 5569, 82, 262, 5128, 2393, 290, 13404, 262, 1398, 7483, 13, 198, 37811, 198, 198, 11748, 1822, 29572, 198, 11748, 269, 21370, 198, 11748, 18931, 198, 11748, 4823, 85, 528, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 6738, 1341, 35720, 1330, 5509, 198, 6738, 1341, 35720, 13, 4164, 10466, 1330, 17923, 62, 13116, 198, 6738, 1341, 35720, 13, 21048, 1330, 10784, 62, 34960, 85, 528, 628, 198, 1268, 25664, 62, 32988, 796, 705, 7890, 14, 34675, 62, 38610, 414, 62, 24011, 1389, 13, 40664, 6, 198, 2606, 10234, 41119, 62, 32988, 796, 705, 19334, 654, 14, 34675, 62, 38610, 414, 62, 34960, 13, 11134, 6, 628, 198, 4299, 1057, 7, 259, 7753, 11, 503, 7753, 11, 1188, 62, 7753, 2599, 198, 220, 37227, 8912, 3047, 1366, 290, 4512, 262, 1398, 7483, 628, 220, 943, 14542, 25, 198, 220, 220, 220, 1167, 576, 25, 5128, 2393, 351, 262, 13584, 1321, 290, 3047, 2173, 198, 220, 220, 220, 503, 7753, 25, 2393, 1438, 284, 3551, 4823, 85, 528, 10784, 284, 198, 220, 37227, 198, 220, 2124, 11, 331, 796, 3440, 62, 34409, 17, 7, 259, 7753, 8, 198, 220, 3895, 62, 14933, 796, 37250, 3118, 328, 859, 954, 1220, 18896, 3256, 705, 21281, 2229, 5253, 1220, 18896, 20520, 198, 220, 4512, 7, 87, 11, 331, 11, 3895, 62, 14933, 11, 503, 7753, 8, 198, 220, 2124, 11, 331, 796, 3440, 62, 34409, 18, 7, 259, 7753, 8, 198, 220, 3895, 62, 14933, 796, 37250, 3118, 328, 859, 954, 3256, 705, 21281, 2229, 5253, 3256, 705, 20746, 4129, 20520, 198, 220, 537, 69, 796, 4512, 7, 87, 11, 331, 11, 3895, 62, 14933, 11, 503, 7753, 8, 198, 220, 611, 18896, 7, 2100, 62, 7753, 8, 1875, 657, 25, 198, 220, 220, 220, 2124, 11, 331, 796, 3440, 62, 34409, 18, 7, 2100, 62, 7753, 8, 198, 220, 220, 220, 26571, 7, 565, 69, 11, 2124, 11, 331, 11, 3895, 62, 14933, 8, 628, 198, 4299, 4512, 7, 87, 11, 331, 11, 3895, 62, 14933, 11, 503, 7753, 2599, 198, 220, 37227, 44077, 262, 1398, 7483, 628, 220, 943, 14542, 25, 198, 220, 220, 220, 2124, 25, 1351, 286, 3815, 329, 3895, 9633, 198, 220, 220, 220, 331, 25, 1351, 286, 2496, 3815, 198, 220, 220, 220, 3895, 62, 14933, 25, 28531, 286, 3895, 9633, 198, 220, 220, 220, 503, 7753, 25, 2393, 1438, 284, 3551, 4823, 85, 528, 10784, 284, 198, 220, 16409, 25, 198, 220, 220, 220, 262, 8776, 1398, 7483, 198, 220, 37227, 198, 220, 537, 69, 796, 5509, 13, 10707, 1166, 27660, 9487, 7483, 7, 25120, 62, 5219, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 62, 18053, 28, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 34054, 11639, 1655, 72, 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, 220, 220, 220, 220, 220, 220, 220, 949, 62, 82, 12629, 62, 35312, 28, 18, 8, 198, 220, 537, 69, 796, 537, 69, 13, 11147, 7, 87, 11, 331, 8, 198, 220, 4776, 796, 537, 69, 13, 26675, 7, 87, 11, 331, 8, 198, 220, 18931, 13, 10951, 7, 69, 6, 9487, 7483, 4776, 25, 1391, 26675, 32239, 77, 11537, 198, 220, 331, 62, 28764, 796, 537, 69, 13, 79, 17407, 7, 87, 8, 198, 220, 3601, 7203, 44357, 2482, 4943, 198, 220, 3601, 7, 4871, 2649, 62, 13116, 7, 88, 11, 331, 62, 28764, 4008, 198, 220, 16605, 62, 7890, 796, 5509, 13, 39344, 62, 34960, 85, 528, 7, 565, 69, 11, 5901, 796, 6407, 11, 19273, 796, 6407, 8, 198, 220, 4823, 796, 4823, 85, 528, 13, 7416, 7, 26518, 62, 7890, 8, 220, 198, 220, 1398, 62, 14933, 796, 37250, 3673, 5981, 3256, 705, 3041, 14938, 20520, 198, 220, 374, 796, 5509, 13, 39344, 62, 5239, 7, 565, 69, 11, 3895, 62, 14933, 28, 30053, 62, 14933, 8, 198, 220, 3601, 7, 81, 8, 198, 220, 5509, 13, 29487, 62, 21048, 7, 565, 69, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3895, 62, 14933, 28, 30053, 62, 14933, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1398, 62, 14933, 28, 4871, 62, 14933, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5901, 28, 17821, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 848, 1684, 28, 25101, 8, 198, 220, 1303, 489, 83, 13, 12860, 3419, 198, 220, 458, 83, 13, 21928, 5647, 7, 448, 7753, 11, 288, 14415, 28, 14198, 8, 198, 220, 1441, 537, 69, 628, 198, 4299, 26571, 7, 565, 69, 11, 2124, 11, 331, 11, 3895, 62, 14933, 2599, 198, 220, 37227, 7762, 20540, 262, 1398, 7483, 628, 220, 943, 14542, 25, 198, 220, 220, 220, 2124, 25, 1351, 286, 3815, 329, 3895, 9633, 198, 220, 220, 220, 331, 25, 1351, 286, 2496, 3815, 198, 220, 220, 220, 3895, 62, 14933, 25, 28531, 286, 3895, 9633, 198, 220, 37227, 198, 220, 331, 62, 28764, 796, 537, 69, 13, 79, 17407, 7, 87, 8, 198, 220, 3601, 7203, 7762, 24765, 2482, 4943, 198, 220, 3601, 7, 4871, 2649, 62, 13116, 7, 88, 11, 331, 62, 28764, 4008, 628, 198, 4299, 3440, 62, 34409, 17, 7, 259, 7753, 2599, 198, 220, 37227, 8912, 3047, 1366, 351, 39279, 555, 328, 859, 954, 290, 8891, 2229, 5253, 13, 628, 220, 943, 14542, 25, 198, 220, 220, 220, 1167, 576, 25, 2393, 1438, 284, 3440, 1366, 422, 198, 220, 37227, 198, 220, 1395, 796, 17635, 198, 220, 575, 796, 17635, 198, 220, 351, 1280, 7, 259, 7753, 11, 705, 81, 11537, 355, 277, 25, 198, 220, 220, 220, 9173, 796, 269, 21370, 13, 46862, 7, 69, 8, 198, 220, 220, 220, 329, 5752, 287, 9173, 25, 198, 220, 220, 220, 220, 220, 611, 9173, 13, 1370, 62, 22510, 6624, 352, 25, 220, 1303, 32214, 13639, 5752, 198, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 611, 18896, 7, 808, 8, 1875, 807, 25, 198, 220, 220, 220, 220, 220, 220, 220, 12405, 796, 5752, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 555, 328, 859, 62, 9127, 796, 12178, 7, 808, 58, 20, 12962, 1220, 18896, 7, 22766, 8, 198, 220, 220, 220, 220, 220, 220, 220, 8891, 2229, 796, 12178, 7, 808, 58, 21, 12962, 1220, 18896, 7, 22766, 8, 198, 220, 220, 220, 220, 220, 220, 220, 23082, 796, 493, 7, 808, 58, 23, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 685, 403, 328, 859, 62, 9127, 11, 8891, 2229, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1395, 13, 33295, 7, 87, 8, 198, 220, 220, 220, 220, 220, 220, 220, 575, 13, 33295, 7, 260, 2768, 590, 8, 198, 220, 1441, 357, 55, 11, 575, 8, 198, 198, 4299, 3440, 62, 34409, 18, 7, 259, 7753, 2599, 198, 220, 37227, 8912, 3047, 1366, 351, 39279, 555, 328, 859, 954, 11, 8891, 2229, 5253, 11, 290, 220, 198, 220, 220, 220, 220, 12405, 4129, 13, 628, 220, 943, 14542, 25, 198, 220, 220, 220, 1167, 576, 25, 2393, 1438, 284, 3440, 1366, 422, 198, 220, 37227, 198, 220, 1395, 796, 17635, 198, 220, 575, 796, 17635, 198, 220, 351, 1280, 7, 259, 7753, 11, 705, 81, 11537, 355, 277, 25, 198, 220, 220, 220, 9173, 796, 269, 21370, 13, 46862, 7, 69, 8, 198, 220, 220, 220, 329, 5752, 287, 9173, 25, 198, 220, 220, 220, 220, 220, 611, 9173, 13, 1370, 62, 22510, 6624, 352, 25, 220, 1303, 32214, 13639, 5752, 198, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 611, 18896, 7, 808, 8, 1875, 807, 25, 198, 220, 220, 220, 220, 220, 220, 220, 12405, 796, 5752, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 555, 328, 859, 62, 9127, 796, 493, 7, 808, 58, 20, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 8891, 2229, 796, 493, 7, 808, 58, 21, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 23082, 796, 493, 7, 808, 58, 23, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 796, 685, 403, 328, 859, 62, 9127, 11, 8891, 2229, 11, 18896, 7, 22766, 15437, 198, 220, 220, 220, 220, 220, 220, 220, 1395, 13, 33295, 7, 87, 8, 198, 220, 220, 220, 220, 220, 220, 220, 575, 13, 33295, 7, 260, 2768, 590, 8, 198, 220, 1441, 357, 55, 11, 575, 8, 628, 198, 2, 21617, 966, 422, 257, 4226, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 1388, 3419 ]
2.599317
1,757
""" A script that scrapes various bits of data from subreddits """ import praw import requests import os import sqlite3 SQ_LITE_FILE = "avexchange_data.db" def get_urls(subreddit): """ scrape for certain keywords on a subreddit """ print("getting urls from r/{}".format(subreddit)) reddit = praw.Reddit("bot1") conn = sqlite3.connect(SQ_LITE_FILE) c = conn.cursor() # find posts in the last hour for submission in reddit.subreddit(subreddit).search("KZ OR Final OR Sennheiser OR Hifiman OR Pro", sort="new", time_filter="hour"): print("Title: {}".format(submission.title)) print("Text: {}".format(submission.selftext)) # c.execute("SELECT 1 FROM posts WHERE fullname=? LIMIT 1", (submission.fullname, )) # post_exists = c.fetchone() is not None # if not post_exists: try: c.execute("INSERT INTO posts VALUES({}, {}, {}) ESCAPE '|'" .format(submission.fullname, submission.title, submission.selftext)) except sqlite3.IntegrityError as e: pass # print("--------\n") conn.commit() conn.close() if __name__ == "__main__": init_database() get_urls("avexchange")
[ 37811, 317, 4226, 326, 15881, 274, 2972, 10340, 286, 1366, 422, 46386, 198, 37811, 198, 11748, 279, 1831, 198, 11748, 7007, 198, 11748, 28686, 198, 11748, 44161, 578, 18, 198, 198, 50, 48, 62, 43, 12709, 62, 25664, 796, 366, 1015, 87, 3803, 62, 7890, 13, 9945, 1, 198, 198, 4299, 651, 62, 6371, 82, 7, 7266, 10748, 2599, 198, 220, 220, 220, 37227, 42778, 329, 1728, 26286, 319, 257, 25163, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3601, 7203, 37210, 2956, 7278, 422, 374, 14, 90, 92, 1911, 18982, 7, 7266, 10748, 4008, 198, 220, 220, 220, 18374, 796, 279, 1831, 13, 22367, 7203, 13645, 16, 4943, 198, 220, 220, 220, 48260, 796, 44161, 578, 18, 13, 8443, 7, 50, 48, 62, 43, 12709, 62, 25664, 8, 198, 220, 220, 220, 269, 796, 48260, 13, 66, 21471, 3419, 198, 220, 220, 220, 1303, 1064, 6851, 287, 262, 938, 1711, 198, 220, 220, 220, 329, 14498, 287, 18374, 13, 7266, 10748, 7, 7266, 10748, 737, 12947, 7203, 42, 57, 6375, 8125, 6375, 311, 1697, 258, 5847, 6375, 367, 361, 24086, 6375, 1041, 1600, 3297, 2625, 3605, 1600, 640, 62, 24455, 2625, 9769, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 19160, 25, 23884, 1911, 18982, 7, 7266, 3411, 13, 7839, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 8206, 25, 23884, 1911, 18982, 7, 7266, 3411, 13, 944, 5239, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 269, 13, 41049, 7203, 46506, 352, 16034, 6851, 33411, 1336, 3672, 28, 30, 27564, 2043, 352, 1600, 357, 7266, 3411, 13, 12853, 3672, 11, 15306, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1281, 62, 1069, 1023, 796, 269, 13, 69, 7569, 505, 3419, 318, 407, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 611, 407, 1281, 62, 1069, 1023, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 13, 41049, 7203, 20913, 17395, 39319, 6851, 26173, 35409, 15090, 5512, 1391, 5512, 23884, 8, 40251, 45721, 705, 91, 29653, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 764, 18982, 7, 7266, 3411, 13, 12853, 3672, 11, 14498, 13, 7839, 11, 14498, 13, 944, 5239, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 44161, 578, 18, 13, 34500, 10138, 12331, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 7203, 982, 59, 77, 4943, 198, 220, 220, 220, 48260, 13, 41509, 3419, 198, 220, 220, 220, 48260, 13, 19836, 3419, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 2315, 62, 48806, 3419, 198, 220, 220, 220, 651, 62, 6371, 82, 7203, 1015, 87, 3803, 4943, 628 ]
2.512448
482
#!/usr/bin/python # -*- coding: utf-8 -*- """ Created on 2017-12-22 @author: foxty Node Agent """ # ============================== # Node Agent # ============================== import os import sys import logging import logging.handlers import socket import select import Queue as Q import threading from datetime import datetime from subprocess import call from common import Msg, InvalidMsgError, is_win, is_sunos, ostype, OSType, set_logging, check_output, \ process_info, interpret_exp, send_msg, read_msg _MAX_BACKOFF_SECOND = 60 # in agent retry policy DEF_CONFIG = { "version": 0, "clock_interval": 10, "heartbeat_clocks": 6, "node_metrics": [], "service_metrics": {}, "services": [] } class NodeAgent: """Agent will running the node as and keep send stats data to Master via TCP connection.""" SEND_BUF = 128*1024 @property def add_msg(self, msg): """Add new msg to the queue and remove oldest msg if its full""" retry = 0 while True: try: if self._queue.full(): oldest_msg = self._queue.get_nowait() logging.debug('q is full, msg %s abandoned, qsize=%d.', oldest_msg, self._queue.qsize()) self._queue.put_nowait(msg) logging.info('msg %s added to queue, retry=%d, qsize=%d.', msg, retry, self._queue.qsize()) break; except Q.Full: # Queue is full, retry retry += 1 def _do_reg(self): """Produce a agent reg message after connected""" logging.info('do registration...') reg_data = {'os': ostype(), 'hostname': self._hostname} reg_msg = Msg.create_msg(self._agentid, Msg.A_REG, reg_data) self.add_msg(reg_msg) if __name__ == '__main__': basepath = os.path.dirname(sys.path[0]) set_logging('agent.log') args = sys.argv[1:] mhost = 'localhost' mport = 30079 if len(args) == 0: print('Usage: agnet.py master_host[:port]') exit(-1) if ':' in args[0]: addr = args[0].split(':') mhost, mport = addr[0], int(addr[1]) else: mhost = args[0] agent = NodeAgent(mhost, mport) agent.start()
[ 2, 48443, 14629, 14, 8800, 14, 29412, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 37811, 198, 41972, 319, 2177, 12, 1065, 12, 1828, 198, 31, 9800, 25, 11511, 742, 88, 198, 198, 19667, 15906, 198, 37811, 198, 2, 36658, 25609, 28, 198, 2, 220, 220, 19081, 15906, 198, 2, 36658, 25609, 28, 198, 11748, 28686, 198, 11748, 25064, 198, 11748, 18931, 198, 11748, 18931, 13, 4993, 8116, 198, 11748, 17802, 198, 11748, 2922, 198, 11748, 4670, 518, 355, 1195, 198, 11748, 4704, 278, 198, 6738, 4818, 8079, 1330, 4818, 8079, 198, 6738, 850, 14681, 1330, 869, 198, 6738, 2219, 1330, 6997, 70, 11, 17665, 50108, 12331, 11, 318, 62, 5404, 11, 318, 62, 19155, 418, 11, 23619, 2981, 11, 440, 2257, 2981, 11, 900, 62, 6404, 2667, 11, 2198, 62, 22915, 11, 3467, 198, 220, 220, 220, 1429, 62, 10951, 11, 6179, 62, 11201, 11, 3758, 62, 19662, 11, 1100, 62, 19662, 628, 198, 62, 22921, 62, 31098, 27977, 62, 23683, 18672, 796, 3126, 220, 1303, 287, 5797, 1005, 563, 2450, 628, 198, 32988, 62, 10943, 16254, 796, 1391, 198, 220, 220, 220, 366, 9641, 1298, 657, 11, 198, 220, 220, 220, 366, 15750, 62, 3849, 2100, 1298, 838, 11, 198, 220, 220, 220, 366, 11499, 12945, 62, 565, 3320, 1298, 718, 11, 198, 220, 220, 220, 366, 17440, 62, 4164, 10466, 1298, 685, 4357, 198, 220, 220, 220, 366, 15271, 62, 4164, 10466, 1298, 1391, 5512, 198, 220, 220, 220, 366, 30416, 1298, 17635, 198, 92, 628, 628, 198, 198, 4871, 19081, 36772, 25, 198, 220, 220, 220, 37227, 36772, 481, 2491, 262, 10139, 355, 290, 1394, 3758, 9756, 1366, 284, 5599, 2884, 23633, 4637, 526, 15931, 198, 220, 220, 220, 311, 10619, 62, 19499, 37, 796, 13108, 9, 35500, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 825, 751, 62, 19662, 7, 944, 11, 31456, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 4550, 649, 31456, 284, 262, 16834, 290, 4781, 13325, 31456, 611, 663, 1336, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1005, 563, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 981, 6407, 25, 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, 611, 2116, 13557, 36560, 13, 12853, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13325, 62, 19662, 796, 2116, 13557, 36560, 13, 1136, 62, 2197, 4548, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18931, 13, 24442, 10786, 80, 318, 1336, 11, 31456, 4064, 82, 9958, 11, 10662, 7857, 28, 4, 67, 2637, 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, 13325, 62, 19662, 11, 2116, 13557, 36560, 13, 80, 7857, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 36560, 13, 1996, 62, 2197, 4548, 7, 19662, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18931, 13, 10951, 10786, 19662, 4064, 82, 2087, 284, 16834, 11, 1005, 563, 28, 4, 67, 11, 10662, 7857, 28, 4, 67, 2637, 11, 31456, 11, 1005, 563, 11, 2116, 13557, 36560, 13, 80, 7857, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 26, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 1195, 13, 13295, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4670, 518, 318, 1336, 11, 1005, 563, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1005, 563, 15853, 352, 628, 220, 220, 220, 825, 4808, 4598, 62, 2301, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 11547, 344, 257, 5797, 842, 3275, 706, 5884, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 18931, 13, 10951, 10786, 4598, 9352, 986, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 842, 62, 7890, 796, 1391, 6, 418, 10354, 23619, 2981, 22784, 705, 4774, 3672, 10354, 2116, 13557, 4774, 3672, 92, 198, 220, 220, 220, 220, 220, 220, 220, 842, 62, 19662, 796, 6997, 70, 13, 17953, 62, 19662, 7, 944, 13557, 25781, 312, 11, 6997, 70, 13, 32, 62, 31553, 11, 842, 62, 7890, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2860, 62, 19662, 7, 2301, 62, 19662, 8, 628, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 1615, 538, 776, 796, 28686, 13, 6978, 13, 15908, 3672, 7, 17597, 13, 6978, 58, 15, 12962, 198, 220, 220, 220, 900, 62, 6404, 2667, 10786, 25781, 13, 6404, 11537, 198, 220, 220, 220, 26498, 796, 25064, 13, 853, 85, 58, 16, 47715, 198, 220, 220, 220, 285, 4774, 796, 705, 36750, 6, 198, 220, 220, 220, 285, 634, 796, 5867, 3720, 628, 220, 220, 220, 611, 18896, 7, 22046, 8, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 28350, 25, 556, 3262, 13, 9078, 4958, 62, 4774, 58, 25, 634, 60, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 8420, 32590, 16, 8, 198, 220, 220, 220, 611, 705, 32105, 287, 26498, 58, 15, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 37817, 796, 26498, 58, 15, 4083, 35312, 7, 10354, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 285, 4774, 11, 285, 634, 796, 37817, 58, 15, 4357, 493, 7, 29851, 58, 16, 12962, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 285, 4774, 796, 26498, 58, 15, 60, 198, 220, 220, 220, 5797, 796, 19081, 36772, 7, 76, 4774, 11, 285, 634, 8, 198, 220, 220, 220, 5797, 13, 9688, 3419 ]
2.224272
1,030
#!/usr/bin/python #---------------------------------------------------------------- # #------------------------------------------------------ # Usage: # #------------------------------------------------------ # Copyright 2007, Oliver White # # 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 3 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, see <http://www.gnu.org/licenses/>. #------------------------------------------------------ import sys import os from xml.sax import make_parser, handler import xml from struct import * # Parse the supplied OSM file if __name__ == "__main__": print "Loading data..." Binary = BinaryOsm() Binary.encode(sys.argv[1], sys.argv[2])
[ 2, 48443, 14629, 14, 8800, 14, 29412, 198, 2, 10097, 198, 2, 198, 2, 3880, 19351, 438, 198, 2, 29566, 25, 198, 2, 198, 2, 3880, 19351, 438, 198, 2, 15069, 4343, 11, 15416, 2635, 198, 2, 198, 2, 770, 1430, 318, 1479, 3788, 25, 345, 460, 17678, 4163, 340, 290, 14, 273, 13096, 198, 2, 340, 739, 262, 2846, 286, 262, 22961, 3611, 5094, 13789, 355, 3199, 416, 198, 2, 262, 3232, 10442, 5693, 11, 2035, 2196, 513, 286, 262, 13789, 11, 393, 198, 2, 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, 13, 220, 1002, 407, 11, 766, 1279, 4023, 1378, 2503, 13, 41791, 13, 2398, 14, 677, 4541, 15913, 13, 198, 2, 3880, 19351, 438, 198, 11748, 25064, 198, 11748, 28686, 198, 6738, 35555, 13, 82, 897, 1330, 787, 62, 48610, 11, 21360, 198, 11748, 35555, 198, 6738, 2878, 1330, 1635, 198, 198, 2, 2547, 325, 262, 14275, 7294, 44, 2393, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 3601, 366, 19031, 1366, 9313, 198, 220, 45755, 796, 45755, 46, 5796, 3419, 198, 220, 45755, 13, 268, 8189, 7, 17597, 13, 853, 85, 58, 16, 4357, 25064, 13, 853, 85, 58, 17, 12962, 198 ]
4.094077
287
import re from functools import wraps from gooey.gui.components.filtering.prefix_filter import OperatorType class SuperBool(object): """ A boolean which keeps with it the rationale for when it is false. """ __nonzero__ = __bool__ def lift(f): """ Lifts a basic predicate to the SuperBool type stealing the docstring as the rationale message. This is largely just goofing around and experimenting since it's a private internal API. """ @wraps(f) return inner @lift def is_tuple_or_list(value): """Must be either a list or tuple""" return isinstance(value, list) or isinstance(value, tuple) @lift def is_str(value): """Must be of type `str`""" return isinstance(value, str) @lift def is_str_or_coll(value): """ Colors must be either a hex string or collection of RGB values. e.g. Hex string: #fff0ce RGB Collection: [0, 255, 128] or (0, 255, 128) """ return bool(is_str(value)) or bool(is_tuple_or_list(value)) @lift def has_valid_channel_values(rgb_coll): """Colors in an RGB collection must all be in the range 0-255""" return all([is_0to255(c) and is_int(c) for c in rgb_coll]) @lift def is_three_channeled(value): """Missing channels! Colors in an RGB collection should be of the form [R,G,B] or (R,G,B)""" return len(value) == 3 @lift def is_hex_string(value: str): """Invalid hexadecimal format. Expected: "#FFFFFF" """ return isinstance(value, str) and bool(re.match('^#[\dABCDEF]{6}$', value, flags=2)) @lift def is_bool(value): """Must be of type Boolean""" return isinstance(value, bool) @lift def non_empty_string(value): """Must be a non-empty non-blank string""" return bool(value) and bool(value.strip()) @lift def is_tokenization_operator(value): """Operator must be a valid OperatorType i.e. one of: (AND, OR)""" return bool(value) in (OperatorType.AND, OperatorType.OR) @lift def is_tokenizer(value): """Tokenizers must be valid Regular expressions. see: options.PrefixTokenizers""" return bool(non_empty_string(value)) @lift def is_int(value): """Invalid type. Expected `int`""" return isinstance(value, int) @lift def is_0to255(value): """RGB values must be in the range 0 - 255 (inclusive)""" return 0 <= value <= 255 def is_0to20(value): """Precision values must be in the range 0 - 20 (inclusive)""" return 0 <= value <= 20 @lift def is_valid_color(value): """Must be either a valid hex string or RGB list""" if is_str(value): return is_hex_string(value) elif is_tuple_or_list(value): return (is_tuple_or_list(value) and is_three_channeled(value) and has_valid_channel_values(value)) else: return is_str_or_coll(value) validators = { 'label_color': is_valid_color, 'label_bg_color': is_valid_color, 'help_color': is_valid_color, 'help_bg_color': is_valid_color, 'error_color': is_valid_color, 'error_bg_color': is_valid_color, 'show_label': is_bool, 'show_help': is_bool, 'visible': is_bool, 'full_width': is_bool, 'height': is_int, 'readonly': is_bool, 'initial_selection': is_int, 'title': non_empty_string, 'checkbox_label': non_empty_string, 'placeholder': non_empty_string, 'empty_message': non_empty_string, 'max_size': is_int, 'choice_tokenizer': is_tokenizer, 'input_tokenizer': is_tokenizer, 'ignore_case': is_bool, 'operator': is_tokenization_operator, 'index_suffix': is_bool, 'wildcard': non_empty_string, 'default_dir': non_empty_string, 'default_file': non_empty_string, 'default_path': non_empty_string, 'message': non_empty_string, 'precision': is_0to20 } if __name__ == '__main__': # TODO: there should be tests pass # print(validateColor((1, 'ergerg', 1234))) # print(validateColor(1234)) # print(validateColor(123.234)) # print(validateColor('123.234')) # print(validateColor('FFFAAA')) # print(validateColor('#FFFAAA')) # print(validateColor([])) # print(validateColor(())) # print(validateColor((1, 2))) # print(validateColor((1, 2, 1234))) # print(is_lifted(lift(is_int))) # print(is_lifted(is_int)) # print(OR(is_poop, is_int)('poop')) # print(AND(is_poop, is_lower, is_lower)('pooP')) # print(OR(is_poop, is_int)) # print(is_lifted(OR(is_poop, is_int))) # print(validate(is_valid_color, [255, 255, 256])) # print(is_valid_color('#fff000')) # print(is_valid_color([255, 244, 256])) # print(non_empty_string('asdf') and non_empty_string('asdf')) # validate(is_valid_color, 1234)
[ 11748, 302, 198, 6738, 1257, 310, 10141, 1330, 27521, 198, 198, 6738, 467, 2577, 88, 13, 48317, 13, 5589, 3906, 13, 10379, 20212, 13, 40290, 62, 24455, 1330, 35946, 6030, 628, 198, 4871, 3115, 33, 970, 7, 15252, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 317, 25131, 543, 7622, 351, 340, 262, 25738, 198, 220, 220, 220, 329, 618, 340, 318, 3991, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 11593, 13159, 22570, 834, 796, 11593, 30388, 834, 628, 198, 4299, 10303, 7, 69, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 406, 19265, 257, 4096, 44010, 284, 262, 3115, 33, 970, 2099, 198, 220, 220, 220, 16568, 262, 2205, 8841, 355, 262, 25738, 3275, 13, 628, 220, 220, 220, 770, 318, 5688, 655, 31644, 278, 1088, 290, 27826, 198, 220, 220, 220, 1201, 340, 338, 257, 2839, 5387, 7824, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2488, 29988, 862, 7, 69, 8, 198, 220, 220, 220, 1441, 8434, 628, 198, 31, 26282, 198, 4299, 318, 62, 83, 29291, 62, 273, 62, 4868, 7, 8367, 2599, 198, 220, 220, 220, 37227, 34320, 307, 2035, 257, 1351, 393, 46545, 37811, 198, 220, 220, 220, 1441, 318, 39098, 7, 8367, 11, 1351, 8, 393, 318, 39098, 7, 8367, 11, 46545, 8, 628, 198, 31, 26282, 198, 4299, 318, 62, 2536, 7, 8367, 2599, 198, 220, 220, 220, 37227, 34320, 307, 286, 2099, 4600, 2536, 63, 37811, 198, 220, 220, 220, 1441, 318, 39098, 7, 8367, 11, 965, 8, 198, 198, 31, 26282, 198, 4299, 318, 62, 2536, 62, 273, 62, 26000, 7, 8367, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 29792, 1276, 307, 2035, 257, 17910, 4731, 393, 4947, 286, 25228, 3815, 13, 198, 220, 220, 220, 304, 13, 70, 13, 198, 220, 220, 220, 220, 220, 220, 220, 22212, 4731, 25, 1303, 20972, 15, 344, 198, 220, 220, 220, 220, 220, 220, 220, 25228, 12251, 25, 685, 15, 11, 14280, 11, 13108, 60, 393, 357, 15, 11, 14280, 11, 13108, 8, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1441, 20512, 7, 271, 62, 2536, 7, 8367, 4008, 393, 20512, 7, 271, 62, 83, 29291, 62, 273, 62, 4868, 7, 8367, 4008, 628, 198, 31, 26282, 198, 4299, 468, 62, 12102, 62, 17620, 62, 27160, 7, 81, 22296, 62, 26000, 2599, 198, 220, 220, 220, 37227, 5216, 669, 287, 281, 25228, 4947, 1276, 477, 307, 287, 262, 2837, 657, 12, 13381, 37811, 198, 220, 220, 220, 1441, 477, 26933, 271, 62, 15, 1462, 13381, 7, 66, 8, 290, 318, 62, 600, 7, 66, 8, 329, 269, 287, 46140, 62, 26000, 12962, 628, 198, 31, 26282, 198, 4299, 318, 62, 15542, 62, 17620, 276, 7, 8367, 2599, 198, 220, 220, 220, 37227, 43730, 9619, 0, 29792, 287, 281, 25228, 4947, 815, 307, 286, 262, 1296, 685, 49, 11, 38, 11, 33, 60, 393, 357, 49, 11, 38, 11, 33, 8, 37811, 198, 220, 220, 220, 1441, 18896, 7, 8367, 8, 6624, 513, 198, 198, 31, 26282, 198, 4299, 318, 62, 33095, 62, 8841, 7, 8367, 25, 965, 2599, 198, 220, 220, 220, 37227, 44651, 17910, 671, 66, 4402, 5794, 13, 1475, 7254, 25, 25113, 29312, 5777, 1, 37227, 198, 220, 220, 220, 1441, 318, 39098, 7, 8367, 11, 965, 8, 290, 20512, 7, 260, 13, 15699, 10786, 61, 2, 58, 59, 67, 24694, 32988, 60, 90, 21, 92, 3, 3256, 1988, 11, 9701, 28, 17, 4008, 628, 198, 31, 26282, 198, 4299, 318, 62, 30388, 7, 8367, 2599, 198, 220, 220, 220, 37227, 34320, 307, 286, 2099, 41146, 37811, 198, 220, 220, 220, 1441, 318, 39098, 7, 8367, 11, 20512, 8, 198, 198, 31, 26282, 198, 4299, 1729, 62, 28920, 62, 8841, 7, 8367, 2599, 198, 220, 220, 220, 37227, 34320, 307, 257, 1729, 12, 28920, 1729, 12, 27190, 4731, 37811, 198, 220, 220, 220, 1441, 20512, 7, 8367, 8, 290, 20512, 7, 8367, 13, 36311, 28955, 198, 198, 31, 26282, 198, 4299, 318, 62, 30001, 1634, 62, 46616, 7, 8367, 2599, 198, 220, 220, 220, 37227, 18843, 1352, 1276, 307, 257, 4938, 35946, 6030, 1312, 13, 68, 13, 530, 286, 25, 357, 6981, 11, 6375, 8, 37811, 198, 220, 220, 220, 1441, 20512, 7, 8367, 8, 287, 357, 18843, 1352, 6030, 13, 6981, 11, 35946, 6030, 13, 1581, 8, 198, 198, 31, 26282, 198, 4299, 318, 62, 30001, 7509, 7, 8367, 2599, 198, 220, 220, 220, 37227, 30642, 11341, 1276, 307, 4938, 23603, 14700, 13, 766, 25, 3689, 13, 36698, 844, 30642, 11341, 37811, 198, 220, 220, 220, 1441, 20512, 7, 13159, 62, 28920, 62, 8841, 7, 8367, 4008, 628, 198, 31, 26282, 198, 4299, 318, 62, 600, 7, 8367, 2599, 198, 220, 220, 220, 37227, 44651, 2099, 13, 1475, 7254, 4600, 600, 63, 37811, 198, 220, 220, 220, 1441, 318, 39098, 7, 8367, 11, 493, 8, 198, 198, 31, 26282, 198, 4299, 318, 62, 15, 1462, 13381, 7, 8367, 2599, 198, 220, 220, 220, 37227, 36982, 3815, 1276, 307, 287, 262, 2837, 657, 532, 14280, 357, 259, 5731, 8, 37811, 198, 220, 220, 220, 1441, 657, 19841, 1988, 19841, 14280, 628, 198, 4299, 318, 62, 15, 1462, 1238, 7, 8367, 2599, 198, 220, 220, 220, 37227, 6719, 16005, 3815, 1276, 307, 287, 262, 2837, 657, 532, 1160, 357, 259, 5731, 8, 37811, 198, 220, 220, 220, 1441, 657, 19841, 1988, 19841, 1160, 198, 198, 31, 26282, 198, 4299, 318, 62, 12102, 62, 8043, 7, 8367, 2599, 198, 220, 220, 220, 37227, 34320, 307, 2035, 257, 4938, 17910, 4731, 393, 25228, 1351, 37811, 198, 220, 220, 220, 611, 318, 62, 2536, 7, 8367, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 318, 62, 33095, 62, 8841, 7, 8367, 8, 198, 220, 220, 220, 1288, 361, 318, 62, 83, 29291, 62, 273, 62, 4868, 7, 8367, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 357, 271, 62, 83, 29291, 62, 273, 62, 4868, 7, 8367, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 318, 62, 15542, 62, 17620, 276, 7, 8367, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 468, 62, 12102, 62, 17620, 62, 27160, 7, 8367, 4008, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 318, 62, 2536, 62, 273, 62, 26000, 7, 8367, 8, 628, 198, 12102, 2024, 796, 1391, 198, 220, 220, 220, 705, 18242, 62, 8043, 10354, 318, 62, 12102, 62, 8043, 11, 198, 220, 220, 220, 705, 18242, 62, 35904, 62, 8043, 10354, 318, 62, 12102, 62, 8043, 11, 198, 220, 220, 220, 705, 16794, 62, 8043, 10354, 318, 62, 12102, 62, 8043, 11, 198, 220, 220, 220, 705, 16794, 62, 35904, 62, 8043, 10354, 318, 62, 12102, 62, 8043, 11, 198, 220, 220, 220, 705, 18224, 62, 8043, 10354, 318, 62, 12102, 62, 8043, 11, 198, 220, 220, 220, 705, 18224, 62, 35904, 62, 8043, 10354, 318, 62, 12102, 62, 8043, 11, 198, 220, 220, 220, 705, 12860, 62, 18242, 10354, 318, 62, 30388, 11, 198, 220, 220, 220, 705, 12860, 62, 16794, 10354, 318, 62, 30388, 11, 198, 220, 220, 220, 705, 23504, 10354, 318, 62, 30388, 11, 198, 220, 220, 220, 705, 12853, 62, 10394, 10354, 318, 62, 30388, 11, 198, 220, 220, 220, 705, 17015, 10354, 318, 62, 600, 11, 198, 220, 220, 220, 705, 961, 8807, 10354, 318, 62, 30388, 11, 198, 220, 220, 220, 705, 36733, 62, 49283, 10354, 318, 62, 600, 11, 198, 220, 220, 220, 705, 7839, 10354, 1729, 62, 28920, 62, 8841, 11, 198, 220, 220, 220, 705, 9122, 3524, 62, 18242, 10354, 1729, 62, 28920, 62, 8841, 11, 198, 220, 220, 220, 705, 5372, 13829, 10354, 1729, 62, 28920, 62, 8841, 11, 198, 220, 220, 220, 705, 28920, 62, 20500, 10354, 1729, 62, 28920, 62, 8841, 11, 198, 220, 220, 220, 705, 9806, 62, 7857, 10354, 318, 62, 600, 11, 198, 220, 220, 220, 705, 25541, 62, 30001, 7509, 10354, 318, 62, 30001, 7509, 11, 198, 220, 220, 220, 705, 15414, 62, 30001, 7509, 10354, 318, 62, 30001, 7509, 11, 198, 220, 220, 220, 705, 46430, 62, 7442, 10354, 318, 62, 30388, 11, 198, 220, 220, 220, 705, 46616, 10354, 318, 62, 30001, 1634, 62, 46616, 11, 198, 220, 220, 220, 705, 9630, 62, 37333, 844, 10354, 318, 62, 30388, 11, 198, 220, 220, 220, 705, 21992, 9517, 10354, 1729, 62, 28920, 62, 8841, 11, 198, 220, 220, 220, 705, 12286, 62, 15908, 10354, 1729, 62, 28920, 62, 8841, 11, 198, 220, 220, 220, 705, 12286, 62, 7753, 10354, 1729, 62, 28920, 62, 8841, 11, 198, 220, 220, 220, 705, 12286, 62, 6978, 10354, 1729, 62, 28920, 62, 8841, 11, 198, 220, 220, 220, 705, 20500, 10354, 1729, 62, 28920, 62, 8841, 11, 198, 220, 220, 220, 705, 3866, 16005, 10354, 318, 62, 15, 1462, 1238, 198, 92, 628, 628, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 1303, 16926, 46, 25, 612, 815, 307, 5254, 198, 220, 220, 220, 1208, 198, 220, 220, 220, 1303, 3601, 7, 12102, 378, 10258, 19510, 16, 11, 705, 263, 1362, 70, 3256, 1105, 2682, 22305, 198, 220, 220, 220, 1303, 3601, 7, 12102, 378, 10258, 7, 1065, 2682, 4008, 198, 220, 220, 220, 1303, 3601, 7, 12102, 378, 10258, 7, 10163, 13, 24409, 4008, 198, 220, 220, 220, 1303, 3601, 7, 12102, 378, 10258, 10786, 10163, 13, 24409, 6, 4008, 198, 220, 220, 220, 1303, 3601, 7, 12102, 378, 10258, 10786, 5777, 37, 29697, 6, 4008, 198, 220, 220, 220, 1303, 3601, 7, 12102, 378, 10258, 10786, 2, 5777, 37, 29697, 6, 4008, 198, 220, 220, 220, 1303, 3601, 7, 12102, 378, 10258, 7, 21737, 4008, 198, 220, 220, 220, 1303, 3601, 7, 12102, 378, 10258, 7, 3419, 4008, 198, 220, 220, 220, 1303, 3601, 7, 12102, 378, 10258, 19510, 16, 11, 362, 22305, 198, 220, 220, 220, 1303, 3601, 7, 12102, 378, 10258, 19510, 16, 11, 362, 11, 1105, 2682, 22305, 198, 220, 220, 220, 1303, 3601, 7, 271, 62, 75, 21715, 7, 26282, 7, 271, 62, 600, 22305, 198, 220, 220, 220, 1303, 3601, 7, 271, 62, 75, 21715, 7, 271, 62, 600, 4008, 198, 220, 220, 220, 1303, 3601, 7, 1581, 7, 271, 62, 7501, 404, 11, 318, 62, 600, 5769, 6, 7501, 404, 6, 4008, 198, 220, 220, 220, 1303, 3601, 7, 6981, 7, 271, 62, 7501, 404, 11, 318, 62, 21037, 11, 318, 62, 21037, 5769, 6, 79, 2238, 47, 6, 4008, 198, 220, 220, 220, 1303, 3601, 7, 1581, 7, 271, 62, 7501, 404, 11, 318, 62, 600, 4008, 198, 220, 220, 220, 1303, 3601, 7, 271, 62, 75, 21715, 7, 1581, 7, 271, 62, 7501, 404, 11, 318, 62, 600, 22305, 198, 220, 220, 220, 1303, 3601, 7, 12102, 378, 7, 271, 62, 12102, 62, 8043, 11, 685, 13381, 11, 14280, 11, 17759, 60, 4008, 198, 220, 220, 220, 1303, 3601, 7, 271, 62, 12102, 62, 8043, 10786, 2, 20972, 830, 6, 4008, 198, 220, 220, 220, 1303, 3601, 7, 271, 62, 12102, 62, 8043, 26933, 13381, 11, 35264, 11, 17759, 60, 4008, 198, 220, 220, 220, 1303, 3601, 7, 13159, 62, 28920, 62, 8841, 10786, 292, 7568, 11537, 290, 1729, 62, 28920, 62, 8841, 10786, 292, 7568, 6, 4008, 198, 220, 220, 220, 1303, 26571, 7, 271, 62, 12102, 62, 8043, 11, 1105, 2682, 8, 628, 198 ]
2.47407
1,909
import functools from datetime import datetime from flask import Blueprint, jsonify, request from iotud.tools import fetch_all, fetch_one, update, insert, get_auth_props, either_response, delete from string import ascii_lowercase import random from oslash import Right, Left from toolz import accumulate, assoc, reduce bp = Blueprint('devices', __name__, url_prefix="/users") @bp.route('/create_device', methods=['POST']) @bp.route('/delete_device', methods=['POST']) @bp.route('/update_device', methods=['POST']) @bp.route('/get_devices', methods=['POST']) @bp.route('/get_device', methods=['POST'])
[ 11748, 1257, 310, 10141, 198, 6738, 4818, 8079, 1330, 4818, 8079, 198, 6738, 42903, 1330, 39932, 11, 33918, 1958, 11, 220, 2581, 198, 6738, 1312, 313, 463, 13, 31391, 1330, 21207, 62, 439, 11, 21207, 62, 505, 11, 4296, 11, 7550, 11, 651, 62, 18439, 62, 1676, 862, 11, 2035, 62, 26209, 11, 12233, 198, 6738, 4731, 1330, 355, 979, 72, 62, 21037, 7442, 198, 11748, 4738, 198, 6738, 267, 6649, 1077, 1330, 6498, 11, 9578, 198, 6738, 2891, 89, 1330, 29915, 11, 840, 420, 11, 4646, 628, 198, 46583, 796, 39932, 10786, 42034, 3256, 11593, 3672, 834, 11, 19016, 62, 40290, 35922, 18417, 4943, 628, 198, 31, 46583, 13, 38629, 10786, 14, 17953, 62, 25202, 3256, 5050, 28, 17816, 32782, 6, 12962, 628, 198, 31, 46583, 13, 38629, 10786, 14, 33678, 62, 25202, 3256, 5050, 28, 17816, 32782, 6, 12962, 628, 198, 31, 46583, 13, 38629, 10786, 14, 19119, 62, 25202, 3256, 5050, 28, 17816, 32782, 6, 12962, 628, 198, 31, 46583, 13, 38629, 10786, 14, 1136, 62, 42034, 3256, 5050, 28, 17816, 32782, 6, 12962, 628, 198, 31, 46583, 13, 38629, 10786, 14, 1136, 62, 25202, 3256, 5050, 28, 17816, 32782, 6, 12962, 628, 628, 628, 628 ]
3.120603
199
import json import core from core.movieinfo import Trailer from dominate.tags import * # pylama:ignore=W0401
[ 11748, 33918, 198, 198, 11748, 4755, 198, 6738, 4755, 13, 41364, 10951, 1330, 36923, 198, 6738, 17863, 13, 31499, 1330, 1635, 628, 198, 2, 279, 2645, 1689, 25, 46430, 28, 54, 3023, 486, 198 ]
3.294118
34
# Pig Bar Damage Skin success = sm.addDamageSkin(2436229) if success: sm.chat("The Pig Bar Damage Skin has been added to your account's damage skin collection.") # sm.consumeItem(2436229)
[ 2, 23097, 2409, 8995, 17847, 198, 13138, 796, 895, 13, 2860, 22022, 42455, 7, 1731, 2623, 23539, 8, 198, 361, 1943, 25, 198, 220, 220, 220, 895, 13, 17006, 7203, 464, 23097, 2409, 8995, 17847, 468, 587, 2087, 284, 534, 1848, 338, 2465, 4168, 4947, 19570, 198, 220, 220, 220, 1303, 895, 13, 5936, 2454, 7449, 7, 1731, 2623, 23539, 8, 198 ]
3.16129
62
from __future__ import absolute_import from .euclidean_nomination import EuclideanNomination
[ 6738, 11593, 37443, 834, 1330, 4112, 62, 11748, 198, 6738, 764, 12496, 565, 485, 272, 62, 26601, 1883, 1330, 48862, 485, 272, 45, 27744, 198 ]
3.72
25
import subprocess import os try: Settings=[] f=open('data/Settings.txt','r') _lines=f.readlines() Settings.append([i.replace('\n','') for i in _lines]) Settings=Settings[0] #Because list in list f.close() except: Settings=['Manual: Fill',5,0,'No','No'] try: subprocess.Popen(['GUI.exe'],stdout=subprocess.PIPE,creationflags=0x08000000) except: os.system('GUI.py')
[ 11748, 850, 14681, 198, 11748, 28686, 198, 198, 28311, 25, 198, 220, 220, 220, 16163, 28, 21737, 198, 220, 220, 220, 277, 28, 9654, 10786, 7890, 14, 26232, 13, 14116, 41707, 81, 11537, 198, 220, 220, 220, 4808, 6615, 28, 69, 13, 961, 6615, 3419, 198, 220, 220, 220, 16163, 13, 33295, 26933, 72, 13, 33491, 10786, 59, 77, 3256, 7061, 8, 329, 1312, 287, 4808, 6615, 12962, 198, 220, 220, 220, 16163, 28, 26232, 58, 15, 60, 1303, 8128, 1351, 287, 1351, 198, 220, 220, 220, 277, 13, 19836, 3419, 198, 16341, 25, 198, 220, 220, 220, 16163, 28, 17816, 5124, 723, 25, 27845, 3256, 20, 11, 15, 4032, 2949, 41707, 2949, 20520, 628, 198, 28311, 25, 198, 220, 220, 220, 850, 14681, 13, 47, 9654, 7, 17816, 40156, 13, 13499, 6, 4357, 19282, 448, 28, 7266, 14681, 13, 47, 4061, 36, 11, 38793, 33152, 28, 15, 87, 2919, 10535, 8, 198, 16341, 25, 198, 220, 220, 220, 28686, 13, 10057, 10786, 40156, 13, 9078, 11537, 198 ]
2.39881
168
from nltk import stem from nltk import tokenize from nltk import tag from nltk.tag import pos_tag from nltk.tokenize import word_tokenize text1 = 'His acting was amazing.' text2 = 'He was merely acting.' print(pos_tag(word_tokenize(text1))) print(pos_tag(word_tokenize(text2)))
[ 6738, 299, 2528, 74, 1330, 10717, 198, 6738, 299, 2528, 74, 1330, 11241, 1096, 198, 6738, 299, 2528, 74, 1330, 7621, 198, 6738, 299, 2528, 74, 13, 12985, 1330, 1426, 62, 12985, 198, 6738, 299, 2528, 74, 13, 30001, 1096, 1330, 1573, 62, 30001, 1096, 198, 198, 5239, 16, 796, 705, 6653, 7205, 373, 4998, 2637, 198, 5239, 17, 796, 705, 1544, 373, 6974, 7205, 2637, 628, 198, 4798, 7, 1930, 62, 12985, 7, 4775, 62, 30001, 1096, 7, 5239, 16, 22305, 198, 4798, 7, 1930, 62, 12985, 7, 4775, 62, 30001, 1096, 7, 5239, 17, 22305 ]
2.886598
97
"""Tests for miner module - search methods""" import os import pytest import vcr from pyminer import Miner m = Miner() @vcr.use_cassette('test/vcr_cassettes/search.yaml') def test_search(): "miner.search - basic test" res = m.search(filter = {'has_full_text': True}, limit = 5) assert 'Mined' == res.__class__.__name__ assert list == res.items.__class__ assert dict == res.result.__class__ assert 'method' == res.links.__class__.__name__ @vcr.use_cassette('test/vcr_cassettes/search_limit.yaml') def test_search_limit(): "miner.search - limit" res = m.search(filter = {'has_full_text': True}, limit = 1) assert 'Mined' == res.__class__.__name__ assert 1 == len(res.items) # def test_search_filter(): # "miner.search - diff taxonKey2" # res = miner.search() # assert 'dict' == res.__class__.__name__ # assert 6 == len(res) # assert 2683264 == res['results'][0]['taxonKey']
[ 37811, 51, 3558, 329, 16285, 8265, 532, 2989, 5050, 37811, 198, 11748, 28686, 198, 11748, 12972, 9288, 198, 11748, 410, 6098, 198, 6738, 12972, 1084, 263, 1330, 29295, 198, 76, 796, 29295, 3419, 198, 198, 31, 85, 6098, 13, 1904, 62, 66, 562, 5857, 10786, 9288, 14, 85, 6098, 62, 66, 562, 23014, 14, 12947, 13, 88, 43695, 11537, 198, 4299, 1332, 62, 12947, 33529, 198, 220, 220, 220, 366, 1084, 263, 13, 12947, 532, 4096, 1332, 1, 198, 220, 220, 220, 581, 796, 285, 13, 12947, 7, 24455, 796, 1391, 6, 10134, 62, 12853, 62, 5239, 10354, 6407, 5512, 4179, 796, 642, 8, 198, 220, 220, 220, 6818, 705, 44, 1389, 6, 6624, 581, 13, 834, 4871, 834, 13, 834, 3672, 834, 198, 220, 220, 220, 6818, 1351, 6624, 581, 13, 23814, 13, 834, 4871, 834, 198, 220, 220, 220, 6818, 8633, 6624, 581, 13, 20274, 13, 834, 4871, 834, 198, 220, 220, 220, 6818, 705, 24396, 6, 6624, 581, 13, 28751, 13, 834, 4871, 834, 13, 834, 3672, 834, 198, 198, 31, 85, 6098, 13, 1904, 62, 66, 562, 5857, 10786, 9288, 14, 85, 6098, 62, 66, 562, 23014, 14, 12947, 62, 32374, 13, 88, 43695, 11537, 198, 4299, 1332, 62, 12947, 62, 32374, 33529, 198, 220, 220, 220, 366, 1084, 263, 13, 12947, 532, 4179, 1, 198, 220, 220, 220, 581, 796, 285, 13, 12947, 7, 24455, 796, 1391, 6, 10134, 62, 12853, 62, 5239, 10354, 6407, 5512, 4179, 796, 352, 8, 198, 220, 220, 220, 6818, 705, 44, 1389, 6, 6624, 581, 13, 834, 4871, 834, 13, 834, 3672, 834, 198, 220, 220, 220, 6818, 352, 6624, 18896, 7, 411, 13, 23814, 8, 198, 198, 2, 825, 1332, 62, 12947, 62, 24455, 33529, 198, 2, 220, 220, 220, 220, 366, 1084, 263, 13, 12947, 532, 814, 1687, 261, 9218, 17, 1, 198, 2, 220, 220, 220, 220, 581, 796, 16285, 13, 12947, 3419, 198, 2, 220, 220, 220, 220, 6818, 705, 11600, 6, 6624, 581, 13, 834, 4871, 834, 13, 834, 3672, 834, 198, 2, 220, 220, 220, 220, 6818, 718, 6624, 18896, 7, 411, 8, 198, 2, 220, 220, 220, 220, 6818, 2608, 5999, 18897, 6624, 581, 17816, 43420, 6, 7131, 15, 7131, 6, 19290, 261, 9218, 20520, 198 ]
2.5
374
import pytest import importlib from utils.migration import search @pytest.fixture @pytest.fixture @pytest.fixture
[ 11748, 12972, 9288, 198, 11748, 1330, 8019, 198, 198, 6738, 3384, 4487, 13, 76, 4254, 1330, 2989, 198, 198, 31, 9078, 9288, 13, 69, 9602, 198, 198, 31, 9078, 9288, 13, 69, 9602, 198, 198, 31, 9078, 9288, 13, 69, 9602, 198 ]
2.809524
42
from ..remote import RemoteModel from infoblox_netmri.utils.utils import check_api_availability class DeviceCertificateRemote(RemoteModel): """ This table list out the device certificates. | ``id:`` The internal NetMRI identifier for this device certificate. | ``attribute type:`` number | ``created_at:`` The date and time the record was initially created in NetMRI. | ``attribute type:`` datetime | ``updated_at:`` The date and time the record was last modified in NetMRI. | ``attribute type:`` datetime | ``certificate:`` The certificate BLOB data. | ``attribute type:`` string | ``certificate_parameter:`` The certificate parameters. | ``attribute type:`` string | ``certificate_type:`` The type of certificate. | ``attribute type:`` string | ``UnitID:`` The internal NetMRI identifier for collector. | ``attribute type:`` number | ``ip_address_dotted:`` The IP address as string. | ``attribute type:`` string | ``ip_address_numeric:`` The IP address as number. | ``attribute type:`` number | ``name:`` The certificate name. | ``attribute type:`` string | ``username:`` The username for certificate. | ``attribute type:`` string | ``password:`` The password for certificate. | ``attribute type:`` string | ``passphrase:`` The passphrase for certificate. | ``attribute type:`` string | ``port:`` Port number to use for connection with this certificate. | ``attribute type:`` number """ properties = ("id", "created_at", "updated_at", "certificate", "certificate_parameter", "certificate_type", "UnitID", "ip_address_dotted", "ip_address_numeric", "name", "username", "password", "passphrase", "port", )
[ 6738, 11485, 47960, 1330, 21520, 17633, 198, 6738, 1167, 45292, 1140, 62, 3262, 76, 380, 13, 26791, 13, 26791, 1330, 2198, 62, 15042, 62, 47274, 628, 198, 4871, 16232, 37608, 22460, 36510, 7, 36510, 17633, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 770, 3084, 1351, 503, 262, 3335, 20835, 13, 628, 220, 220, 220, 220, 198, 220, 220, 220, 930, 220, 7559, 312, 25, 15506, 383, 5387, 3433, 40952, 27421, 329, 428, 3335, 10703, 13, 198, 220, 220, 220, 930, 220, 7559, 42348, 2099, 25, 15506, 1271, 198, 220, 220, 220, 220, 198, 220, 220, 220, 930, 220, 7559, 25598, 62, 265, 25, 15506, 383, 3128, 290, 640, 262, 1700, 373, 7317, 2727, 287, 3433, 40952, 13, 198, 220, 220, 220, 930, 220, 7559, 42348, 2099, 25, 15506, 4818, 8079, 198, 220, 220, 220, 220, 198, 220, 220, 220, 930, 220, 7559, 43162, 62, 265, 25, 15506, 383, 3128, 290, 640, 262, 1700, 373, 938, 9518, 287, 3433, 40952, 13, 198, 220, 220, 220, 930, 220, 7559, 42348, 2099, 25, 15506, 4818, 8079, 198, 220, 220, 220, 220, 198, 220, 220, 220, 930, 220, 7559, 22583, 22460, 25, 15506, 383, 10703, 9878, 9864, 1366, 13, 198, 220, 220, 220, 930, 220, 7559, 42348, 2099, 25, 15506, 4731, 198, 220, 220, 220, 220, 198, 220, 220, 220, 930, 220, 7559, 22583, 22460, 62, 17143, 2357, 25, 15506, 383, 10703, 10007, 13, 198, 220, 220, 220, 930, 220, 7559, 42348, 2099, 25, 15506, 4731, 198, 220, 220, 220, 220, 198, 220, 220, 220, 930, 220, 7559, 22583, 22460, 62, 4906, 25, 15506, 383, 2099, 286, 10703, 13, 198, 220, 220, 220, 930, 220, 7559, 42348, 2099, 25, 15506, 4731, 198, 220, 220, 220, 220, 198, 220, 220, 220, 930, 220, 7559, 26453, 2389, 25, 15506, 383, 5387, 3433, 40952, 27421, 329, 22967, 13, 198, 220, 220, 220, 930, 220, 7559, 42348, 2099, 25, 15506, 1271, 198, 220, 220, 220, 220, 198, 220, 220, 220, 930, 220, 7559, 541, 62, 21975, 62, 67, 8426, 25, 15506, 383, 6101, 2209, 355, 4731, 13, 198, 220, 220, 220, 930, 220, 7559, 42348, 2099, 25, 15506, 4731, 198, 220, 220, 220, 220, 198, 220, 220, 220, 930, 220, 7559, 541, 62, 21975, 62, 77, 39223, 25, 15506, 383, 6101, 2209, 355, 1271, 13, 198, 220, 220, 220, 930, 220, 7559, 42348, 2099, 25, 15506, 1271, 198, 220, 220, 220, 220, 198, 220, 220, 220, 930, 220, 7559, 3672, 25, 15506, 383, 10703, 1438, 13, 198, 220, 220, 220, 930, 220, 7559, 42348, 2099, 25, 15506, 4731, 198, 220, 220, 220, 220, 198, 220, 220, 220, 930, 220, 7559, 29460, 25, 15506, 383, 20579, 329, 10703, 13, 198, 220, 220, 220, 930, 220, 7559, 42348, 2099, 25, 15506, 4731, 198, 220, 220, 220, 220, 198, 220, 220, 220, 930, 220, 7559, 28712, 25, 15506, 383, 9206, 329, 10703, 13, 198, 220, 220, 220, 930, 220, 7559, 42348, 2099, 25, 15506, 4731, 198, 220, 220, 220, 220, 198, 220, 220, 220, 930, 220, 7559, 6603, 34675, 25, 15506, 383, 1208, 34675, 329, 10703, 13, 198, 220, 220, 220, 930, 220, 7559, 42348, 2099, 25, 15506, 4731, 198, 220, 220, 220, 220, 198, 220, 220, 220, 930, 220, 7559, 634, 25, 15506, 4347, 1271, 284, 779, 329, 4637, 351, 428, 10703, 13, 198, 220, 220, 220, 930, 220, 7559, 42348, 2099, 25, 15506, 1271, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 6608, 796, 5855, 312, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 25598, 62, 265, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 43162, 62, 265, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 22583, 22460, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 22583, 22460, 62, 17143, 2357, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 22583, 22460, 62, 4906, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 26453, 2389, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 541, 62, 21975, 62, 67, 8426, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 541, 62, 21975, 62, 77, 39223, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 3672, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 29460, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28712, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 6603, 34675, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 634, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220 ]
2.239669
968
from random import random, choice if __name__ == "__main__": nn = NeuralNetwork(inputs=2, hidden_neurons=4) training = [([0, 0], 0), ([0, 1], 1), ([1, 0], 1), ([1, 1], 0)] for epoch in range(100000): input, target = choice(training) nn.learn(input, target) for input, target in training: print('IN: {}, EXPECTED: {}, RESULT: {:.2f}' .format(input, target, nn.predict(input)))
[ 6738, 4738, 1330, 4738, 11, 3572, 628, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 628, 220, 220, 220, 299, 77, 796, 47986, 26245, 7, 15414, 82, 28, 17, 11, 7104, 62, 710, 333, 684, 28, 19, 8, 198, 220, 220, 220, 3047, 796, 685, 26933, 15, 11, 657, 4357, 657, 828, 29565, 15, 11, 352, 4357, 352, 828, 29565, 16, 11, 657, 4357, 352, 828, 29565, 16, 11, 352, 4357, 657, 15437, 628, 220, 220, 220, 329, 36835, 287, 2837, 7, 3064, 830, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 5128, 11, 2496, 796, 3572, 7, 34409, 8, 198, 220, 220, 220, 220, 220, 220, 220, 299, 77, 13, 35720, 7, 15414, 11, 2496, 8, 628, 220, 220, 220, 329, 5128, 11, 2496, 287, 3047, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 1268, 25, 1391, 5512, 25703, 9782, 1961, 25, 1391, 5512, 15731, 16724, 25, 46110, 13, 17, 69, 92, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 764, 18982, 7, 15414, 11, 2496, 11, 299, 77, 13, 79, 17407, 7, 15414, 22305, 198 ]
2.276042
192
import re from gurobipy import * from .stl_parsing import parse_logic from .stl_constraints import create_constraints from .utilities.simple_utilities import remove_gurobi_log, parentheses_match def solve(logic): """Finds solutions for all binary and continuous variables in logic string""" return synthesize_stl(create_model_stl(parse_stl(logic)),remove_log=True).getVars() def parse_stl(logic, remove_log=False): """Parses string of STL logic into an STL tree""" if not parentheses_match(logic): raise ValueError("Opening and closing brackets do not match, check '(' and ')'") stl_tree = parse_logic(logic, None, None) return stl_tree def synthesize_stl(stl_node, ret_type=0, remove_log=False, console_log=True, maximize_vars=None, minimize_vars=None): """creates constraints and synthesizes solutions for variables in STL tree, returns optimized model""" m = create_constraints(stl_node, maximize_vars=maximize_vars, minimize_vars=minimize_vars, console_log=console_log) m.optimize() if remove_log: remove_gurobi_log() if ret_type==1: return m.getVars() else: return m def create_model_stl(stl_node, remove_log=False, console_log=True, maximize_vars=None, minimize_vars=None): """Creates constrained MILP gurobi model for STL tree""" return create_constraints(stl_node, maximize_vars=maximize_vars, minimize_vars=minimize_vars, console_log=console_log) def synthesize_stl(m, ret_type=0): """Synthesizes solutions for variables in model m by optimizing model""" m.optimize() if ret_type==1: return m.getVars() else: return m
[ 11748, 302, 198, 6738, 915, 22609, 541, 88, 1330, 1635, 198, 6738, 764, 301, 75, 62, 79, 945, 278, 1330, 21136, 62, 6404, 291, 198, 6738, 764, 301, 75, 62, 1102, 2536, 6003, 1330, 2251, 62, 1102, 2536, 6003, 198, 6738, 764, 315, 2410, 13, 36439, 62, 315, 2410, 1330, 4781, 62, 70, 1434, 8482, 62, 6404, 11, 46672, 62, 15699, 198, 198, 4299, 8494, 7, 6404, 291, 2599, 198, 197, 37811, 16742, 82, 8136, 329, 477, 13934, 290, 12948, 9633, 287, 9156, 4731, 37811, 198, 197, 7783, 24983, 1096, 62, 301, 75, 7, 17953, 62, 19849, 62, 301, 75, 7, 29572, 62, 301, 75, 7, 6404, 291, 36911, 28956, 62, 6404, 28, 17821, 737, 1136, 53, 945, 3419, 198, 198, 4299, 21136, 62, 301, 75, 7, 6404, 291, 11, 4781, 62, 6404, 28, 25101, 2599, 198, 197, 37811, 47, 945, 274, 4731, 286, 37269, 9156, 656, 281, 37269, 5509, 37811, 198, 197, 361, 407, 46672, 62, 15699, 7, 6404, 291, 2599, 198, 197, 197, 40225, 11052, 12331, 7203, 43093, 290, 9605, 28103, 466, 407, 2872, 11, 2198, 705, 10786, 290, 705, 33047, 4943, 198, 197, 301, 75, 62, 21048, 796, 21136, 62, 6404, 291, 7, 6404, 291, 11, 6045, 11, 6045, 8, 198, 197, 7783, 336, 75, 62, 21048, 198, 198, 4299, 24983, 1096, 62, 301, 75, 7, 301, 75, 62, 17440, 11, 1005, 62, 4906, 28, 15, 11, 4781, 62, 6404, 28, 25101, 11, 8624, 62, 6404, 28, 17821, 11, 20487, 62, 85, 945, 28, 14202, 11, 17775, 62, 85, 945, 28, 14202, 2599, 198, 197, 37811, 20123, 274, 17778, 290, 24983, 4340, 8136, 329, 9633, 287, 37269, 5509, 11, 5860, 23392, 2746, 37811, 198, 197, 76, 796, 2251, 62, 1102, 2536, 6003, 7, 301, 75, 62, 17440, 11, 20487, 62, 85, 945, 28, 9806, 48439, 62, 85, 945, 11, 17775, 62, 85, 945, 28, 1084, 48439, 62, 85, 945, 11, 8624, 62, 6404, 28, 41947, 62, 6404, 8, 198, 197, 76, 13, 40085, 1096, 3419, 198, 197, 361, 4781, 62, 6404, 25, 198, 197, 197, 28956, 62, 70, 1434, 8482, 62, 6404, 3419, 198, 197, 361, 1005, 62, 4906, 855, 16, 25, 198, 197, 197, 7783, 285, 13, 1136, 53, 945, 3419, 198, 197, 17772, 25, 198, 197, 197, 7783, 285, 198, 198, 4299, 2251, 62, 19849, 62, 301, 75, 7, 301, 75, 62, 17440, 11, 4781, 62, 6404, 28, 25101, 11, 8624, 62, 6404, 28, 17821, 11, 20487, 62, 85, 945, 28, 14202, 11, 17775, 62, 85, 945, 28, 14202, 2599, 198, 197, 37811, 16719, 274, 31070, 31515, 47, 915, 305, 8482, 2746, 329, 37269, 5509, 37811, 198, 197, 7783, 2251, 62, 1102, 2536, 6003, 7, 301, 75, 62, 17440, 11, 20487, 62, 85, 945, 28, 9806, 48439, 62, 85, 945, 11, 17775, 62, 85, 945, 28, 1084, 48439, 62, 85, 945, 11, 8624, 62, 6404, 28, 41947, 62, 6404, 8, 198, 198, 4299, 24983, 1096, 62, 301, 75, 7, 76, 11, 1005, 62, 4906, 28, 15, 2599, 198, 197, 37811, 13940, 429, 956, 4340, 8136, 329, 9633, 287, 2746, 285, 416, 45780, 2746, 37811, 198, 197, 76, 13, 40085, 1096, 3419, 198, 197, 361, 1005, 62, 4906, 855, 16, 25, 198, 197, 197, 7783, 285, 13, 1136, 53, 945, 3419, 198, 197, 17772, 25, 198, 197, 197, 7783, 285, 198 ]
2.866055
545
from ncssl_api_client.__main__ import main_cli_wrapper from unittest import TestCase import mock
[ 6738, 299, 25471, 75, 62, 15042, 62, 16366, 13, 834, 12417, 834, 1330, 1388, 62, 44506, 62, 48553, 198, 6738, 555, 715, 395, 1330, 6208, 20448, 198, 11748, 15290, 628 ]
3.266667
30
# -*- coding: utf-8 -*- __version__ = '0.1.dev0' from .multigp import MultiGP from .pca import PCA from .util import * from . import priors from george import kernels
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 834, 9641, 834, 796, 705, 15, 13, 16, 13, 7959, 15, 6, 198, 198, 6738, 764, 16680, 328, 79, 1330, 15237, 16960, 198, 6738, 764, 79, 6888, 1330, 4217, 32, 198, 6738, 764, 22602, 1330, 1635, 198, 6738, 764, 1330, 1293, 669, 198, 6738, 4903, 3643, 1330, 50207, 198 ]
2.640625
64
from core.sessions.buffers.exporter.exporters import BaseExporter import codecs
[ 6738, 4755, 13, 82, 6202, 13, 36873, 364, 13, 1069, 26634, 13, 1069, 1819, 1010, 1330, 7308, 3109, 26634, 201, 198, 11748, 40481, 82, 201, 198 ]
3.153846
26
''' Write a program to implement various sorting techniques: [Compare with Python’s Built-In Sorting Functions also] • Insertion sort • Selection Sort • Bubble Sort • Merge Sort • Quick Sort ''' # SELECTION SORT n = int(input("Enter the number of list items: ")) arr = [] for i in range(0, n): ele = int(input("Enter list item: ")) arr.append(ele) print("Initial array is:", arr) print("Insertion-sorted array is:", selection(arr))
[ 7061, 6, 201, 198, 16594, 257, 1430, 284, 3494, 2972, 29407, 7605, 25, 220, 201, 198, 58, 41488, 351, 11361, 447, 247, 82, 28477, 12, 818, 311, 24707, 40480, 635, 60, 201, 198, 3581, 35835, 295, 3297, 201, 198, 3581, 29538, 33947, 201, 198, 3581, 33691, 33947, 201, 198, 3581, 39407, 33947, 201, 198, 3581, 12029, 33947, 201, 198, 7061, 6, 201, 198, 2, 33493, 2849, 311, 9863, 201, 198, 77, 796, 493, 7, 15414, 7203, 17469, 262, 1271, 286, 1351, 3709, 25, 366, 4008, 201, 198, 3258, 796, 17635, 201, 198, 1640, 1312, 287, 2837, 7, 15, 11, 299, 2599, 220, 201, 198, 220, 220, 220, 9766, 796, 493, 7, 15414, 7203, 17469, 1351, 2378, 25, 366, 4008, 220, 201, 198, 220, 220, 220, 5240, 13, 33295, 7, 11129, 8, 201, 198, 201, 198, 4798, 7203, 24243, 7177, 318, 25, 1600, 5240, 8, 201, 198, 201, 198, 4798, 7203, 44402, 295, 12, 82, 9741, 7177, 318, 25, 1600, 6356, 7, 3258, 4008 ]
2.834356
163
import pandas as pd import torch import copy from typing import Dict, List, Tuple from torch import LongTensor from torch.tensor import Tensor from torch.utils.data import Dataset from konlpy.tag import Kkma from nltk.tokenize import word_tokenize from tqdm.auto import tqdm
[ 11748, 19798, 292, 355, 279, 67, 198, 11748, 28034, 198, 11748, 4866, 198, 6738, 19720, 1330, 360, 713, 11, 7343, 11, 309, 29291, 198, 6738, 28034, 1330, 5882, 51, 22854, 198, 6738, 28034, 13, 83, 22854, 1330, 309, 22854, 198, 6738, 28034, 13, 26791, 13, 7890, 1330, 16092, 292, 316, 198, 6738, 479, 261, 75, 9078, 13, 12985, 1330, 509, 74, 2611, 198, 6738, 299, 2528, 74, 13, 30001, 1096, 1330, 1573, 62, 30001, 1096, 198, 6738, 256, 80, 36020, 13, 23736, 1330, 256, 80, 36020, 628, 628 ]
3.159091
88
with open("delay_vs_fanout.csv", "w") as f: print("fanout,delay", file=f) for net_name, net in ctx.nets: if net.driver.cell is None: continue if net.driver.cell.type == "DCCA": continue # ignore global clocks for user in net.users: print(f"{len(net.users)},{ctx.getNetinfoRouteDelay(net, user)}", file=f)
[ 4480, 1280, 7203, 40850, 62, 14259, 62, 24408, 448, 13, 40664, 1600, 366, 86, 4943, 355, 277, 25, 198, 220, 220, 220, 3601, 7203, 24408, 448, 11, 40850, 1600, 2393, 28, 69, 8, 198, 220, 220, 220, 329, 2010, 62, 3672, 11, 2010, 287, 269, 17602, 13, 45938, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2010, 13, 26230, 13, 3846, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2010, 13, 26230, 13, 3846, 13, 4906, 6624, 366, 35, 4093, 32, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 1303, 8856, 3298, 29906, 198, 220, 220, 220, 220, 220, 220, 220, 329, 2836, 287, 2010, 13, 18417, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 1, 90, 11925, 7, 3262, 13, 18417, 8, 5512, 90, 49464, 13, 1136, 7934, 10951, 43401, 13856, 323, 7, 3262, 11, 2836, 38165, 1600, 2393, 28, 69, 8, 628 ]
2.112994
177
# Copyright (C) 2011 by Michele Silva ([email protected]) # This code is part of the Biopython distribution and governed by its # license. Please see the LICENSE file that should have been included # as part of this package. import os import math import numpy from mocapy.framework import eMISMASK from Bio.PDB import PDBParser from Bio.PDB.DSSP import DSSP from Bio.PDB.Residue import Residue from Bio.PDB.Polypeptide import PPBuilder, three_to_index from Bio.PDB.Vector import calc_dihedral from Bio.PDB.TorusDBN.TorusDBNExceptions import TorusDBNException, \ TorusDBNChainBreakException, TorusDBNBuildPolypeptideException from Bio.PDB.TorusDBN._structure import dssp_to_index def create_sequence_from_file(chain_pdb, missing_residues, quiet_parser=False): """ Read a PDB file and creates a sequence and mismask to represent its content. @param chain_pdb: The PDB file to be read. @type chain_pd: str @param missing_residues: A dictionary with the missing residues. @type missing_residues: dict @param quiet_parser: Disable PDBParser warnings. @type quiet_parser: bool """ sequences = [] mismasks = [] output_data = [] output_mismask = [] parser = PDBParser(QUIET=quiet_parser) structure = parser.get_structure("X", chain_pdb) dssp = DSSP(model=structure[0], pdb_file=chain_pdb) # Loop over residues in peptides ppb = PPBuilder() pp_list = ppb.build_peptides(structure[0]) chain_list = structure[0].get_list() if len(pp_list) == 0: raise TorusDBNBuildPolypeptideException( "Could not create a list of Polypeptide objects from the file %s." % (chain_pdb) ) else: pp_chains, chain_missing_residues = _get_pp_with_chain_break( chain_pdb, pp_list, chain_list, missing_residues) for pp_index, pp in enumerate(pp_chains): phi_psi_list = pp.get_phi_psi_list() missing_residues = chain_missing_residues[pp_index] for i in xrange(1, len(phi_psi_list)-1): seq = [0] * 6 mism = [eMISMASK.MOCAPY_HIDDEN] + 4 * [eMISMASK.MOCAPY_OBSERVED] # Amino acid res = pp[i] res_name = res.get_resname() res_index = res.get_id()[1] aa_index = three_to_index(res_name) if res_index in missing_residues: seq[3] = aa_index mism[1] = eMISMASK.MOCAPY_MISSING # angles unknown mism[3] = eMISMASK.MOCAPY_MISSING # ss unknown mism[4] = eMISMASK.MOCAPY_MISSING # cis unknown else: seq[3] = aa_index # Secondary Structure try: ss = res.xtra["SS_DSSP"] ss_index = dssp_to_index(ss) seq[4] = ss_index except: mism[3] = eMISMASK.MOCAPY_MISSING # ss unknown # Angles if None in phi_psi_list[i]: # Previous or next residue missing, therefore angles are # Unknown mism[1] = eMISMASK.MOCAPY_MISSING else: seq[1:3] = phi_psi_list[i] # Cis/Trans information if (res_index - 1) in missing_residues: mism[4] = eMISMASK.MOCAPY_MISSING # cis unknown else: try: seq[5] = _get_peptide_bond_conformation(res, pp[i-1]) except TorusDBNException: mism[4] = eMISMASK.MOCAPY_MISSING # cis unknown output_data.append(seq) output_mismask.append(mism) if output_data and output_mismask: sequences.append(numpy.array(output_data)) mismasks.append(numpy.array(output_mismask, dtype = numpy.uint)) else: raise TorusDBNException( "Could not create training data from the file %s." % (chain_pdb) ) return sequences, mismasks def read_missing_residues(filename): """ Read missing residues from a file. The file format is the following: # file chain position residue 'mychain.pdb' A 23 ALA 'mychain.pdb' C 27 LEU 'other.pdb A 12 GLY @param filename: The file describing the missing residues. @type filename: str @rtype: dict @return: Dictionary of residues whose key is the (file, chain, position). """ try: missing_residues = {} if not os.path.isfile(filename): raise TorusDBNException( "Could not open file %s for reading missing residues." % filename) residues_file = open(filename) for i, line in enumerate(residues_file.readlines()): line = line.strip() if not line.startswith("#") and len(line) > 1: try: chain_pdb, chain, res_index, res_name = line.split() missing_residues[ (chain_pdb, chain, int(res_index)) ] = Residue(id=('', int(res_index), ''), resname=res_name, segid='') except ValueError: TorusDBNException( "Could not read missing residues file %s at line %d." % (filename, i + 1) ) except IOError: TorusDBNException("Could not open file %s for reading missing residues." % filename) return missing_residues def _get_missing_residue(missing_residues, chain_pdb, chain, residue_index): """ Get the missing residues corresponding to a file, chain and position. @param missing_residues: Dictionary of residues indexed by (file, chain_id, position). @type missing_residues: dict @param chain_pdb: The filename where the chain is described. @type chain_pdb: str @param chain: The chain identifier. @type chain: str @param residue_index: The position of the residue in the chain @type residue_index: int @rtype: str @return: The missing residue three letter identifier. """ chain_pdb = os.path.split(chain_pdb)[-1] try: return missing_residues[(chain_pdb, chain, residue_index)] except: raise TorusDBNChainBreakException( "Chain break in file %s, chain %s, residue %d, could not be handled." % (chain_pdb, chain, residue_index) ) def _get_pp_with_chain_break(chain_pdb, pp_list, chain_list, missing_residues_dict): """ Get the polypeptides chains for a given chain file, adding missing residues. @param chain_pdb: The file containing the chains. @type chain_pdb: str @param pp_list: List of polypeptides. @type pp_list: list(Polypeptide) @param pp_list: List of chains. @type pp_list: list(Chain) @param missing_residues_dict: Dictionary of residues indexed by (file, chain_id, position). @type missing_residues_dict: dict @rtype: tuple(list(Polypeptide), list(int)) @return: Polypeptides and list with missing residues position. """ pp_list_new = [] missing_residues = [] pp_list_new.append(pp_list[0]) missing_residues.append([]) chain_index = 0 for i, pp in enumerate(pp_list[1:]): last_residue = pp_list_new[-1][-1].get_id()[1] + 1 first_residue = pp[0].get_id()[1] if last_residue < first_residue: missing_residues_index = range(last_residue, first_residue) residues = [] for res_index in missing_residues_index: try: res = _get_missing_residue( missing_residues_dict, chain_pdb, chain_list[chain_index].get_id(), res_index, ) residues.append(res) except: residues = [] break if len(residues) > 0: for res in residues: pp_list_new[-1].append(res) missing_residues[-1] += missing_residues_index pp_list_new[-1] += pp else: pp_list_new.append(pp) missing_residues.append([]) chain_index += 1 else: pp_list_new.append(pp) missing_residues.append([]) chain_index += 1 if len(pp_list_new) != len(chain_list): raise TorusDBNChainBreakException( "Chain break in file %s could not be handled." % (chain_pdb)) return pp_list_new, missing_residues def _get_peptide_bond_conformation(res, prev_res): """ Get the conformation of the peptide bond. @param res: A residue @type res: Residue @param res: The previous residue @type res: Residue @rtype: int (cis: 0, trans: 1) @return: Conformation of the peptide bond. """ CIS = 0 TRANS = 1 try: CA_prev = prev_res['CA'].get_vector() C_prev = prev_res['C'].get_vector() N = res['N'].get_vector() CA = res['CA'].get_vector() dihedral = calc_dihedral(CA_prev, C_prev, N, CA) except: raise TorusDBNException("Could not obtain the conformation of the peptide bond.") if abs(dihedral) < math.pi/4: return CIS else: return TRANS
[ 2, 15069, 357, 34, 8, 2813, 416, 38872, 23720, 357, 9383, 258, 293, 13, 18217, 6862, 31, 14816, 13, 785, 8, 198, 2, 770, 2438, 318, 636, 286, 262, 8436, 404, 7535, 6082, 290, 21825, 416, 663, 198, 2, 5964, 13, 4222, 766, 262, 38559, 24290, 2393, 326, 815, 423, 587, 3017, 198, 2, 355, 636, 286, 428, 5301, 13, 198, 198, 11748, 28686, 198, 11748, 10688, 198, 11748, 299, 32152, 198, 198, 6738, 285, 420, 12826, 13, 30604, 1330, 304, 44, 31125, 1921, 42, 198, 198, 6738, 16024, 13, 5760, 33, 1330, 350, 11012, 46677, 198, 6738, 16024, 13, 5760, 33, 13, 5258, 4303, 1330, 17400, 4303, 198, 6738, 16024, 13, 5760, 33, 13, 4965, 312, 518, 1330, 1874, 312, 518, 198, 6738, 16024, 13, 5760, 33, 13, 34220, 431, 457, 485, 1330, 21082, 32875, 11, 1115, 62, 1462, 62, 9630, 198, 6738, 16024, 13, 5760, 33, 13, 38469, 1330, 42302, 62, 10989, 21962, 198, 198, 6738, 16024, 13, 5760, 33, 13, 51, 15125, 11012, 45, 13, 51, 15125, 11012, 45, 3109, 11755, 1330, 4022, 385, 11012, 45, 16922, 11, 3467, 198, 220, 220, 220, 4022, 385, 11012, 45, 35491, 31737, 16922, 11, 4022, 385, 11012, 45, 15580, 34220, 431, 457, 485, 16922, 198, 6738, 16024, 13, 5760, 33, 13, 51, 15125, 11012, 45, 13557, 301, 5620, 1330, 288, 824, 79, 62, 1462, 62, 9630, 628, 198, 198, 4299, 2251, 62, 43167, 62, 6738, 62, 7753, 7, 7983, 62, 79, 9945, 11, 4814, 62, 411, 312, 947, 11, 5897, 62, 48610, 28, 25101, 2599, 198, 220, 220, 220, 37227, 4149, 257, 350, 11012, 2393, 290, 8075, 257, 8379, 290, 32691, 2093, 284, 2380, 220, 198, 220, 220, 220, 663, 2695, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 17143, 6333, 62, 79, 9945, 25, 383, 350, 11012, 2393, 284, 307, 1100, 13, 198, 220, 220, 220, 2488, 4906, 6333, 62, 30094, 25, 965, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 17143, 4814, 62, 411, 312, 947, 25, 317, 22155, 351, 262, 4814, 47185, 13, 198, 220, 220, 220, 2488, 4906, 4814, 62, 411, 312, 947, 25, 8633, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 17143, 5897, 62, 48610, 25, 31529, 350, 11012, 46677, 14601, 13, 198, 220, 220, 220, 2488, 4906, 5897, 62, 48610, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 16311, 796, 17635, 198, 220, 220, 220, 32691, 6791, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 5072, 62, 7890, 796, 17635, 198, 220, 220, 220, 5072, 62, 76, 1042, 2093, 796, 17635, 198, 220, 220, 220, 220, 198, 220, 220, 220, 30751, 796, 350, 11012, 46677, 7, 43702, 2767, 28, 39624, 62, 48610, 8, 198, 220, 220, 220, 4645, 796, 30751, 13, 1136, 62, 301, 5620, 7203, 55, 1600, 6333, 62, 79, 9945, 8, 628, 220, 220, 220, 288, 824, 79, 796, 17400, 4303, 7, 19849, 28, 301, 5620, 58, 15, 4357, 279, 9945, 62, 7753, 28, 7983, 62, 79, 9945, 8, 220, 220, 220, 220, 220, 220, 220, 220, 628, 220, 220, 220, 1303, 26304, 625, 47185, 287, 34337, 1460, 198, 220, 220, 220, 9788, 65, 796, 21082, 32875, 3419, 198, 220, 220, 220, 9788, 62, 4868, 796, 9788, 65, 13, 11249, 62, 431, 457, 1460, 7, 301, 5620, 58, 15, 12962, 198, 220, 220, 220, 6333, 62, 4868, 796, 4645, 58, 15, 4083, 1136, 62, 4868, 3419, 198, 220, 220, 220, 220, 198, 220, 220, 220, 611, 18896, 7, 381, 62, 4868, 8, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 4022, 385, 11012, 45, 15580, 34220, 431, 457, 485, 16922, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 23722, 407, 2251, 257, 1351, 286, 12280, 431, 457, 485, 5563, 422, 262, 2393, 4064, 82, 526, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4064, 357, 7983, 62, 79, 9945, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 9788, 62, 38861, 11, 6333, 62, 45688, 62, 411, 312, 947, 796, 4808, 1136, 62, 381, 62, 4480, 62, 7983, 62, 9032, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6333, 62, 79, 9945, 11, 9788, 62, 4868, 11, 6333, 62, 4868, 11, 4814, 62, 411, 312, 947, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 329, 9788, 62, 9630, 11, 9788, 287, 27056, 378, 7, 381, 62, 38861, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 872, 72, 62, 862, 72, 62, 4868, 796, 9788, 13, 1136, 62, 34846, 62, 862, 72, 62, 4868, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 4814, 62, 411, 312, 947, 796, 6333, 62, 45688, 62, 411, 312, 947, 58, 381, 62, 9630, 60, 198, 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, 329, 1312, 287, 2124, 9521, 7, 16, 11, 18896, 7, 34846, 62, 862, 72, 62, 4868, 13219, 16, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 33756, 796, 685, 15, 60, 1635, 718, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32691, 796, 685, 68, 44, 31125, 1921, 42, 13, 44, 4503, 2969, 56, 62, 39, 2389, 41819, 60, 1343, 604, 1635, 685, 68, 44, 31125, 1921, 42, 13, 44, 4503, 2969, 56, 62, 46, 4462, 1137, 53, 1961, 60, 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, 39869, 78, 7408, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 581, 796, 9788, 58, 72, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 581, 62, 3672, 796, 581, 13, 1136, 62, 411, 3672, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 581, 62, 9630, 796, 581, 13, 1136, 62, 312, 3419, 58, 16, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 64, 62, 9630, 796, 1115, 62, 1462, 62, 9630, 7, 411, 62, 3672, 8, 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, 611, 581, 62, 9630, 287, 4814, 62, 411, 312, 947, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 33756, 58, 18, 60, 796, 257, 64, 62, 9630, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32691, 58, 16, 60, 796, 304, 44, 31125, 1921, 42, 13, 44, 4503, 2969, 56, 62, 44, 16744, 2751, 1303, 18333, 6439, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32691, 58, 18, 60, 796, 304, 44, 31125, 1921, 42, 13, 44, 4503, 2969, 56, 62, 44, 16744, 2751, 1303, 37786, 6439, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32691, 58, 19, 60, 796, 304, 44, 31125, 1921, 42, 13, 44, 4503, 2969, 56, 62, 44, 16744, 2751, 1303, 33325, 6439, 220, 220, 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, 33756, 58, 18, 60, 796, 257, 64, 62, 9630, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 29521, 32522, 198, 220, 220, 220, 220, 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, 220, 220, 220, 220, 37786, 796, 581, 13, 742, 430, 14692, 5432, 62, 5258, 4303, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37786, 62, 9630, 796, 288, 824, 79, 62, 1462, 62, 9630, 7, 824, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 33756, 58, 19, 60, 796, 37786, 62, 9630, 220, 220, 220, 220, 198, 220, 220, 220, 220, 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, 220, 220, 220, 220, 32691, 58, 18, 60, 796, 304, 44, 31125, 1921, 42, 13, 44, 4503, 2969, 56, 62, 44, 16744, 2751, 1303, 37786, 6439, 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, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2895, 829, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 6045, 287, 872, 72, 62, 862, 72, 62, 4868, 58, 72, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 21801, 393, 1306, 35186, 4814, 11, 4361, 18333, 389, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 16185, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32691, 58, 16, 60, 796, 304, 44, 31125, 1921, 42, 13, 44, 4503, 2969, 56, 62, 44, 16744, 2751, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 33756, 58, 16, 25, 18, 60, 796, 872, 72, 62, 862, 72, 62, 4868, 58, 72, 60, 198, 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, 1303, 327, 271, 14, 8291, 1321, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 411, 62, 9630, 532, 352, 8, 287, 4814, 62, 411, 312, 947, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32691, 58, 19, 60, 796, 304, 44, 31125, 1921, 42, 13, 44, 4503, 2969, 56, 62, 44, 16744, 2751, 1303, 33325, 6439, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 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, 33756, 58, 20, 60, 796, 4808, 1136, 62, 431, 457, 485, 62, 65, 623, 62, 1102, 1161, 7, 411, 11, 9788, 58, 72, 12, 16, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 4022, 385, 11012, 45, 16922, 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, 32691, 58, 19, 60, 796, 304, 44, 31125, 1921, 42, 13, 44, 4503, 2969, 56, 62, 44, 16744, 2751, 1303, 33325, 6439, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5072, 62, 7890, 13, 33295, 7, 41068, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5072, 62, 76, 1042, 2093, 13, 33295, 7, 76, 1042, 8, 628, 220, 220, 220, 611, 5072, 62, 7890, 290, 5072, 62, 76, 1042, 2093, 25, 198, 220, 220, 220, 220, 220, 220, 220, 16311, 13, 33295, 7, 77, 32152, 13, 18747, 7, 22915, 62, 7890, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 32691, 6791, 13, 33295, 7, 77, 32152, 13, 18747, 7, 22915, 62, 76, 1042, 2093, 11, 288, 4906, 796, 299, 32152, 13, 28611, 4008, 198, 220, 220, 220, 2073, 25, 220, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 4022, 385, 11012, 45, 16922, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 23722, 407, 2251, 3047, 1366, 422, 262, 2393, 4064, 82, 526, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4064, 357, 7983, 62, 79, 9945, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 1441, 16311, 11, 32691, 6791, 220, 220, 220, 220, 628, 198, 4299, 1100, 62, 45688, 62, 411, 312, 947, 7, 34345, 2599, 220, 220, 198, 220, 220, 220, 37227, 4149, 4814, 47185, 422, 257, 2393, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 383, 2393, 5794, 318, 262, 1708, 25, 198, 220, 220, 220, 1303, 2393, 220, 220, 220, 220, 220, 220, 220, 220, 6333, 220, 220, 220, 2292, 220, 220, 220, 35186, 198, 220, 220, 220, 705, 1820, 7983, 13, 79, 9945, 6, 220, 317, 220, 220, 220, 220, 220, 220, 220, 2242, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8355, 32, 198, 220, 220, 220, 705, 1820, 7983, 13, 79, 9945, 6, 220, 327, 220, 220, 220, 220, 220, 220, 220, 2681, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12509, 52, 198, 220, 220, 220, 705, 847, 13, 79, 9945, 220, 220, 220, 220, 317, 220, 220, 220, 220, 220, 220, 220, 1105, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10188, 56, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 17143, 29472, 25, 383, 2393, 12059, 262, 4814, 47185, 13, 198, 220, 220, 220, 2488, 4906, 29472, 25, 965, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 81, 4906, 25, 8633, 198, 220, 220, 220, 2488, 7783, 25, 28261, 286, 47185, 3025, 1994, 318, 262, 357, 7753, 11, 6333, 11, 2292, 737, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4814, 62, 411, 312, 947, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 28686, 13, 6978, 13, 4468, 576, 7, 34345, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 4022, 385, 11012, 45, 16922, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 23722, 407, 1280, 2393, 4064, 82, 329, 3555, 4814, 47185, 526, 4064, 29472, 8, 198, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 47185, 62, 7753, 796, 1280, 7, 34345, 8, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 11, 1627, 287, 27056, 378, 7, 411, 312, 947, 62, 7753, 13, 961, 6615, 3419, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1627, 796, 1627, 13, 36311, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 1627, 13, 9688, 2032, 342, 7203, 2, 4943, 290, 18896, 7, 1370, 8, 1875, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6333, 62, 79, 9945, 11, 6333, 11, 581, 62, 9630, 11, 581, 62, 3672, 796, 1627, 13, 35312, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4814, 62, 411, 312, 947, 58, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 7983, 62, 79, 9945, 11, 6333, 11, 493, 7, 411, 62, 9630, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2361, 796, 1874, 312, 518, 7, 312, 28, 10786, 3256, 493, 7, 411, 62, 9630, 828, 10148, 828, 581, 3672, 28, 411, 62, 3672, 11, 384, 70, 312, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 11052, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4022, 385, 11012, 45, 16922, 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, 366, 23722, 407, 1100, 4814, 47185, 2393, 4064, 82, 379, 1627, 4064, 67, 526, 4064, 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, 357, 34345, 11, 1312, 1343, 352, 8, 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, 2845, 24418, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4022, 385, 11012, 45, 16922, 7203, 23722, 407, 1280, 2393, 4064, 82, 329, 3555, 4814, 47185, 526, 4064, 29472, 8, 198, 220, 220, 220, 1441, 4814, 62, 411, 312, 947, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 4299, 4808, 1136, 62, 45688, 62, 411, 312, 518, 7, 45688, 62, 411, 312, 947, 11, 6333, 62, 79, 9945, 11, 6333, 11, 35186, 62, 9630, 2599, 220, 220, 198, 220, 220, 220, 37227, 3497, 262, 4814, 47185, 11188, 284, 257, 2393, 11, 6333, 290, 2292, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 17143, 4814, 62, 411, 312, 947, 25, 28261, 286, 47185, 41497, 416, 220, 198, 220, 220, 220, 220, 220, 220, 220, 357, 7753, 11, 6333, 62, 312, 11, 2292, 737, 198, 220, 220, 220, 2488, 4906, 4814, 62, 411, 312, 947, 25, 8633, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 17143, 6333, 62, 79, 9945, 25, 383, 29472, 810, 262, 6333, 318, 3417, 13, 198, 220, 220, 220, 2488, 4906, 6333, 62, 79, 9945, 25, 965, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 17143, 6333, 25, 383, 6333, 27421, 13, 198, 220, 220, 220, 2488, 4906, 6333, 25, 965, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 17143, 35186, 62, 9630, 25, 383, 2292, 286, 262, 35186, 287, 262, 6333, 198, 220, 220, 220, 2488, 4906, 35186, 62, 9630, 25, 493, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 81, 4906, 25, 965, 198, 220, 220, 220, 2488, 7783, 25, 383, 4814, 35186, 1115, 3850, 27421, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 6333, 62, 79, 9945, 796, 28686, 13, 6978, 13, 35312, 7, 7983, 62, 79, 9945, 38381, 12, 16, 60, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4814, 62, 411, 312, 947, 58, 7, 7983, 62, 79, 9945, 11, 6333, 11, 35186, 62, 9630, 15437, 198, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 4022, 385, 11012, 45, 35491, 31737, 16922, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 35491, 2270, 287, 2393, 4064, 82, 11, 6333, 4064, 82, 11, 35186, 4064, 67, 11, 714, 407, 307, 12118, 526, 4064, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 7983, 62, 79, 9945, 11, 6333, 11, 35186, 62, 9630, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 4299, 4808, 1136, 62, 381, 62, 4480, 62, 7983, 62, 9032, 7, 7983, 62, 79, 9945, 11, 9788, 62, 4868, 11, 6333, 62, 4868, 11, 4814, 62, 411, 312, 947, 62, 11600, 2599, 198, 220, 220, 220, 37227, 3497, 262, 7514, 431, 457, 1460, 14659, 329, 257, 1813, 6333, 2393, 11, 4375, 4814, 198, 220, 220, 220, 47185, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 17143, 6333, 62, 79, 9945, 25, 383, 2393, 7268, 262, 14659, 13, 198, 220, 220, 220, 2488, 4906, 6333, 62, 79, 9945, 25, 965, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 17143, 9788, 62, 4868, 25, 7343, 286, 7514, 431, 457, 1460, 13, 198, 220, 220, 220, 2488, 4906, 9788, 62, 4868, 25, 1351, 7, 34220, 431, 457, 485, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 17143, 9788, 62, 4868, 25, 7343, 286, 14659, 13, 198, 220, 220, 220, 2488, 4906, 9788, 62, 4868, 25, 1351, 7, 35491, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 17143, 4814, 62, 411, 312, 947, 62, 11600, 25, 28261, 286, 47185, 41497, 416, 220, 198, 220, 220, 220, 220, 220, 220, 220, 357, 7753, 11, 6333, 62, 312, 11, 2292, 737, 198, 220, 220, 220, 2488, 4906, 4814, 62, 411, 312, 947, 62, 11600, 25, 8633, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 81, 4906, 25, 46545, 7, 4868, 7, 34220, 431, 457, 485, 828, 1351, 7, 600, 4008, 198, 220, 220, 220, 2488, 7783, 25, 12280, 431, 457, 1460, 290, 1351, 351, 4814, 47185, 2292, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 9788, 62, 4868, 62, 3605, 796, 17635, 198, 220, 220, 220, 4814, 62, 411, 312, 947, 796, 17635, 198, 220, 220, 220, 220, 198, 220, 220, 220, 9788, 62, 4868, 62, 3605, 13, 33295, 7, 381, 62, 4868, 58, 15, 12962, 198, 220, 220, 220, 4814, 62, 411, 312, 947, 13, 33295, 26933, 12962, 220, 220, 198, 220, 220, 220, 6333, 62, 9630, 796, 657, 198, 220, 220, 220, 220, 198, 220, 220, 220, 329, 1312, 11, 9788, 287, 27056, 378, 7, 381, 62, 4868, 58, 16, 47715, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 938, 62, 411, 312, 518, 796, 9788, 62, 4868, 62, 3605, 58, 12, 16, 7131, 12, 16, 4083, 1136, 62, 312, 3419, 58, 16, 60, 1343, 352, 198, 220, 220, 220, 220, 220, 220, 220, 717, 62, 411, 312, 518, 796, 9788, 58, 15, 4083, 1136, 62, 312, 3419, 58, 16, 60, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 611, 938, 62, 411, 312, 518, 1279, 717, 62, 411, 312, 518, 25, 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, 4814, 62, 411, 312, 947, 62, 9630, 796, 2837, 7, 12957, 62, 411, 312, 518, 11, 717, 62, 411, 312, 518, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 47185, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 581, 62, 9630, 287, 4814, 62, 411, 312, 947, 62, 9630, 25, 198, 220, 220, 220, 220, 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, 220, 220, 220, 220, 581, 796, 4808, 1136, 62, 45688, 62, 411, 312, 518, 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, 4814, 62, 411, 312, 947, 62, 11600, 11, 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, 6333, 62, 79, 9945, 11, 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, 6333, 62, 4868, 58, 7983, 62, 9630, 4083, 1136, 62, 312, 22784, 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, 581, 62, 9630, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 47185, 13, 33295, 7, 411, 8, 198, 220, 220, 220, 220, 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, 220, 220, 220, 220, 47185, 796, 17635, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 411, 312, 947, 8, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 581, 287, 47185, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9788, 62, 4868, 62, 3605, 58, 12, 16, 4083, 33295, 7, 411, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4814, 62, 411, 312, 947, 58, 12, 16, 60, 15853, 4814, 62, 411, 312, 947, 62, 9630, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9788, 62, 4868, 62, 3605, 58, 12, 16, 60, 15853, 9788, 220, 220, 220, 220, 220, 220, 220, 220, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9788, 62, 4868, 62, 3605, 13, 33295, 7, 381, 8, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4814, 62, 411, 312, 947, 13, 33295, 26933, 12962, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6333, 62, 9630, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9788, 62, 4868, 62, 3605, 13, 33295, 7, 381, 8, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4814, 62, 411, 312, 947, 13, 33295, 26933, 12962, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6333, 62, 9630, 15853, 352, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 611, 18896, 7, 381, 62, 4868, 62, 3605, 8, 14512, 18896, 7, 7983, 62, 4868, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 4022, 385, 11012, 45, 35491, 31737, 16922, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 35491, 2270, 287, 2393, 4064, 82, 714, 407, 307, 12118, 526, 4064, 357, 7983, 62, 79, 9945, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 1441, 9788, 62, 4868, 62, 3605, 11, 4814, 62, 411, 312, 947, 628, 198, 4299, 4808, 1136, 62, 431, 457, 485, 62, 65, 623, 62, 1102, 1161, 7, 411, 11, 8654, 62, 411, 2599, 198, 220, 220, 220, 37227, 3497, 262, 369, 1161, 286, 262, 34337, 485, 6314, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 17143, 581, 25, 317, 35186, 198, 220, 220, 220, 2488, 4906, 581, 25, 1874, 312, 518, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 17143, 581, 25, 383, 2180, 35186, 198, 220, 220, 220, 2488, 4906, 581, 25, 1874, 312, 518, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2488, 81, 4906, 25, 493, 357, 66, 271, 25, 657, 11, 1007, 25, 352, 8, 198, 220, 220, 220, 2488, 7783, 25, 1482, 1161, 286, 262, 34337, 485, 6314, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 36159, 796, 657, 198, 220, 220, 220, 44069, 796, 352, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1949, 25, 220, 198, 220, 220, 220, 220, 220, 220, 220, 7257, 62, 47050, 796, 8654, 62, 411, 17816, 8141, 6, 4083, 1136, 62, 31364, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 327, 62, 47050, 796, 8654, 62, 411, 17816, 34, 6, 4083, 1136, 62, 31364, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 399, 796, 581, 17816, 45, 6, 4083, 1136, 62, 31364, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 7257, 796, 581, 17816, 8141, 6, 4083, 1136, 62, 31364, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2566, 21962, 796, 42302, 62, 10989, 21962, 7, 8141, 62, 47050, 11, 327, 62, 47050, 11, 399, 11, 7257, 8, 198, 220, 220, 220, 2845, 25, 220, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 4022, 385, 11012, 45, 16922, 7203, 23722, 407, 7330, 262, 369, 1161, 286, 262, 34337, 485, 6314, 19570, 628, 220, 220, 220, 611, 2352, 7, 10989, 21962, 8, 1279, 10688, 13, 14415, 14, 19, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 36159, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 44069, 198 ]
1.957342
5,087
#!/usr/bin/env python # author: [email protected] import json import urllib import urllib2 import sqlite3 import math import ConfigParser import time config = ConfigParser.RawConfigParser() config.read('config.ini') conn = sqlite3.connect(config.get("pool", "database")) c = conn.cursor() if __name__ == "__main__": main()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 198, 2, 1772, 25, 872, 3565, 320, 31, 77, 32179, 29609, 78, 13, 2398, 198, 198, 11748, 33918, 198, 11748, 2956, 297, 571, 198, 11748, 2956, 297, 571, 17, 198, 11748, 44161, 578, 18, 198, 11748, 10688, 198, 11748, 17056, 46677, 198, 11748, 640, 198, 198, 11250, 796, 17056, 46677, 13, 27369, 16934, 46677, 3419, 198, 11250, 13, 961, 10786, 11250, 13, 5362, 11537, 198, 198, 37043, 796, 44161, 578, 18, 13, 8443, 7, 11250, 13, 1136, 7203, 7742, 1600, 366, 48806, 48774, 198, 66, 796, 48260, 13, 66, 21471, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 628, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1388, 3419, 198 ]
2.654135
133
import argparse import time import parsl # Tested. Confirmed. Local X Local X SingleNodeLauncher from parsl.tests.configs.local_ipp import config # Tested. Confirmed. ssh X Slurm X SingleNodeLauncher # from parsl.tests.configs.midway_ipp import config # Tested. Confirmed. ssh X Slurm X SingelNodeLauncher # from parsl.tests.configs.midway_ipp_multicore import config # Tested. Confirmed. ssh X Slurm X SrunLauncher # from parsl.tests.configs.midway_ipp_multinode import config # OSG requires python3.5 for testing. This test is inconsitent, # breaks often depending on where the test lands # Tested. Confirmed. ssh X Condor X single_node # from parsl.tests.configs.osg_ipp_multinode import config # Tested. Confirmed. ssh X Torque X AprunLauncher # from parsl.tests.configs.swan_ipp import config # Tested. Confirmed. ssh X Torque X AprunLauncher # from parsl.tests.configs.swan_ipp_multinode import config # Tested. Confirmed. ssh X Slurm X SingleNodeLauncher # from parsl.tests.configs.cori_ipp_single_node import config # Tested. Confirmed. ssh X Slurm X srun # from parsl.tests.configs.cori_ipp_multinode import config # from parsl.tests.configs.cooley_ssh_il_single_node import config # Tested. Confirmed. local X GridEngine X singleNode # from parsl.tests.configs.cc_in2p3_local_single_node import config # from parsl.tests.configs.comet_ipp_multinode import config # from parsl.tests.configs.htex_local import config # from parsl.tests.configs.exex_local import config parsl.set_stream_logger() # from htex_midway import config # from htex_swan import config from parsl.app.app import python_app # , bash_app parsl.load(config) @python_app @python_app @python_app @python_app if __name__ == '__main__': parser = argparse.ArgumentParser() parser.add_argument("-s", "--sitespec", default=None) parser.add_argument("-c", "--count", default="10", help="Count of apps to launch") parser.add_argument("-d", "--debug", action='store_true', help="Count of apps to launch") args = parser.parse_args() if args.sitespec: config = None try: exec("import parsl; from {} import config".format(args.sitespec)) parsl.load(config) except Exception: print("Failed to load the requested config : ", args.sitespec) exit(0) if args.debug: parsl.set_stream_logger() x = test_simple(int(args.count)) # x = test_imports() # x = test_parallel_for() # x = test_parallel_for(int(args.count)) # x = test_stdout() x = test_platform()
[ 11748, 1822, 29572, 198, 11748, 640, 198, 198, 11748, 13544, 75, 198, 2, 6208, 276, 13, 7326, 15491, 13, 10714, 1395, 10714, 1395, 14206, 19667, 46182, 2044, 198, 6738, 13544, 75, 13, 41989, 13, 11250, 82, 13, 12001, 62, 3974, 1330, 4566, 198, 198, 2, 6208, 276, 13, 7326, 15491, 13, 26678, 1395, 3454, 333, 76, 1395, 14206, 19667, 46182, 2044, 198, 2, 422, 13544, 75, 13, 41989, 13, 11250, 82, 13, 13602, 1014, 62, 3974, 1330, 4566, 198, 198, 2, 6208, 276, 13, 7326, 15491, 13, 26678, 1395, 3454, 333, 76, 1395, 5573, 417, 19667, 46182, 2044, 198, 2, 422, 13544, 75, 13, 41989, 13, 11250, 82, 13, 13602, 1014, 62, 3974, 62, 16680, 291, 382, 1330, 4566, 198, 198, 2, 6208, 276, 13, 7326, 15491, 13, 26678, 1395, 3454, 333, 76, 1395, 311, 5143, 46182, 2044, 198, 2, 422, 13544, 75, 13, 41989, 13, 11250, 82, 13, 13602, 1014, 62, 3974, 62, 16680, 259, 1098, 1330, 4566, 198, 198, 2, 7294, 38, 4433, 21015, 18, 13, 20, 329, 4856, 13, 770, 1332, 318, 12764, 48324, 11, 198, 2, 9457, 1690, 6906, 319, 810, 262, 1332, 8604, 198, 2, 6208, 276, 13, 7326, 15491, 13, 26678, 1395, 9724, 273, 1395, 2060, 62, 17440, 198, 2, 422, 13544, 75, 13, 41989, 13, 11250, 82, 13, 418, 70, 62, 3974, 62, 16680, 259, 1098, 1330, 4566, 198, 198, 2, 6208, 276, 13, 7326, 15491, 13, 26678, 1395, 4022, 4188, 1395, 2758, 403, 46182, 2044, 198, 2, 422, 13544, 75, 13, 41989, 13, 11250, 82, 13, 2032, 272, 62, 3974, 1330, 4566, 198, 198, 2, 6208, 276, 13, 7326, 15491, 13, 26678, 1395, 4022, 4188, 1395, 2758, 403, 46182, 2044, 198, 2, 422, 13544, 75, 13, 41989, 13, 11250, 82, 13, 2032, 272, 62, 3974, 62, 16680, 259, 1098, 1330, 4566, 198, 198, 2, 6208, 276, 13, 7326, 15491, 13, 26678, 1395, 3454, 333, 76, 1395, 14206, 19667, 46182, 2044, 198, 2, 422, 13544, 75, 13, 41989, 13, 11250, 82, 13, 66, 10145, 62, 3974, 62, 29762, 62, 17440, 1330, 4566, 198, 198, 2, 6208, 276, 13, 7326, 15491, 13, 26678, 1395, 3454, 333, 76, 1395, 264, 5143, 198, 2, 422, 13544, 75, 13, 41989, 13, 11250, 82, 13, 66, 10145, 62, 3974, 62, 16680, 259, 1098, 1330, 4566, 198, 198, 2, 422, 13544, 75, 13, 41989, 13, 11250, 82, 13, 1073, 48437, 62, 45824, 62, 346, 62, 29762, 62, 17440, 1330, 4566, 198, 198, 2, 6208, 276, 13, 7326, 15491, 13, 1957, 1395, 24846, 13798, 1395, 2060, 19667, 198, 2, 422, 13544, 75, 13, 41989, 13, 11250, 82, 13, 535, 62, 259, 17, 79, 18, 62, 12001, 62, 29762, 62, 17440, 1330, 4566, 198, 198, 2, 422, 13544, 75, 13, 41989, 13, 11250, 82, 13, 785, 316, 62, 3974, 62, 16680, 259, 1098, 1330, 4566, 198, 198, 2, 422, 13544, 75, 13, 41989, 13, 11250, 82, 13, 71, 16886, 62, 12001, 1330, 4566, 198, 2, 422, 13544, 75, 13, 41989, 13, 11250, 82, 13, 1069, 1069, 62, 12001, 1330, 4566, 198, 79, 945, 75, 13, 2617, 62, 5532, 62, 6404, 1362, 3419, 198, 198, 2, 422, 289, 16886, 62, 13602, 1014, 1330, 4566, 198, 2, 422, 289, 16886, 62, 2032, 272, 1330, 4566, 628, 198, 6738, 13544, 75, 13, 1324, 13, 1324, 1330, 21015, 62, 1324, 220, 1303, 837, 27334, 62, 1324, 198, 79, 945, 75, 13, 2220, 7, 11250, 8, 628, 198, 31, 29412, 62, 1324, 628, 198, 31, 29412, 62, 1324, 628, 198, 31, 29412, 62, 1324, 628, 198, 31, 29412, 62, 1324, 628, 628, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 628, 220, 220, 220, 30751, 796, 1822, 29572, 13, 28100, 1713, 46677, 3419, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 12, 82, 1600, 366, 438, 49315, 43106, 1600, 4277, 28, 14202, 8, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 12, 66, 1600, 366, 438, 9127, 1600, 4277, 2625, 940, 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, 12332, 286, 6725, 284, 4219, 4943, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7203, 12, 67, 1600, 366, 438, 24442, 1600, 2223, 11639, 8095, 62, 7942, 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, 1037, 2625, 12332, 286, 6725, 284, 4219, 4943, 198, 220, 220, 220, 26498, 796, 30751, 13, 29572, 62, 22046, 3419, 628, 220, 220, 220, 611, 26498, 13, 49315, 43106, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2452, 7203, 11748, 13544, 75, 26, 422, 23884, 1330, 4566, 1911, 18982, 7, 22046, 13, 49315, 43106, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13544, 75, 13, 2220, 7, 11250, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 35528, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 37, 6255, 284, 3440, 262, 9167, 4566, 1058, 33172, 26498, 13, 49315, 43106, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8420, 7, 15, 8, 628, 220, 220, 220, 611, 26498, 13, 24442, 25, 198, 220, 220, 220, 220, 220, 220, 220, 13544, 75, 13, 2617, 62, 5532, 62, 6404, 1362, 3419, 628, 220, 220, 220, 2124, 796, 1332, 62, 36439, 7, 600, 7, 22046, 13, 9127, 4008, 198, 220, 220, 220, 1303, 2124, 796, 1332, 62, 320, 3742, 3419, 198, 220, 220, 220, 1303, 2124, 796, 1332, 62, 1845, 29363, 62, 1640, 3419, 198, 220, 220, 220, 1303, 2124, 796, 1332, 62, 1845, 29363, 62, 1640, 7, 600, 7, 22046, 13, 9127, 4008, 198, 220, 220, 220, 1303, 2124, 796, 1332, 62, 19282, 448, 3419, 198, 220, 220, 220, 2124, 796, 1332, 62, 24254, 3419, 198 ]
2.628
1,000
""" General details about the program """ __version__ = '0.2.0' __author__ = 'blackCheetah' __created__ = '27.09.2018' __updated__ = '07.10.2018' __description__ = 'Retrieve all subscribers who made a comment on your last 50 videos.'
[ 37811, 198, 220, 220, 220, 3611, 3307, 546, 262, 1430, 198, 37811, 198, 834, 9641, 834, 220, 220, 220, 220, 796, 705, 15, 13, 17, 13, 15, 6, 198, 834, 9800, 834, 220, 220, 220, 220, 220, 796, 705, 13424, 7376, 316, 993, 6, 198, 834, 25598, 834, 220, 220, 220, 220, 796, 705, 1983, 13, 2931, 13, 7908, 6, 198, 834, 43162, 834, 220, 220, 220, 220, 796, 705, 2998, 13, 940, 13, 7908, 6, 198, 834, 11213, 834, 796, 705, 9781, 30227, 477, 18327, 508, 925, 257, 2912, 319, 534, 938, 2026, 5861, 2637, 198 ]
2.628866
97
#!/usr/bin/env python """ Schema Schema | Name | Type | Owner --------+-------------------+----------+--------- public | job | table | huangch public | job_definition | table | huangch public | job_definition_id | sequence | huangch public | job_id | sequence | huangch public | object | table | huangch public | progress | table | huangch public | task | table | huangch public | task_id | sequence | huangch Table "public.job" Column | Type | Modifiers ---------+-----------------------------+------------------------------------------ id | integer | not null default nextval('job_id'::text) name | character varying | not null type | integer | not null start | timestamp without time zone | default now() finish | timestamp without time zone | comment | character varying | id2 | bigint | not null Indexes: "job_pkey" PRIMARY KEY, btree (id) "job_id2_key" UNIQUE, btree (id2) "job_finish_idx" btree (finish) "job_name_idx" btree (name) "job_start_idx" btree ("start") "job_type_idx" btree ("type") Foreign-key constraints: "job_type_fkey" FOREIGN KEY ("type") REFERENCES job_definition(id) ON UPDATE CASCADE ON DELETE CASCADE Table "public.job_definition" Column | Type | Modifiers ---------+-------------------+----------------------------------------------------- id | integer | not null default nextval('job_definition_id'::text) name | character varying | not null tasks | integer | remarks | character varying | Indexes: "job_definition_pkey" PRIMARY KEY, btree (id) "job_definition_name_idx" btree (name) Table "public.task" Column | Type | Modifiers ------------+-------------------+------------------------------------------- id | integer | not null default nextval('task_id'::text) seq | integer | not null job_type | integer | not null dsc | character varying | action | character varying | comment | character varying | auto_start | character(1) | default 'm'::bpchar Indexes: "task_pkey" PRIMARY KEY, btree (seq, job_type) Foreign-key constraints: "task_job_type_fkey" FOREIGN KEY (job_type) REFERENCES job_definition(id) ON UPDATE CASCADE ON DELETE CASCADE Table "public.progress" Column | Type | Modifiers ---------+-----------------------------+--------------- job | integer | not null task | integer | not null start | timestamp without time zone | default now() finish | timestamp without time zone | comment | character varying | args | character varying | result | character varying | Indexes: "progress_job_idx" btree (job) "progress_start_idx" btree ("start") Foreign-key constraints: "progress_job_fkey" FOREIGN KEY (job) REFERENCES job(id) ON UPDATE CASCADE ON DELETE CASCADE Table "public.object" Column | Type | Modifiers --------+-------------------+----------- job | integer | not null object | character varying | Indexes: "object_job_idx" btree (job) "object_object_idx" btree ("object") Foreign-key constraints: "object_job_fkey" FOREIGN KEY (job) REFERENCES job(id) ON UPDATE CASCADE ON DELETE CASCADE """ import os import pprint import pwd import time import types import smtplib import stat import sys # enstore import import configuration_client import e_errors import enstore_functions2 import dbaccess try: import snow_fliptab except: pass debug = False # debug = True csc = {} # timestamp2time(ts) -- convert "YYYY-MM-DD HH:MM:SS" to time # time2timestamp(t) -- convert time to "YYYY-MM-DD HH:MM:SS" # is_time(t) -- check if t is of time type "YYYY-MM-DD_hh:mm:ss" # got to handle space # send_mail(subject, message) -- simplified sendmail TEMP_DIR = '/tmp/operation' # make it if it is not there if not os.access(TEMP_DIR, os.F_OK): os.makedirs(TEMP_DIR) DATABASEHOST = 'stkensrv0n.fnal.gov' #DATABASEHOST = 'localhost' DATABASEPORT = 8800 DATABASENAME = 'operation' DATABASEUSER = None # This is a hard wired configuration # get_cluster(host) -- determine current cluster # get_script_host(cluster) -- determine script host # get_write_protect_script_path(library_type) -- determine script path # get_write_permit_script_path(library_type) -- determine script path # get_default_library(cluster) # get_qualifier(library_type) -- determine name qualifier csc = configuration_client.ConfigurationClient((enstore_functions2.default_host(), enstore_functions2.default_port())) enstoredb = csc.get('database') operation_db = csc.get('operation_db') if operation_db['status'][0] == e_errors.OK: DATABASENAME = operation_db['dbname'] DATABASEPORT = operation_db['dbport'] DATABASEHOST = operation_db['dbhost'] DATABASEUSER = operation_db['dbuser'] elif enstoredb['dbhost'].find('.fnal.gov') == -1: print "no database host defined for this node" sys.exit(0) cluster = get_cluster(enstoredb['db_host']) script_host = get_script_host(cluster) DEFAULT_LIBRARIES = get_default_library(cluster) # get_db() -- initialize a database connection # global db connection db = get_db() edb = get_edb(enstoredb) npl = 10 # number of items per line # get_rem_ticket_number(rem_res) # get ticket number from remedy API # rem_res is the result (array of lines) from remedy API # get_unfinished_job(cluster) -- get unfinished job of certain cluster # decode_job(job) -- decode the type of job from its name # is_done(job) -- is this job done? # try_close_all(cluster) -- try close open job in cluster # auto_close_all() -- automatically close all finished jobs # create_job() -- generic job creation # get_job_by_name() -- from a name to find the job; name is unique # get_job_by_id() -- get_job_using internal id # get_job_by_time() -- get job using time frame # retrieve_job() -- get all related information of this job # get_job_tasks(name) -- show the tasks related to this job # start_job_task(job_name, task_id) -- start a task # finish_job_task(job_name, task_id) -- finish/close a task # get_current_task(name) -- get current task # get_next_task(name) -- get next task # has_finished(job, task) -- has task (job, task) finished? # is_started(job, task) -- has task (job, task) started? # start_next_task(job) -- start next task # finish_current_task(job) -- finish current task # show_current_task(job) -- show current task of job # show_next_task(job) -- show next task of job # show(job) -- display a job # delete(job) -- delete a job # help(topic) -- help function # even(i) -- True is i is an even number # get_caps_per_ticket(lib_type) -- determine caps per ticket # same_tape_library(libs) -- check if all library are using the same robot # dump() -- dump all global variables # complex operations # CAPS_PER_TICKET = 10 # VOLUMES_PER_CAP = 21 # make_cap_args(d) -- make arguments from a dictionary # make_cap(list) # get_max_cap_number(cluster) PROMPT = "operation> " # shell() -- interactive shell # execute(args) -- execute args[0], args[1:] if __name__ == '__main__': if len(sys.argv) < 2: shell() else: res = execute(sys.argv[1:]) if res: if type(res) == type([]): for i in res: print i else: print res
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 37811, 198, 27054, 2611, 628, 10011, 2611, 930, 220, 220, 220, 220, 220, 220, 6530, 220, 220, 220, 220, 220, 220, 220, 930, 220, 220, 5994, 220, 220, 930, 220, 23853, 198, 982, 10, 1783, 6329, 10, 35937, 10, 45537, 198, 1171, 930, 1693, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 3084, 220, 220, 220, 930, 289, 84, 648, 354, 198, 1171, 930, 1693, 62, 46758, 220, 220, 220, 930, 3084, 220, 220, 220, 930, 289, 84, 648, 354, 198, 1171, 930, 1693, 62, 46758, 62, 312, 930, 8379, 930, 289, 84, 648, 354, 198, 1171, 930, 1693, 62, 312, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 8379, 930, 289, 84, 648, 354, 198, 1171, 930, 2134, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 3084, 220, 220, 220, 930, 289, 84, 648, 354, 198, 1171, 930, 4371, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 3084, 220, 220, 220, 930, 289, 84, 648, 354, 198, 1171, 930, 4876, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 3084, 220, 220, 220, 930, 289, 84, 648, 354, 198, 1171, 930, 4876, 62, 312, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 8379, 930, 289, 84, 648, 354, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8655, 366, 11377, 13, 21858, 1, 198, 29201, 220, 930, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5994, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3401, 13350, 198, 982, 19529, 1783, 10541, 19529, 3880, 35937, 198, 4686, 220, 220, 220, 220, 220, 930, 18253, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 407, 9242, 4277, 1306, 2100, 10786, 21858, 62, 312, 6, 3712, 5239, 8, 198, 1438, 220, 220, 220, 930, 2095, 15874, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 407, 9242, 198, 2099, 220, 220, 220, 930, 18253, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 407, 9242, 198, 923, 220, 220, 930, 41033, 1231, 640, 6516, 930, 4277, 783, 3419, 198, 5461, 220, 930, 41033, 1231, 640, 6516, 930, 198, 2912, 930, 2095, 15874, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 198, 4686, 17, 220, 220, 220, 220, 930, 1263, 600, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 407, 9242, 198, 15732, 274, 25, 198, 220, 220, 220, 366, 21858, 62, 79, 2539, 1, 4810, 3955, 13153, 35374, 11, 275, 21048, 357, 312, 8, 198, 220, 220, 220, 366, 21858, 62, 312, 17, 62, 2539, 1, 4725, 33866, 8924, 11, 275, 21048, 357, 312, 17, 8, 198, 220, 220, 220, 366, 21858, 62, 15643, 680, 62, 312, 87, 1, 275, 21048, 357, 15643, 680, 8, 198, 220, 220, 220, 366, 21858, 62, 3672, 62, 312, 87, 1, 275, 21048, 357, 3672, 8, 198, 220, 220, 220, 366, 21858, 62, 9688, 62, 312, 87, 1, 275, 21048, 5855, 9688, 4943, 198, 220, 220, 220, 366, 21858, 62, 4906, 62, 312, 87, 1, 275, 21048, 5855, 4906, 4943, 198, 33616, 12, 2539, 17778, 25, 198, 220, 220, 220, 366, 21858, 62, 4906, 62, 69, 2539, 1, 376, 6965, 16284, 35374, 5855, 4906, 4943, 4526, 24302, 24181, 1546, 1693, 62, 46758, 7, 312, 8, 6177, 35717, 35106, 34, 19266, 6177, 5550, 2538, 9328, 35106, 34, 19266, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8655, 366, 11377, 13, 21858, 62, 46758, 1, 198, 29201, 220, 930, 220, 220, 220, 220, 220, 220, 5994, 220, 220, 220, 220, 220, 220, 220, 930, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3401, 13350, 198, 982, 19529, 1783, 6329, 10, 3880, 19351, 12, 198, 4686, 220, 220, 220, 220, 220, 930, 18253, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 407, 9242, 4277, 1306, 2100, 10786, 21858, 62, 46758, 62, 312, 6, 3712, 5239, 8, 198, 1438, 220, 220, 220, 930, 2095, 15874, 930, 407, 9242, 198, 8861, 220, 220, 930, 18253, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 198, 10252, 930, 2095, 15874, 930, 198, 15732, 274, 25, 198, 220, 220, 220, 366, 21858, 62, 46758, 62, 79, 2539, 1, 4810, 3955, 13153, 35374, 11, 275, 21048, 357, 312, 8, 198, 220, 220, 220, 366, 21858, 62, 46758, 62, 3672, 62, 312, 87, 1, 275, 21048, 357, 3672, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8655, 366, 11377, 13, 35943, 1, 198, 220, 220, 29201, 220, 220, 930, 220, 220, 220, 220, 220, 220, 5994, 220, 220, 220, 220, 220, 220, 220, 930, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3401, 13350, 198, 10541, 10, 1783, 6329, 10, 3880, 32284, 198, 4686, 220, 220, 220, 220, 220, 220, 220, 220, 930, 18253, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 407, 9242, 4277, 1306, 2100, 10786, 35943, 62, 312, 6, 3712, 5239, 8, 198, 33756, 220, 220, 220, 220, 220, 220, 220, 930, 18253, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 407, 9242, 198, 1693, 62, 4906, 220, 220, 930, 18253, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 407, 9242, 198, 288, 1416, 220, 220, 220, 220, 220, 220, 220, 930, 2095, 15874, 930, 198, 2223, 220, 220, 220, 220, 930, 2095, 15874, 930, 198, 2912, 220, 220, 220, 930, 2095, 15874, 930, 198, 8295, 62, 9688, 930, 2095, 7, 16, 8, 220, 220, 220, 220, 220, 930, 4277, 705, 76, 6, 3712, 46583, 10641, 198, 15732, 274, 25, 198, 220, 220, 220, 366, 35943, 62, 79, 2539, 1, 4810, 3955, 13153, 35374, 11, 275, 21048, 357, 41068, 11, 1693, 62, 4906, 8, 198, 33616, 12, 2539, 17778, 25, 198, 220, 220, 220, 366, 35943, 62, 21858, 62, 4906, 62, 69, 2539, 1, 376, 6965, 16284, 35374, 357, 21858, 62, 4906, 8, 4526, 24302, 24181, 1546, 1693, 62, 46758, 7, 312, 8, 6177, 35717, 35106, 34, 19266, 6177, 5550, 2538, 9328, 35106, 34, 19266, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8655, 366, 11377, 13, 33723, 1, 198, 29201, 220, 930, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5994, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 220, 220, 3401, 13350, 198, 982, 19529, 1783, 10541, 19529, 24305, 198, 1693, 220, 220, 220, 220, 930, 18253, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 407, 9242, 198, 4876, 220, 220, 220, 930, 18253, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 407, 9242, 198, 923, 220, 220, 930, 41033, 1231, 640, 6516, 930, 4277, 783, 3419, 198, 5461, 220, 930, 41033, 1231, 640, 6516, 930, 198, 2912, 930, 2095, 15874, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 198, 26498, 220, 220, 220, 930, 2095, 15874, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 198, 1255, 220, 930, 2095, 15874, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 198, 15732, 274, 25, 198, 220, 220, 220, 366, 33723, 62, 21858, 62, 312, 87, 1, 275, 21048, 357, 21858, 8, 198, 220, 220, 220, 366, 33723, 62, 9688, 62, 312, 87, 1, 275, 21048, 5855, 9688, 4943, 198, 33616, 12, 2539, 17778, 25, 198, 220, 220, 220, 366, 33723, 62, 21858, 62, 69, 2539, 1, 376, 6965, 16284, 35374, 357, 21858, 8, 4526, 24302, 24181, 1546, 1693, 7, 312, 8, 6177, 35717, 35106, 34, 19266, 6177, 5550, 2538, 9328, 35106, 34, 19266, 628, 220, 220, 220, 220, 220, 220, 220, 220, 8655, 366, 11377, 13, 15252, 1, 198, 29201, 930, 220, 220, 220, 220, 220, 220, 5994, 220, 220, 220, 220, 220, 220, 220, 930, 3401, 13350, 198, 982, 10, 1783, 6329, 10, 32284, 198, 1693, 220, 220, 220, 930, 18253, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 407, 9242, 198, 2134, 930, 2095, 15874, 930, 198, 15732, 274, 25, 198, 220, 220, 220, 366, 15252, 62, 21858, 62, 312, 87, 1, 275, 21048, 357, 21858, 8, 198, 220, 220, 220, 366, 15252, 62, 15252, 62, 312, 87, 1, 275, 21048, 5855, 15252, 4943, 198, 33616, 12, 2539, 17778, 25, 198, 220, 220, 220, 366, 15252, 62, 21858, 62, 69, 2539, 1, 376, 6965, 16284, 35374, 357, 21858, 8, 4526, 24302, 24181, 1546, 1693, 7, 312, 8, 6177, 35717, 35106, 34, 19266, 6177, 5550, 2538, 9328, 35106, 34, 19266, 198, 198, 37811, 198, 198, 11748, 28686, 198, 11748, 279, 4798, 198, 11748, 279, 16993, 198, 11748, 640, 198, 11748, 3858, 198, 11748, 895, 83, 489, 571, 198, 11748, 1185, 198, 11748, 25064, 198, 2, 551, 8095, 1330, 198, 198, 11748, 8398, 62, 16366, 198, 11748, 304, 62, 48277, 198, 11748, 551, 8095, 62, 12543, 2733, 17, 198, 11748, 20613, 15526, 198, 198, 28311, 25, 198, 197, 11748, 6729, 62, 2704, 10257, 397, 198, 16341, 25, 198, 197, 6603, 198, 24442, 796, 10352, 198, 2, 14257, 796, 6407, 198, 66, 1416, 796, 23884, 198, 198, 2, 41033, 17, 2435, 7, 912, 8, 1377, 10385, 366, 26314, 26314, 12, 12038, 12, 16458, 47138, 25, 12038, 25, 5432, 1, 284, 640, 198, 198, 2, 640, 17, 16514, 27823, 7, 83, 8, 1377, 10385, 640, 284, 366, 26314, 26314, 12, 12038, 12, 16458, 47138, 25, 12038, 25, 5432, 1, 198, 198, 2, 318, 62, 2435, 7, 83, 8, 1377, 2198, 611, 256, 318, 286, 640, 2099, 366, 26314, 26314, 12, 12038, 12, 16458, 62, 12337, 25, 3020, 25, 824, 1, 198, 2, 220, 197, 197, 23442, 284, 5412, 2272, 198, 198, 2, 3758, 62, 4529, 7, 32796, 11, 3275, 8, 1377, 27009, 3758, 4529, 198, 198, 51, 39494, 62, 34720, 796, 31051, 22065, 14, 27184, 6, 198, 2, 787, 340, 611, 340, 318, 407, 612, 198, 361, 407, 28686, 13, 15526, 7, 51, 39494, 62, 34720, 11, 28686, 13, 37, 62, 11380, 2599, 198, 197, 418, 13, 76, 4335, 17062, 7, 51, 39494, 62, 34720, 8, 198, 198, 35, 1404, 6242, 11159, 39, 10892, 796, 705, 301, 14972, 81, 85, 15, 77, 13, 22184, 282, 13, 9567, 6, 198, 2, 35, 1404, 6242, 11159, 39, 10892, 796, 705, 36750, 6, 198, 35, 1404, 6242, 1921, 8905, 9863, 796, 807, 7410, 198, 35, 1404, 6242, 1921, 1677, 10067, 796, 705, 27184, 6, 198, 35, 1404, 6242, 11159, 29904, 796, 6045, 198, 198, 2, 770, 318, 257, 1327, 28217, 8398, 198, 198, 2, 651, 62, 565, 5819, 7, 4774, 8, 1377, 5004, 1459, 13946, 198, 198, 2, 651, 62, 12048, 62, 4774, 7, 565, 5819, 8, 1377, 5004, 4226, 2583, 198, 198, 2, 651, 62, 13564, 62, 35499, 62, 12048, 62, 6978, 7, 32016, 62, 4906, 8, 1377, 5004, 4226, 3108, 198, 198, 2, 651, 62, 13564, 62, 525, 2781, 62, 12048, 62, 6978, 7, 32016, 62, 4906, 8, 1377, 5004, 4226, 3108, 198, 198, 2, 651, 62, 12286, 62, 32016, 7, 565, 5819, 8, 198, 198, 2, 651, 62, 13255, 7483, 7, 32016, 62, 4906, 8, 1377, 5004, 1438, 39265, 198, 198, 66, 1416, 796, 8398, 62, 16366, 13, 38149, 11792, 19510, 268, 8095, 62, 12543, 2733, 17, 13, 12286, 62, 4774, 22784, 198, 197, 197, 197, 197, 197, 197, 268, 8095, 62, 12543, 2733, 17, 13, 12286, 62, 634, 3419, 4008, 198, 268, 301, 1850, 65, 796, 269, 1416, 13, 1136, 10786, 48806, 11537, 198, 27184, 62, 9945, 796, 269, 1416, 13, 1136, 10786, 27184, 62, 9945, 11537, 198, 198, 361, 4905, 62, 9945, 17816, 13376, 6, 7131, 15, 60, 6624, 304, 62, 48277, 13, 11380, 25, 198, 197, 35, 1404, 6242, 1921, 1677, 10067, 796, 4905, 62, 9945, 17816, 9945, 3672, 20520, 198, 197, 35, 1404, 6242, 1921, 8905, 9863, 796, 4905, 62, 9945, 17816, 9945, 634, 20520, 198, 197, 35, 1404, 6242, 11159, 39, 10892, 796, 4905, 62, 9945, 17816, 9945, 4774, 20520, 198, 197, 35, 1404, 6242, 11159, 29904, 796, 4905, 62, 9945, 17816, 9945, 7220, 20520, 198, 417, 361, 551, 301, 1850, 65, 17816, 9945, 4774, 6, 4083, 19796, 7, 4458, 22184, 282, 13, 9567, 11537, 6624, 532, 16, 25, 198, 197, 4798, 366, 3919, 6831, 2583, 5447, 329, 428, 10139, 1, 198, 197, 17597, 13, 37023, 7, 15, 8, 198, 198, 565, 5819, 796, 651, 62, 565, 5819, 7, 268, 301, 1850, 65, 17816, 9945, 62, 4774, 6, 12962, 198, 12048, 62, 4774, 796, 651, 62, 12048, 62, 4774, 7, 565, 5819, 8, 198, 7206, 38865, 62, 40347, 49, 1503, 11015, 796, 651, 62, 12286, 62, 32016, 7, 565, 5819, 8, 198, 198, 2, 651, 62, 9945, 3419, 1377, 41216, 257, 6831, 4637, 198, 198, 2, 3298, 20613, 4637, 198, 9945, 796, 651, 62, 9945, 3419, 198, 276, 65, 796, 651, 62, 276, 65, 7, 268, 301, 1850, 65, 8, 198, 198, 77, 489, 796, 838, 1303, 1271, 286, 3709, 583, 1627, 198, 198, 2, 651, 62, 2787, 62, 43350, 62, 17618, 7, 2787, 62, 411, 8, 198, 2, 197, 1136, 7846, 1271, 422, 21210, 7824, 198, 2, 197, 2787, 62, 411, 318, 262, 1255, 357, 18747, 286, 3951, 8, 422, 21210, 7824, 198, 198, 2, 651, 62, 403, 43952, 62, 21858, 7, 565, 5819, 8, 1377, 651, 34419, 1693, 286, 1728, 13946, 198, 198, 2, 36899, 62, 21858, 7, 21858, 8, 1377, 36899, 262, 2099, 286, 1693, 422, 663, 1438, 198, 198, 2, 318, 62, 28060, 7, 21858, 8, 1377, 318, 428, 1693, 1760, 30, 198, 198, 2, 1949, 62, 19836, 62, 439, 7, 565, 5819, 8, 1377, 1949, 1969, 1280, 1693, 287, 13946, 198, 198, 2, 8295, 62, 19836, 62, 439, 3419, 1377, 6338, 1969, 477, 5201, 3946, 198, 198, 2, 2251, 62, 21858, 3419, 1377, 14276, 1693, 6282, 198, 198, 2, 651, 62, 21858, 62, 1525, 62, 3672, 3419, 1377, 422, 257, 1438, 284, 1064, 262, 1693, 26, 1438, 318, 3748, 198, 198, 2, 651, 62, 21858, 62, 1525, 62, 312, 3419, 1377, 651, 62, 21858, 62, 3500, 5387, 4686, 198, 198, 2, 651, 62, 21858, 62, 1525, 62, 2435, 3419, 1377, 651, 1693, 1262, 640, 5739, 198, 198, 2, 19818, 62, 21858, 3419, 1377, 651, 477, 3519, 1321, 286, 428, 1693, 198, 198, 2, 651, 62, 21858, 62, 83, 6791, 7, 3672, 8, 1377, 905, 262, 8861, 3519, 284, 428, 1693, 198, 198, 2, 923, 62, 21858, 62, 35943, 7, 21858, 62, 3672, 11, 4876, 62, 312, 8, 1377, 923, 257, 4876, 198, 198, 2, 5461, 62, 21858, 62, 35943, 7, 21858, 62, 3672, 11, 4876, 62, 312, 8, 1377, 5461, 14, 19836, 257, 4876, 198, 198, 2, 651, 62, 14421, 62, 35943, 7, 3672, 8, 1377, 651, 1459, 4876, 198, 198, 2, 651, 62, 19545, 62, 35943, 7, 3672, 8, 1377, 651, 1306, 4876, 198, 198, 2, 468, 62, 43952, 7, 21858, 11, 4876, 8, 1377, 468, 4876, 357, 21858, 11, 4876, 8, 5201, 30, 198, 198, 2, 318, 62, 46981, 7, 21858, 11, 4876, 8, 1377, 468, 4876, 357, 21858, 11, 4876, 8, 2067, 30, 198, 198, 2, 923, 62, 19545, 62, 35943, 7, 21858, 8, 1377, 923, 1306, 4876, 198, 198, 2, 5461, 62, 14421, 62, 35943, 7, 21858, 8, 1377, 5461, 1459, 4876, 198, 198, 2, 905, 62, 14421, 62, 35943, 7, 21858, 8, 1377, 905, 1459, 4876, 286, 1693, 198, 198, 2, 905, 62, 19545, 62, 35943, 7, 21858, 8, 1377, 905, 1306, 4876, 286, 1693, 198, 2, 905, 7, 21858, 8, 1377, 3359, 257, 1693, 198, 198, 2, 12233, 7, 21858, 8, 1377, 12233, 257, 1693, 198, 198, 2, 1037, 7, 26652, 8, 1377, 1037, 2163, 198, 198, 2, 772, 7, 72, 8, 1377, 6407, 318, 1312, 318, 281, 772, 1271, 198, 198, 2, 651, 62, 27979, 62, 525, 62, 43350, 7, 8019, 62, 4906, 8, 1377, 5004, 11022, 583, 7846, 198, 198, 2, 976, 62, 83, 1758, 62, 32016, 7, 8019, 82, 8, 1377, 2198, 611, 477, 5888, 389, 1262, 262, 976, 9379, 198, 198, 2, 10285, 3419, 1377, 10285, 477, 3298, 9633, 198, 198, 2, 3716, 4560, 198, 198, 2, 20176, 50, 62, 18973, 62, 51, 11860, 2767, 796, 838, 198, 2, 38570, 5883, 1546, 62, 18973, 62, 33177, 796, 2310, 198, 198, 2, 787, 62, 11128, 62, 22046, 7, 67, 8, 1377, 787, 7159, 422, 257, 22155, 198, 198, 2, 787, 62, 11128, 7, 4868, 8, 198, 198, 2, 651, 62, 9806, 62, 11128, 62, 17618, 7, 565, 5819, 8, 198, 198, 4805, 2662, 11571, 796, 366, 27184, 29, 366, 198, 198, 2, 7582, 3419, 1377, 14333, 7582, 628, 198, 2, 12260, 7, 22046, 8, 1377, 12260, 26498, 58, 15, 4357, 26498, 58, 16, 47715, 628, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 628, 197, 361, 18896, 7, 17597, 13, 853, 85, 8, 1279, 362, 25, 198, 197, 197, 29149, 3419, 198, 197, 17772, 25, 198, 197, 197, 411, 796, 12260, 7, 17597, 13, 853, 85, 58, 16, 25, 12962, 198, 197, 197, 361, 581, 25, 198, 197, 197, 197, 361, 2099, 7, 411, 8, 6624, 2099, 7, 21737, 2599, 198, 197, 197, 197, 197, 1640, 1312, 287, 581, 25, 198, 197, 197, 197, 197, 197, 4798, 1312, 198, 197, 197, 197, 17772, 25, 198, 197, 197, 197, 197, 4798, 581, 198 ]
2.551918
3,024
from src.data.load_dictionaries import load_dictionaries, create_key_skills from src.data.load_vacancies import load_vacancies from src.data.vacancy import Vacancy
[ 6738, 12351, 13, 7890, 13, 2220, 62, 67, 2867, 3166, 1330, 3440, 62, 67, 2867, 3166, 11, 2251, 62, 2539, 62, 8135, 2171, 198, 6738, 12351, 13, 7890, 13, 2220, 62, 85, 330, 16183, 1330, 3440, 62, 85, 330, 16183, 198, 6738, 12351, 13, 7890, 13, 85, 330, 3883, 1330, 25709, 3883, 198 ]
3.09434
53
"""" Author: Jayson C. Garrison Dates: 01/19/2022 Course: CS-5333 (Machine Learning) Description: Function that partitions data according to five fold cross validation GitHub: https://github.com/jayson-garrison/ML-Naive-Bayes """ # partition a data set into a list of 5 tuples for training and testing # five fold data partition
[ 15931, 15931, 198, 13838, 25, 23288, 261, 327, 13, 39233, 198, 35, 689, 25, 5534, 14, 1129, 14, 1238, 1828, 198, 49046, 25, 9429, 12, 20, 20370, 357, 37573, 18252, 8, 198, 11828, 25, 15553, 326, 43869, 1366, 1864, 284, 1936, 5591, 3272, 21201, 198, 38, 270, 16066, 25, 3740, 1378, 12567, 13, 785, 14, 73, 34907, 12, 70, 22472, 14, 5805, 12, 26705, 425, 12, 15262, 274, 198, 37811, 628, 220, 220, 220, 1303, 18398, 257, 1366, 900, 656, 257, 1351, 286, 642, 12777, 2374, 329, 3047, 290, 4856, 198, 220, 220, 220, 1303, 1936, 5591, 1366, 18398 ]
3.40404
99
# # Copyright (c) 2016 Stefan Seefeld # All rights reserved. # # This file is part of Faber. It is made available under the # Boost Software License, Version 1.0. # (Consult LICENSE or http://www.boost.org/LICENSE_1_0.txt) from .check import check from ..artefact import intermediate, always from ..tools.compiler import compiler from ..rule import rule, alias from ..artefacts.object import object class try_compile(check): """Try to compile a chunk of source code."""
[ 2, 198, 2, 15069, 357, 66, 8, 1584, 28842, 1001, 22521, 335, 198, 2, 1439, 2489, 10395, 13, 198, 2, 198, 2, 770, 2393, 318, 636, 286, 14236, 263, 13, 632, 318, 925, 1695, 739, 262, 198, 2, 19835, 10442, 13789, 11, 10628, 352, 13, 15, 13, 198, 2, 357, 9444, 586, 38559, 24290, 393, 2638, 1378, 2503, 13, 39521, 13, 2398, 14, 43, 2149, 24290, 62, 16, 62, 15, 13, 14116, 8, 198, 198, 6738, 764, 9122, 1330, 2198, 198, 6738, 11485, 433, 891, 529, 1330, 19898, 11, 1464, 198, 6738, 11485, 31391, 13, 5589, 5329, 1330, 17050, 198, 6738, 11485, 25135, 1330, 3896, 11, 16144, 198, 6738, 11485, 433, 891, 8656, 13, 15252, 1330, 2134, 628, 198, 4871, 1949, 62, 5589, 576, 7, 9122, 2599, 198, 220, 220, 220, 37227, 23433, 284, 17632, 257, 16058, 286, 2723, 2438, 526, 15931, 198 ]
3.335664
143
from django.apps import AppConfig
[ 6738, 42625, 14208, 13, 18211, 1330, 2034, 16934, 628 ]
3.888889
9
#! /usr/bin/env python3 #--------------------------------- # Plots errors of experiments # obtained from iModel output # Pedro Peixoto ([email protected]) # Novembre 2018 #---------------------------------- import sys import os import re import string import numpy as np import matplotlib #matplotlib.use('Agg') import matplotlib.pyplot as plt from matplotlib.figure import Figure #Custom plotting setup import imodel_plot from imodel_plot import Plotter, PlotterPanel import imodel_dict from imodel_dict import Names, Filter # input filename input_filename = 'errors.txt' if len(sys.argv) <= 1 : print("I need 1 argument:") print("A filename containing the errors generated by imodel") sys.exit(1) if len(sys.argv) > 1: input_filename = sys.argv[1] with open(input_filename) as f: lines = f.readlines() #get header head = lines[0] #print(head) if head[-1] == '\n': head = head[0:-1] head = head.split() print(head) imethod = head.index("Methods") ioperator = head.index("Operator") igridname = head.index("Grid") igridres = head.index("Mesh") imaxerror = head.index("MaxError") imaxerrorrel = head.index("MaxErrorRel") irmserror = head.index("RMSError") methods = [] operators = [] maxerrors = [] rmserrors = [] gridres = [] gridnames = [] for i, l in enumerate(lines[1:]): if l[-1] == '\n': #get rid of \n l = l[0:-1] d = l.split() #line data #print(d) # skip invalid nan's if d[imaxerror] == 'nan': continue operators.append(d[ioperator]) methods.append(d[imethod]) maxerrors.append(float(d[imaxerror])) rmserrors.append(float(d[irmserror])) gridres.append(int(d[igridres])) gridnames.append((d[igridname].rstrip(string.digits))) #Get unique operator names operators_list=sorted(set(operators)) methods_list=sorted(set(methods)) grids_list=sorted(set(gridnames)) print("Full options available") print(operators_list) print(methods_list) print(grids_list) print("---------------------") print() dict=Names("naming_conv.csv") #Load naming convention filter=Filter("filter.csv") #load filtering conditions print(dict) #Apply filters operators_list=filter.select(operators_list, 'operator') grids_list=filter.select(grids_list, 'grid') methods_list=filter.select(methods_list, 'method') #methods_list=filter.select(methods_list) #grids_list=filter.select(grids_list) print("Filtred lists") print(operators_list) print(methods_list) print(grids_list) print("---------------------") print() #Plot for each operator for oper in operators_list: outname=input_filename.replace('.txt', "_"+oper+".eps") #outnamerms=input_filename.replace('.txt', "_"+oper+"_rms.eps") title=dict.names.get(oper, oper) figure = PlotterPanel( 2, title, ["grid points", "grid points"], ["max error", "rms error"]) #figurerms = Plotter(oper, "grid points", "rms error") c = 0 for mtd in methods_list: for grd in grids_list: name=mtd+"_"+grd[0:-1] name=dict.names.get(name, name) x = [] ymax = [] yrms = [] for i, val in enumerate(maxerrors): if operators[i] == oper and methods[i] == mtd and gridnames[i] == grd: x.append(gridres[i]) ymax.append(maxerrors[i]) yrms.append(rmserrors[i]) figure.plot( 0, x, ymax, label=name, i=c) figure.plot( 1, x, yrms, label=name, i=c) c = c + 1 #plt.show() figure.finish(outname) #figurerms.finish(outnamerms) plt.show()
[ 2, 0, 1220, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 2, 3880, 12, 198, 2, 220, 220, 1345, 1747, 8563, 286, 10256, 198, 2, 220, 220, 220, 220, 220, 6492, 422, 1312, 17633, 5072, 198, 2, 220, 220, 28855, 2631, 844, 2069, 357, 27768, 844, 2069, 31, 17723, 13, 1671, 8, 198, 2, 220, 220, 399, 659, 2022, 260, 2864, 198, 2, 3880, 438, 628, 198, 11748, 25064, 198, 11748, 28686, 198, 11748, 302, 198, 11748, 4731, 198, 11748, 299, 32152, 355, 45941, 198, 198, 11748, 2603, 29487, 8019, 198, 2, 6759, 29487, 8019, 13, 1904, 10786, 46384, 11537, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 6738, 2603, 29487, 8019, 13, 26875, 1330, 11291, 198, 198, 2, 15022, 29353, 9058, 198, 11748, 545, 375, 417, 62, 29487, 198, 6738, 545, 375, 417, 62, 29487, 1330, 28114, 353, 11, 28114, 353, 26639, 198, 198, 11748, 545, 375, 417, 62, 11600, 198, 6738, 545, 375, 417, 62, 11600, 1330, 28531, 11, 25853, 198, 198, 2, 5128, 29472, 198, 15414, 62, 34345, 796, 705, 48277, 13, 14116, 6, 198, 361, 18896, 7, 17597, 13, 853, 85, 8, 19841, 352, 1058, 198, 197, 4798, 7203, 40, 761, 352, 4578, 25, 4943, 198, 197, 4798, 7203, 32, 29472, 7268, 262, 8563, 7560, 416, 545, 375, 417, 4943, 198, 197, 17597, 13, 37023, 7, 16, 8, 198, 197, 198, 361, 18896, 7, 17597, 13, 853, 85, 8, 1875, 352, 25, 198, 197, 15414, 62, 34345, 796, 25064, 13, 853, 85, 58, 16, 60, 198, 197, 198, 198, 4480, 1280, 7, 15414, 62, 34345, 8, 355, 277, 25, 198, 197, 6615, 796, 277, 13, 961, 6615, 3419, 198, 198, 2, 1136, 13639, 198, 2256, 796, 3951, 58, 15, 60, 198, 2, 4798, 7, 2256, 8, 198, 361, 1182, 58, 12, 16, 60, 6624, 705, 59, 77, 10354, 198, 197, 2256, 796, 1182, 58, 15, 21912, 16, 60, 198, 2256, 796, 1182, 13, 35312, 3419, 198, 4798, 7, 2256, 8, 198, 198, 38813, 2065, 796, 1182, 13, 9630, 7203, 46202, 4943, 198, 72, 46616, 796, 1182, 13, 9630, 7203, 18843, 1352, 4943, 198, 3692, 312, 3672, 796, 1182, 13, 9630, 7203, 41339, 4943, 198, 3692, 312, 411, 796, 1182, 13, 9630, 7203, 37031, 4943, 198, 320, 897, 18224, 796, 1182, 13, 9630, 7203, 11518, 12331, 4943, 198, 320, 897, 18224, 2411, 796, 1182, 13, 9630, 7203, 11518, 12331, 6892, 4943, 198, 8789, 18224, 796, 1182, 13, 9630, 7203, 29138, 5188, 81, 1472, 4943, 198, 198, 24396, 82, 796, 17635, 198, 3575, 2024, 796, 17635, 198, 9806, 48277, 796, 17635, 198, 81, 907, 48277, 796, 17635, 198, 25928, 411, 796, 17635, 198, 25928, 14933, 796, 17635, 198, 198, 1640, 1312, 11, 300, 287, 27056, 378, 7, 6615, 58, 16, 47715, 2599, 198, 197, 361, 300, 58, 12, 16, 60, 6624, 705, 59, 77, 10354, 1303, 1136, 5755, 286, 3467, 77, 198, 197, 197, 75, 796, 300, 58, 15, 21912, 16, 60, 628, 197, 67, 796, 300, 13, 35312, 3419, 1303, 1370, 1366, 198, 197, 2, 4798, 7, 67, 8, 198, 197, 2, 14267, 12515, 15709, 338, 198, 197, 361, 288, 58, 320, 897, 18224, 60, 6624, 705, 12647, 10354, 198, 197, 197, 43043, 198, 197, 197, 198, 197, 3575, 2024, 13, 33295, 7, 67, 58, 72, 46616, 12962, 198, 197, 24396, 82, 13, 33295, 7, 67, 58, 38813, 2065, 12962, 198, 197, 9806, 48277, 13, 33295, 7, 22468, 7, 67, 58, 320, 897, 18224, 60, 4008, 198, 197, 81, 907, 48277, 13, 33295, 7, 22468, 7, 67, 58, 8789, 18224, 60, 4008, 198, 197, 25928, 411, 13, 33295, 7, 600, 7, 67, 58, 3692, 312, 411, 60, 4008, 198, 197, 25928, 14933, 13, 33295, 19510, 67, 58, 3692, 312, 3672, 4083, 81, 36311, 7, 8841, 13, 12894, 896, 22305, 628, 198, 2, 3855, 3748, 10088, 3891, 198, 3575, 2024, 62, 4868, 28, 82, 9741, 7, 2617, 7, 3575, 2024, 4008, 198, 24396, 82, 62, 4868, 28, 82, 9741, 7, 2617, 7, 24396, 82, 4008, 198, 2164, 2340, 62, 4868, 28, 82, 9741, 7, 2617, 7, 25928, 14933, 4008, 198, 4798, 7203, 13295, 3689, 1695, 4943, 198, 4798, 7, 3575, 2024, 62, 4868, 8, 198, 4798, 7, 24396, 82, 62, 4868, 8, 198, 4798, 7, 2164, 2340, 62, 4868, 8, 198, 4798, 7203, 19351, 12, 4943, 198, 4798, 3419, 628, 198, 11600, 28, 36690, 7203, 77, 3723, 62, 42946, 13, 40664, 4943, 1303, 8912, 19264, 9831, 198, 24455, 28, 22417, 7203, 24455, 13, 40664, 4943, 1303, 2220, 25431, 3403, 198, 4798, 7, 11600, 8, 198, 2, 44836, 16628, 198, 3575, 2024, 62, 4868, 28, 24455, 13, 19738, 7, 3575, 2024, 62, 4868, 11, 705, 46616, 11537, 198, 2164, 2340, 62, 4868, 28, 24455, 13, 19738, 7, 2164, 2340, 62, 4868, 11, 705, 25928, 11537, 198, 24396, 82, 62, 4868, 28, 24455, 13, 19738, 7, 24396, 82, 62, 4868, 11, 705, 24396, 11537, 198, 2, 24396, 82, 62, 4868, 28, 24455, 13, 19738, 7, 24396, 82, 62, 4868, 8, 198, 2, 2164, 2340, 62, 4868, 28, 24455, 13, 19738, 7, 2164, 2340, 62, 4868, 8, 198, 4798, 7203, 37, 2326, 445, 8341, 4943, 198, 4798, 7, 3575, 2024, 62, 4868, 8, 198, 4798, 7, 24396, 82, 62, 4868, 8, 198, 4798, 7, 2164, 2340, 62, 4868, 8, 198, 4798, 7203, 19351, 12, 4943, 198, 4798, 3419, 628, 198, 2, 43328, 329, 1123, 10088, 198, 1640, 1515, 287, 12879, 62, 4868, 25, 198, 197, 448, 3672, 28, 15414, 62, 34345, 13, 33491, 7, 4458, 14116, 3256, 45434, 1, 10, 3575, 10, 1911, 25386, 4943, 198, 197, 2, 448, 77, 2382, 907, 28, 15414, 62, 34345, 13, 33491, 7, 4458, 14116, 3256, 45434, 1, 10, 3575, 10, 1, 62, 81, 907, 13, 25386, 4943, 198, 197, 7839, 28, 11600, 13, 14933, 13, 1136, 7, 3575, 11, 1515, 8, 198, 197, 26875, 796, 28114, 353, 26639, 7, 362, 11, 3670, 11, 14631, 25928, 2173, 1600, 366, 25928, 2173, 33116, 14631, 9806, 4049, 1600, 366, 81, 907, 4049, 8973, 8, 198, 197, 2, 5647, 15051, 907, 796, 28114, 353, 7, 3575, 11, 366, 25928, 2173, 1600, 366, 81, 907, 4049, 4943, 198, 197, 66, 796, 657, 198, 197, 1640, 285, 8671, 287, 5050, 62, 4868, 25, 198, 197, 197, 1640, 1036, 67, 287, 50000, 62, 4868, 25, 198, 197, 197, 197, 3672, 28, 76, 8671, 10, 1, 62, 1, 10, 2164, 67, 58, 15, 21912, 16, 60, 198, 197, 197, 197, 3672, 28, 11600, 13, 14933, 13, 1136, 7, 3672, 11, 1438, 8, 198, 197, 197, 197, 87, 796, 17635, 198, 197, 197, 197, 4948, 897, 796, 17635, 198, 197, 197, 197, 2417, 907, 796, 17635, 198, 197, 197, 197, 1640, 1312, 11, 1188, 287, 27056, 378, 7, 9806, 48277, 2599, 198, 197, 197, 197, 197, 361, 12879, 58, 72, 60, 6624, 1515, 290, 5050, 58, 72, 60, 6624, 285, 8671, 290, 10706, 14933, 58, 72, 60, 6624, 1036, 67, 25, 198, 197, 197, 197, 197, 197, 87, 13, 33295, 7, 25928, 411, 58, 72, 12962, 198, 197, 197, 197, 197, 197, 4948, 897, 13, 33295, 7, 9806, 48277, 58, 72, 12962, 198, 197, 197, 197, 197, 197, 2417, 907, 13, 33295, 7, 81, 907, 48277, 58, 72, 12962, 198, 197, 197, 197, 26875, 13, 29487, 7, 657, 11, 2124, 11, 331, 9806, 11, 6167, 28, 3672, 11, 1312, 28, 66, 8, 198, 197, 197, 197, 26875, 13, 29487, 7, 352, 11, 2124, 11, 42635, 907, 11, 6167, 28, 3672, 11, 1312, 28, 66, 8, 198, 197, 197, 197, 66, 796, 269, 1343, 352, 198, 197, 197, 197, 198, 197, 197, 197, 2, 489, 83, 13, 12860, 3419, 198, 197, 197, 197, 198, 197, 26875, 13, 15643, 680, 7, 448, 3672, 8, 628, 197, 2, 5647, 15051, 907, 13, 15643, 680, 7, 448, 77, 2382, 907, 8, 628, 198, 489, 83, 13, 12860, 3419, 628 ]
2.587963
1,296
# -*- coding: utf-8 -*- import json from os import chdir, getcwd, makedirs, mkdir, walk from os.path import abspath, exists, join from shutil import copyfile, rmtree from urlparse import urljoin, urlparse, urlunparse, uses_netloc, uses_relative from chameleon.zpt.template import PageTextTemplateFile from clik import App from pyramid.config import Configurator from pyramid.events import BeforeRender, ContextFound from pyramid.paster import get_appsettings from pyramid.path import AssetResolver from pyramid.request import Request from pyramid.scripting import prepare from pyramid.view import render_view from pyramid_basemodel import bind_engine from sqlalchemy import engine_from_config from h import __version__, api version = __version__ description = """\ The Hypothes.is Project Annotation System """ command = App( 'hypothesis', version=version, description=description, args_callback=get_config, ) # Teach urlparse about extension schemes uses_netloc.append('chrome-extension') uses_relative.append('chrome-extension') # Fetch an asset spec resolver resolve = AssetResolver().resolve @command(usage='CONFIG_FILE') def init_db(settings): """Create the database models.""" store = api.store_from_settings(settings) api.create_db(store) engine = engine_from_config(settings, 'sqlalchemy.') bind_engine(engine, should_create=True) @command(usage='config_file') def assets(settings): """Build the static assets.""" config = Configurator(settings=settings) config.include('h.assets') for bundle in config.get_webassets_env(): bundle.urls() @command(usage='config_file base_url [static_url]') def extension(args, console, settings): """Build the browser extensions. The first argument is the base URL of an h installation: http://localhost:5000 An optional second argument can be used to specify the location for static assets. Examples: http://static.example.com/ chrome-extension://extensionid/public """ if len(args) == 1: console.error('You must supply a url to the hosted backend.') return 2 elif len(args) == 2: assets_url = settings['webassets.base_url'] else: settings['webassets.base_url'] = args[2] assets_url = args[2] base_url = args[1] # Fully-qualify the static asset url parts = urlparse(assets_url) if not parts.netloc: base = urlparse(base_url) parts = (base.scheme, base.netloc, parts.path, parts.params, parts.query, parts.fragment) assets_url = urlunparse(parts) # Set up the assets url and source path mapping settings['webassets.base_dir'] = abspath('./build/chrome/public') settings['webassets.base_url'] = assets_url settings['webassets.paths'] = json.dumps({ resolve('h:static').abspath(): assets_url }) # Turn off the webassets cache and manifest settings['webassets.cache'] = None settings['webassets.manifest'] = None config = Configurator(settings=settings) config.include('h') config.add_subscriber(add_base_url, BeforeRender) config.commit() # Build it request = Request.blank('/app', base_url=base_url) chrome(prepare(registry=config.registry, request=request)) # XXX: Change when webassets allows setting the cache option # As of 0.10 it's only possible to pass a sass config with string values rmtree('./build/chrome/public/.sass-cache') main = command.main
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 11748, 33918, 198, 6738, 28686, 1330, 442, 15908, 11, 651, 66, 16993, 11, 285, 4335, 17062, 11, 33480, 15908, 11, 2513, 198, 6738, 28686, 13, 6978, 1330, 2352, 6978, 11, 7160, 11, 4654, 198, 6738, 4423, 346, 1330, 4866, 7753, 11, 374, 16762, 631, 198, 6738, 19016, 29572, 1330, 19016, 22179, 11, 19016, 29572, 11, 19016, 403, 29572, 11, 3544, 62, 3262, 17946, 11, 3544, 62, 43762, 198, 198, 6738, 442, 480, 38970, 13, 89, 457, 13, 28243, 1330, 7873, 8206, 30800, 8979, 198, 6738, 537, 1134, 1330, 2034, 198, 6738, 27944, 13, 11250, 1330, 17056, 333, 1352, 198, 6738, 27944, 13, 31534, 1330, 7413, 45819, 11, 30532, 21077, 198, 6738, 27944, 13, 79, 1603, 1330, 651, 62, 1324, 33692, 198, 6738, 27944, 13, 6978, 1330, 31433, 4965, 14375, 198, 6738, 27944, 13, 25927, 1330, 19390, 198, 6738, 27944, 13, 12048, 278, 1330, 8335, 198, 6738, 27944, 13, 1177, 1330, 8543, 62, 1177, 198, 6738, 27944, 62, 12093, 368, 375, 417, 1330, 11007, 62, 18392, 198, 6738, 44161, 282, 26599, 1330, 3113, 62, 6738, 62, 11250, 198, 198, 6738, 289, 1330, 11593, 9641, 834, 11, 40391, 628, 198, 9641, 796, 11593, 9641, 834, 198, 11213, 796, 37227, 59, 198, 464, 21209, 31690, 13, 271, 4935, 1052, 38983, 4482, 198, 37811, 198, 198, 21812, 796, 2034, 7, 198, 220, 220, 220, 705, 36362, 313, 8497, 3256, 198, 220, 220, 220, 2196, 28, 9641, 11, 198, 220, 220, 220, 6764, 28, 11213, 11, 198, 220, 220, 220, 26498, 62, 47423, 28, 1136, 62, 11250, 11, 198, 8, 198, 198, 2, 42015, 19016, 29572, 546, 7552, 16546, 198, 2664, 62, 3262, 17946, 13, 33295, 10786, 46659, 12, 2302, 3004, 11537, 198, 2664, 62, 43762, 13, 33295, 10786, 46659, 12, 2302, 3004, 11537, 198, 198, 2, 376, 7569, 281, 11171, 1020, 581, 14375, 198, 411, 6442, 796, 31433, 4965, 14375, 22446, 411, 6442, 628, 628, 628, 628, 198, 31, 21812, 7, 26060, 11639, 10943, 16254, 62, 25664, 11537, 198, 4299, 2315, 62, 9945, 7, 33692, 2599, 198, 220, 220, 220, 37227, 16447, 262, 6831, 4981, 526, 15931, 198, 220, 220, 220, 3650, 796, 40391, 13, 8095, 62, 6738, 62, 33692, 7, 33692, 8, 198, 220, 220, 220, 40391, 13, 17953, 62, 9945, 7, 8095, 8, 628, 220, 220, 220, 3113, 796, 3113, 62, 6738, 62, 11250, 7, 33692, 11, 705, 25410, 282, 26599, 2637, 8, 198, 220, 220, 220, 11007, 62, 18392, 7, 18392, 11, 815, 62, 17953, 28, 17821, 8, 628, 198, 31, 21812, 7, 26060, 11639, 11250, 62, 7753, 11537, 198, 4299, 6798, 7, 33692, 2599, 198, 220, 220, 220, 37227, 15580, 262, 9037, 6798, 526, 15931, 198, 220, 220, 220, 4566, 796, 17056, 333, 1352, 7, 33692, 28, 33692, 8, 198, 220, 220, 220, 4566, 13, 17256, 10786, 71, 13, 19668, 11537, 198, 220, 220, 220, 329, 18537, 287, 4566, 13, 1136, 62, 12384, 19668, 62, 24330, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 18537, 13, 6371, 82, 3419, 628, 198, 31, 21812, 7, 26060, 11639, 11250, 62, 7753, 2779, 62, 6371, 685, 12708, 62, 6371, 60, 11537, 198, 4299, 7552, 7, 22046, 11, 8624, 11, 6460, 2599, 198, 220, 220, 220, 37227, 15580, 262, 6444, 18366, 13, 628, 220, 220, 220, 383, 717, 4578, 318, 262, 2779, 10289, 286, 281, 289, 9988, 25, 628, 220, 220, 220, 220, 220, 2638, 1378, 36750, 25, 27641, 628, 220, 220, 220, 1052, 11902, 1218, 4578, 460, 307, 973, 284, 11986, 262, 4067, 329, 9037, 198, 220, 220, 220, 6798, 13, 628, 220, 220, 220, 21066, 25, 628, 220, 220, 220, 220, 220, 2638, 1378, 12708, 13, 20688, 13, 785, 14, 198, 220, 220, 220, 220, 220, 32030, 12, 2302, 3004, 1378, 2302, 3004, 312, 14, 11377, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 18896, 7, 22046, 8, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 8624, 13, 18224, 10786, 1639, 1276, 5127, 257, 19016, 284, 262, 12007, 30203, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 362, 198, 220, 220, 220, 1288, 361, 18896, 7, 22046, 8, 6624, 362, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6798, 62, 6371, 796, 6460, 17816, 12384, 19668, 13, 8692, 62, 6371, 20520, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6460, 17816, 12384, 19668, 13, 8692, 62, 6371, 20520, 796, 26498, 58, 17, 60, 198, 220, 220, 220, 220, 220, 220, 220, 6798, 62, 6371, 796, 26498, 58, 17, 60, 628, 220, 220, 220, 2779, 62, 6371, 796, 26498, 58, 16, 60, 628, 220, 220, 220, 1303, 40234, 12, 13255, 1958, 262, 9037, 11171, 19016, 198, 220, 220, 220, 3354, 796, 19016, 29572, 7, 19668, 62, 6371, 8, 198, 220, 220, 220, 611, 407, 3354, 13, 3262, 17946, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2779, 796, 19016, 29572, 7, 8692, 62, 6371, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3354, 796, 357, 8692, 13, 15952, 1326, 11, 2779, 13, 3262, 17946, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3354, 13, 6978, 11, 3354, 13, 37266, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3354, 13, 22766, 11, 3354, 13, 8310, 363, 434, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6798, 62, 6371, 796, 19016, 403, 29572, 7, 42632, 8, 628, 220, 220, 220, 1303, 5345, 510, 262, 6798, 19016, 290, 2723, 3108, 16855, 198, 220, 220, 220, 6460, 17816, 12384, 19668, 13, 8692, 62, 15908, 20520, 796, 2352, 6978, 7, 4458, 14, 11249, 14, 46659, 14, 11377, 11537, 198, 220, 220, 220, 6460, 17816, 12384, 19668, 13, 8692, 62, 6371, 20520, 796, 6798, 62, 6371, 198, 220, 220, 220, 6460, 17816, 12384, 19668, 13, 6978, 82, 20520, 796, 33918, 13, 67, 8142, 15090, 198, 220, 220, 220, 220, 220, 220, 220, 10568, 10786, 71, 25, 12708, 27691, 397, 2777, 776, 33529, 6798, 62, 6371, 198, 220, 220, 220, 32092, 628, 220, 220, 220, 1303, 6756, 572, 262, 3992, 19668, 12940, 290, 10561, 198, 220, 220, 220, 6460, 17816, 12384, 19668, 13, 23870, 20520, 796, 6045, 198, 220, 220, 220, 6460, 17816, 12384, 19668, 13, 805, 8409, 20520, 796, 6045, 628, 220, 220, 220, 4566, 796, 17056, 333, 1352, 7, 33692, 28, 33692, 8, 198, 220, 220, 220, 4566, 13, 17256, 10786, 71, 11537, 198, 220, 220, 220, 4566, 13, 2860, 62, 7266, 1416, 24735, 7, 2860, 62, 8692, 62, 6371, 11, 7413, 45819, 8, 198, 220, 220, 220, 4566, 13, 41509, 3419, 628, 220, 220, 220, 1303, 10934, 340, 198, 220, 220, 220, 2581, 796, 19390, 13, 27190, 10786, 14, 1324, 3256, 2779, 62, 6371, 28, 8692, 62, 6371, 8, 198, 220, 220, 220, 32030, 7, 46012, 533, 7, 2301, 4592, 28, 11250, 13, 2301, 4592, 11, 2581, 28, 25927, 4008, 628, 220, 220, 220, 1303, 27713, 25, 9794, 618, 3992, 19668, 3578, 4634, 262, 12940, 3038, 198, 220, 220, 220, 1303, 1081, 286, 657, 13, 940, 340, 338, 691, 1744, 284, 1208, 257, 264, 562, 4566, 220, 351, 4731, 3815, 198, 220, 220, 220, 374, 16762, 631, 7, 4458, 14, 11249, 14, 46659, 14, 11377, 11757, 82, 562, 12, 23870, 11537, 628, 198, 12417, 796, 3141, 13, 12417, 198 ]
2.889796
1,225
import torch import math from typing import Sequence, Optional, Callable, Tuple, Dict, Union import typing from .sgld import dot from .verlet_sgld import VerletSGLD class HMC(VerletSGLD): """HMC with Verlet integration. Really `VerletSGLD` but with momentum=1 and temperature=1, and a different M-H acceptance probability. The user should call `sample_momentum` regularly to refresh the HMC momentum. Args: params (iterable): iterable of parameters to optimize or dicts defining parameter groups lr (float): learning rate num_data (int): the number of data points in this learning task raise_on_no_grad (bool): whether to complain if a parameter does not have a gradient raise_on_nan: whether to complain if a gradient is not all finite. """
[ 11748, 28034, 198, 11748, 10688, 198, 6738, 19720, 1330, 45835, 11, 32233, 11, 4889, 540, 11, 309, 29291, 11, 360, 713, 11, 4479, 198, 11748, 19720, 198, 198, 6738, 764, 45213, 335, 1330, 16605, 198, 6738, 764, 332, 1616, 62, 45213, 335, 1330, 4643, 1616, 50, 8763, 35, 628, 198, 4871, 367, 9655, 7, 13414, 1616, 50, 8763, 35, 2599, 198, 220, 220, 220, 37227, 39, 9655, 351, 4643, 1616, 11812, 13, 16123, 4600, 13414, 1616, 50, 8763, 35, 63, 475, 351, 12858, 28, 16, 290, 198, 220, 220, 220, 5951, 28, 16, 11, 290, 257, 1180, 337, 12, 39, 13427, 12867, 13, 628, 220, 220, 220, 383, 2836, 815, 869, 4600, 39873, 62, 32542, 298, 388, 63, 7987, 284, 14976, 262, 367, 9655, 12858, 13, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 42287, 357, 2676, 540, 2599, 11629, 540, 286, 10007, 284, 27183, 393, 8633, 82, 16215, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11507, 2628, 198, 220, 220, 220, 220, 220, 220, 220, 300, 81, 357, 22468, 2599, 4673, 2494, 198, 220, 220, 220, 220, 220, 220, 220, 997, 62, 7890, 357, 600, 2599, 262, 1271, 286, 1366, 2173, 287, 428, 4673, 4876, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 62, 261, 62, 3919, 62, 9744, 357, 30388, 2599, 1771, 284, 13121, 611, 257, 11507, 857, 407, 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, 423, 257, 31312, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 62, 261, 62, 12647, 25, 1771, 284, 13121, 611, 257, 31312, 318, 407, 477, 27454, 13, 198, 220, 220, 220, 37227, 198 ]
2.830565
301
#!/usr/bin/env python # Copyright (c) Microsoft Corporation. # Licensed under the MIT license. """ Usage: vocab.py [options] TRAIN_FILE VOCAB_FILE Options: -h --help Show this screen. --size=<int> vocab size [default: 10000] --freq_cutoff=<int> frequency cutoff [default: 2] """ from collections import Counter from itertools import chain from docopt import docopt import json if __name__ == '__main__': from diff_representation.dataset import DataSet args = docopt(__doc__) train_set = DataSet.load_from_jsonl(args['TRAIN_FILE']) corpus = [change.previous_code_chunk + change.updated_code_chunk + change.context for change in train_set] vocab_entry = VocabEntry.from_corpus(corpus, size=int(args['--size']), freq_cutoff=int(args['--freq_cutoff'])) print('built vocabulary %s' % vocab_entry) # torch.save(vocab_entry, open(args['VOCAB_FILE'], 'wb'))
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 15069, 357, 66, 8, 5413, 10501, 13, 198, 2, 49962, 739, 262, 17168, 5964, 13, 198, 37811, 198, 28350, 25, 198, 220, 220, 220, 12776, 397, 13, 9078, 685, 25811, 60, 29125, 1268, 62, 25664, 569, 4503, 6242, 62, 25664, 198, 198, 29046, 25, 198, 220, 220, 220, 532, 71, 1377, 16794, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5438, 428, 3159, 13, 198, 220, 220, 220, 1377, 7857, 28, 27, 600, 29, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12776, 397, 2546, 685, 12286, 25, 33028, 60, 198, 220, 220, 220, 1377, 19503, 80, 62, 8968, 2364, 28, 27, 600, 29, 220, 220, 220, 220, 220, 220, 220, 8373, 45616, 685, 12286, 25, 362, 60, 198, 37811, 198, 198, 6738, 17268, 1330, 15034, 198, 6738, 340, 861, 10141, 1330, 6333, 198, 6738, 2205, 8738, 1330, 2205, 8738, 198, 11748, 33918, 628, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 422, 814, 62, 15603, 341, 13, 19608, 292, 316, 1330, 6060, 7248, 628, 220, 220, 220, 26498, 796, 2205, 8738, 7, 834, 15390, 834, 8, 198, 220, 220, 220, 4512, 62, 2617, 796, 6060, 7248, 13, 2220, 62, 6738, 62, 17752, 75, 7, 22046, 17816, 51, 3861, 1268, 62, 25664, 6, 12962, 198, 220, 220, 220, 35789, 796, 685, 3803, 13, 3866, 1442, 62, 8189, 62, 354, 2954, 1343, 1487, 13, 43162, 62, 8189, 62, 354, 2954, 1343, 1487, 13, 22866, 329, 1487, 287, 4512, 62, 2617, 60, 628, 220, 220, 220, 12776, 397, 62, 13000, 796, 47208, 397, 30150, 13, 6738, 62, 10215, 79, 385, 7, 10215, 79, 385, 11, 2546, 28, 600, 7, 22046, 17816, 438, 7857, 20520, 828, 2030, 80, 62, 8968, 2364, 28, 600, 7, 22046, 17816, 438, 19503, 80, 62, 8968, 2364, 20520, 4008, 198, 220, 220, 220, 3601, 10786, 18780, 25818, 4064, 82, 6, 4064, 12776, 397, 62, 13000, 8, 628, 220, 220, 220, 1303, 28034, 13, 21928, 7, 18893, 397, 62, 13000, 11, 1280, 7, 22046, 17816, 53, 4503, 6242, 62, 25664, 6, 4357, 705, 39346, 6, 4008, 198 ]
2.536388
371
import matplotlib.pyplot as plt import networkx as nx import pandas as pd from networkx.readwrite import json_graph, write_gexf from matplotlib import pylab summary_groups_data_path = '/Users/Juan/django_projects/adaptive-boxes/graphs/partitions_data/hall/summary_groups.csv' x_units_path = '/Users/Juan/django_projects/adaptive-boxes/graphs/partitions_data/hall/x_units.csv' y_units_path = '/Users/Juan/django_projects/adaptive-boxes/graphs/partitions_data/hall/y_units.csv' summary_groups = pd.read_csv(summary_groups_data_path) x_units = pd.read_csv(x_units_path) y_units = pd.read_csv(y_units_path) # Creating Graphs G = nx.Graph() # n_total_nodes = summary_groups['n_partitions'].sum() n_total_nodes = summary_groups.shape[0] H = nx.path_graph(n_total_nodes) G.add_nodes_from(H) for idx, row in x_units.iterrows(): # print(row) gi_0 = row['group_0'] gj_0 = row['partition_0'] gi_1 = row['group_1'] gj_1 = row['partition_1'] G.add_edge(gi_0, gi_1) for idx, row in y_units.iterrows(): # print(row) gi_0 = row['group_0'] gj_0 = row['partition_0'] gi_1 = row['group_1'] gj_1 = row['partition_1'] G.add_edge(gi_0, gi_1) print(G.number_of_nodes()) print(G.number_of_edges()) options = { 'node_color': 'yellow', 'node_size': 80, 'edge_color': 'red', 'width': 0.5, 'font_size': 8, 'font_color': 'black', } # save_graph(G, "./my_graph.pdf") # nx.draw(G, **options) nx.draw(G, with_labels=True, **options) plt.show() nx.write_gexf(G, "/Users/Juan/django_projects/adaptive-boxes/graphs/gexf/hall.gexf") # Info print(nx.info(G))
[ 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 3127, 87, 355, 299, 87, 198, 11748, 19798, 292, 355, 279, 67, 198, 6738, 3127, 87, 13, 961, 13564, 1330, 33918, 62, 34960, 11, 3551, 62, 25636, 69, 198, 6738, 2603, 29487, 8019, 1330, 279, 2645, 397, 628, 198, 49736, 62, 24432, 62, 7890, 62, 6978, 796, 31051, 14490, 14, 41, 7258, 14, 28241, 14208, 62, 42068, 14, 42552, 425, 12, 29305, 14, 34960, 82, 14, 3911, 1756, 62, 7890, 14, 18323, 14, 49736, 62, 24432, 13, 40664, 6, 198, 87, 62, 41667, 62, 6978, 796, 31051, 14490, 14, 41, 7258, 14, 28241, 14208, 62, 42068, 14, 42552, 425, 12, 29305, 14, 34960, 82, 14, 3911, 1756, 62, 7890, 14, 18323, 14, 87, 62, 41667, 13, 40664, 6, 198, 88, 62, 41667, 62, 6978, 796, 31051, 14490, 14, 41, 7258, 14, 28241, 14208, 62, 42068, 14, 42552, 425, 12, 29305, 14, 34960, 82, 14, 3911, 1756, 62, 7890, 14, 18323, 14, 88, 62, 41667, 13, 40664, 6, 628, 198, 49736, 62, 24432, 796, 279, 67, 13, 961, 62, 40664, 7, 49736, 62, 24432, 62, 7890, 62, 6978, 8, 198, 87, 62, 41667, 796, 279, 67, 13, 961, 62, 40664, 7, 87, 62, 41667, 62, 6978, 8, 198, 88, 62, 41667, 796, 279, 67, 13, 961, 62, 40664, 7, 88, 62, 41667, 62, 6978, 8, 628, 198, 2, 30481, 29681, 82, 198, 38, 796, 299, 87, 13, 37065, 3419, 198, 2, 299, 62, 23350, 62, 77, 4147, 796, 10638, 62, 24432, 17816, 77, 62, 3911, 1756, 6, 4083, 16345, 3419, 198, 77, 62, 23350, 62, 77, 4147, 796, 10638, 62, 24432, 13, 43358, 58, 15, 60, 198, 198, 39, 796, 299, 87, 13, 6978, 62, 34960, 7, 77, 62, 23350, 62, 77, 4147, 8, 198, 38, 13, 2860, 62, 77, 4147, 62, 6738, 7, 39, 8, 628, 198, 1640, 4686, 87, 11, 5752, 287, 2124, 62, 41667, 13, 2676, 8516, 33529, 198, 220, 220, 220, 1303, 3601, 7, 808, 8, 198, 220, 220, 220, 308, 72, 62, 15, 796, 5752, 17816, 8094, 62, 15, 20520, 198, 220, 220, 220, 308, 73, 62, 15, 796, 5752, 17816, 3911, 653, 62, 15, 20520, 198, 220, 220, 220, 308, 72, 62, 16, 796, 5752, 17816, 8094, 62, 16, 20520, 198, 220, 220, 220, 308, 73, 62, 16, 796, 5752, 17816, 3911, 653, 62, 16, 20520, 198, 220, 220, 220, 402, 13, 2860, 62, 14907, 7, 12397, 62, 15, 11, 308, 72, 62, 16, 8, 628, 198, 1640, 4686, 87, 11, 5752, 287, 331, 62, 41667, 13, 2676, 8516, 33529, 198, 220, 220, 220, 1303, 3601, 7, 808, 8, 198, 220, 220, 220, 308, 72, 62, 15, 796, 5752, 17816, 8094, 62, 15, 20520, 198, 220, 220, 220, 308, 73, 62, 15, 796, 5752, 17816, 3911, 653, 62, 15, 20520, 198, 220, 220, 220, 308, 72, 62, 16, 796, 5752, 17816, 8094, 62, 16, 20520, 198, 220, 220, 220, 308, 73, 62, 16, 796, 5752, 17816, 3911, 653, 62, 16, 20520, 198, 220, 220, 220, 402, 13, 2860, 62, 14907, 7, 12397, 62, 15, 11, 308, 72, 62, 16, 8, 628, 198, 4798, 7, 38, 13, 17618, 62, 1659, 62, 77, 4147, 28955, 198, 4798, 7, 38, 13, 17618, 62, 1659, 62, 276, 3212, 28955, 628, 198, 25811, 796, 1391, 198, 220, 220, 220, 220, 705, 17440, 62, 8043, 10354, 705, 36022, 3256, 198, 220, 220, 220, 220, 705, 17440, 62, 7857, 10354, 4019, 11, 198, 220, 220, 220, 220, 705, 14907, 62, 8043, 10354, 705, 445, 3256, 198, 220, 220, 220, 220, 705, 10394, 10354, 657, 13, 20, 11, 198, 220, 220, 220, 220, 705, 10331, 62, 7857, 10354, 807, 11, 198, 220, 220, 220, 220, 705, 10331, 62, 8043, 10354, 705, 13424, 3256, 198, 92, 198, 198, 2, 3613, 62, 34960, 7, 38, 11, 366, 19571, 1820, 62, 34960, 13, 12315, 4943, 198, 198, 2, 299, 87, 13, 19334, 7, 38, 11, 12429, 25811, 8, 198, 77, 87, 13, 19334, 7, 38, 11, 351, 62, 23912, 1424, 28, 17821, 11, 12429, 25811, 8, 198, 489, 83, 13, 12860, 3419, 198, 198, 77, 87, 13, 13564, 62, 25636, 69, 7, 38, 11, 12813, 14490, 14, 41, 7258, 14, 28241, 14208, 62, 42068, 14, 42552, 425, 12, 29305, 14, 34960, 82, 14, 25636, 69, 14, 18323, 13, 25636, 69, 4943, 198, 198, 2, 14151, 198, 4798, 7, 77, 87, 13, 10951, 7, 38, 4008, 198 ]
2.210095
733
# Bake the transform on each frame from one transform to another. # # This is similar to the graph editor's keyframe bake (without any smart key reduction), # but bakes one object to another. This is useful for baking a constraint to another # transform. # # For example, you can constrain a locator to a character's hand, and then bake the # locator to another locator. The second locator then has the position of the character's # hand on each frame, so you can constrain other things to it without creating a DG # dependency between the objects. # # This can also be used to bake history-dependent behavior like dynamics to keyframes. import math, time import pymel.core as pm from maya import OpenMaya as om from maya import OpenMayaAnim as oma from zMayaTools import maya_helpers # This isn't in the v1 API, but mixing it seems safe. from maya.api.MDGContextGuard import MDGContextGuard from zMayaTools import maya_logging log = maya_logging.get_log()
[ 2, 38493, 262, 6121, 319, 1123, 5739, 422, 530, 6121, 284, 1194, 13, 198, 2, 198, 2, 770, 318, 2092, 284, 262, 4823, 5464, 338, 1994, 14535, 28450, 357, 19419, 597, 4451, 1994, 7741, 828, 198, 2, 475, 275, 1124, 530, 2134, 284, 1194, 13, 220, 770, 318, 4465, 329, 16871, 257, 32315, 284, 1194, 198, 2, 6121, 13, 198, 2, 198, 2, 1114, 1672, 11, 345, 460, 1500, 3201, 257, 1179, 1352, 284, 257, 2095, 338, 1021, 11, 290, 788, 28450, 262, 198, 2, 1179, 1352, 284, 1194, 1179, 1352, 13, 220, 383, 1218, 1179, 1352, 788, 468, 262, 2292, 286, 262, 2095, 338, 198, 2, 1021, 319, 1123, 5739, 11, 523, 345, 460, 1500, 3201, 584, 1243, 284, 340, 1231, 4441, 257, 46133, 198, 2, 20203, 1022, 262, 5563, 13, 198, 2, 198, 2, 770, 460, 635, 307, 973, 284, 28450, 2106, 12, 21186, 4069, 588, 17262, 284, 1994, 37805, 13, 198, 11748, 10688, 11, 640, 198, 11748, 279, 4948, 417, 13, 7295, 355, 9114, 198, 6738, 743, 64, 1330, 4946, 6747, 64, 355, 39030, 198, 6738, 743, 64, 1330, 4946, 6747, 64, 35320, 355, 267, 2611, 198, 6738, 1976, 6747, 64, 33637, 1330, 743, 64, 62, 16794, 364, 198, 198, 2, 770, 2125, 470, 287, 262, 410, 16, 7824, 11, 475, 17090, 340, 2331, 3338, 13, 198, 6738, 743, 64, 13, 15042, 13, 12740, 38, 21947, 24502, 1330, 10670, 38, 21947, 24502, 220, 220, 220, 220, 198, 198, 6738, 1976, 6747, 64, 33637, 1330, 743, 64, 62, 6404, 2667, 198, 6404, 796, 743, 64, 62, 6404, 2667, 13, 1136, 62, 6404, 3419, 628 ]
3.631579
266
"""Model of a single magic card.""" from django.db import models from multiselectfield import MultiSelectField from django.utils.text import slugify class Set(models.Model): """Class for set model.""" name = models.CharField(max_length=50) set_id = models.CharField(max_length=5, null=True, blank=True) slug = models.SlugField(max_length=40, unique=True, blank=True, null=True) # sealed_format = models.ManyToManyField('self') big_set = models.ForeignKey('self', on_delete=models.CASCADE, blank=True, null=True, related_name='big_sets') small_set = models.ForeignKey('self', on_delete=models.CASCADE, blank=True, null=True, related_name='small_sets') third_set = models.ForeignKey('self', on_delete=models.CASCADE, blank=True, null=True, related_name='third_sets') def __str__(self): """Change how model is displayed when printed.""" return self.name class Card(models.Model): """Class for card model.""" COLORS = (['W', 'White'], ['U', 'Blue'], ['B', 'Black'], ['R', 'Red'], ['G', 'Green'], ['C', 'Colorless'], ['N', 'Generic']) RARITIES = (['M', 'Mythic-Rare'], ['R', 'Rare'], ['U', 'Uncommon'], ['C', 'Common']) cmc = models.CharField(max_length=20) colors = MultiSelectField(max_length=100, choices=COLORS) image = models.ImageField(upload_to='images') loyalty = models.IntegerField(null=True, blank=True) mana_cost = models.CharField(max_length=20, null=True, blank=True) name = models.CharField(max_length=30) power = models.CharField(max_length=5, null=True, blank=True) toughness = models.CharField(max_length=5, null=True, blank=True) rarity = models.CharField(max_length=20, choices=RARITIES) number = models.CharField(max_length=10) card_text = models.CharField(max_length=600, blank=True, null=True) card_type = models.CharField(max_length=50) card_subtypes = models.CharField(max_length=50, blank=True, null=True) from_set = models.ForeignKey(Set, on_delete=models.CASCADE, blank=True, null=True) number = models.CharField(max_length=10, null=True, blank=True) slug = models.SlugField(max_length=40, unique=True, blank=True, null=True) rares = models.ForeignKey(Set, on_delete=models.CASCADE, blank=True, null=True, related_name='rares') uncommons = models.ForeignKey(Set, on_delete=models.CASCADE, blank=True, null=True, related_name='uncommons') commons = models.ForeignKey(Set, on_delete=models.CASCADE, blank=True, null=True, related_name='commons') mythics = models.ForeignKey(Set, on_delete=models.CASCADE, blank=True, null=True, related_name='mythics') back_side = models.OneToOneField('self', on_delete=models.CASCADE, blank=True, null=True, related_name='front_side') in_pack = models.BooleanField(default=True) def save(self, *args, **kwargs): """Overwrite save to generate slug.""" if not self.slug: self.slug = self._get_unique_slug() super().save() def __str__(self): """Change how model is displayed when printed.""" return self.name class Deck(models.Model): """Class for a deck model.""" FORMATS = (['ST', 'Standard'], ['SE', 'Sealed'], ['DR', 'Draft']) name = models.CharField(max_length=50) deck_format = models.CharField(max_length=50, choices=FORMATS) card_list = models.ManyToManyField(Card) # class Transform(models.Model): # """Model for the fliped side of a trasnform card.""" # front =
[ 37811, 17633, 286, 257, 2060, 5536, 2657, 526, 15931, 198, 6738, 42625, 14208, 13, 9945, 1330, 4981, 198, 6738, 1963, 786, 801, 3245, 1330, 15237, 17563, 15878, 198, 6738, 42625, 14208, 13, 26791, 13, 5239, 1330, 31065, 1958, 628, 198, 4871, 5345, 7, 27530, 13, 17633, 2599, 198, 220, 220, 220, 37227, 9487, 329, 900, 2746, 526, 15931, 628, 220, 220, 220, 1438, 796, 4981, 13, 12441, 15878, 7, 9806, 62, 13664, 28, 1120, 8, 198, 220, 220, 220, 900, 62, 312, 796, 4981, 13, 12441, 15878, 7, 9806, 62, 13664, 28, 20, 11, 9242, 28, 17821, 11, 9178, 28, 17821, 8, 198, 220, 220, 220, 31065, 796, 4981, 13, 11122, 1018, 15878, 7, 9806, 62, 13664, 28, 1821, 11, 3748, 28, 17821, 11, 9178, 28, 17821, 11, 9242, 28, 17821, 8, 198, 220, 220, 220, 1303, 15283, 62, 18982, 796, 4981, 13, 7085, 2514, 7085, 15878, 10786, 944, 11537, 198, 220, 220, 220, 1263, 62, 2617, 796, 4981, 13, 33616, 9218, 10786, 944, 3256, 319, 62, 33678, 28, 27530, 13, 34, 42643, 19266, 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, 9178, 28, 17821, 11, 9242, 28, 17821, 11, 3519, 62, 3672, 11639, 14261, 62, 28709, 11537, 198, 220, 220, 220, 1402, 62, 2617, 796, 4981, 13, 33616, 9218, 10786, 944, 3256, 319, 62, 33678, 28, 27530, 13, 34, 42643, 19266, 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, 9178, 28, 17821, 11, 9242, 28, 17821, 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, 3519, 62, 3672, 11639, 17470, 62, 28709, 11537, 198, 220, 220, 220, 2368, 62, 2617, 796, 4981, 13, 33616, 9218, 10786, 944, 3256, 319, 62, 33678, 28, 27530, 13, 34, 42643, 19266, 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, 9178, 28, 17821, 11, 9242, 28, 17821, 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, 3519, 62, 3672, 11639, 17089, 62, 28709, 11537, 628, 220, 220, 220, 825, 11593, 2536, 834, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 19400, 703, 2746, 318, 9066, 618, 10398, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 3672, 628, 198, 4871, 5172, 7, 27530, 13, 17633, 2599, 198, 220, 220, 220, 37227, 9487, 329, 2657, 2746, 526, 15931, 628, 220, 220, 220, 20444, 20673, 796, 357, 17816, 54, 3256, 705, 12256, 6, 4357, 37250, 52, 3256, 705, 14573, 6, 4357, 37250, 33, 3256, 705, 9915, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37250, 49, 3256, 705, 7738, 6, 4357, 37250, 38, 3256, 705, 13719, 6, 4357, 37250, 34, 3256, 705, 10258, 1203, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37250, 45, 3256, 705, 46189, 6, 12962, 198, 220, 220, 220, 371, 1503, 30383, 796, 357, 17816, 44, 3256, 705, 41444, 291, 12, 26737, 6, 4357, 37250, 49, 3256, 705, 26737, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37250, 52, 3256, 705, 43023, 6, 4357, 37250, 34, 3256, 705, 17227, 6, 12962, 198, 220, 220, 220, 12067, 66, 796, 4981, 13, 12441, 15878, 7, 9806, 62, 13664, 28, 1238, 8, 198, 220, 220, 220, 7577, 796, 15237, 17563, 15878, 7, 9806, 62, 13664, 28, 3064, 11, 7747, 28, 25154, 20673, 8, 198, 220, 220, 220, 2939, 796, 4981, 13, 5159, 15878, 7, 25850, 62, 1462, 11639, 17566, 11537, 198, 220, 220, 220, 15843, 796, 4981, 13, 46541, 15878, 7, 8423, 28, 17821, 11, 9178, 28, 17821, 8, 198, 220, 220, 220, 13149, 62, 15805, 796, 4981, 13, 12441, 15878, 7, 9806, 62, 13664, 28, 1238, 11, 9242, 28, 17821, 11, 9178, 28, 17821, 8, 198, 220, 220, 220, 1438, 796, 4981, 13, 12441, 15878, 7, 9806, 62, 13664, 28, 1270, 8, 198, 220, 220, 220, 1176, 796, 4981, 13, 12441, 15878, 7, 9806, 62, 13664, 28, 20, 11, 9242, 28, 17821, 11, 9178, 28, 17821, 8, 198, 220, 220, 220, 35879, 796, 4981, 13, 12441, 15878, 7, 9806, 62, 13664, 28, 20, 11, 9242, 28, 17821, 11, 9178, 28, 17821, 8, 198, 220, 220, 220, 32823, 796, 4981, 13, 12441, 15878, 7, 9806, 62, 13664, 28, 1238, 11, 7747, 28, 49, 1503, 30383, 8, 198, 220, 220, 220, 1271, 796, 4981, 13, 12441, 15878, 7, 9806, 62, 13664, 28, 940, 8, 198, 220, 220, 220, 2657, 62, 5239, 796, 4981, 13, 12441, 15878, 7, 9806, 62, 13664, 28, 8054, 11, 9178, 28, 17821, 11, 9242, 28, 17821, 8, 198, 220, 220, 220, 2657, 62, 4906, 796, 4981, 13, 12441, 15878, 7, 9806, 62, 13664, 28, 1120, 8, 198, 220, 220, 220, 2657, 62, 7266, 19199, 796, 4981, 13, 12441, 15878, 7, 9806, 62, 13664, 28, 1120, 11, 9178, 28, 17821, 11, 9242, 28, 17821, 8, 198, 220, 220, 220, 422, 62, 2617, 796, 4981, 13, 33616, 9218, 7, 7248, 11, 319, 62, 33678, 28, 27530, 13, 34, 42643, 19266, 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, 9178, 28, 17821, 11, 9242, 28, 17821, 8, 198, 220, 220, 220, 1271, 796, 4981, 13, 12441, 15878, 7, 9806, 62, 13664, 28, 940, 11, 9242, 28, 17821, 11, 9178, 28, 17821, 8, 198, 220, 220, 220, 31065, 796, 4981, 13, 11122, 1018, 15878, 7, 9806, 62, 13664, 28, 1821, 11, 3748, 28, 17821, 11, 9178, 28, 17821, 11, 9242, 28, 17821, 8, 198, 220, 220, 220, 2179, 411, 796, 4981, 13, 33616, 9218, 7, 7248, 11, 319, 62, 33678, 28, 27530, 13, 34, 42643, 19266, 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, 9178, 28, 17821, 11, 9242, 28, 17821, 11, 3519, 62, 3672, 11639, 430, 411, 11537, 198, 220, 220, 220, 8820, 11567, 796, 4981, 13, 33616, 9218, 7, 7248, 11, 319, 62, 33678, 28, 27530, 13, 34, 42643, 19266, 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, 9178, 28, 17821, 11, 9242, 28, 17821, 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, 3519, 62, 3672, 11639, 403, 9503, 684, 11537, 198, 220, 220, 220, 36523, 796, 4981, 13, 33616, 9218, 7, 7248, 11, 319, 62, 33678, 28, 27530, 13, 34, 42643, 19266, 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, 9178, 28, 17821, 11, 9242, 28, 17821, 11, 3519, 62, 3672, 11639, 9503, 684, 11537, 198, 220, 220, 220, 7918, 873, 796, 4981, 13, 33616, 9218, 7, 7248, 11, 319, 62, 33678, 28, 27530, 13, 34, 42643, 19266, 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, 9178, 28, 17821, 11, 9242, 28, 17821, 11, 3519, 62, 3672, 11639, 1820, 400, 873, 11537, 198, 220, 220, 220, 736, 62, 1589, 796, 4981, 13, 3198, 2514, 3198, 15878, 10786, 944, 3256, 319, 62, 33678, 28, 27530, 13, 34, 42643, 19266, 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, 9178, 28, 17821, 11, 9242, 28, 17821, 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, 3519, 62, 3672, 11639, 8534, 62, 1589, 11537, 198, 220, 220, 220, 287, 62, 8002, 796, 4981, 13, 46120, 13087, 15878, 7, 12286, 28, 17821, 8, 628, 220, 220, 220, 825, 3613, 7, 944, 11, 1635, 22046, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 5886, 13564, 3613, 284, 7716, 31065, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2116, 13, 6649, 1018, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6649, 1018, 796, 2116, 13557, 1136, 62, 34642, 62, 6649, 1018, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2208, 22446, 21928, 3419, 628, 220, 220, 220, 825, 11593, 2536, 834, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 19400, 703, 2746, 318, 9066, 618, 10398, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 3672, 628, 198, 4871, 20961, 7, 27530, 13, 17633, 2599, 198, 220, 220, 220, 37227, 9487, 329, 257, 6203, 2746, 526, 15931, 628, 220, 220, 220, 49144, 33586, 796, 357, 17816, 2257, 3256, 705, 23615, 6, 4357, 37250, 5188, 3256, 705, 50, 2287, 276, 6, 4357, 37250, 7707, 3256, 705, 37741, 6, 12962, 628, 220, 220, 220, 1438, 796, 4981, 13, 12441, 15878, 7, 9806, 62, 13664, 28, 1120, 8, 198, 220, 220, 220, 6203, 62, 18982, 796, 4981, 13, 12441, 15878, 7, 9806, 62, 13664, 28, 1120, 11, 7747, 28, 21389, 33586, 8, 198, 220, 220, 220, 2657, 62, 4868, 796, 4981, 13, 7085, 2514, 7085, 15878, 7, 16962, 8, 628, 198, 2, 1398, 26981, 7, 27530, 13, 17633, 2599, 198, 2, 220, 220, 220, 220, 37227, 17633, 329, 262, 14283, 276, 1735, 286, 257, 491, 292, 77, 687, 2657, 526, 15931, 198, 198, 2, 220, 220, 220, 220, 2166, 796, 198 ]
2.224031
1,781
import yaml import nb_clean as nbc from pathlib import Path import nbformat import sys with open('./book/_config.yml') as f: data = yaml.safe_load(f) # Sometimes we use rendered notebooks instead of executing them exclude_paths = [] for pattern in data['execute']['exclude_patterns']: exclude_paths += list(Path('book/tutorials').glob(pattern)) exclude_notebooks = [path.as_posix() for path in exclude_paths] print('Excluded from execution:\n', '\n'.join(exclude_notebooks)) # Scrub outputs for spellcheck and linkcheck for notebook in exclude_notebooks: print(f'Scrubbing outputs: {notebook}...') nb = nbformat.read(notebook, as_version=nbformat.NO_CONVERT) cleaned = nbc.clean_notebook(nb, remove_empty_cells=True, preserve_cell_metadata=True) nbformat.write(cleaned, notebook) all_ipynbs = [path.as_posix() for path in Path('book/tutorials').rglob('*.ipynb')] ipynbs = [p for p in all_ipynbs if not '.ipynb_checkpoints' in p] results = [] for notebook in ipynbs: #if not notebook in exclude_notebooks: print(f'Checking {notebook}...') nb = nbformat.read(notebook, as_version=nbformat.NO_CONVERT) result = nbc.check_notebook(nb, remove_empty_cells=True, preserve_cell_metadata=True) results.append(result) if False in results: sys.exit(1)
[ 11748, 331, 43695, 198, 11748, 299, 65, 62, 27773, 355, 299, 15630, 198, 6738, 3108, 8019, 1330, 10644, 198, 11748, 299, 65, 18982, 198, 11748, 25064, 198, 198, 4480, 1280, 7, 4458, 14, 2070, 47835, 11250, 13, 88, 4029, 11537, 355, 277, 25, 198, 220, 1366, 796, 331, 43695, 13, 21230, 62, 2220, 7, 69, 8, 198, 198, 2, 8975, 356, 779, 15111, 43935, 2427, 286, 23710, 606, 198, 1069, 9152, 62, 6978, 82, 796, 17635, 198, 1640, 3912, 287, 1366, 17816, 41049, 6, 7131, 6, 1069, 9152, 62, 33279, 82, 6, 5974, 198, 220, 220, 220, 19607, 62, 6978, 82, 15853, 1351, 7, 15235, 10786, 2070, 14, 83, 44917, 82, 27691, 4743, 672, 7, 33279, 4008, 198, 220, 220, 220, 19607, 62, 11295, 12106, 796, 685, 6978, 13, 292, 62, 1930, 844, 3419, 329, 3108, 287, 19607, 62, 6978, 82, 60, 198, 4798, 10786, 3109, 10341, 422, 9706, 7479, 77, 3256, 705, 59, 77, 4458, 22179, 7, 1069, 9152, 62, 11295, 12106, 4008, 198, 198, 2, 1446, 25089, 23862, 329, 4822, 9122, 290, 2792, 9122, 198, 1640, 20922, 287, 19607, 62, 11295, 12106, 25, 198, 220, 220, 220, 3601, 7, 69, 6, 3351, 25089, 4623, 23862, 25, 1391, 11295, 2070, 92, 986, 11537, 198, 220, 220, 220, 299, 65, 796, 299, 65, 18982, 13, 961, 7, 11295, 2070, 11, 355, 62, 9641, 28, 46803, 18982, 13, 15285, 62, 10943, 15858, 8, 198, 220, 220, 220, 20750, 796, 299, 15630, 13, 27773, 62, 11295, 2070, 7, 46803, 11, 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, 220, 220, 220, 220, 220, 4781, 62, 28920, 62, 46342, 28, 17821, 11, 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, 220, 220, 220, 220, 220, 12201, 62, 3846, 62, 38993, 28, 17821, 8, 198, 220, 220, 220, 299, 65, 18982, 13, 13564, 7, 2375, 22739, 11, 20922, 8, 628, 198, 439, 62, 541, 2047, 1443, 796, 685, 6978, 13, 292, 62, 1930, 844, 3419, 329, 3108, 287, 10644, 10786, 2070, 14, 83, 44917, 82, 27691, 81, 4743, 672, 10786, 24620, 541, 2047, 65, 11537, 60, 198, 541, 2047, 1443, 796, 685, 79, 329, 279, 287, 477, 62, 541, 2047, 1443, 611, 407, 45302, 541, 2047, 65, 62, 9122, 13033, 6, 287, 279, 60, 198, 198, 43420, 796, 17635, 198, 1640, 20922, 287, 20966, 2047, 1443, 25, 198, 220, 220, 220, 1303, 361, 407, 20922, 287, 19607, 62, 11295, 12106, 25, 198, 220, 220, 220, 3601, 7, 69, 6, 9787, 278, 1391, 11295, 2070, 92, 986, 11537, 198, 220, 220, 220, 299, 65, 796, 299, 65, 18982, 13, 961, 7, 11295, 2070, 11, 355, 62, 9641, 28, 46803, 18982, 13, 15285, 62, 10943, 15858, 8, 198, 220, 220, 220, 1255, 796, 299, 15630, 13, 9122, 62, 11295, 2070, 7, 46803, 11, 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, 220, 220, 220, 220, 4781, 62, 28920, 62, 46342, 28, 17821, 11, 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, 220, 220, 220, 220, 12201, 62, 3846, 62, 38993, 28, 17821, 8, 198, 220, 220, 220, 2482, 13, 33295, 7, 20274, 8, 198, 198, 361, 10352, 287, 2482, 25, 198, 220, 220, 220, 25064, 13, 37023, 7, 16, 8 ]
2.353618
608
from time import sleep dados = {} ### --> DICIONÁRIO RECEBE TODOS OS DADOS COM SEUS RESPECTIVOS VALORES; ID, NOME ETC... lista_de_dados = [] lista_principal = [] copia_dados = []### --> DICIONÁRIO RECEBE TODOS OS DADOS codigo_cliente = 0 ### --> CONTADOR CONTAGEM TRANSAÇÕES moeda_origem_sigla = 'R$:' moeda_destino_sigla = 'U$$:' valor_tot_operacoes = float(0) valor_tot_operacoes_a = float(0) tot_taxas = float(0) tot_movimento_brasil_dolar_eua = float(0) tot_movimento_brasil_euro = float(0) tot_movimento_brasil_dolar_canada = float(0) tot_movimento_dolar_eua_brasil = float(0) tot_movimento_dolar_eua_euro = float(0) tot_movimento_dolar_eua_dolar_canada = float(0) tot_movimento_euro_brasil = float(0) tot_movimento_euro_dolar_eua = float(0) tot_movimento_euro_dolar_canada = float(0) tot_movimento_dolar_canada_brasil = float(0) tot_movimento_dolar_canada_dolar_eua = float(0) tot_movimento_dolar_canada_euro = float(0) print('--' * 35) print(f'\033[7;40m{" GERENCIADOR DE OPERAÇÕES ":*^70}\033[0;0m') print('--' * 35) while True: print(f' |-- {"OPÇÃO ":-<2}{" MENU ":-^38} |') print(f' |\033[1;90m---------------------------------------------------------- \033[0;0m|') print(f' |\033[7;40m{" -> 1 <-":.<3}|{" - CADASTROS - CLIENTES - OPERAÇÕES ":^38} \033[0;0m|') print(f' |\033[1;90m---------------------------------------------------------- \033[0;0m|') print(f' |{" -> 2 <-":.<3}|{" - LISTAR OPERAÇÕES - ":^38} |') print(f' |\033[1;90m---------------------------------------------------------- \033[0;0m|') print(f' |\033[7;40m{" -> 3 <-":.<3}|{" - VALOR TOTAL DAS OPERAÇÕES - ":^38} \033[0;0m|') print(f' |\033[1;90m---------------------------------------------------------- \033[0;0m|') print(f' |{" -> 4 <-":.<3}|{" - VALOR TOTAL DAS TAXAS COBRADAS - ":^38} |') print(f' |\033[1;90m---------------------------------------------------------- \033[0;0m|') print('--' * 35) print(f'\033[7;40m{" ESCOLHA UMA DAS OPÇÕES ACIMA: ":*^70}\033[0;0m') print('--' * 35) opcao_menu = str(input('Digite a opção desejada:?')) if opcao_menu.isnumeric(): if opcao_menu == '1': while True: print('--' * 35) print(f'\033[7;40m{" CADASTRAR CLIENTES ":*^70}\033[0;0m') print('--' * 35) codigo_cliente += 1 codigo_cliente_convertida = str(codigo_cliente) print(f' --> {codigo_cliente}º CLIENTE - ORDEM DE SERVIÇO DE Nº [ {codigo_cliente_convertida} ]') dados['Cód'] = [codigo_cliente] lista_de_dados.append(codigo_cliente_convertida) print('--' * 35) nome = str(input('Digite o nome do cliente:?')).strip().upper() dados['Nome'] = [nome] lista_de_dados.append(nome) # print(f'TESTE DADOS: {dados}') print('--' * 30) print('------------------- MOEDAS CADASTRADAS -------------------') print(' | Digite --> (1) para MOEDA REAL - BRASIL |') print(' | Digite --> (2) para MOEDA DÓLAR - EUA |') print(' | Digite --> (3) para MOEDA EURO - EUROPA |') print(' | Digite --> (4) para MOEDA DÓLAR - CANADÁ |') print(' -------------------------------------------') moeda_origem = str(input('Moeda de origem?: [somente números acima]:?')) dados['Moeda origem'] = [moeda_origem] print('--' * 30) if moeda_origem == '1': print('MOEDA DE ORIGEM: - REAL - BRASIL') dados['Moeda origem'] = ['REAL - BRL'] moeda_origem_sigla = 'R$:' lista_de_dados.append('REAL - BRL') elif moeda_origem == '2': print('MOEDA DE ORIGEM: - DÓLAR - EUA') dados['Moeda origem'] = ['DÓLAR - EUA'] moeda_origem_sigla = 'U$$:' lista_de_dados.append('DÓLAR - EUA') elif moeda_origem == '3': print('MOEDA DE ORIGEM: - EURO - EUROPA') dados['Moeda origem'] = ['EURO'] moeda_origem_sigla = '€:' lista_de_dados.append('EURO') elif moeda_origem == '4': print('MOEDA DE ORIGEM: - DÓLAR - CANADÁ') dados['Moeda origem'] = ['DÓLAR - CAD'] moeda_origem_sigla = 'U$$:' lista_de_dados.append('DÓLAR - CAD') else: while True: print(f'\033[1;41mVALOR INVÁLIDO - SOMENTE NÚMEROS DE 1 A 4 QUE CORRESPONDEM AS MOEDAS CADASTRADAS:\033[0;0m') print('--' * 30) print('------------------- MOEDAS CADASTRADAS -------------------') print(' | Digite --> (1) para MOEDA REAL - BRASIL |') print(' | Digite --> (2) para MOEDA DÓLAR - EUA |') print(' | Digite --> (3) para MOEDA EURO - EUROPA |') print(' | Digite --> (4) para MOEDA DÓLAR - CANADÁ |') print(' -------------------------------------------') moeda_origem = str(input('Moeda de origem?: [somente números acima]:?')) print('--' * 30) if moeda_origem == '1': print('MOEDA DE ORIGEM: - REAL - BRASIL') dados['Moeda origem'] = ['REAL - BRL'] moeda_origem_sigla = 'R$:' lista_de_dados.append('REAL - BRL') break elif moeda_origem == '2': print('MOEDA DE ORIGEM: - DÓLAR - EUA') dados['Moeda origem'] = ['DÓLAR - EUA'] moeda_origem_sigla = 'U$$:' lista_de_dados.append('DÓLAR - EUA') break elif moeda_origem == '3': print('MOEDA DE ORIGEM: - EURO - EUROPA') dados['Moeda origem'] = ['EURO'] moeda_origem_sigla = '€:' lista_de_dados.append('EURO') break elif moeda_origem == '4': print('MOEDA DE ORIGEM: - DÓLAR - CANADÁ') dados['Moeda origem'] = ['DÓLAR - CAD'] moeda_origem_sigla = 'U$$:' lista_de_dados.append('DÓLAR - CAD') break print('--' * 30) print('------------------- MOEDAS CADASTRADAS -------------------') print(' | Digite --> (1) para MOEDA REAL - BRASIL |') print(' | Digite --> (2) para MOEDA DÓLAR - EUA |') print(' | Digite --> (3) para MOEDA EURO - EUROPA |') print(' | Digite --> (4) para MOEDA DÓLAR - CANADÁ |') print(' -------------------------------------------') moeda_destino = str(input('Moeda de destino?: [somente números acima]:?')) print('--' * 30) if moeda_destino == '1': print('MOEDA DE DESTINO: - REAL - BRASIL') dados['Moeda destino'] = ['REAL - BRASIL'] moeda_destino_sigla = 'R$:' lista_de_dados.append('REAL - BRASIL') elif moeda_destino == '2': print('MOEDA DE DESTINO: - DÓLAR - EUA') dados['Moeda destino'] = ['DÓLAR - EUA'] moeda_destino_sigla = 'U$$:' lista_de_dados.append('DÓLAR - EUA') elif moeda_destino == '3': print('MOEDA DE DESTINO: - EURO - EUROPA') dados['Moeda destino'] = ['EURO'] moeda_destino_sigla = '€:' lista_de_dados.append('EURO') elif moeda_destino == '4': print('MOEDA DE DESTINO: - DÓLAR - CANADÁ') dados['Moeda destino'] = ['DÓLAR CAD'] moeda_destino_sigla = 'U$$:' lista_de_dados.append('DÓLAR CAD') else: while True: print(f'\033[1;41mVALOR INVÁLIDO - SOMENTE NÚMEROS DE 1 A 4 QUE CORRESPONDEM AS MOEDAS CADASTRADAS:\033[0;0m') print('--' * 30) print('------------------- MOEDAS CADASTRADAS -------------------') print(' | Digite --> (1) para MOEDA REAL - BRASIL |') print(' | Digite --> (2) para MOEDA DÓLAR - EUA |') print(' | Digite --> (3) para MOEDA EURO - EUROPA |') print(' | Digite --> (4) para MOEDA DÓLAR - CANADÁ |') print(' -------------------------------------------') moeda_destino = str(input('Moeda de destino?: [somente números acima]:?')) print('--' * 30) if moeda_destino == '1': print('MOEDA DE DESTINO: - REAL - BRASIL') dados['Moeda destino'] = ['REAL - BRASIL'] moeda_destino_sigla = 'R$:' lista_de_dados.append('REAL - BRASIL') break elif moeda_destino == '2': print('MOEDA DE DESTINO: - DÓLAR - EUA') dados['Moeda destino'] = ['DÓLAR - EUA'] moeda_destino_sigla = 'U$$:' lista_de_dados.append('DÓLAR - EUA') break elif moeda_destino == '3': print('MOEDA DE DESTINO: - EURO - EUROPA') dados['Moeda destino'] = ['EURO'] moeda_destino_sigla = '€:' lista_de_dados.append('EURO') break elif moeda_destino == '4': print('MOEDA DE DESTINO: - DÓLAR - CANADÁ') dados['Moeda destino'] = ['DÓLAR CAD'] moeda_destino_sigla = 'U$$:' lista_de_dados.append('DÓLAR CAD') break print('--' * 30) data_operacao = str(input('Data da operação:\033[1;90m[NO FORMATO: __/__/____ ]\033[0;0m:?')) dados['Data Operação'] = [data_operacao] lista_de_dados.append(data_operacao) print('--' * 30) valor_original = str(input(f'Valor original:? {moeda_origem_sigla}')) dados['Valor Original'] = [valor_original] lista_de_dados.append(valor_original) convertendo_valor = float(valor_original) valor_tot_operacoes += convertendo_valor if moeda_origem == '1' and moeda_destino == '2': convertendo_valor_brasil = float(valor_original) tot_movimento_brasil_dolar_eua += convertendo_valor_brasil elif moeda_origem == '1' and moeda_destino == '3': convertendo_valor_brasil_euro = float(valor_original) tot_movimento_brasil_euro += convertendo_valor_brasil_euro elif moeda_origem == '1' and moeda_destino == '4': convertendo_valor_brasil_dolar_canada = float(valor_original) tot_movimento_brasil_dolar_canada += convertendo_valor_brasil_dolar_canada if moeda_origem == '2' and moeda_destino == '1': convertendo_valor_eua_brasil = float(valor_original) tot_movimento_dolar_eua_brasil += convertendo_valor_eua_brasil elif moeda_origem == '2' and moeda_destino == '3': convertendo_valor_eua_euro = float(valor_original) tot_movimento_dolar_eua_euro += convertendo_valor_eua_euro elif moeda_origem == '2' and moeda_destino == '4': convertendo_valor_eua_canada = float(valor_original) tot_movimento_dolar_eua_dolar_canada += convertendo_valor_eua_canada if moeda_origem == '3' and moeda_destino == '1': convertendo_valor_euro_brasil = float(valor_original) tot_movimento_euro_brasil += convertendo_valor_euro_brasil elif moeda_origem == '3' and moeda_destino == '2': convertendo_valor_euro_eua = float(valor_original) tot_movimento_euro_dolar_eua += convertendo_valor_euro_eua elif moeda_origem == '3' and moeda_destino == '4': convertendo_valor_euro_canada = float(valor_original) tot_movimento_euro_dolar_canada += convertendo_valor_euro_canada if moeda_origem == '4' and moeda_destino == '1': convertendo_valor_canada_brasil = float(valor_original) tot_movimento_dolar_canada_brasil += convertendo_valor_canada_brasil elif moeda_origem == '4' and moeda_destino == '2': convertendo_valor_canada_eua = float(valor_original) tot_movimento_dolar_canada_dolar_eua += convertendo_valor_canada_eua elif moeda_origem == '4' and moeda_destino == '3': convertendo_valor_canada_euro = float(valor_original) tot_movimento_dolar_canada_euro += convertendo_valor_canada_euro print('--' * 30) valor_convertido = str(input(f'Valor convertido:? {moeda_destino_sigla}')) dados['Valor Convertido'] = [valor_convertido] lista_de_dados.append(valor_convertido) print('--' * 30) taxa_cobrada = str(input(f'Taxa cobrada:? R$:')) conversao_taxa = float(taxa_cobrada) tot_taxas += conversao_taxa dados['Taxa Cobrada'] = [taxa_cobrada] lista_de_dados.append(taxa_cobrada) print('--' * 30) copia_dados.append(dados.copy()) lista_principal.append(lista_de_dados) print('--' * 30) print('\033[1;90m----------------------- FIM CADASTRO -----------------------\033[0;0m') print('--' * 30) while True: continua_cadastro = str(input('\nCadastrar mais clientes:? [C - P/ CONTINUAR OU S - P/ SAIR]:?')).strip().upper()[0] print('') if continua_cadastro == 'C': break elif continua_cadastro == 'S': break else: print(f'\033[1;41m- SOMENTE UMA DAS OPÇÕES ACIMA: [C - CONTINUAR/ S - SAIR]:\033[0;0m') if continua_cadastro == 'S': print('--' * 35) print(' \033[1;30m\033[1;43m CARREGANDO MENU PRINCIPAL\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m50%\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m100%\033[0;0m', end='') print('\033[1;30m\033[1;43m \033[0;0m', end='') print('\n') break elif opcao_menu == '2': print('--' * 35) print(f'\033[7;40m{" RELATÓRIOS --> OPERAÇÕES REALIZADAS ":*^70}\033[0;0m') print('--' * 35) if codigo_cliente == 0: print('--' * 35) print(' \033[1;40m Aguarde ! AVERIGUANDO DADOS\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m50%\033[0;0m', end='') sleep(0.8) print('\033[1;40m.\033[0;0m', end='') sleep(0.8) print('\033[1;40m.\033[0;0m', end='') sleep(0.8) print('\033[1;40m100%\033[0;0m', end='') print('\033[1;40m \033[0;0m', end='') print('\n') print('--' * 35) print() print('\033[1;90m------------------------------------------------------------\033[0;0m') print('\033[1;41mATÉ O PRESENTE MOMENTO NÃO HÁ NENHUMA OPERAÇÃO REALIZADA !\033[0;0m') print('\033[1;90m------------------------------------------------------------\033[0;0m') print() print('--' * 35) print('--' * 35) print(' \033[1;30m\033[1;43m VOLTANDO AO MENU PRINCIPAL\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m50%\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m100%\033[0;0m', end='') print('\033[1;30m\033[1;43m \033[0;0m', end='') print('\n') elif codigo_cliente > 0: print('--' * 35) print(' \033[1;40m Aguarde ! AVERIGUANDO DADOS\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m50%\033[0;0m', end='') sleep(0.8) print('\033[1;40m.\033[0;0m', end='') sleep(0.8) print('\033[1;40m.\033[0;0m', end='') sleep(0.8) print('\033[1;40m100%\033[0;0m', end='') print('\033[1;40m \033[0;0m', end='') print('\n') print('--' * 35) print(f'\033[7;40m{" RELATÓRIOS --> OPERAÇÕES REALIZADAS: ":*^70}\033[0;0m') print('--' * 35) print() print(f'\033[1;42mATÉ O PRESENTE MOMENTO VOCÊ TEM UM TOTAL DE: {codigo_cliente} \033[0;0m',end='') if codigo_cliente == 1: print('\033[1;42mOPERAÇÃO !\033[0;0m') else: print('\033[1;42mOPERAÇÕES !\033[0;0m') print('--' * 35) print(' -- | ABAIXO SEGUE A LISTA COMPLETA DE TODOS OS REGISTROS ATÉ O MOMENTO! | -- ') print('--' * 35) print(' -------------------- |SEQUÊNCIA E ORDEM DE COLUNAS| -------------- VALORES -------------') print('1ºCÓD:|2ºNOME: |3ºMOED ORIG. |4º MOED DEST. |5º DATA: |6ºORIGI:|7ºCONV:|8ºTAXA. ') print('---' * 30) for c, v in enumerate(copia_dados): for d in v.values(): print(f" {str(d).replace('[', '').replace(']', '').replace('', '')}", end=' ') print() print() print() print('--' * 35) print('--' * 35) while True: voltar_menu_principal = str(input('Digite:[S]-SAIR:')).strip().upper()[0] if voltar_menu_principal == 'S': break else: print(f'\033[1;41mSOMENTE DIGITE A LETRA [S]-PARA SAIR! :\033[0;0m') print('--' * 35) print(' \033[1;30m\033[1;43m CARREGANDO MENU PRINCIPAL\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m50%\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m100%\033[0;0m', end='') print('\033[1;30m\033[1;43m \033[0;0m', end='') print('\n') elif opcao_menu == '3': if codigo_cliente == 0: print('--' * 35) print(' \033[1;40m Aguarde ! AVERIGUANDO OPERAÇÕES\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m50%\033[0;0m', end='') sleep(0.8) print('\033[1;40m.\033[0;0m', end='') sleep(0.8) print('\033[1;40m.\033[0;0m', end='') sleep(0.8) print('\033[1;40m100%\033[0;0m', end='') print('\033[1;40m \033[0;0m', end='') print('\n') print('--' * 35) print() print('\033[1;90m------------------------------------------------------------\033[0;0m') print('\033[1;41mATÉ O PRESENTE MOMENTO NÃO HÁ NENHUMA OPERAÇÃO REALIZADA !\033[0;0m') print('\033[1;90m------------------------------------------------------------\033[0;0m') print() print('--' * 35) print('--' * 35) print(' \033[1;30m\033[1;43m VOLTANDO AO MENU PRINCIPAL\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m50%\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m100%\033[0;0m', end='') print('\033[1;30m\033[1;43m \033[0;0m', end='') print('\n') elif codigo_cliente > 0: print('--' * 35) print(' \033[1;40m Aguarde ! AVERIGUANDO OPERAÇÕES\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m50%\033[0;0m', end='') sleep(0.8) print('\033[1;40m.\033[0;0m', end='') sleep(0.8) print('\033[1;40m.\033[0;0m', end='') sleep(0.8) print('\033[1;40m100%\033[0;0m', end='') print('\033[1;40m \033[0;0m', end='') print('\n') print('--' * 35) print(f'\033[7;40m{" RELATÓRIOS --> VALOR TOTAL DAS OPERAÇÕES: ":*^70}\033[0;0m') print('--' * 35) print() print(f'\033[1;42mATÉ O PRESENTE MOMENTO VOCÊ TEM UM TOTAL DE: {codigo_cliente} \033[0;0m', end='') if codigo_cliente == 1: print('\033[1;42mOPERAÇÃO !\033[0;0m') else: print('\033[1;42mOPERAÇÕES !\033[0;0m') if tot_movimento_brasil_dolar_eua > 0: print(f'DE: BRL - BRASIL / PARA: DÓLAR - EUA / MOVIMENTAÇÃO TOTAL DÊ R$: {tot_movimento_brasil_dolar_eua:.2f} REAIS.') if tot_movimento_brasil_euro > 0: print(f'DE: BRL - BRASIL / PARA: EURO - EUROPA / MOVIMENTAÇÃO TOTAL DÊ R$: {valor_tot_operacoes:.2f} REAIS.') if tot_movimento_brasil_dolar_canada > 0: print(f'DE: BRL - BRASIL / PARA: DÓLAR - CANADÁ / MOVIMENTAÇÃO TOTAL DÊ R$: {tot_movimento_brasil_dolar_canada:.2f} REAIS.') if tot_movimento_dolar_eua_brasil > 0: print(f'DE: DÓLAR - EUA / PARA: BRL - BRASIL / MOVIMENTAÇÃO TOTAL DÊ U$$: {tot_movimento_dolar_eua_brasil:.2f} DÓLAR') if tot_movimento_dolar_eua_euro > 0: print(f'DE: DÓLAR - EUA / PARA: EURO - EUROPA / MOVIMENTAÇÃO TOTAL DÊ U$$: {tot_movimento_dolar_eua_euro:.2f} DÓLAR') if tot_movimento_dolar_eua_dolar_canada > 0: print(f'DE: DÓLAR - EUA / PARA: DÓLAR - CANADÁ / MOVIMENTAÇÃO TOTAL DÊ U$$: {tot_movimento_dolar_eua_dolar_canada:.2f} DÓLAR') if tot_movimento_euro_brasil > 0: print(f'DE: EURO - EUROPA / PARA: BRL - BRASIL / MOVIMENTAÇÃO TOTAL DÊ €: {tot_movimento_euro_brasil:.2f} EURO.') if tot_movimento_euro_dolar_eua > 0: print(f'DE: EURO - EUROPA / PARA: DÓLAR - EUA / MOVIMENTAÇÃO TOTAL DÊ €: {tot_movimento_euro_dolar_eua:.2f} EURO.') if tot_movimento_euro_dolar_canada > 0: print(f'DE: EURO - EUROPA / PARA: DÓLAR - CANADÁ / MOVIMENTAÇÃO TOTAL DÊ €: {tot_movimento_euro_dolar_canada:.2f} EURO.') if tot_movimento_dolar_canada_brasil > 0: print(f'DE: DÓLAR - CANADÁ / PARA: BRL - BRASIL / MOVIMENTAÇÃO TOTAL DÊ U$$: {tot_movimento_dolar_canada_brasil:.2f} DÓLAR') if tot_movimento_dolar_canada_dolar_eua > 0: print(f'DE: DÓLAR - CANADÁ / PARA: DÓLAR - EUA / MOVIMENTAÇÃO TOTAL DÊ U$$: {tot_movimento_dolar_canada_dolar_eua:.2f} DÓLAR') if tot_movimento_dolar_canada_euro > 0: print(f'DE: DÓLAR - CANADÁ / PARA: EURO - EUROPA / MOVIMENTAÇÃO TOTAL DÊ U$$: {tot_movimento_dolar_canada_euro:.2f} DÓLAR') print() print() print() print('--' * 35) print('--' * 35) while True: voltar_menu_principal = str(input('Digite:[S]-SAIR:')).strip().upper()[0] if voltar_menu_principal == 'S': break else: print(f'\033[1;41mSOMENTE DIGITE A LETRA [S]-PARA SAIR! :\033[0;0m') print('--' * 35) print(' \033[1;30m\033[1;43m CARREGANDO MENU PRINCIPAL\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m50%\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m100%\033[0;0m', end='') print('\033[1;30m\033[1;43m \033[0;0m', end='') print('\n') elif opcao_menu == '4': if codigo_cliente == 0: print('--' * 35) print(' \033[1;40m Aguarde ! AVERIGUANDO SISTEMA\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m50%\033[0;0m', end='') sleep(0.8) print('\033[1;40m.\033[0;0m', end='') sleep(0.8) print('\033[1;40m.\033[0;0m', end='') sleep(0.8) print('\033[1;40m100%\033[0;0m', end='') print('\033[1;40m \033[0;0m', end='') print('\n') print('--' * 35) print() print('\033[1;90m------------------------------------------------------------\033[0;0m') print('\033[1;41mATÉ O PRESENTE MOMENTO NÃO HÁ NENHUMA OPERAÇÃO REALIZADA !\033[0;0m') print('\033[1;90m------------------------------------------------------------\033[0;0m') print() print('--' * 35) print('--' * 35) print(' \033[1;30m\033[1;43m VOLTANDO AO MENU PRINCIPAL\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m50%\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m100%\033[0;0m', end='') print('\033[1;30m\033[1;43m \033[0;0m', end='') print('\n') elif codigo_cliente > 0: print('--' * 35) print(' \033[1;40m Aguarde ! AVERIGUANDO SISTEMA\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m50%\033[0;0m', end='') sleep(0.8) print('\033[1;40m.\033[0;0m', end='') sleep(0.8) print('\033[1;40m.\033[0;0m', end='') sleep(0.8) print('\033[1;40m100%\033[0;0m', end='') print('\033[1;40m \033[0;0m', end='') print('\n') print('--' * 35) print(f'\033[7;40m{" RELATÓRIOS --> VALOR TOTAL DE TAXAS: ":*^70}\033[0;0m') print('--' * 35) print() print(f'\033[1;42mATÉ O PRESENTE MOMENTO VOCÊ TEM: {codigo_cliente} \033[0;0m', end='') if codigo_cliente == 1: print('\033[1;42mOPERAÇÃO REGISTRADA!\033[0;0m') else: print('\033[1;42mOPERAÇÕES REGISTRADAS!\033[0;0m') print('\033[1;90m------------------------------------------------------------\033[0;0m') print(f'SOMANDO TODAS AS ENTRADAS EM TAXAS: TEMOS UM TOTAL DÊ R$: {tot_taxas:.2f} REAIS.') print(f'AS MESMAS SÃO REFERENTE AS DEVIDAS CONVERSÕES ABAIXO:') print('\033[1;90m------------------------------------------------------------\033[0;0m') if tot_movimento_brasil_dolar_eua > 0: print(f'DE: BRL - BRASIL / PARA: DÓLAR - EUA / MOVIMENTAÇÃO TOTAL DÊ R$: {tot_movimento_brasil_dolar_eua:.2f} REAIS.') if tot_movimento_brasil_euro > 0: print(f'DE: BRL - BRASIL / PARA: EURO - EUROPA / MOVIMENTAÇÃO TOTAL DÊ R$: {valor_tot_operacoes:.2f} REAIS.') if tot_movimento_brasil_dolar_canada > 0: print(f'DE: BRL - BRASIL / PARA: DÓLAR - CANADÁ / MOVIMENTAÇÃO TOTAL DÊ R$: {tot_movimento_brasil_dolar_canada:.2f} REAIS.') if tot_movimento_dolar_eua_brasil > 0: print(f'DE: DÓLAR - EUA / PARA: BRL - BRASIL / MOVIMENTAÇÃO TOTAL DÊ U$$: {tot_movimento_dolar_eua_brasil:.2f} DÓLAR') if tot_movimento_dolar_eua_euro > 0: print(f'DE: DÓLAR - EUA / PARA: EURO - EUROPA / MOVIMENTAÇÃO TOTAL DÊ U$$: {tot_movimento_dolar_eua_euro:.2f} DÓLAR') if tot_movimento_dolar_eua_dolar_canada > 0: print(f'DE: DÓLAR - EUA / PARA: DÓLAR - CANADÁ / MOVIMENTAÇÃO TOTAL DÊ U$$: {tot_movimento_dolar_eua_dolar_canada:.2f} DÓLAR') if tot_movimento_euro_brasil > 0: print(f'DE: EURO - EUROPA / PARA: BRL - BRASIL / MOVIMENTAÇÃO TOTAL DÊ €: {tot_movimento_euro_brasil:.2f} EURO.') if tot_movimento_euro_dolar_eua > 0: print(f'DE: EURO - EUROPA / PARA: DÓLAR - EUA / MOVIMENTAÇÃO TOTAL DÊ €: {tot_movimento_euro_dolar_eua:.2f} EURO.') if tot_movimento_euro_dolar_canada > 0: print(f'DE: EURO - EUROPA / PARA: DÓLAR - CANADÁ / MOVIMENTAÇÃO TOTAL DÊ €: {tot_movimento_euro_dolar_canada:.2f} EURO.') if tot_movimento_dolar_canada_brasil > 0: print(f'DE: DÓLAR - CANADÁ / PARA: BRL - BRASIL / MOVIMENTAÇÃO TOTAL DÊ U$$: {tot_movimento_dolar_canada_brasil:.2f} DÓLAR') if tot_movimento_dolar_canada_dolar_eua > 0: print(f'DE: DÓLAR - CANADÁ / PARA: DÓLAR - EUA / MOVIMENTAÇÃO TOTAL DÊ U$$: {tot_movimento_dolar_canada_dolar_eua:.2f} DÓLAR') if tot_movimento_dolar_canada_euro > 0: print(f'DE: DÓLAR - CANADÁ / PARA: EURO - EUROPA / MOVIMENTAÇÃO TOTAL DÊ U$$: {tot_movimento_dolar_canada_euro:.2f} DÓLAR') print() print() print() print('--' * 35) print('--' * 35) while True: voltar_menu_principal = str(input('Digite:[S]-SAIR:')).strip().upper()[0] if voltar_menu_principal == 'S': break print('--' * 35) print(' \033[1;30m\033[1;43m CARREGANDO MENU PRINCIPAL\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m50%\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m100%\033[0;0m', end='') print('\033[1;30m\033[1;43m \033[0;0m', end='') print('\n') else: while True: print('--' * 30) print(f'\033[1;41m- SOMENTE NÚMEROS DE 1 A 4 QUE CORRESPONDEM AS OPÇÕES DO MENU:\033[0;0m') print('--' * 30) opcao_menu = str(input('Digite a opção desejada:?')) print('--' * 30) else: while True: print('--' * 30) print(f'\033[1;41m- SOMENTE NÚMEROS DE 1 A 4 QUE CORRESPONDEM AS OPÇÕES DO MENU:\033[0;0m') print('--' * 30) opcao_menu = str(input('Digite a opção desejada:?')) print('--' * 30) if opcao_menu == '1': while True: print('--' * 35) print(f'\033[7;40m{" CADASTRAR CLIENTES ":*^70}\033[0;0m') print('--' * 35) codigo_cliente += 1 codigo_cliente_convertida = str(codigo_cliente) print(f' --> {codigo_cliente}º CLIENTE - ORDEM DE SERVIÇO DE Nº [ {codigo_cliente_convertida} ]') dados['Cód'] = [codigo_cliente] lista_de_dados.append(codigo_cliente_convertida) print('--' * 35) nome = str(input('Digite o nome do cliente:?')).strip().upper() dados['Nome'] = [nome] lista_de_dados.append(nome) # print(f'TESTE DADOS: {dados}') print('--' * 30) print('------------------- MOEDAS CADASTRADAS -------------------') print(' | Digite --> (1) para MOEDA REAL - BRASIL |') print(' | Digite --> (2) para MOEDA DÓLAR - EUA |') print(' | Digite --> (3) para MOEDA EURO - EUROPA |') print(' | Digite --> (4) para MOEDA DÓLAR - CANADÁ |') print(' -------------------------------------------') moeda_origem = str(input('Moeda de origem?: [somente números acima]:?')) dados['Moeda origem'] = [moeda_origem] print('--' * 30) if moeda_origem == '1': print('MOEDA DE ORIGEM: - REAL - BRASIL') dados['Moeda origem'] = ['REAL - BRL'] moeda_origem_sigla = 'R$:' lista_de_dados.append('REAL - BRL') elif moeda_origem == '2': print('MOEDA DE ORIGEM: - DÓLAR - EUA') dados['Moeda origem'] = ['DÓLAR - EUA'] moeda_origem_sigla = 'U$$:' lista_de_dados.append('DÓLAR - EUA') elif moeda_origem == '3': print('MOEDA DE ORIGEM: - EURO - EUROPA') dados['Moeda origem'] = ['EURO'] moeda_origem_sigla = '€:' lista_de_dados.append('EURO') elif moeda_origem == '4': print('MOEDA DE ORIGEM: - DÓLAR - CANADÁ') dados['Moeda origem'] = ['DÓLAR - CAD'] moeda_origem_sigla = 'U$$:' lista_de_dados.append('DÓLAR - CAD') else: while True: print( f'\033[1;41mVALOR INVÁLIDO - SOMENTE NÚMEROS DE 1 A 4 QUE CORRESPONDEM AS MOEDAS CADASTRADAS:\033[0;0m') print('--' * 30) print('------------------- MOEDAS CADASTRADAS -------------------') print(' | Digite --> (1) para MOEDA REAL - BRASIL |') print(' | Digite --> (2) para MOEDA DÓLAR - EUA |') print(' | Digite --> (3) para MOEDA EURO - EUROPA |') print(' | Digite --> (4) para MOEDA DÓLAR - CANADÁ |') print(' -------------------------------------------') moeda_origem = str(input('Moeda de origem?: [somente números acima]:?')) print('--' * 30) if moeda_origem == '1': print('MOEDA DE ORIGEM: - REAL - BRASIL') dados['Moeda origem'] = ['REAL - BRL'] moeda_origem_sigla = 'R$:' lista_de_dados.append('REAL - BRL') break elif moeda_origem == '2': print('MOEDA DE ORIGEM: - DÓLAR - EUA') dados['Moeda origem'] = ['DÓLAR - EUA'] moeda_origem_sigla = 'U$$:' lista_de_dados.append('DÓLAR - EUA') break elif moeda_origem == '3': print('MOEDA DE ORIGEM: - EURO - EUROPA') dados['Moeda origem'] = ['EURO'] moeda_origem_sigla = '€:' lista_de_dados.append('EURO') break elif moeda_origem == '4': print('MOEDA DE ORIGEM: - DÓLAR - CANADÁ') dados['Moeda origem'] = ['DÓLAR - CAD'] moeda_origem_sigla = 'U$$:' lista_de_dados.append('DÓLAR - CAD') break print('--' * 30) print('------------------- MOEDAS CADASTRADAS -------------------') print(' | Digite --> (1) para MOEDA REAL - BRASIL |') print(' | Digite --> (2) para MOEDA DÓLAR - EUA |') print(' | Digite --> (3) para MOEDA EURO - EUROPA |') print(' | Digite --> (4) para MOEDA DÓLAR - CANADÁ |') print(' -------------------------------------------') moeda_destino = str(input('Moeda de destino?: [somente números acima]:?')) print('--' * 30) if moeda_destino == '1': print('MOEDA DE DESTINO: - REAL - BRASIL') dados['Moeda destino'] = ['REAL - BRASIL'] moeda_destino_sigla = 'R$:' lista_de_dados.append('REAL - BRASIL') elif moeda_destino == '2': print('MOEDA DE DESTINO: - DÓLAR - EUA') dados['Moeda destino'] = ['DÓLAR - EUA'] moeda_destino_sigla = 'U$$:' lista_de_dados.append('DÓLAR - EUA') elif moeda_destino == '3': print('MOEDA DE DESTINO: - EURO - EUROPA') dados['Moeda destino'] = ['EURO'] moeda_destino_sigla = '€:' lista_de_dados.append('EURO') elif moeda_destino == '4': print('MOEDA DE DESTINO: - DÓLAR - CANADÁ') dados['Moeda destino'] = ['DÓLAR CAD'] moeda_destino_sigla = 'U$$:' lista_de_dados.append('DÓLAR CAD') else: while True: print( f'\033[1;41mVALOR INVÁLIDO - SOMENTE NÚMEROS DE 1 A 4 QUE CORRESPONDEM AS MOEDAS CADASTRADAS:\033[0;0m') print('--' * 30) print('------------------- MOEDAS CADASTRADAS -------------------') print(' | Digite --> (1) para MOEDA REAL - BRASIL |') print(' | Digite --> (2) para MOEDA DÓLAR - EUA |') print(' | Digite --> (3) para MOEDA EURO - EUROPA |') print(' | Digite --> (4) para MOEDA DÓLAR - CANADÁ |') print(' -------------------------------------------') moeda_destino = str(input('Moeda de destino?: [somente números acima]:?')) print('--' * 30) if moeda_destino == '1': print('MOEDA DE DESTINO: - REAL - BRASIL') dados['Moeda destino'] = ['REAL - BRASIL'] moeda_destino_sigla = 'R$:' lista_de_dados.append('REAL - BRASIL') break elif moeda_destino == '2': print('MOEDA DE DESTINO: - DÓLAR - EUA') dados['Moeda destino'] = ['DÓLAR - EUA'] moeda_destino_sigla = 'U$$:' lista_de_dados.append('DÓLAR - EUA') break elif moeda_destino == '3': print('MOEDA DE DESTINO: - EURO - EUROPA') dados['Moeda destino'] = ['EURO'] moeda_destino_sigla = '€:' lista_de_dados.append('EURO') break elif moeda_destino == '4': print('MOEDA DE DESTINO: - DÓLAR - CANADÁ') dados['Moeda destino'] = ['DÓLAR CAD'] moeda_destino_sigla = 'U$$:' lista_de_dados.append('DÓLAR CAD') break print('--' * 30) data_operacao = str(input('Data da operação:\033[1;90m[NO FORMATO: __/__/____ ]\033[0;0m:?')) dados['Data Operação'] = [data_operacao] lista_de_dados.append(data_operacao) print('--' * 30) valor_original = str(input(f'Valor original:? {moeda_origem_sigla}')) dados['Valor Original'] = [valor_original] lista_de_dados.append(valor_original) convertendo_valor = float(valor_original) valor_tot_operacoes += convertendo_valor if moeda_origem == '1' and moeda_destino == '2': convertendo_valor_brasil = float(valor_original) tot_movimento_brasil_dolar_eua += convertendo_valor_brasil elif moeda_origem == '1' and moeda_destino == '3': convertendo_valor_brasil_euro = float(valor_original) tot_movimento_brasil_euro += convertendo_valor_brasil_euro elif moeda_origem == '1' and moeda_destino == '4': convertendo_valor_brasil_dolar_canada = float(valor_original) tot_movimento_brasil_dolar_canada += convertendo_valor_brasil_dolar_canada if moeda_origem == '2' and moeda_destino == '1': convertendo_valor_eua_brasil = float(valor_original) tot_movimento_dolar_eua_brasil += convertendo_valor_eua_brasil elif moeda_origem == '2' and moeda_destino == '3': convertendo_valor_eua_euro = float(valor_original) tot_movimento_dolar_eua_euro += convertendo_valor_eua_euro elif moeda_origem == '2' and moeda_destino == '4': convertendo_valor_eua_canada = float(valor_original) tot_movimento_dolar_eua_dolar_canada += convertendo_valor_eua_canada if moeda_origem == '3' and moeda_destino == '1': convertendo_valor_euro_brasil = float(valor_original) tot_movimento_euro_brasil += convertendo_valor_euro_brasil elif moeda_origem == '3' and moeda_destino == '2': convertendo_valor_euro_eua = float(valor_original) tot_movimento_euro_dolar_eua += convertendo_valor_euro_eua elif moeda_origem == '3' and moeda_destino == '4': convertendo_valor_euro_canada = float(valor_original) tot_movimento_euro_dolar_canada += convertendo_valor_euro_canada if moeda_origem == '4' and moeda_destino == '1': convertendo_valor_canada_brasil = float(valor_original) tot_movimento_dolar_canada_brasil += convertendo_valor_canada_brasil elif moeda_origem == '4' and moeda_destino == '2': convertendo_valor_canada_eua = float(valor_original) tot_movimento_dolar_canada_dolar_eua += convertendo_valor_canada_eua elif moeda_origem == '4' and moeda_destino == '3': convertendo_valor_canada_euro = float(valor_original) tot_movimento_dolar_canada_euro += convertendo_valor_canada_euro print('--' * 30) valor_convertido = str(input(f'Valor convertido:? {moeda_destino_sigla}')) dados['Valor Convertido'] = [valor_convertido] lista_de_dados.append(valor_convertido) print('--' * 30) taxa_cobrada = str(input(f'Taxa cobrada:? R$:')) conversao_taxa = float(taxa_cobrada) tot_taxas += conversao_taxa dados['Taxa Cobrada'] = [taxa_cobrada] lista_de_dados.append(taxa_cobrada) print('--' * 30) copia_dados.append(dados.copy()) lista_principal.append(lista_de_dados) print('--' * 30) print('\033[1;90m----------------------- FIM CADASTRO -----------------------\033[0;0m') print('--' * 30) while True: continua_cadastro = \ str(input('\nCadastrar mais clientes:? [C - P/ CONTINUAR OU S - P/ SAIR]:?')).strip().upper()[0] print('') if continua_cadastro == 'C': break elif continua_cadastro == 'S': break else: print(f'\033[1;41m- SOMENTE UMA DAS OPÇÕES ACIMA: [C - CONTINUAR/ S - SAIR]:\033[0;0m') if continua_cadastro == 'S': print('--' * 35) print(' \033[1;30m\033[1;43m CARREGANDO MENU PRINCIPAL\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m50%\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m100%\033[0;0m', end='') print('\033[1;30m\033[1;43m \033[0;0m', end='') print('\n') break elif opcao_menu == '2': print('--' * 35) print(f'\033[7;40m{" RELATÓRIOS --> OPERAÇÕES REALIZADAS ":*^70}\033[0;0m') print('--' * 35) if codigo_cliente == 0: print('--' * 35) print(' \033[1;40m Aguarde ! AVERIGUANDO DADOS\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m50%\033[0;0m', end='') sleep(0.8) print('\033[1;40m.\033[0;0m', end='') sleep(0.8) print('\033[1;40m.\033[0;0m', end='') sleep(0.8) print('\033[1;40m100%\033[0;0m', end='') print('\033[1;40m \033[0;0m', end='') print('\n') print('--' * 35) print() print('\033[1;90m------------------------------------------------------------\033[0;0m') print('\033[1;41mATÉ O PRESENTE MOMENTO NÃO HÁ NENHUMA OPERAÇÃO REALIZADA !\033[0;0m') print('\033[1;90m------------------------------------------------------------\033[0;0m') print() print('--' * 35) print('--' * 35) print(' \033[1;30m\033[1;43m VOLTANDO AO MENU PRINCIPAL\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m50%\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m100%\033[0;0m', end='') print('\033[1;30m\033[1;43m \033[0;0m', end='') print('\n') elif codigo_cliente > 0: print('--' * 35) print(' \033[1;40m Aguarde ! AVERIGUANDO DADOS\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m50%\033[0;0m', end='') sleep(0.8) print('\033[1;40m.\033[0;0m', end='') sleep(0.8) print('\033[1;40m.\033[0;0m', end='') sleep(0.8) print('\033[1;40m100%\033[0;0m', end='') print('\033[1;40m \033[0;0m', end='') print('\n') print('--' * 35) print(f'\033[7;40m{" RELATÓRIOS --> OPERAÇÕES REALIZADAS: ":*^70}\033[0;0m') print('--' * 35) print() print(f'\033[1;42mATÉ O PRESENTE MOMENTO VOCÊ TEM UM TOTAL DE: {codigo_cliente} \033[0;0m', end='') if codigo_cliente == 1: print('\033[1;42mOPERAÇÃO !\033[0;0m') else: print('\033[1;42mOPERAÇÕES !\033[0;0m') print('--' * 35) print(' -- | ABAIXO SEGUE A LISTA COMPLETA DE TODOS OS REGISTROS ATÉ O MOMENTO! | -- ') print('--' * 35) print(' -------------------- |SEQUÊNCIA E ORDEM DE COLUNAS| -------------- VALORES -------------') print('1ºCÓD:|2ºNOME: |3ºMOED ORIG. |4º MOED DEST. |5º DATA: |6ºORIGI:|7ºCONV:|8ºTAXA. ') print('---' * 30) for c, v in enumerate(copia_dados): for d in v.values(): print(f" {str(d).replace('[', '').replace(']', '').replace('', '')}", end=' ') print() print() print() print('--' * 35) print('--' * 35) while True: voltar_menu_principal = str(input('Digite:[S]-SAIR:')).strip().upper()[0] if voltar_menu_principal == 'S': break else: print(f'\033[1;41mSOMENTE DIGITE A LETRA [S]-PARA SAIR! :\033[0;0m') print('--' * 35) print(' \033[1;30m\033[1;43m CARREGANDO MENU PRINCIPAL\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m50%\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m100%\033[0;0m', end='') print('\033[1;30m\033[1;43m \033[0;0m', end='') print('\n') elif opcao_menu == '3': if codigo_cliente == 0: print('--' * 35) print(' \033[1;40m Aguarde ! AVERIGUANDO OPERAÇÕES\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m50%\033[0;0m', end='') sleep(0.8) print('\033[1;40m.\033[0;0m', end='') sleep(0.8) print('\033[1;40m.\033[0;0m', end='') sleep(0.8) print('\033[1;40m100%\033[0;0m', end='') print('\033[1;40m \033[0;0m', end='') print('\n') print('--' * 35) print() print('\033[1;90m------------------------------------------------------------\033[0;0m') print('\033[1;41mATÉ O PRESENTE MOMENTO NÃO HÁ NENHUMA OPERAÇÃO REALIZADA !\033[0;0m') print('\033[1;90m------------------------------------------------------------\033[0;0m') print() print('--' * 35) print('--' * 35) print(' \033[1;30m\033[1;43m VOLTANDO AO MENU PRINCIPAL\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m50%\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m100%\033[0;0m', end='') print('\033[1;30m\033[1;43m \033[0;0m', end='') print('\n') elif codigo_cliente > 0: print('--' * 35) print(' \033[1;40m Aguarde ! AVERIGUANDO OPERAÇÕES\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m50%\033[0;0m', end='') sleep(0.8) print('\033[1;40m.\033[0;0m', end='') sleep(0.8) print('\033[1;40m.\033[0;0m', end='') sleep(0.8) print('\033[1;40m100%\033[0;0m', end='') print('\033[1;40m \033[0;0m', end='') print('\n') print('--' * 35) print(f'\033[7;40m{" RELATÓRIOS --> VALOR TOTAL DAS OPERAÇÕES: ":*^70}\033[0;0m') print('--' * 35) print() print(f'\033[1;42mATÉ O PRESENTE MOMENTO VOCÊ TEM UM TOTAL DE: {codigo_cliente} \033[0;0m', end='') if codigo_cliente == 1: print('\033[1;42mOPERAÇÃO !\033[0;0m') else: print('\033[1;42mOPERAÇÕES !\033[0;0m') if tot_movimento_brasil_dolar_eua > 0: print( f'DE: BRL - BRASIL / PARA: DÓLAR - EUA / MOVIMENTAÇÃO TOTAL DÊ R$: {tot_movimento_brasil_dolar_eua:.2f} REAIS.') if tot_movimento_brasil_euro > 0: print( f'DE: BRL - BRASIL / PARA: EURO - EUROPA / MOVIMENTAÇÃO TOTAL DÊ R$: {valor_tot_operacoes:.2f} REAIS.') if tot_movimento_brasil_dolar_canada > 0: print( f'DE: BRL - BRASIL / PARA: DÓLAR - CANADÁ / MOVIMENTAÇÃO TOTAL DÊ R$: {tot_movimento_brasil_dolar_canada:.2f} REAIS.') if tot_movimento_dolar_eua_brasil > 0: print( f'DE: DÓLAR - EUA / PARA: BRL - BRASIL / MOVIMENTAÇÃO TOTAL DÊ U$$: {tot_movimento_dolar_eua_brasil:.2f} DÓLAR') if tot_movimento_dolar_eua_euro > 0: print( f'DE: DÓLAR - EUA / PARA: EURO - EUROPA / MOVIMENTAÇÃO TOTAL DÊ U$$: {tot_movimento_dolar_eua_euro:.2f} DÓLAR') if tot_movimento_dolar_eua_dolar_canada > 0: print( f'DE: DÓLAR - EUA / PARA: DÓLAR - CANADÁ / MOVIMENTAÇÃO TOTAL DÊ U$$: {tot_movimento_dolar_eua_dolar_canada:.2f} DÓLAR') if tot_movimento_euro_brasil > 0: print( f'DE: EURO - EUROPA / PARA: BRL - BRASIL / MOVIMENTAÇÃO TOTAL DÊ €: {tot_movimento_euro_brasil:.2f} EURO.') if tot_movimento_euro_dolar_eua > 0: print( f'DE: EURO - EUROPA / PARA: DÓLAR - EUA / MOVIMENTAÇÃO TOTAL DÊ €: {tot_movimento_euro_dolar_eua:.2f} EURO.') if tot_movimento_euro_dolar_canada > 0: print( f'DE: EURO - EUROPA / PARA: DÓLAR - CANADÁ / MOVIMENTAÇÃO TOTAL DÊ €: {tot_movimento_euro_dolar_canada:.2f} EURO.') if tot_movimento_dolar_canada_brasil > 0: print( f'DE: DÓLAR - CANADÁ / PARA: BRL - BRASIL / MOVIMENTAÇÃO TOTAL DÊ U$$: {tot_movimento_dolar_canada_brasil:.2f} DÓLAR') if tot_movimento_dolar_canada_dolar_eua > 0: print( f'DE: DÓLAR - CANADÁ / PARA: DÓLAR - EUA / MOVIMENTAÇÃO TOTAL DÊ U$$: {tot_movimento_dolar_canada_dolar_eua:.2f} DÓLAR') if tot_movimento_dolar_canada_euro > 0: print( f'DE: DÓLAR - CANADÁ / PARA: EURO - EUROPA / MOVIMENTAÇÃO TOTAL DÊ U$$: {tot_movimento_dolar_canada_euro:.2f} DÓLAR') print() print() print() print('--' * 35) print('--' * 35) while True: voltar_menu_principal = str(input('Digite:[S]-SAIR:')).strip().upper()[0] if voltar_menu_principal == 'S': break else: print(f'\033[1;41mSOMENTE DIGITE A LETRA [S]-PARA SAIR! :\033[0;0m') print('--' * 35) print(' \033[1;30m\033[1;43m CARREGANDO MENU PRINCIPAL\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m50%\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m100%\033[0;0m', end='') print('\033[1;30m\033[1;43m \033[0;0m', end='') print('\n') elif opcao_menu == '4': if codigo_cliente == 0: print('--' * 35) print(' \033[1;40m Aguarde ! AVERIGUANDO SISTEMA\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m50%\033[0;0m', end='') sleep(0.8) print('\033[1;40m.\033[0;0m', end='') sleep(0.8) print('\033[1;40m.\033[0;0m', end='') sleep(0.8) print('\033[1;40m100%\033[0;0m', end='') print('\033[1;40m \033[0;0m', end='') print('\n') print('--' * 35) print() print('\033[1;90m------------------------------------------------------------\033[0;0m') print('\033[1;41mATÉ O PRESENTE MOMENTO NÃO HÁ NENHUMA OPERAÇÃO REALIZADA !\033[0;0m') print('\033[1;90m------------------------------------------------------------\033[0;0m') print() print('--' * 35) print('--' * 35) print(' \033[1;30m\033[1;43m VOLTANDO AO MENU PRINCIPAL\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m50%\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m100%\033[0;0m', end='') print('\033[1;30m\033[1;43m \033[0;0m', end='') print('\n') elif codigo_cliente > 0: print('--' * 35) print(' \033[1;40m Aguarde ! AVERIGUANDO SISTEMA\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m.\033[0;0m', end='') sleep(0.3) print('\033[1;40m50%\033[0;0m', end='') sleep(0.8) print('\033[1;40m.\033[0;0m', end='') sleep(0.8) print('\033[1;40m.\033[0;0m', end='') sleep(0.8) print('\033[1;40m100%\033[0;0m', end='') print('\033[1;40m \033[0;0m', end='') print('\n') print('--' * 35) print(f'\033[7;40m{" RELATÓRIOS --> VALOR TOTAL DE TAXAS: ":*^70}\033[0;0m') print('--' * 35) print() print(f'\033[1;42mATÉ O PRESENTE MOMENTO VOCÊ TEM: {codigo_cliente} \033[0;0m', end='') if codigo_cliente == 1: print('\033[1;42mOPERAÇÃO REGISTRADA!\033[0;0m') else: print('\033[1;42mOPERAÇÕES REGISTRADAS!\033[0;0m') print('\033[1;90m------------------------------------------------------------\033[0;0m') print(f'SOMANDO TODAS AS ENTRADAS EM TAXAS: TEMOS UM TOTAL DÊ R$: {tot_taxas:.2f} REAIS.') print(f'AS MESMAS SÃO REFERENTE AS DEVIDAS CONVERSÕES ABAIXO:') print('\033[1;90m------------------------------------------------------------\033[0;0m') if tot_movimento_brasil_dolar_eua > 0: print( f'DE: BRL - BRASIL / PARA: DÓLAR - EUA / MOVIMENTAÇÃO TOTAL DÊ R$: {tot_movimento_brasil_dolar_eua:.2f} REAIS.') if tot_movimento_brasil_euro > 0: print( f'DE: BRL - BRASIL / PARA: EURO - EUROPA / MOVIMENTAÇÃO TOTAL DÊ R$: {valor_tot_operacoes:.2f} REAIS.') if tot_movimento_brasil_dolar_canada > 0: print( f'DE: BRL - BRASIL / PARA: DÓLAR - CANADÁ / MOVIMENTAÇÃO TOTAL DÊ R$: {tot_movimento_brasil_dolar_canada:.2f} REAIS.') if tot_movimento_dolar_eua_brasil > 0: print( f'DE: DÓLAR - EUA / PARA: BRL - BRASIL / MOVIMENTAÇÃO TOTAL DÊ U$$: {tot_movimento_dolar_eua_brasil:.2f} DÓLAR') if tot_movimento_dolar_eua_euro > 0: print( f'DE: DÓLAR - EUA / PARA: EURO - EUROPA / MOVIMENTAÇÃO TOTAL DÊ U$$: {tot_movimento_dolar_eua_euro:.2f} DÓLAR') if tot_movimento_dolar_eua_dolar_canada > 0: print( f'DE: DÓLAR - EUA / PARA: DÓLAR - CANADÁ / MOVIMENTAÇÃO TOTAL DÊ U$$: {tot_movimento_dolar_eua_dolar_canada:.2f} DÓLAR') if tot_movimento_euro_brasil > 0: print( f'DE: EURO - EUROPA / PARA: BRL - BRASIL / MOVIMENTAÇÃO TOTAL DÊ €: {tot_movimento_euro_brasil:.2f} EURO.') if tot_movimento_euro_dolar_eua > 0: print( f'DE: EURO - EUROPA / PARA: DÓLAR - EUA / MOVIMENTAÇÃO TOTAL DÊ €: {tot_movimento_euro_dolar_eua:.2f} EURO.') if tot_movimento_euro_dolar_canada > 0: print( f'DE: EURO - EUROPA / PARA: DÓLAR - CANADÁ / MOVIMENTAÇÃO TOTAL DÊ €: {tot_movimento_euro_dolar_canada:.2f} EURO.') if tot_movimento_dolar_canada_brasil > 0: print( f'DE: DÓLAR - CANADÁ / PARA: BRL - BRASIL / MOVIMENTAÇÃO TOTAL DÊ U$$: {tot_movimento_dolar_canada_brasil:.2f} DÓLAR') if tot_movimento_dolar_canada_dolar_eua > 0: print( f'DE: DÓLAR - CANADÁ / PARA: DÓLAR - EUA / MOVIMENTAÇÃO TOTAL DÊ U$$: {tot_movimento_dolar_canada_dolar_eua:.2f} DÓLAR') if tot_movimento_dolar_canada_euro > 0: print( f'DE: DÓLAR - CANADÁ / PARA: EURO - EUROPA / MOVIMENTAÇÃO TOTAL DÊ U$$: {tot_movimento_dolar_canada_euro:.2f} DÓLAR') print() print() print() print('--' * 35) print('--' * 35) while True: voltar_menu_principal = str(input('Digite:[S]-SAIR:')).strip().upper()[0] if voltar_menu_principal == 'S': break print('--' * 35) print(' \033[1;30m\033[1;43m CARREGANDO MENU PRINCIPAL\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.3) print('\033[1;30m\033[1;43m50%\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m.\033[0;0m', end='') sleep(0.8) print('\033[1;30m\033[1;43m100%\033[0;0m', end='') print('\033[1;30m\033[1;43m \033[0;0m', end='') print('\n')
[ 6738, 640, 1330, 3993, 198, 198, 67, 22484, 796, 23884, 44386, 14610, 360, 2149, 2849, 127, 223, 7112, 46, 19644, 36, 12473, 16926, 2640, 7294, 360, 2885, 2640, 9440, 7946, 2937, 47203, 9782, 3824, 2640, 26173, 1581, 1546, 26, 4522, 11, 399, 13649, 412, 4825, 986, 198, 4868, 64, 62, 2934, 62, 67, 22484, 796, 17635, 198, 4868, 64, 62, 1050, 1939, 8521, 796, 17635, 198, 22163, 544, 62, 67, 22484, 796, 17635, 21017, 14610, 360, 2149, 2849, 127, 223, 7112, 46, 19644, 36, 12473, 16926, 2640, 7294, 360, 2885, 2640, 198, 19815, 14031, 62, 16366, 68, 796, 657, 44386, 14610, 22904, 2885, 1581, 22904, 4760, 3620, 48213, 4090, 127, 229, 127, 243, 1546, 198, 5908, 18082, 62, 11612, 368, 62, 82, 328, 5031, 796, 705, 49, 3, 32105, 198, 5908, 18082, 62, 16520, 2879, 62, 82, 328, 5031, 796, 705, 52, 13702, 32105, 198, 2100, 273, 62, 83, 313, 62, 3575, 330, 3028, 796, 12178, 7, 15, 8, 198, 2100, 273, 62, 83, 313, 62, 3575, 330, 3028, 62, 64, 796, 12178, 7, 15, 8, 198, 83, 313, 62, 19290, 292, 796, 12178, 7, 15, 8, 198, 83, 313, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 67, 6192, 62, 68, 6413, 796, 12178, 7, 15, 8, 198, 83, 313, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 44252, 796, 12178, 7, 15, 8, 198, 83, 313, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 67, 6192, 62, 5171, 4763, 796, 12178, 7, 15, 8, 198, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 1671, 292, 346, 796, 12178, 7, 15, 8, 198, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 44252, 796, 12178, 7, 15, 8, 198, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 67, 6192, 62, 5171, 4763, 796, 12178, 7, 15, 8, 198, 83, 313, 62, 76, 709, 3681, 78, 62, 44252, 62, 1671, 292, 346, 796, 12178, 7, 15, 8, 198, 83, 313, 62, 76, 709, 3681, 78, 62, 44252, 62, 67, 6192, 62, 68, 6413, 796, 12178, 7, 15, 8, 198, 83, 313, 62, 76, 709, 3681, 78, 62, 44252, 62, 67, 6192, 62, 5171, 4763, 796, 12178, 7, 15, 8, 198, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 1671, 292, 346, 796, 12178, 7, 15, 8, 198, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 67, 6192, 62, 68, 6413, 796, 12178, 7, 15, 8, 198, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 44252, 796, 12178, 7, 15, 8, 628, 198, 4798, 10786, 438, 6, 1635, 3439, 8, 198, 4798, 7, 69, 6, 59, 44427, 58, 22, 26, 1821, 76, 4895, 220, 220, 44186, 24181, 40, 2885, 1581, 5550, 43521, 32, 127, 229, 127, 243, 1546, 220, 366, 25, 9, 61, 2154, 32239, 44427, 58, 15, 26, 15, 76, 11537, 198, 4798, 10786, 438, 6, 1635, 3439, 8, 198, 198, 4514, 6407, 25, 198, 220, 220, 220, 3601, 7, 69, 6, 220, 220, 220, 220, 44233, 19779, 3185, 127, 229, 5746, 46, 220, 366, 21912, 27, 17, 92, 4895, 220, 220, 41597, 52, 220, 220, 366, 21912, 61, 2548, 92, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 11537, 198, 220, 220, 220, 3601, 7, 69, 6, 220, 220, 220, 220, 930, 59, 44427, 58, 16, 26, 3829, 76, 43801, 438, 220, 3467, 44427, 58, 15, 26, 15, 76, 91, 11537, 198, 220, 220, 220, 3601, 7, 69, 6, 220, 220, 220, 220, 930, 59, 44427, 58, 22, 26, 1821, 76, 4895, 4613, 352, 24293, 1298, 29847, 18, 92, 91, 4895, 532, 37292, 1921, 5446, 2640, 532, 45148, 1546, 532, 43521, 32, 127, 229, 127, 243, 1546, 366, 25, 61, 2548, 92, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 91, 11537, 198, 220, 220, 220, 3601, 7, 69, 6, 220, 220, 220, 220, 930, 59, 44427, 58, 16, 26, 3829, 76, 43801, 438, 220, 3467, 44427, 58, 15, 26, 15, 76, 91, 11537, 198, 220, 220, 220, 3601, 7, 69, 6, 220, 220, 220, 220, 930, 4895, 4613, 362, 24293, 1298, 29847, 18, 92, 91, 4895, 220, 532, 39498, 1503, 43521, 32, 127, 229, 127, 243, 1546, 532, 366, 25, 61, 2548, 92, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 11537, 198, 220, 220, 220, 3601, 7, 69, 6, 220, 220, 220, 220, 930, 59, 44427, 58, 16, 26, 3829, 76, 43801, 438, 220, 3467, 44427, 58, 15, 26, 15, 76, 91, 11537, 198, 220, 220, 220, 3601, 7, 69, 6, 220, 220, 220, 220, 930, 59, 44427, 58, 22, 26, 1821, 76, 4895, 4613, 513, 24293, 1298, 29847, 18, 92, 91, 4895, 220, 532, 26173, 1581, 36247, 360, 1921, 43521, 32, 127, 229, 127, 243, 1546, 532, 366, 25, 61, 2548, 92, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 91, 11537, 198, 220, 220, 220, 3601, 7, 69, 6, 220, 220, 220, 220, 930, 59, 44427, 58, 16, 26, 3829, 76, 43801, 438, 220, 3467, 44427, 58, 15, 26, 15, 76, 91, 11537, 198, 220, 220, 220, 3601, 7, 69, 6, 220, 220, 220, 220, 930, 4895, 4613, 604, 24293, 1298, 29847, 18, 92, 91, 4895, 532, 26173, 1581, 36247, 360, 1921, 21664, 55, 1921, 7375, 11473, 2885, 1921, 532, 366, 25, 61, 2548, 92, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 930, 11537, 198, 220, 220, 220, 3601, 7, 69, 6, 220, 220, 220, 220, 930, 59, 44427, 58, 16, 26, 3829, 76, 43801, 438, 220, 3467, 44427, 58, 15, 26, 15, 76, 91, 11537, 198, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 3601, 7, 69, 6, 59, 44427, 58, 22, 26, 1821, 76, 4895, 220, 220, 40251, 3535, 7801, 471, 5673, 360, 1921, 13349, 127, 229, 127, 243, 1546, 7125, 3955, 32, 25, 220, 366, 25, 9, 61, 2154, 32239, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 1034, 66, 5488, 62, 26272, 796, 965, 7, 15414, 10786, 19511, 578, 257, 1034, 16175, 28749, 748, 68, 73, 4763, 25, 8348, 4008, 628, 220, 220, 220, 611, 1034, 66, 5488, 62, 26272, 13, 271, 77, 39223, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1034, 66, 5488, 62, 26272, 6624, 705, 16, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 59, 44427, 58, 22, 26, 1821, 76, 4895, 220, 220, 37292, 1921, 5446, 1503, 45148, 1546, 220, 366, 25, 9, 61, 2154, 32239, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14873, 14031, 62, 16366, 68, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14873, 14031, 62, 16366, 68, 62, 1102, 1851, 3755, 796, 965, 7, 19815, 14031, 62, 16366, 68, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 14610, 1391, 19815, 14031, 62, 16366, 68, 92, 36165, 45148, 36, 532, 6375, 39429, 5550, 18871, 12861, 127, 229, 46, 5550, 399, 36165, 685, 1391, 19815, 14031, 62, 16366, 68, 62, 1102, 1851, 3755, 92, 2361, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9955, 418, 17816, 34, 10205, 67, 20520, 796, 685, 19815, 14031, 62, 16366, 68, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 7, 19815, 14031, 62, 16366, 68, 62, 1102, 1851, 3755, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 462, 796, 965, 7, 15414, 10786, 19511, 578, 267, 299, 462, 466, 5456, 68, 25, 8348, 29720, 36311, 22446, 45828, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9955, 418, 17816, 45, 462, 20520, 796, 685, 77, 462, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 7, 77, 462, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 7, 69, 6, 51, 6465, 36, 360, 2885, 2640, 25, 1391, 67, 22484, 92, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 1783, 6329, 220, 220, 13070, 1961, 1921, 37292, 1921, 5446, 2885, 1921, 220, 220, 34400, 6329, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 16, 8, 31215, 13070, 1961, 32, 32744, 532, 11177, 1921, 4146, 220, 220, 930, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 17, 8, 31215, 13070, 1961, 32, 360, 127, 241, 43, 1503, 532, 4576, 32, 220, 220, 220, 220, 930, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 18, 8, 31215, 13070, 1961, 32, 27526, 46, 532, 27526, 43345, 220, 220, 930, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 19, 8, 31215, 13070, 1961, 32, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 220, 930, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 20368, 32284, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6941, 18082, 62, 11612, 368, 796, 965, 7, 15414, 10786, 16632, 18082, 390, 1796, 368, 27514, 685, 82, 296, 21872, 299, 21356, 647, 418, 936, 8083, 5974, 8348, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9955, 418, 17816, 16632, 18082, 1796, 368, 20520, 796, 685, 5908, 18082, 62, 11612, 368, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 6941, 18082, 62, 11612, 368, 6624, 705, 16, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 11770, 1961, 32, 5550, 43901, 3620, 25, 532, 32744, 532, 11177, 1921, 4146, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9955, 418, 17816, 16632, 18082, 1796, 368, 20520, 796, 37250, 2200, 1847, 532, 347, 7836, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6941, 18082, 62, 11612, 368, 62, 82, 328, 5031, 796, 705, 49, 3, 32105, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 2200, 1847, 532, 347, 7836, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 17, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 11770, 1961, 32, 5550, 43901, 3620, 25, 532, 360, 127, 241, 43, 1503, 532, 4576, 32, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9955, 418, 17816, 16632, 18082, 1796, 368, 20520, 796, 37250, 35, 127, 241, 43, 1503, 532, 4576, 32, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6941, 18082, 62, 11612, 368, 62, 82, 328, 5031, 796, 705, 52, 13702, 32105, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 35, 127, 241, 43, 1503, 532, 4576, 32, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 18, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 11770, 1961, 32, 5550, 43901, 3620, 25, 532, 27526, 46, 532, 27526, 43345, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9955, 418, 17816, 16632, 18082, 1796, 368, 20520, 796, 37250, 36, 4261, 46, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6941, 18082, 62, 11612, 368, 62, 82, 328, 5031, 796, 705, 26391, 32105, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 36, 4261, 46, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 19, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 11770, 1961, 32, 5550, 43901, 3620, 25, 532, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9955, 418, 17816, 16632, 18082, 1796, 368, 20520, 796, 37250, 35, 127, 241, 43, 1503, 532, 37292, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6941, 18082, 62, 11612, 368, 62, 82, 328, 5031, 796, 705, 52, 13702, 32105, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 35, 127, 241, 43, 1503, 532, 37292, 11537, 628, 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, 981, 6407, 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, 3601, 7, 69, 6, 59, 44427, 58, 16, 26, 3901, 76, 23428, 1581, 34899, 127, 223, 43, 2389, 46, 532, 42121, 3525, 36, 399, 127, 248, 29296, 2640, 5550, 352, 317, 604, 1195, 8924, 23929, 19535, 47, 18672, 3620, 7054, 13070, 1961, 1921, 37292, 1921, 5446, 2885, 1921, 7479, 44427, 58, 15, 26, 15, 76, 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, 3601, 10786, 438, 6, 1635, 1542, 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, 3601, 10786, 1783, 6329, 220, 220, 13070, 1961, 1921, 37292, 1921, 5446, 2885, 1921, 220, 220, 34400, 6329, 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, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 16, 8, 31215, 13070, 1961, 32, 32744, 532, 11177, 1921, 4146, 220, 220, 930, 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, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 17, 8, 31215, 13070, 1961, 32, 360, 127, 241, 43, 1503, 532, 4576, 32, 220, 220, 220, 220, 930, 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, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 18, 8, 31215, 13070, 1961, 32, 27526, 46, 532, 27526, 43345, 220, 220, 930, 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, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 19, 8, 31215, 13070, 1961, 32, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 220, 930, 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, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 20368, 32284, 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, 6941, 18082, 62, 11612, 368, 796, 965, 7, 15414, 10786, 16632, 18082, 390, 1796, 368, 27514, 685, 82, 296, 21872, 299, 21356, 647, 418, 936, 8083, 5974, 8348, 4008, 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, 10786, 438, 6, 1635, 1542, 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, 611, 6941, 18082, 62, 11612, 368, 6624, 705, 16, 10354, 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, 3601, 10786, 11770, 1961, 32, 5550, 43901, 3620, 25, 532, 32744, 532, 11177, 1921, 4146, 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, 9955, 418, 17816, 16632, 18082, 1796, 368, 20520, 796, 37250, 2200, 1847, 532, 347, 7836, 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, 220, 220, 220, 220, 6941, 18082, 62, 11612, 368, 62, 82, 328, 5031, 796, 705, 49, 3, 32105, 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, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 2200, 1847, 532, 347, 7836, 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, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 17, 10354, 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, 3601, 10786, 11770, 1961, 32, 5550, 43901, 3620, 25, 532, 360, 127, 241, 43, 1503, 532, 4576, 32, 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, 9955, 418, 17816, 16632, 18082, 1796, 368, 20520, 796, 37250, 35, 127, 241, 43, 1503, 532, 4576, 32, 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, 220, 220, 220, 220, 6941, 18082, 62, 11612, 368, 62, 82, 328, 5031, 796, 705, 52, 13702, 32105, 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, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 35, 127, 241, 43, 1503, 532, 4576, 32, 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, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 18, 10354, 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, 3601, 10786, 11770, 1961, 32, 5550, 43901, 3620, 25, 532, 27526, 46, 532, 27526, 43345, 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, 9955, 418, 17816, 16632, 18082, 1796, 368, 20520, 796, 37250, 36, 4261, 46, 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, 220, 220, 220, 220, 6941, 18082, 62, 11612, 368, 62, 82, 328, 5031, 796, 705, 26391, 32105, 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, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 36, 4261, 46, 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, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 19, 10354, 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, 3601, 10786, 11770, 1961, 32, 5550, 43901, 3620, 25, 532, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 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, 9955, 418, 17816, 16632, 18082, 1796, 368, 20520, 796, 37250, 35, 127, 241, 43, 1503, 532, 37292, 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, 220, 220, 220, 220, 6941, 18082, 62, 11612, 368, 62, 82, 328, 5031, 796, 705, 52, 13702, 32105, 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, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 35, 127, 241, 43, 1503, 532, 37292, 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, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 1783, 6329, 220, 220, 13070, 1961, 1921, 37292, 1921, 5446, 2885, 1921, 220, 220, 34400, 6329, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 16, 8, 31215, 13070, 1961, 32, 32744, 532, 11177, 1921, 4146, 220, 220, 930, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 17, 8, 31215, 13070, 1961, 32, 360, 127, 241, 43, 1503, 532, 4576, 32, 220, 220, 220, 220, 930, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 18, 8, 31215, 13070, 1961, 32, 27526, 46, 532, 27526, 43345, 220, 220, 930, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 19, 8, 31215, 13070, 1961, 32, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 220, 930, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 20368, 32284, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6941, 18082, 62, 16520, 2879, 796, 965, 7, 15414, 10786, 16632, 18082, 390, 2244, 2879, 27514, 685, 82, 296, 21872, 299, 21356, 647, 418, 936, 8083, 5974, 8348, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 6941, 18082, 62, 16520, 2879, 6624, 705, 16, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 11770, 1961, 32, 5550, 360, 6465, 46016, 25, 532, 32744, 532, 11177, 1921, 4146, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9955, 418, 17816, 16632, 18082, 2244, 2879, 20520, 796, 37250, 2200, 1847, 532, 11177, 1921, 4146, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6941, 18082, 62, 16520, 2879, 62, 82, 328, 5031, 796, 705, 49, 3, 32105, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 2200, 1847, 532, 11177, 1921, 4146, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 16520, 2879, 6624, 705, 17, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 11770, 1961, 32, 5550, 360, 6465, 46016, 25, 532, 360, 127, 241, 43, 1503, 532, 4576, 32, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9955, 418, 17816, 16632, 18082, 2244, 2879, 20520, 796, 37250, 35, 127, 241, 43, 1503, 532, 4576, 32, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6941, 18082, 62, 16520, 2879, 62, 82, 328, 5031, 796, 705, 52, 13702, 32105, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 35, 127, 241, 43, 1503, 532, 4576, 32, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 16520, 2879, 6624, 705, 18, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 11770, 1961, 32, 5550, 360, 6465, 46016, 25, 532, 27526, 46, 532, 27526, 43345, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9955, 418, 17816, 16632, 18082, 2244, 2879, 20520, 796, 37250, 36, 4261, 46, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6941, 18082, 62, 16520, 2879, 62, 82, 328, 5031, 796, 705, 26391, 32105, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 36, 4261, 46, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 16520, 2879, 6624, 705, 19, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 11770, 1961, 32, 5550, 360, 6465, 46016, 25, 532, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9955, 418, 17816, 16632, 18082, 2244, 2879, 20520, 796, 37250, 35, 127, 241, 43, 1503, 37292, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6941, 18082, 62, 16520, 2879, 62, 82, 328, 5031, 796, 705, 52, 13702, 32105, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 35, 127, 241, 43, 1503, 37292, 11537, 628, 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, 981, 6407, 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, 3601, 7, 69, 6, 59, 44427, 58, 16, 26, 3901, 76, 23428, 1581, 34899, 127, 223, 43, 2389, 46, 532, 42121, 3525, 36, 399, 127, 248, 29296, 2640, 5550, 352, 317, 604, 1195, 8924, 23929, 19535, 47, 18672, 3620, 7054, 13070, 1961, 1921, 37292, 1921, 5446, 2885, 1921, 7479, 44427, 58, 15, 26, 15, 76, 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, 3601, 10786, 438, 6, 1635, 1542, 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, 3601, 10786, 1783, 6329, 220, 220, 13070, 1961, 1921, 37292, 1921, 5446, 2885, 1921, 220, 220, 34400, 6329, 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, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 16, 8, 31215, 13070, 1961, 32, 32744, 532, 11177, 1921, 4146, 220, 220, 930, 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, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 17, 8, 31215, 13070, 1961, 32, 360, 127, 241, 43, 1503, 532, 4576, 32, 220, 220, 220, 220, 930, 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, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 18, 8, 31215, 13070, 1961, 32, 27526, 46, 532, 27526, 43345, 220, 220, 930, 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, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 19, 8, 31215, 13070, 1961, 32, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 220, 930, 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, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 20368, 32284, 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, 6941, 18082, 62, 16520, 2879, 796, 965, 7, 15414, 10786, 16632, 18082, 390, 2244, 2879, 27514, 685, 82, 296, 21872, 299, 21356, 647, 418, 936, 8083, 5974, 8348, 4008, 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, 10786, 438, 6, 1635, 1542, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 6941, 18082, 62, 16520, 2879, 6624, 705, 16, 10354, 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, 3601, 10786, 11770, 1961, 32, 5550, 360, 6465, 46016, 25, 532, 32744, 532, 11177, 1921, 4146, 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, 9955, 418, 17816, 16632, 18082, 2244, 2879, 20520, 796, 37250, 2200, 1847, 532, 11177, 1921, 4146, 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, 220, 220, 220, 220, 6941, 18082, 62, 16520, 2879, 62, 82, 328, 5031, 796, 705, 49, 3, 32105, 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, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 2200, 1847, 532, 11177, 1921, 4146, 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, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 16520, 2879, 6624, 705, 17, 10354, 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, 3601, 10786, 11770, 1961, 32, 5550, 360, 6465, 46016, 25, 532, 360, 127, 241, 43, 1503, 532, 4576, 32, 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, 9955, 418, 17816, 16632, 18082, 2244, 2879, 20520, 796, 37250, 35, 127, 241, 43, 1503, 532, 4576, 32, 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, 220, 220, 220, 220, 6941, 18082, 62, 16520, 2879, 62, 82, 328, 5031, 796, 705, 52, 13702, 32105, 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, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 35, 127, 241, 43, 1503, 532, 4576, 32, 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, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 16520, 2879, 6624, 705, 18, 10354, 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, 3601, 10786, 11770, 1961, 32, 5550, 360, 6465, 46016, 25, 532, 27526, 46, 532, 27526, 43345, 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, 9955, 418, 17816, 16632, 18082, 2244, 2879, 20520, 796, 37250, 36, 4261, 46, 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, 220, 220, 220, 220, 6941, 18082, 62, 16520, 2879, 62, 82, 328, 5031, 796, 705, 26391, 32105, 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, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 36, 4261, 46, 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, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 16520, 2879, 6624, 705, 19, 10354, 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, 3601, 10786, 11770, 1961, 32, 5550, 360, 6465, 46016, 25, 532, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 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, 9955, 418, 17816, 16632, 18082, 2244, 2879, 20520, 796, 37250, 35, 127, 241, 43, 1503, 37292, 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, 220, 220, 220, 220, 6941, 18082, 62, 16520, 2879, 62, 82, 328, 5031, 796, 705, 52, 13702, 32105, 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, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 35, 127, 241, 43, 1503, 37292, 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, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 3575, 330, 5488, 796, 965, 7, 15414, 10786, 6601, 12379, 27296, 16175, 28749, 7479, 44427, 58, 16, 26, 3829, 76, 58, 15285, 7473, 41636, 46, 25, 11593, 14, 834, 14, 1427, 2361, 59, 44427, 58, 15, 26, 15, 76, 25, 8348, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9955, 418, 17816, 6601, 26049, 16175, 28749, 20520, 796, 685, 7890, 62, 3575, 330, 5488, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 7, 7890, 62, 3575, 330, 5488, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1188, 273, 62, 14986, 796, 965, 7, 15414, 7, 69, 6, 7762, 273, 2656, 25, 30, 1391, 5908, 18082, 62, 11612, 368, 62, 82, 328, 5031, 92, 6, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9955, 418, 17816, 7762, 273, 13745, 20520, 796, 685, 2100, 273, 62, 14986, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 7, 2100, 273, 62, 14986, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 796, 12178, 7, 2100, 273, 62, 14986, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1188, 273, 62, 83, 313, 62, 3575, 330, 3028, 15853, 10385, 31110, 62, 2100, 273, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 6941, 18082, 62, 11612, 368, 6624, 705, 16, 6, 290, 6941, 18082, 62, 16520, 2879, 6624, 705, 17, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 62, 1671, 292, 346, 796, 12178, 7, 2100, 273, 62, 14986, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2006, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 67, 6192, 62, 68, 6413, 15853, 10385, 31110, 62, 2100, 273, 62, 1671, 292, 346, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 16, 6, 290, 6941, 18082, 62, 16520, 2879, 6624, 705, 18, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 62, 1671, 292, 346, 62, 44252, 796, 12178, 7, 2100, 273, 62, 14986, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2006, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 44252, 15853, 10385, 31110, 62, 2100, 273, 62, 1671, 292, 346, 62, 44252, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 16, 6, 290, 6941, 18082, 62, 16520, 2879, 6624, 705, 19, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 62, 1671, 292, 346, 62, 67, 6192, 62, 5171, 4763, 796, 12178, 7, 2100, 273, 62, 14986, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2006, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 67, 6192, 62, 5171, 4763, 15853, 10385, 31110, 62, 2100, 273, 62, 1671, 292, 346, 62, 67, 6192, 62, 5171, 4763, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 6941, 18082, 62, 11612, 368, 6624, 705, 17, 6, 290, 6941, 18082, 62, 16520, 2879, 6624, 705, 16, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 62, 68, 6413, 62, 1671, 292, 346, 796, 12178, 7, 2100, 273, 62, 14986, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 1671, 292, 346, 15853, 10385, 31110, 62, 2100, 273, 62, 68, 6413, 62, 1671, 292, 346, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 17, 6, 290, 6941, 18082, 62, 16520, 2879, 6624, 705, 18, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 62, 68, 6413, 62, 44252, 796, 12178, 7, 2100, 273, 62, 14986, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 44252, 15853, 10385, 31110, 62, 2100, 273, 62, 68, 6413, 62, 44252, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 17, 6, 290, 6941, 18082, 62, 16520, 2879, 6624, 705, 19, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 62, 68, 6413, 62, 5171, 4763, 796, 12178, 7, 2100, 273, 62, 14986, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 67, 6192, 62, 5171, 4763, 15853, 10385, 31110, 62, 2100, 273, 62, 68, 6413, 62, 5171, 4763, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 6941, 18082, 62, 11612, 368, 6624, 705, 18, 6, 290, 6941, 18082, 62, 16520, 2879, 6624, 705, 16, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 62, 44252, 62, 1671, 292, 346, 796, 12178, 7, 2100, 273, 62, 14986, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2006, 62, 76, 709, 3681, 78, 62, 44252, 62, 1671, 292, 346, 15853, 10385, 31110, 62, 2100, 273, 62, 44252, 62, 1671, 292, 346, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 18, 6, 290, 6941, 18082, 62, 16520, 2879, 6624, 705, 17, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 62, 44252, 62, 68, 6413, 796, 12178, 7, 2100, 273, 62, 14986, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2006, 62, 76, 709, 3681, 78, 62, 44252, 62, 67, 6192, 62, 68, 6413, 15853, 10385, 31110, 62, 2100, 273, 62, 44252, 62, 68, 6413, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 18, 6, 290, 6941, 18082, 62, 16520, 2879, 6624, 705, 19, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 62, 44252, 62, 5171, 4763, 796, 12178, 7, 2100, 273, 62, 14986, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2006, 62, 76, 709, 3681, 78, 62, 44252, 62, 67, 6192, 62, 5171, 4763, 15853, 10385, 31110, 62, 2100, 273, 62, 44252, 62, 5171, 4763, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 6941, 18082, 62, 11612, 368, 6624, 705, 19, 6, 290, 6941, 18082, 62, 16520, 2879, 6624, 705, 16, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 62, 5171, 4763, 62, 1671, 292, 346, 796, 12178, 7, 2100, 273, 62, 14986, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 1671, 292, 346, 15853, 10385, 31110, 62, 2100, 273, 62, 5171, 4763, 62, 1671, 292, 346, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 19, 6, 290, 6941, 18082, 62, 16520, 2879, 6624, 705, 17, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 62, 5171, 4763, 62, 68, 6413, 796, 12178, 7, 2100, 273, 62, 14986, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 67, 6192, 62, 68, 6413, 15853, 10385, 31110, 62, 2100, 273, 62, 5171, 4763, 62, 68, 6413, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 19, 6, 290, 6941, 18082, 62, 16520, 2879, 6624, 705, 18, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 62, 5171, 4763, 62, 44252, 796, 12178, 7, 2100, 273, 62, 14986, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 44252, 15853, 10385, 31110, 62, 2100, 273, 62, 5171, 4763, 62, 44252, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1188, 273, 62, 1102, 1851, 17305, 796, 965, 7, 15414, 7, 69, 6, 7762, 273, 10385, 17305, 25, 30, 1391, 5908, 18082, 62, 16520, 2879, 62, 82, 328, 5031, 92, 6, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9955, 418, 17816, 7762, 273, 38240, 17305, 20520, 796, 685, 2100, 273, 62, 1102, 1851, 17305, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 7, 2100, 273, 62, 1102, 1851, 17305, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1687, 64, 62, 66, 672, 81, 4763, 796, 965, 7, 15414, 7, 69, 6, 27017, 64, 22843, 81, 4763, 25, 30, 371, 3, 32105, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3453, 5488, 62, 19290, 64, 796, 12178, 7, 19290, 64, 62, 66, 672, 81, 4763, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2006, 62, 19290, 292, 15853, 3453, 5488, 62, 19290, 64, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9955, 418, 17816, 27017, 64, 14828, 81, 4763, 20520, 796, 685, 19290, 64, 62, 66, 672, 81, 4763, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 7, 19290, 64, 62, 66, 672, 81, 4763, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2243, 544, 62, 67, 22484, 13, 33295, 7, 67, 22484, 13, 30073, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 1050, 1939, 8521, 13, 33295, 7, 4868, 64, 62, 2934, 62, 67, 22484, 8, 628, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3829, 76, 19351, 6329, 376, 3955, 37292, 1921, 5446, 46, 41436, 6329, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1261, 6413, 62, 66, 324, 459, 305, 796, 965, 7, 15414, 10786, 59, 77, 34, 324, 459, 20040, 285, 15152, 5456, 274, 25, 30, 685, 34, 532, 350, 14, 43659, 52, 1503, 47070, 311, 532, 350, 14, 14719, 4663, 5974, 8348, 29720, 36311, 22446, 45828, 3419, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1261, 6413, 62, 66, 324, 459, 305, 6624, 705, 34, 10354, 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, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1261, 6413, 62, 66, 324, 459, 305, 6624, 705, 50, 10354, 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, 628, 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, 3601, 7, 69, 6, 59, 44427, 58, 16, 26, 3901, 76, 12, 42121, 3525, 36, 471, 5673, 360, 1921, 13349, 127, 229, 127, 243, 1546, 7125, 3955, 32, 25, 685, 34, 532, 43659, 52, 1503, 14, 311, 532, 14719, 4663, 5974, 59, 44427, 58, 15, 26, 15, 76, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1261, 6413, 62, 66, 324, 459, 305, 6624, 705, 50, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 220, 220, 17368, 31553, 6981, 46, 41597, 52, 4810, 30158, 4061, 1847, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 628, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1034, 66, 5488, 62, 26272, 6624, 705, 17, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 59, 44427, 58, 22, 26, 1821, 76, 4895, 220, 220, 29749, 1404, 127, 241, 7112, 2640, 14610, 43521, 32, 127, 229, 127, 243, 1546, 32744, 14887, 2885, 1921, 220, 366, 25, 9, 61, 2154, 32239, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 14873, 14031, 62, 16366, 68, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1821, 76, 220, 220, 220, 33118, 45093, 5145, 317, 5959, 3528, 52, 6981, 46, 360, 2885, 2640, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3829, 76, 47232, 10541, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3901, 76, 1404, 38351, 440, 32552, 3525, 36, 337, 2662, 3525, 46, 399, 5746, 46, 367, 127, 223, 399, 1677, 39, 52, 5673, 43521, 32, 127, 229, 5746, 46, 32744, 14887, 26853, 5145, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3829, 76, 47232, 10541, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 220, 220, 38570, 51, 6981, 46, 317, 46, 41597, 52, 4810, 30158, 4061, 1847, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 14873, 14031, 62, 16366, 68, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1821, 76, 220, 220, 220, 33118, 45093, 5145, 317, 5959, 3528, 52, 6981, 46, 360, 2885, 2640, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 59, 44427, 58, 22, 26, 1821, 76, 4895, 220, 220, 29749, 1404, 127, 241, 7112, 2640, 14610, 43521, 32, 127, 229, 127, 243, 1546, 32744, 14887, 2885, 1921, 25, 220, 366, 25, 9, 61, 2154, 32239, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 59, 44427, 58, 16, 26, 3682, 76, 1404, 38351, 440, 32552, 3525, 36, 337, 2662, 3525, 46, 569, 4503, 127, 232, 309, 3620, 44352, 36247, 5550, 25, 1391, 19815, 14031, 62, 16366, 68, 92, 3467, 44427, 58, 15, 26, 15, 76, 3256, 437, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 14873, 14031, 62, 16366, 68, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3682, 76, 31054, 32, 127, 229, 5746, 46, 5145, 59, 44427, 58, 15, 26, 15, 76, 11537, 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, 3601, 10786, 59, 44427, 58, 16, 26, 3682, 76, 31054, 32, 127, 229, 127, 243, 1546, 5145, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 1377, 930, 317, 4339, 10426, 46, 311, 7156, 8924, 317, 406, 1797, 5603, 49269, 5603, 5550, 16926, 2640, 7294, 23337, 1797, 5446, 2640, 5161, 38351, 440, 337, 2662, 3525, 46, 0, 930, 1377, 705, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 41436, 220, 930, 5188, 10917, 127, 232, 7792, 3539, 412, 6375, 39429, 5550, 20444, 4944, 1921, 91, 220, 220, 26171, 26173, 1581, 1546, 220, 32501, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 16, 36165, 34, 127, 241, 35, 25, 91, 17, 36165, 45, 13649, 25, 220, 220, 220, 220, 220, 220, 220, 930, 18, 36165, 11770, 1961, 43901, 13, 930, 19, 36165, 13070, 1961, 360, 6465, 13, 220, 930, 20, 36165, 42865, 25, 220, 220, 930, 21, 36165, 1581, 3528, 40, 25, 91, 22, 36165, 10943, 53, 25, 91, 23, 36165, 5603, 55, 32, 13, 705, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 6329, 6, 1635, 1542, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 269, 11, 410, 287, 27056, 378, 7, 22163, 544, 62, 67, 22484, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 288, 287, 410, 13, 27160, 33529, 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, 7, 69, 1, 220, 1391, 2536, 7, 67, 737, 33491, 10786, 58, 3256, 10148, 737, 33491, 10786, 60, 3256, 10148, 737, 33491, 10786, 3256, 10148, 38165, 1600, 886, 11639, 705, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 628, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13161, 283, 62, 26272, 62, 1050, 1939, 8521, 796, 965, 7, 15414, 10786, 19511, 578, 33250, 50, 45297, 4090, 4663, 25, 11537, 737, 36311, 22446, 45828, 3419, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 13161, 283, 62, 26272, 62, 1050, 1939, 8521, 6624, 705, 50, 10354, 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, 628, 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, 3601, 7, 69, 6, 59, 44427, 58, 16, 26, 3901, 76, 50, 2662, 3525, 36, 360, 3528, 12709, 317, 37994, 3861, 685, 50, 45297, 47, 24401, 14719, 4663, 0, 1058, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 220, 220, 17368, 31553, 6981, 46, 41597, 52, 4810, 30158, 4061, 1847, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 11537, 628, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1034, 66, 5488, 62, 26272, 6624, 705, 18, 10354, 628, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 14873, 14031, 62, 16366, 68, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1821, 76, 220, 220, 220, 33118, 45093, 5145, 317, 5959, 3528, 52, 6981, 46, 43521, 32, 127, 229, 127, 243, 1546, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3829, 76, 47232, 10541, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3901, 76, 1404, 38351, 440, 32552, 3525, 36, 337, 2662, 3525, 46, 399, 5746, 46, 367, 127, 223, 399, 1677, 39, 52, 5673, 43521, 32, 127, 229, 5746, 46, 32744, 14887, 26853, 5145, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3829, 76, 47232, 10541, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 220, 220, 38570, 51, 6981, 46, 317, 46, 41597, 52, 4810, 30158, 4061, 1847, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 14873, 14031, 62, 16366, 68, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1821, 76, 220, 220, 220, 33118, 45093, 5145, 317, 5959, 3528, 52, 6981, 46, 43521, 32, 127, 229, 127, 243, 1546, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 59, 44427, 58, 22, 26, 1821, 76, 4895, 220, 220, 29749, 1404, 127, 241, 7112, 2640, 14610, 26173, 1581, 36247, 360, 1921, 43521, 32, 127, 229, 127, 243, 1546, 25, 220, 366, 25, 9, 61, 2154, 32239, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 59, 44427, 58, 16, 26, 3682, 76, 1404, 38351, 440, 32552, 3525, 36, 337, 2662, 3525, 46, 569, 4503, 127, 232, 309, 3620, 44352, 36247, 5550, 25, 1391, 19815, 14031, 62, 16366, 68, 92, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 14873, 14031, 62, 16366, 68, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3682, 76, 31054, 32, 127, 229, 5746, 46, 5145, 59, 44427, 58, 15, 26, 15, 76, 11537, 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, 3601, 10786, 59, 44427, 58, 16, 26, 3682, 76, 31054, 32, 127, 229, 127, 243, 1546, 5145, 59, 44427, 58, 15, 26, 15, 76, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 67, 6192, 62, 68, 6413, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 7206, 25, 347, 7836, 532, 11177, 1921, 4146, 1220, 350, 24401, 25, 360, 127, 241, 43, 1503, 532, 4576, 32, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 371, 3, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 67, 6192, 62, 68, 6413, 25, 13, 17, 69, 92, 4526, 32, 1797, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 44252, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 7206, 25, 347, 7836, 532, 11177, 1921, 4146, 1220, 350, 24401, 25, 27526, 46, 532, 27526, 43345, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 371, 3, 25, 1391, 2100, 273, 62, 83, 313, 62, 3575, 330, 3028, 25, 13, 17, 69, 92, 4526, 32, 1797, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 67, 6192, 62, 5171, 4763, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 7206, 25, 347, 7836, 532, 11177, 1921, 4146, 1220, 350, 24401, 25, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 371, 3, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 67, 6192, 62, 5171, 4763, 25, 13, 17, 69, 92, 4526, 32, 1797, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 1671, 292, 346, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 7206, 25, 360, 127, 241, 43, 1503, 532, 4576, 32, 1220, 350, 24401, 25, 347, 7836, 532, 11177, 1921, 4146, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 471, 13702, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 1671, 292, 346, 25, 13, 17, 69, 92, 360, 127, 241, 43, 1503, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 44252, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 7206, 25, 360, 127, 241, 43, 1503, 532, 4576, 32, 1220, 350, 24401, 25, 27526, 46, 532, 27526, 43345, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 471, 13702, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 44252, 25, 13, 17, 69, 92, 360, 127, 241, 43, 1503, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 67, 6192, 62, 5171, 4763, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 7206, 25, 360, 127, 241, 43, 1503, 532, 4576, 32, 1220, 350, 24401, 25, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 471, 13702, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 67, 6192, 62, 5171, 4763, 25, 13, 17, 69, 92, 360, 127, 241, 43, 1503, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 44252, 62, 1671, 292, 346, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 7206, 25, 27526, 46, 532, 27526, 43345, 1220, 350, 24401, 25, 347, 7836, 532, 11177, 1921, 4146, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 10432, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 44252, 62, 1671, 292, 346, 25, 13, 17, 69, 92, 27526, 46, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 44252, 62, 67, 6192, 62, 68, 6413, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 7206, 25, 27526, 46, 532, 27526, 43345, 1220, 350, 24401, 25, 360, 127, 241, 43, 1503, 532, 4576, 32, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 10432, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 44252, 62, 67, 6192, 62, 68, 6413, 25, 13, 17, 69, 92, 27526, 46, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 44252, 62, 67, 6192, 62, 5171, 4763, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 7206, 25, 27526, 46, 532, 27526, 43345, 1220, 350, 24401, 25, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 10432, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 44252, 62, 67, 6192, 62, 5171, 4763, 25, 13, 17, 69, 92, 27526, 46, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 1671, 292, 346, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 7206, 25, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 1220, 350, 24401, 25, 347, 7836, 532, 11177, 1921, 4146, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 471, 13702, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 1671, 292, 346, 25, 13, 17, 69, 92, 360, 127, 241, 43, 1503, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 67, 6192, 62, 68, 6413, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 7206, 25, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 1220, 350, 24401, 25, 360, 127, 241, 43, 1503, 532, 4576, 32, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 471, 13702, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 67, 6192, 62, 68, 6413, 25, 13, 17, 69, 92, 360, 127, 241, 43, 1503, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 44252, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 7206, 25, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 1220, 350, 24401, 25, 27526, 46, 532, 27526, 43345, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 471, 13702, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 44252, 25, 13, 17, 69, 92, 360, 127, 241, 43, 1503, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13161, 283, 62, 26272, 62, 1050, 1939, 8521, 796, 965, 7, 15414, 10786, 19511, 578, 33250, 50, 45297, 4090, 4663, 25, 11537, 737, 36311, 22446, 45828, 3419, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 13161, 283, 62, 26272, 62, 1050, 1939, 8521, 6624, 705, 50, 10354, 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, 628, 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, 3601, 7, 69, 6, 59, 44427, 58, 16, 26, 3901, 76, 50, 2662, 3525, 36, 360, 3528, 12709, 317, 37994, 3861, 685, 50, 45297, 47, 24401, 14719, 4663, 0, 1058, 59, 44427, 58, 15, 26, 15, 76, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 220, 220, 17368, 31553, 6981, 46, 41597, 52, 4810, 30158, 4061, 1847, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1034, 66, 5488, 62, 26272, 6624, 705, 19, 10354, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 14873, 14031, 62, 16366, 68, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1821, 76, 220, 220, 220, 33118, 45093, 5145, 317, 5959, 3528, 52, 6981, 46, 311, 8808, 27630, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3829, 76, 47232, 10541, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3901, 76, 1404, 38351, 440, 32552, 3525, 36, 337, 2662, 3525, 46, 399, 5746, 46, 367, 127, 223, 399, 1677, 39, 52, 5673, 43521, 32, 127, 229, 5746, 46, 32744, 14887, 26853, 5145, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3829, 76, 47232, 10541, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 220, 220, 38570, 51, 6981, 46, 317, 46, 41597, 52, 4810, 30158, 4061, 1847, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 14873, 14031, 62, 16366, 68, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1821, 76, 220, 220, 220, 33118, 45093, 5145, 317, 5959, 3528, 52, 6981, 46, 311, 8808, 27630, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 59, 44427, 58, 22, 26, 1821, 76, 4895, 220, 220, 29749, 1404, 127, 241, 7112, 2640, 14610, 26173, 1581, 36247, 5550, 21664, 55, 1921, 25, 220, 366, 25, 9, 61, 2154, 32239, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 59, 44427, 58, 16, 26, 3682, 76, 1404, 38351, 440, 32552, 3525, 36, 337, 2662, 3525, 46, 569, 4503, 127, 232, 309, 3620, 25, 1391, 19815, 14031, 62, 16366, 68, 92, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 14873, 14031, 62, 16366, 68, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3682, 76, 31054, 32, 127, 229, 5746, 46, 23337, 1797, 5446, 26853, 0, 59, 44427, 58, 15, 26, 15, 76, 11537, 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, 3601, 10786, 59, 44427, 58, 16, 26, 3682, 76, 31054, 32, 127, 229, 127, 243, 1546, 23337, 1797, 5446, 2885, 1921, 0, 59, 44427, 58, 15, 26, 15, 76, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3829, 76, 47232, 10541, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 50, 2662, 6981, 46, 16926, 1921, 7054, 12964, 5446, 2885, 1921, 17228, 21664, 55, 1921, 25, 309, 3620, 2640, 44352, 36247, 360, 127, 232, 371, 3, 25, 1391, 83, 313, 62, 19290, 292, 25, 13, 17, 69, 92, 4526, 32, 1797, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 1921, 337, 1546, 31180, 311, 5746, 46, 4526, 24302, 3525, 36, 7054, 5550, 11008, 1921, 7102, 28884, 127, 243, 1546, 317, 4339, 10426, 46, 25, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3829, 76, 47232, 10541, 59, 44427, 58, 15, 26, 15, 76, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 67, 6192, 62, 68, 6413, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 7206, 25, 347, 7836, 532, 11177, 1921, 4146, 1220, 350, 24401, 25, 360, 127, 241, 43, 1503, 532, 4576, 32, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 371, 3, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 67, 6192, 62, 68, 6413, 25, 13, 17, 69, 92, 4526, 32, 1797, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 44252, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 7206, 25, 347, 7836, 532, 11177, 1921, 4146, 1220, 350, 24401, 25, 27526, 46, 532, 27526, 43345, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 371, 3, 25, 1391, 2100, 273, 62, 83, 313, 62, 3575, 330, 3028, 25, 13, 17, 69, 92, 4526, 32, 1797, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 67, 6192, 62, 5171, 4763, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 7206, 25, 347, 7836, 532, 11177, 1921, 4146, 1220, 350, 24401, 25, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 371, 3, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 67, 6192, 62, 5171, 4763, 25, 13, 17, 69, 92, 4526, 32, 1797, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 1671, 292, 346, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 7206, 25, 360, 127, 241, 43, 1503, 532, 4576, 32, 1220, 350, 24401, 25, 347, 7836, 532, 11177, 1921, 4146, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 471, 13702, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 1671, 292, 346, 25, 13, 17, 69, 92, 360, 127, 241, 43, 1503, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 44252, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 7206, 25, 360, 127, 241, 43, 1503, 532, 4576, 32, 1220, 350, 24401, 25, 27526, 46, 532, 27526, 43345, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 471, 13702, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 44252, 25, 13, 17, 69, 92, 360, 127, 241, 43, 1503, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 67, 6192, 62, 5171, 4763, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 7206, 25, 360, 127, 241, 43, 1503, 532, 4576, 32, 1220, 350, 24401, 25, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 471, 13702, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 67, 6192, 62, 5171, 4763, 25, 13, 17, 69, 92, 360, 127, 241, 43, 1503, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 44252, 62, 1671, 292, 346, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 7206, 25, 27526, 46, 532, 27526, 43345, 1220, 350, 24401, 25, 347, 7836, 532, 11177, 1921, 4146, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 10432, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 44252, 62, 1671, 292, 346, 25, 13, 17, 69, 92, 27526, 46, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 44252, 62, 67, 6192, 62, 68, 6413, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 7206, 25, 27526, 46, 532, 27526, 43345, 1220, 350, 24401, 25, 360, 127, 241, 43, 1503, 532, 4576, 32, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 10432, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 44252, 62, 67, 6192, 62, 68, 6413, 25, 13, 17, 69, 92, 27526, 46, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 44252, 62, 67, 6192, 62, 5171, 4763, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 7206, 25, 27526, 46, 532, 27526, 43345, 1220, 350, 24401, 25, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 10432, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 44252, 62, 67, 6192, 62, 5171, 4763, 25, 13, 17, 69, 92, 27526, 46, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 1671, 292, 346, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 7206, 25, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 1220, 350, 24401, 25, 347, 7836, 532, 11177, 1921, 4146, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 471, 13702, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 1671, 292, 346, 25, 13, 17, 69, 92, 360, 127, 241, 43, 1503, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 67, 6192, 62, 68, 6413, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 7206, 25, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 1220, 350, 24401, 25, 360, 127, 241, 43, 1503, 532, 4576, 32, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 471, 13702, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 67, 6192, 62, 68, 6413, 25, 13, 17, 69, 92, 360, 127, 241, 43, 1503, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 44252, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 7206, 25, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 1220, 350, 24401, 25, 27526, 46, 532, 27526, 43345, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 471, 13702, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 44252, 25, 13, 17, 69, 92, 360, 127, 241, 43, 1503, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13161, 283, 62, 26272, 62, 1050, 1939, 8521, 796, 965, 7, 15414, 10786, 19511, 578, 33250, 50, 45297, 4090, 4663, 25, 11537, 737, 36311, 22446, 45828, 3419, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 13161, 283, 62, 26272, 62, 1050, 1939, 8521, 6624, 705, 50, 10354, 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, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 220, 220, 17368, 31553, 6981, 46, 41597, 52, 4810, 30158, 4061, 1847, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 11537, 628, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 59, 44427, 58, 16, 26, 3901, 76, 12, 42121, 3525, 36, 399, 127, 248, 29296, 2640, 5550, 352, 317, 604, 1195, 8924, 23929, 19535, 47, 18672, 3620, 7054, 13349, 127, 229, 127, 243, 1546, 8410, 41597, 52, 7479, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1034, 66, 5488, 62, 26272, 796, 965, 7, 15414, 10786, 19511, 578, 257, 1034, 16175, 28749, 748, 68, 73, 4763, 25, 8348, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 628, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 981, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 59, 44427, 58, 16, 26, 3901, 76, 12, 42121, 3525, 36, 399, 127, 248, 29296, 2640, 5550, 352, 317, 604, 1195, 8924, 23929, 19535, 47, 18672, 3620, 7054, 13349, 127, 229, 127, 243, 1546, 8410, 41597, 52, 7479, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1034, 66, 5488, 62, 26272, 796, 965, 7, 15414, 10786, 19511, 578, 257, 1034, 16175, 28749, 748, 68, 73, 4763, 25, 8348, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1034, 66, 5488, 62, 26272, 6624, 705, 16, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 59, 44427, 58, 22, 26, 1821, 76, 4895, 220, 220, 37292, 1921, 5446, 1503, 45148, 1546, 220, 366, 25, 9, 61, 2154, 32239, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14873, 14031, 62, 16366, 68, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14873, 14031, 62, 16366, 68, 62, 1102, 1851, 3755, 796, 965, 7, 19815, 14031, 62, 16366, 68, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 14610, 1391, 19815, 14031, 62, 16366, 68, 92, 36165, 45148, 36, 532, 6375, 39429, 5550, 18871, 12861, 127, 229, 46, 5550, 399, 36165, 685, 1391, 19815, 14031, 62, 16366, 68, 62, 1102, 1851, 3755, 92, 2361, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9955, 418, 17816, 34, 10205, 67, 20520, 796, 685, 19815, 14031, 62, 16366, 68, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 7, 19815, 14031, 62, 16366, 68, 62, 1102, 1851, 3755, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 462, 796, 965, 7, 15414, 10786, 19511, 578, 267, 299, 462, 466, 5456, 68, 25, 8348, 29720, 36311, 22446, 45828, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9955, 418, 17816, 45, 462, 20520, 796, 685, 77, 462, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 7, 77, 462, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 7, 69, 6, 51, 6465, 36, 360, 2885, 2640, 25, 1391, 67, 22484, 92, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 1783, 6329, 220, 220, 13070, 1961, 1921, 37292, 1921, 5446, 2885, 1921, 220, 220, 34400, 6329, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 16, 8, 31215, 13070, 1961, 32, 32744, 532, 11177, 1921, 4146, 220, 220, 930, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 17, 8, 31215, 13070, 1961, 32, 360, 127, 241, 43, 1503, 532, 4576, 32, 220, 220, 220, 220, 930, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 18, 8, 31215, 13070, 1961, 32, 27526, 46, 532, 27526, 43345, 220, 220, 930, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 19, 8, 31215, 13070, 1961, 32, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 220, 930, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 20368, 32284, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6941, 18082, 62, 11612, 368, 796, 965, 7, 15414, 10786, 16632, 18082, 390, 1796, 368, 27514, 685, 82, 296, 21872, 299, 21356, 647, 418, 936, 8083, 5974, 8348, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9955, 418, 17816, 16632, 18082, 1796, 368, 20520, 796, 685, 5908, 18082, 62, 11612, 368, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 6941, 18082, 62, 11612, 368, 6624, 705, 16, 10354, 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, 10786, 11770, 1961, 32, 5550, 43901, 3620, 25, 532, 32744, 532, 11177, 1921, 4146, 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, 9955, 418, 17816, 16632, 18082, 1796, 368, 20520, 796, 37250, 2200, 1847, 532, 347, 7836, 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, 6941, 18082, 62, 11612, 368, 62, 82, 328, 5031, 796, 705, 49, 3, 32105, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 2200, 1847, 532, 347, 7836, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 17, 10354, 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, 10786, 11770, 1961, 32, 5550, 43901, 3620, 25, 532, 360, 127, 241, 43, 1503, 532, 4576, 32, 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, 9955, 418, 17816, 16632, 18082, 1796, 368, 20520, 796, 37250, 35, 127, 241, 43, 1503, 532, 4576, 32, 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, 6941, 18082, 62, 11612, 368, 62, 82, 328, 5031, 796, 705, 52, 13702, 32105, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 35, 127, 241, 43, 1503, 532, 4576, 32, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 18, 10354, 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, 10786, 11770, 1961, 32, 5550, 43901, 3620, 25, 532, 27526, 46, 532, 27526, 43345, 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, 9955, 418, 17816, 16632, 18082, 1796, 368, 20520, 796, 37250, 36, 4261, 46, 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, 6941, 18082, 62, 11612, 368, 62, 82, 328, 5031, 796, 705, 26391, 32105, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 36, 4261, 46, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 19, 10354, 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, 10786, 11770, 1961, 32, 5550, 43901, 3620, 25, 532, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 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, 9955, 418, 17816, 16632, 18082, 1796, 368, 20520, 796, 37250, 35, 127, 241, 43, 1503, 532, 37292, 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, 6941, 18082, 62, 11612, 368, 62, 82, 328, 5031, 796, 705, 52, 13702, 32105, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 35, 127, 241, 43, 1503, 532, 37292, 11537, 628, 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, 981, 6407, 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, 220, 220, 220, 220, 3601, 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, 277, 6, 59, 44427, 58, 16, 26, 3901, 76, 23428, 1581, 34899, 127, 223, 43, 2389, 46, 532, 42121, 3525, 36, 399, 127, 248, 29296, 2640, 5550, 352, 317, 604, 1195, 8924, 23929, 19535, 47, 18672, 3620, 7054, 13070, 1961, 1921, 37292, 1921, 5446, 2885, 1921, 7479, 44427, 58, 15, 26, 15, 76, 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, 3601, 10786, 438, 6, 1635, 1542, 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, 3601, 10786, 1783, 6329, 220, 220, 13070, 1961, 1921, 37292, 1921, 5446, 2885, 1921, 220, 220, 34400, 6329, 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, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 16, 8, 31215, 13070, 1961, 32, 32744, 532, 11177, 1921, 4146, 220, 220, 930, 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, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 17, 8, 31215, 13070, 1961, 32, 360, 127, 241, 43, 1503, 532, 4576, 32, 220, 220, 220, 220, 930, 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, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 18, 8, 31215, 13070, 1961, 32, 27526, 46, 532, 27526, 43345, 220, 220, 930, 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, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 19, 8, 31215, 13070, 1961, 32, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 220, 930, 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, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 20368, 32284, 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, 6941, 18082, 62, 11612, 368, 796, 965, 7, 15414, 10786, 16632, 18082, 390, 1796, 368, 27514, 685, 82, 296, 21872, 299, 21356, 647, 418, 936, 8083, 5974, 8348, 4008, 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, 3601, 10786, 438, 6, 1635, 1542, 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, 611, 6941, 18082, 62, 11612, 368, 6624, 705, 16, 10354, 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, 3601, 10786, 11770, 1961, 32, 5550, 43901, 3620, 25, 532, 32744, 532, 11177, 1921, 4146, 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, 9955, 418, 17816, 16632, 18082, 1796, 368, 20520, 796, 37250, 2200, 1847, 532, 347, 7836, 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, 220, 220, 220, 220, 220, 220, 220, 220, 6941, 18082, 62, 11612, 368, 62, 82, 328, 5031, 796, 705, 49, 3, 32105, 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, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 2200, 1847, 532, 347, 7836, 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, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 17, 10354, 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, 3601, 10786, 11770, 1961, 32, 5550, 43901, 3620, 25, 532, 360, 127, 241, 43, 1503, 532, 4576, 32, 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, 9955, 418, 17816, 16632, 18082, 1796, 368, 20520, 796, 37250, 35, 127, 241, 43, 1503, 532, 4576, 32, 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, 220, 220, 220, 220, 220, 220, 220, 220, 6941, 18082, 62, 11612, 368, 62, 82, 328, 5031, 796, 705, 52, 13702, 32105, 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, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 35, 127, 241, 43, 1503, 532, 4576, 32, 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, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 18, 10354, 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, 3601, 10786, 11770, 1961, 32, 5550, 43901, 3620, 25, 532, 27526, 46, 532, 27526, 43345, 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, 9955, 418, 17816, 16632, 18082, 1796, 368, 20520, 796, 37250, 36, 4261, 46, 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, 220, 220, 220, 220, 220, 220, 220, 220, 6941, 18082, 62, 11612, 368, 62, 82, 328, 5031, 796, 705, 26391, 32105, 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, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 36, 4261, 46, 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, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 19, 10354, 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, 3601, 10786, 11770, 1961, 32, 5550, 43901, 3620, 25, 532, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 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, 9955, 418, 17816, 16632, 18082, 1796, 368, 20520, 796, 37250, 35, 127, 241, 43, 1503, 532, 37292, 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, 220, 220, 220, 220, 220, 220, 220, 220, 6941, 18082, 62, 11612, 368, 62, 82, 328, 5031, 796, 705, 52, 13702, 32105, 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, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 35, 127, 241, 43, 1503, 532, 37292, 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, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 1783, 6329, 220, 220, 13070, 1961, 1921, 37292, 1921, 5446, 2885, 1921, 220, 220, 34400, 6329, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 16, 8, 31215, 13070, 1961, 32, 32744, 532, 11177, 1921, 4146, 220, 220, 930, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 17, 8, 31215, 13070, 1961, 32, 360, 127, 241, 43, 1503, 532, 4576, 32, 220, 220, 220, 220, 930, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 18, 8, 31215, 13070, 1961, 32, 27526, 46, 532, 27526, 43345, 220, 220, 930, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 19, 8, 31215, 13070, 1961, 32, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 220, 930, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 20368, 32284, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6941, 18082, 62, 16520, 2879, 796, 965, 7, 15414, 10786, 16632, 18082, 390, 2244, 2879, 27514, 685, 82, 296, 21872, 299, 21356, 647, 418, 936, 8083, 5974, 8348, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 6941, 18082, 62, 16520, 2879, 6624, 705, 16, 10354, 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, 10786, 11770, 1961, 32, 5550, 360, 6465, 46016, 25, 532, 32744, 532, 11177, 1921, 4146, 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, 9955, 418, 17816, 16632, 18082, 2244, 2879, 20520, 796, 37250, 2200, 1847, 532, 11177, 1921, 4146, 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, 6941, 18082, 62, 16520, 2879, 62, 82, 328, 5031, 796, 705, 49, 3, 32105, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 2200, 1847, 532, 11177, 1921, 4146, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 16520, 2879, 6624, 705, 17, 10354, 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, 10786, 11770, 1961, 32, 5550, 360, 6465, 46016, 25, 532, 360, 127, 241, 43, 1503, 532, 4576, 32, 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, 9955, 418, 17816, 16632, 18082, 2244, 2879, 20520, 796, 37250, 35, 127, 241, 43, 1503, 532, 4576, 32, 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, 6941, 18082, 62, 16520, 2879, 62, 82, 328, 5031, 796, 705, 52, 13702, 32105, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 35, 127, 241, 43, 1503, 532, 4576, 32, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 16520, 2879, 6624, 705, 18, 10354, 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, 10786, 11770, 1961, 32, 5550, 360, 6465, 46016, 25, 532, 27526, 46, 532, 27526, 43345, 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, 9955, 418, 17816, 16632, 18082, 2244, 2879, 20520, 796, 37250, 36, 4261, 46, 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, 6941, 18082, 62, 16520, 2879, 62, 82, 328, 5031, 796, 705, 26391, 32105, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 36, 4261, 46, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 16520, 2879, 6624, 705, 19, 10354, 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, 10786, 11770, 1961, 32, 5550, 360, 6465, 46016, 25, 532, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 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, 9955, 418, 17816, 16632, 18082, 2244, 2879, 20520, 796, 37250, 35, 127, 241, 43, 1503, 37292, 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, 6941, 18082, 62, 16520, 2879, 62, 82, 328, 5031, 796, 705, 52, 13702, 32105, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 35, 127, 241, 43, 1503, 37292, 11537, 628, 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, 981, 6407, 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, 220, 220, 220, 220, 3601, 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, 277, 6, 59, 44427, 58, 16, 26, 3901, 76, 23428, 1581, 34899, 127, 223, 43, 2389, 46, 532, 42121, 3525, 36, 399, 127, 248, 29296, 2640, 5550, 352, 317, 604, 1195, 8924, 23929, 19535, 47, 18672, 3620, 7054, 13070, 1961, 1921, 37292, 1921, 5446, 2885, 1921, 7479, 44427, 58, 15, 26, 15, 76, 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, 3601, 10786, 438, 6, 1635, 1542, 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, 3601, 10786, 1783, 6329, 220, 220, 13070, 1961, 1921, 37292, 1921, 5446, 2885, 1921, 220, 220, 34400, 6329, 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, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 16, 8, 31215, 13070, 1961, 32, 32744, 532, 11177, 1921, 4146, 220, 220, 930, 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, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 17, 8, 31215, 13070, 1961, 32, 360, 127, 241, 43, 1503, 532, 4576, 32, 220, 220, 220, 220, 930, 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, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 18, 8, 31215, 13070, 1961, 32, 27526, 46, 532, 27526, 43345, 220, 220, 930, 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, 3601, 10786, 220, 220, 220, 220, 220, 220, 930, 7367, 578, 14610, 357, 19, 8, 31215, 13070, 1961, 32, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 220, 930, 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, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 20368, 32284, 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, 6941, 18082, 62, 16520, 2879, 796, 965, 7, 15414, 10786, 16632, 18082, 390, 2244, 2879, 27514, 685, 82, 296, 21872, 299, 21356, 647, 418, 936, 8083, 5974, 8348, 4008, 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, 3601, 10786, 438, 6, 1635, 1542, 8, 628, 220, 220, 220, 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, 6941, 18082, 62, 16520, 2879, 6624, 705, 16, 10354, 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, 3601, 10786, 11770, 1961, 32, 5550, 360, 6465, 46016, 25, 532, 32744, 532, 11177, 1921, 4146, 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, 9955, 418, 17816, 16632, 18082, 2244, 2879, 20520, 796, 37250, 2200, 1847, 532, 11177, 1921, 4146, 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, 220, 220, 220, 220, 220, 220, 220, 220, 6941, 18082, 62, 16520, 2879, 62, 82, 328, 5031, 796, 705, 49, 3, 32105, 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, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 2200, 1847, 532, 11177, 1921, 4146, 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, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 16520, 2879, 6624, 705, 17, 10354, 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, 3601, 10786, 11770, 1961, 32, 5550, 360, 6465, 46016, 25, 532, 360, 127, 241, 43, 1503, 532, 4576, 32, 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, 9955, 418, 17816, 16632, 18082, 2244, 2879, 20520, 796, 37250, 35, 127, 241, 43, 1503, 532, 4576, 32, 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, 220, 220, 220, 220, 220, 220, 220, 220, 6941, 18082, 62, 16520, 2879, 62, 82, 328, 5031, 796, 705, 52, 13702, 32105, 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, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 35, 127, 241, 43, 1503, 532, 4576, 32, 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, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 16520, 2879, 6624, 705, 18, 10354, 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, 3601, 10786, 11770, 1961, 32, 5550, 360, 6465, 46016, 25, 532, 27526, 46, 532, 27526, 43345, 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, 9955, 418, 17816, 16632, 18082, 2244, 2879, 20520, 796, 37250, 36, 4261, 46, 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, 220, 220, 220, 220, 220, 220, 220, 220, 6941, 18082, 62, 16520, 2879, 62, 82, 328, 5031, 796, 705, 26391, 32105, 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, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 36, 4261, 46, 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, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 16520, 2879, 6624, 705, 19, 10354, 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, 3601, 10786, 11770, 1961, 32, 5550, 360, 6465, 46016, 25, 532, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 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, 9955, 418, 17816, 16632, 18082, 2244, 2879, 20520, 796, 37250, 35, 127, 241, 43, 1503, 37292, 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, 220, 220, 220, 220, 220, 220, 220, 220, 6941, 18082, 62, 16520, 2879, 62, 82, 328, 5031, 796, 705, 52, 13702, 32105, 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, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 10786, 35, 127, 241, 43, 1503, 37292, 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, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 3575, 330, 5488, 796, 965, 7, 15414, 10786, 6601, 12379, 27296, 16175, 28749, 7479, 44427, 58, 16, 26, 3829, 76, 58, 15285, 7473, 41636, 46, 25, 11593, 14, 834, 14, 1427, 2361, 59, 44427, 58, 15, 26, 15, 76, 25, 8348, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9955, 418, 17816, 6601, 26049, 16175, 28749, 20520, 796, 685, 7890, 62, 3575, 330, 5488, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 7, 7890, 62, 3575, 330, 5488, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1188, 273, 62, 14986, 796, 965, 7, 15414, 7, 69, 6, 7762, 273, 2656, 25, 30, 1391, 5908, 18082, 62, 11612, 368, 62, 82, 328, 5031, 92, 6, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9955, 418, 17816, 7762, 273, 13745, 20520, 796, 685, 2100, 273, 62, 14986, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 7, 2100, 273, 62, 14986, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 796, 12178, 7, 2100, 273, 62, 14986, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1188, 273, 62, 83, 313, 62, 3575, 330, 3028, 15853, 10385, 31110, 62, 2100, 273, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 6941, 18082, 62, 11612, 368, 6624, 705, 16, 6, 290, 6941, 18082, 62, 16520, 2879, 6624, 705, 17, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 62, 1671, 292, 346, 796, 12178, 7, 2100, 273, 62, 14986, 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, 2006, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 67, 6192, 62, 68, 6413, 15853, 10385, 31110, 62, 2100, 273, 62, 1671, 292, 346, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 16, 6, 290, 6941, 18082, 62, 16520, 2879, 6624, 705, 18, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 62, 1671, 292, 346, 62, 44252, 796, 12178, 7, 2100, 273, 62, 14986, 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, 2006, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 44252, 15853, 10385, 31110, 62, 2100, 273, 62, 1671, 292, 346, 62, 44252, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 16, 6, 290, 6941, 18082, 62, 16520, 2879, 6624, 705, 19, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 62, 1671, 292, 346, 62, 67, 6192, 62, 5171, 4763, 796, 12178, 7, 2100, 273, 62, 14986, 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, 2006, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 67, 6192, 62, 5171, 4763, 15853, 10385, 31110, 62, 2100, 273, 62, 1671, 292, 346, 62, 67, 6192, 62, 5171, 4763, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 6941, 18082, 62, 11612, 368, 6624, 705, 17, 6, 290, 6941, 18082, 62, 16520, 2879, 6624, 705, 16, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 62, 68, 6413, 62, 1671, 292, 346, 796, 12178, 7, 2100, 273, 62, 14986, 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, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 1671, 292, 346, 15853, 10385, 31110, 62, 2100, 273, 62, 68, 6413, 62, 1671, 292, 346, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 17, 6, 290, 6941, 18082, 62, 16520, 2879, 6624, 705, 18, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 62, 68, 6413, 62, 44252, 796, 12178, 7, 2100, 273, 62, 14986, 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, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 44252, 15853, 10385, 31110, 62, 2100, 273, 62, 68, 6413, 62, 44252, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 17, 6, 290, 6941, 18082, 62, 16520, 2879, 6624, 705, 19, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 62, 68, 6413, 62, 5171, 4763, 796, 12178, 7, 2100, 273, 62, 14986, 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, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 67, 6192, 62, 5171, 4763, 15853, 10385, 31110, 62, 2100, 273, 62, 68, 6413, 62, 5171, 4763, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 6941, 18082, 62, 11612, 368, 6624, 705, 18, 6, 290, 6941, 18082, 62, 16520, 2879, 6624, 705, 16, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 62, 44252, 62, 1671, 292, 346, 796, 12178, 7, 2100, 273, 62, 14986, 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, 2006, 62, 76, 709, 3681, 78, 62, 44252, 62, 1671, 292, 346, 15853, 10385, 31110, 62, 2100, 273, 62, 44252, 62, 1671, 292, 346, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 18, 6, 290, 6941, 18082, 62, 16520, 2879, 6624, 705, 17, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 62, 44252, 62, 68, 6413, 796, 12178, 7, 2100, 273, 62, 14986, 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, 2006, 62, 76, 709, 3681, 78, 62, 44252, 62, 67, 6192, 62, 68, 6413, 15853, 10385, 31110, 62, 2100, 273, 62, 44252, 62, 68, 6413, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 18, 6, 290, 6941, 18082, 62, 16520, 2879, 6624, 705, 19, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 62, 44252, 62, 5171, 4763, 796, 12178, 7, 2100, 273, 62, 14986, 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, 2006, 62, 76, 709, 3681, 78, 62, 44252, 62, 67, 6192, 62, 5171, 4763, 15853, 10385, 31110, 62, 2100, 273, 62, 44252, 62, 5171, 4763, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 6941, 18082, 62, 11612, 368, 6624, 705, 19, 6, 290, 6941, 18082, 62, 16520, 2879, 6624, 705, 16, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 62, 5171, 4763, 62, 1671, 292, 346, 796, 12178, 7, 2100, 273, 62, 14986, 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, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 1671, 292, 346, 15853, 10385, 31110, 62, 2100, 273, 62, 5171, 4763, 62, 1671, 292, 346, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 19, 6, 290, 6941, 18082, 62, 16520, 2879, 6624, 705, 17, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 62, 5171, 4763, 62, 68, 6413, 796, 12178, 7, 2100, 273, 62, 14986, 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, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 67, 6192, 62, 68, 6413, 15853, 10385, 31110, 62, 2100, 273, 62, 5171, 4763, 62, 68, 6413, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 6941, 18082, 62, 11612, 368, 6624, 705, 19, 6, 290, 6941, 18082, 62, 16520, 2879, 6624, 705, 18, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10385, 31110, 62, 2100, 273, 62, 5171, 4763, 62, 44252, 796, 12178, 7, 2100, 273, 62, 14986, 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, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 44252, 15853, 10385, 31110, 62, 2100, 273, 62, 5171, 4763, 62, 44252, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1188, 273, 62, 1102, 1851, 17305, 796, 965, 7, 15414, 7, 69, 6, 7762, 273, 10385, 17305, 25, 30, 1391, 5908, 18082, 62, 16520, 2879, 62, 82, 328, 5031, 92, 6, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9955, 418, 17816, 7762, 273, 38240, 17305, 20520, 796, 685, 2100, 273, 62, 1102, 1851, 17305, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 7, 2100, 273, 62, 1102, 1851, 17305, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1687, 64, 62, 66, 672, 81, 4763, 796, 965, 7, 15414, 7, 69, 6, 27017, 64, 22843, 81, 4763, 25, 30, 371, 3, 32105, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3453, 5488, 62, 19290, 64, 796, 12178, 7, 19290, 64, 62, 66, 672, 81, 4763, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2006, 62, 19290, 292, 15853, 3453, 5488, 62, 19290, 64, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9955, 418, 17816, 27017, 64, 14828, 81, 4763, 20520, 796, 685, 19290, 64, 62, 66, 672, 81, 4763, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 2934, 62, 67, 22484, 13, 33295, 7, 19290, 64, 62, 66, 672, 81, 4763, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2243, 544, 62, 67, 22484, 13, 33295, 7, 67, 22484, 13, 30073, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 1050, 1939, 8521, 13, 33295, 7, 4868, 64, 62, 2934, 62, 67, 22484, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3829, 76, 19351, 6329, 376, 3955, 37292, 1921, 5446, 46, 41436, 6329, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 1542, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 6407, 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, 1261, 6413, 62, 66, 324, 459, 305, 796, 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, 965, 7, 15414, 10786, 59, 77, 34, 324, 459, 20040, 285, 15152, 5456, 274, 25, 30, 685, 34, 532, 350, 14, 43659, 52, 1503, 47070, 311, 532, 350, 14, 14719, 4663, 5974, 8348, 29720, 36311, 22446, 45828, 3419, 58, 15, 60, 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, 7, 7061, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1261, 6413, 62, 66, 324, 459, 305, 6624, 705, 34, 10354, 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, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1261, 6413, 62, 66, 324, 459, 305, 6624, 705, 50, 10354, 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, 2270, 628, 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, 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, 3601, 7, 69, 6, 59, 44427, 58, 16, 26, 3901, 76, 12, 42121, 3525, 36, 471, 5673, 360, 1921, 13349, 127, 229, 127, 243, 1546, 7125, 3955, 32, 25, 685, 34, 532, 43659, 52, 1503, 14, 311, 532, 14719, 4663, 5974, 59, 44427, 58, 15, 26, 15, 76, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1261, 6413, 62, 66, 324, 459, 305, 6624, 705, 50, 10354, 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, 10786, 438, 6, 1635, 3439, 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, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 220, 220, 17368, 31553, 6981, 46, 41597, 52, 4810, 30158, 4061, 1847, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 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, 3993, 7, 15, 13, 18, 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, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 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, 3993, 7, 15, 13, 18, 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, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 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, 3993, 7, 15, 13, 18, 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, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 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, 3993, 7, 15, 13, 18, 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, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 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, 3993, 7, 15, 13, 23, 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, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 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, 3993, 7, 15, 13, 23, 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, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 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, 3993, 7, 15, 13, 23, 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, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 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, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 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, 3601, 10786, 59, 77, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 628, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1034, 66, 5488, 62, 26272, 6624, 705, 17, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 59, 44427, 58, 22, 26, 1821, 76, 4895, 220, 220, 29749, 1404, 127, 241, 7112, 2640, 14610, 43521, 32, 127, 229, 127, 243, 1546, 32744, 14887, 2885, 1921, 220, 366, 25, 9, 61, 2154, 32239, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 14873, 14031, 62, 16366, 68, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1821, 76, 220, 220, 220, 33118, 45093, 5145, 317, 5959, 3528, 52, 6981, 46, 360, 2885, 2640, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3829, 76, 47232, 10541, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3901, 76, 1404, 38351, 440, 32552, 3525, 36, 337, 2662, 3525, 46, 399, 5746, 46, 367, 127, 223, 399, 1677, 39, 52, 5673, 43521, 32, 127, 229, 5746, 46, 32744, 14887, 26853, 5145, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3829, 76, 47232, 10541, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 220, 220, 38570, 51, 6981, 46, 317, 46, 41597, 52, 4810, 30158, 4061, 1847, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 14873, 14031, 62, 16366, 68, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1821, 76, 220, 220, 220, 33118, 45093, 5145, 317, 5959, 3528, 52, 6981, 46, 360, 2885, 2640, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 59, 44427, 58, 22, 26, 1821, 76, 4895, 220, 220, 29749, 1404, 127, 241, 7112, 2640, 14610, 43521, 32, 127, 229, 127, 243, 1546, 32744, 14887, 2885, 1921, 25, 220, 366, 25, 9, 61, 2154, 32239, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 59, 44427, 58, 16, 26, 3682, 76, 1404, 38351, 440, 32552, 3525, 36, 337, 2662, 3525, 46, 569, 4503, 127, 232, 309, 3620, 44352, 36247, 5550, 25, 1391, 19815, 14031, 62, 16366, 68, 92, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 14873, 14031, 62, 16366, 68, 6624, 352, 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, 3601, 10786, 59, 44427, 58, 16, 26, 3682, 76, 31054, 32, 127, 229, 5746, 46, 5145, 59, 44427, 58, 15, 26, 15, 76, 11537, 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, 3601, 10786, 59, 44427, 58, 16, 26, 3682, 76, 31054, 32, 127, 229, 127, 243, 1546, 5145, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 1377, 930, 317, 4339, 10426, 46, 311, 7156, 8924, 317, 406, 1797, 5603, 49269, 5603, 5550, 16926, 2640, 7294, 23337, 1797, 5446, 2640, 5161, 38351, 440, 337, 2662, 3525, 46, 0, 930, 1377, 705, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 41436, 220, 930, 5188, 10917, 127, 232, 7792, 3539, 412, 6375, 39429, 5550, 20444, 4944, 1921, 91, 220, 220, 26171, 26173, 1581, 1546, 220, 32501, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 16, 36165, 34, 127, 241, 35, 25, 91, 17, 36165, 45, 13649, 25, 220, 220, 220, 220, 220, 220, 220, 930, 18, 36165, 11770, 1961, 43901, 13, 930, 19, 36165, 13070, 1961, 360, 6465, 13, 220, 930, 20, 36165, 42865, 25, 220, 220, 930, 21, 36165, 1581, 3528, 40, 25, 91, 22, 36165, 10943, 53, 25, 91, 23, 36165, 5603, 55, 32, 13, 705, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 6329, 6, 1635, 1542, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 269, 11, 410, 287, 27056, 378, 7, 22163, 544, 62, 67, 22484, 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, 329, 288, 287, 410, 13, 27160, 33529, 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, 3601, 7, 69, 1, 220, 1391, 2536, 7, 67, 737, 33491, 10786, 58, 3256, 10148, 737, 33491, 10786, 60, 3256, 10148, 737, 33491, 10786, 3256, 10148, 38165, 1600, 886, 11639, 705, 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, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 6407, 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, 13161, 283, 62, 26272, 62, 1050, 1939, 8521, 796, 965, 7, 15414, 10786, 19511, 578, 33250, 50, 45297, 4090, 4663, 25, 11537, 737, 36311, 22446, 45828, 3419, 58, 15, 60, 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, 13161, 283, 62, 26272, 62, 1050, 1939, 8521, 6624, 705, 50, 10354, 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, 2270, 628, 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, 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, 3601, 7, 69, 6, 59, 44427, 58, 16, 26, 3901, 76, 50, 2662, 3525, 36, 360, 3528, 12709, 317, 37994, 3861, 685, 50, 45297, 47, 24401, 14719, 4663, 0, 1058, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 220, 220, 17368, 31553, 6981, 46, 41597, 52, 4810, 30158, 4061, 1847, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 11537, 628, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1034, 66, 5488, 62, 26272, 6624, 705, 18, 10354, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 14873, 14031, 62, 16366, 68, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1821, 76, 220, 220, 220, 33118, 45093, 5145, 317, 5959, 3528, 52, 6981, 46, 43521, 32, 127, 229, 127, 243, 1546, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3829, 76, 47232, 10541, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3901, 76, 1404, 38351, 440, 32552, 3525, 36, 337, 2662, 3525, 46, 399, 5746, 46, 367, 127, 223, 399, 1677, 39, 52, 5673, 43521, 32, 127, 229, 5746, 46, 32744, 14887, 26853, 5145, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3829, 76, 47232, 10541, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 220, 220, 38570, 51, 6981, 46, 317, 46, 41597, 52, 4810, 30158, 4061, 1847, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 14873, 14031, 62, 16366, 68, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1821, 76, 220, 220, 220, 33118, 45093, 5145, 317, 5959, 3528, 52, 6981, 46, 43521, 32, 127, 229, 127, 243, 1546, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 59, 44427, 58, 22, 26, 1821, 76, 4895, 220, 220, 29749, 1404, 127, 241, 7112, 2640, 14610, 26173, 1581, 36247, 360, 1921, 43521, 32, 127, 229, 127, 243, 1546, 25, 220, 366, 25, 9, 61, 2154, 32239, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 59, 44427, 58, 16, 26, 3682, 76, 1404, 38351, 440, 32552, 3525, 36, 337, 2662, 3525, 46, 569, 4503, 127, 232, 309, 3620, 44352, 36247, 5550, 25, 1391, 19815, 14031, 62, 16366, 68, 92, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 14873, 14031, 62, 16366, 68, 6624, 352, 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, 3601, 10786, 59, 44427, 58, 16, 26, 3682, 76, 31054, 32, 127, 229, 5746, 46, 5145, 59, 44427, 58, 15, 26, 15, 76, 11537, 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, 3601, 10786, 59, 44427, 58, 16, 26, 3682, 76, 31054, 32, 127, 229, 127, 243, 1546, 5145, 59, 44427, 58, 15, 26, 15, 76, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 67, 6192, 62, 68, 6413, 1875, 657, 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, 3601, 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, 277, 6, 7206, 25, 347, 7836, 532, 11177, 1921, 4146, 1220, 350, 24401, 25, 360, 127, 241, 43, 1503, 532, 4576, 32, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 371, 3, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 67, 6192, 62, 68, 6413, 25, 13, 17, 69, 92, 4526, 32, 1797, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 44252, 1875, 657, 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, 3601, 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, 277, 6, 7206, 25, 347, 7836, 532, 11177, 1921, 4146, 1220, 350, 24401, 25, 27526, 46, 532, 27526, 43345, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 371, 3, 25, 1391, 2100, 273, 62, 83, 313, 62, 3575, 330, 3028, 25, 13, 17, 69, 92, 4526, 32, 1797, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 67, 6192, 62, 5171, 4763, 1875, 657, 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, 3601, 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, 277, 6, 7206, 25, 347, 7836, 532, 11177, 1921, 4146, 1220, 350, 24401, 25, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 371, 3, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 67, 6192, 62, 5171, 4763, 25, 13, 17, 69, 92, 4526, 32, 1797, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 1671, 292, 346, 1875, 657, 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, 3601, 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, 277, 6, 7206, 25, 360, 127, 241, 43, 1503, 532, 4576, 32, 1220, 350, 24401, 25, 347, 7836, 532, 11177, 1921, 4146, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 471, 13702, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 1671, 292, 346, 25, 13, 17, 69, 92, 360, 127, 241, 43, 1503, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 44252, 1875, 657, 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, 3601, 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, 277, 6, 7206, 25, 360, 127, 241, 43, 1503, 532, 4576, 32, 1220, 350, 24401, 25, 27526, 46, 532, 27526, 43345, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 471, 13702, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 44252, 25, 13, 17, 69, 92, 360, 127, 241, 43, 1503, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 67, 6192, 62, 5171, 4763, 1875, 657, 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, 3601, 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, 277, 6, 7206, 25, 360, 127, 241, 43, 1503, 532, 4576, 32, 1220, 350, 24401, 25, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 471, 13702, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 67, 6192, 62, 5171, 4763, 25, 13, 17, 69, 92, 360, 127, 241, 43, 1503, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 44252, 62, 1671, 292, 346, 1875, 657, 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, 3601, 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, 277, 6, 7206, 25, 27526, 46, 532, 27526, 43345, 1220, 350, 24401, 25, 347, 7836, 532, 11177, 1921, 4146, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 10432, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 44252, 62, 1671, 292, 346, 25, 13, 17, 69, 92, 27526, 46, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 44252, 62, 67, 6192, 62, 68, 6413, 1875, 657, 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, 3601, 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, 277, 6, 7206, 25, 27526, 46, 532, 27526, 43345, 1220, 350, 24401, 25, 360, 127, 241, 43, 1503, 532, 4576, 32, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 10432, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 44252, 62, 67, 6192, 62, 68, 6413, 25, 13, 17, 69, 92, 27526, 46, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 44252, 62, 67, 6192, 62, 5171, 4763, 1875, 657, 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, 3601, 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, 277, 6, 7206, 25, 27526, 46, 532, 27526, 43345, 1220, 350, 24401, 25, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 10432, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 44252, 62, 67, 6192, 62, 5171, 4763, 25, 13, 17, 69, 92, 27526, 46, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 1671, 292, 346, 1875, 657, 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, 3601, 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, 277, 6, 7206, 25, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 1220, 350, 24401, 25, 347, 7836, 532, 11177, 1921, 4146, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 471, 13702, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 1671, 292, 346, 25, 13, 17, 69, 92, 360, 127, 241, 43, 1503, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 67, 6192, 62, 68, 6413, 1875, 657, 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, 3601, 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, 277, 6, 7206, 25, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 1220, 350, 24401, 25, 360, 127, 241, 43, 1503, 532, 4576, 32, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 471, 13702, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 67, 6192, 62, 68, 6413, 25, 13, 17, 69, 92, 360, 127, 241, 43, 1503, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 44252, 1875, 657, 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, 3601, 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, 277, 6, 7206, 25, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 1220, 350, 24401, 25, 27526, 46, 532, 27526, 43345, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 471, 13702, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 44252, 25, 13, 17, 69, 92, 360, 127, 241, 43, 1503, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 6407, 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, 13161, 283, 62, 26272, 62, 1050, 1939, 8521, 796, 965, 7, 15414, 10786, 19511, 578, 33250, 50, 45297, 4090, 4663, 25, 11537, 737, 36311, 22446, 45828, 3419, 58, 15, 60, 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, 13161, 283, 62, 26272, 62, 1050, 1939, 8521, 6624, 705, 50, 10354, 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, 2270, 628, 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, 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, 3601, 7, 69, 6, 59, 44427, 58, 16, 26, 3901, 76, 50, 2662, 3525, 36, 360, 3528, 12709, 317, 37994, 3861, 685, 50, 45297, 47, 24401, 14719, 4663, 0, 1058, 59, 44427, 58, 15, 26, 15, 76, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 220, 220, 17368, 31553, 6981, 46, 41597, 52, 4810, 30158, 4061, 1847, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1034, 66, 5488, 62, 26272, 6624, 705, 19, 10354, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 14873, 14031, 62, 16366, 68, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1821, 76, 220, 220, 220, 33118, 45093, 5145, 317, 5959, 3528, 52, 6981, 46, 311, 8808, 27630, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3829, 76, 47232, 10541, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3901, 76, 1404, 38351, 440, 32552, 3525, 36, 337, 2662, 3525, 46, 399, 5746, 46, 367, 127, 223, 399, 1677, 39, 52, 5673, 43521, 32, 127, 229, 5746, 46, 32744, 14887, 26853, 5145, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3829, 76, 47232, 10541, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 220, 220, 38570, 51, 6981, 46, 317, 46, 41597, 52, 4810, 30158, 4061, 1847, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 14873, 14031, 62, 16366, 68, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1821, 76, 220, 220, 220, 33118, 45093, 5145, 317, 5959, 3528, 52, 6981, 46, 311, 8808, 27630, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1821, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 59, 44427, 58, 22, 26, 1821, 76, 4895, 220, 220, 29749, 1404, 127, 241, 7112, 2640, 14610, 26173, 1581, 36247, 5550, 21664, 55, 1921, 25, 220, 366, 25, 9, 61, 2154, 32239, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 59, 44427, 58, 16, 26, 3682, 76, 1404, 38351, 440, 32552, 3525, 36, 337, 2662, 3525, 46, 569, 4503, 127, 232, 309, 3620, 25, 1391, 19815, 14031, 62, 16366, 68, 92, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 14873, 14031, 62, 16366, 68, 6624, 352, 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, 3601, 10786, 59, 44427, 58, 16, 26, 3682, 76, 31054, 32, 127, 229, 5746, 46, 23337, 1797, 5446, 26853, 0, 59, 44427, 58, 15, 26, 15, 76, 11537, 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, 3601, 10786, 59, 44427, 58, 16, 26, 3682, 76, 31054, 32, 127, 229, 127, 243, 1546, 23337, 1797, 5446, 2885, 1921, 0, 59, 44427, 58, 15, 26, 15, 76, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3829, 76, 47232, 10541, 59, 44427, 58, 15, 26, 15, 76, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 50, 2662, 6981, 46, 16926, 1921, 7054, 12964, 5446, 2885, 1921, 17228, 21664, 55, 1921, 25, 309, 3620, 2640, 44352, 36247, 360, 127, 232, 371, 3, 25, 1391, 83, 313, 62, 19290, 292, 25, 13, 17, 69, 92, 4526, 32, 1797, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 6, 1921, 337, 1546, 31180, 311, 5746, 46, 4526, 24302, 3525, 36, 7054, 5550, 11008, 1921, 7102, 28884, 127, 243, 1546, 317, 4339, 10426, 46, 25, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 3829, 76, 47232, 10541, 59, 44427, 58, 15, 26, 15, 76, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 67, 6192, 62, 68, 6413, 1875, 657, 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, 3601, 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, 277, 6, 7206, 25, 347, 7836, 532, 11177, 1921, 4146, 1220, 350, 24401, 25, 360, 127, 241, 43, 1503, 532, 4576, 32, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 371, 3, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 67, 6192, 62, 68, 6413, 25, 13, 17, 69, 92, 4526, 32, 1797, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 44252, 1875, 657, 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, 3601, 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, 277, 6, 7206, 25, 347, 7836, 532, 11177, 1921, 4146, 1220, 350, 24401, 25, 27526, 46, 532, 27526, 43345, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 371, 3, 25, 1391, 2100, 273, 62, 83, 313, 62, 3575, 330, 3028, 25, 13, 17, 69, 92, 4526, 32, 1797, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 67, 6192, 62, 5171, 4763, 1875, 657, 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, 3601, 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, 277, 6, 7206, 25, 347, 7836, 532, 11177, 1921, 4146, 1220, 350, 24401, 25, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 371, 3, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 1671, 292, 346, 62, 67, 6192, 62, 5171, 4763, 25, 13, 17, 69, 92, 4526, 32, 1797, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 1671, 292, 346, 1875, 657, 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, 3601, 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, 277, 6, 7206, 25, 360, 127, 241, 43, 1503, 532, 4576, 32, 1220, 350, 24401, 25, 347, 7836, 532, 11177, 1921, 4146, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 471, 13702, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 1671, 292, 346, 25, 13, 17, 69, 92, 360, 127, 241, 43, 1503, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 44252, 1875, 657, 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, 3601, 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, 277, 6, 7206, 25, 360, 127, 241, 43, 1503, 532, 4576, 32, 1220, 350, 24401, 25, 27526, 46, 532, 27526, 43345, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 471, 13702, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 44252, 25, 13, 17, 69, 92, 360, 127, 241, 43, 1503, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 67, 6192, 62, 5171, 4763, 1875, 657, 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, 3601, 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, 277, 6, 7206, 25, 360, 127, 241, 43, 1503, 532, 4576, 32, 1220, 350, 24401, 25, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 471, 13702, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 68, 6413, 62, 67, 6192, 62, 5171, 4763, 25, 13, 17, 69, 92, 360, 127, 241, 43, 1503, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 44252, 62, 1671, 292, 346, 1875, 657, 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, 3601, 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, 277, 6, 7206, 25, 27526, 46, 532, 27526, 43345, 1220, 350, 24401, 25, 347, 7836, 532, 11177, 1921, 4146, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 10432, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 44252, 62, 1671, 292, 346, 25, 13, 17, 69, 92, 27526, 46, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 44252, 62, 67, 6192, 62, 68, 6413, 1875, 657, 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, 3601, 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, 277, 6, 7206, 25, 27526, 46, 532, 27526, 43345, 1220, 350, 24401, 25, 360, 127, 241, 43, 1503, 532, 4576, 32, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 10432, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 44252, 62, 67, 6192, 62, 68, 6413, 25, 13, 17, 69, 92, 27526, 46, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 44252, 62, 67, 6192, 62, 5171, 4763, 1875, 657, 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, 3601, 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, 277, 6, 7206, 25, 27526, 46, 532, 27526, 43345, 1220, 350, 24401, 25, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 10432, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 44252, 62, 67, 6192, 62, 5171, 4763, 25, 13, 17, 69, 92, 27526, 46, 2637, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 1671, 292, 346, 1875, 657, 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, 3601, 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, 277, 6, 7206, 25, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 1220, 350, 24401, 25, 347, 7836, 532, 11177, 1921, 4146, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 471, 13702, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 1671, 292, 346, 25, 13, 17, 69, 92, 360, 127, 241, 43, 1503, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 67, 6192, 62, 68, 6413, 1875, 657, 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, 3601, 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, 277, 6, 7206, 25, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 1220, 350, 24401, 25, 360, 127, 241, 43, 1503, 532, 4576, 32, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 471, 13702, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 67, 6192, 62, 68, 6413, 25, 13, 17, 69, 92, 360, 127, 241, 43, 1503, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2006, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 44252, 1875, 657, 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, 3601, 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, 277, 6, 7206, 25, 360, 127, 241, 43, 1503, 532, 15628, 2885, 127, 223, 1220, 350, 24401, 25, 27526, 46, 532, 27526, 43345, 1220, 28184, 3955, 3525, 32, 127, 229, 5746, 46, 36247, 360, 127, 232, 471, 13702, 25, 1391, 83, 313, 62, 76, 709, 3681, 78, 62, 67, 6192, 62, 5171, 4763, 62, 44252, 25, 13, 17, 69, 92, 360, 127, 241, 43, 1503, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 6407, 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, 13161, 283, 62, 26272, 62, 1050, 1939, 8521, 796, 965, 7, 15414, 10786, 19511, 578, 33250, 50, 45297, 4090, 4663, 25, 11537, 737, 36311, 22446, 45828, 3419, 58, 15, 60, 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, 13161, 283, 62, 26272, 62, 1050, 1939, 8521, 6624, 705, 50, 10354, 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, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 438, 6, 1635, 3439, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3467, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 220, 220, 17368, 31553, 6981, 46, 41597, 52, 4810, 30158, 4061, 1847, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 1120, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 13, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3993, 7, 15, 13, 23, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 3064, 4, 59, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 44427, 58, 16, 26, 1270, 76, 59, 44427, 58, 16, 26, 3559, 76, 220, 220, 3467, 44427, 58, 15, 26, 15, 76, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 59, 77, 11537, 628, 628 ]
1.526212
49,347
from .Base import * from discord.ext import commands from discord.utils import get
[ 6738, 764, 14881, 1330, 1635, 198, 6738, 36446, 13, 2302, 1330, 9729, 198, 6738, 36446, 13, 26791, 1330, 651 ]
4.315789
19
a = 1 b = 5 h = b*5 d = a*5 s = ( cq.Workplane("XY") .ellipse(a,b) .sweep( cq.Workplane("XZ") # Start 0deg tangent, Tip finishes with 90deg tangent .spline([(0, i) for i in range(h)] + [(d,h)],[(0,1),(1,0)]) # Start 0deg tangent, Tip finishes with 45deg tangent #.spline([(0,0),(0,h),(d,h+5*d)],[(0,1),(1,1)]) #original ) )
[ 64, 796, 352, 198, 65, 796, 642, 198, 71, 796, 275, 9, 20, 198, 67, 796, 257, 9, 20, 198, 198, 82, 796, 357, 198, 220, 220, 220, 269, 80, 13, 12468, 14382, 7203, 34278, 4943, 198, 220, 220, 220, 764, 695, 541, 325, 7, 64, 11, 65, 8, 198, 220, 220, 220, 764, 46280, 538, 7, 198, 220, 220, 220, 220, 220, 220, 220, 269, 80, 13, 12468, 14382, 7203, 55, 57, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 7253, 657, 13500, 13875, 298, 11, 23095, 20271, 351, 4101, 13500, 13875, 298, 198, 220, 220, 220, 220, 220, 220, 220, 764, 22018, 500, 26933, 7, 15, 11, 1312, 8, 329, 1312, 287, 2837, 7, 71, 15437, 1343, 47527, 67, 11, 71, 8, 38430, 7, 15, 11, 16, 828, 7, 16, 11, 15, 8, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 7253, 657, 13500, 13875, 298, 11, 23095, 20271, 351, 4153, 13500, 13875, 298, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 13, 22018, 500, 26933, 7, 15, 11, 15, 828, 7, 15, 11, 71, 828, 7, 67, 11, 71, 10, 20, 9, 67, 8, 38430, 7, 15, 11, 16, 828, 7, 16, 11, 16, 8, 12962, 1303, 14986, 198, 220, 220, 220, 1267, 198, 8, 198 ]
1.785047
214
""" Copyright 2015 Rackspace 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. """ from __future__ import absolute_import from __future__ import print_function import sys import tempfile import traceback import fixtures from tempest.lib.exceptions import CommandFailed from testtools.runtest import MultipleExceptions from designateclient.functionaltests.client import DesignateCLI class ZoneFixture(BaseFixture): """See DesignateCLI.zone_create for __init__ args""" @classmethod class TransferRequestFixture(BaseFixture): """See DesignateCLI.zone_transfer_request_create for __init__ args""" @classmethod class ExportFixture(BaseFixture): """See DesignateCLI.zone_export_create for __init__ args""" @classmethod class ImportFixture(BaseFixture): """See DesignateCLI.zone_import_create for __init__ args""" @classmethod class RecordsetFixture(BaseFixture): """See DesignateCLI.recordset_create for __init__ args""" @classmethod class TLDFixture(BaseFixture): """See DesignateCLI.tld_create for __init__ args""" @classmethod class BlacklistFixture(BaseFixture): """See DesignateCLI.zone_blacklist_create for __init__ args""" @classmethod
[ 37811, 198, 15269, 1853, 37927, 13200, 198, 198, 26656, 15385, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 5832, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 1639, 743, 7330, 257, 4866, 286, 262, 13789, 379, 628, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 198, 28042, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 17080, 6169, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 198, 54, 10554, 12425, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 198, 6214, 262, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 198, 2475, 20597, 739, 262, 13789, 13, 198, 37811, 198, 6738, 11593, 37443, 834, 1330, 4112, 62, 11748, 198, 6738, 11593, 37443, 834, 1330, 3601, 62, 8818, 198, 11748, 25064, 198, 11748, 20218, 7753, 198, 11748, 12854, 1891, 198, 198, 11748, 34609, 198, 6738, 20218, 395, 13, 8019, 13, 1069, 11755, 1330, 9455, 37, 6255, 198, 6738, 1332, 31391, 13, 81, 2797, 395, 1330, 20401, 3109, 11755, 198, 198, 6738, 32781, 16366, 13, 8818, 2501, 3558, 13, 16366, 1330, 8495, 378, 5097, 40, 628, 198, 198, 4871, 13035, 37, 9602, 7, 14881, 37, 9602, 2599, 198, 220, 220, 220, 37227, 6214, 8495, 378, 5097, 40, 13, 11340, 62, 17953, 329, 11593, 15003, 834, 26498, 37811, 628, 220, 220, 220, 2488, 4871, 24396, 628, 198, 4871, 20558, 18453, 37, 9602, 7, 14881, 37, 9602, 2599, 198, 220, 220, 220, 37227, 6214, 8495, 378, 5097, 40, 13, 11340, 62, 39437, 62, 25927, 62, 17953, 329, 11593, 15003, 834, 26498, 37811, 628, 220, 220, 220, 2488, 4871, 24396, 628, 198, 4871, 36472, 37, 9602, 7, 14881, 37, 9602, 2599, 198, 220, 220, 220, 37227, 6214, 8495, 378, 5097, 40, 13, 11340, 62, 39344, 62, 17953, 329, 11593, 15003, 834, 26498, 37811, 628, 220, 220, 220, 2488, 4871, 24396, 628, 198, 4871, 17267, 37, 9602, 7, 14881, 37, 9602, 2599, 198, 220, 220, 220, 37227, 6214, 8495, 378, 5097, 40, 13, 11340, 62, 11748, 62, 17953, 329, 11593, 15003, 834, 26498, 37811, 628, 220, 220, 220, 2488, 4871, 24396, 628, 198, 4871, 13266, 2617, 37, 9602, 7, 14881, 37, 9602, 2599, 198, 220, 220, 220, 37227, 6214, 8495, 378, 5097, 40, 13, 22105, 2617, 62, 17953, 329, 11593, 15003, 834, 26498, 37811, 628, 220, 220, 220, 2488, 4871, 24396, 628, 198, 4871, 24811, 8068, 9602, 7, 14881, 37, 9602, 2599, 198, 220, 220, 220, 37227, 6214, 8495, 378, 5097, 40, 13, 83, 335, 62, 17953, 329, 11593, 15003, 834, 26498, 37811, 628, 220, 220, 220, 2488, 4871, 24396, 628, 198, 4871, 2619, 4868, 37, 9602, 7, 14881, 37, 9602, 2599, 198, 220, 220, 220, 37227, 6214, 8495, 378, 5097, 40, 13, 11340, 62, 13424, 4868, 62, 17953, 329, 11593, 15003, 834, 26498, 37811, 628, 220, 220, 220, 2488, 4871, 24396, 198 ]
3.390782
499
from django.contrib import admin from recipe import models admin.site.register(models.Recipe) admin.site.register(models.Ingredient)
[ 6738, 42625, 14208, 13, 3642, 822, 1330, 13169, 198, 198, 6738, 8364, 1330, 4981, 198, 198, 28482, 13, 15654, 13, 30238, 7, 27530, 13, 37523, 8, 198, 28482, 13, 15654, 13, 30238, 7, 27530, 13, 27682, 445, 1153, 8, 198 ]
3.375
40
# -*- coding: utf8 -*- """Autogenerated file - DO NOT EDIT If you spot a bug, please report it on the mailing list and/or change the generator.""" import os from ...base import (CommandLine, CommandLineInputSpec, SEMLikeCommandLine, TraitedSpec, File, Directory, traits, isdefined, InputMultiPath, OutputMultiPath) class GenerateSummedGradientImage(SEMLikeCommandLine): """title: GenerateSummedGradient category: Filtering.FeatureDetection description: Automatic FeatureImages using neural networks version: 1.0 license: https://www.nitrc.org/svn/brains/BuildScripts/trunk/License.txt contributor: Greg Harris, Eun Young Kim """ input_spec = GenerateSummedGradientImageInputSpec output_spec = GenerateSummedGradientImageOutputSpec _cmd = " GenerateSummedGradientImage " _outputs_filenames = {'outputFileName': 'outputFileName'} _redirect_x = False class CannySegmentationLevelSetImageFilter(SEMLikeCommandLine): """title: Canny Level Set Image Filter category: Filtering.FeatureDetection description: The CannySegmentationLevelSet is commonly used to refine a manually generated manual mask. version: 0.3.0 license: CC contributor: Regina Kim acknowledgements: This command module was derived from Insight/Examples/Segmentation/CannySegmentationLevelSetImageFilter.cxx (copyright) Insight Software Consortium. See http://wiki.na-mic.org/Wiki/index.php/Slicer3:Execution_Model_Documentation for more detailed descriptions. """ input_spec = CannySegmentationLevelSetImageFilterInputSpec output_spec = CannySegmentationLevelSetImageFilterOutputSpec _cmd = " CannySegmentationLevelSetImageFilter " _outputs_filenames = {'outputVolume': 'outputVolume.nii', 'outputSpeedVolume': 'outputSpeedVolume.nii'} _redirect_x = False class DilateImage(SEMLikeCommandLine): """title: Dilate Image category: Filtering.FeatureDetection description: Uses mathematical morphology to dilate the input images. version: 0.1.0.$Revision: 1 $(alpha) documentation-url: http:://www.na-mic.org/ license: https://www.nitrc.org/svn/brains/BuildScripts/trunk/License.txt contributor: This tool was developed by Mark Scully and Jeremy Bockholt. """ input_spec = DilateImageInputSpec output_spec = DilateImageOutputSpec _cmd = " DilateImage " _outputs_filenames = {'outputVolume': 'outputVolume.nii'} _redirect_x = False class TextureFromNoiseImageFilter(SEMLikeCommandLine): """title: TextureFromNoiseImageFilter category: Filtering.FeatureDetection description: Calculate the local noise in an image. version: 0.1.0.$Revision: 1 $(alpha) documentation-url: http:://www.na-mic.org/ license: https://www.nitrc.org/svn/brains/BuildScripts/trunk/License.txt contributor: This tool was developed by Eunyoung Regina Kim """ input_spec = TextureFromNoiseImageFilterInputSpec output_spec = TextureFromNoiseImageFilterOutputSpec _cmd = " TextureFromNoiseImageFilter " _outputs_filenames = {'outputVolume': 'outputVolume.nii'} _redirect_x = False class FlippedDifference(SEMLikeCommandLine): """title: Flip Image category: Filtering.FeatureDetection description: Difference between an image and the axially flipped version of that image. version: 0.1.0.$Revision: 1 $(alpha) documentation-url: http:://www.na-mic.org/ license: https://www.nitrc.org/svn/brains/BuildScripts/trunk/License.txt contributor: This tool was developed by Mark Scully and Jeremy Bockholt. """ input_spec = FlippedDifferenceInputSpec output_spec = FlippedDifferenceOutputSpec _cmd = " FlippedDifference " _outputs_filenames = {'outputVolume': 'outputVolume.nii'} _redirect_x = False class ErodeImage(SEMLikeCommandLine): """title: Erode Image category: Filtering.FeatureDetection description: Uses mathematical morphology to erode the input images. version: 0.1.0.$Revision: 1 $(alpha) documentation-url: http:://www.na-mic.org/ license: https://www.nitrc.org/svn/brains/BuildScripts/trunk/License.txt contributor: This tool was developed by Mark Scully and Jeremy Bockholt. """ input_spec = ErodeImageInputSpec output_spec = ErodeImageOutputSpec _cmd = " ErodeImage " _outputs_filenames = {'outputVolume': 'outputVolume.nii'} _redirect_x = False class GenerateBrainClippedImage(SEMLikeCommandLine): """title: GenerateBrainClippedImage category: Filtering.FeatureDetection description: Automatic FeatureImages using neural networks version: 1.0 license: https://www.nitrc.org/svn/brains/BuildScripts/trunk/License.txt contributor: Eun Young Kim """ input_spec = GenerateBrainClippedImageInputSpec output_spec = GenerateBrainClippedImageOutputSpec _cmd = " GenerateBrainClippedImage " _outputs_filenames = {'outputFileName': 'outputFileName'} _redirect_x = False class NeighborhoodMedian(SEMLikeCommandLine): """title: Neighborhood Median category: Filtering.FeatureDetection description: Calculates the median, for the given neighborhood size, at each voxel of the input image. version: 0.1.0.$Revision: 1 $(alpha) documentation-url: http:://www.na-mic.org/ license: https://www.nitrc.org/svn/brains/BuildScripts/trunk/License.txt contributor: This tool was developed by Mark Scully and Jeremy Bockholt. """ input_spec = NeighborhoodMedianInputSpec output_spec = NeighborhoodMedianOutputSpec _cmd = " NeighborhoodMedian " _outputs_filenames = {'outputVolume': 'outputVolume.nii'} _redirect_x = False class GenerateTestImage(SEMLikeCommandLine): """title: DownSampleImage category: Filtering.FeatureDetection description: Down sample image for testing version: 1.0 license: https://www.nitrc.org/svn/brains/BuildScripts/trunk/License.txt contributor: Eun Young Kim """ input_spec = GenerateTestImageInputSpec output_spec = GenerateTestImageOutputSpec _cmd = " GenerateTestImage " _outputs_filenames = {'outputVolume': 'outputVolume'} _redirect_x = False class NeighborhoodMean(SEMLikeCommandLine): """title: Neighborhood Mean category: Filtering.FeatureDetection description: Calculates the mean, for the given neighborhood size, at each voxel of the T1, T2, and FLAIR. version: 0.1.0.$Revision: 1 $(alpha) documentation-url: http:://www.na-mic.org/ license: https://www.nitrc.org/svn/brains/BuildScripts/trunk/License.txt contributor: This tool was developed by Mark Scully and Jeremy Bockholt. """ input_spec = NeighborhoodMeanInputSpec output_spec = NeighborhoodMeanOutputSpec _cmd = " NeighborhoodMean " _outputs_filenames = {'outputVolume': 'outputVolume.nii'} _redirect_x = False class HammerAttributeCreator(SEMLikeCommandLine): """title: HAMMER Feature Vectors category: Filtering.FeatureDetection description: Create the feature vectors used by HAMMER. version: 0.1.0.$Revision: 1 $(alpha) documentation-url: http:://www.na-mic.org/ license: https://www.nitrc.org/svn/brains/BuildScripts/trunk/License.txt contributor: This was extracted from the Hammer Registration source code, and wrapped up by Hans J. Johnson. """ input_spec = HammerAttributeCreatorInputSpec output_spec = HammerAttributeCreatorOutputSpec _cmd = " HammerAttributeCreator " _outputs_filenames = {} _redirect_x = False class TextureMeasureFilter(SEMLikeCommandLine): """title: Canny Level Set Image Filter category: Filtering.FeatureDetection description: The CannySegmentationLevelSet is commonly used to refine a manually generated manual mask. version: 0.3.0 license: CC contributor: Regina Kim acknowledgements: This command module was derived from Insight/Examples/Segmentation/CannySegmentationLevelSetImageFilter.cxx (copyright) Insight Software Consortium. See http://wiki.na-mic.org/Wiki/index.php/Slicer3:Execution_Model_Documentation for more detailed descriptions. """ input_spec = TextureMeasureFilterInputSpec output_spec = TextureMeasureFilterOutputSpec _cmd = " TextureMeasureFilter " _outputs_filenames = {'outputFilename': 'outputFilename'} _redirect_x = False class DilateMask(SEMLikeCommandLine): """title: Dilate Image category: Filtering.FeatureDetection description: Uses mathematical morphology to dilate the input images. version: 0.1.0.$Revision: 1 $(alpha) documentation-url: http:://www.na-mic.org/ license: https://www.nitrc.org/svn/brains/BuildScripts/trunk/License.txt contributor: This tool was developed by Mark Scully and Jeremy Bockholt. """ input_spec = DilateMaskInputSpec output_spec = DilateMaskOutputSpec _cmd = " DilateMask " _outputs_filenames = {'outputVolume': 'outputVolume.nii'} _redirect_x = False class DumpBinaryTrainingVectors(SEMLikeCommandLine): """title: Erode Image category: Filtering.FeatureDetection description: Uses mathematical morphology to erode the input images. version: 0.1.0.$Revision: 1 $(alpha) documentation-url: http:://www.na-mic.org/ license: https://www.nitrc.org/svn/brains/BuildScripts/trunk/License.txt contributor: This tool was developed by Mark Scully and Jeremy Bockholt. """ input_spec = DumpBinaryTrainingVectorsInputSpec output_spec = DumpBinaryTrainingVectorsOutputSpec _cmd = " DumpBinaryTrainingVectors " _outputs_filenames = {} _redirect_x = False class DistanceMaps(SEMLikeCommandLine): """title: Mauerer Distance category: Filtering.FeatureDetection description: Get the distance from a voxel to the nearest voxel of a given tissue type. version: 0.1.0.$Revision: 1 $(alpha) documentation-url: http:://www.na-mic.org/ license: https://www.nitrc.org/svn/brains/BuildScripts/trunk/License.txt contributor: This tool was developed by Mark Scully and Jeremy Bockholt. """ input_spec = DistanceMapsInputSpec output_spec = DistanceMapsOutputSpec _cmd = " DistanceMaps " _outputs_filenames = {'outputVolume': 'outputVolume.nii'} _redirect_x = False class STAPLEAnalysis(SEMLikeCommandLine): """title: Dilate Image category: Filtering.FeatureDetection description: Uses mathematical morphology to dilate the input images. version: 0.1.0.$Revision: 1 $(alpha) documentation-url: http:://www.na-mic.org/ license: https://www.nitrc.org/svn/brains/BuildScripts/trunk/License.txt contributor: This tool was developed by Mark Scully and Jeremy Bockholt. """ input_spec = STAPLEAnalysisInputSpec output_spec = STAPLEAnalysisOutputSpec _cmd = " STAPLEAnalysis " _outputs_filenames = {'outputVolume': 'outputVolume.nii'} _redirect_x = False class GradientAnisotropicDiffusionImageFilter(SEMLikeCommandLine): """title: GradientAnisopropicDiffusionFilter category: Filtering.FeatureDetection description: Image Smoothing using Gradient Anisotropic Diffuesion Filer contributor: This tool was developed by Eun Young Kim by modifying ITK Example """ input_spec = GradientAnisotropicDiffusionImageFilterInputSpec output_spec = GradientAnisotropicDiffusionImageFilterOutputSpec _cmd = " GradientAnisotropicDiffusionImageFilter " _outputs_filenames = {'outputVolume': 'outputVolume.nii'} _redirect_x = False class CannyEdge(SEMLikeCommandLine): """title: Canny Edge Detection category: Filtering.FeatureDetection description: Get the distance from a voxel to the nearest voxel of a given tissue type. version: 0.1.0.(alpha) documentation-url: http:://www.na-mic.org/ license: https://www.nitrc.org/svn/brains/BuildScripts/trunk/License.txt contributor: This tool was written by Hans J. Johnson. """ input_spec = CannyEdgeInputSpec output_spec = CannyEdgeOutputSpec _cmd = " CannyEdge " _outputs_filenames = {'outputVolume': 'outputVolume.nii'} _redirect_x = False
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 23, 532, 9, 12, 198, 37811, 16541, 519, 877, 515, 2393, 532, 8410, 5626, 48483, 198, 1532, 345, 4136, 257, 5434, 11, 3387, 989, 340, 319, 262, 21898, 1351, 290, 14, 273, 1487, 262, 17301, 526, 15931, 198, 198, 11748, 28686, 198, 198, 6738, 2644, 8692, 1330, 357, 21575, 13949, 11, 9455, 13949, 20560, 22882, 11, 48603, 7594, 21575, 13949, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4759, 863, 22882, 11, 9220, 11, 27387, 11, 12796, 11, 318, 23211, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23412, 29800, 15235, 11, 25235, 29800, 15235, 8, 628, 628, 198, 4871, 2980, 378, 13065, 1150, 42731, 1153, 5159, 7, 50, 3620, 7594, 21575, 13949, 2599, 628, 220, 220, 220, 37227, 7839, 25, 2980, 378, 13065, 1150, 42731, 1153, 198, 198, 22872, 25, 7066, 20212, 13, 38816, 11242, 3213, 198, 198, 11213, 25, 30199, 27018, 29398, 1262, 17019, 7686, 198, 198, 9641, 25, 352, 13, 15, 198, 198, 43085, 25, 3740, 1378, 2503, 13, 48825, 6015, 13, 2398, 14, 21370, 77, 14, 1671, 1299, 14, 15580, 7391, 82, 14, 2213, 2954, 14, 34156, 13, 14116, 198, 198, 3642, 2455, 273, 25, 8547, 10026, 11, 412, 403, 6960, 6502, 198, 198, 37811, 628, 220, 220, 220, 5128, 62, 16684, 796, 2980, 378, 13065, 1150, 42731, 1153, 5159, 20560, 22882, 198, 220, 220, 220, 5072, 62, 16684, 796, 2980, 378, 13065, 1150, 42731, 1153, 5159, 26410, 22882, 198, 220, 220, 220, 4808, 28758, 796, 366, 2980, 378, 13065, 1150, 42731, 1153, 5159, 366, 198, 220, 220, 220, 4808, 22915, 82, 62, 10379, 268, 1047, 796, 1391, 6, 22915, 8979, 5376, 10354, 705, 22915, 8979, 5376, 6, 92, 198, 220, 220, 220, 4808, 445, 1060, 62, 87, 796, 10352, 628, 628, 198, 4871, 327, 7737, 41030, 14374, 4971, 7248, 5159, 22417, 7, 50, 3620, 7594, 21575, 13949, 2599, 628, 220, 220, 220, 37227, 7839, 25, 327, 7737, 5684, 5345, 7412, 25853, 198, 198, 22872, 25, 7066, 20212, 13, 38816, 11242, 3213, 198, 198, 11213, 25, 383, 327, 7737, 41030, 14374, 4971, 7248, 318, 8811, 973, 284, 35139, 257, 14500, 7560, 10107, 9335, 13, 198, 198, 9641, 25, 657, 13, 18, 13, 15, 198, 198, 43085, 25, 12624, 198, 198, 3642, 2455, 273, 25, 38739, 6502, 198, 198, 441, 2197, 992, 43547, 25, 770, 3141, 8265, 373, 10944, 422, 39917, 14, 27730, 14, 41030, 14374, 14, 34, 7737, 41030, 14374, 4971, 7248, 5159, 22417, 13, 66, 5324, 357, 22163, 4766, 8, 39917, 10442, 42727, 13, 220, 4091, 2638, 1378, 15466, 13, 2616, 12, 9383, 13, 2398, 14, 32603, 14, 9630, 13, 10121, 14, 50, 677, 263, 18, 25, 23002, 1009, 62, 17633, 62, 24941, 341, 329, 517, 6496, 16969, 13, 198, 198, 37811, 628, 220, 220, 220, 5128, 62, 16684, 796, 327, 7737, 41030, 14374, 4971, 7248, 5159, 22417, 20560, 22882, 198, 220, 220, 220, 5072, 62, 16684, 796, 327, 7737, 41030, 14374, 4971, 7248, 5159, 22417, 26410, 22882, 198, 220, 220, 220, 4808, 28758, 796, 366, 327, 7737, 41030, 14374, 4971, 7248, 5159, 22417, 366, 198, 220, 220, 220, 4808, 22915, 82, 62, 10379, 268, 1047, 796, 1391, 6, 22915, 31715, 10354, 705, 22915, 31715, 13, 77, 4178, 3256, 705, 22915, 22785, 31715, 10354, 705, 22915, 22785, 31715, 13, 77, 4178, 6, 92, 198, 220, 220, 220, 4808, 445, 1060, 62, 87, 796, 10352, 628, 628, 198, 4871, 29328, 378, 5159, 7, 50, 3620, 7594, 21575, 13949, 2599, 628, 220, 220, 220, 37227, 7839, 25, 29328, 378, 7412, 198, 198, 22872, 25, 7066, 20212, 13, 38816, 11242, 3213, 198, 198, 11213, 25, 36965, 18069, 46320, 284, 11844, 378, 262, 5128, 4263, 13, 198, 198, 9641, 25, 657, 13, 16, 13, 15, 48082, 18009, 1166, 25, 352, 29568, 26591, 8, 198, 198, 22897, 341, 12, 6371, 25, 2638, 25, 1378, 2503, 13, 2616, 12, 9383, 13, 2398, 14, 198, 198, 43085, 25, 3740, 1378, 2503, 13, 48825, 6015, 13, 2398, 14, 21370, 77, 14, 1671, 1299, 14, 15580, 7391, 82, 14, 2213, 2954, 14, 34156, 13, 14116, 198, 198, 3642, 2455, 273, 25, 770, 2891, 373, 4166, 416, 2940, 47953, 290, 11753, 347, 735, 3937, 83, 13, 198, 198, 37811, 628, 220, 220, 220, 5128, 62, 16684, 796, 29328, 378, 5159, 20560, 22882, 198, 220, 220, 220, 5072, 62, 16684, 796, 29328, 378, 5159, 26410, 22882, 198, 220, 220, 220, 4808, 28758, 796, 366, 29328, 378, 5159, 366, 198, 220, 220, 220, 4808, 22915, 82, 62, 10379, 268, 1047, 796, 1391, 6, 22915, 31715, 10354, 705, 22915, 31715, 13, 77, 4178, 6, 92, 198, 220, 220, 220, 4808, 445, 1060, 62, 87, 796, 10352, 628, 628, 198, 4871, 44409, 4863, 2949, 786, 5159, 22417, 7, 50, 3620, 7594, 21575, 13949, 2599, 628, 220, 220, 220, 37227, 7839, 25, 44409, 4863, 2949, 786, 5159, 22417, 198, 198, 22872, 25, 7066, 20212, 13, 38816, 11242, 3213, 198, 198, 11213, 25, 27131, 378, 262, 1957, 7838, 287, 281, 2939, 13, 198, 198, 9641, 25, 657, 13, 16, 13, 15, 48082, 18009, 1166, 25, 352, 29568, 26591, 8, 198, 198, 22897, 341, 12, 6371, 25, 2638, 25, 1378, 2503, 13, 2616, 12, 9383, 13, 2398, 14, 198, 198, 43085, 25, 3740, 1378, 2503, 13, 48825, 6015, 13, 2398, 14, 21370, 77, 14, 1671, 1299, 14, 15580, 7391, 82, 14, 2213, 2954, 14, 34156, 13, 14116, 198, 198, 3642, 2455, 273, 25, 770, 2891, 373, 4166, 416, 412, 403, 35465, 38739, 6502, 198, 198, 37811, 628, 220, 220, 220, 5128, 62, 16684, 796, 44409, 4863, 2949, 786, 5159, 22417, 20560, 22882, 198, 220, 220, 220, 5072, 62, 16684, 796, 44409, 4863, 2949, 786, 5159, 22417, 26410, 22882, 198, 220, 220, 220, 4808, 28758, 796, 366, 44409, 4863, 2949, 786, 5159, 22417, 366, 198, 220, 220, 220, 4808, 22915, 82, 62, 10379, 268, 1047, 796, 1391, 6, 22915, 31715, 10354, 705, 22915, 31715, 13, 77, 4178, 6, 92, 198, 220, 220, 220, 4808, 445, 1060, 62, 87, 796, 10352, 628, 628, 198, 4871, 1610, 3949, 28813, 1945, 7, 50, 3620, 7594, 21575, 13949, 2599, 628, 220, 220, 220, 37227, 7839, 25, 29583, 7412, 198, 198, 22872, 25, 7066, 20212, 13, 38816, 11242, 3213, 198, 198, 11213, 25, 43795, 1022, 281, 2939, 290, 262, 7877, 1927, 26157, 2196, 286, 326, 2939, 13, 198, 198, 9641, 25, 657, 13, 16, 13, 15, 48082, 18009, 1166, 25, 352, 29568, 26591, 8, 198, 198, 22897, 341, 12, 6371, 25, 2638, 25, 1378, 2503, 13, 2616, 12, 9383, 13, 2398, 14, 198, 198, 43085, 25, 3740, 1378, 2503, 13, 48825, 6015, 13, 2398, 14, 21370, 77, 14, 1671, 1299, 14, 15580, 7391, 82, 14, 2213, 2954, 14, 34156, 13, 14116, 198, 198, 3642, 2455, 273, 25, 770, 2891, 373, 4166, 416, 2940, 47953, 290, 11753, 347, 735, 3937, 83, 13, 198, 198, 37811, 628, 220, 220, 220, 5128, 62, 16684, 796, 1610, 3949, 28813, 1945, 20560, 22882, 198, 220, 220, 220, 5072, 62, 16684, 796, 1610, 3949, 28813, 1945, 26410, 22882, 198, 220, 220, 220, 4808, 28758, 796, 366, 1610, 3949, 28813, 1945, 366, 198, 220, 220, 220, 4808, 22915, 82, 62, 10379, 268, 1047, 796, 1391, 6, 22915, 31715, 10354, 705, 22915, 31715, 13, 77, 4178, 6, 92, 198, 220, 220, 220, 4808, 445, 1060, 62, 87, 796, 10352, 628, 628, 198, 4871, 412, 305, 2934, 5159, 7, 50, 3620, 7594, 21575, 13949, 2599, 628, 220, 220, 220, 37227, 7839, 25, 412, 305, 2934, 7412, 198, 198, 22872, 25, 7066, 20212, 13, 38816, 11242, 3213, 198, 198, 11213, 25, 36965, 18069, 46320, 284, 1931, 1098, 262, 5128, 4263, 13, 198, 198, 9641, 25, 657, 13, 16, 13, 15, 48082, 18009, 1166, 25, 352, 29568, 26591, 8, 198, 198, 22897, 341, 12, 6371, 25, 2638, 25, 1378, 2503, 13, 2616, 12, 9383, 13, 2398, 14, 198, 198, 43085, 25, 3740, 1378, 2503, 13, 48825, 6015, 13, 2398, 14, 21370, 77, 14, 1671, 1299, 14, 15580, 7391, 82, 14, 2213, 2954, 14, 34156, 13, 14116, 198, 198, 3642, 2455, 273, 25, 770, 2891, 373, 4166, 416, 2940, 47953, 290, 11753, 347, 735, 3937, 83, 13, 198, 198, 37811, 628, 220, 220, 220, 5128, 62, 16684, 796, 412, 305, 2934, 5159, 20560, 22882, 198, 220, 220, 220, 5072, 62, 16684, 796, 412, 305, 2934, 5159, 26410, 22882, 198, 220, 220, 220, 4808, 28758, 796, 366, 412, 305, 2934, 5159, 366, 198, 220, 220, 220, 4808, 22915, 82, 62, 10379, 268, 1047, 796, 1391, 6, 22915, 31715, 10354, 705, 22915, 31715, 13, 77, 4178, 6, 92, 198, 220, 220, 220, 4808, 445, 1060, 62, 87, 796, 10352, 628, 628, 198, 4871, 2980, 378, 44687, 2601, 3949, 5159, 7, 50, 3620, 7594, 21575, 13949, 2599, 628, 220, 220, 220, 37227, 7839, 25, 2980, 378, 44687, 2601, 3949, 5159, 198, 198, 22872, 25, 7066, 20212, 13, 38816, 11242, 3213, 198, 198, 11213, 25, 30199, 27018, 29398, 1262, 17019, 7686, 198, 198, 9641, 25, 352, 13, 15, 198, 198, 43085, 25, 3740, 1378, 2503, 13, 48825, 6015, 13, 2398, 14, 21370, 77, 14, 1671, 1299, 14, 15580, 7391, 82, 14, 2213, 2954, 14, 34156, 13, 14116, 198, 198, 3642, 2455, 273, 25, 412, 403, 6960, 6502, 198, 198, 37811, 628, 220, 220, 220, 5128, 62, 16684, 796, 2980, 378, 44687, 2601, 3949, 5159, 20560, 22882, 198, 220, 220, 220, 5072, 62, 16684, 796, 2980, 378, 44687, 2601, 3949, 5159, 26410, 22882, 198, 220, 220, 220, 4808, 28758, 796, 366, 2980, 378, 44687, 2601, 3949, 5159, 366, 198, 220, 220, 220, 4808, 22915, 82, 62, 10379, 268, 1047, 796, 1391, 6, 22915, 8979, 5376, 10354, 705, 22915, 8979, 5376, 6, 92, 198, 220, 220, 220, 4808, 445, 1060, 62, 87, 796, 10352, 628, 628, 198, 4871, 37914, 9921, 666, 7, 50, 3620, 7594, 21575, 13949, 2599, 628, 220, 220, 220, 37227, 7839, 25, 37914, 26178, 198, 198, 22872, 25, 7066, 20212, 13, 38816, 11242, 3213, 198, 198, 11213, 25, 27131, 689, 262, 14288, 11, 329, 262, 1813, 6232, 2546, 11, 379, 1123, 410, 1140, 417, 286, 262, 5128, 2939, 13, 198, 198, 9641, 25, 657, 13, 16, 13, 15, 48082, 18009, 1166, 25, 352, 29568, 26591, 8, 198, 198, 22897, 341, 12, 6371, 25, 2638, 25, 1378, 2503, 13, 2616, 12, 9383, 13, 2398, 14, 198, 198, 43085, 25, 3740, 1378, 2503, 13, 48825, 6015, 13, 2398, 14, 21370, 77, 14, 1671, 1299, 14, 15580, 7391, 82, 14, 2213, 2954, 14, 34156, 13, 14116, 198, 198, 3642, 2455, 273, 25, 770, 2891, 373, 4166, 416, 2940, 47953, 290, 11753, 347, 735, 3937, 83, 13, 198, 198, 37811, 628, 220, 220, 220, 5128, 62, 16684, 796, 37914, 9921, 666, 20560, 22882, 198, 220, 220, 220, 5072, 62, 16684, 796, 37914, 9921, 666, 26410, 22882, 198, 220, 220, 220, 4808, 28758, 796, 366, 37914, 9921, 666, 366, 198, 220, 220, 220, 4808, 22915, 82, 62, 10379, 268, 1047, 796, 1391, 6, 22915, 31715, 10354, 705, 22915, 31715, 13, 77, 4178, 6, 92, 198, 220, 220, 220, 4808, 445, 1060, 62, 87, 796, 10352, 628, 628, 198, 4871, 2980, 378, 14402, 5159, 7, 50, 3620, 7594, 21575, 13949, 2599, 628, 220, 220, 220, 37227, 7839, 25, 5588, 36674, 5159, 198, 198, 22872, 25, 7066, 20212, 13, 38816, 11242, 3213, 198, 198, 11213, 25, 5588, 6291, 2939, 329, 4856, 198, 198, 9641, 25, 352, 13, 15, 198, 198, 43085, 25, 3740, 1378, 2503, 13, 48825, 6015, 13, 2398, 14, 21370, 77, 14, 1671, 1299, 14, 15580, 7391, 82, 14, 2213, 2954, 14, 34156, 13, 14116, 198, 198, 3642, 2455, 273, 25, 412, 403, 6960, 6502, 198, 198, 37811, 628, 220, 220, 220, 5128, 62, 16684, 796, 2980, 378, 14402, 5159, 20560, 22882, 198, 220, 220, 220, 5072, 62, 16684, 796, 2980, 378, 14402, 5159, 26410, 22882, 198, 220, 220, 220, 4808, 28758, 796, 366, 2980, 378, 14402, 5159, 366, 198, 220, 220, 220, 4808, 22915, 82, 62, 10379, 268, 1047, 796, 1391, 6, 22915, 31715, 10354, 705, 22915, 31715, 6, 92, 198, 220, 220, 220, 4808, 445, 1060, 62, 87, 796, 10352, 628, 628, 198, 4871, 37914, 5308, 272, 7, 50, 3620, 7594, 21575, 13949, 2599, 628, 220, 220, 220, 37227, 7839, 25, 37914, 22728, 198, 198, 22872, 25, 7066, 20212, 13, 38816, 11242, 3213, 198, 198, 11213, 25, 27131, 689, 262, 1612, 11, 329, 262, 1813, 6232, 2546, 11, 379, 1123, 410, 1140, 417, 286, 262, 309, 16, 11, 309, 17, 11, 290, 9977, 42149, 13, 198, 198, 9641, 25, 657, 13, 16, 13, 15, 48082, 18009, 1166, 25, 352, 29568, 26591, 8, 198, 198, 22897, 341, 12, 6371, 25, 2638, 25, 1378, 2503, 13, 2616, 12, 9383, 13, 2398, 14, 198, 198, 43085, 25, 3740, 1378, 2503, 13, 48825, 6015, 13, 2398, 14, 21370, 77, 14, 1671, 1299, 14, 15580, 7391, 82, 14, 2213, 2954, 14, 34156, 13, 14116, 198, 198, 3642, 2455, 273, 25, 770, 2891, 373, 4166, 416, 2940, 47953, 290, 11753, 347, 735, 3937, 83, 13, 198, 198, 37811, 628, 220, 220, 220, 5128, 62, 16684, 796, 37914, 5308, 272, 20560, 22882, 198, 220, 220, 220, 5072, 62, 16684, 796, 37914, 5308, 272, 26410, 22882, 198, 220, 220, 220, 4808, 28758, 796, 366, 37914, 5308, 272, 366, 198, 220, 220, 220, 4808, 22915, 82, 62, 10379, 268, 1047, 796, 1391, 6, 22915, 31715, 10354, 705, 22915, 31715, 13, 77, 4178, 6, 92, 198, 220, 220, 220, 4808, 445, 1060, 62, 87, 796, 10352, 628, 628, 198, 4871, 18278, 33682, 16719, 273, 7, 50, 3620, 7594, 21575, 13949, 2599, 628, 220, 220, 220, 37227, 7839, 25, 48079, 29296, 27018, 569, 478, 669, 198, 198, 22872, 25, 7066, 20212, 13, 38816, 11242, 3213, 198, 198, 11213, 25, 13610, 262, 3895, 30104, 973, 416, 48079, 29296, 13, 198, 198, 9641, 25, 657, 13, 16, 13, 15, 48082, 18009, 1166, 25, 352, 29568, 26591, 8, 198, 198, 22897, 341, 12, 6371, 25, 2638, 25, 1378, 2503, 13, 2616, 12, 9383, 13, 2398, 14, 198, 198, 43085, 25, 3740, 1378, 2503, 13, 48825, 6015, 13, 2398, 14, 21370, 77, 14, 1671, 1299, 14, 15580, 7391, 82, 14, 2213, 2954, 14, 34156, 13, 14116, 198, 198, 3642, 2455, 273, 25, 770, 373, 21242, 422, 262, 18278, 24610, 2723, 2438, 11, 290, 12908, 510, 416, 13071, 449, 13, 5030, 13, 198, 198, 37811, 628, 220, 220, 220, 5128, 62, 16684, 796, 18278, 33682, 16719, 273, 20560, 22882, 198, 220, 220, 220, 5072, 62, 16684, 796, 18278, 33682, 16719, 273, 26410, 22882, 198, 220, 220, 220, 4808, 28758, 796, 366, 18278, 33682, 16719, 273, 366, 198, 220, 220, 220, 4808, 22915, 82, 62, 10379, 268, 1047, 796, 23884, 198, 220, 220, 220, 4808, 445, 1060, 62, 87, 796, 10352, 628, 628, 198, 4871, 44409, 47384, 22417, 7, 50, 3620, 7594, 21575, 13949, 2599, 628, 220, 220, 220, 37227, 7839, 25, 327, 7737, 5684, 5345, 7412, 25853, 198, 198, 22872, 25, 7066, 20212, 13, 38816, 11242, 3213, 198, 198, 11213, 25, 383, 327, 7737, 41030, 14374, 4971, 7248, 318, 8811, 973, 284, 35139, 257, 14500, 7560, 10107, 9335, 13, 198, 198, 9641, 25, 657, 13, 18, 13, 15, 198, 198, 43085, 25, 12624, 198, 198, 3642, 2455, 273, 25, 38739, 6502, 198, 198, 441, 2197, 992, 43547, 25, 770, 3141, 8265, 373, 10944, 422, 39917, 14, 27730, 14, 41030, 14374, 14, 34, 7737, 41030, 14374, 4971, 7248, 5159, 22417, 13, 66, 5324, 357, 22163, 4766, 8, 39917, 10442, 42727, 13, 220, 4091, 2638, 1378, 15466, 13, 2616, 12, 9383, 13, 2398, 14, 32603, 14, 9630, 13, 10121, 14, 50, 677, 263, 18, 25, 23002, 1009, 62, 17633, 62, 24941, 341, 329, 517, 6496, 16969, 13, 198, 198, 37811, 628, 220, 220, 220, 5128, 62, 16684, 796, 44409, 47384, 22417, 20560, 22882, 198, 220, 220, 220, 5072, 62, 16684, 796, 44409, 47384, 22417, 26410, 22882, 198, 220, 220, 220, 4808, 28758, 796, 366, 44409, 47384, 22417, 366, 198, 220, 220, 220, 4808, 22915, 82, 62, 10379, 268, 1047, 796, 1391, 6, 22915, 35063, 10354, 705, 22915, 35063, 6, 92, 198, 220, 220, 220, 4808, 445, 1060, 62, 87, 796, 10352, 628, 628, 198, 4871, 29328, 378, 45195, 7, 50, 3620, 7594, 21575, 13949, 2599, 628, 220, 220, 220, 37227, 7839, 25, 29328, 378, 7412, 198, 198, 22872, 25, 7066, 20212, 13, 38816, 11242, 3213, 198, 198, 11213, 25, 36965, 18069, 46320, 284, 11844, 378, 262, 5128, 4263, 13, 198, 198, 9641, 25, 657, 13, 16, 13, 15, 48082, 18009, 1166, 25, 352, 29568, 26591, 8, 198, 198, 22897, 341, 12, 6371, 25, 2638, 25, 1378, 2503, 13, 2616, 12, 9383, 13, 2398, 14, 198, 198, 43085, 25, 3740, 1378, 2503, 13, 48825, 6015, 13, 2398, 14, 21370, 77, 14, 1671, 1299, 14, 15580, 7391, 82, 14, 2213, 2954, 14, 34156, 13, 14116, 198, 198, 3642, 2455, 273, 25, 770, 2891, 373, 4166, 416, 2940, 47953, 290, 11753, 347, 735, 3937, 83, 13, 198, 198, 37811, 628, 220, 220, 220, 5128, 62, 16684, 796, 29328, 378, 45195, 20560, 22882, 198, 220, 220, 220, 5072, 62, 16684, 796, 29328, 378, 45195, 26410, 22882, 198, 220, 220, 220, 4808, 28758, 796, 366, 29328, 378, 45195, 366, 198, 220, 220, 220, 4808, 22915, 82, 62, 10379, 268, 1047, 796, 1391, 6, 22915, 31715, 10354, 705, 22915, 31715, 13, 77, 4178, 6, 92, 198, 220, 220, 220, 4808, 445, 1060, 62, 87, 796, 10352, 628, 628, 198, 4871, 360, 931, 33, 3219, 44357, 53, 478, 669, 7, 50, 3620, 7594, 21575, 13949, 2599, 628, 220, 220, 220, 37227, 7839, 25, 412, 305, 2934, 7412, 198, 198, 22872, 25, 7066, 20212, 13, 38816, 11242, 3213, 198, 198, 11213, 25, 36965, 18069, 46320, 284, 1931, 1098, 262, 5128, 4263, 13, 198, 198, 9641, 25, 657, 13, 16, 13, 15, 48082, 18009, 1166, 25, 352, 29568, 26591, 8, 198, 198, 22897, 341, 12, 6371, 25, 2638, 25, 1378, 2503, 13, 2616, 12, 9383, 13, 2398, 14, 198, 198, 43085, 25, 3740, 1378, 2503, 13, 48825, 6015, 13, 2398, 14, 21370, 77, 14, 1671, 1299, 14, 15580, 7391, 82, 14, 2213, 2954, 14, 34156, 13, 14116, 198, 198, 3642, 2455, 273, 25, 770, 2891, 373, 4166, 416, 2940, 47953, 290, 11753, 347, 735, 3937, 83, 13, 198, 198, 37811, 628, 220, 220, 220, 5128, 62, 16684, 796, 360, 931, 33, 3219, 44357, 53, 478, 669, 20560, 22882, 198, 220, 220, 220, 5072, 62, 16684, 796, 360, 931, 33, 3219, 44357, 53, 478, 669, 26410, 22882, 198, 220, 220, 220, 4808, 28758, 796, 366, 360, 931, 33, 3219, 44357, 53, 478, 669, 366, 198, 220, 220, 220, 4808, 22915, 82, 62, 10379, 268, 1047, 796, 23884, 198, 220, 220, 220, 4808, 445, 1060, 62, 87, 796, 10352, 628, 628, 198, 4871, 34600, 47010, 7, 50, 3620, 7594, 21575, 13949, 2599, 628, 220, 220, 220, 37227, 7839, 25, 6669, 518, 11751, 34600, 198, 198, 22872, 25, 7066, 20212, 13, 38816, 11242, 3213, 198, 198, 11213, 25, 3497, 262, 5253, 422, 257, 410, 1140, 417, 284, 262, 16936, 410, 1140, 417, 286, 257, 1813, 10712, 2099, 13, 198, 198, 9641, 25, 657, 13, 16, 13, 15, 48082, 18009, 1166, 25, 352, 29568, 26591, 8, 198, 198, 22897, 341, 12, 6371, 25, 2638, 25, 1378, 2503, 13, 2616, 12, 9383, 13, 2398, 14, 198, 198, 43085, 25, 3740, 1378, 2503, 13, 48825, 6015, 13, 2398, 14, 21370, 77, 14, 1671, 1299, 14, 15580, 7391, 82, 14, 2213, 2954, 14, 34156, 13, 14116, 198, 198, 3642, 2455, 273, 25, 770, 2891, 373, 4166, 416, 2940, 47953, 290, 11753, 347, 735, 3937, 83, 13, 198, 198, 37811, 628, 220, 220, 220, 5128, 62, 16684, 796, 34600, 47010, 20560, 22882, 198, 220, 220, 220, 5072, 62, 16684, 796, 34600, 47010, 26410, 22882, 198, 220, 220, 220, 4808, 28758, 796, 366, 34600, 47010, 366, 198, 220, 220, 220, 4808, 22915, 82, 62, 10379, 268, 1047, 796, 1391, 6, 22915, 31715, 10354, 705, 22915, 31715, 13, 77, 4178, 6, 92, 198, 220, 220, 220, 4808, 445, 1060, 62, 87, 796, 10352, 628, 628, 198, 4871, 3563, 2969, 2538, 32750, 7, 50, 3620, 7594, 21575, 13949, 2599, 628, 220, 220, 220, 37227, 7839, 25, 29328, 378, 7412, 198, 198, 22872, 25, 7066, 20212, 13, 38816, 11242, 3213, 198, 198, 11213, 25, 36965, 18069, 46320, 284, 11844, 378, 262, 5128, 4263, 13, 198, 198, 9641, 25, 657, 13, 16, 13, 15, 48082, 18009, 1166, 25, 352, 29568, 26591, 8, 198, 198, 22897, 341, 12, 6371, 25, 2638, 25, 1378, 2503, 13, 2616, 12, 9383, 13, 2398, 14, 198, 198, 43085, 25, 3740, 1378, 2503, 13, 48825, 6015, 13, 2398, 14, 21370, 77, 14, 1671, 1299, 14, 15580, 7391, 82, 14, 2213, 2954, 14, 34156, 13, 14116, 198, 198, 3642, 2455, 273, 25, 770, 2891, 373, 4166, 416, 2940, 47953, 290, 11753, 347, 735, 3937, 83, 13, 198, 198, 37811, 628, 220, 220, 220, 5128, 62, 16684, 796, 3563, 2969, 2538, 32750, 20560, 22882, 198, 220, 220, 220, 5072, 62, 16684, 796, 3563, 2969, 2538, 32750, 26410, 22882, 198, 220, 220, 220, 4808, 28758, 796, 366, 3563, 2969, 2538, 32750, 366, 198, 220, 220, 220, 4808, 22915, 82, 62, 10379, 268, 1047, 796, 1391, 6, 22915, 31715, 10354, 705, 22915, 31715, 13, 77, 4178, 6, 92, 198, 220, 220, 220, 4808, 445, 1060, 62, 87, 796, 10352, 628, 628, 198, 4871, 17701, 1153, 2025, 271, 46084, 28813, 4241, 5159, 22417, 7, 50, 3620, 7594, 21575, 13949, 2599, 628, 220, 220, 220, 37227, 7839, 25, 17701, 1153, 2025, 271, 404, 1773, 291, 28813, 4241, 22417, 198, 198, 22872, 25, 7066, 20212, 13, 38816, 11242, 3213, 198, 198, 11213, 25, 7412, 2439, 1025, 722, 1262, 17701, 1153, 1052, 271, 46084, 10631, 947, 295, 376, 5329, 198, 198, 3642, 2455, 273, 25, 770, 2891, 373, 4166, 416, 412, 403, 6960, 6502, 416, 30620, 7283, 42, 17934, 198, 198, 37811, 628, 220, 220, 220, 5128, 62, 16684, 796, 17701, 1153, 2025, 271, 46084, 28813, 4241, 5159, 22417, 20560, 22882, 198, 220, 220, 220, 5072, 62, 16684, 796, 17701, 1153, 2025, 271, 46084, 28813, 4241, 5159, 22417, 26410, 22882, 198, 220, 220, 220, 4808, 28758, 796, 366, 17701, 1153, 2025, 271, 46084, 28813, 4241, 5159, 22417, 366, 198, 220, 220, 220, 4808, 22915, 82, 62, 10379, 268, 1047, 796, 1391, 6, 22915, 31715, 10354, 705, 22915, 31715, 13, 77, 4178, 6, 92, 198, 220, 220, 220, 4808, 445, 1060, 62, 87, 796, 10352, 628, 628, 198, 4871, 327, 7737, 37021, 7, 50, 3620, 7594, 21575, 13949, 2599, 628, 220, 220, 220, 37227, 7839, 25, 327, 7737, 13113, 46254, 198, 198, 22872, 25, 7066, 20212, 13, 38816, 11242, 3213, 198, 198, 11213, 25, 3497, 262, 5253, 422, 257, 410, 1140, 417, 284, 262, 16936, 410, 1140, 417, 286, 257, 1813, 10712, 2099, 13, 198, 198, 9641, 25, 657, 13, 16, 13, 15, 12195, 26591, 8, 198, 198, 22897, 341, 12, 6371, 25, 2638, 25, 1378, 2503, 13, 2616, 12, 9383, 13, 2398, 14, 198, 198, 43085, 25, 3740, 1378, 2503, 13, 48825, 6015, 13, 2398, 14, 21370, 77, 14, 1671, 1299, 14, 15580, 7391, 82, 14, 2213, 2954, 14, 34156, 13, 14116, 198, 198, 3642, 2455, 273, 25, 770, 2891, 373, 3194, 416, 13071, 449, 13, 5030, 13, 198, 198, 37811, 628, 220, 220, 220, 5128, 62, 16684, 796, 327, 7737, 37021, 20560, 22882, 198, 220, 220, 220, 5072, 62, 16684, 796, 327, 7737, 37021, 26410, 22882, 198, 220, 220, 220, 4808, 28758, 796, 366, 327, 7737, 37021, 366, 198, 220, 220, 220, 4808, 22915, 82, 62, 10379, 268, 1047, 796, 1391, 6, 22915, 31715, 10354, 705, 22915, 31715, 13, 77, 4178, 6, 92, 198, 220, 220, 220, 4808, 445, 1060, 62, 87, 796, 10352, 198 ]
3.020398
3,922
# coding=utf-8 """ Product Catalog: urls test cases """ from django.test import TestCase from django.urls import reverse from django.urls import resolve from product_catalog.models.product import Product from product_catalog.models.category import Category
[ 2, 19617, 28, 40477, 12, 23, 198, 37811, 8721, 44515, 25, 2956, 7278, 1332, 2663, 37227, 198, 198, 6738, 42625, 14208, 13, 9288, 1330, 6208, 20448, 198, 6738, 42625, 14208, 13, 6371, 82, 1330, 9575, 198, 6738, 42625, 14208, 13, 6371, 82, 1330, 10568, 198, 198, 6738, 1720, 62, 9246, 11794, 13, 27530, 13, 11167, 1330, 8721, 198, 6738, 1720, 62, 9246, 11794, 13, 27530, 13, 22872, 1330, 21743, 628 ]
3.714286
70
#!/usr/bin/env python3 """ Cluster and align the docking domain sequences """ import os import subprocess from Bio import SeqIO from extract_seq import remove_invalid_pro def clustering(info_dict): ''' Cluster the query sequences to 3 classes ''' c_seq = info_dict['c_seq_path'] n_seq = info_dict['n_seq_path'] pro_ls = info_dict['protein_id'] print(f'Clustering sequence...') c_class_seq = cluster_seq(c_seq,'PKSpop/data/hmm_profile/c_groups_hmmpf') n_class_seq = cluster_seq(n_seq,'PKSpop/data/hmm_profile/n_groups_hmmpf') for pro in pro_ls: if pro not in c_class_seq: if not info_dict['end_pro']: info_dict["end_pro"].append(pro) if pro not in n_class_seq: if pro not in info_dict['start_pro']: info_dict["start_pro"].append(pro) ### Check if there are proteins that do not have c and n termini remove_invalid_pro(info_dict) ### Check if there are more than one start/end protein wether_predict(info_dict) c_class1_fl = c_seq.replace('raw.fasta',\ f'class_1.fasta') n_class1_fl = n_seq.replace('raw.fasta',\ f'class_1.fasta') if not os.path.exists(c_class1_fl): raise Exception('There is no c-term class 1 docking domain in\ this assembly line, cannot perform prediction') if not os.path.exists(n_class1_fl): raise Exception('There is no n-term class 1 docking domain in\ this assembly line, cannot perform prediction') with open(c_class1_fl) as c_class1_seq: num_seq_c = len(list(SeqIO.parse(c_class1_seq,'fasta'))) with open(n_class1_fl) as n_class1_seq: num_seq_n = len(list(SeqIO.parse(n_class1_seq,'fasta'))) if num_seq_c != num_seq_c: raise Exception('Unequal number of class 1 c and n docking domain,\ cannot perform the protein order prediction') return info_dict def cluster_seq(query_fl, hmmpf_db): ''' Cluster the query sequences to 3 classes Generate sequence fasta files of of 3 classes ''' hmmscan_out_path = query_fl.replace('raw.fasta',\ 'hmmscan_oupt.txt') ### Run hmmscan to asign each seq to its best match class run_hmmscan(hmmscan_out_path, hmmpf_db, query_fl) group, class_seq = parse_hmmscan_out(hmmscan_out_path) group_seq_fasta(group, query_fl) return class_seq def msa(info_dict): ''' Aligning sequences by HMMER ''' c_seq = info_dict['c_seq_path'] n_seq = info_dict['n_seq_path'] ### Use class1 sequences to perform MSA c_inpt = c_seq.replace('raw.fasta',\ f'class_1.fasta') n_inpt = n_seq.replace('raw.fasta',\ f'class_1.fasta') ### Add a already cut sequence to help locate the cutting position add_position_helper(c_inpt, 'c') add_position_helper(n_inpt, 'n') ### Align sequeces against hmm profile c_align = c_inpt.replace('.fasta','_aln.afa') n_align = n_inpt.replace('.fasta','_aln.afa') print(f'Aligning sequences...') run_hmmalign(c_align, 'PKSpop/data/hmm_profile/c_group_1.hmm', c_inpt) run_hmmalign(n_align, 'PKSpop/data/hmm_profile/n_group_1.hmm', n_inpt) ### Identify the cutting position and cut the sequence c_start, c_end = find_cut_position(c_align) c_cut_fl = cut_seq(c_align, c_start, c_end) n_start, n_end = find_cut_position(n_align) n_cut_fl = cut_seq(n_align, n_start, n_end) info_dict.update({'c_align_path':c_cut_fl, 'n_align_path':n_cut_fl}) return info_dict def cut_seq(aln_fl, start_pos, end_pos): ''' Cut the aligned sequences to obtain the part that used to perform coevolutionary analysis ''' cut_fl = aln_fl.replace('_aln.afa','.afa') cut_seq = open(cut_fl, 'w') aln_seq = open(aln_fl) record = list(SeqIO.parse(aln_seq, 'fasta')) for r in record: if 'positioning' not in r.name: seq = str(r.seq)[start_pos:end_pos] cut_seq.write(f'>{r.name}\n{seq}\n') aln_seq.close() cut_seq.close() return cut_fl def add_position_helper(seq_fl, c_n): ''' Add a already cut sequence to help locate the cutting position ''' pos_seq = open('PKSpop/data/hmm_profile/positioning_helper.fasta') record = list(SeqIO.parse(pos_seq, 'fasta')) with open(seq_fl,'a') as seq: if c_n == 'c': r = record[0] else: r = record[1] seq.write(f'>{r.name}\n{str(r.seq)}\n') pos_seq.close() def find_cut_position(aln_fl): ''' Find the cutting position on the aligned sequences ''' with open(aln_fl) as aln_seq: record = list(SeqIO.parse(aln_seq, 'fasta')) pos_seq = str(record[-1].seq) for i in range(len(pos_seq)): if pos_seq[i].isalpha() and not_alpha_s(pos_seq[:i]): start_pos = i elif pos_seq[i].isalpha() and not_alpha_s(pos_seq[i+1:]): end_pos = i+1 return start_pos, end_pos def not_alpha_s(string): ''' Find wether there is a alpha in a string ''' res = True for s in string: if s.isalpha(): res = False return res def run_hmmalign(aligned_fl, hmmfile, input_fl): ''' Call HMMER multiple sequence alignment against the profile ''' cmd = f'hmmalign -o {aligned_fl} --outformat afa {hmmfile} {input_fl}' subprocess.check_call(cmd.split(' ')) def run_hmmscan(hmmscan_out,hmmfile_db,query_fl): ''' Search query sequences against hmmfile database, to find out which family they belong ''' cmd = f'hmmscan --tblout {hmmscan_out} {hmmfile_db} {query_fl}' subprocess.check_call(cmd.split(' ')) def parse_hmmscan_out(hmmscan_out): ''' Find which group each sequence belong to and Store the group information into a dictionary: {group_name:[sequence_id],} ''' scan = open(hmmscan_out) group = {} class_seq = [] last_seq = '' for line in scan: if not line.startswith('#'): info = line.strip().split(' - ') info = [info[0].strip(),info[1].strip()] class_seq.append(info[1]) if not info[0] in group: group.update({info[0]:[]}) if info[1] != last_seq: group[info[0]].append(info[1]) last_seq = info[1] else: last_seq = info[1] scan.close() return group, class_seq def group_seq_fasta(group, query_fl): ''' Write sequences from a group, which is detected by hmmscan, to a new fasta file ''' query_seq = open(query_fl) record = list(SeqIO.parse(query_seq,'fasta')) for name in group.keys(): out_fl = query_fl.replace('raw.fasta',\ f'class_{name[-1]}.fasta') fasta = open(out_fl,'w') for item in group[name]: for r in record: if r.name == item: fasta.write(f'>{item}\n{str(r.seq)}\n') break fasta.close() query_seq.close() def wether_predict(info_dict): ''' Stop the prediction if there are more than one start/end protein in the assembly line ''' start_pro = info_dict['start_pro'] if len(start_pro) > 1: raise Exception(f'There are more than 1 start protein: \ {",".join(start_pro)}, the protein order cannot be predicted') elif len(start_pro) == 1: info_dict['start_pro'] = start_pro[0] else: info_dict['start_pro'] = '' end_pro = info_dict['end_pro'] if len(end_pro) > 1: raise Exception(f'There are more than 1 end protein: \ {",".join(end_pro)}, the protein order cannot be predicted') elif len(end_pro) == 1: info_dict['end_pro'] = end_pro[0] else: info_dict['end_pro'] = ''
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 198, 37811, 198, 2601, 5819, 290, 10548, 262, 45441, 7386, 16311, 198, 37811, 198, 198, 11748, 28686, 198, 11748, 850, 14681, 220, 198, 6738, 16024, 1330, 1001, 80, 9399, 198, 6738, 7925, 62, 41068, 1330, 4781, 62, 259, 12102, 62, 1676, 198, 198, 4299, 32966, 1586, 7, 10951, 62, 11600, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 38279, 262, 12405, 16311, 284, 513, 6097, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 269, 62, 41068, 796, 7508, 62, 11600, 17816, 66, 62, 41068, 62, 6978, 20520, 198, 220, 220, 220, 299, 62, 41068, 796, 7508, 62, 11600, 17816, 77, 62, 41068, 62, 6978, 20520, 198, 220, 220, 220, 386, 62, 7278, 796, 7508, 62, 11600, 17816, 48693, 62, 312, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 3601, 7, 69, 6, 2601, 436, 1586, 8379, 986, 11537, 198, 220, 220, 220, 269, 62, 4871, 62, 41068, 796, 13946, 62, 41068, 7, 66, 62, 41068, 4032, 40492, 4561, 404, 14, 7890, 14, 71, 3020, 62, 13317, 14, 66, 62, 24432, 62, 71, 3020, 79, 69, 11537, 198, 220, 220, 220, 299, 62, 4871, 62, 41068, 796, 13946, 62, 41068, 7, 77, 62, 41068, 4032, 40492, 4561, 404, 14, 7890, 14, 71, 3020, 62, 13317, 14, 77, 62, 24432, 62, 71, 3020, 79, 69, 11537, 198, 220, 220, 220, 220, 198, 220, 220, 220, 329, 386, 287, 386, 62, 7278, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 386, 407, 287, 269, 62, 4871, 62, 41068, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 7508, 62, 11600, 17816, 437, 62, 1676, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7508, 62, 11600, 14692, 437, 62, 1676, 1, 4083, 33295, 7, 1676, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 611, 386, 407, 287, 299, 62, 4871, 62, 41068, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 386, 407, 287, 7508, 62, 11600, 17816, 9688, 62, 1676, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7508, 62, 11600, 14692, 9688, 62, 1676, 1, 4083, 33295, 7, 1676, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 44386, 6822, 611, 612, 389, 15568, 326, 466, 407, 423, 269, 290, 299, 5651, 72, 198, 220, 220, 220, 4781, 62, 259, 12102, 62, 1676, 7, 10951, 62, 11600, 8, 198, 220, 220, 220, 44386, 6822, 611, 612, 389, 517, 621, 530, 923, 14, 437, 7532, 198, 220, 220, 220, 266, 6750, 62, 79, 17407, 7, 10951, 62, 11600, 8, 628, 220, 220, 220, 269, 62, 4871, 16, 62, 2704, 796, 269, 62, 41068, 13, 33491, 10786, 1831, 13, 7217, 64, 3256, 59, 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, 277, 6, 4871, 62, 16, 13, 7217, 64, 11537, 198, 220, 220, 220, 299, 62, 4871, 16, 62, 2704, 796, 299, 62, 41068, 13, 33491, 10786, 1831, 13, 7217, 64, 3256, 59, 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, 277, 6, 4871, 62, 16, 13, 7217, 64, 11537, 198, 220, 220, 220, 220, 198, 220, 220, 220, 611, 407, 28686, 13, 6978, 13, 1069, 1023, 7, 66, 62, 4871, 16, 62, 2704, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 35528, 10786, 1858, 318, 645, 269, 12, 4354, 1398, 352, 45441, 7386, 287, 59, 198, 220, 220, 220, 220, 220, 220, 220, 428, 10474, 1627, 11, 2314, 1620, 17724, 11537, 198, 220, 220, 220, 611, 407, 28686, 13, 6978, 13, 1069, 1023, 7, 77, 62, 4871, 16, 62, 2704, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 35528, 10786, 1858, 318, 645, 299, 12, 4354, 1398, 352, 45441, 7386, 287, 59, 198, 220, 220, 220, 220, 220, 220, 220, 428, 10474, 1627, 11, 2314, 1620, 17724, 11537, 628, 220, 220, 220, 220, 198, 220, 220, 220, 351, 1280, 7, 66, 62, 4871, 16, 62, 2704, 8, 355, 269, 62, 4871, 16, 62, 41068, 25, 198, 220, 220, 220, 220, 220, 220, 220, 997, 62, 41068, 62, 66, 796, 18896, 7, 4868, 7, 4653, 80, 9399, 13, 29572, 7, 66, 62, 4871, 16, 62, 41068, 4032, 7217, 64, 6, 22305, 198, 220, 220, 220, 351, 1280, 7, 77, 62, 4871, 16, 62, 2704, 8, 355, 299, 62, 4871, 16, 62, 41068, 25, 198, 220, 220, 220, 220, 220, 220, 220, 997, 62, 41068, 62, 77, 796, 18896, 7, 4868, 7, 4653, 80, 9399, 13, 29572, 7, 77, 62, 4871, 16, 62, 41068, 4032, 7217, 64, 6, 22305, 198, 220, 220, 220, 611, 997, 62, 41068, 62, 66, 14512, 997, 62, 41068, 62, 66, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 35528, 10786, 52, 710, 13255, 1271, 286, 1398, 352, 269, 290, 299, 45441, 7386, 11, 59, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2314, 1620, 262, 7532, 1502, 17724, 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, 198, 220, 220, 220, 1441, 7508, 62, 11600, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 4299, 13946, 62, 41068, 7, 22766, 62, 2704, 11, 289, 3020, 79, 69, 62, 9945, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 38279, 262, 12405, 16311, 284, 513, 6097, 198, 220, 220, 220, 2980, 378, 8379, 3049, 64, 3696, 286, 286, 513, 6097, 220, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 289, 76, 907, 5171, 62, 448, 62, 6978, 796, 12405, 62, 2704, 13, 33491, 10786, 1831, 13, 7217, 64, 3256, 59, 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, 705, 23940, 907, 5171, 62, 280, 457, 13, 14116, 11537, 198, 220, 220, 220, 44386, 5660, 289, 76, 907, 5171, 284, 355, 570, 1123, 33756, 284, 663, 1266, 2872, 1398, 198, 220, 220, 220, 1057, 62, 23940, 907, 5171, 7, 23940, 907, 5171, 62, 448, 62, 6978, 11, 289, 3020, 79, 69, 62, 9945, 11, 12405, 62, 2704, 8, 198, 220, 220, 220, 1448, 11, 1398, 62, 41068, 796, 21136, 62, 23940, 907, 5171, 62, 448, 7, 23940, 907, 5171, 62, 448, 62, 6978, 8, 198, 220, 220, 220, 1448, 62, 41068, 62, 7217, 64, 7, 8094, 11, 12405, 62, 2704, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1441, 1398, 62, 41068, 198, 220, 220, 220, 220, 198, 198, 4299, 285, 11400, 7, 10951, 62, 11600, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 978, 38944, 16311, 416, 367, 12038, 1137, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 269, 62, 41068, 796, 7508, 62, 11600, 17816, 66, 62, 41068, 62, 6978, 20520, 198, 220, 220, 220, 299, 62, 41068, 796, 7508, 62, 11600, 17816, 77, 62, 41068, 62, 6978, 20520, 628, 220, 220, 220, 44386, 5765, 1398, 16, 16311, 284, 1620, 337, 4090, 198, 220, 220, 220, 269, 62, 259, 457, 796, 269, 62, 41068, 13, 33491, 10786, 1831, 13, 7217, 64, 3256, 59, 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, 277, 6, 4871, 62, 16, 13, 7217, 64, 11537, 198, 220, 220, 220, 299, 62, 259, 457, 796, 299, 62, 41068, 13, 33491, 10786, 1831, 13, 7217, 64, 3256, 59, 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, 277, 6, 4871, 62, 16, 13, 7217, 64, 11537, 198, 220, 220, 220, 44386, 3060, 257, 1541, 2005, 8379, 284, 1037, 17276, 262, 7720, 2292, 220, 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, 751, 62, 9150, 62, 2978, 525, 7, 66, 62, 259, 457, 11, 705, 66, 11537, 198, 220, 220, 220, 751, 62, 9150, 62, 2978, 525, 7, 77, 62, 259, 457, 11, 705, 77, 11537, 198, 220, 220, 220, 44386, 978, 570, 4726, 721, 274, 1028, 289, 3020, 7034, 220, 220, 220, 220, 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, 269, 62, 31494, 796, 269, 62, 259, 457, 13, 33491, 7, 4458, 7217, 64, 41707, 62, 282, 77, 13, 28485, 11537, 198, 220, 220, 220, 299, 62, 31494, 796, 299, 62, 259, 457, 13, 33491, 7, 4458, 7217, 64, 41707, 62, 282, 77, 13, 28485, 11537, 198, 220, 220, 220, 3601, 7, 69, 6, 2348, 38944, 16311, 986, 11537, 198, 220, 220, 220, 1057, 62, 71, 3020, 31494, 7, 66, 62, 31494, 11, 705, 40492, 4561, 404, 14, 7890, 14, 71, 3020, 62, 13317, 14, 66, 62, 8094, 62, 16, 13, 71, 3020, 3256, 269, 62, 259, 457, 8, 198, 220, 220, 220, 1057, 62, 71, 3020, 31494, 7, 77, 62, 31494, 11, 705, 40492, 4561, 404, 14, 7890, 14, 71, 3020, 62, 13317, 14, 77, 62, 8094, 62, 16, 13, 71, 3020, 3256, 299, 62, 259, 457, 8, 198, 220, 220, 220, 44386, 11440, 1958, 262, 7720, 2292, 290, 2005, 262, 8379, 198, 220, 220, 220, 269, 62, 9688, 11, 269, 62, 437, 796, 1064, 62, 8968, 62, 9150, 7, 66, 62, 31494, 8, 198, 220, 220, 220, 269, 62, 8968, 62, 2704, 796, 2005, 62, 41068, 7, 66, 62, 31494, 11, 269, 62, 9688, 11, 269, 62, 437, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 299, 62, 9688, 11, 299, 62, 437, 796, 1064, 62, 8968, 62, 9150, 7, 77, 62, 31494, 8, 198, 220, 220, 220, 299, 62, 8968, 62, 2704, 796, 2005, 62, 41068, 7, 77, 62, 31494, 11, 299, 62, 9688, 11, 299, 62, 437, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 7508, 62, 11600, 13, 19119, 15090, 6, 66, 62, 31494, 62, 6978, 10354, 66, 62, 8968, 62, 2704, 11, 705, 77, 62, 31494, 62, 6978, 10354, 77, 62, 8968, 62, 2704, 30072, 198, 220, 220, 220, 1441, 7508, 62, 11600, 198, 198, 4299, 2005, 62, 41068, 7, 282, 77, 62, 2704, 11, 923, 62, 1930, 11, 886, 62, 1930, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 9712, 262, 19874, 16311, 284, 7330, 262, 636, 326, 973, 284, 1620, 220, 198, 220, 220, 220, 763, 1990, 2122, 560, 3781, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 2005, 62, 2704, 796, 435, 77, 62, 2704, 13, 33491, 10786, 62, 282, 77, 13, 28485, 3256, 4458, 28485, 11537, 198, 220, 220, 220, 2005, 62, 41068, 796, 1280, 7, 8968, 62, 2704, 11, 705, 86, 11537, 198, 220, 220, 220, 435, 77, 62, 41068, 796, 1280, 7, 282, 77, 62, 2704, 8, 198, 220, 220, 220, 1700, 796, 1351, 7, 4653, 80, 9399, 13, 29572, 7, 282, 77, 62, 41068, 11, 705, 7217, 64, 6, 4008, 198, 220, 220, 220, 329, 374, 287, 1700, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 9150, 278, 6, 407, 287, 374, 13, 3672, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 33756, 796, 965, 7, 81, 13, 41068, 38381, 9688, 62, 1930, 25, 437, 62, 1930, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2005, 62, 41068, 13, 13564, 7, 69, 44167, 90, 81, 13, 3672, 32239, 77, 90, 41068, 32239, 77, 11537, 198, 220, 220, 220, 435, 77, 62, 41068, 13, 19836, 3419, 198, 220, 220, 220, 2005, 62, 41068, 13, 19836, 3419, 198, 220, 220, 220, 1441, 2005, 62, 2704, 198, 220, 220, 220, 220, 198, 4299, 751, 62, 9150, 62, 2978, 525, 7, 41068, 62, 2704, 11, 269, 62, 77, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 3060, 257, 1541, 2005, 8379, 284, 1037, 17276, 262, 7720, 2292, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 1426, 62, 41068, 796, 1280, 10786, 40492, 4561, 404, 14, 7890, 14, 71, 3020, 62, 13317, 14, 9150, 278, 62, 2978, 525, 13, 7217, 64, 11537, 198, 220, 220, 220, 1700, 796, 1351, 7, 4653, 80, 9399, 13, 29572, 7, 1930, 62, 41068, 11, 705, 7217, 64, 6, 4008, 198, 220, 220, 220, 351, 1280, 7, 41068, 62, 2704, 4032, 64, 11537, 355, 33756, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 269, 62, 77, 6624, 705, 66, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 796, 1700, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 796, 1700, 58, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 33756, 13, 13564, 7, 69, 44167, 90, 81, 13, 3672, 32239, 77, 90, 2536, 7, 81, 13, 41068, 8, 32239, 77, 11537, 198, 220, 220, 220, 1426, 62, 41068, 13, 19836, 3419, 198, 220, 220, 220, 220, 198, 4299, 1064, 62, 8968, 62, 9150, 7, 282, 77, 62, 2704, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 9938, 262, 7720, 2292, 319, 262, 19874, 16311, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 351, 1280, 7, 282, 77, 62, 2704, 8, 355, 435, 77, 62, 41068, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1700, 796, 1351, 7, 4653, 80, 9399, 13, 29572, 7, 282, 77, 62, 41068, 11, 705, 7217, 64, 6, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1426, 62, 41068, 796, 965, 7, 22105, 58, 12, 16, 4083, 41068, 8, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 11925, 7, 1930, 62, 41068, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1426, 62, 41068, 58, 72, 4083, 271, 26591, 3419, 290, 407, 62, 26591, 62, 82, 7, 1930, 62, 41068, 58, 25, 72, 60, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 923, 62, 1930, 796, 1312, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1426, 62, 41068, 58, 72, 4083, 271, 26591, 3419, 290, 407, 62, 26591, 62, 82, 7, 1930, 62, 41068, 58, 72, 10, 16, 47715, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 886, 62, 1930, 796, 1312, 10, 16, 198, 220, 220, 220, 1441, 923, 62, 1930, 11, 886, 62, 1930, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 4299, 407, 62, 26591, 62, 82, 7, 8841, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 9938, 266, 6750, 612, 318, 257, 17130, 287, 257, 4731, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 581, 796, 6407, 198, 220, 220, 220, 329, 264, 287, 4731, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 264, 13, 271, 26591, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 581, 796, 10352, 198, 220, 220, 220, 1441, 581, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 4299, 1057, 62, 71, 3020, 31494, 7, 41634, 62, 2704, 11, 289, 3020, 7753, 11, 5128, 62, 2704, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 4889, 367, 12038, 1137, 198, 220, 220, 220, 3294, 8379, 19114, 1028, 262, 7034, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 23991, 796, 277, 6, 71, 3020, 31494, 532, 78, 1391, 41634, 62, 2704, 92, 1377, 448, 18982, 6580, 64, 1391, 71, 3020, 7753, 92, 1391, 15414, 62, 2704, 92, 6, 198, 220, 220, 220, 850, 14681, 13, 9122, 62, 13345, 7, 28758, 13, 35312, 10786, 705, 4008, 198, 198, 4299, 1057, 62, 23940, 907, 5171, 7, 23940, 907, 5171, 62, 448, 11, 71, 3020, 7753, 62, 9945, 11, 22766, 62, 2704, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 11140, 12405, 16311, 1028, 289, 3020, 7753, 6831, 11, 220, 198, 220, 220, 220, 284, 1064, 503, 543, 1641, 484, 5594, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 23991, 796, 277, 6, 23940, 907, 5171, 1377, 83, 2436, 448, 1391, 23940, 907, 5171, 62, 448, 92, 1391, 71, 3020, 7753, 62, 9945, 92, 1391, 22766, 62, 2704, 92, 6, 198, 220, 220, 220, 850, 14681, 13, 9122, 62, 13345, 7, 28758, 13, 35312, 10786, 705, 4008, 198, 220, 220, 220, 220, 198, 4299, 21136, 62, 23940, 907, 5171, 62, 448, 7, 23940, 907, 5171, 62, 448, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 9938, 543, 1448, 1123, 8379, 5594, 284, 290, 198, 220, 220, 220, 9363, 262, 1448, 1321, 656, 257, 22155, 25, 1391, 8094, 62, 3672, 33250, 43167, 62, 312, 4357, 92, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 9367, 796, 1280, 7, 23940, 907, 5171, 62, 448, 8, 198, 220, 220, 220, 1448, 796, 23884, 198, 220, 220, 220, 1398, 62, 41068, 796, 17635, 198, 220, 220, 220, 938, 62, 41068, 796, 10148, 198, 220, 220, 220, 329, 1627, 287, 9367, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 1627, 13, 9688, 2032, 342, 10786, 2, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7508, 796, 1627, 13, 36311, 22446, 35312, 10786, 532, 705, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7508, 796, 685, 10951, 58, 15, 4083, 36311, 22784, 10951, 58, 16, 4083, 36311, 3419, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1398, 62, 41068, 13, 33295, 7, 10951, 58, 16, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 7508, 58, 15, 60, 287, 1448, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1448, 13, 19119, 15090, 10951, 58, 15, 5974, 21737, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 7508, 58, 16, 60, 14512, 938, 62, 41068, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1448, 58, 10951, 58, 15, 60, 4083, 33295, 7, 10951, 58, 16, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 938, 62, 41068, 796, 7508, 58, 16, 60, 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, 938, 62, 41068, 796, 7508, 58, 16, 60, 198, 220, 220, 220, 9367, 13, 19836, 3419, 198, 220, 220, 220, 1441, 1448, 11, 1398, 62, 41068, 198, 220, 220, 220, 220, 198, 4299, 1448, 62, 41068, 62, 7217, 64, 7, 8094, 11, 12405, 62, 2704, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 19430, 16311, 422, 257, 1448, 11, 543, 318, 12326, 416, 289, 76, 907, 5171, 11, 220, 198, 220, 220, 220, 284, 257, 649, 3049, 64, 2393, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 12405, 62, 41068, 796, 1280, 7, 22766, 62, 2704, 8, 198, 220, 220, 220, 1700, 796, 1351, 7, 4653, 80, 9399, 13, 29572, 7, 22766, 62, 41068, 4032, 7217, 64, 6, 4008, 198, 220, 220, 220, 329, 1438, 287, 1448, 13, 13083, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 503, 62, 2704, 796, 12405, 62, 2704, 13, 33491, 10786, 1831, 13, 7217, 64, 3256, 59, 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, 277, 6, 4871, 23330, 3672, 58, 12, 16, 60, 27422, 7217, 64, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 3049, 64, 796, 1280, 7, 448, 62, 2704, 4032, 86, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 329, 2378, 287, 1448, 58, 3672, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 374, 287, 1700, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 374, 13, 3672, 6624, 2378, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3049, 64, 13, 13564, 7, 69, 44167, 90, 9186, 32239, 77, 90, 2536, 7, 81, 13, 41068, 8, 32239, 77, 11537, 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, 3049, 64, 13, 19836, 3419, 198, 220, 220, 220, 12405, 62, 41068, 13, 19836, 3419, 198, 198, 4299, 266, 6750, 62, 79, 17407, 7, 10951, 62, 11600, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 13707, 262, 17724, 611, 612, 389, 517, 621, 530, 923, 14, 437, 7532, 287, 198, 220, 220, 220, 262, 10474, 1627, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 923, 62, 1676, 796, 7508, 62, 11600, 17816, 9688, 62, 1676, 20520, 198, 220, 220, 220, 611, 18896, 7, 9688, 62, 1676, 8, 1875, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 35528, 7, 69, 6, 1858, 389, 517, 621, 352, 923, 7532, 25, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 2430, 13, 22179, 7, 9688, 62, 1676, 8, 5512, 262, 7532, 1502, 2314, 307, 11001, 11537, 198, 220, 220, 220, 1288, 361, 18896, 7, 9688, 62, 1676, 8, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 7508, 62, 11600, 17816, 9688, 62, 1676, 20520, 796, 923, 62, 1676, 58, 15, 60, 198, 220, 220, 220, 2073, 25, 220, 198, 220, 220, 220, 220, 220, 220, 220, 7508, 62, 11600, 17816, 9688, 62, 1676, 20520, 796, 10148, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 886, 62, 1676, 796, 7508, 62, 11600, 17816, 437, 62, 1676, 20520, 198, 220, 220, 220, 611, 18896, 7, 437, 62, 1676, 8, 1875, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 35528, 7, 69, 6, 1858, 389, 517, 621, 352, 886, 7532, 25, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 2430, 13, 22179, 7, 437, 62, 1676, 8, 5512, 262, 7532, 1502, 2314, 307, 11001, 11537, 198, 220, 220, 220, 1288, 361, 18896, 7, 437, 62, 1676, 8, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 7508, 62, 11600, 17816, 437, 62, 1676, 20520, 796, 886, 62, 1676, 58, 15, 60, 198, 220, 220, 220, 2073, 25, 220, 198, 220, 220, 220, 220, 220, 220, 220, 7508, 62, 11600, 17816, 437, 62, 1676, 20520, 796, 10148, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198 ]
2.059829
3,978
import sys from examples.auth import authorization from socrata import Socrata socrata = Socrata(authorization) file_path = sys.argv[1] """ This shows reprojecting from British National Grid to WGS84 We're using the proj4 def from here: http://spatialreference.org/ref/epsg/27700/ """ with open(file_path, 'rb') as file: (revision, output_schema) = socrata.create( name = "parking structures", description = "cool" ).csv(file) (ok, output_schema) = output_schema\ .add_column( 'point_wgs84', 'Location', """ reproject_to_wgs84( set_projection( make_point( to_number(`northing`), to_number(`easting`) ), "+proj=tmerc +lat_0=49 +lon_0=-2 +k=0.9996012717 +x_0=400000 +y_0=-100000 +ellps=airy +datum=OSGB36 +units=m +no_defs" ) ) """, 'the easting/northing as wgs84 point' )\ .run() revision.apply(output_schema = output_schema) revision.open_in_browser()
[ 11748, 25064, 198, 6738, 6096, 13, 18439, 1330, 19601, 198, 6738, 1307, 81, 1045, 1330, 311, 1696, 1045, 198, 198, 82, 1696, 1045, 796, 311, 1696, 1045, 7, 9800, 1634, 8, 198, 198, 7753, 62, 6978, 796, 25064, 13, 853, 85, 58, 16, 60, 198, 198, 37811, 198, 1212, 2523, 43969, 752, 278, 422, 3517, 2351, 24846, 198, 1462, 370, 14313, 5705, 198, 198, 1135, 821, 1262, 262, 386, 73, 19, 825, 422, 994, 25, 198, 4023, 1378, 2777, 34961, 35790, 13, 2398, 14, 5420, 14, 25386, 70, 14, 1983, 9879, 14, 198, 37811, 198, 198, 4480, 1280, 7, 7753, 62, 6978, 11, 705, 26145, 11537, 355, 2393, 25, 198, 220, 220, 220, 357, 260, 10178, 11, 5072, 62, 15952, 2611, 8, 796, 1307, 81, 1045, 13, 17953, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 796, 366, 20928, 278, 8573, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 6764, 796, 366, 24494, 1, 198, 220, 220, 220, 6739, 40664, 7, 7753, 8, 628, 198, 220, 220, 220, 357, 482, 11, 5072, 62, 15952, 2611, 8, 796, 5072, 62, 15952, 2611, 59, 198, 220, 220, 220, 220, 220, 220, 220, 764, 2860, 62, 28665, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 4122, 62, 86, 14542, 5705, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 14749, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 43969, 752, 62, 1462, 62, 86, 14542, 5705, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 900, 62, 16302, 295, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 787, 62, 4122, 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, 284, 62, 17618, 7, 63, 13099, 1197, 63, 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, 284, 62, 17618, 7, 63, 68, 9222, 63, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 43825, 1676, 73, 28, 83, 647, 66, 1343, 15460, 62, 15, 28, 2920, 1343, 14995, 62, 15, 10779, 17, 1343, 74, 28, 15, 13, 2079, 4846, 486, 1983, 1558, 1343, 87, 62, 15, 28, 7029, 830, 1343, 88, 62, 15, 10779, 3064, 830, 1343, 695, 862, 28, 13021, 1343, 19608, 388, 28, 2640, 4579, 2623, 1343, 41667, 28, 76, 1343, 3919, 62, 4299, 82, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 1169, 7627, 278, 14, 13099, 1197, 355, 266, 14542, 5705, 966, 6, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 59, 198, 220, 220, 220, 220, 220, 220, 220, 764, 5143, 3419, 628, 220, 220, 220, 18440, 13, 39014, 7, 22915, 62, 15952, 2611, 796, 5072, 62, 15952, 2611, 8, 198, 220, 220, 220, 18440, 13, 9654, 62, 259, 62, 40259, 3419, 628 ]
1.897351
604
# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: yandex/cloud/mdb/greenplum/v1/resource_preset.proto """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as _reflection from google.protobuf import symbol_database as _symbol_database # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() DESCRIPTOR = _descriptor.FileDescriptor( name='yandex/cloud/mdb/greenplum/v1/resource_preset.proto', package='yandex.cloud.mdb.greenplum.v1', syntax='proto3', serialized_options=b'\n!yandex.cloud.api.mdb.greenplum.v1ZKgithub.com/yandex-cloud/go-genproto/yandex/cloud/mdb/greenplum/v1;greenplum', create_key=_descriptor._internal_create_key, serialized_pb=b'\n3yandex/cloud/mdb/greenplum/v1/resource_preset.proto\x12\x1dyandex.cloud.mdb.greenplum.v1\"\xb5\x02\n\x0eResourcePreset\x12\n\n\x02id\x18\x01 \x01(\t\x12\x10\n\x08zone_ids\x18\x02 \x03(\t\x12\r\n\x05\x63ores\x18\x03 \x01(\x03\x12\x0e\n\x06memory\x18\x04 \x01(\x03\x12@\n\x04type\x18\x05 \x01(\x0e\x32\x32.yandex.cloud.mdb.greenplum.v1.ResourcePreset.Type\x12\x16\n\x0emin_host_count\x18\x06 \x01(\x03\x12\x16\n\x0emax_host_count\x18\x07 \x01(\x03\x12\x1a\n\x12host_count_divider\x18\x08 \x01(\x03\x12!\n\x19max_segment_in_host_count\x18\t \x01(\x03\"5\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\n\n\x06MASTER\x10\x01\x12\x0b\n\x07SEGMENT\x10\x02\x42p\n!yandex.cloud.api.mdb.greenplum.v1ZKgithub.com/yandex-cloud/go-genproto/yandex/cloud/mdb/greenplum/v1;greenplumb\x06proto3' ) _RESOURCEPRESET_TYPE = _descriptor.EnumDescriptor( name='Type', full_name='yandex.cloud.mdb.greenplum.v1.ResourcePreset.Type', filename=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key, values=[ _descriptor.EnumValueDescriptor( name='TYPE_UNSPECIFIED', index=0, number=0, serialized_options=None, type=None, create_key=_descriptor._internal_create_key), _descriptor.EnumValueDescriptor( name='MASTER', index=1, number=1, serialized_options=None, type=None, create_key=_descriptor._internal_create_key), _descriptor.EnumValueDescriptor( name='SEGMENT', index=2, number=2, serialized_options=None, type=None, create_key=_descriptor._internal_create_key), ], containing_type=None, serialized_options=None, serialized_start=343, serialized_end=396, ) _sym_db.RegisterEnumDescriptor(_RESOURCEPRESET_TYPE) _RESOURCEPRESET = _descriptor.Descriptor( name='ResourcePreset', full_name='yandex.cloud.mdb.greenplum.v1.ResourcePreset', filename=None, file=DESCRIPTOR, containing_type=None, create_key=_descriptor._internal_create_key, fields=[ _descriptor.FieldDescriptor( name='id', full_name='yandex.cloud.mdb.greenplum.v1.ResourcePreset.id', index=0, number=1, type=9, cpp_type=9, label=1, has_default_value=False, default_value=b"".decode('utf-8'), message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key), _descriptor.FieldDescriptor( name='zone_ids', full_name='yandex.cloud.mdb.greenplum.v1.ResourcePreset.zone_ids', index=1, number=2, type=9, cpp_type=9, label=3, has_default_value=False, default_value=[], message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key), _descriptor.FieldDescriptor( name='cores', full_name='yandex.cloud.mdb.greenplum.v1.ResourcePreset.cores', index=2, number=3, type=3, cpp_type=2, label=1, has_default_value=False, default_value=0, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key), _descriptor.FieldDescriptor( name='memory', full_name='yandex.cloud.mdb.greenplum.v1.ResourcePreset.memory', index=3, number=4, type=3, cpp_type=2, label=1, has_default_value=False, default_value=0, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key), _descriptor.FieldDescriptor( name='type', full_name='yandex.cloud.mdb.greenplum.v1.ResourcePreset.type', index=4, number=5, type=14, cpp_type=8, label=1, has_default_value=False, default_value=0, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key), _descriptor.FieldDescriptor( name='min_host_count', full_name='yandex.cloud.mdb.greenplum.v1.ResourcePreset.min_host_count', index=5, number=6, type=3, cpp_type=2, label=1, has_default_value=False, default_value=0, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key), _descriptor.FieldDescriptor( name='max_host_count', full_name='yandex.cloud.mdb.greenplum.v1.ResourcePreset.max_host_count', index=6, number=7, type=3, cpp_type=2, label=1, has_default_value=False, default_value=0, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key), _descriptor.FieldDescriptor( name='host_count_divider', full_name='yandex.cloud.mdb.greenplum.v1.ResourcePreset.host_count_divider', index=7, number=8, type=3, cpp_type=2, label=1, has_default_value=False, default_value=0, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key), _descriptor.FieldDescriptor( name='max_segment_in_host_count', full_name='yandex.cloud.mdb.greenplum.v1.ResourcePreset.max_segment_in_host_count', index=8, number=9, type=3, cpp_type=2, label=1, has_default_value=False, default_value=0, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key), ], extensions=[ ], nested_types=[], enum_types=[ _RESOURCEPRESET_TYPE, ], serialized_options=None, is_extendable=False, syntax='proto3', extension_ranges=[], oneofs=[ ], serialized_start=87, serialized_end=396, ) _RESOURCEPRESET.fields_by_name['type'].enum_type = _RESOURCEPRESET_TYPE _RESOURCEPRESET_TYPE.containing_type = _RESOURCEPRESET DESCRIPTOR.message_types_by_name['ResourcePreset'] = _RESOURCEPRESET _sym_db.RegisterFileDescriptor(DESCRIPTOR) ResourcePreset = _reflection.GeneratedProtocolMessageType('ResourcePreset', (_message.Message,), { 'DESCRIPTOR' : _RESOURCEPRESET, '__module__' : 'yandex.cloud.mdb.greenplum.v1.resource_preset_pb2' # @@protoc_insertion_point(class_scope:yandex.cloud.mdb.greenplum.v1.ResourcePreset) }) _sym_db.RegisterMessage(ResourcePreset) DESCRIPTOR._options = None # @@protoc_insertion_point(module_scope)
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 2, 2980, 515, 416, 262, 8435, 11876, 17050, 13, 220, 8410, 5626, 48483, 0, 198, 2, 2723, 25, 331, 392, 1069, 14, 17721, 14, 9132, 65, 14, 14809, 489, 388, 14, 85, 16, 14, 31092, 62, 18302, 316, 13, 1676, 1462, 198, 37811, 8645, 515, 8435, 11876, 2438, 526, 15931, 198, 6738, 23645, 13, 11235, 672, 3046, 1330, 43087, 355, 4808, 20147, 1968, 273, 198, 6738, 23645, 13, 11235, 672, 3046, 1330, 3275, 355, 4808, 20500, 198, 6738, 23645, 13, 11235, 672, 3046, 1330, 14580, 355, 4808, 5420, 1564, 198, 6738, 23645, 13, 11235, 672, 3046, 1330, 6194, 62, 48806, 355, 4808, 1837, 23650, 62, 48806, 198, 2, 25248, 11235, 420, 62, 28463, 295, 62, 4122, 7, 320, 3742, 8, 198, 198, 62, 37047, 62, 9945, 796, 4808, 1837, 23650, 62, 48806, 13, 19463, 3419, 628, 628, 198, 30910, 36584, 32961, 796, 4808, 20147, 1968, 273, 13, 8979, 24564, 1968, 273, 7, 198, 220, 1438, 11639, 88, 392, 1069, 14, 17721, 14, 9132, 65, 14, 14809, 489, 388, 14, 85, 16, 14, 31092, 62, 18302, 316, 13, 1676, 1462, 3256, 198, 220, 5301, 11639, 88, 392, 1069, 13, 17721, 13, 9132, 65, 13, 14809, 489, 388, 13, 85, 16, 3256, 198, 220, 15582, 11639, 1676, 1462, 18, 3256, 198, 220, 11389, 1143, 62, 25811, 28, 65, 6, 59, 77, 0, 88, 392, 1069, 13, 17721, 13, 15042, 13, 9132, 65, 13, 14809, 489, 388, 13, 85, 16, 57, 42, 12567, 13, 785, 14, 88, 392, 1069, 12, 17721, 14, 2188, 12, 5235, 1676, 1462, 14, 88, 392, 1069, 14, 17721, 14, 9132, 65, 14, 14809, 489, 388, 14, 85, 16, 26, 14809, 489, 388, 3256, 198, 220, 2251, 62, 2539, 28, 62, 20147, 1968, 273, 13557, 32538, 62, 17953, 62, 2539, 11, 198, 220, 11389, 1143, 62, 40842, 28, 65, 6, 59, 77, 18, 88, 392, 1069, 14, 17721, 14, 9132, 65, 14, 14809, 489, 388, 14, 85, 16, 14, 31092, 62, 18302, 316, 13, 1676, 1462, 59, 87, 1065, 59, 87, 16, 9892, 392, 1069, 13, 17721, 13, 9132, 65, 13, 14809, 489, 388, 13, 85, 16, 7879, 59, 30894, 20, 59, 87, 2999, 59, 77, 59, 87, 15, 68, 26198, 25460, 316, 59, 87, 1065, 59, 77, 59, 77, 59, 87, 2999, 312, 59, 87, 1507, 59, 87, 486, 3467, 87, 486, 38016, 83, 59, 87, 1065, 59, 87, 940, 59, 77, 59, 87, 2919, 11340, 62, 2340, 59, 87, 1507, 59, 87, 2999, 3467, 87, 3070, 38016, 83, 59, 87, 1065, 59, 81, 59, 77, 59, 87, 2713, 59, 87, 5066, 2850, 59, 87, 1507, 59, 87, 3070, 3467, 87, 486, 38016, 87, 3070, 59, 87, 1065, 59, 87, 15, 68, 59, 77, 59, 87, 3312, 31673, 59, 87, 1507, 59, 87, 3023, 3467, 87, 486, 38016, 87, 3070, 59, 87, 1065, 31, 59, 77, 59, 87, 3023, 4906, 59, 87, 1507, 59, 87, 2713, 3467, 87, 486, 38016, 87, 15, 68, 59, 87, 2624, 59, 87, 2624, 13, 88, 392, 1069, 13, 17721, 13, 9132, 65, 13, 14809, 489, 388, 13, 85, 16, 13, 26198, 25460, 316, 13, 6030, 59, 87, 1065, 59, 87, 1433, 59, 77, 59, 87, 15, 14857, 62, 4774, 62, 9127, 59, 87, 1507, 59, 87, 3312, 3467, 87, 486, 38016, 87, 3070, 59, 87, 1065, 59, 87, 1433, 59, 77, 59, 87, 15, 368, 897, 62, 4774, 62, 9127, 59, 87, 1507, 59, 87, 2998, 3467, 87, 486, 38016, 87, 3070, 59, 87, 1065, 59, 87, 16, 64, 59, 77, 59, 87, 1065, 4774, 62, 9127, 62, 7146, 1304, 59, 87, 1507, 59, 87, 2919, 3467, 87, 486, 38016, 87, 3070, 59, 87, 1065, 0, 59, 77, 59, 87, 1129, 9806, 62, 325, 5154, 62, 259, 62, 4774, 62, 9127, 59, 87, 1507, 59, 83, 3467, 87, 486, 38016, 87, 3070, 7879, 20, 59, 77, 59, 87, 3023, 6030, 59, 87, 1065, 59, 87, 1415, 59, 77, 59, 87, 940, 25216, 62, 4944, 48451, 28343, 59, 87, 940, 59, 87, 405, 59, 87, 1065, 59, 77, 59, 77, 59, 87, 3312, 31180, 5781, 59, 87, 940, 59, 87, 486, 59, 87, 1065, 59, 87, 15, 65, 59, 77, 59, 87, 2998, 5188, 38, 10979, 59, 87, 940, 59, 87, 2999, 59, 87, 3682, 79, 59, 77, 0, 88, 392, 1069, 13, 17721, 13, 15042, 13, 9132, 65, 13, 14809, 489, 388, 13, 85, 16, 57, 42, 12567, 13, 785, 14, 88, 392, 1069, 12, 17721, 14, 2188, 12, 5235, 1676, 1462, 14, 88, 392, 1069, 14, 17721, 14, 9132, 65, 14, 14809, 489, 388, 14, 85, 16, 26, 14809, 489, 2178, 59, 87, 3312, 1676, 1462, 18, 6, 198, 8, 628, 198, 198, 62, 19535, 31033, 48296, 2767, 62, 25216, 796, 4808, 20147, 1968, 273, 13, 4834, 388, 24564, 1968, 273, 7, 198, 220, 1438, 11639, 6030, 3256, 198, 220, 1336, 62, 3672, 11639, 88, 392, 1069, 13, 17721, 13, 9132, 65, 13, 14809, 489, 388, 13, 85, 16, 13, 26198, 25460, 316, 13, 6030, 3256, 198, 220, 29472, 28, 14202, 11, 198, 220, 2393, 28, 30910, 36584, 32961, 11, 198, 220, 2251, 62, 2539, 28, 62, 20147, 1968, 273, 13557, 32538, 62, 17953, 62, 2539, 11, 198, 220, 3815, 41888, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 4834, 388, 11395, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 25216, 62, 4944, 48451, 28343, 3256, 6376, 28, 15, 11, 1271, 28, 15, 11, 198, 220, 220, 220, 220, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 2099, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 2251, 62, 2539, 28, 62, 20147, 1968, 273, 13557, 32538, 62, 17953, 62, 2539, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 4834, 388, 11395, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 31180, 5781, 3256, 6376, 28, 16, 11, 1271, 28, 16, 11, 198, 220, 220, 220, 220, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 2099, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 2251, 62, 2539, 28, 62, 20147, 1968, 273, 13557, 32538, 62, 17953, 62, 2539, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 4834, 388, 11395, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 5188, 38, 10979, 3256, 6376, 28, 17, 11, 1271, 28, 17, 11, 198, 220, 220, 220, 220, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 2099, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 2251, 62, 2539, 28, 62, 20147, 1968, 273, 13557, 32538, 62, 17953, 62, 2539, 828, 198, 220, 16589, 198, 220, 7268, 62, 4906, 28, 14202, 11, 198, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 198, 220, 11389, 1143, 62, 9688, 28, 32118, 11, 198, 220, 11389, 1143, 62, 437, 28, 34107, 11, 198, 8, 198, 62, 37047, 62, 9945, 13, 38804, 4834, 388, 24564, 1968, 273, 28264, 19535, 31033, 48296, 2767, 62, 25216, 8, 628, 198, 62, 19535, 31033, 48296, 2767, 796, 4808, 20147, 1968, 273, 13, 24564, 1968, 273, 7, 198, 220, 1438, 11639, 26198, 25460, 316, 3256, 198, 220, 1336, 62, 3672, 11639, 88, 392, 1069, 13, 17721, 13, 9132, 65, 13, 14809, 489, 388, 13, 85, 16, 13, 26198, 25460, 316, 3256, 198, 220, 29472, 28, 14202, 11, 198, 220, 2393, 28, 30910, 36584, 32961, 11, 198, 220, 7268, 62, 4906, 28, 14202, 11, 198, 220, 2251, 62, 2539, 28, 62, 20147, 1968, 273, 13557, 32538, 62, 17953, 62, 2539, 11, 198, 220, 7032, 41888, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 312, 3256, 1336, 62, 3672, 11639, 88, 392, 1069, 13, 17721, 13, 9132, 65, 13, 14809, 489, 388, 13, 85, 16, 13, 26198, 25460, 316, 13, 312, 3256, 6376, 28, 15, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 16, 11, 2099, 28, 24, 11, 269, 381, 62, 4906, 28, 24, 11, 6167, 28, 16, 11, 198, 220, 220, 220, 220, 220, 468, 62, 12286, 62, 8367, 28, 25101, 11, 4277, 62, 8367, 28, 65, 1, 1911, 12501, 1098, 10786, 40477, 12, 23, 33809, 198, 220, 220, 220, 220, 220, 3275, 62, 4906, 28, 14202, 11, 33829, 62, 4906, 28, 14202, 11, 7268, 62, 4906, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 318, 62, 2302, 3004, 28, 25101, 11, 7552, 62, 29982, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 2393, 28, 30910, 36584, 32961, 11, 220, 2251, 62, 2539, 28, 62, 20147, 1968, 273, 13557, 32538, 62, 17953, 62, 2539, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 11340, 62, 2340, 3256, 1336, 62, 3672, 11639, 88, 392, 1069, 13, 17721, 13, 9132, 65, 13, 14809, 489, 388, 13, 85, 16, 13, 26198, 25460, 316, 13, 11340, 62, 2340, 3256, 6376, 28, 16, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 17, 11, 2099, 28, 24, 11, 269, 381, 62, 4906, 28, 24, 11, 6167, 28, 18, 11, 198, 220, 220, 220, 220, 220, 468, 62, 12286, 62, 8367, 28, 25101, 11, 4277, 62, 8367, 41888, 4357, 198, 220, 220, 220, 220, 220, 3275, 62, 4906, 28, 14202, 11, 33829, 62, 4906, 28, 14202, 11, 7268, 62, 4906, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 318, 62, 2302, 3004, 28, 25101, 11, 7552, 62, 29982, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 2393, 28, 30910, 36584, 32961, 11, 220, 2251, 62, 2539, 28, 62, 20147, 1968, 273, 13557, 32538, 62, 17953, 62, 2539, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 66, 2850, 3256, 1336, 62, 3672, 11639, 88, 392, 1069, 13, 17721, 13, 9132, 65, 13, 14809, 489, 388, 13, 85, 16, 13, 26198, 25460, 316, 13, 66, 2850, 3256, 6376, 28, 17, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 18, 11, 2099, 28, 18, 11, 269, 381, 62, 4906, 28, 17, 11, 6167, 28, 16, 11, 198, 220, 220, 220, 220, 220, 468, 62, 12286, 62, 8367, 28, 25101, 11, 4277, 62, 8367, 28, 15, 11, 198, 220, 220, 220, 220, 220, 3275, 62, 4906, 28, 14202, 11, 33829, 62, 4906, 28, 14202, 11, 7268, 62, 4906, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 318, 62, 2302, 3004, 28, 25101, 11, 7552, 62, 29982, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 2393, 28, 30910, 36584, 32961, 11, 220, 2251, 62, 2539, 28, 62, 20147, 1968, 273, 13557, 32538, 62, 17953, 62, 2539, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 31673, 3256, 1336, 62, 3672, 11639, 88, 392, 1069, 13, 17721, 13, 9132, 65, 13, 14809, 489, 388, 13, 85, 16, 13, 26198, 25460, 316, 13, 31673, 3256, 6376, 28, 18, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 19, 11, 2099, 28, 18, 11, 269, 381, 62, 4906, 28, 17, 11, 6167, 28, 16, 11, 198, 220, 220, 220, 220, 220, 468, 62, 12286, 62, 8367, 28, 25101, 11, 4277, 62, 8367, 28, 15, 11, 198, 220, 220, 220, 220, 220, 3275, 62, 4906, 28, 14202, 11, 33829, 62, 4906, 28, 14202, 11, 7268, 62, 4906, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 318, 62, 2302, 3004, 28, 25101, 11, 7552, 62, 29982, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 2393, 28, 30910, 36584, 32961, 11, 220, 2251, 62, 2539, 28, 62, 20147, 1968, 273, 13557, 32538, 62, 17953, 62, 2539, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 4906, 3256, 1336, 62, 3672, 11639, 88, 392, 1069, 13, 17721, 13, 9132, 65, 13, 14809, 489, 388, 13, 85, 16, 13, 26198, 25460, 316, 13, 4906, 3256, 6376, 28, 19, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 20, 11, 2099, 28, 1415, 11, 269, 381, 62, 4906, 28, 23, 11, 6167, 28, 16, 11, 198, 220, 220, 220, 220, 220, 468, 62, 12286, 62, 8367, 28, 25101, 11, 4277, 62, 8367, 28, 15, 11, 198, 220, 220, 220, 220, 220, 3275, 62, 4906, 28, 14202, 11, 33829, 62, 4906, 28, 14202, 11, 7268, 62, 4906, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 318, 62, 2302, 3004, 28, 25101, 11, 7552, 62, 29982, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 2393, 28, 30910, 36584, 32961, 11, 220, 2251, 62, 2539, 28, 62, 20147, 1968, 273, 13557, 32538, 62, 17953, 62, 2539, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 1084, 62, 4774, 62, 9127, 3256, 1336, 62, 3672, 11639, 88, 392, 1069, 13, 17721, 13, 9132, 65, 13, 14809, 489, 388, 13, 85, 16, 13, 26198, 25460, 316, 13, 1084, 62, 4774, 62, 9127, 3256, 6376, 28, 20, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 21, 11, 2099, 28, 18, 11, 269, 381, 62, 4906, 28, 17, 11, 6167, 28, 16, 11, 198, 220, 220, 220, 220, 220, 468, 62, 12286, 62, 8367, 28, 25101, 11, 4277, 62, 8367, 28, 15, 11, 198, 220, 220, 220, 220, 220, 3275, 62, 4906, 28, 14202, 11, 33829, 62, 4906, 28, 14202, 11, 7268, 62, 4906, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 318, 62, 2302, 3004, 28, 25101, 11, 7552, 62, 29982, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 2393, 28, 30910, 36584, 32961, 11, 220, 2251, 62, 2539, 28, 62, 20147, 1968, 273, 13557, 32538, 62, 17953, 62, 2539, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 9806, 62, 4774, 62, 9127, 3256, 1336, 62, 3672, 11639, 88, 392, 1069, 13, 17721, 13, 9132, 65, 13, 14809, 489, 388, 13, 85, 16, 13, 26198, 25460, 316, 13, 9806, 62, 4774, 62, 9127, 3256, 6376, 28, 21, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 22, 11, 2099, 28, 18, 11, 269, 381, 62, 4906, 28, 17, 11, 6167, 28, 16, 11, 198, 220, 220, 220, 220, 220, 468, 62, 12286, 62, 8367, 28, 25101, 11, 4277, 62, 8367, 28, 15, 11, 198, 220, 220, 220, 220, 220, 3275, 62, 4906, 28, 14202, 11, 33829, 62, 4906, 28, 14202, 11, 7268, 62, 4906, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 318, 62, 2302, 3004, 28, 25101, 11, 7552, 62, 29982, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 2393, 28, 30910, 36584, 32961, 11, 220, 2251, 62, 2539, 28, 62, 20147, 1968, 273, 13557, 32538, 62, 17953, 62, 2539, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 4774, 62, 9127, 62, 7146, 1304, 3256, 1336, 62, 3672, 11639, 88, 392, 1069, 13, 17721, 13, 9132, 65, 13, 14809, 489, 388, 13, 85, 16, 13, 26198, 25460, 316, 13, 4774, 62, 9127, 62, 7146, 1304, 3256, 6376, 28, 22, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 23, 11, 2099, 28, 18, 11, 269, 381, 62, 4906, 28, 17, 11, 6167, 28, 16, 11, 198, 220, 220, 220, 220, 220, 468, 62, 12286, 62, 8367, 28, 25101, 11, 4277, 62, 8367, 28, 15, 11, 198, 220, 220, 220, 220, 220, 3275, 62, 4906, 28, 14202, 11, 33829, 62, 4906, 28, 14202, 11, 7268, 62, 4906, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 318, 62, 2302, 3004, 28, 25101, 11, 7552, 62, 29982, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 2393, 28, 30910, 36584, 32961, 11, 220, 2251, 62, 2539, 28, 62, 20147, 1968, 273, 13557, 32538, 62, 17953, 62, 2539, 828, 198, 220, 220, 220, 4808, 20147, 1968, 273, 13, 15878, 24564, 1968, 273, 7, 198, 220, 220, 220, 220, 220, 1438, 11639, 9806, 62, 325, 5154, 62, 259, 62, 4774, 62, 9127, 3256, 1336, 62, 3672, 11639, 88, 392, 1069, 13, 17721, 13, 9132, 65, 13, 14809, 489, 388, 13, 85, 16, 13, 26198, 25460, 316, 13, 9806, 62, 325, 5154, 62, 259, 62, 4774, 62, 9127, 3256, 6376, 28, 23, 11, 198, 220, 220, 220, 220, 220, 1271, 28, 24, 11, 2099, 28, 18, 11, 269, 381, 62, 4906, 28, 17, 11, 6167, 28, 16, 11, 198, 220, 220, 220, 220, 220, 468, 62, 12286, 62, 8367, 28, 25101, 11, 4277, 62, 8367, 28, 15, 11, 198, 220, 220, 220, 220, 220, 3275, 62, 4906, 28, 14202, 11, 33829, 62, 4906, 28, 14202, 11, 7268, 62, 4906, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 318, 62, 2302, 3004, 28, 25101, 11, 7552, 62, 29982, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 2393, 28, 30910, 36584, 32961, 11, 220, 2251, 62, 2539, 28, 62, 20147, 1968, 273, 13557, 32538, 62, 17953, 62, 2539, 828, 198, 220, 16589, 198, 220, 18366, 41888, 198, 220, 16589, 198, 220, 28376, 62, 19199, 41888, 4357, 198, 220, 33829, 62, 19199, 41888, 198, 220, 220, 220, 4808, 19535, 31033, 48296, 2767, 62, 25216, 11, 198, 220, 16589, 198, 220, 11389, 1143, 62, 25811, 28, 14202, 11, 198, 220, 318, 62, 2302, 437, 540, 28, 25101, 11, 198, 220, 15582, 11639, 1676, 1462, 18, 3256, 198, 220, 7552, 62, 81, 6231, 41888, 4357, 198, 220, 530, 1659, 82, 41888, 198, 220, 16589, 198, 220, 11389, 1143, 62, 9688, 28, 5774, 11, 198, 220, 11389, 1143, 62, 437, 28, 34107, 11, 198, 8, 198, 198, 62, 19535, 31033, 48296, 2767, 13, 25747, 62, 1525, 62, 3672, 17816, 4906, 6, 4083, 44709, 62, 4906, 796, 4808, 19535, 31033, 48296, 2767, 62, 25216, 198, 62, 19535, 31033, 48296, 2767, 62, 25216, 13, 38301, 62, 4906, 796, 4808, 19535, 31033, 48296, 2767, 198, 30910, 36584, 32961, 13, 20500, 62, 19199, 62, 1525, 62, 3672, 17816, 26198, 25460, 316, 20520, 796, 4808, 19535, 31033, 48296, 2767, 198, 62, 37047, 62, 9945, 13, 38804, 8979, 24564, 1968, 273, 7, 30910, 36584, 32961, 8, 198, 198, 26198, 25460, 316, 796, 4808, 5420, 1564, 13, 8645, 515, 19703, 4668, 12837, 6030, 10786, 26198, 25460, 316, 3256, 44104, 20500, 13, 12837, 11, 828, 1391, 198, 220, 705, 30910, 36584, 32961, 6, 1058, 4808, 19535, 31033, 48296, 2767, 11, 198, 220, 705, 834, 21412, 834, 6, 1058, 705, 88, 392, 1069, 13, 17721, 13, 9132, 65, 13, 14809, 489, 388, 13, 85, 16, 13, 31092, 62, 18302, 316, 62, 40842, 17, 6, 198, 220, 1303, 25248, 11235, 420, 62, 28463, 295, 62, 4122, 7, 4871, 62, 29982, 25, 88, 392, 1069, 13, 17721, 13, 9132, 65, 13, 14809, 489, 388, 13, 85, 16, 13, 26198, 25460, 316, 8, 198, 220, 32092, 198, 62, 37047, 62, 9945, 13, 38804, 12837, 7, 26198, 25460, 316, 8, 628, 198, 30910, 36584, 32961, 13557, 25811, 796, 6045, 198, 2, 25248, 11235, 420, 62, 28463, 295, 62, 4122, 7, 21412, 62, 29982, 8, 198 ]
2.348066
3,258
# display only the IP addresses to the screen. iplist = [ 5060, "80", 55, "10.0.0.1", "10.20.30.1", "ssh" ] # example 1 - add up the strings print("IP addresses: " + iplist[3] + ", and " + iplist[4]) # example 2 - use the comma separator print("IP addresses:", iplist[3], ", and", iplist[4]) # example 3 - use an 'f-string' print(f"IP addresses: {iplist[3]}, and {iplist[4]}")
[ 2, 3359, 691, 262, 6101, 9405, 284, 262, 3159, 13, 198, 24705, 396, 796, 685, 2026, 1899, 11, 366, 1795, 1600, 5996, 11, 366, 940, 13, 15, 13, 15, 13, 16, 1600, 366, 940, 13, 1238, 13, 1270, 13, 16, 1600, 366, 45824, 1, 2361, 198, 198, 2, 1672, 352, 532, 751, 510, 262, 13042, 198, 4798, 7203, 4061, 9405, 25, 366, 1343, 1312, 489, 396, 58, 18, 60, 1343, 33172, 290, 366, 1343, 1312, 489, 396, 58, 19, 12962, 198, 198, 2, 1672, 362, 532, 779, 262, 39650, 2880, 1352, 198, 4798, 7203, 4061, 9405, 25, 1600, 1312, 489, 396, 58, 18, 4357, 33172, 290, 1600, 1312, 489, 396, 58, 19, 12962, 198, 198, 2, 1672, 513, 532, 779, 281, 705, 69, 12, 8841, 6, 198, 4798, 7, 69, 1, 4061, 9405, 25, 1391, 24705, 396, 58, 18, 60, 5512, 290, 1391, 24705, 396, 58, 19, 48999, 4943, 198 ]
2.533333
150
"""fake_blink terminal simulation of blinkt, to use rename to blinkt.py and place in same directory as blinkt program""" import sys import pantilthat import atexit import signal _clear_on_exit = True _true_color = True NUM_PIXELS = 8 pixels = [(0,0,0)] * NUM_PIXELS def set_clear_on_exit(value=True): """Set whether Blinkt! should be cleared upon exit By default Blinkt! will turn off the pixels on exit, but calling:: blinkt.set_clear_on_exit(False) Will ensure that it does not. :param value: True or False (default True) """ global _clear_on_exit _clear_on_exit = value # Module Initialisation atexit.register(_exit)
[ 37811, 30706, 62, 2436, 676, 12094, 18640, 286, 21019, 83, 11, 284, 779, 36265, 284, 21019, 83, 13, 9078, 290, 1295, 287, 976, 8619, 355, 21019, 83, 1430, 37811, 198, 11748, 25064, 198, 11748, 15857, 346, 5562, 198, 11748, 379, 37023, 198, 11748, 6737, 198, 198, 62, 20063, 62, 261, 62, 37023, 796, 6407, 198, 62, 7942, 62, 8043, 220, 220, 220, 796, 6407, 198, 41359, 62, 47, 10426, 37142, 220, 220, 220, 220, 796, 807, 198, 79, 14810, 220, 220, 220, 220, 220, 220, 220, 220, 796, 47527, 15, 11, 15, 11, 15, 15437, 1635, 36871, 62, 47, 10426, 37142, 628, 628, 628, 198, 198, 4299, 900, 62, 20063, 62, 261, 62, 37023, 7, 8367, 28, 17821, 2599, 198, 220, 220, 220, 37227, 7248, 1771, 41732, 83, 0, 815, 307, 12539, 2402, 8420, 628, 220, 220, 220, 2750, 4277, 41732, 83, 0, 481, 1210, 572, 262, 17848, 319, 8420, 11, 475, 4585, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 21019, 83, 13, 2617, 62, 20063, 62, 261, 62, 37023, 7, 25101, 8, 628, 220, 220, 220, 2561, 4155, 326, 340, 857, 407, 13, 628, 220, 220, 220, 1058, 17143, 1988, 25, 6407, 393, 10352, 357, 12286, 6407, 8, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3298, 4808, 20063, 62, 261, 62, 37023, 198, 220, 220, 220, 4808, 20063, 62, 261, 62, 37023, 796, 1988, 628, 198, 2, 19937, 20768, 5612, 198, 378, 10198, 13, 30238, 28264, 37023, 8, 198 ]
2.807377
244
from unittest import TestCase from requre.cassette import CassetteExecution
[ 6738, 555, 715, 395, 1330, 6208, 20448, 198, 6738, 1038, 260, 13, 66, 562, 5857, 1330, 14154, 5857, 23002, 1009, 628 ]
3.666667
21
# CQML # Compact Query Meta-language # https://github.com/TheSwanFactory/hclang/blob/master/hc/cqml.hc # TODO: https://github.com/LucaCanali/sparkMeasure from .wrappers import *
[ 2, 327, 48, 5805, 198, 2, 37904, 43301, 30277, 12, 16129, 198, 2, 3740, 1378, 12567, 13, 785, 14, 464, 50, 8149, 22810, 14, 71, 565, 648, 14, 2436, 672, 14, 9866, 14, 71, 66, 14, 66, 80, 4029, 13, 71, 66, 198, 198, 2, 16926, 46, 25, 3740, 1378, 12567, 13, 785, 14, 22946, 64, 6090, 7344, 14, 2777, 668, 47384, 198, 198, 6738, 764, 29988, 11799, 1330, 1635, 198 ]
2.535211
71
from gocept.template_rewrite.dtml import DTMLRegexRewriter from gocept.template_rewrite.lib2to3 import rewrite_using_2to3 from gocept.template_rewrite.pagetemplates import PTParseError from gocept.template_rewrite.pagetemplates import PTParserRewriter import argparse import logging import os import os.path import pathlib import pdb # noqa log = logging.getLogger(__name__) parser = argparse.ArgumentParser( description='Rewrite Python expressions in DTML and ZPT template files.') parser.add_argument('paths', type=str, nargs='+', metavar='path', help='paths of files which should be rewritten or ' 'directories containing such files') parser.add_argument('--keep-files', action='store_true', help='keep the original files, create *.out files instead') parser.add_argument('--collect-errors', action='store_true', help='If encountering an error, continue to collect all' ' errors, print them out and only exit at the end') parser.add_argument('--force', choices=['pt', 'dtml'], default=None, help='Treat all files as PageTemplate (pt) resp.' 'DocumentTemplate (dtml).') parser.add_argument('-D', '--debug', action='store_true', help='enter debugger on errors') class FileHandler(object): """Handle the rewrite of batches of files.""" def rewrite_action(self, input_string, *args, **kwargs): """Use `rewrite_using_2to3` as default action. Can be overwritten in subclass. """ return rewrite_using_2to3(input_string, *args, **kwargs) def _process_file(self, path, rewriter): """Process one file.""" log.warning('Processing %s', path) try: rw = rewriter( path.read_text(), self.rewrite_action, filename=str(path)) except UnicodeDecodeError: # pragma: no cover log.error('Error', exc_info=True) else: try: result = rw() except PTParseError: self.errors = True if self.collect_errors: return raise file_out = pathlib.Path(str(path) + '.out') file_out.write_text(result, encoding='utf-8') self.output_files.append(file_out) def process_files(self): """Process all collected files.""" for file_ in self.dtml_files: self._process_file(file_, DTMLRegexRewriter) for file_ in self.zpt_files: self._process_file(file_, PTParserRewriter) def main(args=None): """Act as an entry point.""" args = parser.parse_args(args) fh = FileHandler(args.paths, args) try: fh() except Exception: # pragma: no cover if args.debug: pdb.post_mortem() raise return 1 if fh.errors else 0
[ 6738, 467, 984, 13, 28243, 62, 1809, 6525, 13, 67, 20369, 1330, 24311, 5805, 3041, 25636, 30003, 43407, 198, 6738, 467, 984, 13, 28243, 62, 1809, 6525, 13, 8019, 17, 1462, 18, 1330, 28183, 62, 3500, 62, 17, 1462, 18, 198, 6738, 467, 984, 13, 28243, 62, 1809, 6525, 13, 79, 363, 316, 368, 17041, 1330, 350, 7250, 17208, 12331, 198, 6738, 467, 984, 13, 28243, 62, 1809, 6525, 13, 79, 363, 316, 368, 17041, 1330, 350, 7250, 28198, 30003, 43407, 198, 11748, 1822, 29572, 198, 11748, 18931, 198, 11748, 28686, 198, 11748, 28686, 13, 6978, 198, 11748, 3108, 8019, 198, 11748, 279, 9945, 220, 1303, 645, 20402, 628, 198, 6404, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 628, 198, 48610, 796, 1822, 29572, 13, 28100, 1713, 46677, 7, 198, 220, 220, 220, 6764, 11639, 30003, 6525, 11361, 14700, 287, 24311, 5805, 290, 1168, 11571, 11055, 3696, 2637, 8, 198, 48610, 13, 2860, 62, 49140, 10786, 6978, 82, 3256, 2099, 28, 2536, 11, 299, 22046, 11639, 10, 3256, 1138, 615, 283, 11639, 6978, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 11639, 6978, 82, 286, 3696, 543, 815, 307, 30101, 393, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 12942, 1749, 7268, 884, 3696, 11537, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 14894, 12, 16624, 3256, 2223, 11639, 8095, 62, 7942, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 11639, 14894, 262, 2656, 3696, 11, 2251, 46866, 448, 3696, 2427, 11537, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 33327, 12, 48277, 3256, 2223, 11639, 8095, 62, 7942, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 11639, 1532, 42398, 281, 4049, 11, 2555, 284, 2824, 477, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 8563, 11, 3601, 606, 503, 290, 691, 8420, 379, 262, 886, 11537, 198, 48610, 13, 2860, 62, 49140, 10786, 438, 3174, 3256, 7747, 28, 17816, 457, 3256, 705, 67, 20369, 6, 4357, 4277, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 11639, 51, 630, 477, 3696, 355, 7873, 30800, 357, 457, 8, 1217, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 24941, 30800, 357, 67, 20369, 737, 11537, 198, 48610, 13, 2860, 62, 49140, 10786, 12, 35, 3256, 705, 438, 24442, 3256, 2223, 11639, 8095, 62, 7942, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 11639, 9255, 49518, 319, 8563, 11537, 628, 198, 4871, 9220, 25060, 7, 15252, 2599, 198, 220, 220, 220, 37227, 37508, 262, 28183, 286, 37830, 286, 3696, 526, 15931, 628, 220, 220, 220, 825, 28183, 62, 2673, 7, 944, 11, 5128, 62, 8841, 11, 1635, 22046, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 11041, 4600, 1809, 6525, 62, 3500, 62, 17, 1462, 18, 63, 355, 4277, 2223, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1680, 307, 6993, 9108, 287, 47611, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 28183, 62, 3500, 62, 17, 1462, 18, 7, 15414, 62, 8841, 11, 1635, 22046, 11, 12429, 46265, 22046, 8, 628, 220, 220, 220, 825, 4808, 14681, 62, 7753, 7, 944, 11, 3108, 11, 302, 16002, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 18709, 530, 2393, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 43917, 10786, 18709, 278, 4064, 82, 3256, 3108, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 86, 796, 302, 16002, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 13, 961, 62, 5239, 22784, 2116, 13, 1809, 6525, 62, 2673, 11, 29472, 28, 2536, 7, 6978, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 34371, 10707, 1098, 12331, 25, 220, 1303, 23864, 2611, 25, 645, 3002, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 13, 18224, 10786, 12331, 3256, 2859, 62, 10951, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 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, 1255, 796, 374, 86, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 350, 7250, 17208, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 48277, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 33327, 62, 48277, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2393, 62, 448, 796, 3108, 8019, 13, 15235, 7, 2536, 7, 6978, 8, 1343, 45302, 448, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2393, 62, 448, 13, 13564, 62, 5239, 7, 20274, 11, 21004, 11639, 40477, 12, 23, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 22915, 62, 16624, 13, 33295, 7, 7753, 62, 448, 8, 628, 220, 220, 220, 825, 1429, 62, 16624, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 18709, 477, 7723, 3696, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 329, 2393, 62, 287, 2116, 13, 67, 20369, 62, 16624, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 14681, 62, 7753, 7, 7753, 62, 11, 24311, 5805, 3041, 25636, 30003, 43407, 8, 198, 220, 220, 220, 220, 220, 220, 220, 329, 2393, 62, 287, 2116, 13, 89, 457, 62, 16624, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 14681, 62, 7753, 7, 7753, 62, 11, 350, 7250, 28198, 30003, 43407, 8, 628, 198, 4299, 1388, 7, 22046, 28, 14202, 2599, 198, 220, 220, 220, 37227, 6398, 355, 281, 5726, 966, 526, 15931, 198, 220, 220, 220, 26498, 796, 30751, 13, 29572, 62, 22046, 7, 22046, 8, 198, 220, 220, 220, 277, 71, 796, 9220, 25060, 7, 22046, 13, 6978, 82, 11, 26498, 8, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 277, 71, 3419, 198, 220, 220, 220, 2845, 35528, 25, 220, 1303, 23864, 2611, 25, 645, 3002, 198, 220, 220, 220, 220, 220, 220, 220, 611, 26498, 13, 24442, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 9945, 13, 7353, 62, 46515, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 198, 220, 220, 220, 1441, 352, 611, 277, 71, 13, 48277, 2073, 657, 198 ]
2.306719
1,265
""" Definition of :class:`EventList`. :class:`EventList` is used to handle photon arrival times. """ import copy import pickle import warnings import numpy as np import numpy.random as ra from astropy.table import Table from .filters import get_deadtime_mask from .gti import append_gtis, check_separate, cross_gtis from .io import load_events_and_gtis from .lightcurve import Lightcurve from .utils import assign_value_if_none, simon, interpret_times __all__ = ['EventList'] class EventList(object): """ Basic class for event list data. Event lists generally correspond to individual events (e.g. photons) recorded by the detector, and their associated properties. For X-ray data where this type commonly occurs, events are time stamps of when a photon arrived in the detector, and (optionally) the photon energy associated with the event. Parameters ---------- time: iterable A list or array of time stamps Other Parameters ---------------- dt: float The time resolution of the events. Only relevant when using events to produce light curves with similar bin time. energy: iterable A list of array of photon energy values in keV mjdref : float The MJD used as a reference for the time array. ncounts: int Number of desired data points in event list. gtis: ``[[gti0_0, gti0_1], [gti1_0, gti1_1], ...]`` Good Time Intervals pi : integer, numpy.ndarray PI channels notes : str Any useful annotations high_precision : bool Change the precision of self.time to float128. Useful while dealing with fast pulsars. mission : str Mission that recorded the data (e.g. NICER) instr : str Instrument onboard the mission header : str The full header of the original FITS file, if relevant **other_kw : Used internally. Any other keyword arguments will be ignored Attributes ---------- time: numpy.ndarray The array of event arrival times, in seconds from the reference MJD defined in ``mjdref`` energy: numpy.ndarray The array of photon energy values ncounts: int The number of data points in the event list dt: float The time resolution of the events. Only relevant when using events to produce light curves with similar bin time. mjdref : float The MJD used as a reference for the time array. gtis: ``[[gti0_0, gti0_1], [gti1_0, gti1_1], ...]`` Good Time Intervals pi : integer, numpy.ndarray PI channels high_precision : bool Change the precision of self.time to float128. Useful while dealing with fast pulsars. mission : str Mission that recorded the data (e.g. NICER) instr : str Instrument onboard the mission detector_id : iterable The detector that recoded each photon, if relevant (e.g. XMM, Chandra) header : str The full header of the original FITS file, if relevant """ def to_lc(self, dt, tstart=None, tseg=None): """ Convert event list to a :class:`stingray.Lightcurve` object. Parameters ---------- dt: float Binning time of the light curve Other Parameters ---------------- tstart : float Start time of the light curve tseg: float Total duration of light curve Returns ------- lc: :class:`stingray.Lightcurve` object """ if tstart is None and self.gti is not None: tstart = self.gti[0][0] tseg = self.gti[-1][1] - tstart return Lightcurve.make_lightcurve(self.time, dt, tstart=tstart, gti=self.gti, tseg=tseg, mjdref=self.mjdref) def to_lc_list(self, dt): """Convert event list to a generator of Lightcurves. Parameters ---------- dt: float Binning time of the light curves Returns ------- lc_gen: generator Generates one :class:`stingray.Lightcurve` object for each GTI """ start_times = self.gti[:, 0] end_times = self.gti[:, 1] tsegs = end_times - start_times for st, end, tseg in zip(start_times, end_times, tsegs): idx_st = np.searchsorted(self.time, st, side='right') idx_end = np.searchsorted(self.time, end, side='left') lc = Lightcurve.make_lightcurve(self.time[idx_st:idx_end], dt, tstart=st, gti=np.asarray([[st, end]]), tseg=tseg, mjdref=self.mjdref) yield lc @staticmethod def from_lc(lc): """ Create an :class:`EventList` from a :class:`stingray.Lightcurve` object. Note that all events in a given time bin will have the same time stamp. Parameters ---------- lc: :class:`stingray.Lightcurve` object Light curve to use for creation of the event list. Returns ------- ev: :class:`EventList` object The resulting list of photon arrival times generated from the light curve. """ # Multiply times by number of counts times = [[i] * int(j) for i, j in zip(lc.time, lc.counts)] # Concatenate all lists times = [i for j in times for i in j] return EventList(time=times, gti=lc.gti) def simulate_times(self, lc, use_spline=False, bin_time=None): """ Randomly assign (simulate) photon arrival times to an :class:`EventList` from a :class:`stingray.Lightcurve` object, using the acceptance-rejection method. Parameters ---------- lc: :class:`stingray.Lightcurve` object Other Parameters ---------------- use_spline : bool Approximate the light curve with a spline to avoid binning effects bin_time : float The bin time of the light curve, if it needs to be specified for improved precision Returns ------- times : array-like Simulated photon arrival times """ from stingray.simulator.base import simulate_times self.time = simulate_times(lc, use_spline=use_spline, bin_time=bin_time) self.gti = lc.gti self.ncounts = len(self.time) def simulate_energies(self, spectrum): """ Assign (simulate) energies to event list from a spectrum. Parameters ---------- spectrum: 2-d array or list Energies versus corresponding fluxes. The 2-d array or list must have energies across the first dimension and fluxes across the second one. """ if self.ncounts is None: simon("Either set time values or explicity provide counts.") return if isinstance(spectrum, list) or isinstance(spectrum, np.ndarray): energy = np.asarray(spectrum)[0] fluxes = np.asarray(spectrum)[1] if not isinstance(energy, np.ndarray): raise IndexError("Spectrum must be a 2-d array or list") else: raise TypeError("Spectrum must be a 2-d array or list") # Create a set of probability values prob = fluxes / float(sum(fluxes)) # Calculate cumulative probability cum_prob = np.cumsum(prob) # Draw N random numbers between 0 and 1, where N is the size of event # list R = ra.uniform(0, 1, self.ncounts) # Assign energies to events corresponding to the random numbers drawn self.energy = \ np.asarray([ energy[np.argwhere( cum_prob == np.min(cum_prob[(cum_prob - r) > 0]))] for r in R]) def join(self, other): """ Join two :class:`EventList` objects into one. If both are empty, an empty :class:`EventList` is returned. GTIs are crossed if the event lists are over a common time interval, and appended otherwise. ``pi`` and ``pha`` remain ``None`` if they are ``None`` in both. Otherwise, 0 is used as a default value for the :class:`EventList` where they were None. Parameters ---------- other : :class:`EventList` object The other :class:`EventList` object which is supposed to be joined with. Returns ------- `ev_new` : :class:`EventList` object The resulting :class:`EventList` object. """ ev_new = EventList() if self.dt != other.dt: simon("The time resolution is different." " Using the rougher by default") ev_new.dt = np.max([self.dt, other.dt]) if self.time is None and other.time is None: return ev_new if (self.time is None): simon("One of the event lists you are concatenating is empty.") self.time = np.asarray([]) elif (other.time is None): simon("One of the event lists you are concatenating is empty.") other.time = np.asarray([]) # Tolerance for MJDREF:1 microsecond if not np.isclose(self.mjdref, other.mjdref, atol=1e-6 / 86400): other = other.change_mjdref(self.mjdref) ev_new.time = np.concatenate([self.time, other.time]) order = np.argsort(ev_new.time) ev_new.time = ev_new.time[order] if (self.pi is None) and (other.pi is None): ev_new.pi = None elif (self.pi is None) or (other.pi is None): self.pi = assign_value_if_none(self.pi, np.zeros_like(self.time)) other.pi = assign_value_if_none(other.pi, np.zeros_like(other.time)) if (self.pi is not None) and (other.pi is not None): ev_new.pi = np.concatenate([self.pi, other.pi]) ev_new.pi = ev_new.pi[order] if (self.energy is None) and (other.energy is None): ev_new.energy = None elif (self.energy is None) or (other.energy is None): self.energy = assign_value_if_none(self.energy, np.zeros_like(self.time)) other.energy = assign_value_if_none(other.energy, np.zeros_like(other.time)) if (self.energy is not None) and (other.energy is not None): ev_new.energy = np.concatenate([self.energy, other.energy]) ev_new.energy = ev_new.energy[order] if self.gti is None and other.gti is not None and len(self.time) > 0: self.gti = \ assign_value_if_none( self.gti, np.asarray([[self.time[0] - self.dt / 2, self.time[-1] + self.dt / 2]])) if other.gti is None and self.gti is not None and len(other.time) > 0: other.gti = \ assign_value_if_none( other.gti, np.asarray([[other.time[0] - other.dt / 2, other.time[-1] + other.dt / 2]])) if (self.gti is None) and (other.gti is None): ev_new.gti = None elif (self.gti is not None) and (other.gti is not None): if check_separate(self.gti, other.gti): ev_new.gti = append_gtis(self.gti, other.gti) simon('GTIs in these two event lists do not overlap at all.' 'Merging instead of returning an overlap.') else: ev_new.gti = cross_gtis([self.gti, other.gti]) ev_new.mjdref = self.mjdref return ev_new @staticmethod def read(filename, format_="pickle", **kwargs): """ Read a :class:`Lightcurve` object from file. Currently supported formats are * pickle (not recommended for long-term storage) * hea : FITS Event files from (well, some) HEASARC-supported missions. * any other formats compatible with the writers in :class:`astropy.table.Table` (ascii.ecsv, hdf5, etc.) Files that need the :class:`astropy.table.Table` interface MUST contain at least a ``time`` column. Other recognized columns are ``energy`` and ``pi``. The default ascii format is enhanced CSV (ECSV). Data formats supporting the serialization of metadata (such as ECSV and HDF5) can contain all eventlist attributes such as ``mission``, ``gti``, etc with no significant loss of information. Other file formats might lose part of the metadata, so must be used with care. Parameters ---------- filename: str Path and file name for the file to be read. format\_: str Available options are 'pickle', 'hea', and any `Table`-supported format such as 'hdf5', 'ascii.ecsv', etc. Returns ------- ev: :class:`EventList` object The :class:`EventList` object reconstructed from file """ if format_ == 'pickle': with open(filename, 'rb') as fobj: return pickle.load(fobj) if format_ in ('hea'): evtdata = load_events_and_gtis(filename, **kwargs) return EventList(time=evtdata.ev_list, gti=evtdata.gti_list, pi=evtdata.pi_list, energy=evtdata.energy_list, mjdref=evtdata.mjdref, instr=evtdata.instr, mission=evtdata.mission, header=evtdata.header, detector_id=evtdata.detector_id) if format_ == 'ascii': format_ = 'ascii.ecsv' ts = Table.read(filename, format=format_) return EventList.from_astropy_table(ts) def write(self, filename, format_='pickle'): """ Write an :class:`EventList` object to file. Possible file formats are * pickle (not recommended for long-term storage) * any other formats compatible with the writers in :class:`astropy.table.Table` (ascii.ecsv, hdf5, etc.) Parameters ---------- filename: str Name and path of the file to save the event list to.. format_: str The file format to store the data in. Available options are ``pickle``, ``hdf5``, ``ascii``, ``fits`` """ if format_ == 'pickle': with open(filename, "wb") as fobj: pickle.dump(self, fobj) return if format_ == 'ascii': format_ = 'ascii.ecsv' ts = self.to_astropy_table() try: ts.write(filename, format=format_, overwrite=True, serialize_meta=True) except TypeError: ts.write(filename, format=format_, overwrite=True) def apply_deadtime(self, deadtime, inplace=False, **kwargs): """Apply deadtime filter to this event list. Additional arguments in ``kwargs`` are passed to `get_deadtime_mask` Parameters ---------- deadtime : float Value of dead time to apply to data inplace : bool, default False If True, apply the deadtime to the current event list. Otherwise, return a new event list. Returns ------- new_event_list : `EventList` object Filtered event list. if `inplace` is True, this is the input object filtered for deadtime, otherwise this is a new object. additional_output : object Only returned if `return_all` is True. See `get_deadtime_mask` for more details. Examples -------- >>> events = np.array([1, 1.05, 1.07, 1.08, 1.1, 2, 2.2, 3, 3.1, 3.2]) >>> events = EventList(events) >>> events.pi=np.array([1, 2, 2, 2, 2, 1, 1, 1, 2, 1]) >>> events.energy=np.array([1, 2, 2, 2, 2, 1, 1, 1, 2, 1]) >>> events.mjdref = 10 >>> filt_events, retval = events.apply_deadtime(0.11, inplace=False, ... verbose=False, ... return_all=True) >>> filt_events is events False >>> expected = np.array([1, 2, 2.2, 3, 3.2]) >>> np.allclose(filt_events.time, expected) True >>> np.allclose(filt_events.pi, 1) True >>> np.allclose(filt_events.energy, 1) True >>> np.allclose(events.pi, 1) False >>> filt_events = events.apply_deadtime(0.11, inplace=True, ... verbose=False) >>> filt_events is events True """ local_retall = kwargs.pop('return_all', False) mask, retall = get_deadtime_mask(self.time, deadtime, return_all=True, **kwargs) new_ev = self.apply_mask(mask, inplace=inplace) if local_retall: new_ev = [new_ev, retall] return new_ev def change_mjdref(self, new_mjdref): """Change the MJD reference time (MJDREF) of the light curve. Times will be now referred to this new MJDREF Parameters ---------- new_mjdref : float New MJDREF Returns ------- new_lc : :class:`EventList` object The new LC shifted by MJDREF """ time_shift = (self.mjdref - new_mjdref) * 86400 new_ev = self.shift(time_shift) new_ev.mjdref = new_mjdref return new_ev def shift(self, time_shift): """ Shift the events and the GTIs in time. Parameters ---------- time_shift: float The time interval by which the light curve will be shifted (in the same units as the time array in :class:`Lightcurve` Returns ------- new_ev : lightcurve.Lightcurve object The new event list shifted by ``time_shift`` """ new_ev = copy.deepcopy(self) new_ev.time = new_ev.time + time_shift new_ev.gti = new_ev.gti + time_shift return new_ev @staticmethod @staticmethod
[ 37811, 198, 36621, 286, 1058, 4871, 25, 63, 9237, 8053, 44646, 198, 198, 25, 4871, 25, 63, 9237, 8053, 63, 318, 973, 284, 5412, 48190, 10325, 1661, 13, 198, 37811, 198, 198, 11748, 4866, 198, 11748, 2298, 293, 198, 11748, 14601, 198, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 299, 32152, 13, 25120, 355, 2179, 198, 6738, 6468, 28338, 13, 11487, 1330, 8655, 198, 198, 6738, 764, 10379, 1010, 1330, 651, 62, 25124, 2435, 62, 27932, 198, 6738, 764, 13655, 72, 1330, 24443, 62, 13655, 271, 11, 2198, 62, 25512, 378, 11, 3272, 62, 13655, 271, 198, 6738, 764, 952, 1330, 3440, 62, 31534, 62, 392, 62, 13655, 271, 198, 6738, 764, 2971, 22019, 303, 1330, 4401, 22019, 303, 198, 6738, 764, 26791, 1330, 8333, 62, 8367, 62, 361, 62, 23108, 11, 985, 261, 11, 6179, 62, 22355, 198, 198, 834, 439, 834, 796, 37250, 9237, 8053, 20520, 628, 198, 4871, 8558, 8053, 7, 15252, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 14392, 1398, 329, 1785, 1351, 1366, 13, 8558, 8341, 4143, 6053, 284, 1981, 2995, 357, 68, 13, 70, 13, 44378, 8, 198, 220, 220, 220, 6264, 416, 262, 31029, 11, 290, 511, 3917, 6608, 13, 1114, 1395, 12, 2433, 1366, 810, 428, 2099, 8811, 8833, 11, 198, 220, 220, 220, 2995, 389, 640, 25560, 286, 618, 257, 48190, 5284, 287, 262, 31029, 11, 290, 357, 18076, 453, 8, 262, 48190, 2568, 3917, 198, 220, 220, 220, 351, 262, 1785, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 640, 25, 11629, 540, 198, 220, 220, 220, 220, 220, 220, 220, 317, 1351, 393, 7177, 286, 640, 25560, 628, 220, 220, 220, 3819, 40117, 198, 220, 220, 220, 34400, 198, 220, 220, 220, 288, 83, 25, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 383, 640, 6323, 286, 262, 2995, 13, 5514, 5981, 618, 1262, 2995, 198, 220, 220, 220, 220, 220, 220, 220, 284, 4439, 1657, 23759, 351, 2092, 9874, 640, 13, 628, 220, 220, 220, 2568, 25, 11629, 540, 198, 220, 220, 220, 220, 220, 220, 220, 317, 1351, 286, 7177, 286, 48190, 2568, 3815, 287, 885, 53, 628, 220, 220, 220, 285, 73, 67, 5420, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 383, 33974, 35, 973, 355, 257, 4941, 329, 262, 640, 7177, 13, 628, 220, 220, 220, 299, 9127, 82, 25, 493, 198, 220, 220, 220, 220, 220, 220, 220, 7913, 286, 10348, 1366, 2173, 287, 1785, 1351, 13, 628, 220, 220, 220, 308, 48010, 25, 7559, 30109, 13655, 72, 15, 62, 15, 11, 308, 20259, 15, 62, 16, 4357, 685, 13655, 72, 16, 62, 15, 11, 308, 20259, 16, 62, 16, 4357, 2644, 60, 15506, 198, 220, 220, 220, 220, 220, 220, 220, 4599, 3862, 4225, 12786, 628, 220, 220, 220, 31028, 1058, 18253, 11, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 30434, 9619, 628, 220, 220, 220, 4710, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 4377, 4465, 37647, 628, 220, 220, 220, 1029, 62, 3866, 16005, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 9794, 262, 15440, 286, 2116, 13, 2435, 284, 12178, 12762, 13, 49511, 981, 7219, 351, 3049, 22271, 945, 13, 628, 220, 220, 220, 4365, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 12633, 326, 6264, 262, 1366, 357, 68, 13, 70, 13, 45593, 1137, 8, 628, 220, 220, 220, 6480, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 42410, 25863, 262, 4365, 628, 220, 220, 220, 13639, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 383, 1336, 13639, 286, 262, 2656, 376, 29722, 2393, 11, 611, 5981, 628, 220, 220, 220, 12429, 847, 62, 46265, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 16718, 20947, 13, 4377, 584, 21179, 7159, 481, 307, 9514, 628, 220, 220, 220, 49213, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 640, 25, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 383, 7177, 286, 1785, 10325, 1661, 11, 287, 4201, 422, 262, 4941, 198, 220, 220, 220, 220, 220, 220, 220, 33974, 35, 5447, 287, 7559, 76, 73, 67, 5420, 15506, 628, 220, 220, 220, 2568, 25, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 383, 7177, 286, 48190, 2568, 3815, 628, 220, 220, 220, 299, 9127, 82, 25, 493, 198, 220, 220, 220, 220, 220, 220, 220, 383, 1271, 286, 1366, 2173, 287, 262, 1785, 1351, 628, 220, 220, 220, 288, 83, 25, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 383, 640, 6323, 286, 262, 2995, 13, 5514, 5981, 618, 1262, 2995, 198, 220, 220, 220, 220, 220, 220, 220, 284, 4439, 1657, 23759, 351, 2092, 9874, 640, 13, 628, 220, 220, 220, 285, 73, 67, 5420, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 383, 33974, 35, 973, 355, 257, 4941, 329, 262, 640, 7177, 13, 628, 220, 220, 220, 308, 48010, 25, 7559, 30109, 13655, 72, 15, 62, 15, 11, 308, 20259, 15, 62, 16, 4357, 685, 13655, 72, 16, 62, 15, 11, 308, 20259, 16, 62, 16, 4357, 2644, 60, 15506, 198, 220, 220, 220, 220, 220, 220, 220, 4599, 3862, 4225, 12786, 628, 220, 220, 220, 31028, 1058, 18253, 11, 299, 32152, 13, 358, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 30434, 9619, 628, 220, 220, 220, 1029, 62, 3866, 16005, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 9794, 262, 15440, 286, 2116, 13, 2435, 284, 12178, 12762, 13, 49511, 981, 7219, 351, 3049, 22271, 945, 13, 628, 220, 220, 220, 4365, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 12633, 326, 6264, 262, 1366, 357, 68, 13, 70, 13, 45593, 1137, 8, 628, 220, 220, 220, 6480, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 42410, 25863, 262, 4365, 628, 220, 220, 220, 31029, 62, 312, 1058, 11629, 540, 198, 220, 220, 220, 220, 220, 220, 220, 383, 31029, 326, 664, 9043, 1123, 48190, 11, 611, 5981, 357, 68, 13, 70, 13, 1395, 12038, 11, 46295, 8, 628, 220, 220, 220, 13639, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 383, 1336, 13639, 286, 262, 2656, 376, 29722, 2393, 11, 611, 5981, 628, 220, 220, 220, 37227, 628, 220, 220, 220, 825, 284, 62, 44601, 7, 944, 11, 288, 83, 11, 256, 9688, 28, 14202, 11, 256, 325, 70, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 38240, 1785, 1351, 284, 257, 1058, 4871, 25, 63, 301, 278, 2433, 13, 15047, 22019, 303, 63, 2134, 13, 628, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 288, 83, 25, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20828, 768, 640, 286, 262, 1657, 12133, 628, 220, 220, 220, 220, 220, 220, 220, 3819, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 34400, 198, 220, 220, 220, 220, 220, 220, 220, 256, 9688, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7253, 640, 286, 262, 1657, 12133, 628, 220, 220, 220, 220, 220, 220, 220, 256, 325, 70, 25, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7472, 9478, 286, 1657, 12133, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 198, 220, 220, 220, 220, 220, 220, 220, 35656, 198, 220, 220, 220, 220, 220, 220, 220, 300, 66, 25, 1058, 4871, 25, 63, 301, 278, 2433, 13, 15047, 22019, 303, 63, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 611, 256, 9688, 318, 6045, 290, 2116, 13, 13655, 72, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 256, 9688, 796, 2116, 13, 13655, 72, 58, 15, 7131, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 256, 325, 70, 796, 2116, 13, 13655, 72, 58, 12, 16, 7131, 16, 60, 532, 256, 9688, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 4401, 22019, 303, 13, 15883, 62, 2971, 22019, 303, 7, 944, 13, 2435, 11, 288, 83, 11, 256, 9688, 28, 83, 9688, 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, 308, 20259, 28, 944, 13, 13655, 72, 11, 256, 325, 70, 28, 83, 325, 70, 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, 285, 73, 67, 5420, 28, 944, 13, 76, 73, 67, 5420, 8, 628, 220, 220, 220, 825, 284, 62, 44601, 62, 4868, 7, 944, 11, 288, 83, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3103, 1851, 1785, 1351, 284, 257, 17301, 286, 4401, 22019, 1158, 13, 628, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 288, 83, 25, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20828, 768, 640, 286, 262, 1657, 23759, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 198, 220, 220, 220, 220, 220, 220, 220, 35656, 198, 220, 220, 220, 220, 220, 220, 220, 300, 66, 62, 5235, 25, 17301, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2980, 689, 530, 1058, 4871, 25, 63, 301, 278, 2433, 13, 15047, 22019, 303, 63, 2134, 329, 1123, 7963, 40, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 923, 62, 22355, 796, 2116, 13, 13655, 72, 58, 45299, 657, 60, 198, 220, 220, 220, 220, 220, 220, 220, 886, 62, 22355, 796, 2116, 13, 13655, 72, 58, 45299, 352, 60, 198, 220, 220, 220, 220, 220, 220, 220, 256, 325, 14542, 796, 886, 62, 22355, 532, 923, 62, 22355, 628, 220, 220, 220, 220, 220, 220, 220, 329, 336, 11, 886, 11, 256, 325, 70, 287, 19974, 7, 9688, 62, 22355, 11, 886, 62, 22355, 11, 256, 325, 14542, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4686, 87, 62, 301, 796, 45941, 13, 12947, 82, 9741, 7, 944, 13, 2435, 11, 336, 11, 1735, 11639, 3506, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4686, 87, 62, 437, 796, 45941, 13, 12947, 82, 9741, 7, 944, 13, 2435, 11, 886, 11, 1735, 11639, 9464, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 300, 66, 796, 4401, 22019, 303, 13, 15883, 62, 2971, 22019, 303, 7, 944, 13, 2435, 58, 312, 87, 62, 301, 25, 312, 87, 62, 437, 4357, 288, 83, 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, 256, 9688, 28, 301, 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, 308, 20259, 28, 37659, 13, 292, 18747, 26933, 58, 301, 11, 886, 11907, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 256, 325, 70, 28, 83, 325, 70, 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, 285, 73, 67, 5420, 28, 944, 13, 76, 73, 67, 5420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7800, 300, 66, 628, 220, 220, 220, 2488, 12708, 24396, 198, 220, 220, 220, 825, 422, 62, 44601, 7, 44601, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13610, 281, 1058, 4871, 25, 63, 9237, 8053, 63, 422, 257, 1058, 4871, 25, 63, 301, 278, 2433, 13, 15047, 22019, 303, 63, 2134, 13, 5740, 326, 477, 198, 220, 220, 220, 220, 220, 220, 220, 2995, 287, 257, 1813, 640, 9874, 481, 423, 262, 976, 640, 17977, 13, 628, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 300, 66, 25, 1058, 4871, 25, 63, 301, 278, 2433, 13, 15047, 22019, 303, 63, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4401, 12133, 284, 779, 329, 6282, 286, 262, 1785, 1351, 13, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 198, 220, 220, 220, 220, 220, 220, 220, 35656, 198, 220, 220, 220, 220, 220, 220, 220, 819, 25, 1058, 4871, 25, 63, 9237, 8053, 63, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 7186, 1351, 286, 48190, 10325, 1661, 7560, 422, 262, 1657, 12133, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 7854, 541, 306, 1661, 416, 1271, 286, 9853, 198, 220, 220, 220, 220, 220, 220, 220, 1661, 796, 16410, 72, 60, 1635, 493, 7, 73, 8, 329, 1312, 11, 474, 287, 19974, 7, 44601, 13, 2435, 11, 300, 66, 13, 9127, 82, 15437, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1482, 9246, 268, 378, 477, 8341, 198, 220, 220, 220, 220, 220, 220, 220, 1661, 796, 685, 72, 329, 474, 287, 1661, 329, 1312, 287, 474, 60, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 8558, 8053, 7, 2435, 28, 22355, 11, 308, 20259, 28, 44601, 13, 13655, 72, 8, 628, 220, 220, 220, 825, 29308, 62, 22355, 7, 944, 11, 300, 66, 11, 779, 62, 22018, 500, 28, 25101, 11, 9874, 62, 2435, 28, 14202, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 14534, 306, 8333, 357, 14323, 5039, 8, 48190, 10325, 1661, 284, 281, 1058, 4871, 25, 63, 9237, 8053, 63, 422, 257, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4871, 25, 63, 301, 278, 2433, 13, 15047, 22019, 303, 63, 2134, 11, 1262, 262, 13427, 12, 260, 29192, 2446, 13, 628, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 300, 66, 25, 1058, 4871, 25, 63, 301, 278, 2433, 13, 15047, 22019, 303, 63, 2134, 628, 220, 220, 220, 220, 220, 220, 220, 3819, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 34400, 198, 220, 220, 220, 220, 220, 220, 220, 779, 62, 22018, 500, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2034, 13907, 1920, 262, 1657, 12133, 351, 257, 4328, 500, 284, 3368, 9874, 768, 3048, 628, 220, 220, 220, 220, 220, 220, 220, 9874, 62, 2435, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 9874, 640, 286, 262, 1657, 12133, 11, 611, 340, 2476, 284, 307, 7368, 329, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6596, 15440, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 198, 220, 220, 220, 220, 220, 220, 220, 35656, 198, 220, 220, 220, 220, 220, 220, 220, 1661, 1058, 7177, 12, 2339, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3184, 4817, 48190, 10325, 1661, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 422, 24276, 2433, 13, 14323, 8927, 13, 8692, 1330, 29308, 62, 22355, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2435, 796, 29308, 62, 22355, 7, 44601, 11, 779, 62, 22018, 500, 28, 1904, 62, 22018, 500, 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, 9874, 62, 2435, 28, 8800, 62, 2435, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 13655, 72, 796, 300, 66, 13, 13655, 72, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 77, 9127, 82, 796, 18896, 7, 944, 13, 2435, 8, 628, 220, 220, 220, 825, 29308, 62, 877, 70, 444, 7, 944, 11, 10958, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2195, 570, 357, 14323, 5039, 8, 27598, 284, 1785, 1351, 422, 257, 10958, 13, 628, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 10958, 25, 362, 12, 67, 7177, 393, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 412, 25649, 444, 9051, 11188, 28462, 274, 13, 383, 362, 12, 67, 7177, 393, 1351, 1276, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 423, 27598, 1973, 262, 717, 15793, 290, 28462, 274, 1973, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1218, 530, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 77, 9127, 82, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 985, 261, 7203, 32478, 900, 640, 3815, 393, 1193, 8467, 2148, 9853, 19570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 4443, 6582, 11, 1351, 8, 393, 318, 39098, 7, 4443, 6582, 11, 45941, 13, 358, 18747, 2599, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2568, 796, 45941, 13, 292, 18747, 7, 4443, 6582, 38381, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 28462, 274, 796, 45941, 13, 292, 18747, 7, 4443, 6582, 38381, 16, 60, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 318, 39098, 7, 22554, 11, 45941, 13, 358, 18747, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 12901, 12331, 7203, 49738, 6582, 1276, 307, 257, 362, 12, 67, 7177, 393, 1351, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 5994, 12331, 7203, 49738, 6582, 1276, 307, 257, 362, 12, 67, 7177, 393, 1351, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 13610, 257, 900, 286, 12867, 3815, 198, 220, 220, 220, 220, 220, 220, 220, 1861, 796, 28462, 274, 1220, 12178, 7, 16345, 7, 69, 22564, 274, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 27131, 378, 23818, 12867, 198, 220, 220, 220, 220, 220, 220, 220, 10973, 62, 1676, 65, 796, 45941, 13, 66, 5700, 388, 7, 1676, 65, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 15315, 399, 4738, 3146, 1022, 657, 290, 352, 11, 810, 399, 318, 262, 2546, 286, 1785, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 371, 796, 2179, 13, 403, 6933, 7, 15, 11, 352, 11, 2116, 13, 77, 9127, 82, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 2195, 570, 27598, 284, 2995, 11188, 284, 262, 4738, 3146, 7428, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 22554, 796, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 292, 18747, 26933, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2568, 58, 37659, 13, 853, 3003, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10973, 62, 1676, 65, 6624, 45941, 13, 1084, 7, 36340, 62, 1676, 65, 58, 7, 36340, 62, 1676, 65, 532, 374, 8, 1875, 657, 60, 4008, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 374, 287, 371, 12962, 628, 220, 220, 220, 825, 4654, 7, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 15251, 734, 1058, 4871, 25, 63, 9237, 8053, 63, 5563, 656, 530, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1002, 1111, 389, 6565, 11, 281, 6565, 1058, 4871, 25, 63, 9237, 8053, 63, 318, 4504, 13, 628, 220, 220, 220, 220, 220, 220, 220, 7963, 3792, 389, 12606, 611, 262, 1785, 8341, 389, 625, 257, 2219, 640, 16654, 11, 198, 220, 220, 220, 220, 220, 220, 220, 290, 598, 1631, 4306, 13, 628, 220, 220, 220, 220, 220, 220, 220, 7559, 14415, 15506, 290, 7559, 7566, 15506, 3520, 7559, 14202, 15506, 611, 484, 389, 7559, 14202, 15506, 287, 1111, 13, 15323, 11, 657, 318, 973, 198, 220, 220, 220, 220, 220, 220, 220, 355, 257, 4277, 1988, 329, 262, 1058, 4871, 25, 63, 9237, 8053, 63, 810, 484, 547, 6045, 13, 628, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 584, 1058, 1058, 4871, 25, 63, 9237, 8053, 63, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 584, 1058, 4871, 25, 63, 9237, 8053, 63, 2134, 543, 318, 4385, 284, 307, 5399, 351, 13, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 198, 220, 220, 220, 220, 220, 220, 220, 35656, 198, 220, 220, 220, 220, 220, 220, 220, 4600, 1990, 62, 3605, 63, 1058, 1058, 4871, 25, 63, 9237, 8053, 63, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 7186, 1058, 4871, 25, 63, 9237, 8053, 63, 2134, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 819, 62, 3605, 796, 8558, 8053, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 28664, 14512, 584, 13, 28664, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 985, 261, 7203, 464, 640, 6323, 318, 1180, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8554, 262, 13805, 70, 372, 416, 4277, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 819, 62, 3605, 13, 28664, 796, 45941, 13, 9806, 26933, 944, 13, 28664, 11, 584, 13, 28664, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 2435, 318, 6045, 290, 584, 13, 2435, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 819, 62, 3605, 628, 220, 220, 220, 220, 220, 220, 220, 611, 357, 944, 13, 2435, 318, 6045, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 985, 261, 7203, 3198, 286, 262, 1785, 8341, 345, 389, 1673, 36686, 803, 318, 6565, 19570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2435, 796, 45941, 13, 292, 18747, 26933, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 357, 847, 13, 2435, 318, 6045, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 985, 261, 7203, 3198, 286, 262, 1785, 8341, 345, 389, 1673, 36686, 803, 318, 6565, 19570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 584, 13, 2435, 796, 45941, 13, 292, 18747, 26933, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 309, 37668, 329, 33974, 35, 31688, 25, 16, 4580, 12227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 45941, 13, 271, 19836, 7, 944, 13, 76, 73, 67, 5420, 11, 584, 13, 76, 73, 67, 5420, 11, 379, 349, 28, 16, 68, 12, 21, 1220, 807, 2414, 405, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 584, 796, 584, 13, 3803, 62, 76, 73, 67, 5420, 7, 944, 13, 76, 73, 67, 5420, 8, 628, 220, 220, 220, 220, 220, 220, 220, 819, 62, 3605, 13, 2435, 796, 45941, 13, 1102, 9246, 268, 378, 26933, 944, 13, 2435, 11, 584, 13, 2435, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 1502, 796, 45941, 13, 22046, 419, 7, 1990, 62, 3605, 13, 2435, 8, 198, 220, 220, 220, 220, 220, 220, 220, 819, 62, 3605, 13, 2435, 796, 819, 62, 3605, 13, 2435, 58, 2875, 60, 628, 220, 220, 220, 220, 220, 220, 220, 611, 357, 944, 13, 14415, 318, 6045, 8, 290, 357, 847, 13, 14415, 318, 6045, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 819, 62, 3605, 13, 14415, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 357, 944, 13, 14415, 318, 6045, 8, 393, 357, 847, 13, 14415, 318, 6045, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 14415, 796, 8333, 62, 8367, 62, 361, 62, 23108, 7, 944, 13, 14415, 11, 45941, 13, 9107, 418, 62, 2339, 7, 944, 13, 2435, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 584, 13, 14415, 796, 8333, 62, 8367, 62, 361, 62, 23108, 7, 847, 13, 14415, 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, 45941, 13, 9107, 418, 62, 2339, 7, 847, 13, 2435, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 611, 357, 944, 13, 14415, 318, 407, 6045, 8, 290, 357, 847, 13, 14415, 318, 407, 6045, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 819, 62, 3605, 13, 14415, 796, 45941, 13, 1102, 9246, 268, 378, 26933, 944, 13, 14415, 11, 584, 13, 14415, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 819, 62, 3605, 13, 14415, 796, 819, 62, 3605, 13, 14415, 58, 2875, 60, 628, 220, 220, 220, 220, 220, 220, 220, 611, 357, 944, 13, 22554, 318, 6045, 8, 290, 357, 847, 13, 22554, 318, 6045, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 819, 62, 3605, 13, 22554, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 357, 944, 13, 22554, 318, 6045, 8, 393, 357, 847, 13, 22554, 318, 6045, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 22554, 796, 8333, 62, 8367, 62, 361, 62, 23108, 7, 944, 13, 22554, 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, 45941, 13, 9107, 418, 62, 2339, 7, 944, 13, 2435, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 584, 13, 22554, 796, 8333, 62, 8367, 62, 361, 62, 23108, 7, 847, 13, 22554, 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, 45941, 13, 9107, 418, 62, 2339, 7, 847, 13, 2435, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 611, 357, 944, 13, 22554, 318, 407, 6045, 8, 290, 357, 847, 13, 22554, 318, 407, 6045, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 819, 62, 3605, 13, 22554, 796, 45941, 13, 1102, 9246, 268, 378, 26933, 944, 13, 22554, 11, 584, 13, 22554, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 819, 62, 3605, 13, 22554, 796, 819, 62, 3605, 13, 22554, 58, 2875, 60, 628, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 13655, 72, 318, 6045, 290, 584, 13, 13655, 72, 318, 407, 6045, 290, 18896, 7, 944, 13, 2435, 8, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 13655, 72, 796, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8333, 62, 8367, 62, 361, 62, 23108, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 13655, 72, 11, 45941, 13, 292, 18747, 26933, 58, 944, 13, 2435, 58, 15, 60, 532, 2116, 13, 28664, 1220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2435, 58, 12, 16, 60, 1343, 2116, 13, 28664, 1220, 362, 11907, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 611, 584, 13, 13655, 72, 318, 6045, 290, 2116, 13, 13655, 72, 318, 407, 6045, 290, 18896, 7, 847, 13, 2435, 8, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 584, 13, 13655, 72, 796, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8333, 62, 8367, 62, 361, 62, 23108, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 584, 13, 13655, 72, 11, 45941, 13, 292, 18747, 26933, 58, 847, 13, 2435, 58, 15, 60, 532, 584, 13, 28664, 1220, 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, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 584, 13, 2435, 58, 12, 16, 60, 1343, 584, 13, 28664, 1220, 362, 11907, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 611, 357, 944, 13, 13655, 72, 318, 6045, 8, 290, 357, 847, 13, 13655, 72, 318, 6045, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 819, 62, 3605, 13, 13655, 72, 796, 6045, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 357, 944, 13, 13655, 72, 318, 407, 6045, 8, 290, 357, 847, 13, 13655, 72, 318, 407, 6045, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2198, 62, 25512, 378, 7, 944, 13, 13655, 72, 11, 584, 13, 13655, 72, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 819, 62, 3605, 13, 13655, 72, 796, 24443, 62, 13655, 271, 7, 944, 13, 13655, 72, 11, 584, 13, 13655, 72, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 985, 261, 10786, 19555, 3792, 287, 777, 734, 1785, 8341, 466, 407, 21721, 379, 477, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 13102, 2667, 2427, 286, 8024, 281, 21721, 2637, 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, 819, 62, 3605, 13, 13655, 72, 796, 3272, 62, 13655, 271, 26933, 944, 13, 13655, 72, 11, 584, 13, 13655, 72, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 819, 62, 3605, 13, 76, 73, 67, 5420, 796, 2116, 13, 76, 73, 67, 5420, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 819, 62, 3605, 628, 220, 220, 220, 2488, 12708, 24396, 198, 220, 220, 220, 825, 1100, 7, 34345, 11, 5794, 62, 2625, 27729, 293, 1600, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 4149, 257, 1058, 4871, 25, 63, 15047, 22019, 303, 63, 2134, 422, 2393, 13, 628, 220, 220, 220, 220, 220, 220, 220, 16888, 4855, 17519, 389, 628, 220, 220, 220, 220, 220, 220, 220, 1635, 2298, 293, 357, 1662, 7151, 329, 890, 12, 4354, 6143, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 339, 64, 1058, 376, 29722, 8558, 3696, 422, 357, 4053, 11, 617, 8, 11179, 1921, 25793, 12, 15999, 10566, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 597, 584, 17519, 11670, 351, 262, 8786, 287, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 4871, 25, 63, 459, 28338, 13, 11487, 13, 10962, 63, 357, 292, 979, 72, 13, 721, 21370, 11, 289, 7568, 20, 11, 3503, 2014, 628, 220, 220, 220, 220, 220, 220, 220, 13283, 326, 761, 262, 1058, 4871, 25, 63, 459, 28338, 13, 11487, 13, 10962, 63, 7071, 17191, 3994, 198, 220, 220, 220, 220, 220, 220, 220, 379, 1551, 257, 7559, 2435, 15506, 5721, 13, 3819, 8018, 15180, 389, 7559, 22554, 15506, 290, 198, 220, 220, 220, 220, 220, 220, 220, 7559, 14415, 15506, 13, 198, 220, 220, 220, 220, 220, 220, 220, 383, 4277, 355, 979, 72, 5794, 318, 13105, 44189, 357, 2943, 50, 53, 737, 6060, 17519, 198, 220, 220, 220, 220, 220, 220, 220, 6493, 262, 11389, 1634, 286, 20150, 357, 10508, 355, 412, 7902, 53, 290, 5572, 37, 20, 8, 460, 198, 220, 220, 220, 220, 220, 220, 220, 3994, 477, 1785, 4868, 12608, 884, 355, 7559, 3411, 15506, 11, 7559, 13655, 72, 15506, 11, 3503, 351, 198, 220, 220, 220, 220, 220, 220, 220, 645, 2383, 2994, 286, 1321, 13, 3819, 2393, 17519, 1244, 4425, 636, 198, 220, 220, 220, 220, 220, 220, 220, 286, 262, 20150, 11, 523, 1276, 307, 973, 351, 1337, 13, 628, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 29472, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10644, 290, 2393, 1438, 329, 262, 2393, 284, 307, 1100, 13, 628, 220, 220, 220, 220, 220, 220, 220, 5794, 59, 62, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14898, 3689, 389, 705, 27729, 293, 3256, 705, 21632, 3256, 290, 597, 4600, 10962, 63, 12, 15999, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5794, 884, 355, 705, 71, 7568, 20, 3256, 705, 292, 979, 72, 13, 721, 21370, 3256, 3503, 13, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 198, 220, 220, 220, 220, 220, 220, 220, 35656, 198, 220, 220, 220, 220, 220, 220, 220, 819, 25, 1058, 4871, 25, 63, 9237, 8053, 63, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 1058, 4871, 25, 63, 9237, 8053, 63, 2134, 49594, 422, 2393, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 5794, 62, 6624, 705, 27729, 293, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 34345, 11, 705, 26145, 11537, 355, 277, 26801, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2298, 293, 13, 2220, 7, 69, 26801, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 5794, 62, 287, 19203, 21632, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 819, 83, 7890, 796, 3440, 62, 31534, 62, 392, 62, 13655, 271, 7, 34345, 11, 12429, 46265, 22046, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 8558, 8053, 7, 2435, 28, 1990, 83, 7890, 13, 1990, 62, 4868, 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, 308, 20259, 28, 1990, 83, 7890, 13, 13655, 72, 62, 4868, 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, 31028, 28, 1990, 83, 7890, 13, 14415, 62, 4868, 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, 2568, 28, 1990, 83, 7890, 13, 22554, 62, 4868, 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, 285, 73, 67, 5420, 28, 1990, 83, 7890, 13, 76, 73, 67, 5420, 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, 6480, 28, 1990, 83, 7890, 13, 259, 2536, 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, 4365, 28, 1990, 83, 7890, 13, 3411, 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, 13639, 28, 1990, 83, 7890, 13, 25677, 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, 31029, 62, 312, 28, 1990, 83, 7890, 13, 15255, 9250, 62, 312, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 5794, 62, 6624, 705, 292, 979, 72, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5794, 62, 796, 705, 292, 979, 72, 13, 721, 21370, 6, 628, 220, 220, 220, 220, 220, 220, 220, 40379, 796, 8655, 13, 961, 7, 34345, 11, 5794, 28, 18982, 62, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 8558, 8053, 13, 6738, 62, 459, 28338, 62, 11487, 7, 912, 8, 628, 220, 220, 220, 825, 3551, 7, 944, 11, 29472, 11, 5794, 62, 11639, 27729, 293, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 19430, 281, 1058, 4871, 25, 63, 9237, 8053, 63, 2134, 284, 2393, 13, 628, 220, 220, 220, 220, 220, 220, 220, 33671, 2393, 17519, 389, 628, 220, 220, 220, 220, 220, 220, 220, 1635, 2298, 293, 357, 1662, 7151, 329, 890, 12, 4354, 6143, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 597, 584, 17519, 11670, 351, 262, 8786, 287, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 4871, 25, 63, 459, 28338, 13, 11487, 13, 10962, 63, 357, 292, 979, 72, 13, 721, 21370, 11, 289, 7568, 20, 11, 3503, 2014, 628, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 29472, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6530, 290, 3108, 286, 262, 2393, 284, 3613, 262, 1785, 1351, 284, 492, 628, 220, 220, 220, 220, 220, 220, 220, 5794, 62, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 2393, 5794, 284, 3650, 262, 1366, 287, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14898, 3689, 389, 7559, 27729, 293, 15506, 11, 7559, 71, 7568, 20, 15506, 11, 7559, 292, 979, 72, 15506, 11, 7559, 21013, 15506, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 5794, 62, 6624, 705, 27729, 293, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 7, 34345, 11, 366, 39346, 4943, 355, 277, 26801, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2298, 293, 13, 39455, 7, 944, 11, 277, 26801, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 220, 220, 220, 220, 611, 5794, 62, 6624, 705, 292, 979, 72, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5794, 62, 796, 705, 292, 979, 72, 13, 721, 21370, 6, 628, 220, 220, 220, 220, 220, 220, 220, 40379, 796, 2116, 13, 1462, 62, 459, 28338, 62, 11487, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40379, 13, 13564, 7, 34345, 11, 5794, 28, 18982, 62, 11, 49312, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11389, 1096, 62, 28961, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 5994, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40379, 13, 13564, 7, 34345, 11, 5794, 28, 18982, 62, 11, 49312, 28, 17821, 8, 628, 220, 220, 220, 825, 4174, 62, 25124, 2435, 7, 944, 11, 2636, 2435, 11, 287, 5372, 28, 25101, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 44836, 2636, 2435, 8106, 284, 428, 1785, 1351, 13, 628, 220, 220, 220, 220, 220, 220, 220, 15891, 7159, 287, 7559, 46265, 22046, 15506, 389, 3804, 284, 4600, 1136, 62, 25124, 2435, 62, 27932, 63, 628, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 2636, 2435, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11052, 286, 2636, 640, 284, 4174, 284, 1366, 198, 220, 220, 220, 220, 220, 220, 220, 287, 5372, 1058, 20512, 11, 4277, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 6407, 11, 4174, 262, 2636, 2435, 284, 262, 1459, 1785, 1351, 13, 15323, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 257, 649, 1785, 1351, 13, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 198, 220, 220, 220, 220, 220, 220, 220, 35656, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 15596, 62, 4868, 1058, 4600, 9237, 8053, 63, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7066, 4400, 1785, 1351, 13, 611, 4600, 259, 5372, 63, 318, 6407, 11, 428, 318, 262, 5128, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 29083, 329, 2636, 2435, 11, 4306, 428, 318, 257, 649, 2134, 13, 198, 220, 220, 220, 220, 220, 220, 220, 3224, 62, 22915, 1058, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5514, 4504, 611, 4600, 7783, 62, 439, 63, 318, 6407, 13, 4091, 4600, 1136, 62, 25124, 2435, 62, 27932, 63, 329, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 517, 3307, 13, 628, 220, 220, 220, 220, 220, 220, 220, 21066, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2995, 796, 45941, 13, 18747, 26933, 16, 11, 352, 13, 2713, 11, 352, 13, 2998, 11, 352, 13, 2919, 11, 352, 13, 16, 11, 362, 11, 362, 13, 17, 11, 513, 11, 513, 13, 16, 11, 513, 13, 17, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2995, 796, 8558, 8053, 7, 31534, 8, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2995, 13, 14415, 28, 37659, 13, 18747, 26933, 16, 11, 362, 11, 362, 11, 362, 11, 362, 11, 352, 11, 352, 11, 352, 11, 362, 11, 352, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2995, 13, 22554, 28, 37659, 13, 18747, 26933, 16, 11, 362, 11, 362, 11, 362, 11, 362, 11, 352, 11, 352, 11, 352, 11, 362, 11, 352, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2995, 13, 76, 73, 67, 5420, 796, 838, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 1226, 83, 62, 31534, 11, 1005, 2100, 796, 2995, 13, 39014, 62, 25124, 2435, 7, 15, 13, 1157, 11, 287, 5372, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15942, 577, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 62, 439, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 1226, 83, 62, 31534, 318, 2995, 198, 220, 220, 220, 220, 220, 220, 220, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2938, 796, 45941, 13, 18747, 26933, 16, 11, 362, 11, 362, 13, 17, 11, 513, 11, 513, 13, 17, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 45941, 13, 439, 19836, 7, 69, 2326, 62, 31534, 13, 2435, 11, 2938, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 45941, 13, 439, 19836, 7, 69, 2326, 62, 31534, 13, 14415, 11, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 45941, 13, 439, 19836, 7, 69, 2326, 62, 31534, 13, 22554, 11, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 45941, 13, 439, 19836, 7, 31534, 13, 14415, 11, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 1226, 83, 62, 31534, 796, 2995, 13, 39014, 62, 25124, 2435, 7, 15, 13, 1157, 11, 287, 5372, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15942, 577, 28, 25101, 8, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 1226, 83, 62, 31534, 318, 2995, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1957, 62, 1186, 439, 796, 479, 86, 22046, 13, 12924, 10786, 7783, 62, 439, 3256, 10352, 8, 628, 220, 220, 220, 220, 220, 220, 220, 9335, 11, 1005, 439, 796, 651, 62, 25124, 2435, 62, 27932, 7, 944, 13, 2435, 11, 2636, 2435, 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, 1441, 62, 439, 28, 17821, 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, 12429, 46265, 22046, 8, 628, 220, 220, 220, 220, 220, 220, 220, 649, 62, 1990, 796, 2116, 13, 39014, 62, 27932, 7, 27932, 11, 287, 5372, 28, 259, 5372, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 1957, 62, 1186, 439, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 1990, 796, 685, 3605, 62, 1990, 11, 1005, 439, 60, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 649, 62, 1990, 628, 220, 220, 220, 825, 1487, 62, 76, 73, 67, 5420, 7, 944, 11, 649, 62, 76, 73, 67, 5420, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 19400, 262, 33974, 35, 4941, 640, 357, 44, 37882, 31688, 8, 286, 262, 1657, 12133, 13, 628, 220, 220, 220, 220, 220, 220, 220, 3782, 481, 307, 783, 6412, 284, 428, 649, 33974, 35, 31688, 628, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 76, 73, 67, 5420, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 968, 33974, 35, 31688, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 198, 220, 220, 220, 220, 220, 220, 220, 35656, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 44601, 1058, 1058, 4871, 25, 63, 9237, 8053, 63, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 649, 22228, 14869, 416, 33974, 35, 31688, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 640, 62, 30846, 796, 357, 944, 13, 76, 73, 67, 5420, 532, 649, 62, 76, 73, 67, 5420, 8, 1635, 807, 2414, 405, 628, 220, 220, 220, 220, 220, 220, 220, 649, 62, 1990, 796, 2116, 13, 30846, 7, 2435, 62, 30846, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 1990, 13, 76, 73, 67, 5420, 796, 649, 62, 76, 73, 67, 5420, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 649, 62, 1990, 628, 220, 220, 220, 825, 6482, 7, 944, 11, 640, 62, 30846, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 15576, 262, 2995, 290, 262, 7963, 3792, 287, 640, 13, 628, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 640, 62, 30846, 25, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 640, 16654, 416, 543, 262, 1657, 12133, 481, 307, 14869, 357, 259, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 976, 4991, 355, 262, 640, 7177, 287, 1058, 4871, 25, 63, 15047, 22019, 303, 63, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 198, 220, 220, 220, 220, 220, 220, 220, 35656, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 1990, 1058, 1657, 22019, 303, 13, 15047, 22019, 303, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 649, 1785, 1351, 14869, 416, 7559, 2435, 62, 30846, 15506, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 1990, 796, 4866, 13, 22089, 30073, 7, 944, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 1990, 13, 2435, 796, 649, 62, 1990, 13, 2435, 1343, 640, 62, 30846, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 1990, 13, 13655, 72, 796, 649, 62, 1990, 13, 13655, 72, 1343, 640, 62, 30846, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 649, 62, 1990, 628, 220, 220, 220, 2488, 12708, 24396, 628, 220, 220, 220, 2488, 12708, 24396, 198 ]
2.128353
8,835
from styx_msgs.msg import TrafficLight import cv2 import numpy as np import tensorflow as tf import datetime import rospy from std_msgs.msg import String from sensor_msgs.msg import Image from cv_bridge import CvBridge, CvBridgeError
[ 6738, 8944, 87, 62, 907, 14542, 13, 19662, 1330, 23624, 15047, 198, 198, 11748, 269, 85, 17, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 11192, 273, 11125, 355, 48700, 198, 11748, 4818, 8079, 198, 11748, 686, 2777, 88, 198, 6738, 14367, 62, 907, 14542, 13, 19662, 1330, 10903, 198, 6738, 12694, 62, 907, 14542, 13, 19662, 1330, 7412, 198, 6738, 269, 85, 62, 9458, 1330, 327, 85, 37385, 11, 327, 85, 37385, 12331, 628 ]
3.146667
75
import numpy as np import pandas as pd def validate_cISSN(issn:str) -> bool: """ Validates the last character (c) of the ISSN number, based on the first 7 digits returns: boolean: True if c is valid False otherwise """ assert type(issn) == str, "issn must be a string" issn_num = issn[:4] + issn[5:-1] issn_c = issn[-1] # check c validity issn_num_sum = 0 inv_index = 8 for num in issn_num: num = int(num) issn_num_sum += num*inv_index inv_index -= 1 mod = issn_num_sum%11 if mod == 0: c = 0 else: c = 11-mod if c == 10: c = 'X' return str(c) == issn_c # print(validate_cISSN("0046-225X")) def hasAllColumns(df:pd.core.frame.DataFrame) -> "tuple(bool, bool, bool)": """ Checks if there are any missing columns in the df returns: (True, [missing cols]) if missing cols present, (False, []) otherwise """ COLS = ["journal", "issn", "access", "notes"] df_cols = [] hasAllCols = True missingCols = [] for col in list(df.columns): col = str(col) col = "".join(col.split()) df_cols.append(col) for col in COLS: hasAllCols = col in df_cols if not hasAllCols: missingCols.append(col) return hasAllCols, missingCols def noDuplicates(df): """ Checks if there are any duplicated rows in the df """ noDuplicates = list(df.duplicated().unique()) == [False] return noDuplicates def hasNaN(df:pd.core.frame.DataFrame, includeNotes=False) -> "tuple(bool, list)": """ Checks if there are any missing values in each column of the df returns: (True, [cols with missing values]) if missing values present in any column, (False, []) otherwise """ if not includeNotes: df = df.drop("notes", inplace=False, axis=1) df.fillna(value=np.nan, inplace=True) # for replacing None values (.replace does not work with None) oddWords = ["missing", "MISSING", "Missing", "null", "Null", "NULL", "None", "none", "NONE", "N/A", "n/a", "-", '', ' ', " ", " ", "x", np.inf] for word in oddWords: df.replace(word, np.nan, inplace=True) isnullCols = {} hasNaNCols = [] hasNaN = False for col in df.columns: isnullCols[col] = df[col].isnull().unique() if (True in isnullCols[col]): hasNaN = True hasNaNCols.append(col) return hasNaN, hasNaNCols def allJournalsCounted(df:pd.core.frame.DataFrame, allJournals:list) -> "tuple(bool, list)": """ Checks if all journals are recorded for a university df returns: (True, []) if all journals are present, (False, [uncountedJournals]) otherwise """ df_journals = list(df["journal"]) uncountedJournals = [] allAreCounted = True for journal in allJournals: if journal not in df_journals: allAreCounted = False uncountedJournals.append(journal) return allAreCounted, uncountedJournals def journalsMatchISSN(gtruth_df:pd.core.frame.DataFrame, observed_df:pd.core.frame.DataFrame) -> "tuple(bool, list)": """ Compares the journal, ISSN pairing in gtruth_df with observed_df to check if they match. Both parameters require pd.DataFrames with two columns (journal, issn). returns: (True, []) if no mismatch found, (False, [mismatchedJournals]) otherwise """ gTruthDf = gtruth_df.set_index("journal", inplace=False).astype("string") observedDf = observed_df.set_index("journal", inplace=False).astype("string") mismatchedJournals = [] noMismatch = True for j in list(gTruthDf.index): if str(gTruthDf.loc[j]) != str(observedDf.loc[j]): noMismatch = False mismatchedJournals.append(j) return noMismatch, mismatchedJournals
[ 11748, 299, 32152, 355, 45941, 201, 198, 11748, 19798, 292, 355, 279, 67, 201, 198, 201, 198, 201, 198, 4299, 26571, 62, 66, 1797, 15571, 7, 747, 77, 25, 2536, 8, 4613, 20512, 25, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 3254, 37051, 262, 938, 2095, 357, 66, 8, 286, 262, 3180, 15571, 1271, 11, 1912, 319, 262, 717, 767, 19561, 201, 198, 220, 220, 220, 5860, 25, 25131, 25, 6407, 611, 269, 318, 4938, 10352, 4306, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 6818, 2099, 7, 747, 77, 8, 6624, 965, 11, 366, 747, 77, 1276, 307, 257, 4731, 1, 201, 198, 201, 198, 220, 220, 220, 1189, 77, 62, 22510, 796, 1189, 77, 58, 25, 19, 60, 1343, 1189, 77, 58, 20, 21912, 16, 60, 201, 198, 220, 220, 220, 1189, 77, 62, 66, 796, 1189, 77, 58, 12, 16, 60, 201, 198, 201, 198, 220, 220, 220, 1303, 2198, 269, 19648, 201, 198, 220, 220, 220, 1189, 77, 62, 22510, 62, 16345, 796, 657, 201, 198, 220, 220, 220, 800, 62, 9630, 796, 807, 201, 198, 220, 220, 220, 329, 997, 287, 1189, 77, 62, 22510, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 997, 796, 493, 7, 22510, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1189, 77, 62, 22510, 62, 16345, 15853, 997, 9, 16340, 62, 9630, 201, 198, 220, 220, 220, 220, 220, 220, 220, 800, 62, 9630, 48185, 352, 201, 198, 201, 198, 220, 220, 220, 953, 796, 1189, 77, 62, 22510, 62, 16345, 4, 1157, 201, 198, 220, 220, 220, 611, 953, 6624, 657, 25, 269, 796, 657, 201, 198, 220, 220, 220, 2073, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 269, 796, 1367, 12, 4666, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 269, 6624, 838, 25, 269, 796, 705, 55, 6, 201, 198, 201, 198, 220, 220, 220, 1441, 965, 7, 66, 8, 6624, 1189, 77, 62, 66, 201, 198, 201, 198, 201, 198, 2, 3601, 7, 12102, 378, 62, 66, 1797, 15571, 7203, 405, 3510, 12, 18182, 55, 48774, 201, 198, 201, 198, 201, 198, 4299, 468, 3237, 39470, 82, 7, 7568, 25, 30094, 13, 7295, 13, 14535, 13, 6601, 19778, 8, 4613, 366, 83, 29291, 7, 30388, 11, 20512, 11, 20512, 8, 1298, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 47719, 611, 612, 389, 597, 4814, 15180, 287, 262, 47764, 201, 198, 220, 220, 220, 5860, 25, 357, 17821, 11, 685, 45688, 951, 82, 12962, 611, 4814, 951, 82, 1944, 11, 357, 25101, 11, 685, 12962, 4306, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 20444, 50, 796, 14631, 24891, 1600, 366, 747, 77, 1600, 366, 15526, 1600, 366, 17815, 8973, 201, 198, 220, 220, 220, 47764, 62, 4033, 82, 796, 17635, 201, 198, 220, 220, 220, 468, 3237, 5216, 82, 796, 6407, 201, 198, 220, 220, 220, 4814, 5216, 82, 796, 17635, 201, 198, 220, 220, 220, 329, 951, 287, 1351, 7, 7568, 13, 28665, 82, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 951, 796, 965, 7, 4033, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 951, 796, 366, 1911, 22179, 7, 4033, 13, 35312, 28955, 201, 198, 220, 220, 220, 220, 220, 220, 220, 47764, 62, 4033, 82, 13, 33295, 7, 4033, 8, 201, 198, 220, 220, 220, 329, 951, 287, 20444, 50, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 468, 3237, 5216, 82, 796, 951, 287, 47764, 62, 4033, 82, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 468, 3237, 5216, 82, 25, 4814, 5216, 82, 13, 33295, 7, 4033, 8, 201, 198, 201, 198, 220, 220, 220, 1441, 468, 3237, 5216, 82, 11, 4814, 5216, 82, 201, 198, 201, 198, 4299, 645, 35660, 489, 16856, 7, 7568, 2599, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 47719, 611, 612, 389, 597, 14184, 3474, 15274, 287, 262, 47764, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 645, 35660, 489, 16856, 796, 1351, 7, 7568, 13, 646, 489, 3474, 22446, 34642, 28955, 6624, 685, 25101, 60, 201, 198, 201, 198, 220, 220, 220, 1441, 645, 35660, 489, 16856, 201, 198, 201, 198, 201, 198, 4299, 468, 26705, 45, 7, 7568, 25, 30094, 13, 7295, 13, 14535, 13, 6601, 19778, 11, 2291, 16130, 28, 25101, 8, 4613, 366, 83, 29291, 7, 30388, 11, 1351, 8, 1298, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 47719, 611, 612, 389, 597, 4814, 3815, 287, 1123, 5721, 286, 262, 47764, 201, 198, 220, 220, 220, 5860, 25, 357, 17821, 11, 685, 4033, 82, 351, 4814, 3815, 12962, 611, 4814, 3815, 1944, 287, 597, 5721, 11, 357, 25101, 11, 685, 12962, 4306, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 611, 407, 2291, 16130, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 47764, 796, 47764, 13, 14781, 7203, 17815, 1600, 287, 5372, 28, 25101, 11, 16488, 28, 16, 8, 201, 198, 201, 198, 220, 220, 220, 47764, 13, 20797, 2616, 7, 8367, 28, 37659, 13, 12647, 11, 287, 5372, 28, 17821, 8, 1303, 329, 13586, 6045, 3815, 20262, 33491, 857, 407, 670, 351, 6045, 8, 201, 198, 220, 220, 220, 5629, 37117, 796, 14631, 45688, 1600, 366, 44, 16744, 2751, 1600, 366, 43730, 1600, 366, 8423, 1600, 366, 35067, 1600, 366, 33991, 1600, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 14202, 1600, 366, 23108, 1600, 366, 45, 11651, 1600, 366, 45, 14, 32, 1600, 366, 77, 14, 64, 1600, 27444, 1600, 705, 3256, 705, 46083, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 220, 33172, 366, 220, 220, 33172, 366, 87, 1600, 45941, 13, 10745, 60, 201, 198, 220, 220, 220, 329, 1573, 287, 5629, 37117, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 47764, 13, 33491, 7, 4775, 11, 45941, 13, 12647, 11, 287, 5372, 28, 17821, 8, 201, 198, 201, 198, 220, 220, 220, 2125, 724, 5216, 82, 796, 23884, 201, 198, 220, 220, 220, 468, 26705, 45, 5216, 82, 796, 17635, 201, 198, 220, 220, 220, 468, 26705, 45, 796, 10352, 201, 198, 220, 220, 220, 329, 951, 287, 47764, 13, 28665, 82, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2125, 724, 5216, 82, 58, 4033, 60, 796, 47764, 58, 4033, 4083, 271, 8423, 22446, 34642, 3419, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 357, 17821, 287, 2125, 724, 5216, 82, 58, 4033, 60, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 468, 26705, 45, 796, 6407, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 468, 26705, 45, 5216, 82, 13, 33295, 7, 4033, 8, 201, 198, 201, 198, 220, 220, 220, 1441, 468, 26705, 45, 11, 468, 26705, 45, 5216, 82, 201, 198, 201, 198, 4299, 477, 41, 18408, 12332, 276, 7, 7568, 25, 30094, 13, 7295, 13, 14535, 13, 6601, 19778, 11, 477, 41, 18408, 25, 4868, 8, 4613, 366, 83, 29291, 7, 30388, 11, 1351, 8, 1298, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 47719, 611, 477, 22790, 389, 6264, 329, 257, 6403, 47764, 201, 198, 220, 220, 220, 5860, 25, 357, 17821, 11, 685, 12962, 611, 477, 22790, 389, 1944, 11, 357, 25101, 11, 685, 403, 9127, 276, 41, 18408, 12962, 4306, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 47764, 62, 73, 18408, 796, 1351, 7, 7568, 14692, 24891, 8973, 8, 201, 198, 220, 220, 220, 4591, 608, 276, 41, 18408, 796, 17635, 201, 198, 220, 220, 220, 477, 8491, 12332, 276, 796, 6407, 201, 198, 220, 220, 220, 329, 3989, 287, 477, 41, 18408, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 3989, 407, 287, 47764, 62, 73, 18408, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 477, 8491, 12332, 276, 796, 10352, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4591, 608, 276, 41, 18408, 13, 33295, 7, 24891, 8, 201, 198, 201, 198, 220, 220, 220, 1441, 477, 8491, 12332, 276, 11, 4591, 608, 276, 41, 18408, 201, 198, 201, 198, 4299, 22790, 23850, 1797, 15571, 7, 70, 35310, 62, 7568, 25, 30094, 13, 7295, 13, 14535, 13, 6601, 19778, 11, 6515, 62, 7568, 25, 30094, 13, 7295, 13, 14535, 13, 6601, 19778, 8, 4613, 366, 83, 29291, 7, 30388, 11, 1351, 8, 1298, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 3082, 3565, 262, 3989, 11, 3180, 15571, 27356, 287, 308, 35310, 62, 7568, 351, 6515, 62, 7568, 284, 2198, 611, 484, 2872, 13, 201, 198, 220, 220, 220, 5747, 10007, 2421, 279, 67, 13, 6601, 35439, 351, 734, 15180, 357, 24891, 11, 1189, 77, 737, 201, 198, 220, 220, 220, 5860, 25, 357, 17821, 11, 685, 12962, 611, 645, 46318, 1043, 11, 357, 25101, 11, 685, 76, 1042, 14265, 41, 18408, 12962, 4306, 201, 198, 220, 220, 220, 37227, 201, 198, 220, 220, 220, 308, 38782, 35, 69, 796, 308, 35310, 62, 7568, 13, 2617, 62, 9630, 7203, 24891, 1600, 287, 5372, 28, 25101, 737, 459, 2981, 7203, 8841, 4943, 201, 198, 220, 220, 220, 6515, 35, 69, 796, 6515, 62, 7568, 13, 2617, 62, 9630, 7203, 24891, 1600, 287, 5372, 28, 25101, 737, 459, 2981, 7203, 8841, 4943, 201, 198, 220, 220, 220, 32691, 14265, 41, 18408, 796, 17635, 201, 198, 220, 220, 220, 645, 44, 1042, 963, 796, 6407, 201, 198, 220, 220, 220, 329, 474, 287, 1351, 7, 70, 38782, 35, 69, 13, 9630, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 965, 7, 70, 38782, 35, 69, 13, 17946, 58, 73, 12962, 14512, 965, 7, 672, 45852, 35, 69, 13, 17946, 58, 73, 60, 2599, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 645, 44, 1042, 963, 796, 10352, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32691, 14265, 41, 18408, 13, 33295, 7, 73, 8, 201, 198, 201, 198, 220, 220, 220, 1441, 645, 44, 1042, 963, 11, 32691, 14265, 41, 18408, 201, 198, 201, 198, 201, 198 ]
2.281918
1,731
from sqlalchemy import Column, Table, Index, types from rdflib_sqlalchemy.types import TermType MYSQL_MAX_INDEX_LENGTH = 200 TABLE_NAME_TEMPLATES = [ "{interned_id}_asserted_statements", "{interned_id}_literal_statements", "{interned_id}_namespace_binds", "{interned_id}_quoted_statements", "{interned_id}_type_statements", ]
[ 6738, 44161, 282, 26599, 1330, 29201, 11, 8655, 11, 12901, 11, 3858, 198, 198, 6738, 374, 67, 2704, 571, 62, 25410, 282, 26599, 13, 19199, 1330, 35118, 6030, 628, 198, 44, 16309, 9711, 62, 22921, 62, 12115, 6369, 62, 43, 49494, 796, 939, 198, 198, 38148, 62, 20608, 62, 51, 3620, 6489, 29462, 796, 685, 198, 220, 220, 220, 45144, 23124, 276, 62, 312, 92, 62, 30493, 276, 62, 14269, 3196, 1600, 198, 220, 220, 220, 45144, 23124, 276, 62, 312, 92, 62, 18250, 1691, 62, 14269, 3196, 1600, 198, 220, 220, 220, 45144, 23124, 276, 62, 312, 92, 62, 14933, 10223, 62, 21653, 82, 1600, 198, 220, 220, 220, 45144, 23124, 276, 62, 312, 92, 62, 421, 5191, 62, 14269, 3196, 1600, 198, 220, 220, 220, 45144, 23124, 276, 62, 312, 92, 62, 4906, 62, 14269, 3196, 1600, 198, 60, 628, 628, 628, 198 ]
2.455172
145
# Copyright 2017 Internap. # # 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.
[ 2, 15069, 2177, 2445, 499, 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, 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, 628, 628 ]
3.84
150
from functools import partial import time _cached_objects = dict() CACHE_EXPIRY = 60 * 10 def get_cached_object(model, id): """ A very, very simple in-memory cache for ORM objects. No invalidation other than restarting this app or waiting CACHE_EXPIRY seconds. """ lookup = (model, id) cached = _cached_objects.get(lookup) if cached and cached[0] > time.time(): return cached[1] obj = model.objects.get(pk=id) _cached_objects[lookup] = (time.time() + CACHE_EXPIRY, obj) return obj class memoize_method(object): """ Simple memoize decorator for instance methods. http://code.activestate.com/recipes/577452-a-memoize-decorator-for-instance-methods/ """
[ 6738, 1257, 310, 10141, 1330, 13027, 198, 11748, 640, 198, 198, 62, 66, 2317, 62, 48205, 796, 8633, 3419, 198, 198, 34, 2246, 13909, 62, 49864, 4663, 56, 796, 3126, 1635, 838, 198, 4299, 651, 62, 66, 2317, 62, 15252, 7, 19849, 11, 4686, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 317, 845, 11, 845, 2829, 287, 12, 31673, 12940, 329, 6375, 44, 5563, 13, 198, 220, 220, 220, 1400, 12515, 341, 584, 621, 15765, 278, 428, 598, 393, 4953, 327, 2246, 13909, 62, 49864, 4663, 56, 4201, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 35847, 796, 357, 19849, 11, 4686, 8, 198, 220, 220, 220, 39986, 796, 4808, 66, 2317, 62, 48205, 13, 1136, 7, 5460, 929, 8, 198, 220, 220, 220, 611, 39986, 290, 39986, 58, 15, 60, 1875, 640, 13, 2435, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 39986, 58, 16, 60, 628, 220, 220, 220, 26181, 796, 2746, 13, 48205, 13, 1136, 7, 79, 74, 28, 312, 8, 198, 220, 220, 220, 4808, 66, 2317, 62, 48205, 58, 5460, 929, 60, 796, 357, 2435, 13, 2435, 3419, 1343, 327, 2246, 13909, 62, 49864, 4663, 56, 11, 26181, 8, 198, 220, 220, 220, 1441, 26181, 198, 198, 4871, 16155, 1096, 62, 24396, 7, 15252, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 17427, 16155, 1096, 11705, 1352, 329, 4554, 5050, 13, 198, 220, 220, 220, 2638, 1378, 8189, 13, 15791, 44146, 13, 785, 14, 8344, 18636, 14, 49447, 37730, 12, 64, 12, 11883, 78, 1096, 12, 12501, 273, 1352, 12, 1640, 12, 39098, 12, 24396, 82, 14, 198, 220, 220, 220, 37227, 198 ]
2.595668
277
"""repo2docker: convert git repositories into jupyter-suitable docker images Images produced by repo2docker can be used with Jupyter notebooks standalone or with BinderHub. Usage: python -m repo2docker https://github.com/you/your-repo """ import json import sys import logging import os import getpass import shutil import tempfile import time import docker from urllib.parse import urlparse from docker.utils import kwargs_from_env from docker.errors import DockerException import escapism from pythonjsonlogger import jsonlogger from traitlets import Any, Dict, Int, List, Unicode, Bool, default from traitlets.config import Application from . import __version__ from .buildpacks import ( CondaBuildPack, DockerBuildPack, JuliaProjectTomlBuildPack, JuliaRequireBuildPack, LegacyBinderDockerBuildPack, NixBuildPack, PipfileBuildPack, PythonBuildPack, RBuildPack, ) from . import contentproviders from .utils import ByteSpecification, chdir class Repo2Docker(Application): """An application for converting git repositories to docker images""" name = "jupyter-repo2docker" version = __version__ description = __doc__ @default("log_level") def _default_log_level(self): """The application's default log level""" return logging.INFO git_workdir = Unicode( None, config=True, allow_none=True, help=""" Working directory to use for check out of git repositories. The default is to use the system's temporary directory. Should be somewhere ephemeral, such as /tmp. """, ) subdir = Unicode( "", config=True, help=""" Subdirectory of the git repository to examine. Defaults to ''. """, ) cache_from = List( [], config=True, help=""" List of images to try & re-use cached image layers from. Docker only tries to re-use image layers from images built locally, not pulled from a registry. We can ask it to explicitly re-use layers from non-locally built images by through the 'cache_from' parameter. """, ) buildpacks = List( [ LegacyBinderDockerBuildPack, DockerBuildPack, JuliaProjectTomlBuildPack, JuliaRequireBuildPack, NixBuildPack, RBuildPack, CondaBuildPack, PipfileBuildPack, PythonBuildPack, ], config=True, help=""" Ordered list of BuildPacks to try when building a git repository. """, ) extra_build_kwargs = Dict( {}, help=""" extra kwargs to limit CPU quota when building a docker image. Dictionary that allows the user to set the desired runtime flag to configure the amount of access to CPU resources your container has. Reference https://docs.docker.com/config/containers/resource_constraints/#cpu """, config=True, ) extra_run_kwargs = Dict( {}, help=""" extra kwargs to limit CPU quota when running a docker image. Dictionary that allows the user to set the desired runtime flag to configure the amount of access to CPU resources your container has. Reference https://docs.docker.com/config/containers/resource_constraints/#cpu """, config=True, ) default_buildpack = Any( PythonBuildPack, config=True, help=""" The default build pack to use when no other buildpacks are found. """, ) # Git is our content provider of last resort. This is to maintain the # old behaviour when git and local directories were the only supported # content providers. We can detect local directories from the path, but # detecting if something will successfully `git clone` is very hard if all # you can do is look at the path/URL to it. content_providers = List( [ contentproviders.Local, contentproviders.Zenodo, contentproviders.Figshare, contentproviders.Dataverse, contentproviders.Hydroshare, contentproviders.Swhid, contentproviders.Mercurial, contentproviders.Git, ], config=True, help=""" Ordered list by priority of ContentProviders to try in turn to fetch the contents specified by the user. """, ) build_memory_limit = ByteSpecification( 0, help=""" Total memory that can be used by the docker image building process. Set to 0 for no limits. """, config=True, ) volumes = Dict( {}, help=""" Volumes to mount when running the container. Only used when running, not during build process! Use a key-value pair, with the key being the volume source & value being the destination volume. Both source and destination can be relative. Source is resolved relative to the current working directory on the host, and destination is resolved relative to the working directory of the image - ($HOME by default) """, config=True, ) user_id = Int( help=""" UID of the user to create inside the built image. Should be a uid that is not currently used by anything in the image. Defaults to uid of currently running user, since that is the most common case when running r2d manually. Might not affect Dockerfile builds. """, config=True, ) @default("user_id") def _user_id_default(self): """ Default user_id to current running user. """ return os.geteuid() user_name = Unicode( "jovyan", help=""" Username of the user to create inside the built image. Should be a username that is not currently used by anything in the image, and should conform to the restrictions on user names for Linux. Defaults to username of currently running user, since that is the most common case when running repo2docker manually. """, config=True, ) @default("user_name") def _user_name_default(self): """ Default user_name to current running user. """ return getpass.getuser() appendix = Unicode( config=True, help=""" Appendix of Dockerfile commands to run at the end of the build. Can be used to customize the resulting image after all standard build steps finish. """, ) json_logs = Bool( False, help=""" Log output in structured JSON format. Useful when stdout is consumed by other tools """, config=True, ) repo = Unicode( ".", help=""" Specification of repository to build image for. Could be local path or git URL. """, config=True, ) ref = Unicode( None, help=""" Git ref that should be built. If repo is a git repository, this ref is checked out in a local clone before repository is built. """, config=True, allow_none=True, ) swh_token = Unicode( None, help=""" Token to use authenticated SWH API access. If unset, default to unauthenticated (limited) usage of the Software Heritage API. """, config=True, allow_none=True, ) cleanup_checkout = Bool( False, help=""" Delete source repository after building is done. Useful when repo2docker is doing the git cloning """, config=True, ) output_image_spec = Unicode( "", help=""" Docker Image name:tag to tag the built image with. Required parameter. """, config=True, ) push = Bool( False, help=""" Set to true to push docker image after building """, config=True, ) run = Bool( False, help=""" Run docker image after building """, config=True, ) # FIXME: Refactor class to be able to do --no-build without needing # deep support for it inside other code dry_run = Bool( False, help=""" Do not actually build the docker image, just simulate it. """, config=True, ) # FIXME: Refactor classes to separate build & run steps run_cmd = List( [], help=""" Command to run when running the container When left empty, a jupyter notebook is run. """, config=True, ) all_ports = Bool( False, help=""" Publish all declared ports from container whiel running. Equivalent to -P option to docker run """, config=True, ) ports = Dict( {}, help=""" Port mappings to establish when running the container. Equivalent to -p {key}:{value} options to docker run. {key} refers to port inside container, and {value} refers to port / host:port in the host """, config=True, ) environment = List( [], help=""" Environment variables to set when running the built image. Each item must be a string formatted as KEY=VALUE """, config=True, ) target_repo_dir = Unicode( "", help=""" Path inside the image where contents of the repositories are copied to, and where all the build operations (such as postBuild) happen. Defaults to ${HOME} if not set """, config=True, ) def fetch(self, url, ref, checkout_path): """Fetch the contents of `url` and place it in `checkout_path`. The `ref` parameter specifies what "version" of the contents should be fetched. In the case of a git repository `ref` is the SHA-1 of a commit. Iterate through possible content providers until a valid provider, based on URL, is found. """ picked_content_provider = None for ContentProvider in self.content_providers: cp = ContentProvider() spec = cp.detect(url, ref=ref) if spec is not None: picked_content_provider = cp self.log.info( "Picked {cp} content " "provider.\n".format(cp=cp.__class__.__name__) ) break if picked_content_provider is None: self.log.error( "No matching content provider found for " "{url}.".format(url=url) ) swh_token = self.config.get("swh_token", self.swh_token) if swh_token and isinstance(picked_content_provider, contentproviders.Swhid): picked_content_provider.set_auth_token(swh_token) for log_line in picked_content_provider.fetch( spec, checkout_path, yield_output=self.json_logs ): self.log.info(log_line, extra=dict(phase="fetching")) if not self.output_image_spec: image_spec = "r2d" + self.repo # if we are building from a subdirectory include that in the # image name so we can tell builds from different sub-directories # apart. if self.subdir: image_spec += self.subdir if picked_content_provider.content_id is not None: image_spec += picked_content_provider.content_id else: image_spec += str(int(time.time())) self.output_image_spec = escapism.escape( image_spec, escape_char="-" ).lower() def json_excepthook(self, etype, evalue, traceback): """Called on an uncaught exception when using json logging Avoids non-JSON output on errors when using --json-logs """ self.log.error( "Error during build: %s", evalue, exc_info=(etype, evalue, traceback), extra=dict(phase="failed"), ) def initialize(self): """Init repo2docker configuration before start""" # FIXME: Remove this function, move it to setters / traitlet reactors if self.json_logs: # register JSON excepthook to avoid non-JSON output on errors sys.excepthook = self.json_excepthook # Need to reset existing handlers, or we repeat messages logHandler = logging.StreamHandler() formatter = jsonlogger.JsonFormatter() logHandler.setFormatter(formatter) self.log = logging.getLogger("repo2docker") self.log.handlers = [] self.log.addHandler(logHandler) self.log.setLevel(self.log_level) else: # due to json logger stuff above, # our log messages include carriage returns, newlines, etc. # remove the additional newline from the stream handler self.log.handlers[0].terminator = "" # We don't want a [Repo2Docker] on all messages self.log.handlers[0].formatter = logging.Formatter(fmt="%(message)s") if self.dry_run and (self.run or self.push): raise ValueError("Cannot push or run image if we are not building it") if self.volumes and not self.run: raise ValueError("Cannot mount volumes if container is not run") def push_image(self): """Push docker image to registry""" client = docker.APIClient(version="auto", **kwargs_from_env()) # Build a progress setup for each layer, and only emit per-layer # info every 1.5s progress_layers = {} layers = {} last_emit_time = time.time() for chunk in client.push(self.output_image_spec, stream=True): # each chunk can be one or more lines of json events # split lines here in case multiple are delivered at once for line in chunk.splitlines(): line = line.decode("utf-8", errors="replace") try: progress = json.loads(line) except Exception as e: self.log.warning("Not a JSON progress line: %r", line) continue if "error" in progress: self.log.error(progress["error"], extra=dict(phase="failed")) raise docker.errors.ImageLoadError(progress["error"]) if "id" not in progress: continue # deprecated truncated-progress data if "progressDetail" in progress and progress["progressDetail"]: progress_layers[progress["id"]] = progress["progressDetail"] else: progress_layers[progress["id"]] = progress["status"] # include full progress data for each layer in 'layers' data layers[progress["id"]] = progress if time.time() - last_emit_time > 1.5: self.log.info( "Pushing image\n", extra=dict( progress=progress_layers, layers=layers, phase="pushing" ), ) last_emit_time = time.time() self.log.info( "Successfully pushed {}".format(self.output_image_spec), extra=dict(phase="pushing"), ) def run_image(self): """Run docker container from built image and wait for it to finish. """ container = self.start_container() self.wait_for_container(container) def start_container(self): """Start docker container from built image Returns running container """ client = docker.from_env(version="auto") docker_host = os.environ.get("DOCKER_HOST") if docker_host: host_name = urlparse(docker_host).hostname else: host_name = "127.0.0.1" self.hostname = host_name if not self.run_cmd: port = str(self._get_free_port()) self.port = port # To use the option --NotebookApp.custom_display_url # make sure the base-notebook image is updated: # docker pull jupyter/base-notebook run_cmd = [ "jupyter", "notebook", "--ip", "0.0.0.0", "--port", port, "--NotebookApp.custom_display_url=http://{}:{}".format(host_name, port), ] ports = {"%s/tcp" % port: port} else: # run_cmd given by user, if port is also given then pass it on run_cmd = self.run_cmd if self.ports: ports = self.ports else: ports = {} # store ports on self so they can be retrieved in tests self.ports = ports container_volumes = {} if self.volumes: api_client = docker.APIClient( version="auto", **docker.utils.kwargs_from_env() ) image = api_client.inspect_image(self.output_image_spec) image_workdir = image["ContainerConfig"]["WorkingDir"] for k, v in self.volumes.items(): container_volumes[os.path.abspath(k)] = { "bind": v if v.startswith("/") else os.path.join(image_workdir, v), "mode": "rw", } run_kwargs = dict( publish_all_ports=self.all_ports, ports=ports, detach=True, command=run_cmd, volumes=container_volumes, environment=self.environment, ) run_kwargs.update(self.extra_run_kwargs) container = client.containers.run(self.output_image_spec, **run_kwargs) while container.status == "created": time.sleep(0.5) container.reload() return container def wait_for_container(self, container): """Wait for a container to finish Displaying logs while it's running """ try: for line in container.logs(stream=True): self.log.info(line.decode("utf-8"), extra=dict(phase="running")) finally: container.reload() if container.status == "running": self.log.info("Stopping container...\n", extra=dict(phase="running")) container.kill() exit_code = container.attrs["State"]["ExitCode"] container.wait() self.log.info( "Container finished running.\n".upper(), extra=dict(phase="running") ) # are there more logs? Let's send them back too late_logs = container.logs().decode("utf-8") for line in late_logs.split("\n"): self.log.info(line + "\n", extra=dict(phase="running")) container.remove() if exit_code: sys.exit(exit_code) def _get_free_port(self): """ Hacky method to get a free random port on local host """ import socket s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.bind(("", 0)) port = s.getsockname()[1] s.close() return port def build(self): """ Build docker image """ # Check if r2d can connect to docker daemon if not self.dry_run: try: docker_client = docker.APIClient(version="auto", **kwargs_from_env()) except DockerException as e: self.log.error( "\nDocker client initialization error: %s.\nCheck if docker is running on the host.\n", e, ) self.exit(1) # If the source to be executed is a directory, continue using the # directory. In the case of a local directory, it is used as both the # source and target. Reusing a local directory seems better than # making a copy of it as it might contain large files that would be # expensive to copy. if os.path.isdir(self.repo): checkout_path = self.repo else: if self.git_workdir is None: checkout_path = tempfile.mkdtemp(prefix="repo2docker") else: checkout_path = self.git_workdir try: self.fetch(self.repo, self.ref, checkout_path) if self.find_image(): self.log.info( "Reusing existing image ({}), not " "building.".format(self.output_image_spec) ) # no need to build, so skip to the end by `return`ing here # this will still execute the finally clause and let's us # avoid having to indent the build code by an extra level return if self.subdir: checkout_path = os.path.join(checkout_path, self.subdir) if not os.path.isdir(checkout_path): self.log.error( "Subdirectory %s does not exist", self.subdir, extra=dict(phase="failure"), ) raise FileNotFoundError("Could not find {}".format(checkout_path)) with chdir(checkout_path): for BP in self.buildpacks: bp = BP() if bp.detect(): picked_buildpack = bp break else: picked_buildpack = self.default_buildpack() picked_buildpack.appendix = self.appendix # Add metadata labels picked_buildpack.labels["repo2docker.version"] = self.version repo_label = "local" if os.path.isdir(self.repo) else self.repo picked_buildpack.labels["repo2docker.repo"] = repo_label picked_buildpack.labels["repo2docker.ref"] = self.ref if self.dry_run: print(picked_buildpack.render()) else: self.log.debug( picked_buildpack.render(), extra=dict(phase="building") ) if self.user_id == 0: raise ValueError( "Root as the primary user in the image is not permitted." ) build_args = { "NB_USER": self.user_name, "NB_UID": str(self.user_id), } if self.target_repo_dir: build_args["REPO_DIR"] = self.target_repo_dir self.log.info( "Using %s builder\n", bp.__class__.__name__, extra=dict(phase="building"), ) for l in picked_buildpack.build( docker_client, self.output_image_spec, self.build_memory_limit, build_args, self.cache_from, self.extra_build_kwargs, ): if "stream" in l: self.log.info(l["stream"], extra=dict(phase="building")) elif "error" in l: self.log.info(l["error"], extra=dict(phase="failure")) raise docker.errors.BuildError(l["error"], build_log="") elif "status" in l: self.log.info( "Fetching base image...\r", extra=dict(phase="building") ) else: self.log.info(json.dumps(l), extra=dict(phase="building")) finally: # Cleanup checkout if necessary if self.cleanup_checkout: shutil.rmtree(checkout_path, ignore_errors=True)
[ 37811, 260, 7501, 17, 45986, 25, 10385, 17606, 38072, 656, 474, 929, 88, 353, 12, 2385, 4674, 36253, 4263, 198, 198, 29398, 4635, 416, 29924, 17, 45986, 460, 307, 973, 351, 449, 929, 88, 353, 43935, 27669, 198, 273, 351, 347, 5540, 16066, 13, 198, 198, 28350, 25, 628, 220, 220, 220, 21015, 532, 76, 29924, 17, 45986, 3740, 1378, 12567, 13, 785, 14, 5832, 14, 14108, 12, 260, 7501, 198, 37811, 198, 11748, 33918, 198, 11748, 25064, 198, 11748, 18931, 198, 11748, 28686, 198, 11748, 651, 6603, 198, 11748, 4423, 346, 198, 11748, 20218, 7753, 198, 11748, 640, 198, 198, 11748, 36253, 198, 6738, 2956, 297, 571, 13, 29572, 1330, 19016, 29572, 198, 6738, 36253, 13, 26791, 1330, 479, 86, 22046, 62, 6738, 62, 24330, 198, 6738, 36253, 13, 48277, 1330, 25716, 16922, 198, 11748, 3671, 499, 1042, 198, 6738, 21015, 17752, 6404, 1362, 1330, 33918, 6404, 1362, 198, 198, 6738, 1291, 2578, 912, 1330, 4377, 11, 360, 713, 11, 2558, 11, 7343, 11, 34371, 11, 347, 970, 11, 4277, 198, 6738, 1291, 2578, 912, 13, 11250, 1330, 15678, 198, 198, 6738, 764, 1330, 11593, 9641, 834, 198, 6738, 764, 11249, 32377, 1330, 357, 198, 220, 220, 220, 9724, 64, 15580, 11869, 11, 198, 220, 220, 220, 25716, 15580, 11869, 11, 198, 220, 220, 220, 22300, 16775, 13787, 75, 15580, 11869, 11, 198, 220, 220, 220, 22300, 16844, 557, 15580, 11869, 11, 198, 220, 220, 220, 14843, 33, 5540, 35, 12721, 15580, 11869, 11, 198, 220, 220, 220, 399, 844, 15580, 11869, 11, 198, 220, 220, 220, 25149, 7753, 15580, 11869, 11, 198, 220, 220, 220, 11361, 15580, 11869, 11, 198, 220, 220, 220, 371, 15580, 11869, 11, 198, 8, 198, 6738, 764, 1330, 2695, 15234, 4157, 198, 6738, 764, 26791, 1330, 30589, 22882, 2649, 11, 442, 15908, 628, 198, 4871, 1432, 78, 17, 35, 12721, 7, 23416, 2599, 198, 220, 220, 220, 37227, 2025, 3586, 329, 23202, 17606, 38072, 284, 36253, 4263, 37811, 628, 220, 220, 220, 1438, 796, 366, 73, 929, 88, 353, 12, 260, 7501, 17, 45986, 1, 198, 220, 220, 220, 2196, 796, 11593, 9641, 834, 198, 220, 220, 220, 6764, 796, 11593, 15390, 834, 628, 220, 220, 220, 2488, 12286, 7203, 6404, 62, 5715, 4943, 198, 220, 220, 220, 825, 4808, 12286, 62, 6404, 62, 5715, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 464, 3586, 338, 4277, 2604, 1241, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 18931, 13, 10778, 628, 220, 220, 220, 17606, 62, 1818, 15908, 796, 34371, 7, 198, 220, 220, 220, 220, 220, 220, 220, 6045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1249, 62, 23108, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 14594, 8619, 284, 779, 329, 2198, 503, 286, 17606, 38072, 13, 628, 220, 220, 220, 220, 220, 220, 220, 383, 4277, 318, 284, 779, 262, 1080, 338, 8584, 8619, 13, 10358, 307, 198, 220, 220, 220, 220, 220, 220, 220, 7382, 2462, 39557, 282, 11, 884, 355, 1220, 22065, 13, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 850, 15908, 796, 34371, 7, 198, 220, 220, 220, 220, 220, 220, 220, 366, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 3834, 34945, 286, 262, 17606, 16099, 284, 10716, 13, 628, 220, 220, 220, 220, 220, 220, 220, 2896, 13185, 284, 705, 4458, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 12940, 62, 6738, 796, 7343, 7, 198, 220, 220, 220, 220, 220, 220, 220, 685, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 286, 4263, 284, 1949, 1222, 302, 12, 1904, 39986, 2939, 11685, 422, 13, 628, 220, 220, 220, 220, 220, 220, 220, 25716, 691, 8404, 284, 302, 12, 1904, 2939, 11685, 422, 4263, 3170, 15726, 11, 198, 220, 220, 220, 220, 220, 220, 220, 407, 5954, 422, 257, 20478, 13, 775, 460, 1265, 340, 284, 11777, 302, 12, 1904, 11685, 198, 220, 220, 220, 220, 220, 220, 220, 422, 1729, 12, 17946, 453, 3170, 4263, 416, 832, 262, 705, 23870, 62, 6738, 6, 11507, 13, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 1382, 32377, 796, 7343, 7, 198, 220, 220, 220, 220, 220, 220, 220, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14843, 33, 5540, 35, 12721, 15580, 11869, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25716, 15580, 11869, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22300, 16775, 13787, 75, 15580, 11869, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22300, 16844, 557, 15580, 11869, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 399, 844, 15580, 11869, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 371, 15580, 11869, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9724, 64, 15580, 11869, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25149, 7753, 15580, 11869, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11361, 15580, 11869, 11, 198, 220, 220, 220, 220, 220, 220, 220, 16589, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 14230, 1068, 1351, 286, 10934, 47, 4595, 284, 1949, 618, 2615, 257, 17606, 16099, 13, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 3131, 62, 11249, 62, 46265, 22046, 796, 360, 713, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 3131, 479, 86, 22046, 284, 4179, 9135, 32539, 618, 2615, 257, 36253, 2939, 13, 198, 220, 220, 220, 220, 220, 220, 220, 28261, 326, 3578, 262, 2836, 284, 900, 262, 10348, 19124, 6056, 198, 220, 220, 220, 220, 220, 220, 220, 284, 17425, 262, 2033, 286, 1895, 284, 9135, 4133, 534, 9290, 468, 13, 198, 220, 220, 220, 220, 220, 220, 220, 20984, 3740, 1378, 31628, 13, 45986, 13, 785, 14, 11250, 14, 3642, 50221, 14, 31092, 62, 1102, 2536, 6003, 31113, 36166, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 3131, 62, 5143, 62, 46265, 22046, 796, 360, 713, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 3131, 479, 86, 22046, 284, 4179, 9135, 32539, 618, 2491, 257, 36253, 2939, 13, 198, 220, 220, 220, 220, 220, 220, 220, 28261, 326, 3578, 262, 2836, 284, 900, 262, 10348, 19124, 6056, 198, 220, 220, 220, 220, 220, 220, 220, 284, 17425, 262, 2033, 286, 1895, 284, 9135, 4133, 534, 9290, 468, 13, 198, 220, 220, 220, 220, 220, 220, 220, 20984, 3740, 1378, 31628, 13, 45986, 13, 785, 14, 11250, 14, 3642, 50221, 14, 31092, 62, 1102, 2536, 6003, 31113, 36166, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 4277, 62, 11249, 8002, 796, 4377, 7, 198, 220, 220, 220, 220, 220, 220, 220, 11361, 15580, 11869, 11, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 383, 4277, 1382, 2353, 284, 779, 618, 645, 584, 1382, 32377, 389, 1043, 13, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 1303, 15151, 318, 674, 2695, 10131, 286, 938, 12600, 13, 770, 318, 284, 5529, 262, 198, 220, 220, 220, 1303, 1468, 9172, 618, 17606, 290, 1957, 29196, 547, 262, 691, 4855, 198, 220, 220, 220, 1303, 2695, 9549, 13, 775, 460, 4886, 1957, 29196, 422, 262, 3108, 11, 475, 198, 220, 220, 220, 1303, 31521, 611, 1223, 481, 7675, 4600, 18300, 17271, 63, 318, 845, 1327, 611, 477, 198, 220, 220, 220, 1303, 345, 460, 466, 318, 804, 379, 262, 3108, 14, 21886, 284, 340, 13, 198, 220, 220, 220, 2695, 62, 15234, 4157, 796, 7343, 7, 198, 220, 220, 220, 220, 220, 220, 220, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2695, 15234, 4157, 13, 14565, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2695, 15234, 4157, 13, 47573, 24313, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2695, 15234, 4157, 13, 14989, 20077, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2695, 15234, 4157, 13, 6601, 4399, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2695, 15234, 4157, 13, 40436, 305, 20077, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2695, 15234, 4157, 13, 50, 1929, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2695, 15234, 4157, 13, 42981, 333, 498, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2695, 15234, 4157, 13, 38, 270, 11, 198, 220, 220, 220, 220, 220, 220, 220, 16589, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 14230, 1068, 1351, 416, 8475, 286, 14041, 15946, 4157, 284, 1949, 287, 1210, 284, 21207, 198, 220, 220, 220, 220, 220, 220, 220, 262, 10154, 7368, 416, 262, 2836, 13, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 1382, 62, 31673, 62, 32374, 796, 30589, 22882, 2649, 7, 198, 220, 220, 220, 220, 220, 220, 220, 657, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 7472, 4088, 326, 460, 307, 973, 416, 262, 36253, 2939, 2615, 1429, 13, 628, 220, 220, 220, 220, 220, 220, 220, 5345, 284, 657, 329, 645, 7095, 13, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 15343, 796, 360, 713, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 4709, 8139, 284, 3817, 618, 2491, 262, 9290, 13, 628, 220, 220, 220, 220, 220, 220, 220, 5514, 973, 618, 2491, 11, 407, 1141, 1382, 1429, 0, 628, 220, 220, 220, 220, 220, 220, 220, 5765, 257, 1994, 12, 8367, 5166, 11, 351, 262, 1994, 852, 262, 6115, 2723, 1222, 198, 220, 220, 220, 220, 220, 220, 220, 1988, 852, 262, 10965, 6115, 13, 628, 220, 220, 220, 220, 220, 220, 220, 5747, 2723, 290, 10965, 460, 307, 3585, 13, 8090, 318, 12939, 198, 220, 220, 220, 220, 220, 220, 220, 3585, 284, 262, 1459, 1762, 8619, 319, 262, 2583, 11, 290, 198, 220, 220, 220, 220, 220, 220, 220, 10965, 318, 12939, 3585, 284, 262, 1762, 8619, 286, 262, 198, 220, 220, 220, 220, 220, 220, 220, 2939, 532, 7198, 39069, 416, 4277, 8, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 2836, 62, 312, 796, 2558, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 25105, 286, 262, 2836, 284, 2251, 2641, 262, 3170, 2939, 13, 628, 220, 220, 220, 220, 220, 220, 220, 10358, 307, 257, 334, 312, 326, 318, 407, 3058, 973, 416, 1997, 287, 262, 2939, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2896, 13185, 284, 334, 312, 286, 3058, 2491, 2836, 11, 1201, 326, 318, 262, 749, 198, 220, 220, 220, 220, 220, 220, 220, 2219, 1339, 618, 2491, 374, 17, 67, 14500, 13, 628, 220, 220, 220, 220, 220, 220, 220, 24213, 407, 2689, 25716, 7753, 12188, 13, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 2488, 12286, 7203, 7220, 62, 312, 4943, 198, 220, 220, 220, 825, 4808, 7220, 62, 312, 62, 12286, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 15161, 2836, 62, 312, 284, 1459, 2491, 2836, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 28686, 13, 1136, 12496, 312, 3419, 628, 220, 220, 220, 2836, 62, 3672, 796, 34371, 7, 198, 220, 220, 220, 220, 220, 220, 220, 366, 73, 709, 4121, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 50069, 286, 262, 2836, 284, 2251, 2641, 262, 3170, 2939, 13, 628, 220, 220, 220, 220, 220, 220, 220, 10358, 307, 257, 20579, 326, 318, 407, 3058, 973, 416, 1997, 287, 262, 198, 220, 220, 220, 220, 220, 220, 220, 2939, 11, 290, 815, 17216, 284, 262, 8733, 319, 2836, 3891, 329, 7020, 13, 628, 220, 220, 220, 220, 220, 220, 220, 2896, 13185, 284, 20579, 286, 3058, 2491, 2836, 11, 1201, 326, 318, 262, 749, 198, 220, 220, 220, 220, 220, 220, 220, 2219, 1339, 618, 2491, 29924, 17, 45986, 14500, 13, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 2488, 12286, 7203, 7220, 62, 3672, 4943, 198, 220, 220, 220, 825, 4808, 7220, 62, 3672, 62, 12286, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 15161, 2836, 62, 3672, 284, 1459, 2491, 2836, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 651, 6603, 13, 1136, 7220, 3419, 628, 220, 220, 220, 43600, 796, 34371, 7, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 30378, 286, 25716, 7753, 9729, 284, 1057, 379, 262, 886, 286, 262, 1382, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1680, 307, 973, 284, 24184, 262, 7186, 2939, 706, 477, 198, 220, 220, 220, 220, 220, 220, 220, 3210, 1382, 4831, 5461, 13, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 33918, 62, 6404, 82, 796, 347, 970, 7, 198, 220, 220, 220, 220, 220, 220, 220, 10352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 5972, 5072, 287, 20793, 19449, 5794, 13, 628, 220, 220, 220, 220, 220, 220, 220, 49511, 618, 14367, 448, 318, 13529, 416, 584, 4899, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 29924, 796, 34371, 7, 198, 220, 220, 220, 220, 220, 220, 220, 366, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 18291, 2649, 286, 16099, 284, 1382, 2939, 329, 13, 628, 220, 220, 220, 220, 220, 220, 220, 10347, 307, 1957, 3108, 393, 17606, 10289, 13, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 1006, 796, 34371, 7, 198, 220, 220, 220, 220, 220, 220, 220, 6045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 15151, 1006, 326, 815, 307, 3170, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1002, 29924, 318, 257, 17606, 16099, 11, 428, 1006, 318, 10667, 503, 198, 220, 220, 220, 220, 220, 220, 220, 287, 257, 1957, 17271, 878, 16099, 318, 3170, 13, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1249, 62, 23108, 28, 17821, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 1509, 71, 62, 30001, 796, 34371, 7, 198, 220, 220, 220, 220, 220, 220, 220, 6045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 29130, 284, 779, 44529, 311, 12418, 7824, 1895, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1002, 555, 2617, 11, 4277, 284, 555, 41299, 3474, 357, 10698, 8, 8748, 286, 262, 10442, 198, 220, 220, 220, 220, 220, 220, 220, 18518, 7824, 13, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1249, 62, 23108, 28, 17821, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 27425, 62, 9122, 448, 796, 347, 970, 7, 198, 220, 220, 220, 220, 220, 220, 220, 10352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 23520, 2723, 16099, 706, 2615, 318, 1760, 13, 628, 220, 220, 220, 220, 220, 220, 220, 49511, 618, 29924, 17, 45986, 318, 1804, 262, 17606, 45973, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 5072, 62, 9060, 62, 16684, 796, 34371, 7, 198, 220, 220, 220, 220, 220, 220, 220, 366, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 25716, 7412, 1438, 25, 12985, 284, 7621, 262, 3170, 2939, 351, 13, 628, 220, 220, 220, 220, 220, 220, 220, 20906, 11507, 13, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 4574, 796, 347, 970, 7, 198, 220, 220, 220, 220, 220, 220, 220, 10352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 5345, 284, 2081, 284, 4574, 36253, 2939, 706, 2615, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 1057, 796, 347, 970, 7, 198, 220, 220, 220, 220, 220, 220, 220, 10352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 5660, 36253, 2939, 706, 2615, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 1303, 44855, 11682, 25, 6524, 11218, 1398, 284, 307, 1498, 284, 466, 1377, 3919, 12, 11249, 1231, 18139, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 2769, 1104, 329, 340, 2641, 584, 2438, 198, 220, 220, 220, 5894, 62, 5143, 796, 347, 970, 7, 198, 220, 220, 220, 220, 220, 220, 220, 10352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 2141, 407, 1682, 1382, 262, 36253, 2939, 11, 655, 29308, 340, 13, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 1303, 44855, 11682, 25, 6524, 11218, 6097, 284, 4553, 1382, 1222, 1057, 4831, 198, 220, 220, 220, 1057, 62, 28758, 796, 7343, 7, 198, 220, 220, 220, 220, 220, 220, 220, 685, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 9455, 284, 1057, 618, 2491, 262, 9290, 628, 220, 220, 220, 220, 220, 220, 220, 1649, 1364, 6565, 11, 257, 474, 929, 88, 353, 20922, 318, 1057, 13, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 477, 62, 3742, 796, 347, 970, 7, 198, 220, 220, 220, 220, 220, 220, 220, 10352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 8525, 1836, 477, 6875, 14090, 422, 9290, 348, 8207, 2491, 13, 628, 220, 220, 220, 220, 220, 220, 220, 7889, 29540, 284, 532, 47, 3038, 284, 36253, 1057, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 14090, 796, 360, 713, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 4347, 285, 39242, 284, 4474, 618, 2491, 262, 9290, 13, 628, 220, 220, 220, 220, 220, 220, 220, 7889, 29540, 284, 532, 79, 1391, 2539, 92, 29164, 8367, 92, 3689, 284, 36253, 1057, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 2539, 92, 10229, 284, 2493, 2641, 9290, 11, 290, 1391, 8367, 92, 198, 220, 220, 220, 220, 220, 220, 220, 10229, 284, 2493, 1220, 2583, 25, 634, 287, 262, 2583, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 2858, 796, 7343, 7, 198, 220, 220, 220, 220, 220, 220, 220, 685, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 9344, 9633, 284, 900, 618, 2491, 262, 3170, 2939, 13, 628, 220, 220, 220, 220, 220, 220, 220, 5501, 2378, 1276, 307, 257, 4731, 39559, 355, 35374, 28, 39488, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 2496, 62, 260, 7501, 62, 15908, 796, 34371, 7, 198, 220, 220, 220, 220, 220, 220, 220, 366, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 10644, 2641, 262, 2939, 810, 10154, 286, 262, 38072, 389, 18984, 284, 11, 198, 220, 220, 220, 220, 220, 220, 220, 290, 810, 477, 262, 1382, 4560, 357, 10508, 355, 1281, 15580, 8, 1645, 13, 628, 220, 220, 220, 220, 220, 220, 220, 2896, 13185, 284, 25597, 39069, 92, 611, 407, 900, 198, 220, 220, 220, 220, 220, 220, 220, 13538, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 28, 17821, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 825, 21207, 7, 944, 11, 19016, 11, 1006, 11, 28006, 62, 6978, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 37, 7569, 262, 10154, 286, 4600, 6371, 63, 290, 1295, 340, 287, 4600, 9122, 448, 62, 6978, 44646, 628, 220, 220, 220, 220, 220, 220, 220, 383, 4600, 5420, 63, 11507, 26052, 644, 366, 9641, 1, 286, 262, 10154, 815, 307, 198, 220, 220, 220, 220, 220, 220, 220, 11351, 1740, 13, 554, 262, 1339, 286, 257, 17606, 16099, 4600, 5420, 63, 318, 262, 25630, 12, 16, 286, 257, 4589, 13, 628, 220, 220, 220, 220, 220, 220, 220, 40806, 378, 832, 1744, 2695, 9549, 1566, 257, 4938, 10131, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1912, 319, 10289, 11, 318, 1043, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 6497, 62, 11299, 62, 15234, 1304, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 329, 14041, 29495, 287, 2116, 13, 11299, 62, 15234, 4157, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 31396, 796, 14041, 29495, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1020, 796, 31396, 13, 15255, 478, 7, 6371, 11, 1006, 28, 5420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1020, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6497, 62, 11299, 62, 15234, 1304, 796, 31396, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 10951, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 47, 9484, 1391, 13155, 92, 2695, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 15234, 1304, 13, 59, 77, 1911, 18982, 7, 13155, 28, 13155, 13, 834, 4871, 834, 13, 834, 3672, 834, 8, 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, 220, 220, 220, 220, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 611, 6497, 62, 11299, 62, 15234, 1304, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 18224, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 2949, 12336, 2695, 10131, 1043, 329, 366, 45144, 6371, 92, 526, 13, 18982, 7, 6371, 28, 6371, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 1509, 71, 62, 30001, 796, 2116, 13, 11250, 13, 1136, 7203, 82, 1929, 62, 30001, 1600, 2116, 13, 82, 1929, 62, 30001, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1509, 71, 62, 30001, 290, 318, 39098, 7, 41891, 62, 11299, 62, 15234, 1304, 11, 2695, 15234, 4157, 13, 50, 1929, 312, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6497, 62, 11299, 62, 15234, 1304, 13, 2617, 62, 18439, 62, 30001, 7, 82, 1929, 62, 30001, 8, 628, 220, 220, 220, 220, 220, 220, 220, 329, 2604, 62, 1370, 287, 6497, 62, 11299, 62, 15234, 1304, 13, 69, 7569, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1020, 11, 28006, 62, 6978, 11, 7800, 62, 22915, 28, 944, 13, 17752, 62, 6404, 82, 198, 220, 220, 220, 220, 220, 220, 220, 15179, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 10951, 7, 6404, 62, 1370, 11, 3131, 28, 11600, 7, 40715, 2625, 69, 7569, 278, 48774, 628, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2116, 13, 22915, 62, 9060, 62, 16684, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2939, 62, 16684, 796, 366, 81, 17, 67, 1, 1343, 2116, 13, 260, 7501, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 611, 356, 389, 2615, 422, 257, 850, 34945, 2291, 326, 287, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2939, 1438, 523, 356, 460, 1560, 12188, 422, 1180, 850, 12, 12942, 1749, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5475, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 7266, 15908, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2939, 62, 16684, 15853, 2116, 13, 7266, 15908, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 6497, 62, 11299, 62, 15234, 1304, 13, 11299, 62, 312, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2939, 62, 16684, 15853, 6497, 62, 11299, 62, 15234, 1304, 13, 11299, 62, 312, 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, 2939, 62, 16684, 15853, 965, 7, 600, 7, 2435, 13, 2435, 3419, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 22915, 62, 9060, 62, 16684, 796, 3671, 499, 1042, 13, 41915, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2939, 62, 16684, 11, 6654, 62, 10641, 2625, 21215, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6739, 21037, 3419, 628, 220, 220, 220, 825, 33918, 62, 1069, 344, 79, 400, 566, 7, 944, 11, 304, 4906, 11, 5418, 518, 11, 12854, 1891, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 34, 4262, 319, 281, 4591, 3413, 6631, 618, 1262, 33918, 18931, 628, 220, 220, 220, 220, 220, 220, 220, 5184, 10994, 1729, 12, 40386, 5072, 319, 8563, 618, 1262, 1377, 17752, 12, 6404, 82, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 18224, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 12331, 1141, 1382, 25, 4064, 82, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5418, 518, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2859, 62, 10951, 16193, 2963, 431, 11, 5418, 518, 11, 12854, 1891, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3131, 28, 11600, 7, 40715, 2625, 47904, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 825, 41216, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 31768, 29924, 17, 45986, 8398, 878, 923, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 44855, 11682, 25, 17220, 428, 2163, 11, 1445, 340, 284, 900, 1010, 1220, 16708, 1616, 28502, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 17752, 62, 6404, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 7881, 19449, 43748, 79, 400, 566, 284, 3368, 1729, 12, 40386, 5072, 319, 8563, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 1069, 344, 79, 400, 566, 796, 2116, 13, 17752, 62, 1069, 344, 79, 400, 566, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 10664, 284, 13259, 4683, 32847, 11, 393, 356, 9585, 6218, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 25060, 796, 18931, 13, 12124, 25060, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1296, 1436, 796, 33918, 6404, 1362, 13, 41, 1559, 8479, 1436, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 25060, 13, 2617, 8479, 1436, 7, 687, 1436, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 796, 18931, 13, 1136, 11187, 1362, 7203, 260, 7501, 17, 45986, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 4993, 8116, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 2860, 25060, 7, 6404, 25060, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 2617, 4971, 7, 944, 13, 6404, 62, 5715, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2233, 284, 33918, 49706, 3404, 2029, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 674, 2604, 6218, 2291, 25739, 5860, 11, 649, 6615, 11, 3503, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4781, 262, 3224, 649, 1370, 422, 262, 4269, 21360, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 4993, 8116, 58, 15, 4083, 23705, 1352, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 775, 836, 470, 765, 257, 685, 6207, 78, 17, 35, 12721, 60, 319, 477, 6218, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 4993, 8116, 58, 15, 4083, 687, 1436, 796, 18931, 13, 8479, 1436, 7, 69, 16762, 2625, 4, 7, 20500, 8, 82, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 39140, 62, 5143, 290, 357, 944, 13, 5143, 393, 2116, 13, 14689, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 34, 34574, 4574, 393, 1057, 2939, 611, 356, 389, 407, 2615, 340, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 10396, 8139, 290, 407, 2116, 13, 5143, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 34, 34574, 3817, 15343, 611, 9290, 318, 407, 1057, 4943, 628, 220, 220, 220, 825, 4574, 62, 9060, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 49222, 36253, 2939, 284, 20478, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 5456, 796, 36253, 13, 2969, 2149, 75, 1153, 7, 9641, 2625, 23736, 1600, 12429, 46265, 22046, 62, 6738, 62, 24330, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 10934, 257, 4371, 9058, 329, 1123, 7679, 11, 290, 691, 27588, 583, 12, 29289, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 7508, 790, 352, 13, 20, 82, 198, 220, 220, 220, 220, 220, 220, 220, 4371, 62, 75, 6962, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 11685, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 938, 62, 368, 270, 62, 2435, 796, 640, 13, 2435, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 329, 16058, 287, 5456, 13, 14689, 7, 944, 13, 22915, 62, 9060, 62, 16684, 11, 4269, 28, 17821, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1123, 16058, 460, 307, 530, 393, 517, 3951, 286, 33918, 2995, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 6626, 3951, 994, 287, 1339, 3294, 389, 6793, 379, 1752, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1627, 287, 16058, 13, 35312, 6615, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1627, 796, 1627, 13, 12501, 1098, 7203, 40477, 12, 23, 1600, 8563, 2625, 33491, 4943, 198, 220, 220, 220, 220, 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, 220, 220, 220, 220, 4371, 796, 33918, 13, 46030, 7, 1370, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 35528, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 43917, 7203, 3673, 257, 19449, 4371, 1627, 25, 4064, 81, 1600, 1627, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 366, 18224, 1, 287, 4371, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 18224, 7, 33723, 14692, 18224, 33116, 3131, 28, 11600, 7, 40715, 2625, 47904, 48774, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 36253, 13, 48277, 13, 5159, 8912, 12331, 7, 33723, 14692, 18224, 8973, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 366, 312, 1, 407, 287, 4371, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 39224, 40122, 515, 12, 33723, 1366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 366, 33723, 11242, 603, 1, 287, 4371, 290, 4371, 14692, 33723, 11242, 603, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4371, 62, 75, 6962, 58, 33723, 14692, 312, 8973, 60, 796, 4371, 14692, 33723, 11242, 603, 8973, 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, 4371, 62, 75, 6962, 58, 33723, 14692, 312, 8973, 60, 796, 4371, 14692, 13376, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2291, 1336, 4371, 1366, 329, 1123, 7679, 287, 705, 75, 6962, 6, 1366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11685, 58, 33723, 14692, 312, 8973, 60, 796, 4371, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 640, 13, 2435, 3419, 532, 938, 62, 368, 270, 62, 2435, 1875, 352, 13, 20, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 10951, 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, 366, 47, 8023, 2939, 59, 77, 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, 3131, 28, 11600, 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, 4371, 28, 33723, 62, 75, 6962, 11, 11685, 28, 75, 6962, 11, 7108, 2625, 79, 8023, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 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, 220, 220, 220, 220, 938, 62, 368, 270, 62, 2435, 796, 640, 13, 2435, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 10951, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 33244, 2759, 7121, 23884, 1911, 18982, 7, 944, 13, 22915, 62, 9060, 62, 16684, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3131, 28, 11600, 7, 40715, 2625, 79, 8023, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 825, 1057, 62, 9060, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 10987, 36253, 9290, 422, 3170, 2939, 628, 220, 220, 220, 220, 220, 220, 220, 290, 4043, 329, 340, 284, 5461, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 9290, 796, 2116, 13, 9688, 62, 34924, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 17077, 62, 1640, 62, 34924, 7, 34924, 8, 628, 220, 220, 220, 825, 923, 62, 34924, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 10434, 36253, 9290, 422, 3170, 2939, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 2491, 9290, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 5456, 796, 36253, 13, 6738, 62, 24330, 7, 9641, 2625, 23736, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 36253, 62, 4774, 796, 28686, 13, 268, 2268, 13, 1136, 7203, 35, 11290, 1137, 62, 39, 10892, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 611, 36253, 62, 4774, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2583, 62, 3672, 796, 19016, 29572, 7, 45986, 62, 4774, 737, 4774, 3672, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2583, 62, 3672, 796, 366, 16799, 13, 15, 13, 15, 13, 16, 1, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 4774, 3672, 796, 2583, 62, 3672, 628, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2116, 13, 5143, 62, 28758, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2493, 796, 965, 7, 944, 13557, 1136, 62, 5787, 62, 634, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 634, 796, 2493, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1675, 779, 262, 3038, 1377, 6425, 2070, 4677, 13, 23144, 62, 13812, 62, 6371, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 787, 1654, 262, 2779, 12, 11295, 2070, 2939, 318, 6153, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 36253, 2834, 474, 929, 88, 353, 14, 8692, 12, 11295, 2070, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1057, 62, 28758, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 73, 929, 88, 353, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 11295, 2070, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 438, 541, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 15, 13, 15, 13, 15, 13, 15, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 438, 634, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 438, 6425, 2070, 4677, 13, 23144, 62, 13812, 62, 6371, 28, 4023, 1378, 90, 92, 29164, 92, 1911, 18982, 7, 4774, 62, 3672, 11, 2493, 828, 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, 14090, 796, 19779, 4, 82, 14, 83, 13155, 1, 4064, 2493, 25, 2493, 92, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1057, 62, 28758, 1813, 416, 2836, 11, 611, 2493, 318, 635, 1813, 788, 1208, 340, 319, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1057, 62, 28758, 796, 2116, 13, 5143, 62, 28758, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 3742, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14090, 796, 2116, 13, 3742, 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, 14090, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3650, 14090, 319, 2116, 523, 484, 460, 307, 29517, 287, 5254, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 3742, 796, 14090, 628, 220, 220, 220, 220, 220, 220, 220, 9290, 62, 10396, 8139, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 10396, 8139, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40391, 62, 16366, 796, 36253, 13, 2969, 2149, 75, 1153, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 2625, 23736, 1600, 12429, 45986, 13, 26791, 13, 46265, 22046, 62, 6738, 62, 24330, 3419, 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, 2939, 796, 40391, 62, 16366, 13, 1040, 806, 62, 9060, 7, 944, 13, 22915, 62, 9060, 62, 16684, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2939, 62, 1818, 15908, 796, 2939, 14692, 29869, 16934, 1, 7131, 1, 28516, 35277, 8973, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 479, 11, 410, 287, 2116, 13, 10396, 8139, 13, 23814, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9290, 62, 10396, 8139, 58, 418, 13, 6978, 13, 397, 2777, 776, 7, 74, 15437, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 21653, 1298, 410, 611, 410, 13, 9688, 2032, 342, 7203, 14, 4943, 2073, 28686, 13, 6978, 13, 22179, 7, 9060, 62, 1818, 15908, 11, 410, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 14171, 1298, 366, 31653, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 220, 220, 220, 220, 1057, 62, 46265, 22046, 796, 8633, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7715, 62, 439, 62, 3742, 28, 944, 13, 439, 62, 3742, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14090, 28, 3742, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 48224, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3141, 28, 5143, 62, 28758, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15343, 28, 34924, 62, 10396, 8139, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2858, 28, 944, 13, 38986, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 1057, 62, 46265, 22046, 13, 19119, 7, 944, 13, 26086, 62, 5143, 62, 46265, 22046, 8, 628, 220, 220, 220, 220, 220, 220, 220, 9290, 796, 5456, 13, 3642, 50221, 13, 5143, 7, 944, 13, 22915, 62, 9060, 62, 16684, 11, 12429, 5143, 62, 46265, 22046, 8, 628, 220, 220, 220, 220, 220, 220, 220, 981, 9290, 13, 13376, 6624, 366, 25598, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 640, 13, 42832, 7, 15, 13, 20, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9290, 13, 260, 2220, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 9290, 628, 220, 220, 220, 825, 4043, 62, 1640, 62, 34924, 7, 944, 11, 9290, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 21321, 329, 257, 9290, 284, 5461, 628, 220, 220, 220, 220, 220, 220, 220, 16531, 278, 17259, 981, 340, 338, 2491, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1627, 287, 9290, 13, 6404, 82, 7, 5532, 28, 17821, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 10951, 7, 1370, 13, 12501, 1098, 7203, 40477, 12, 23, 12340, 3131, 28, 11600, 7, 40715, 2625, 20270, 48774, 628, 220, 220, 220, 220, 220, 220, 220, 3443, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9290, 13, 260, 2220, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 9290, 13, 13376, 6624, 366, 20270, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 10951, 7203, 1273, 33307, 9290, 986, 59, 77, 1600, 3131, 28, 11600, 7, 40715, 2625, 20270, 48774, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9290, 13, 12728, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8420, 62, 8189, 796, 9290, 13, 1078, 3808, 14692, 9012, 1, 7131, 1, 30337, 10669, 8973, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9290, 13, 17077, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 10951, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 29869, 5201, 2491, 13, 59, 77, 1911, 45828, 22784, 3131, 28, 11600, 7, 40715, 2625, 20270, 4943, 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, 1303, 389, 612, 517, 17259, 30, 3914, 338, 3758, 606, 736, 1165, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2739, 62, 6404, 82, 796, 9290, 13, 6404, 82, 22446, 12501, 1098, 7203, 40477, 12, 23, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1627, 287, 2739, 62, 6404, 82, 13, 35312, 7203, 59, 77, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 10951, 7, 1370, 1343, 37082, 77, 1600, 3131, 28, 11600, 7, 40715, 2625, 20270, 48774, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9290, 13, 28956, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 8420, 62, 8189, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 37023, 7, 37023, 62, 8189, 8, 628, 220, 220, 220, 825, 4808, 1136, 62, 5787, 62, 634, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 18281, 88, 2446, 284, 651, 257, 1479, 4738, 2493, 319, 1957, 2583, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1330, 17802, 628, 220, 220, 220, 220, 220, 220, 220, 264, 796, 17802, 13, 44971, 7, 44971, 13, 8579, 62, 1268, 2767, 11, 17802, 13, 50, 11290, 62, 2257, 32235, 8, 198, 220, 220, 220, 220, 220, 220, 220, 264, 13, 21653, 7, 7203, 1600, 657, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2493, 796, 264, 13, 11407, 735, 3672, 3419, 58, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 264, 13, 19836, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2493, 628, 220, 220, 220, 825, 1382, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 10934, 36253, 2939, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 6822, 611, 374, 17, 67, 460, 2018, 284, 36253, 33386, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2116, 13, 39140, 62, 5143, 25, 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, 36253, 62, 16366, 796, 36253, 13, 2969, 2149, 75, 1153, 7, 9641, 2625, 23736, 1600, 12429, 46265, 22046, 62, 6738, 62, 24330, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 25716, 16922, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 18224, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37082, 77, 35, 12721, 5456, 37588, 4049, 25, 4064, 82, 13, 59, 77, 9787, 611, 36253, 318, 2491, 319, 262, 2583, 13, 59, 77, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 304, 11, 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, 220, 220, 220, 220, 2116, 13, 37023, 7, 16, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 262, 2723, 284, 307, 10945, 318, 257, 8619, 11, 2555, 1262, 262, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 8619, 13, 554, 262, 1339, 286, 257, 1957, 8619, 11, 340, 318, 973, 355, 1111, 262, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2723, 290, 2496, 13, 797, 3500, 257, 1957, 8619, 2331, 1365, 621, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1642, 257, 4866, 286, 340, 355, 340, 1244, 3994, 1588, 3696, 326, 561, 307, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 5789, 284, 4866, 13, 198, 220, 220, 220, 220, 220, 220, 220, 611, 28686, 13, 6978, 13, 9409, 343, 7, 944, 13, 260, 7501, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 28006, 62, 6978, 796, 2116, 13, 260, 7501, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 18300, 62, 1818, 15908, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 28006, 62, 6978, 796, 20218, 7753, 13, 28015, 67, 29510, 7, 40290, 2625, 260, 7501, 17, 45986, 4943, 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, 28006, 62, 6978, 796, 2116, 13, 18300, 62, 1818, 15908, 628, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 69, 7569, 7, 944, 13, 260, 7501, 11, 2116, 13, 5420, 11, 28006, 62, 6978, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 19796, 62, 9060, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 10951, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 3041, 3500, 4683, 2939, 37913, 92, 828, 407, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 16894, 526, 13, 18982, 7, 944, 13, 22915, 62, 9060, 62, 16684, 8, 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, 220, 220, 220, 220, 1303, 645, 761, 284, 1382, 11, 523, 14267, 284, 262, 886, 416, 4600, 7783, 63, 278, 994, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 428, 481, 991, 12260, 262, 3443, 13444, 290, 1309, 338, 514, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3368, 1719, 284, 33793, 262, 1382, 2438, 416, 281, 3131, 1241, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 7266, 15908, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 28006, 62, 6978, 796, 28686, 13, 6978, 13, 22179, 7, 9122, 448, 62, 6978, 11, 2116, 13, 7266, 15908, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 28686, 13, 6978, 13, 9409, 343, 7, 9122, 448, 62, 6978, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 18224, 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, 366, 7004, 34945, 4064, 82, 857, 407, 2152, 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, 2116, 13, 7266, 15908, 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, 3131, 28, 11600, 7, 40715, 2625, 32165, 495, 12340, 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, 220, 220, 220, 220, 5298, 9220, 3673, 21077, 12331, 7203, 23722, 407, 1064, 23884, 1911, 18982, 7, 9122, 448, 62, 6978, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 442, 15908, 7, 9122, 448, 62, 6978, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 20997, 287, 2116, 13, 11249, 32377, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 275, 79, 796, 20997, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 275, 79, 13, 15255, 478, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6497, 62, 11249, 8002, 796, 275, 79, 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, 6497, 62, 11249, 8002, 796, 2116, 13, 12286, 62, 11249, 8002, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6497, 62, 11249, 8002, 13, 1324, 19573, 796, 2116, 13, 1324, 19573, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3060, 20150, 14722, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6497, 62, 11249, 8002, 13, 23912, 1424, 14692, 260, 7501, 17, 45986, 13, 9641, 8973, 796, 2116, 13, 9641, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 29924, 62, 18242, 796, 366, 12001, 1, 611, 28686, 13, 6978, 13, 9409, 343, 7, 944, 13, 260, 7501, 8, 2073, 2116, 13, 260, 7501, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6497, 62, 11249, 8002, 13, 23912, 1424, 14692, 260, 7501, 17, 45986, 13, 260, 7501, 8973, 796, 29924, 62, 18242, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6497, 62, 11249, 8002, 13, 23912, 1424, 14692, 260, 7501, 17, 45986, 13, 5420, 8973, 796, 2116, 13, 5420, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 39140, 62, 5143, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 41891, 62, 11249, 8002, 13, 13287, 28955, 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, 13, 6404, 13, 24442, 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, 6497, 62, 11249, 8002, 13, 13287, 22784, 3131, 28, 11600, 7, 40715, 2625, 16894, 4943, 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, 220, 220, 220, 220, 611, 2116, 13, 7220, 62, 312, 6624, 657, 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, 5298, 11052, 12331, 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, 366, 30016, 355, 262, 4165, 2836, 287, 262, 2939, 318, 407, 10431, 526, 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, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1382, 62, 22046, 796, 1391, 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, 32819, 62, 29904, 1298, 2116, 13, 7220, 62, 3672, 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, 366, 32819, 62, 27586, 1298, 965, 7, 944, 13, 7220, 62, 312, 828, 198, 220, 220, 220, 220, 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, 220, 220, 220, 220, 611, 2116, 13, 16793, 62, 260, 7501, 62, 15908, 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, 1382, 62, 22046, 14692, 2200, 16402, 62, 34720, 8973, 796, 2116, 13, 16793, 62, 260, 7501, 62, 15908, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 10951, 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, 366, 12814, 4064, 82, 27098, 59, 77, 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, 275, 79, 13, 834, 4871, 834, 13, 834, 3672, 834, 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, 3131, 28, 11600, 7, 40715, 2625, 16894, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 300, 287, 6497, 62, 11249, 8002, 13, 11249, 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, 36253, 62, 16366, 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, 2116, 13, 22915, 62, 9060, 62, 16684, 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, 2116, 13, 11249, 62, 31673, 62, 32374, 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, 1382, 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, 2116, 13, 23870, 62, 6738, 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, 2116, 13, 26086, 62, 11249, 62, 46265, 22046, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15179, 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, 366, 5532, 1, 287, 300, 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, 220, 220, 220, 220, 2116, 13, 6404, 13, 10951, 7, 75, 14692, 5532, 33116, 3131, 28, 11600, 7, 40715, 2625, 16894, 48774, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 366, 18224, 1, 287, 300, 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, 220, 220, 220, 220, 2116, 13, 6404, 13, 10951, 7, 75, 14692, 18224, 33116, 3131, 28, 11600, 7, 40715, 2625, 32165, 495, 48774, 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, 5298, 36253, 13, 48277, 13, 15580, 12331, 7, 75, 14692, 18224, 33116, 1382, 62, 6404, 2625, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 366, 13376, 1, 287, 300, 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, 220, 220, 220, 220, 2116, 13, 6404, 13, 10951, 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, 366, 37, 7569, 278, 2779, 2939, 986, 59, 81, 1600, 3131, 28, 11600, 7, 40715, 2625, 16894, 4943, 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, 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, 220, 220, 220, 220, 2116, 13, 6404, 13, 10951, 7, 17752, 13, 67, 8142, 7, 75, 828, 3131, 28, 11600, 7, 40715, 2625, 16894, 48774, 628, 220, 220, 220, 220, 220, 220, 220, 3443, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5985, 929, 28006, 611, 3306, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 27773, 929, 62, 9122, 448, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4423, 346, 13, 81, 16762, 631, 7, 9122, 448, 62, 6978, 11, 8856, 62, 48277, 28, 17821, 8, 198 ]
2.115318
11,620
import os from pycograph import pycograph from pycograph.schemas.parse_result import CALLS, CONTAINS, IMPORTS from pycograph.schemas.pycograph_input import PycographLoadInput from tests.integration.whole_projects.helpers import assert_edge, assert_node
[ 11748, 28686, 198, 198, 6738, 12972, 66, 2384, 1330, 12972, 66, 2384, 198, 6738, 12972, 66, 2384, 13, 1416, 4411, 292, 13, 29572, 62, 20274, 1330, 33290, 6561, 11, 7102, 5603, 20913, 11, 30023, 33002, 198, 6738, 12972, 66, 2384, 13, 1416, 4411, 292, 13, 9078, 66, 2384, 62, 15414, 1330, 9485, 66, 2384, 8912, 20560, 198, 6738, 5254, 13, 18908, 1358, 13, 1929, 2305, 62, 42068, 13, 16794, 364, 1330, 6818, 62, 14907, 11, 6818, 62, 17440, 628 ]
3.227848
79
# -*- coding: utf-8 -*- from parser.utils.fn import stripe import torch import torch.autograd as autograd @torch.enable_grad()
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 6738, 30751, 13, 26791, 13, 22184, 1330, 39858, 198, 198, 11748, 28034, 198, 11748, 28034, 13, 2306, 519, 6335, 355, 1960, 519, 6335, 628, 198, 198, 31, 13165, 354, 13, 21633, 62, 9744, 3419, 628, 198 ]
2.627451
51
import argparse import gym from gym import spaces import cv2 cv2.ocl.setUseOpenCL(False) import pygame import sys import time import matplotlib import numpy as np import pickle import random import torch import torch.nn as nn import torch.nn.functional as F from run_test import * from baselines.common.trex_utils import preprocess sys.path[0] += '/baselines' from baselines.common.trex_utils import preprocess # from baselines.common.cmd_util import make_vec_env from baselines.common.vec_env.vec_frame_stack import VecFrameStack from baselines.common.vec_env.dummy_vec_env import DummyVecEnv try: matplotlib.use('GTK3Agg') import matplotlib.pyplot as plt except Exception: pass if __name__ == '__main__': num_trajs = 2000 num_snippets = 6000 num_super_snippets = 0 min_snippet_length = 50 #length of trajectory for training comparison max_snippet_length = 100 lr = 0.00005 weight_decay = 0.0 num_iter = 5 #num times through training data l1_reg = 0.0 stochastic = True demonstrations = {} for i in range(12): with open('col1_demos/%d' % (i+1),'rb') as fp: dem = pickle.load(fp) demonstrations[i] = dem # human_rankings = [] # label_reader = open("human_labels/si_columns.csv") # for i,line in enumerate(label_reader): # if i == 0: # continue #skip header info # parsed = line.split(",") # a_index = int(parsed[0]) # b_index = int(parsed[1]) # label = int(parsed[2]) # human_rankings.append((a_index, b_index, label)) reward_model_path = './learned_models/col1.params' device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu") reward_net = Net() reward_net.load_state_dict(torch.load(reward_model_path)) reward_net.to(device) with torch.no_grad(): pred_returns = [(predict_traj_return(reward_net, traj), len(traj)) for traj in demonstrations.values()] for i, p in enumerate(pred_returns): print(i+1,p[0],p[1],p[0]/p[1])
[ 11748, 1822, 29572, 198, 11748, 11550, 198, 6738, 11550, 1330, 9029, 198, 11748, 269, 85, 17, 198, 33967, 17, 13, 38679, 13, 2617, 11041, 11505, 5097, 7, 25101, 8, 198, 11748, 12972, 6057, 198, 11748, 25064, 198, 11748, 640, 198, 11748, 2603, 29487, 8019, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 2298, 293, 198, 198, 11748, 4738, 198, 11748, 28034, 198, 11748, 28034, 13, 20471, 355, 299, 77, 198, 11748, 28034, 13, 20471, 13, 45124, 355, 376, 198, 6738, 1057, 62, 9288, 1330, 1635, 198, 6738, 1615, 20655, 13, 11321, 13, 83, 21510, 62, 26791, 1330, 662, 14681, 198, 198, 17597, 13, 6978, 58, 15, 60, 15853, 31051, 12093, 20655, 6, 198, 6738, 1615, 20655, 13, 11321, 13, 83, 21510, 62, 26791, 1330, 662, 14681, 198, 2, 422, 1615, 20655, 13, 11321, 13, 28758, 62, 22602, 1330, 787, 62, 35138, 62, 24330, 198, 6738, 1615, 20655, 13, 11321, 13, 35138, 62, 24330, 13, 35138, 62, 14535, 62, 25558, 1330, 38692, 19778, 25896, 198, 6738, 1615, 20655, 13, 11321, 13, 35138, 62, 24330, 13, 67, 13513, 62, 35138, 62, 24330, 1330, 360, 13513, 53, 721, 4834, 85, 198, 28311, 25, 198, 220, 220, 220, 2603, 29487, 8019, 13, 1904, 10786, 19555, 42, 18, 46384, 11537, 198, 220, 220, 220, 1330, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 16341, 35528, 25, 198, 220, 220, 220, 1208, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 997, 62, 9535, 8457, 796, 4751, 198, 220, 220, 220, 997, 62, 16184, 3974, 1039, 796, 39064, 198, 220, 220, 220, 997, 62, 16668, 62, 16184, 3974, 1039, 796, 657, 198, 220, 220, 220, 949, 62, 16184, 3974, 316, 62, 13664, 796, 2026, 1303, 13664, 286, 22942, 329, 3047, 7208, 198, 220, 220, 220, 3509, 62, 16184, 3974, 316, 62, 13664, 796, 1802, 628, 220, 220, 220, 300, 81, 796, 657, 13, 2388, 20, 198, 220, 220, 220, 3463, 62, 12501, 323, 796, 657, 13, 15, 198, 220, 220, 220, 997, 62, 2676, 796, 642, 1303, 22510, 1661, 832, 3047, 1366, 198, 220, 220, 220, 300, 16, 62, 2301, 796, 657, 13, 15, 198, 220, 220, 220, 3995, 354, 3477, 796, 6407, 628, 220, 220, 220, 18721, 796, 23884, 198, 220, 220, 220, 329, 1312, 287, 2837, 7, 1065, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 351, 1280, 10786, 4033, 16, 62, 9536, 418, 14, 4, 67, 6, 4064, 357, 72, 10, 16, 828, 6, 26145, 11537, 355, 277, 79, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1357, 796, 2298, 293, 13, 2220, 7, 46428, 8, 198, 220, 220, 220, 220, 220, 220, 220, 18721, 58, 72, 60, 796, 1357, 628, 220, 220, 220, 1303, 1692, 62, 43027, 654, 796, 17635, 198, 220, 220, 220, 1303, 6167, 62, 46862, 796, 1280, 7203, 10734, 62, 23912, 1424, 14, 13396, 62, 28665, 82, 13, 40664, 4943, 198, 220, 220, 220, 1303, 329, 1312, 11, 1370, 287, 27056, 378, 7, 18242, 62, 46862, 2599, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 611, 1312, 6624, 657, 25, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 1303, 48267, 13639, 7508, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 44267, 796, 1627, 13, 35312, 7, 2430, 8, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 257, 62, 9630, 796, 493, 7, 79, 945, 276, 58, 15, 12962, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 275, 62, 9630, 796, 493, 7, 79, 945, 276, 58, 16, 12962, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 6167, 796, 493, 7, 79, 945, 276, 58, 17, 12962, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 1692, 62, 43027, 654, 13, 33295, 19510, 64, 62, 9630, 11, 275, 62, 9630, 11, 6167, 4008, 628, 220, 220, 220, 6721, 62, 19849, 62, 6978, 796, 705, 19571, 35720, 276, 62, 27530, 14, 4033, 16, 13, 37266, 6, 198, 220, 220, 220, 3335, 796, 28034, 13, 25202, 7203, 66, 15339, 25, 15, 1, 611, 28034, 13, 66, 15339, 13, 271, 62, 15182, 3419, 2073, 366, 36166, 4943, 198, 220, 220, 220, 6721, 62, 3262, 796, 3433, 3419, 198, 220, 220, 220, 6721, 62, 3262, 13, 2220, 62, 5219, 62, 11600, 7, 13165, 354, 13, 2220, 7, 260, 904, 62, 19849, 62, 6978, 4008, 198, 220, 220, 220, 6721, 62, 3262, 13, 1462, 7, 25202, 8, 198, 220, 220, 198, 220, 220, 220, 351, 28034, 13, 3919, 62, 9744, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 2747, 62, 7783, 82, 796, 47527, 79, 17407, 62, 9535, 73, 62, 7783, 7, 260, 904, 62, 3262, 11, 1291, 73, 828, 18896, 7, 9535, 73, 4008, 329, 1291, 73, 287, 18721, 13, 27160, 3419, 60, 198, 220, 220, 220, 329, 1312, 11, 279, 287, 27056, 378, 7, 28764, 62, 7783, 82, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 72, 10, 16, 11, 79, 58, 15, 4357, 79, 58, 16, 4357, 79, 58, 15, 60, 14, 79, 58, 16, 12962 ]
2.42654
844
from PIL import Image, TiffImagePlugin TiffImagePlugin.WRITE_LIBTIFF = True def save_tiff(output, img): """Save numpy array img as compressed TIFF as output file Args: output: img: Returns: """ pil_img = Image.fromarray(img) pil_img.save(output, compression='packbits')
[ 6738, 350, 4146, 1330, 7412, 11, 35775, 5159, 37233, 198, 198, 51, 733, 5159, 37233, 13, 18564, 12709, 62, 40347, 51, 29267, 796, 6407, 628, 198, 4299, 3613, 62, 83, 733, 7, 22915, 11, 33705, 2599, 198, 220, 220, 220, 37227, 16928, 299, 32152, 7177, 33705, 355, 25388, 309, 29267, 355, 5072, 2393, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5072, 25, 198, 220, 220, 220, 220, 220, 220, 220, 33705, 25, 628, 220, 220, 220, 16409, 25, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 5560, 62, 9600, 796, 7412, 13, 6738, 18747, 7, 9600, 8, 198, 220, 220, 220, 5560, 62, 9600, 13, 21928, 7, 22915, 11, 19794, 11639, 8002, 9895, 11537 ]
2.560976
123
from program2_funs import Searcher # , hSLD, SNode # (b) Show your program loading in the 30-node sample file. s = Searcher("30node.txt") # (c) Show you program setting start node=U and end node=T. s.setStartGoal('U','T') # myViz should be a DRDViz instance -> save map to file on disk. s.myViz.save("30node1.png") # (d) Show the one open node. # [n.showBasic() for n in s.open] # for n in s.open: # print(n) # # (e) Show successors of only open node. # initial_children = s.successors(s.open.pop(0)) # [n.showBasic() for n in initial_children] # # (f) Show three inserts: at the front, and the end, and "in order" # def reset_insert(where): # s.reset() # initial_children = s.successors(s.open.pop(0)) # insert_method = getattr(s, "insert_"+where) # insert_method(initial_children) # return [n.showBasic() for n in s.open] # reset_insert("front") # reset_insert("end") # reset_insert("ordered") # # (g) INSERT (K,500), (C,91) and (J,10) and show no duplicates. # newdata = (("K",500), ("C",91), ("J",10)) # newlist = [SNode(label=label, pathcost=pathcost) for label, pathcost in newdata] # ignored = s.insert_end(newlist) # [n.showBasic() for n in s.open] # # 3. hSLD heuritic function being called on three nodes. # [hSLD(x, s) for x in ("V", "AC", "J")]
[ 201, 198, 201, 198, 6738, 1430, 17, 62, 12543, 82, 1330, 42016, 2044, 220, 201, 198, 2, 837, 289, 8634, 35, 11, 11346, 1098, 201, 198, 201, 198, 201, 198, 2, 357, 65, 8, 5438, 534, 1430, 11046, 287, 262, 1542, 12, 17440, 6291, 2393, 13, 220, 201, 198, 82, 796, 42016, 2044, 7203, 1270, 17440, 13, 14116, 4943, 201, 198, 201, 198, 2, 357, 66, 8, 5438, 345, 1430, 4634, 923, 10139, 28, 52, 290, 886, 10139, 28, 51, 13, 220, 201, 198, 82, 13, 2617, 10434, 49045, 10786, 52, 41707, 51, 11537, 201, 198, 201, 198, 2, 616, 53, 528, 815, 307, 257, 10560, 35, 53, 528, 4554, 4613, 3613, 3975, 284, 2393, 319, 11898, 13, 201, 198, 82, 13, 1820, 53, 528, 13, 21928, 7203, 1270, 17440, 16, 13, 11134, 4943, 201, 198, 201, 198, 2, 357, 67, 8, 5438, 262, 530, 1280, 10139, 13, 201, 198, 2, 685, 77, 13, 12860, 26416, 3419, 329, 299, 287, 264, 13, 9654, 60, 201, 198, 201, 198, 2, 329, 299, 287, 264, 13, 9654, 25, 201, 198, 220, 220, 220, 220, 201, 198, 2, 220, 220, 220, 220, 3601, 7, 77, 8, 201, 198, 201, 198, 201, 198, 220, 220, 220, 220, 201, 198, 2, 1303, 357, 68, 8, 5438, 41491, 286, 691, 1280, 10139, 13, 201, 198, 2, 4238, 62, 17197, 796, 264, 13, 13138, 669, 7, 82, 13, 9654, 13, 12924, 7, 15, 4008, 201, 198, 201, 198, 2, 685, 77, 13, 12860, 26416, 3419, 329, 299, 287, 4238, 62, 17197, 60, 201, 198, 201, 198, 201, 198, 2, 1303, 357, 69, 8, 5438, 1115, 42220, 25, 379, 262, 2166, 11, 290, 262, 886, 11, 290, 366, 259, 1502, 1, 201, 198, 2, 825, 13259, 62, 28463, 7, 3003, 2599, 201, 198, 2, 220, 220, 220, 220, 264, 13, 42503, 3419, 201, 198, 2, 220, 220, 220, 220, 4238, 62, 17197, 796, 264, 13, 13138, 669, 7, 82, 13, 9654, 13, 12924, 7, 15, 4008, 201, 198, 2, 220, 220, 220, 220, 7550, 62, 24396, 796, 651, 35226, 7, 82, 11, 366, 28463, 62, 1, 10, 3003, 8, 201, 198, 2, 220, 220, 220, 220, 7550, 62, 24396, 7, 36733, 62, 17197, 8, 201, 198, 2, 220, 220, 220, 220, 1441, 685, 77, 13, 12860, 26416, 3419, 329, 299, 287, 264, 13, 9654, 60, 201, 198, 201, 198, 2, 13259, 62, 28463, 7203, 8534, 4943, 201, 198, 2, 13259, 62, 28463, 7203, 437, 4943, 201, 198, 2, 13259, 62, 28463, 7203, 24071, 4943, 201, 198, 201, 198, 2, 1303, 357, 70, 8, 29194, 17395, 357, 42, 11, 4059, 828, 357, 34, 11, 6420, 8, 290, 357, 41, 11, 940, 8, 290, 905, 645, 14184, 16856, 13, 201, 198, 2, 649, 7890, 796, 357, 7203, 42, 1600, 4059, 828, 5855, 34, 1600, 6420, 828, 5855, 41, 1600, 940, 4008, 201, 198, 2, 649, 4868, 796, 685, 15571, 1098, 7, 18242, 28, 18242, 11, 3108, 15805, 28, 6978, 15805, 8, 329, 6167, 11, 3108, 15805, 287, 649, 7890, 60, 201, 198, 2, 9514, 796, 264, 13, 28463, 62, 437, 7, 3605, 4868, 8, 201, 198, 2, 685, 77, 13, 12860, 26416, 3419, 329, 299, 287, 264, 13, 9654, 60, 201, 198, 201, 198, 2, 1303, 513, 13, 289, 8634, 35, 339, 333, 16233, 2163, 852, 1444, 319, 1115, 13760, 13, 201, 198, 2, 685, 71, 8634, 35, 7, 87, 11, 264, 8, 329, 2124, 287, 5855, 53, 1600, 366, 2246, 1600, 366, 41, 4943, 60, 201, 198 ]
2.352941
578
# Generated on 2019-02-03T13:03:06.509000 from mail import * from http import * from mime import * from netnews import * VERSION = "2019.02.03"
[ 2, 2980, 515, 319, 13130, 12, 2999, 12, 3070, 51, 1485, 25, 3070, 25, 3312, 13, 29022, 830, 198, 198, 6738, 6920, 1330, 1635, 198, 6738, 2638, 1330, 1635, 198, 6738, 285, 524, 1330, 1635, 198, 6738, 2010, 10827, 1330, 1635, 198, 198, 43717, 796, 366, 23344, 13, 2999, 13, 3070, 1, 198 ]
2.754717
53
import hashlib import json import multiprocessing as mp from typing import Optional import psutil from django.http import JsonResponse from django.views.decorators.csrf import csrf_exempt from django.views.decorators.http import require_POST, require_GET from django.utils import timezone from .constants import ( REQUESTED_MESSAGE, REQUESTED_TITLE, NOT_READY_TITLE, NOT_READY_MESSAGE, KILLED_TITLE, KILLED_MESSAGE, ) from .type_hints import AllocationStatus from .allocation import Allocator, _run_allocation from .schema import InputData from .models import AllocationState from .utils import seconds_to_eta @csrf_exempt @require_POST @require_GET
[ 11748, 12234, 8019, 198, 11748, 33918, 198, 11748, 18540, 305, 919, 278, 355, 29034, 198, 6738, 19720, 1330, 32233, 198, 198, 11748, 26692, 22602, 198, 198, 6738, 42625, 14208, 13, 4023, 1330, 449, 1559, 31077, 198, 6738, 42625, 14208, 13, 33571, 13, 12501, 273, 2024, 13, 6359, 41871, 1330, 269, 27891, 69, 62, 42679, 198, 6738, 42625, 14208, 13, 33571, 13, 12501, 273, 2024, 13, 4023, 1330, 2421, 62, 32782, 11, 2421, 62, 18851, 198, 6738, 42625, 14208, 13, 26791, 1330, 640, 11340, 198, 198, 6738, 764, 9979, 1187, 1330, 357, 198, 220, 220, 220, 4526, 35780, 1961, 62, 44, 1546, 4090, 8264, 11, 198, 220, 220, 220, 4526, 35780, 1961, 62, 49560, 2538, 11, 198, 220, 220, 220, 5626, 62, 15675, 56, 62, 49560, 2538, 11, 198, 220, 220, 220, 5626, 62, 15675, 56, 62, 44, 1546, 4090, 8264, 11, 198, 220, 220, 220, 45257, 1961, 62, 49560, 2538, 11, 198, 220, 220, 220, 45257, 1961, 62, 44, 1546, 4090, 8264, 11, 198, 8, 198, 6738, 764, 4906, 62, 71, 29503, 1330, 1439, 5040, 19580, 198, 6738, 764, 439, 5040, 1330, 1439, 420, 1352, 11, 4808, 5143, 62, 439, 5040, 198, 6738, 764, 15952, 2611, 1330, 23412, 6601, 198, 6738, 764, 27530, 1330, 1439, 5040, 9012, 198, 6738, 764, 26791, 1330, 4201, 62, 1462, 62, 17167, 628, 198, 198, 31, 6359, 41871, 62, 42679, 198, 31, 46115, 62, 32782, 628, 198, 31, 46115, 62, 18851, 198 ]
2.877637
237
__author__ = 'Den Elston' __version__ = '0.0.1' default_app_config = 'django_webpack.apps.DjangoWebpackConfig'
[ 834, 9800, 834, 796, 705, 21306, 2574, 3743, 6, 198, 834, 9641, 834, 796, 705, 15, 13, 15, 13, 16, 6, 198, 198, 12286, 62, 1324, 62, 11250, 796, 705, 28241, 14208, 62, 12384, 8002, 13, 18211, 13, 35, 73, 14208, 13908, 8002, 16934, 6 ]
2.466667
45
import math radius = 10 printPattern(radius)
[ 11748, 10688, 198, 42172, 796, 838, 198, 4798, 47546, 7, 42172, 8 ]
3.666667
12