diff
stringlengths
41
2.03M
msg
stringlengths
1
1.5k
repo
stringlengths
5
40
sha
stringlengths
40
40
time
stringlengths
20
20
mmm a / templates / grpc . gemspec . template <nl> ppp b / templates / grpc . gemspec . template <nl> <nl> s . require_paths = % w ( src / ruby / lib src / ruby / bin src / ruby / pb ) <nl> s . platform = Gem : : Platform : : RUBY <nl> <nl> - s . add_dependency ' google - protobuf ' , ' ~ > $ { settings . protobuf_short_version } ' <nl> + s . add_dependency ' google - protobuf ' , ' ~ > $ { settings . protobuf_major_minor_version } ' <nl> s . add_dependency ' googleapis - common - protos - types ' , ' ~ > 1 . 0 ' <nl> <nl> s . add_development_dependency ' bundler ' , ' > = 1 . 9 ' <nl> mmm a / tools / buildgen / plugins / expand_version . py <nl> ppp b / tools / buildgen / plugins / expand_version . py <nl> def mako_plugin ( dictionary ) : <nl> else : <nl> settings [ version_tag ] = Version ( version_str , <nl> override_major = override_major ) <nl> - settings [ ' protobuf_short_version ' ] = ( <nl> + settings [ ' protobuf_major_minor_version ' ] = ( <nl> ' . ' . join ( settings [ ' protobuf_version ' ] . split ( ' . ' ) [ : - 1 ] ) ) <nl> mmm a / tools / distrib / python / grpcio_tools / setup . py <nl> ppp b / tools / distrib / python / grpcio_tools / setup . py <nl> def extension_modules ( ) : <nl> ext_modules = extension_modules ( ) , <nl> packages = setuptools . find_packages ( ' . ' ) , <nl> install_requires = [ <nl> - ' protobuf = = { } ' . format ( grpc_version . PROTOBUF_VERSION ) , <nl> + ' protobuf > = 3 . 5 . 0 . post1 , < 4 . 0dev ' , <nl> ' grpcio > = { version } ' . format ( version = grpc_version . VERSION ) , <nl> ' setuptools ' , <nl> ] , <nl>
Review comments
grpc/grpc
38124ab0c6616cd54cd6e020c96bdf527b6fb3ef
2020-12-07T19:52:44Z
mmm a / jstests / replsets / two_initsync . js <nl> ppp b / jstests / replsets / two_initsync . js <nl> function wait ( f ) { <nl> } <nl> <nl> doTest = function ( signal ) { <nl> + if ( ! ( typeof TestData . setParameters = = = ' string ' ) | | <nl> + ! TestData . setParameters . includes ( " use3dot2InitialSync = true " ) ) { <nl> + print ( " Test should only run with 3 . 2 style initial sync . " ) ; <nl> + return ; <nl> + } <nl> var replTest = new ReplSetTest ( { name : ' testSet ' , nodes : 0 } ) ; <nl> <nl> var first = replTest . add ( ) ; <nl> doTest = function ( signal ) { <nl> <nl> var a = replTest . getPrimary ( ) . getDB ( " two " ) ; <nl> for ( var i = 0 ; i < 20000 ; i + + ) <nl> - a . coll . insert ( <nl> - { i : i , s : " a b " } ) ; <nl> + assert . writeOK ( a . coll . insert ( { <nl> + i : i , <nl> + s : " a b " <nl> + } ) ) ; <nl> + assert . eq ( 20000 , a . coll . find ( ) . itcount ( ) ) ; <nl> <nl> / / Start a second node <nl> var second = replTest . add ( ) ; <nl>
SERVER - 26773 : two_initsync . js should check that inserts succeed
mongodb/mongo
3fecf0005918bad649fa5ad0fb131b8f82af8932
2016-12-13T17:55:20Z
mmm a / proton <nl> ppp b / proton <nl> from filelock import FileLock , Timeout <nl> <nl> # WITH_WINEDEBUG = " + timestamp , + pid , + tid , + seh " <nl> <nl> - CURRENT_PREFIX_VERSION = " 3 . 4 - 1 " <nl> + CURRENT_PREFIX_VERSION = " 3 . 5 - 1 " <nl> <nl> PFX = " Proton : " <nl> <nl> mmm a / wine <nl> ppp b / wine <nl> @ @ - 1 + 1 @ @ <nl> - Subproject commit c61a14925ce4b95fe833a697ec0a7f105ec6960a <nl> + Subproject commit 5eb1691248899c2edd69dbe64190ff079da1a444 <nl>
Update wine to 3 . 5
ValveSoftware/Proton
6606a7f0e85b0cba7d60d8fc0100313afe2e8906
2018-04-02T14:00:33Z
mmm a / Code / CryEngine / CrySystem / ProjectManager / ProjectManager . cpp <nl> ppp b / Code / CryEngine / CrySystem / ProjectManager / ProjectManager . cpp <nl> bool CProjectManager : : ParseProjectFile ( ) <nl> projectFile = PathUtil : : ReplaceExtension ( projectFile , " cryproject " ) ; <nl> } <nl> <nl> - m_project . filePath = projectFile ; <nl> + m_project . filePath = PathUtil : : Make ( gEnv - > pSystem - > GetRootFolder ( ) , projectFile ) ; <nl> } <nl> <nl> # ifndef CRY_FORCE_CRYPROJECT_IN_PAK <nl>
! B ( CE - 22386 ) ( Orbis , CrySystem ) CRASH : PS4 crashes on boot
CRYTEK/CRYENGINE
a4409287156c5c3913ef43807321d25e7f411738
2019-12-10T15:08:44Z
mmm a / dbms / src / Storages / StorageReplicatedMergeTree . cpp <nl> ppp b / dbms / src / Storages / StorageReplicatedMergeTree . cpp <nl> <nl> # include < Databases / IDatabase . h > <nl> <nl> # include < Parsers / formatAST . h > <nl> + # include < Parsers / ASTDropQuery . h > <nl> # include < Parsers / ASTOptimizeQuery . h > <nl> # include < Parsers / ASTLiteral . h > <nl> <nl> void StorageReplicatedMergeTree : : sendRequestToLeaderReplica ( const ASTPtr & query <nl> optimize - > database = leader_address . database ; <nl> optimize - > table = leader_address . table ; <nl> } <nl> + else if ( auto * drop = typeid_cast < ASTDropQuery * > ( new_query . get ( ) ) ) <nl> + { <nl> + drop - > database = leader_address . database ; <nl> + drop - > table = leader_address . table ; <nl> + } <nl> else <nl> throw Exception ( " Can ' t proxy this query . Unsupported query type " , ErrorCodes : : NOT_IMPLEMENTED ) ; <nl> <nl>
ReplicatedMergeTree : send drop request to the leader replica
ClickHouse/ClickHouse
0f509b9eb501007f2ba033aa9bac107f2878fad9
2018-10-13T20:58:04Z
mmm a / dbms / src / Functions / FunctionsArithmetic . h <nl> ppp b / dbms / src / Functions / FunctionsArithmetic . h <nl> template < > constexpr bool IsIntegral < DataTypeInt16 > = true ; <nl> template < > constexpr bool IsIntegral < DataTypeInt32 > = true ; <nl> template < > constexpr bool IsIntegral < DataTypeInt64 > = true ; <nl> <nl> + template < typename DataType > constexpr bool IsFloatingPoint = false ; <nl> + template < > constexpr bool IsFloatingPoint < DataTypeFloat32 > = true ; <nl> + template < > constexpr bool IsFloatingPoint < DataTypeFloat64 > = true ; <nl> + <nl> template < typename DataType > constexpr bool IsDateOrDateTime = false ; <nl> template < > constexpr bool IsDateOrDateTime < DataTypeDate > = true ; <nl> template < > constexpr bool IsDateOrDateTime < DataTypeDateTime > = true ; <nl> struct BinaryOperationTraits <nl> / / / least ( Date , Date ) - > Date <nl> / / / greatest ( Date , Date ) - > Date <nl> Case < std : : is_same_v < LeftDataType , RightDataType > & & ( std : : is_same_v < Op , LeastImpl < T0 , T1 > > | | std : : is_same_v < Op , GreatestImpl < T0 , T1 > > ) , <nl> - LeftDataType > > ; <nl> + LeftDataType > , <nl> + / / / Date % Int32 - > int32 <nl> + Case < std : : is_same_v < Op , ModuloImpl < T0 , T1 > > , Switch < <nl> + Case < IsDateOrDateTime < LeftDataType > & & IsIntegral < RightDataType > , RightDataType > , <nl> + Case < IsDateOrDateTime < LeftDataType > & & IsFloatingPoint < RightDataType > , DataTypeInt32 > > > > ; <nl> + <nl> } ; <nl> <nl> <nl> new file mode 100644 <nl> index 00000000000 . . 4dff9ef38ef <nl> mmm / dev / null <nl> ppp b / dbms / tests / queries / 0_stateless / 00726_modulo_for_date . reference <nl> <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> + 1 <nl> new file mode 100644 <nl> index 00000000000 . . 18f48ad447d <nl> mmm / dev / null <nl> ppp b / dbms / tests / queries / 0_stateless / 00726_modulo_for_date . sql <nl> <nl> + SELECT toDate ( ' 2018 - 06 - 21 ' ) % 234 = toInt16 ( toDate ( ' 2018 - 06 - 21 ' ) ) % 234 ; <nl> + SELECT toDate ( ' 2018 - 06 - 21 ' ) % 23456 = toInt16 ( toDate ( ' 2018 - 06 - 21 ' ) ) % 23456 ; <nl> + SELECT toDate ( ' 2018 - 06 - 21 ' ) % 12376 = toInt16 ( toDate ( ' 2018 - 06 - 21 ' ) ) % 12376 ; <nl> + SELECT toDateTime ( ' 2018 - 06 - 21 12 : 12 : 12 ' ) % 234 = toInt32 ( toDateTime ( ' 2018 - 06 - 21 12 : 12 : 12 ' ) ) % 234 ; <nl> + SELECT toDateTime ( ' 2018 - 06 - 21 12 : 12 : 12 ' ) % 23456 = toInt32 ( toDateTime ( ' 2018 - 06 - 21 12 : 12 : 12 ' ) ) % 23456 ; <nl> + SELECT toDateTime ( ' 2018 - 06 - 21 12 : 12 : 12 ' ) % 12376 = toInt32 ( toDateTime ( ' 2018 - 06 - 21 12 : 12 : 12 ' ) ) % 12376 ; <nl> + <nl> + SELECT toDate ( ' 2018 - 06 - 21 ' ) % 234 . 8 = toInt16 ( toDate ( ' 2018 - 06 - 21 ' ) ) % 234 . 8 ; <nl> + SELECT toDate ( ' 2018 - 06 - 21 ' ) % 23456 . 8 = toInt16 ( toDate ( ' 2018 - 06 - 21 ' ) ) % 23456 . 8 ; <nl> + SELECT toDate ( ' 2018 - 06 - 21 ' ) % 12376 . 8 = toInt16 ( toDate ( ' 2018 - 06 - 21 ' ) ) % 12376 . 8 ; <nl> + SELECT toDateTime ( ' 2018 - 06 - 21 12 : 12 : 12 ' ) % 234 . 8 = toInt32 ( toDateTime ( ' 2018 - 06 - 21 12 : 12 : 12 ' ) ) % 234 . 8 ; <nl> + SELECT toDateTime ( ' 2018 - 06 - 21 12 : 12 : 12 ' ) % 23456 . 8 = toInt32 ( toDateTime ( ' 2018 - 06 - 21 12 : 12 : 12 ' ) ) % 23456 . 8 ; <nl> + SELECT toDateTime ( ' 2018 - 06 - 21 12 : 12 : 12 ' ) % 12376 . 8 = toInt32 ( toDateTime ( ' 2018 - 06 - 21 12 : 12 : 12 ' ) ) % 12376 . 8 ; <nl>
Merge pull request from VadimPE / CLICKHOUSE - 1791
ClickHouse/ClickHouse
57e6dc3477ee57e6379a20a7d6621894f4503ba9
2018-10-22T20:38:40Z
mmm a / src / video_core / shader / decode / image . cpp <nl> ppp b / src / video_core / shader / decode / image . cpp <nl> u32 ShaderIR : : DecodeImage ( NodeBlock & bb , u32 pc ) { <nl> switch ( component_type ) { <nl> case ComponentType : : SNORM : { <nl> / / range [ - 1 . 0 , 1 . 0 ] <nl> - auto cnv_value = Operation ( OperationCode : : FMul , NO_PRECISE , <nl> - original_value , Immediate ( 128 . f ) ) ; <nl> - return SignedOperation ( OperationCode : : ICastFloat , is_signed , NO_PRECISE , <nl> + auto cnv_value = <nl> + Operation ( OperationCode : : FMul , original_value , Immediate ( 128 . f ) ) ; <nl> + return SignedOperation ( OperationCode : : ICastFloat , is_signed , <nl> std : : move ( cnv_value ) ) ; <nl> } <nl> case ComponentType : : UNORM : { <nl> / / range [ 0 . 0 , 1 . 0 ] <nl> - auto cnv_value = Operation ( OperationCode : : FMul , NO_PRECISE , <nl> - original_value , Immediate ( 255 . f ) ) ; <nl> + auto cnv_value = <nl> + Operation ( OperationCode : : FMul , original_value , Immediate ( 255 . f ) ) ; <nl> is_signed = false ; <nl> - return SignedOperation ( OperationCode : : ICastFloat , is_signed , NO_PRECISE , <nl> + return SignedOperation ( OperationCode : : ICastFloat , is_signed , <nl> std : : move ( cnv_value ) ) ; <nl> } <nl> case ComponentType : : SINT : / / range [ - 128 , 128 ] <nl> u32 ShaderIR : : DecodeImage ( NodeBlock & bb , u32 pc ) { <nl> <nl> / / add value into result <nl> value = Operation ( OperationCode : : UBitwiseOr , value , std : : move ( converted_value ) ) ; <nl> - break ; <nl> } <nl> SetRegister ( bb , instr . gpr0 . Value ( ) , std : : move ( value ) ) ; <nl> - <nl> break ; <nl> } <nl> default : <nl>
cleanup unuse params
yuzu-emu/yuzu
3e3afa9be646f218a417097d1bd139f2008a90e7
2020-04-05T03:31:31Z
mmm a / cmake / modules / SwiftConfigureSDK . cmake <nl> ppp b / cmake / modules / SwiftConfigureSDK . cmake <nl> function ( _report_sdk prefix ) <nl> message ( STATUS " $ { arch } LIB : $ { $ { arch } _LIB } " ) <nl> endforeach ( ) <nl> elseif ( " $ { prefix } " STREQUAL " ANDROID " ) <nl> - message ( STATUS " NDK Dir : $ ENV { SWIFT_ANDROID_NDK_PATH } " ) <nl> + message ( STATUS " NDK : $ ENV { SWIFT_ANDROID_NDK_PATH } " ) <nl> foreach ( arch $ { SWIFT_SDK_ $ { prefix } _ARCHITECTURES } ) <nl> swift_android_include_for_arch ( $ { arch } $ { arch } _INCLUDE ) <nl> swift_android_lib_for_arch ( $ { arch } $ { arch } _LIB ) <nl> macro ( configure_sdk_unix name architectures ) <nl> endif ( ) <nl> <nl> # Get the prebuilt suffix to create the correct toolchain path when using the NDK <nl> - if ( " $ { CMAKE_HOST_SYSTEM_NAME } " STREQUAL " Darwin " ) <nl> - set ( _swift_android_prebuilt_build " darwin - x86_64 " ) <nl> - elseif ( " $ { CMAKE_HOST_SYSTEM_NAME } " STREQUAL " Linux " ) <nl> - set ( _swift_android_prebuilt_build " linux - x86_64 " ) <nl> + if ( CMAKE_HOST_SYSTEM_NAME STREQUAL Darwin ) <nl> + set ( _swift_android_prebuilt_build darwin - x86_64 ) <nl> + elseif ( CMAKE_HOST_SYSTEM_NAME STREQUAL Linux ) <nl> + set ( _swift_android_prebuilt_build linux - x86_64 ) <nl> + elseif ( CMAKE_HOST_SYSTEM_NAME STREQUAL Windows ) <nl> + set ( _swift_android_prebuilt_build Windows - x86_64 ) <nl> + else ( ) <nl> + message ( SEND_ERROR " cannot cross - compile to android from $ { CMAKE_HOST_SYSTEM_NAME } " ) <nl> endif ( ) <nl> if ( " $ { arch } " STREQUAL " i686 " ) <nl> set ( SWIFT_SDK_ANDROID_ARCH_ $ { arch } _NDK_PREBUILT_PATH <nl>
Merge remote - tracking branch ' origin / master ' into master - next
apple/swift
823608041cd74cf53fa8fcf8cdfd77a3678ba4b6
2019-06-14T05:50:48Z
mmm a / tensorflow / core / BUILD <nl> ppp b / tensorflow / core / BUILD <nl> cc_library ( <nl> " * * / * test * " , <nl> ] , <nl> ) , <nl> + hdrs = [ <nl> + " framework / allocator . h " , <nl> + " framework / bfloat16 . h " , <nl> + " framework / numeric_types . h " , <nl> + " framework / tensor_types . h " , <nl> + " framework / types . h " , <nl> + " lib / core / arena . h " , <nl> + " lib / core / bits . h " , <nl> + " lib / core / blocking_counter . h " , <nl> + " lib / core / casts . h " , <nl> + " lib / core / coding . h " , <nl> + " lib / core / command_line_flags . h " , <nl> + " lib / core / errors . h " , <nl> + " lib / core / notification . h " , <nl> + " lib / core / refcount . h " , <nl> + " lib / core / stringpiece . h " , <nl> + " lib / core / threadpool . h " , <nl> + " lib / gtl / array_slice . h " , <nl> + " lib / gtl / edit_distance . h " , <nl> + " lib / gtl / inlined_vector . h " , <nl> + " lib / gtl / int_type . h " , <nl> + " lib / gtl / iterator_range . h " , <nl> + " lib / gtl / map_util . h " , <nl> + " lib / gtl / stl_util . h " , <nl> + " lib / gtl / top_n . h " , <nl> + " lib / hash / crc32c . h " , <nl> + " lib / hash / hash . h " , <nl> + " lib / histogram / histogram . h " , <nl> + " lib / io / inputbuffer . h " , <nl> + " lib / io / iterator . h " , <nl> + " lib / io / match . h " , <nl> + " lib / io / path . h " , <nl> + " lib / io / record_reader . h " , <nl> + " lib / io / record_writer . h " , <nl> + " lib / io / table . h " , <nl> + " lib / io / table_builder . h " , <nl> + " lib / io / table_options . h " , <nl> + " lib / jpeg / jpeg_handle . h " , <nl> + " lib / jpeg / jpeg_mem . h " , <nl> + " lib / random / distribution_sampler . h " , <nl> + " lib / random / philox_random . h " , <nl> + " lib / random / random . h " , <nl> + " lib / random / random_distributions . h " , <nl> + " lib / random / simple_philox . h " , <nl> + " lib / random / weighted_picker . h " , <nl> + " lib / strings / numbers . h " , <nl> + " lib / strings / ordered_code . h " , <nl> + " lib / strings / str_util . h " , <nl> + " lib / strings / strcat . h " , <nl> + " lib / strings / stringprintf . h " , <nl> + " platform / init_main . h " , <nl> + " platform / logging . h " , <nl> + " platform / port . h " , <nl> + " platform / protobuf . h " , <nl> + " platform / regexp . h " , <nl> + " platform / stream_executor_util . h " , <nl> + " platform / tensor_coding . h " , <nl> + " platform / thread_annotations . h " , <nl> + " platform / tracing . h " , <nl> + " public / env . h " , <nl> + " public / session . h " , <nl> + " public / session_options . h " , <nl> + " public / status . h " , <nl> + " public / tensor . h " , <nl> + " public / tensor_c_api . h " , <nl> + " public / tensor_shape . h " , <nl> + ] , <nl> copts = tf_copts ( ) , <nl> visibility = [ <nl> " : friends " , <nl> cc_library ( <nl> " common_runtime / kernel_benchmark_testlib . cc " , <nl> " common_runtime / kernel_benchmark_testlib . h " , <nl> " framework / function_testlib . cc " , <nl> - " framework / function_testlib . h " , <nl> " framework / tensor_testutil . cc " , <nl> - " framework / tensor_testutil . h " , <nl> " graph / testlib . cc " , <nl> + ] , <nl> + hdrs = [ <nl> + " framework / function_testlib . h " , <nl> + " framework / tensor_testutil . h " , <nl> " graph / testlib . h " , <nl> ] , <nl> copts = tf_copts ( ) , <nl> cc_library ( <nl> <nl> cc_library ( <nl> name = " core " , <nl> + hdrs = [ <nl> + " lib / core / coding . h " , <nl> + " lib / core / errors . h " , <nl> + " lib / gtl / array_slice . h " , <nl> + " lib / hash / crc32c . h " , <nl> + " lib / histogram / histogram . h " , <nl> + " lib / io / record_reader . h " , <nl> + " lib / jpeg / jpeg_mem . h " , <nl> + " lib / png / png_io . h " , <nl> + " lib / strings / str_util . h " , <nl> + " lib / strings / strcat . h " , <nl> + " platform / init_main . h " , <nl> + " platform / logging . h " , <nl> + " platform / port . h " , <nl> + " platform / protobuf . h " , <nl> + ] , <nl> visibility = [ " / / visibility : public " ] , <nl> deps = [ <nl> " : core_cpu " , <nl> filegroup ( <nl> cc_library ( <nl> name = " android_tensorflow_lib " , <nl> srcs = [ <nl> + " platform / google / cord_coding . h " , <nl> + " platform / google / mutex . h " , <nl> + " platform / google / stream_executor_util . h " , <nl> + " platform / google / tracing_impl . h " , <nl> " / / tensorflow / core : android_core_ops " , <nl> " / / tensorflow / core : android_extended_ops " , <nl> " / / tensorflow / core : android_srcs " , <nl> ] , <nl> + hdrs = [ <nl> + " platform / logging . h " , <nl> + " platform / port . h " , <nl> + " public / env . h " , <nl> + " public / session . h " , <nl> + " public / tensor . h " , <nl> + ] , <nl> copts = [ <nl> " - mfpu = neon " , <nl> " - std = c + + 11 " , <nl> mmm a / tensorflow / core / kernels / resize_bicubic_op . cc <nl> ppp b / tensorflow / core / kernels / resize_bicubic_op . cc <nl> class ResizeBicubicOp : public OpKernel { <nl> const int64 channels = input . dim_size ( 3 ) ; <nl> const int64 out_height = output - > dim_size ( 1 ) ; <nl> const int64 out_width = output - > dim_size ( 2 ) ; <nl> + CHECK_GT ( in_height , 0 ) ; <nl> + CHECK_GT ( in_width , 0 ) ; <nl> + CHECK_GT ( channels , 0 ) ; <nl> + CHECK_GT ( out_height , 0 ) ; <nl> + CHECK_GT ( out_width , 0 ) ; <nl> <nl> typename TTypes < T , 4 > : : ConstTensor input_data = input . tensor < T , 4 > ( ) ; <nl> typename TTypes < float , 4 > : : Tensor output_data = output - > tensor < float , 4 > ( ) ; <nl> mmm a / tensorflow / core / kernels / resize_bilinear_op . cc <nl> ppp b / tensorflow / core / kernels / resize_bilinear_op . cc <nl> class ResizeBilinearOp : public OpKernel { <nl> const int64 channels = input . dim_size ( 3 ) ; <nl> const int64 out_height = output - > dim_size ( 1 ) ; <nl> const int64 out_width = output - > dim_size ( 2 ) ; <nl> + CHECK_GT ( in_height , 0 ) ; <nl> + CHECK_GT ( in_width , 0 ) ; <nl> + CHECK_GT ( channels , 0 ) ; <nl> + CHECK_GT ( out_height , 0 ) ; <nl> + CHECK_GT ( out_width , 0 ) ; <nl> <nl> typename TTypes < T , 4 > : : ConstTensor input_data = input . tensor < T , 4 > ( ) ; <nl> typename TTypes < float , 4 > : : Tensor output_data = output - > tensor < float , 4 > ( ) ; <nl> new file mode 100644 <nl> index 0000000000000 . . 9c9888664c5b0 <nl> mmm / dev / null <nl> ppp b / tensorflow / examples / udacity / 1_notmnist . ipynb <nl> <nl> + { <nl> + " worksheets " : [ <nl> + { <nl> + " cells " : [ <nl> + { <nl> + " metadata " : { <nl> + " id " : " 5hIbr52I7Z7U " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Deep Learning \ n = = = = = = = = = = = = = \ n \ nAssignment 1 \ nmmmmmmmmmmmm \ n \ nThe objective of this assignment is to learn about simple data curation practices , and familiarize you with some of the data we ' ll be reusing later . \ n \ nThis notebook uses the [ notMNIST ] ( http : / / yaroslavvb . blogspot . com / 2011 / 09 / notmnist - dataset . html ) dataset to be used with python experiments . This dataset is designed to look like the classic [ MNIST ] ( http : / / yann . lecun . com / exdb / mnist / ) dataset , while looking a little more like real data : it ' s a harder task , and the data is a lot less ' clean ' than MNIST . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " apJbCsBHl - 2A " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } <nl> + } , <nl> + " cellView " : " both " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " # These are all the modules we ' ll be using later . Make sure you can import them \ n # before proceeding further . \ nimport matplotlib . pyplot as plt \ nimport numpy as np \ nimport os \ nimport tarfile \ nimport urllib \ nfrom IPython . display import display , Image \ nfrom scipy import ndimage \ nfrom sklearn . linear_model import LogisticRegression \ nimport cPickle as pickle " , <nl> + " language " : " python " , <nl> + " outputs " : [ ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " jNWGtZaXn - 5j " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " First , we ' ll download the dataset to our local machine . The data consists of characters rendered in a variety of fonts on a 28x28 image . The labels are limited to ' A ' through ' J ' ( 10 classes ) . The training set has about 500k and the testset 19000 labelled examples . Given these sizes , it should be possible to train models quickly on any machine . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " EYRJ4ICW6 - da " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 1 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 186058 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1444485672507 , <nl> + " user " : { <nl> + " color " : " # 1FA15D " , <nl> + " displayName " : " Vincent Vanhoucke " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " 05076109866853157986 " , <nl> + " photoUrl " : " / / lh6 . googleusercontent . com / - cCJa7dTDcgQ / AAAAAAAAAAI / AAAAAAAACgw / r2EZ_8oYer4 / s50 - c - k - no / photo . jpg " , <nl> + " sessionId " : " 2a0a5e044bb03b66 " , <nl> + " userId " : " 102167687554210253930 " <nl> + } , <nl> + " user_tz " : 420 <nl> + } , <nl> + " outputId " : " 0d0f85df - 155f - 4a89 - 8e7e - ee32df36ec8d " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " url = ' http : / / yaroslavvb . com / upload / notMNIST / ' \ n \ ndef maybe_download ( filename , expected_bytes ) : \ n \ " \ " \ " Download a file if not present , and make sure it ' s the right size . \ " \ " \ " \ n if not os . path . exists ( filename ) : \ n filename , _ = urllib . urlretrieve ( url + filename , filename ) \ n statinfo = os . stat ( filename ) \ n if statinfo . st_size = = expected_bytes : \ n print ' Found and verified ' , filename \ n else : \ n raise Exception ( \ n ' Failed to verify ' + filename + ' . Can you get to it with a browser ? ' ) \ n return filename \ n \ ntrain_filename = maybe_download ( ' notMNIST_large . tar . gz ' , 247336696 ) \ ntest_filename = maybe_download ( ' notMNIST_small . tar . gz ' , 8458043 ) " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " Found and verified notMNIST_large . tar . gz \ nFound and verified notMNIST_small . tar . gz \ n " <nl> + } <nl> + ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " cC3p0oEyF8QT " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Extract the dataset from the compressed . tar . gz file . \ nThis should give you a set of directories , labelled A through J . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " H8CBE - WZ8nmj " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 1 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 186055 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1444485672525 , <nl> + " user " : { <nl> + " color " : " # 1FA15D " , <nl> + " displayName " : " Vincent Vanhoucke " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " 05076109866853157986 " , <nl> + " photoUrl " : " / / lh6 . googleusercontent . com / - cCJa7dTDcgQ / AAAAAAAAAAI / AAAAAAAACgw / r2EZ_8oYer4 / s50 - c - k - no / photo . jpg " , <nl> + " sessionId " : " 2a0a5e044bb03b66 " , <nl> + " userId " : " 102167687554210253930 " <nl> + } , <nl> + " user_tz " : 420 <nl> + } , <nl> + " outputId " : " ef6c790c - 2513 - 4b09 - 962e - 27c79390c762 " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " num_classes = 10 \ n \ ndef extract ( filename ) : \ n tar = tarfile . open ( filename ) \ n tar . extractall ( ) \ n tar . close ( ) \ n root = os . path . splitext ( os . path . splitext ( filename ) [ 0 ] ) [ 0 ] # remove . tar . gz \ n data_folders = [ os . path . join ( root , d ) for d in sorted ( os . listdir ( root ) ) ] \ n if len ( data_folders ) ! = num_classes : \ n raise Exception ( \ n ' Expected % d folders , one per class . Found % d instead . ' % ( \ n num_folders , len ( data_folders ) ) ) \ n print data_folders \ n return data_folders \ n \ ntrain_folders = extract ( train_filename ) \ ntest_folders = extract ( test_filename ) " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " [ ' notMNIST_large / A ' , ' notMNIST_large / B ' , ' notMNIST_large / C ' , ' notMNIST_large / D ' , ' notMNIST_large / E ' , ' notMNIST_large / F ' , ' notMNIST_large / G ' , ' notMNIST_large / H ' , ' notMNIST_large / I ' , ' notMNIST_large / J ' ] \ n [ ' notMNIST_small / A ' , ' notMNIST_small / B ' , ' notMNIST_small / C ' , ' notMNIST_small / D ' , ' notMNIST_small / E ' , ' notMNIST_small / F ' , ' notMNIST_small / G ' , ' notMNIST_small / H ' , ' notMNIST_small / I ' , ' notMNIST_small / J ' ] \ n " <nl> + } <nl> + ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " 4riXK3IoHgx6 " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " mmm \ nProblem 1 \ nmmmmmmmmm \ n \ nLet ' s take a peek at some of the data to make sure it looks sensible . Each exemplar should be an image of a character A through J rendered in a different font . Display a sample of the images that we just downloaded . Hint : you can use the package IPython . display . \ n \ nmmm " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " PBdkjESPK8tw " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Now let ' s load the data in a more manageable format . \ n \ nWe ' ll convert the entire dataset into a 3D array ( image index , x , y ) of floating point values , normalized to have approximately zero mean and standard deviation ~ 0 . 5 to make training easier down the road . The labels will be stored into a separate array of integers 0 through 9 . \ n \ nA few images might not be readable , we ' ll just skip them . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " h7q0XhG3MJdf " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 30 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 399874 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1444485886378 , <nl> + " user " : { <nl> + " color " : " # 1FA15D " , <nl> + " displayName " : " Vincent Vanhoucke " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " 05076109866853157986 " , <nl> + " photoUrl " : " / / lh6 . googleusercontent . com / - cCJa7dTDcgQ / AAAAAAAAAAI / AAAAAAAACgw / r2EZ_8oYer4 / s50 - c - k - no / photo . jpg " , <nl> + " sessionId " : " 2a0a5e044bb03b66 " , <nl> + " userId " : " 102167687554210253930 " <nl> + } , <nl> + " user_tz " : 420 <nl> + } , <nl> + " outputId " : " 92c391bb - 86ff - 431d - 9ada - 315568a19e59 " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " image_size = 28 # Pixel width and height . \ npixel_depth = 255 . 0 # Number of levels per pixel . \ n \ ndef load ( data_folders , min_num_images , max_num_images ) : \ n dataset = np . ndarray ( \ n shape = ( max_num_images , image_size , image_size ) , dtype = np . float32 ) \ n labels = np . ndarray ( shape = ( max_num_images ) , dtype = np . int32 ) \ n label_index = 0 \ n image_index = 0 \ n for folder in data_folders : \ n print folder \ n for image in os . listdir ( folder ) : \ n if image_index > = max_num_images : \ n raise Exception ( ' More images than expected : % d > = % d ' % ( \ n num_images , max_num_images ) ) \ n image_file = os . path . join ( folder , image ) \ n try : \ n image_data = ( ndimage . imread ( image_file ) . astype ( float ) - \ n pixel_depth / 2 ) / pixel_depth \ n if image_data . shape ! = ( image_size , image_size ) : \ n raise Exception ( ' Unexpected image shape : % s ' % str ( image_data . shape ) ) \ n dataset [ image_index , : , : ] = image_data \ n labels [ image_index ] = label_index \ n image_index + = 1 \ n except IOError as e : \ n print ' Could not read : ' , image_file , ' : ' , e , ' - it \ \ ' s ok , skipping . ' \ n label_index + = 1 \ n num_images = image_index \ n dataset = dataset [ 0 : num_images , : , : ] \ n labels = labels [ 0 : num_images ] \ n if num_images < min_num_images : \ n raise Exception ( ' Many fewer images than expected : % d < % d ' % ( \ n num_images , min_num_images ) ) \ n print ' Full dataset tensor : ' , dataset . shape \ n print ' Mean : ' , np . mean ( dataset ) \ n print ' Standard deviation : ' , np . std ( dataset ) \ n print ' Labels : ' , labels . shape \ n return dataset , labels \ ntrain_dataset , train_labels = load ( train_folders , 450000 , 550000 ) \ ntest_dataset , test_labels = load ( test_folders , 18000 , 20000 ) " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " notMNIST_large / A \ nCould not read : notMNIST_large / A / SG90IE11c3RhcmQgQlROIFBvc3Rlci50dGY = . png : cannot identify image file - it ' s ok , skipping . \ nCould not read : notMNIST_large / A / RnJlaWdodERpc3BCb29rSXRhbGljLnR0Zg = = . png : cannot identify image file - it ' s ok , skipping . \ nCould not read : notMNIST_large / A / Um9tYW5hIEJvbGQucGZi . png : cannot identify image file - it ' s ok , skipping . \ nnotMNIST_large / B \ nCould not read : notMNIST_large / B / TmlraXNFRi1TZW1pQm9sZEl0YWxpYy5vdGY = . png : cannot identify image file - it ' s ok , skipping . \ nnotMNIST_large / C \ nnotMNIST_large / D \ nCould not read : notMNIST_large / D / VHJhbnNpdCBCb2xkLnR0Zg = = . png : cannot identify image file - it ' s ok , skipping . \ nnotMNIST_large / E \ nnotMNIST_large / F \ nnotMNIST_large / G \ nnotMNIST_large / H \ nnotMNIST_large / I \ nnotMNIST_large / J \ nFull dataset tensor : ( 529114 , 28 , 28 ) \ nMean : - 0 . 0816593 \ nStandard deviation : 0 . 454232 \ nLabels : ( 529114 , ) \ nnotMNIST_small / A \ nCould not read : notMNIST_small / A / RGVtb2NyYXRpY2FCb2xkT2xkc3R5bGUgQm9sZC50dGY = . png : cannot identify image file - it ' s ok , skipping . \ nnotMNIST_small / B \ nnotMNIST_small / C \ nnotMNIST_small / D \ nnotMNIST_small / E \ nnotMNIST_small / F \ nCould not read : notMNIST_small / F / Q3Jvc3NvdmVyIEJvbGRPYmxpcXVlLnR0Zg = = . png : cannot identify image file - it ' s ok , skipping . \ nnotMNIST_small / G \ nnotMNIST_small / H \ nnotMNIST_small / I \ nnotMNIST_small / J \ nFull dataset tensor : ( 18724 , 28 , 28 ) \ nMean : - 0 . 0746364 \ nStandard deviation : 0 . 458622 \ nLabels : ( 18724 , ) \ n " <nl> + } <nl> + ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " vUdbskYE2d87 " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " mmm \ nProblem 2 \ nmmmmmmmmm \ n \ nLet ' s verify that the data still looks good . Displaying a sample of the labels and images from the ndarray . Hint : you can use matplotlib . pyplot . \ n \ nmmm " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " GPTCnjIcyuKN " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Next , we ' ll randomize the data . It ' s important to have the labels well shuffled for the training and test distributions to match . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " 6WZ2l2tN2zOL " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } <nl> + } , <nl> + " cellView " : " both " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " np . random . seed ( 133 ) \ ndef randomize ( dataset , labels ) : \ n permutation = np . random . permutation ( labels . shape [ 0 ] ) \ n shuffled_dataset = dataset [ permutation , : , : ] \ n shuffled_labels = labels [ permutation ] \ n return shuffled_dataset , shuffled_labels \ ntrain_dataset , train_labels = randomize ( train_dataset , train_labels ) \ ntest_dataset , test_labels = randomize ( test_dataset , test_labels ) " , <nl> + " language " : " python " , <nl> + " outputs " : [ ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " puDUTe6t6USl " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " mmm \ nProblem 3 \ nmmmmmmmmm \ nConvince yourself that the data is still good after shuffling ! \ n \ nmmm " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " cYznx5jUwzoO " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " mmm \ nProblem 4 \ nmmmmmmmmm \ nAnother check : we expect the data to be balanced across classes . Verify that . \ n \ nmmm " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " LA7M7K22ynCt " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Prune the training data as needed . Depending on your computer setup , you might not be able to fit it all in memory , and you can tune train_size as needed . \ n \ nAlso create a validation dataset for hyperparameter tuning . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " s3mWgZLpyuzq " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 1 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 411281 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1444485897869 , <nl> + " user " : { <nl> + " color " : " # 1FA15D " , <nl> + " displayName " : " Vincent Vanhoucke " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " 05076109866853157986 " , <nl> + " photoUrl " : " / / lh6 . googleusercontent . com / - cCJa7dTDcgQ / AAAAAAAAAAI / AAAAAAAACgw / r2EZ_8oYer4 / s50 - c - k - no / photo . jpg " , <nl> + " sessionId " : " 2a0a5e044bb03b66 " , <nl> + " userId " : " 102167687554210253930 " <nl> + } , <nl> + " user_tz " : 420 <nl> + } , <nl> + " outputId " : " 8af66da6 - 902d - 4719 - bedc - 7c9fb7ae7948 " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " train_size = 200000 \ nvalid_size = 10000 \ n \ nvalid_dataset = train_dataset [ : valid_size , : , : ] \ nvalid_labels = train_labels [ : valid_size ] \ ntrain_dataset = train_dataset [ valid_size : valid_size + train_size , : , : ] \ ntrain_labels = train_labels [ valid_size : valid_size + train_size ] \ nprint ' Training ' , train_dataset . shape , train_labels . shape \ nprint ' Validation ' , valid_dataset . shape , valid_labels . shape " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " Training ( 200000 , 28 , 28 ) ( 200000 , ) \ nValidation ( 10000 , 28 , 28 ) ( 10000 , ) \ n " <nl> + } <nl> + ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " tIQJaJuwg5Hw " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Finally , let ' s save the data for later reuse : " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " QiR_rETzem6C " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } <nl> + } , <nl> + " cellView " : " both " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " pickle_file = ' notMNIST . pickle ' \ n \ ntry : \ n f = open ( pickle_file , ' wb ' ) \ n save = { \ n ' train_dataset ' : train_dataset , \ n ' train_labels ' : train_labels , \ n ' valid_dataset ' : valid_dataset , \ n ' valid_labels ' : valid_labels , \ n ' test_dataset ' : test_dataset , \ n ' test_labels ' : test_labels , \ n } \ n pickle . dump ( save , f , pickle . HIGHEST_PROTOCOL ) \ n f . close ( ) \ nexcept Exception as e : \ n print ' Unable to save data to ' , pickle_file , ' : ' , e \ n raise " , <nl> + " language " : " python " , <nl> + " outputs " : [ ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " hQbLjrW_iT39 " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 1 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 413065 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1444485899688 , <nl> + " user " : { <nl> + " color " : " # 1FA15D " , <nl> + " displayName " : " Vincent Vanhoucke " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " 05076109866853157986 " , <nl> + " photoUrl " : " / / lh6 . googleusercontent . com / - cCJa7dTDcgQ / AAAAAAAAAAI / AAAAAAAACgw / r2EZ_8oYer4 / s50 - c - k - no / photo . jpg " , <nl> + " sessionId " : " 2a0a5e044bb03b66 " , <nl> + " userId " : " 102167687554210253930 " <nl> + } , <nl> + " user_tz " : 420 <nl> + } , <nl> + " outputId " : " b440efc6 - 5ee1 - 4cbc - d02d - 93db44ebd956 " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " statinfo = os . stat ( pickle_file ) \ nprint ' Compressed pickle size : ' , statinfo . st_size " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " Compressed pickle size : 718193801 \ n " <nl> + } <nl> + ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " gE_cRAQB33lk " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " mmm \ nProblem 5 \ nmmmmmmmmm \ n \ nBy construction , this dataset might contain a lot of overlapping samples , including training data that ' s also contained in the validation and test set ! Overlap between training and test can skew the results if you expect to use your model in an environment where there is never an overlap , but are actually ok if you expect to see training samples recur when you use it . \ nMeasure how much overlap there is between training , validation and test samples . \ nOptional questions : \ n - What about near duplicates between datasets ? ( images that are almost identical ) \ n - Create a sanitized validation and test set , and compare your accuracy on those in subsequent assignments . \ nmmm " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " L8oww1s4JMQx " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " mmm \ nProblem 6 \ nmmmmmmmmm \ n \ nLet ' s get an idea of what an off - the - shelf classifier can give you on this data . It ' s always good to check that there is something to learn , and that it ' s a problem that is not so trivial that a canned solution solves it . \ n \ nTrain a simple model on this data using 50 , 100 , 1000 and 5000 training samples . Hint : you can use the LogisticRegression model from sklearn . linear_model . \ n \ nOptional question : train an off - the - shelf model on all the data ! \ n \ nmmm " <nl> + } <nl> + ] <nl> + } <nl> + ] , <nl> + " metadata " : { <nl> + " name " : " 1_notmnist . ipynb " , <nl> + " colabVersion " : " 0 . 3 . 2 " , <nl> + " colab_views " : { } , <nl> + " colab_default_view " : { } <nl> + } , <nl> + " nbformat " : 3 , <nl> + " nbformat_minor " : 0 <nl> + } <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 0000000000000 . . fb5be12ac047a <nl> mmm / dev / null <nl> ppp b / tensorflow / examples / udacity / 2_fullyconnected . ipynb <nl> <nl> + { <nl> + " worksheets " : [ <nl> + { <nl> + " cells " : [ <nl> + { <nl> + " metadata " : { <nl> + " id " : " kR - 4eNdK6lYS " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Deep Learning \ n = = = = = = = = = = = = = \ n \ nAssignment 2 \ nmmmmmmmmmmmm \ n \ nPreviously in ` 1_notmnist . ipynb ` , we created a pickle with formatted datasets for training , development and testing on the [ notMNIST dataset ] ( http : / / yaroslavvb . blogspot . com / 2011 / 09 / notmnist - dataset . html ) . \ n \ nThe goal of this assignment is to progressively train deeper and more accurate models using TensorFlow . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " JLpLa8Jt7Vu4 " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } <nl> + } , <nl> + " cellView " : " both " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " # These are all the modules we ' ll be using later . Make sure you can import them \ n # before proceeding further . \ nimport cPickle as pickle \ nimport numpy as np \ nimport tensorflow as tf " , <nl> + " language " : " python " , <nl> + " outputs " : [ ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " 1HrCK6e17WzV " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " First reload the data we generated in ` 1_notmist . ipynb ` . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " y3 - cj1bpmuxc " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 1 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 19456 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1449847956073 , <nl> + " user " : { <nl> + " color " : " " , <nl> + " displayName " : " " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " " , <nl> + " photoUrl " : " " , <nl> + " sessionId " : " 0 " , <nl> + " userId " : " " <nl> + } , <nl> + " user_tz " : 480 <nl> + } , <nl> + " outputId " : " 0ddb1607 - 1fc4 - 4ddb - de28 - 6c7ab7fb0c33 " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " pickle_file = ' notMNIST . pickle ' \ n \ nwith open ( pickle_file , ' rb ' ) as f : \ n save = pickle . load ( f ) \ n train_dataset = save [ ' train_dataset ' ] \ n train_labels = save [ ' train_labels ' ] \ n valid_dataset = save [ ' valid_dataset ' ] \ n valid_labels = save [ ' valid_labels ' ] \ n test_dataset = save [ ' test_dataset ' ] \ n test_labels = save [ ' test_labels ' ] \ n del save # hint to help gc free up memory \ n print ' Training set ' , train_dataset . shape , train_labels . shape \ n print ' Validation set ' , valid_dataset . shape , valid_labels . shape \ n print ' Test set ' , test_dataset . shape , test_labels . shape " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " Training set ( 200000 , 28 , 28 ) ( 200000 , ) \ nValidation set ( 10000 , 28 , 28 ) ( 10000 , ) \ nTest set ( 18724 , 28 , 28 ) ( 18724 , ) \ n " <nl> + } <nl> + ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " L7aHrm6nGDMB " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Reformat into a shape that ' s more adapted to the models we ' re going to train : \ n - data as a flat matrix , \ n - labels as float 1 - hot encodings . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " IRSyYiIIGIzS " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 1 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 19723 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1449847956364 , <nl> + " user " : { <nl> + " color " : " " , <nl> + " displayName " : " " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " " , <nl> + " photoUrl " : " " , <nl> + " sessionId " : " 0 " , <nl> + " userId " : " " <nl> + } , <nl> + " user_tz " : 480 <nl> + } , <nl> + " outputId " : " 2ba0fc75 - 1487 - 4ace - a562 - cf81cae82793 " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " image_size = 28 \ nnum_labels = 10 \ n \ ndef reformat ( dataset , labels ) : \ n dataset = dataset . reshape ( ( - 1 , image_size * image_size ) ) . astype ( np . float32 ) \ n # Map 0 to [ 1 . 0 , 0 . 0 , 0 . 0 . . . ] , 1 to [ 0 . 0 , 1 . 0 , 0 . 0 . . . ] \ n labels = ( np . arange ( num_labels ) = = labels [ : , None ] ) . astype ( np . float32 ) \ n return dataset , labels \ ntrain_dataset , train_labels = reformat ( train_dataset , train_labels ) \ nvalid_dataset , valid_labels = reformat ( valid_dataset , valid_labels ) \ ntest_dataset , test_labels = reformat ( test_dataset , test_labels ) \ nprint ' Training set ' , train_dataset . shape , train_labels . shape \ nprint ' Validation set ' , valid_dataset . shape , valid_labels . shape \ nprint ' Test set ' , test_dataset . shape , test_labels . shape " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " Training set ( 200000 , 784 ) ( 200000 , 10 ) \ nValidation set ( 10000 , 784 ) ( 10000 , 10 ) \ nTest set ( 18724 , 784 ) ( 18724 , 10 ) \ n " <nl> + } <nl> + ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " nCLVqyQ5vPPH " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " We ' re first going to train a multinomial logistic regression using simple gradient descent . \ n \ nTensorFlow works like this : \ n * First you describe the computation that you want to see performed : what the inputs , the variables , and the operations look like . These get created as nodes over a computation graph . This description is all contained within the block below : \ n \ n with graph . as_default ( ) : \ n . . . \ n \ n * Then you can run the operations on this graph as many times as you want by calling ` session . run ( ) ` , providing it outputs to fetch from the graph that get returned . This runtime operation is all contained in the block below : \ n \ n with tf . Session ( graph = graph ) as session : \ n . . . \ n \ nLet ' s load all the data into TensorFlow and build the computation graph corresponding to our training : " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " Nfv39qvtvOl_ " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } <nl> + } , <nl> + " cellView " : " both " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " # With gradient descent training , even this much data is prohibitive . \ n # Subset the training data for faster turnaround . \ ntrain_subset = 10000 \ n \ ngraph = tf . Graph ( ) \ nwith graph . as_default ( ) : \ n \ n # Input data . \ n # Load the training , validation and test data into constants that are \ n # attached to the graph . \ n tf_train_dataset = tf . constant ( train_dataset [ : train_subset , : ] ) \ n tf_train_labels = tf . constant ( train_labels [ : train_subset ] ) \ n tf_valid_dataset = tf . constant ( valid_dataset ) \ n tf_test_dataset = tf . constant ( test_dataset ) \ n \ n # Variables . \ n # These are the parameters that we are going to be training . The weight \ n # matrix will be initialized using random valued following a ( truncated ) \ n # normal distribution . The biases get initialized to zero . \ n weights = tf . Variable ( \ n tf . truncated_normal ( [ image_size * image_size , num_labels ] ) ) \ n biases = tf . Variable ( tf . zeros ( [ num_labels ] ) ) \ n \ n # Training computation . \ n # We multiply the inputs with the weight matrix , and add biases . We compute \ n # the softmax and cross - entropy ( it ' s one operation in TensorFlow , because \ n # it ' s very common , and it can be optimized ) . We take the average of this \ n # cross - entropy across all training examples : that ' s our loss . \ n logits = tf . matmul ( tf_train_dataset , weights ) + biases \ n loss = tf . reduce_mean ( \ n tf . nn . softmax_cross_entropy_with_logits ( logits , tf_train_labels ) ) \ n \ n # Optimizer . \ n # We are going to find the minimum of this loss using gradient descent . \ n optimizer = tf . train . GradientDescentOptimizer ( 0 . 5 ) . minimize ( loss ) \ n \ n # Predictions for the training , validation , and test data . \ n # These are not part of training , but merely here so that we can report \ n # accuracy figures as we train . \ n train_prediction = tf . nn . softmax ( logits ) \ n valid_prediction = tf . nn . softmax ( \ n tf . matmul ( tf_valid_dataset , weights ) + biases ) \ n test_prediction = tf . nn . softmax ( tf . matmul ( tf_test_dataset , weights ) + biases ) " , <nl> + " language " : " python " , <nl> + " outputs " : [ ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " KQcL4uqISHjP " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Let ' s run this computation and iterate : " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " z2cjdenH869W " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 9 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 57454 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1449847994134 , <nl> + " user " : { <nl> + " color " : " " , <nl> + " displayName " : " " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " " , <nl> + " photoUrl " : " " , <nl> + " sessionId " : " 0 " , <nl> + " userId " : " " <nl> + } , <nl> + " user_tz " : 480 <nl> + } , <nl> + " outputId " : " 4c037ba1 - b526 - 4d8e - e632 - 91e2a0333267 " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " num_steps = 801 \ n \ ndef accuracy ( predictions , labels ) : \ n return ( 100 . 0 * np . sum ( np . argmax ( predictions , 1 ) = = np . argmax ( labels , 1 ) ) \ n / predictions . shape [ 0 ] ) \ n \ nwith tf . Session ( graph = graph ) as session : \ n # This is a one - time operation which ensures the parameters get initialized as \ n # we described in the graph : random weights for the matrix , zeros for the \ n # biases . \ n tf . initialize_all_variables ( ) . run ( ) \ n print ' Initialized ' \ n for step in xrange ( num_steps ) : \ n # Run the computations . We tell . run ( ) that we want to run the optimizer , \ n # and get the loss value and the training predictions returned as numpy \ n # arrays . \ n _ , l , predictions = session . run ( [ optimizer , loss , train_prediction ] ) \ n if ( step % 100 = = 0 ) : \ n print ' Loss at step ' , step , ' : ' , l \ n print ' Training accuracy : % . 1f % % ' % accuracy ( \ n predictions , train_labels [ : train_subset , : ] ) \ n # Calling . eval ( ) on valid_prediction is basically like calling run ( ) , but \ n # just to get that one numpy array . Note that it recomputes all its graph \ n # dependencies . \ n print ' Validation accuracy : % . 1f % % ' % accuracy ( \ n valid_prediction . eval ( ) , valid_labels ) \ n print ' Test accuracy : % . 1f % % ' % accuracy ( test_prediction . eval ( ) , test_labels ) " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " Initialized \ nLoss at step 0 : 17 . 2939 \ nTraining accuracy : 10 . 8 % \ nValidation accuracy : 13 . 8 % \ nLoss at step 100 : 2 . 26903 \ nTraining accuracy : 72 . 3 % \ nValidation accuracy : 71 . 6 % \ nLoss at step 200 : 1 . 84895 \ nTraining accuracy : 74 . 9 % \ nValidation accuracy : 73 . 9 % \ nLoss at step 300 : 1 . 60701 \ nTraining accuracy : 76 . 0 % \ nValidation accuracy : 74 . 5 % \ nLoss at step 400 : 1 . 43912 \ nTraining accuracy : 76 . 8 % \ nValidation accuracy : 74 . 8 % \ nLoss at step 500 : 1 . 31349 \ nTraining accuracy : 77 . 5 % \ nValidation accuracy : 75 . 0 % \ nLoss at step 600 : 1 . 21501 \ nTraining accuracy : 78 . 1 % \ nValidation accuracy : 75 . 4 % \ nLoss at step 700 : 1 . 13515 \ nTraining accuracy : 78 . 6 % \ nValidation accuracy : 75 . 4 % \ nLoss at step 800 : 1 . 0687 \ nTraining accuracy : 79 . 2 % \ nValidation accuracy : 75 . 6 % \ nTest accuracy : 82 . 9 % \ n " <nl> + } <nl> + ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " x68f - hxRGm3H " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Let ' s now switch to stochastic gradient descent training instead , which is much faster . \ n \ nThe graph will be similar , except that instead of holding all the training data into a constant node , we create a ` Placeholder ` node which will be fed actual data at every call of ` sesion . run ( ) ` . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " qhPMzWYRGrzM " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } <nl> + } , <nl> + " cellView " : " both " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " batch_size = 128 \ n \ ngraph = tf . Graph ( ) \ nwith graph . as_default ( ) : \ n \ n # Input data . For the training data , we use a placeholder that will be fed \ n # at run time with a training minibatch . \ n tf_train_dataset = tf . placeholder ( tf . float32 , \ n shape = ( batch_size , image_size * image_size ) ) \ n tf_train_labels = tf . placeholder ( tf . float32 , shape = ( batch_size , num_labels ) ) \ n tf_valid_dataset = tf . constant ( valid_dataset ) \ n tf_test_dataset = tf . constant ( test_dataset ) \ n \ n # Variables . \ n weights = tf . Variable ( \ n tf . truncated_normal ( [ image_size * image_size , num_labels ] ) ) \ n biases = tf . Variable ( tf . zeros ( [ num_labels ] ) ) \ n \ n # Training computation . \ n logits = tf . matmul ( tf_train_dataset , weights ) + biases \ n loss = tf . reduce_mean ( \ n tf . nn . softmax_cross_entropy_with_logits ( logits , tf_train_labels ) ) \ n \ n # Optimizer . \ n optimizer = tf . train . GradientDescentOptimizer ( 0 . 5 ) . minimize ( loss ) \ n \ n # Predictions for the training , validation , and test data . \ n train_prediction = tf . nn . softmax ( logits ) \ n valid_prediction = tf . nn . softmax ( \ n tf . matmul ( tf_valid_dataset , weights ) + biases ) \ n test_prediction = tf . nn . softmax ( tf . matmul ( tf_test_dataset , weights ) + biases ) " , <nl> + " language " : " python " , <nl> + " outputs " : [ ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " XmVZESmtG4JH " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Let ' s run it : " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " FoF91pknG_YW " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 6 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 66292 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1449848003013 , <nl> + " user " : { <nl> + " color " : " " , <nl> + " displayName " : " " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " " , <nl> + " photoUrl " : " " , <nl> + " sessionId " : " 0 " , <nl> + " userId " : " " <nl> + } , <nl> + " user_tz " : 480 <nl> + } , <nl> + " outputId " : " d255c80e - 954d - 4183 - ca1c - c7333ce91d0a " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " num_steps = 3001 \ n \ nwith tf . Session ( graph = graph ) as session : \ n tf . initialize_all_variables ( ) . run ( ) \ n print \ " Initialized \ " \ n for step in xrange ( num_steps ) : \ n # Pick an offset within the training data , which has been randomized . \ n # Note : we could use better randomization across epochs . \ n offset = ( step * batch_size ) % ( train_labels . shape [ 0 ] - batch_size ) \ n # Generate a minibatch . \ n batch_data = train_dataset [ offset : ( offset + batch_size ) , : ] \ n batch_labels = train_labels [ offset : ( offset + batch_size ) , : ] \ n # Prepare a dictionary telling the session where to feed the minibatch . \ n # The key of the dictionary is the placeholder node of the graph to be fed , \ n # and the value is the numpy array to feed to it . \ n feed_dict = { tf_train_dataset : batch_data , tf_train_labels : batch_labels } \ n _ , l , predictions = session . run ( \ n [ optimizer , loss , train_prediction ] , feed_dict = feed_dict ) \ n if ( step % 500 = = 0 ) : \ n print \ " Minibatch loss at step \ " , step , \ " : \ " , l \ n print \ " Minibatch accuracy : % . 1f % % \ " % accuracy ( predictions , batch_labels ) \ n print \ " Validation accuracy : % . 1f % % \ " % accuracy ( \ n valid_prediction . eval ( ) , valid_labels ) \ n print \ " Test accuracy : % . 1f % % \ " % accuracy ( test_prediction . eval ( ) , test_labels ) " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " Initialized \ nMinibatch loss at step 0 : 16 . 8091 \ nMinibatch accuracy : 12 . 5 % \ nValidation accuracy : 14 . 0 % \ nMinibatch loss at step 500 : 1 . 75256 \ nMinibatch accuracy : 77 . 3 % \ nValidation accuracy : 75 . 0 % \ nMinibatch loss at step 1000 : 1 . 32283 \ nMinibatch accuracy : 77 . 3 % \ nValidation accuracy : 76 . 6 % \ nMinibatch loss at step 1500 : 0 . 944533 \ nMinibatch accuracy : 83 . 6 % \ nValidation accuracy : 76 . 5 % \ nMinibatch loss at step 2000 : 1 . 03795 \ nMinibatch accuracy : 78 . 9 % \ nValidation accuracy : 77 . 8 % \ nMinibatch loss at step 2500 : 1 . 10219 \ nMinibatch accuracy : 80 . 5 % \ nValidation accuracy : 78 . 0 % \ nMinibatch loss at step 3000 : 0 . 758874 \ nMinibatch accuracy : 82 . 8 % \ nValidation accuracy : 78 . 8 % \ nTest accuracy : 86 . 1 % \ n " <nl> + } <nl> + ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " 7omWxtvLLxik " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " mmm \ nProblem \ nmmmmmm - \ n \ nTurn the logistic regression example with SGD into a 1 - hidden layer neural network with rectified linear units ( nn . relu ( ) ) and 1024 hidden nodes . This model should improve your validation / test accuracy . \ n \ nmmm " <nl> + } <nl> + ] <nl> + } <nl> + ] , <nl> + " metadata " : { <nl> + " name " : " 2_fullyconnected . ipynb " , <nl> + " colabVersion " : " 0 . 3 . 2 " , <nl> + " colab_views " : { } , <nl> + " colab_default_view " : { } <nl> + } , <nl> + " nbformat " : 3 , <nl> + " nbformat_minor " : 0 <nl> + } <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 0000000000000 . . e2e0b81922dbe <nl> mmm / dev / null <nl> ppp b / tensorflow / examples / udacity / 3_regularization . ipynb <nl> <nl> + { <nl> + " worksheets " : [ <nl> + { <nl> + " cells " : [ <nl> + { <nl> + " metadata " : { <nl> + " id " : " kR - 4eNdK6lYS " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Deep Learning \ n = = = = = = = = = = = = = \ n \ nAssignment 3 \ nmmmmmmmmmmmm \ n \ nPreviously in ` 2_fullyconnected . ipynb ` , you trained a logistic regression and a neural network model . \ n \ nThe goal of this assignment is to explore regularization techniques . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " JLpLa8Jt7Vu4 " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } <nl> + } , <nl> + " cellView " : " both " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " # These are all the modules we ' ll be using later . Make sure you can import them \ n # before proceeding further . \ nimport cPickle as pickle \ nimport numpy as np \ nimport tensorflow as tf " , <nl> + " language " : " python " , <nl> + " outputs " : [ ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " 1HrCK6e17WzV " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " First reload the data we generated in _notmist . ipynb_ . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " y3 - cj1bpmuxc " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 1 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 11777 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1449849322348 , <nl> + " user " : { <nl> + " color " : " " , <nl> + " displayName " : " " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " " , <nl> + " photoUrl " : " " , <nl> + " sessionId " : " 0 " , <nl> + " userId " : " " <nl> + } , <nl> + " user_tz " : 480 <nl> + } , <nl> + " outputId " : " e03576f1 - ebbe - 4838 - c388 - f1777bcc9873 " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " pickle_file = ' notMNIST . pickle ' \ n \ nwith open ( pickle_file , ' rb ' ) as f : \ n save = pickle . load ( f ) \ n train_dataset = save [ ' train_dataset ' ] \ n train_labels = save [ ' train_labels ' ] \ n valid_dataset = save [ ' valid_dataset ' ] \ n valid_labels = save [ ' valid_labels ' ] \ n test_dataset = save [ ' test_dataset ' ] \ n test_labels = save [ ' test_labels ' ] \ n del save # hint to help gc free up memory \ n print ' Training set ' , train_dataset . shape , train_labels . shape \ n print ' Validation set ' , valid_dataset . shape , valid_labels . shape \ n print ' Test set ' , test_dataset . shape , test_labels . shape " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " Training set ( 200000 , 28 , 28 ) ( 200000 , ) \ nValidation set ( 10000 , 28 , 28 ) ( 10000 , ) \ nTest set ( 18724 , 28 , 28 ) ( 18724 , ) \ n " <nl> + } <nl> + ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " L7aHrm6nGDMB " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Reformat into a shape that ' s more adapted to the models we ' re going to train : \ n - data as a flat matrix , \ n - labels as float 1 - hot encodings . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " IRSyYiIIGIzS " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 1 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 11728 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1449849322356 , <nl> + " user " : { <nl> + " color " : " " , <nl> + " displayName " : " " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " " , <nl> + " photoUrl " : " " , <nl> + " sessionId " : " 0 " , <nl> + " userId " : " " <nl> + } , <nl> + " user_tz " : 480 <nl> + } , <nl> + " outputId " : " 3f8996ee - 3574 - 4f44 - c953 - 5c8a04636582 " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " image_size = 28 \ nnum_labels = 10 \ n \ ndef reformat ( dataset , labels ) : \ n dataset = dataset . reshape ( ( - 1 , image_size * image_size ) ) . astype ( np . float32 ) \ n # Map 2 to [ 0 . 0 , 1 . 0 , 0 . 0 . . . ] , 3 to [ 0 . 0 , 0 . 0 , 1 . 0 . . . ] \ n labels = ( np . arange ( num_labels ) = = labels [ : , None ] ) . astype ( np . float32 ) \ n return dataset , labels \ ntrain_dataset , train_labels = reformat ( train_dataset , train_labels ) \ nvalid_dataset , valid_labels = reformat ( valid_dataset , valid_labels ) \ ntest_dataset , test_labels = reformat ( test_dataset , test_labels ) \ nprint ' Training set ' , train_dataset . shape , train_labels . shape \ nprint ' Validation set ' , valid_dataset . shape , valid_labels . shape \ nprint ' Test set ' , test_dataset . shape , test_labels . shape " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " Training set ( 200000 , 784 ) ( 200000 , 10 ) \ nValidation set ( 10000 , 784 ) ( 10000 , 10 ) \ nTest set ( 18724 , 784 ) ( 18724 , 10 ) \ n " <nl> + } <nl> + ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " RajPLaL_ZW6w " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } <nl> + } , <nl> + " cellView " : " both " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " def accuracy ( predictions , labels ) : \ n return ( 100 . 0 * np . sum ( np . argmax ( predictions , 1 ) = = np . argmax ( labels , 1 ) ) \ n / predictions . shape [ 0 ] ) " , <nl> + " language " : " python " , <nl> + " outputs " : [ ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " sgLbUAQ1CW - 1 " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " mmm \ nProblem 1 \ nmmmmmmmmm \ n \ nIntroduce and tune L2 regularization for both logistic and neural network models . Remember that L2 amounts to adding a penalty on the norm of the weights to the loss . In TensorFlow , you can compue the L2 loss for a tensor ` t ` using ` nn . l2_loss ( t ) ` . The right amount of regularization should improve your validation / test accuracy . \ n \ nmmm " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " na8xX2yHZzNF " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " mmm \ nProblem 2 \ nmmmmmmmmm \ nLet ' s demonstrate an extreme case of overfitting . Restrict your training data to just a few batches . What happens ? \ n \ nmmm " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " ww3SCBUdlkRc " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " mmm \ nProblem 3 \ nmmmmmmmmm \ nIntroduce Dropout on the hidden layer of the neural network . Remember : Dropout should only be introduced during training , not evaluation , otherwise your evaluation results would be stochastic as well . TensorFlow provides ` nn . dropout ( ) ` for that , but you have to make sure it ' s only inserted during training . \ n \ nWhat happens to our extreme overfitting case ? \ n \ nmmm " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " - b1hTz3VWZjw " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " mmm \ nProblem 4 \ nmmmmmmmmm \ n \ nTry to get the best performance you can using a multi - layer model ! The best reported test accuracy using a deep network is [ 97 . 1 % ] ( http : / / yaroslavvb . blogspot . com / 2011 / 09 / notmnist - dataset . html ? showComment = 1391023266211 # c8758720086795711595 ) . \ n \ nOne avenue you can explore is to add multiple layers . \ n \ nAnother one is to use learning rate decay : \ n \ n global_step = tf . Variable ( 0 ) # count the number of steps taken . \ n learning_rate = tf . train . exponential_decay ( 0 . 5 , step , . . . ) \ n optimizer = tf . train . GradientDescentOptimizer ( learning_rate ) . minimize ( loss , global_step = global_step ) \ n \ n mmm \ n " <nl> + } <nl> + ] <nl> + } <nl> + ] , <nl> + " metadata " : { <nl> + " name " : " 3_regularization . ipynb " , <nl> + " colabVersion " : " 0 . 3 . 2 " , <nl> + " colab_views " : { } , <nl> + " colab_default_view " : { } <nl> + } , <nl> + " nbformat " : 3 , <nl> + " nbformat_minor " : 0 <nl> + } <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 0000000000000 . . b53cb8115fdea <nl> mmm / dev / null <nl> ppp b / tensorflow / examples / udacity / 4_convolutions . ipynb <nl> <nl> + { <nl> + " worksheets " : [ <nl> + { <nl> + " cells " : [ <nl> + { <nl> + " metadata " : { <nl> + " id " : " 4embtkV0pNxM " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Deep Learning \ n = = = = = = = = = = = = = \ n \ nAssignment 4 \ nmmmmmmmmmmmm \ n \ nPreviously in ` 2_fullyconnected . ipynb ` and ` 3_regularization . ipynb ` , we trained fully connected networks to classify [ notMNIST ] ( http : / / yaroslavvb . blogspot . com / 2011 / 09 / notmnist - dataset . html ) characters . \ n \ nThe goal of this assignment is make the neural network convolutional . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " tm2CQN_Cpwj0 " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } <nl> + } , <nl> + " cellView " : " both " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " # These are all the modules we ' ll be using later . Make sure you can import them \ n # before proceeding further . \ nimport cPickle as pickle \ nimport numpy as np \ nimport tensorflow as tf " , <nl> + " language " : " python " , <nl> + " outputs " : [ ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " y3 - cj1bpmuxc " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 1 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 11948 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1446658914837 , <nl> + " user " : { <nl> + " color " : " " , <nl> + " displayName " : " " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " " , <nl> + " photoUrl " : " " , <nl> + " sessionId " : " 0 " , <nl> + " userId " : " " <nl> + } , <nl> + " user_tz " : 480 <nl> + } , <nl> + " outputId " : " 016b1a51 - 0290 - 4b08 - efdb - 8c95ffc3cd01 " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " pickle_file = ' notMNIST . pickle ' \ n \ nwith open ( pickle_file , ' rb ' ) as f : \ n save = pickle . load ( f ) \ n train_dataset = save [ ' train_dataset ' ] \ n train_labels = save [ ' train_labels ' ] \ n valid_dataset = save [ ' valid_dataset ' ] \ n valid_labels = save [ ' valid_labels ' ] \ n test_dataset = save [ ' test_dataset ' ] \ n test_labels = save [ ' test_labels ' ] \ n del save # hint to help gc free up memory \ n print ' Training set ' , train_dataset . shape , train_labels . shape \ n print ' Validation set ' , valid_dataset . shape , valid_labels . shape \ n print ' Test set ' , test_dataset . shape , test_labels . shape " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " Training set ( 200000 , 28 , 28 ) ( 200000 , ) \ nValidation set ( 10000 , 28 , 28 ) ( 10000 , ) \ nTest set ( 18724 , 28 , 28 ) ( 18724 , ) \ n " <nl> + } <nl> + ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " L7aHrm6nGDMB " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Reformat into a TensorFlow - friendly shape : \ n - convolutions need the image data formatted as a cube ( width by height by # channels ) \ n - labels as float 1 - hot encodings . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " IRSyYiIIGIzS " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 1 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 11952 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1446658914857 , <nl> + " user " : { <nl> + " color " : " " , <nl> + " displayName " : " " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " " , <nl> + " photoUrl " : " " , <nl> + " sessionId " : " 0 " , <nl> + " userId " : " " <nl> + } , <nl> + " user_tz " : 480 <nl> + } , <nl> + " outputId " : " 650a208c - 8359 - 4852 - f4f5 - 8bf10e80ef6c " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " image_size = 28 \ nnum_labels = 10 \ nnum_channels = 1 # grayscale \ n \ nimport numpy as np \ n \ ndef reformat ( dataset , labels ) : \ n dataset = dataset . reshape ( \ n ( - 1 , image_size , image_size , num_channels ) ) . astype ( np . float32 ) \ n labels = ( np . arange ( num_labels ) = = labels [ : , None ] ) . astype ( np . float32 ) \ n return dataset , labels \ ntrain_dataset , train_labels = reformat ( train_dataset , train_labels ) \ nvalid_dataset , valid_labels = reformat ( valid_dataset , valid_labels ) \ ntest_dataset , test_labels = reformat ( test_dataset , test_labels ) \ nprint ' Training set ' , train_dataset . shape , train_labels . shape \ nprint ' Validation set ' , valid_dataset . shape , valid_labels . shape \ nprint ' Test set ' , test_dataset . shape , test_labels . shape " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " Training set ( 200000 , 28 , 28 , 1 ) ( 200000 , 10 ) \ nValidation set ( 10000 , 28 , 28 , 1 ) ( 10000 , 10 ) \ nTest set ( 18724 , 28 , 28 , 1 ) ( 18724 , 10 ) \ n " <nl> + } <nl> + ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " AgQDIREv02p1 " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } <nl> + } , <nl> + " cellView " : " both " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " def accuracy ( predictions , labels ) : \ n return ( 100 . 0 * np . sum ( np . argmax ( predictions , 1 ) = = np . argmax ( labels , 1 ) ) \ n / predictions . shape [ 0 ] ) " , <nl> + " language " : " python " , <nl> + " outputs " : [ ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " 5rhgjmROXu2O " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Let ' s build a small network with two convolutional layers , followed by one fully connected layer . Convolutional networks are more expensive computationally , so we ' ll limit its depth and number of fully connected nodes . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " IZYv70SvvOan " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } <nl> + } , <nl> + " cellView " : " both " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " batch_size = 16 \ npatch_size = 5 \ ndepth = 16 \ nnum_hidden = 64 \ n \ ngraph = tf . Graph ( ) \ n \ nwith graph . as_default ( ) : \ n \ n # Input data . \ n tf_train_dataset = tf . placeholder ( \ n tf . float32 , shape = ( batch_size , image_size , image_size , num_channels ) ) \ n tf_train_labels = tf . placeholder ( tf . float32 , shape = ( batch_size , num_labels ) ) \ n tf_valid_dataset = tf . constant ( valid_dataset ) \ n tf_test_dataset = tf . constant ( test_dataset ) \ n \ n # Variables . \ n layer1_weights = tf . Variable ( tf . truncated_normal ( \ n [ patch_size , patch_size , num_channels , depth ] , stddev = 0 . 1 ) ) \ n layer1_biases = tf . Variable ( tf . zeros ( [ depth ] ) ) \ n layer2_weights = tf . Variable ( tf . truncated_normal ( \ n [ patch_size , patch_size , depth , depth ] , stddev = 0 . 1 ) ) \ n layer2_biases = tf . Variable ( tf . constant ( 1 . 0 , shape = [ depth ] ) ) \ n layer3_weights = tf . Variable ( tf . truncated_normal ( \ n [ image_size / 4 * image_size / 4 * depth , num_hidden ] , stddev = 0 . 1 ) ) \ n layer3_biases = tf . Variable ( tf . constant ( 1 . 0 , shape = [ num_hidden ] ) ) \ n layer4_weights = tf . Variable ( tf . truncated_normal ( \ n [ num_hidden , num_labels ] , stddev = 0 . 1 ) ) \ n layer4_biases = tf . Variable ( tf . constant ( 1 . 0 , shape = [ num_labels ] ) ) \ n \ n # Model . \ n def model ( data ) : \ n conv = tf . nn . conv2d ( data , layer1_weights , [ 1 , 2 , 2 , 1 ] , padding = ' SAME ' ) \ n hidden = tf . nn . relu ( conv + layer1_biases ) \ n conv = tf . nn . conv2d ( hidden , layer2_weights , [ 1 , 2 , 2 , 1 ] , padding = ' SAME ' ) \ n hidden = tf . nn . relu ( conv + layer2_biases ) \ n shape = hidden . get_shape ( ) . as_list ( ) \ n reshape = tf . reshape ( hidden , [ shape [ 0 ] , shape [ 1 ] * shape [ 2 ] * shape [ 3 ] ] ) \ n hidden = tf . nn . relu ( tf . matmul ( reshape , layer3_weights ) + layer3_biases ) \ n return tf . matmul ( hidden , layer4_weights ) + layer4_biases \ n \ n # Training computation . \ n logits = model ( tf_train_dataset ) \ n loss = tf . reduce_mean ( \ n tf . nn . softmax_cross_entropy_with_logits ( logits , tf_train_labels ) ) \ n \ n # Optimizer . \ n optimizer = tf . train . GradientDescentOptimizer ( 0 . 05 ) . minimize ( loss ) \ n \ n # Predictions for the training , validation , and test data . \ n train_prediction = tf . nn . softmax ( logits ) \ n valid_prediction = tf . nn . softmax ( model ( tf_valid_dataset ) ) \ n test_prediction = tf . nn . softmax ( model ( tf_test_dataset ) ) " , <nl> + " language " : " python " , <nl> + " outputs " : [ ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " noKFb2UovVFR " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 37 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 63292 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1446658966251 , <nl> + " user " : { <nl> + " color " : " " , <nl> + " displayName " : " " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " " , <nl> + " photoUrl " : " " , <nl> + " sessionId " : " 0 " , <nl> + " userId " : " " <nl> + } , <nl> + " user_tz " : 480 <nl> + } , <nl> + " outputId " : " 28941338 - 2ef9 - 4088 - 8bd1 - 44295661e628 " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " num_steps = 1001 \ n \ nwith tf . Session ( graph = graph ) as session : \ n tf . initialize_all_variables ( ) . run ( ) \ n print \ " Initialized \ " \ n for step in xrange ( num_steps ) : \ n offset = ( step * batch_size ) % ( train_labels . shape [ 0 ] - batch_size ) \ n batch_data = train_dataset [ offset : ( offset + batch_size ) , : , : , : ] \ n batch_labels = train_labels [ offset : ( offset + batch_size ) , : ] \ n feed_dict = { tf_train_dataset : batch_data , tf_train_labels : batch_labels } \ n _ , l , predictions = session . run ( \ n [ optimizer , loss , train_prediction ] , feed_dict = feed_dict ) \ n if ( step % 50 = = 0 ) : \ n print \ " Minibatch loss at step \ " , step , \ " : \ " , l \ n print \ " Minibatch accuracy : % . 1f % % \ " % accuracy ( predictions , batch_labels ) \ n print \ " Validation accuracy : % . 1f % % \ " % accuracy ( \ n valid_prediction . eval ( ) , valid_labels ) \ n print \ " Test accuracy : % . 1f % % \ " % accuracy ( test_prediction . eval ( ) , test_labels ) " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " Initialized \ nMinibatch loss at step 0 : 3 . 51275 \ nMinibatch accuracy : 6 . 2 % \ nValidation accuracy : 12 . 8 % \ nMinibatch loss at step 50 : 1 . 48703 \ nMinibatch accuracy : 43 . 8 % \ nValidation accuracy : 50 . 4 % \ nMinibatch loss at step 100 : 1 . 04377 \ nMinibatch accuracy : 68 . 8 % \ nValidation accuracy : 67 . 4 % \ nMinibatch loss at step 150 : 0 . 601682 \ nMinibatch accuracy : 68 . 8 % \ nValidation accuracy : 73 . 0 % \ nMinibatch loss at step 200 : 0 . 898649 \ nMinibatch accuracy : 75 . 0 % \ nValidation accuracy : 77 . 8 % \ nMinibatch loss at step 250 : 1 . 3637 \ nMinibatch accuracy : 56 . 2 % \ nValidation accuracy : 75 . 4 % \ nMinibatch loss at step 300 : 1 . 41968 \ nMinibatch accuracy : 62 . 5 % \ nValidation accuracy : 76 . 0 % \ nMinibatch loss at step 350 : 0 . 300648 \ nMinibatch accuracy : 81 . 2 % \ nValidation accuracy : 80 . 2 % \ nMinibatch loss at step 400 : 1 . 32092 \ nMinibatch accuracy : 56 . 2 % \ nValidation accuracy : 80 . 4 % \ nMinibatch loss at step 450 : 0 . 556701 \ nMinibatch accuracy : 81 . 2 % \ nValidation accuracy : 79 . 4 % \ nMinibatch loss at step 500 : 1 . 65595 \ nMinibatch accuracy : 43 . 8 % \ nValidation accuracy : 79 . 6 % \ nMinibatch loss at step 550 : 1 . 06995 \ nMinibatch accuracy : 75 . 0 % \ nValidation accuracy : 81 . 2 % \ nMinibatch loss at step 600 : 0 . 223684 \ nMinibatch accuracy : 100 . 0 % \ nValidation accuracy : 82 . 3 % \ nMinibatch loss at step 650 : 0 . 619602 \ nMinibatch accuracy : 87 . 5 % \ nValidation accuracy : 81 . 8 % \ nMinibatch loss at step 700 : 0 . 812091 \ nMinibatch accuracy : 75 . 0 % \ nValidation accuracy : 82 . 4 % \ nMinibatch loss at step 750 : 0 . 276302 \ nMinibatch accuracy : 87 . 5 % \ nValidation accuracy : 82 . 3 % \ nMinibatch loss at step 800 : 0 . 450241 \ nMinibatch accuracy : 81 . 2 % \ nValidation accuracy : 82 . 3 % \ nMinibatch loss at step 850 : 0 . 137139 \ nMinibatch accuracy : 93 . 8 % \ nValidation accuracy : 82 . 3 % \ nMinibatch loss at step 900 : 0 . 52664 \ nMinibatch accuracy : 75 . 0 % \ nValidation accuracy : 82 . 2 % \ nMinibatch loss at step 950 : 0 . 623835 \ nMinibatch accuracy : 87 . 5 % \ nValidation accuracy : 82 . 1 % \ nMinibatch loss at step 1000 : 0 . 243114 \ nMinibatch accuracy : 93 . 8 % \ nValidation accuracy : 82 . 9 % \ nTest accuracy : 90 . 0 % \ n " <nl> + } <nl> + ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " KedKkn4EutIK " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " mmm \ nProblem 1 \ nmmmmmmmmm \ n \ nThe convolutional model above uses convolutions with stride 2 to reduce the dimensionality . Replace the strides a max pooling operation ( ` nn . max_pool ( ) ` ) of stride 2 and kernel size 2 . \ n \ nmmm " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " klf21gpbAgb - " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " mmm \ nProblem 2 \ nmmmmmmmmm \ n \ nTry to get the best performance you can using a convolutional net . Look for example at the classic [ LeNet5 ] ( http : / / yann . lecun . com / exdb / lenet / ) architecture , adding Dropout , and / or adding learning rate decay . \ n \ nmmm " <nl> + } <nl> + ] <nl> + } <nl> + ] , <nl> + " metadata " : { <nl> + " name " : " 4_convolutions . ipynb " , <nl> + " colabVersion " : " 0 . 3 . 2 " , <nl> + " colab_views " : { } , <nl> + " colab_default_view " : { } <nl> + } , <nl> + " nbformat " : 3 , <nl> + " nbformat_minor " : 0 <nl> + } <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 0000000000000 . . 95e89b4e5664b <nl> mmm / dev / null <nl> ppp b / tensorflow / examples / udacity / 5_word2vec . ipynb <nl> <nl> + { <nl> + " worksheets " : [ <nl> + { <nl> + " cells " : [ <nl> + { <nl> + " metadata " : { <nl> + " id " : " D7tqLMoKF6uq " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Deep Learning \ n = = = = = = = = = = = = = \ n \ nAssignment 5 \ nmmmmmmmmmmmm \ n \ nThe goal of this assignment is to train a skip - gram model over [ Text8 ] ( http : / / mattmahoney . net / dc / textdata ) data . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " 0K1ZyLn04QZf " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } <nl> + } , <nl> + " cellView " : " both " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " # These are all the modules we ' ll be using later . Make sure you can import them \ n # before proceeding further . \ nimport collections \ nimport math \ nimport numpy as np \ nimport os \ nimport random \ nimport tensorflow as tf \ nimport urllib \ nimport zipfile \ nfrom matplotlib import pylab \ nfrom sklearn . manifold import TSNE " , <nl> + " language " : " python " , <nl> + " outputs " : [ ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " aCjPJE944bkV " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Download the data from the source website if necessary . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " RJ - o3UBUFtCw " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 1 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 14640 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1445964482948 , <nl> + " user " : { <nl> + " color " : " # 1FA15D " , <nl> + " displayName " : " Vincent Vanhoucke " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " 05076109866853157986 " , <nl> + " photoUrl " : " / / lh6 . googleusercontent . com / - cCJa7dTDcgQ / AAAAAAAAAAI / AAAAAAAACgw / r2EZ_8oYer4 / s50 - c - k - no / photo . jpg " , <nl> + " sessionId " : " 2f1ffade4c9f20de " , <nl> + " userId " : " 102167687554210253930 " <nl> + } , <nl> + " user_tz " : 420 <nl> + } , <nl> + " outputId " : " c4ec222c - 80b5 - 4298 - e635 - 93ca9f79c3b7 " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " url = ' http : / / mattmahoney . net / dc / ' \ n \ ndef maybe_download ( filename , expected_bytes ) : \ n \ " \ " \ " Download a file if not present , and make sure it ' s the right size . \ " \ " \ " \ n if not os . path . exists ( filename ) : \ n filename , _ = urllib . urlretrieve ( url + filename , filename ) \ n statinfo = os . stat ( filename ) \ n if statinfo . st_size = = expected_bytes : \ n print ' Found and verified ' , filename \ n else : \ n print statinfo . st_size \ n raise Exception ( \ n ' Failed to verify ' + filename + ' . Can you get to it with a browser ? ' ) \ n return filename \ n \ nfilename = maybe_download ( ' text8 . zip ' , 31344016 ) " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " Found and verified text8 . zip \ n " <nl> + } <nl> + ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " Zqz3XiqI4mZT " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Read the data into a string . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " Mvf09fjugFU_ " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 1 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 28844 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1445964497165 , <nl> + " user " : { <nl> + " color " : " # 1FA15D " , <nl> + " displayName " : " Vincent Vanhoucke " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " 05076109866853157986 " , <nl> + " photoUrl " : " / / lh6 . googleusercontent . com / - cCJa7dTDcgQ / AAAAAAAAAAI / AAAAAAAACgw / r2EZ_8oYer4 / s50 - c - k - no / photo . jpg " , <nl> + " sessionId " : " 2f1ffade4c9f20de " , <nl> + " userId " : " 102167687554210253930 " <nl> + } , <nl> + " user_tz " : 420 <nl> + } , <nl> + " outputId " : " e3a928b4 - 1645 - 4fe8 - be17 - fcf47de5716d " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " def read_data ( filename ) : \ n f = zipfile . ZipFile ( filename ) \ n for name in f . namelist ( ) : \ n return f . read ( name ) . split ( ) \ n f . close ( ) \ n \ nwords = read_data ( filename ) \ nprint ' Data size ' , len ( words ) " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " Data size 17005207 \ n " <nl> + } <nl> + ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " Zdw6i4F8glpp " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Build the dictionary and replace rare words with UNK token . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " gAL1EECXeZsD " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 1 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 28849 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1445964497178 , <nl> + " user " : { <nl> + " color " : " # 1FA15D " , <nl> + " displayName " : " Vincent Vanhoucke " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " 05076109866853157986 " , <nl> + " photoUrl " : " / / lh6 . googleusercontent . com / - cCJa7dTDcgQ / AAAAAAAAAAI / AAAAAAAACgw / r2EZ_8oYer4 / s50 - c - k - no / photo . jpg " , <nl> + " sessionId " : " 2f1ffade4c9f20de " , <nl> + " userId " : " 102167687554210253930 " <nl> + } , <nl> + " user_tz " : 420 <nl> + } , <nl> + " outputId " : " 3fb4ecd1 - df67 - 44b6 - a2dc - 2291730970b2 " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " vocabulary_size = 50000 \ n \ ndef build_dataset ( words ) : \ n count = [ [ ' UNK ' , - 1 ] ] \ n count . extend ( collections . Counter ( words ) . most_common ( vocabulary_size - 1 ) ) \ n dictionary = dict ( ) \ n for word , _ in count : \ n dictionary [ word ] = len ( dictionary ) \ n data = list ( ) \ n unk_count = 0 \ n for word in words : \ n if word in dictionary : \ n index = dictionary [ word ] \ n else : \ n index = 0 # dictionary [ ' UNK ' ] \ n unk_count = unk_count + 1 \ n data . append ( index ) \ n count [ 0 ] [ 1 ] = unk_count \ n reverse_dictionary = dict ( zip ( dictionary . values ( ) , dictionary . keys ( ) ) ) \ n return data , count , dictionary , reverse_dictionary \ n \ ndata , count , dictionary , reverse_dictionary = build_dataset ( words ) \ nprint ' Most common words ( + UNK ) ' , count [ : 5 ] \ nprint ' Sample data ' , data [ : 10 ] \ ndel words # Hint to reduce memory . " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " Most common words ( + UNK ) [ [ ' UNK ' , 418391 ] , ( ' the ' , 1061396 ) , ( ' of ' , 593677 ) , ( ' and ' , 416629 ) , ( ' one ' , 411764 ) ] \ nSample data [ 5243 , 3083 , 12 , 6 , 195 , 2 , 3136 , 46 , 59 , 156 ] \ n " <nl> + } <nl> + ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " lFwoyygOmWsL " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Function to generate a training batch for the skip - gram model . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " w9APjA - zmfjV " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 1 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 113 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1445964901989 , <nl> + " user " : { <nl> + " color " : " # 1FA15D " , <nl> + " displayName " : " Vincent Vanhoucke " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " 05076109866853157986 " , <nl> + " photoUrl " : " / / lh6 . googleusercontent . com / - cCJa7dTDcgQ / AAAAAAAAAAI / AAAAAAAACgw / r2EZ_8oYer4 / s50 - c - k - no / photo . jpg " , <nl> + " sessionId " : " 2f1ffade4c9f20de " , <nl> + " userId " : " 102167687554210253930 " <nl> + } , <nl> + " user_tz " : 420 <nl> + } , <nl> + " outputId " : " 67cccb02 - cdaf - 4e47 - d489 - 43bcc8d57bb8 " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " data_index = 0 \ n \ ndef generate_batch ( batch_size , num_skips , skip_window ) : \ n global data_index \ n assert batch_size % num_skips = = 0 \ n assert num_skips < = 2 * skip_window \ n batch = np . ndarray ( shape = ( batch_size ) , dtype = np . int32 ) \ n labels = np . ndarray ( shape = ( batch_size , 1 ) , dtype = np . int32 ) \ n span = 2 * skip_window + 1 # [ skip_window target skip_window ] \ n buffer = collections . deque ( maxlen = span ) \ n for _ in range ( span ) : \ n buffer . append ( data [ data_index ] ) \ n data_index = ( data_index + 1 ) % len ( data ) \ n for i in range ( batch_size / num_skips ) : \ n target = skip_window # target label at the center of the buffer \ n targets_to_avoid = [ skip_window ] \ n for j in range ( num_skips ) : \ n while target in targets_to_avoid : \ n target = random . randint ( 0 , span - 1 ) \ n targets_to_avoid . append ( target ) \ n batch [ i * num_skips + j ] = buffer [ skip_window ] \ n labels [ i * num_skips + j , 0 ] = buffer [ target ] \ n buffer . append ( data [ data_index ] ) \ n data_index = ( data_index + 1 ) % len ( data ) \ n return batch , labels \ n \ nbatch , labels = generate_batch ( batch_size = 8 , num_skips = 2 , skip_window = 1 ) \ nfor i in range ( 8 ) : \ n print batch [ i ] , ' - > ' , labels [ i , 0 ] \ n print reverse_dictionary [ batch [ i ] ] , ' - > ' , reverse_dictionary [ labels [ i , 0 ] ] " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " 3083 - > 5243 \ noriginated - > anarchism \ n3083 - > 12 \ noriginated - > as \ n12 - > 3083 \ nas - > originated \ n12 - > 6 \ nas - > a \ n6 - > 12 \ na - > as \ n6 - > 195 \ na - > term \ n195 - > 6 \ nterm - > a \ n195 - > 2 \ nterm - > of \ n " <nl> + } <nl> + ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " Ofd1MbBuwiva " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Train a skip - gram model . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " 8pQKsV4Vwlzy " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } <nl> + } , <nl> + " cellView " : " both " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " batch_size = 128 \ nembedding_size = 128 # Dimension of the embedding vector . \ nskip_window = 1 # How many words to consider left and right . \ nnum_skips = 2 # How many times to reuse an input to generate a label . \ n # We pick a random validation set to sample nearest neighbors . here we limit the \ n # validation samples to the words that have a low numeric ID , which by \ n # construction are also the most frequent . \ nvalid_size = 16 # Random set of words to evaluate similarity on . \ nvalid_window = 100 # Only pick dev samples in the head of the distribution . \ nvalid_examples = np . array ( random . sample ( xrange ( valid_window ) , valid_size ) ) \ nnum_sampled = 64 # Number of negative examples to sample . \ n \ ngraph = tf . Graph ( ) \ n \ nwith graph . as_default ( ) : \ n \ n # Input data . \ n train_dataset = tf . placeholder ( tf . int32 , shape = [ batch_size ] ) \ n train_labels = tf . placeholder ( tf . int32 , shape = [ batch_size , 1 ] ) \ n valid_dataset = tf . constant ( valid_examples , dtype = tf . int32 ) \ n \ n # Variables . \ n embeddings = tf . Variable ( \ n tf . random_uniform ( [ vocabulary_size , embedding_size ] , - 1 . 0 , 1 . 0 ) ) \ n softmax_weights = tf . Variable ( \ n tf . truncated_normal ( [ vocabulary_size , embedding_size ] , \ n stddev = 1 . 0 / math . sqrt ( embedding_size ) ) ) \ n softmax_biases = tf . Variable ( tf . zeros ( [ vocabulary_size ] ) ) \ n \ n # Model . \ n # Look up embeddings for inputs . \ n embed = tf . nn . embedding_lookup ( embeddings , train_dataset ) \ n # Compute the softmax loss , using a sample of the negative labels each time . \ n loss = tf . reduce_mean ( \ n tf . nn . sampled_softmax_loss ( softmax_weights , softmax_biases , embed , \ n train_labels , num_sampled , vocabulary_size ) ) \ n \ n # Optimizer . \ n optimizer = tf . train . AdagradOptimizer ( 1 . 0 ) . minimize ( loss ) \ n \ n # Compute the similarity between minibatch examples and all embeddings . \ n # We use the cosine distance : \ n norm = tf . sqrt ( tf . reduce_sum ( tf . square ( embeddings ) , 1 , keep_dims = True ) ) \ n normalized_embeddings = embeddings / norm \ n valid_embeddings = tf . nn . embedding_lookup ( \ n normalized_embeddings , valid_dataset ) \ n similarity = tf . matmul ( valid_embeddings , tf . transpose ( normalized_embeddings ) ) " , <nl> + " language " : " python " , <nl> + " outputs " : [ ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " 1bQFGceBxrWW " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 23 <nl> + } , <nl> + { <nl> + " item_id " : 48 <nl> + } , <nl> + { <nl> + " item_id " : 61 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 436189 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1445965429787 , <nl> + " user " : { <nl> + " color " : " # 1FA15D " , <nl> + " displayName " : " Vincent Vanhoucke " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " 05076109866853157986 " , <nl> + " photoUrl " : " / / lh6 . googleusercontent . com / - cCJa7dTDcgQ / AAAAAAAAAAI / AAAAAAAACgw / r2EZ_8oYer4 / s50 - c - k - no / photo . jpg " , <nl> + " sessionId " : " 2f1ffade4c9f20de " , <nl> + " userId " : " 102167687554210253930 " <nl> + } , <nl> + " user_tz " : 420 <nl> + } , <nl> + " outputId " : " 5ebd6d9a - 33c6 - 4bcd - bf6d - 252b0b6055e4 " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " num_steps = 100001 \ n \ nwith tf . Session ( graph = graph ) as session : \ n tf . initialize_all_variables ( ) . run ( ) \ n print \ " Initialized \ " \ n average_loss = 0 \ n for step in xrange ( num_steps ) : \ n batch_data , batch_labels = generate_batch ( \ n batch_size , num_skips , skip_window ) \ n feed_dict = { train_dataset : batch_data , train_labels : batch_labels } \ n _ , l = session . run ( [ optimizer , loss ] , feed_dict = feed_dict ) \ n average_loss + = l \ n if step % 2000 = = 0 : \ n if step > 0 : \ n average_loss = average_loss / 2000 \ n # The average loss is an estimate of the loss over the last 2000 batches . \ n print \ " Average loss at step \ " , step , \ " : \ " , average_loss \ n average_loss = 0 \ n # note that this is expensive ( ~ 20 % slowdown if computed every 500 steps ) \ n if step % 10000 = = 0 : \ n sim = similarity . eval ( ) \ n for i in xrange ( valid_size ) : \ n valid_word = reverse_dictionary [ valid_examples [ i ] ] \ n top_k = 8 # number of nearest neighbors \ n nearest = ( - sim [ i , : ] ) . argsort ( ) [ 1 : top_k + 1 ] \ n log = \ " Nearest to % s : \ " % valid_word \ n for k in xrange ( top_k ) : \ n close_word = reverse_dictionary [ nearest [ k ] ] \ n log = \ " % s % s , \ " % ( log , close_word ) \ n print log \ n final_embeddings = normalized_embeddings . eval ( ) " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " Initialized \ nAverage loss at step 0 : 8 . 58149623871 \ nNearest to been : unfavourably , marmara , ancestral , legal , bogart , glossaries , worst , rooms , \ nNearest to time : conformist , strawberries , sindhi , waterfall , xia , nominates , psp , sensitivity , \ nNearest to over : overlord , panda , golden , semigroup , rawlings , involved , shreveport , handling , \ nNearest to not : hymenoptera , reintroducing , lamiaceae , because , davao , omnipotent , combustion , debilitating , \ nNearest to three : catalog , koza , gn , braque , holstein , postgresql , luddite , justine , \ nNearest to if : chilled , vince , fiddler , represented , sandinistas , happiness , lya , glands , \ nNearest to there : coast , photosynthetic , kimmei , legally , inner , illyricum , formats , fullmetal , \ nNearest to between : chuvash , prinz , suitability , wolfe , guideline , computability , diminutive , paulo , \ nNearest to from : tanganyika , workshop , elphinstone , spearhead , resurrected , kevlar , shangri , loves , \ nNearest to state : sextus , wuppertal , glaring , inches , unrounded , courageous , adler , connie , \ nNearest to on : gino , phocas , rhine , jg , macrocosm , jackass , jays , theorie , \ nNearest to and : standings , towed , reyes , willard , equality , juggling , wladislaus , faked , \ nNearest to eight : gresham , dogg , moko , tennis , superseded , telegraphy , scramble , vinod , \ nNearest to they : prisons , divisor , coder , ribeira , willingness , factional , nne , lotta , \ nNearest to more : blues , fur , sterling , tangier , khwarizmi , discouraged , cal , deicide , \ nNearest to other : enemies , bogged , brassicaceae , lascaux , dispense , alexandrians , crimea , dou , \ nAverage loss at step 2000 : 4 . 39983723116 \ nAverage loss at step 4000 : 3 . 86921076906 \ nAverage loss at step 6000 : 3 . 72542127335 \ nAverage loss at step 8000 : 3 . 57835536212 \ nAverage loss at step 10000 : 3 . 61056993055 \ nNearest to been : glossaries , legal , unfavourably , be , hadad , wore , scarcity , were , \ nNearest to time : strawberries , conformist , gleichschaltung , waterfall , molality , nominates , baal , dole , \ nNearest to over : golden , semigroup , catus , motorways , brick , shehri , mussolini , overlord , \ nNearest to not : hinayana , it , often , they , boots , also , noaa , lindsey , \ nNearest to three : four , seven , six , five , nine , eight , two , zero , \ nNearest to if : glands , euros , wallpaper , redefine , toho , confuse , unsound , shepherd , \ nNearest to there : it , they , fullmetal , pace , legally , harpsichord , mma , bug , \ nNearest to between : chuvash , wandering , from , kirsch , pursuant , eurocents , suitability , jackie , \ nNearest to from : into , in , workshop , to , at , misogynist , elphinstone , spearhead , \ nNearest to state : sextus , glaring , connie , adler , esoteric , didactic , handedness , presidents , \ nNearest to on : in , at , for , ruminants , wakefulness , torrey , foley , gino , \ nNearest to and : or , who , but , zelda , of , for , thirst , chisel , \ nNearest to eight : nine , six , seven , five , four , three , zero , two , \ nNearest to they : he , prisons , there , we , hydrate , it , not , cumbersome , \ nNearest to more : skye , blues , trypomastigotes , deicide , most , readable , used , sterling , \ nNearest to other : trochaic , hush , surveyors , joachim , differentiation , attackers , reverence , attestation , \ nAverage loss at step 12000 : 3 . 66169466591 \ nAverage loss at step 14000 : 3 . 60342905837 \ nAverage loss at step 16000 : 3 . 57761328053 \ nAverage loss at step 18000 : 3 . 57667332476 \ nAverage loss at step 20000 : 3 . 53310145146 \ nNearest to been : be , become , was , hadad , unfavourably , were , wore , partido , \ nNearest to time : gleichschaltung , strawberries , year , nominates , conformist , etch , admittedly , treasuries , \ nNearest to over : golden , semigroup , motorways , rawlings , triangle , trey , ustawa , mattingly , \ nNearest to not : they , boots , often , dieppe , still , hinayana , nearly , be , \ nNearest to three : two , four , five , seven , eight , six , nine , one , \ nNearest to if : wallpaper , euros , before , toho , unsound , so , bg , pfc , \ nNearest to there : they , it , he , usually , which , we , not , transactions , \ nNearest to between : from , with , about , near , reactance , eurocents , wandering , voltaire , \ nNearest to from : into , workshop , by , between , in , on , elphinstone , under , \ nNearest to state : glaring , esoteric , succeeding , sextus , vorarlberg , presidents , depends , connie , \ nNearest to on : in , at , upon , during , from , janis , foley , nubian , \ nNearest to and : or , thirst , but , where , s , who , pfaff , including , \ nNearest to eight : nine , seven , six , five , four , three , zero , one , \ nNearest to they : there , he , we , not , it , you , prisons , who , \ nNearest to more : less , most , deicide , skye , trypomastigotes , interventionism , toed , drummond , \ nNearest to other : such , joachim , hush , attackers , surveyors , trochaic , differentiation , reverence , \ nAverage loss at step 22000 : 3 . 59519316927 \ nAverage loss at step 24000 : 3 . 55378576797 \ nAverage loss at step 26000 : 3 . 56455037558 \ nAverage loss at step 28000 : 3 . 5040882225 \ nAverage loss at step 30000 : 3 . 39208897972 \ nNearest to been : become , be , were , was , spotless , hadad , by , hausdorff , \ nNearest to time : gleichschaltung , year , day , nominates , jesus , strawberries , way , admittedly , \ nNearest to over : golden , semigroup , motorways , rawlings , interventionism , counternarcotics , adaption , brick , \ nNearest to not : often , they , it , never , still , nor , boots , pki , \ nNearest to three : four , six , two , eight , five , seven , nine , zero , \ nNearest to if : when , before , so , should , toho , where , bg , wallpaper , \ nNearest to there : they , it , which , usually , he , that , also , now , \ nNearest to between : with , from , in , panasonic , presupposes , churchmen , hijacking , where , \ nNearest to from : into , elphinstone , workshop , between , through , speculates , sosa , in , \ nNearest to state : esoteric , glaring , presidents , vorarlberg , atmosphere , succeeding , lute , connie , \ nNearest to on : upon , in , janis , during , torrey , against , infield , catalans , \ nNearest to and : or , thirst , in , but , of , sobib , cleaves , including , \ nNearest to eight : nine , six , four , seven , three , zero , five , one , \ nNearest to they : we , there , he , you , it , these , who , i , \ nNearest to more : less , most , deicide , faster , toed , very , skye , tonic , \ nNearest to other : different , attackers , joachim , various , such , many , differentiation , these , \ nAverage loss at step 32000 : 3 . 49501452419 \ nAverage loss at step 34000 : 3 . 48593705952 \ nAverage loss at step 36000 : 3 . 50112806576 \ nAverage loss at step " <nl> + } , <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " 38000 : 3 . 49244426501 \ nAverage loss at step 40000 : 3 . 3890105716 \ nNearest to been : become , be , were , was , jolie , hausdorff , spotless , had , \ nNearest to time : year , way , gleichschaltung , period , day , stanislav , stage , outcome , \ nNearest to over : through , semigroup , rawlings , golden , about , brick , on , motorways , \ nNearest to not : they , radiated , never , pki , still , omnipotent , hinayana , really , \ nNearest to three : four , six , five , two , seven , eight , one , nine , \ nNearest to if : when , before , where , then , bg , because , can , should , \ nNearest to there : they , it , he , usually , this , typically , still , often , \ nNearest to between : with , in , from , about , against , churchmen , johansen , presupposes , \ nNearest to from : into , through , elphinstone , in , workshop , between , suing , under , \ nNearest to state : esoteric , presidents , atmosphere , vorarlberg , lute , succeeding , glaring , didactic , \ nNearest to on : upon , at , in , during , unitarians , under , catalans , batavians , \ nNearest to and : or , but , s , incapacitation , including , while , of , which , \ nNearest to eight : nine , six , seven , four , five , three , one , two , \ nNearest to they : we , he , there , you , she , i , not , it , \ nNearest to more : less , most , deicide , toed , greater , faster , quite , longer , \ nNearest to other : various , different , attackers , joachim , clutter , nz , trochaic , apulia , \ nAverage loss at step 42000 : 3 . 45294014364 \ nAverage loss at step 44000 : 3 . 47660055941 \ nAverage loss at step 46000 : 3 . 47458503014 \ nAverage loss at step 48000 : 3 . 47261548793 \ nAverage loss at step 50000 : 3 . 45390708435 \ nNearest to been : become , be , had , was , were , hausdorff , prem , remained , \ nNearest to time : way , year , period , stv , day , gleichschaltung , stage , outcome , \ nNearest to over : through , golden , semigroup , about , brick , counternarcotics , theremin , mattingly , \ nNearest to not : they , still , never , really , sometimes , it , kiwifruit , nearly , \ nNearest to three : five , four , six , seven , two , eight , one , nine , \ nNearest to if : when , before , where , because , connexion , though , so , whether , \ nNearest to there : they , it , he , this , now , often , usually , still , \ nNearest to between : with , from , fashioned , churchmen , panasonic , explores , within , racial , \ nNearest to from : into , through , under , elphinstone , between , workshop , circumpolar , idiom , \ nNearest to state : atmosphere , vorarlberg , esoteric , presidents , madhya , majority , moulin , bowmen , \ nNearest to on : upon , in , catalans , tezuka , minotaurs , wakefulness , batavians , guglielmo , \ nNearest to and : or , but , thirst , signifier , which , however , including , unattractive , \ nNearest to eight : six , nine , seven , five , four , three , zero , two , \ nNearest to they : we , there , he , you , it , she , these , not , \ nNearest to more : less , most , quite , very , further , faster , toed , deicide , \ nNearest to other : various , different , many , attackers , are , joachim , nihilo , reject , \ nAverage loss at step 52000 : 3 . 43597227755 \ nAverage loss at step 54000 : 3 . 25126817495 \ nAverage loss at step 56000 : 3 . 35102432287 \ nAverage loss at step 58000 : 3 . 44654818082 \ nAverage loss at step 60000 : 3 . 4287913968 \ nNearest to been : become , be , was , prem , had , remained , hadad , stanislavsky , \ nNearest to time : year , way , period , stv , barely , name , stage , restoring , \ nNearest to over : about , through , golden , adaption , counternarcotics , up , mattingly , brick , \ nNearest to not : still , never , nor , kiwifruit , they , nearly , therefore , rarely , \ nNearest to three : two , five , four , six , seven , eight , one , nine , \ nNearest to if : when , though , before , where , although , because , can , could , \ nNearest to there : they , it , he , still , she , we , this , often , \ nNearest to between : with , from , churchmen , among , ethical , within , vma , panasonic , \ nNearest to from : through , into , under , during , between , in , suing , across , \ nNearest to state : atmosphere , infringe , madhya , vorarlberg , government , bowmen , vargas , republic , \ nNearest to on : upon , through , within , ridiculous , janis , in , under , over , \ nNearest to and : or , while , including , but , of , like , whose , bannister , \ nNearest to eight : nine , six , five , four , seven , zero , three , two , \ nNearest to they : we , there , you , he , it , these , she , prisons , \ nNearest to more : less , most , quite , further , toed , very , faster , rather , \ nNearest to other : different , various , many , nihilo , these , amour , including , screenplays , \ nAverage loss at step 62000 : 3 . 38358767056 \ nAverage loss at step 64000 : 3 . 41693099326 \ nAverage loss at step 66000 : 3 . 39588000977 \ nAverage loss at step 68000 : 3 . 35567189544 \ nAverage loss at step 70000 : 3 . 38878934443 \ nNearest to been : become , be , was , prem , remained , were , being , discounts , \ nNearest to time : year , way , day , period , barely , ethos , stage , reason , \ nNearest to over : about , through , fortunately , semigroup , theremin , off , loudest , up , \ nNearest to not : still , nor , never , they , actually , nearly , unelected , therefore , \ nNearest to three : five , two , four , six , seven , eight , nine , zero , \ nNearest to if : when , though , before , where , because , then , after , since , \ nNearest to there : they , it , he , often , she , we , usually , still , \ nNearest to between : among , with , within , from , ethical , churchmen , racial , prentice , \ nNearest to from : through , into , within , during , under , until , between , across , \ nNearest to state : city , atmosphere , desks , surrounding , preservation , bohr , principal , republic , \ nNearest to on : upon , tezuka , through , within , wakefulness , catalans , at , ingeborg , \ nNearest to and : or , but , while , including , thirst , jerzy , massing , abadan , \ nNearest to eight : seven , six , nine , five , four , three , two , zero , \ nNearest to they : we , you , he , there , she , it , prisons , who , \ nNearest to more : less , most , quite , very , faster , smaller , further , larger , \ nNearest to other : various , different , some , screenplays , lab , many , including , debugging , \ nAverage loss at step 72000 : 3 . 41103189731 \ nAverage loss at step 74000 : 3 . 44926435578 \ nAverage loss at step 76000 : 3 . 4423020488 \ nAverage loss at step 78000 : 3 . 41976813722 \ nAverage loss at step 80000 : 3 . 39511853886 \ nNearest to been : become , be , remained , was , grown , were , prem , already , " <nl> + } , <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " \ nNearest to time : year , way , period , reason , barely , distance , stage , day , \ nNearest to over : about , fortunately , through , semigroup , further , mattingly , rawlings , golden , \ nNearest to not : still , they , nor , never , we , kiwifruit , noaa , really , \ nNearest to three : five , two , seven , four , eight , six , nine , zero , \ nNearest to if : when , where , though , before , since , because , although , follows , \ nNearest to there : they , it , he , we , she , still , typically , actually , \ nNearest to between : with , among , within , in , racial , around , from , serapeum , \ nNearest to from : into , through , in , within , under , using , during , towards , \ nNearest to state : city , atmosphere , ferro , vorarlberg , surrounding , republic , madhya , national , \ nNearest to on : upon , poll , in , from , tezuka , janis , through , within , \ nNearest to and : or , but , including , while , s , which , thirst , although , \ nNearest to eight : nine , seven , six , five , four , three , zero , two , \ nNearest to they : we , you , there , he , she , it , these , not , \ nNearest to more : less , most , smaller , very , faster , quite , rather , larger , \ nNearest to other : various , different , joachim , including , theos , smaller , individual , screenplays , \ nAverage loss at step 82000 : 3 . 40933967865 \ nAverage loss at step 84000 : 3 . 41618054378 \ nAverage loss at step 86000 : 3 . 31485116804 \ nAverage loss at step 88000 : 3 . 37068593091 \ nAverage loss at step 90000 : 3 . 2785516749 \ nNearest to been : become , be , was , prem , remained , grown , recently , already , \ nNearest to time : year , way , period , day , barely , battle , buds , name , \ nNearest to over : through , about , fortunately , off , theremin , semigroup , extraterrestrial , mattingly , \ nNearest to not : nor , still , never , otherwise , generally , separately , gown , hydrate , \ nNearest to three : four , five , six , two , eight , seven , nine , zero , \ nNearest to if : when , where , before , though , because , since , then , while , \ nNearest to there : they , it , he , we , she , still , typically , fiorello , \ nNearest to between : with , among , within , from , churchmen , prentice , racial , panasonic , \ nNearest to from : through , into , across , during , towards , until , at , within , \ nNearest to state : bohr , city , atmosphere , ferro , bowmen , republic , retaliation , vorarlberg , \ nNearest to on : upon , in , tezuka , at , during , within , via , catalans , \ nNearest to and : or , including , but , while , like , thirst , with , schuman , \ nNearest to eight : seven , nine , six , five , four , three , zero , two , \ nNearest to they : we , there , he , you , she , it , prisons , these , \ nNearest to more : less , most , very , faster , larger , quite , smaller , better , \ nNearest to other : different , various , tamara , prosthetic , including , individual , failing , restaurants , \ nAverage loss at step 92000 : 3 . 40355363208 \ nAverage loss at step 94000 : 3 . 35647508007 \ nAverage loss at step 96000 : 3 . 34374570692 \ nAverage loss at step 98000 : 3 . 4230104093 \ nAverage loss at step 100000 : 3 . 36909827 \ nNearest to been : become , be , grown , was , being , already , remained , prem , \ nNearest to time : way , year , day , period , years , days , mothersbaugh , separators , \ nNearest to over : through , about , semigroup , further , fortunately , off , into , theremin , \ nNearest to not : never , nor , still , dieppe , really , unelected , actually , now , \ nNearest to three : four , two , five , seven , six , eight , nine , zero , \ nNearest to if : when , though , where , before , is , abe , then , follows , \ nNearest to there : they , it , he , we , still , she , typically , often , \ nNearest to between : within , with , among , churchmen , around , explores , from , reactance , \ nNearest to from : into , through , within , across , in , between , using , workshop , \ nNearest to state : atmosphere , bohr , national , ferro , germ , desks , city , unpaid , \ nNearest to on : upon , in , within , tezuka , janis , batavians , about , macrocosm , \ nNearest to and : or , but , purview , thirst , sukkot , epr , including , honesty , \ nNearest to eight : seven , nine , six , four , five , three , zero , one , \ nNearest to they : we , there , you , he , she , prisons , it , these , \ nNearest to more : less , most , very , quite , faster , larger , rather , smaller , \ nNearest to other : various , different , tamara , theos , some , cope , many , others , \ n " <nl> + } <nl> + ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " jjJXYA_XzV79 " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } <nl> + } , <nl> + " cellView " : " both " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " num_points = 400 \ n \ ntsne = TSNE ( perplexity = 30 , n_components = 2 , init = ' pca ' , n_iter = 5000 ) \ ntwo_d_embeddings = tsne . fit_transform ( final_embeddings [ 1 : num_points + 1 , : ] ) " , <nl> + " language " : " python " , <nl> + " outputs " : [ ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " o_e0D_UezcDe " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 1 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 4763 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1445965465525 , <nl> + " user " : { <nl> + " color " : " # 1FA15D " , <nl> + " displayName " : " Vincent Vanhoucke " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " 05076109866853157986 " , <nl> + " photoUrl " : " / / lh6 . googleusercontent . com / - cCJa7dTDcgQ / AAAAAAAAAAI / AAAAAAAACgw / r2EZ_8oYer4 / s50 - c - k - no / photo . jpg " , <nl> + " sessionId " : " 2f1ffade4c9f20de " , <nl> + " userId " : " 102167687554210253930 " <nl> + } , <nl> + " user_tz " : 420 <nl> + } , <nl> + " outputId " : " df22e4a5 - e8ec - 4e5e - d384 - c6cf37c68c34 " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " def plot ( embeddings , labels ) : \ n assert embeddings . shape [ 0 ] > = len ( labels ) , ' More labels than embeddings ' \ n pylab . figure ( figsize = ( 15 , 15 ) ) # in inches \ n for i , label in enumerate ( labels ) : \ n x , y = embeddings [ i , : ] \ n pylab . scatter ( x , y ) \ n pylab . annotate ( label , xy = ( x , y ) , xytext = ( 5 , 2 ) , textcoords = ' offset points ' , \ n ha = ' right ' , va = ' bottom ' ) \ n pylab . show ( ) \ n \ nwords = [ reverse_dictionary [ i ] for i in xrange ( 1 , num_points + 1 ) ] \ nplot ( two_d_embeddings , words ) " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " image / png " : " iVBORw0KGgoAAAANSUhEUgAAA3MAAANpCAYAAAChBGCHAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz \ nAAALEgAACxIB0t1 + / AAAIABJREFUeJzs3XdAldUfx / H3BdlbQEVzoyDukZaae5aZ5tbcIzUz9x5Z \ njhwNNXMVztTExFHqT9Ny50hFc + ZKEVBwAbLh / v4gSXILChc / r3 + 69 / Lc53yfewL8cM5zjsFoNBoR \ nERERERERk2KW0QWIiIiIiIjI01OYExERERERMUEKcyIiIiIiIiZIYU5ERERERMQEKcyJiIiIiIiY \ nIIU5ERERERERE5TmMBceHk7fvn1p2LAhb775JgEBAdy6dYvOnTtTv359unTpQnh4eHrUKiIiIiIi \ nIv8wpHWfuaFDh / Lqq6 / SvHlzEhISiI6OZvbs2bi4uNC9e3fmzZtHeHg4gwYNSq + aRUREREREXnpp \ nGpmLiIjg4MGDNG / eHIBs2bLh4ODAtm3baNq0KQBNmzbll19 + SXulIiIiIiIikiJbWt4cGBhI9uzZ \ nGT58OKdOnaJ48eKMGDGC69ev4 + bmBoCbmxvXr19Pl2JFREREREQkWZpG5hISEjhx4gRt2rTB398f \ nGxsb5s2bl + oYg8GAwWBIU5EiIiIiIiKSWprCXK5cuciZMyelSpUCoH79 + pw4cQI3NzdCQ0MBuHbt \ nGtmzZ3 / kedJ4256IiIiIiMhLJ03TLN3d3fHw8ODChQsULFiQvXv34unpiaenJ / 7 + / vTo0YM1a9ZQ \ np06dR57HYDAQGhqRllIkE3N3d1D / ZmHq36xLfZu1qX + zLvVt1qb + zbrc3R2e + j1pCnMAo0ePZtCg \ nQcTHx5MvXz4mTZpEYmIi / fr148cffyRPnjx89dVXaW1GRERERERE7pHmMOft7c2PP / 543 + sLFy5M \ n66lFRERERETkIdK8abiIiIiIiIi8eApzIiIiIiIiJkhhTkRERERExAQpzImIiIiIiJgghTkRERER \ nERETpDAnIiIiIiJighTmRERERERETJDCnIiIiIiIiAlSmBMRERERETFBCnMiIiIiIiImSGFORERE \ nRETEBCnMiYiIiIiImCCFOREREREREROkMCciIiIiImKCFOZERERERERMkMKciIiIiIiICVKYExER \ nERERMUEKcyIiIiIiIiZIYU5ERERERMQEKcyJiIiIiIiYIIU5ERERERERE6QwJyIiIiIiYoIU5kRE \ nREREREyQwpyIiIiIiIgJUpgTERERERExQQpzIiIiIiIiJkhhTkRERERExAQpzImIiIiIiJgghTkR \ nERERERETpDAnIiIiIiJighTmRERERERETJDCnIiIiIiIiAlSmBMRERERETFBCnMiIiIiIiImSGFO \ nRERERETEBCnMiYiIiIiImCCFOREREREREROkMCciIiIiImKCFOZERERERERMkMKciIiIiIiICVKY \ nExERERERMUEKcyIiIiIiIiZIYU5ERERERMQEKcyJiIiIiIiYIIU5ERERERERE6QwJyIiIiIiYoIU \ n5kREREREREyQwpyIiIiIiIgJUpgTERERERExQQpzIiIiIiIiJkhhTkRERERExAQpzImIiIiIiJgg \ nhTkRERERERETpDAnIiIiIiJighTmRERERERETJDCnIiIiIiIiAlSmBMRERERETFBCnMiIiIiIiIm \ nSGFORERERETEBCnMiYiIiIiImCCFOREREREREROkMCciIiIiImKCFOZERERERERMkMKciIiIiIiI \ nCVKYExERERERMUEKcyIiIiIiIiZIYU5ERERERMQEKcyJiIiIiIiYIIU5ERERERERE6QwJyIiIiIi \ nYoIU5kREREREREyQwpyIiIiIiIgJUpgTERERERExQQpzIiIiIiIiJkhhTkRERERExAQpzImIiIiI \ niJgghTkRERERERETpDAnIiIiIiJighTmRERERERETJDCnIiIiIiIiAlSmBMRERERETFBCnMiIiIi \ nIiImSGFORERERETEBCnMiYiIiIiImCCFOREREREREROULaMLEBERkcxnxYqlbNiwHoBGjZpQrVoN \ nBg78kFKlyvLnnwG4u + dg0qTPsbKy4sqVQL74Ygq3bt3E2tqaoUNHki9fgYy9ABGRl4BG5kRERCSV \ nU6dOsnHjT8yfv4i5cxeyfr0 / ERHhBAZeplmzlixZshJ7ewe2b98GwJQpE + jffzDffbeE3r0 / 4vPP \ nJ2fwFYiIvBw0MiciIiKpHD16hGrVamJlZQ1A9eq1CAg4jIdHHjw9iwDg5eVNcHAQ0dHRHDt2lNGj \ nh6a8Pz4 + IUPqFhF52SjMiYiISCoGg + GBr1taWqQ8NjMzJykpDqMxCQcHBxYsWPaiyhMRkX9omqWI \ niIikUrp0GXbs + I3Y2Biio6PZseNXSpcue99xRqMRW1s7cufOza + / / pLy2tmzf73okkVEXkoamRMR \ nEZFUihb15s03G9G9e0cA3n67KQ4OjveN2N19PmbMeKZN + 4xFi3xJSEigTp16KdMxRUTk + TEYjUZj \ nRhcBEBoakdElyHPi7u6g / s3C1L9Zl / o2a1P / Zl3q26xN / Zt1ubs7PPV7NM1SREREntnx4 + eYP38j \ nf / xxMqNLERF56SjMiYiIyDNZt24 / LVpEM3JkC1q1smLhwu0ZXZKIyEtFYU5ERESeyeLFNwgLex0w \ nEB5emqVLYzK6JBGRl4rCnIiIiDwTo9HwyOciIvJ8KcyJiIjIM2nd2gEXl0MA2NmdpkULLZItIvIi \ n6aeuiIiIPJMWLSpToMAJ9u3zo2TJXFSvXiujSxIReakozImIiMgze / VVH1591SejyxAReSlpmqWI \ niIiIiIgJUpgTERERERExQQpzIiIiIiIiJkhhTkRERERExAQpzImIiGSAyMhI / P1XZXQZIiJiwhTm \ nREREMkBERDj + / n4ZXYaIiJgwbU0gIiKSAebMmcmVK4F07tyWIkW8qFatJlWrVmP48EE4OjoyfPgY \ nfvppLUFBV + jRozcrVixlw4b1ADRq1ISWLdtk8BWIiEhG08iciIhIBujVqy958rzCggXLqFTpdY4e \ nPQxAWNg1 / v77IgBHjx6hbNlynDp1ko0bf2L + / EXMnbuQ9ev9 + euv0xlYvYiIZAYKcyIiIhnAaDSm \ nPC5VqgwBAUe4ePECBQsWxsUlO9evh3H8 + DFKlCjN0aNHqFatJlZW1tjY2FC9ei0CAg5nYPUiIpIZ \ naJqliIhIBnN3z0FkZAT79u2hdOmyhIeHs3XrFmxtbbGxscFgMKQ63mg03veaiIi8fDQyJyIikgFs \ nbW2JiopKeV68eElWrlxOmTLlKF26DCtWLKVUqbIAlC5dhh07fiM2Nobo6Gh27vwt5WsiIvLy0sic \ niIhIBnBycqZkydJ06NCK116rTKlSZThwYB958rxCzpy5iIgIp3Tp5MBWtKg3b77ZiO7dOwLw9ttN \ nKVKkaEaWLyIimYDBeO + k / QwUGhqR0SXIc + Lu7qD + zcLUv1mX + jbzuHr1KsHBoXh7e2JtbZ0u51T / \ nZl3q26xN / Zt1ubs7PPV7NM1SREQkE / P13U61apepV8 + DRo02cflySEaXJCIimYTCnIiISCYVHx / P \ nrFnx3LxZEyjA0aPt + eKLgxldloiIZBIKcyIiIplUXFwcUVH2qV6LibHMoGpERCSzUZgTERHJpOzs \ n7Kha9W8gGgBHx8M0bOiUsUWJiEimodUsRUREMrHZs5tRvPhPhIVBzZq5qF27UkaXJCIimYTCnIiI \ nSCaWLVs2 + vVrkNFliIhIJqRpliIiIiIiIiZIYU5ERERERMQEKcyJiIjIA02ePJ6LFy9kdBkiIvIQ \ numdOREREHmjo0FEZXYKIiDyCwpyIiMhLIDo6mjFjhhEaGkpSUiIfftgHBwc3vv76S6Kjo3FwcMBo \ nNBIaGsrVq8GMGPEx / v5 + tG79Ht98M4OkpCQGDRrGwoXfcvr0SfLnL8DkyV / i6upGnz49KF68JIcO \ nHSQyMoJhw8ZQunSZjL5kEZEsT9MsRUREXgL79u3BzS0HCxcuY / HiH6hWrRrTp09lwoQpfPfdEgoX \ n9uTatWssW7aKfPnyU6BAAQwGAwcO7KNBgzdp2 / Y9xowZTrly5alf / 03atGnPvHnfAGAwGEhKSmL + \ n / EX07TuQBQvmZfDVioi8HBTmRETkpRcZGYm / / yoADh06yJAh / TO4ovRXuHARDh7cx + zZMwkIOEJQ \ nUBDnz5 + jX7 / edO7clj17dnPtWgizZ8 + kWLES7N27G4CDB / dRu3Y9SpQoxZ07kSxZspBjx46yeLEv \ noaGhKeevXr0mAF5e3oSEBGfINYqIvGw0zVJERF56ERHh + Pv70bRp84wuBUgOl1u2bKJp0 + YcOnSQ \ nFSu + Z8qUL9N0zrx58 + Hr + z179 + 5i / vxveOONKhQsWJg5c3xTjomIiGDv3l34 + a1g9 + 4d5MiREzCQ \ nJ88rnDhxnGzZsuHunoMvvpiJq6tbqvNbWFgCYGZmTmJiYppqFRGRJ6OROREReenNmTOTK1cC6dy5 \ nLbNnzyA6OopRo4bSrl1zPvlk9Auv5264fBpJSUmP / HpYWBiWlpbUq9eQNm3ac / ToUW7dusWffx4D \ nICQkhKCgK9Sr15BOnboRGxtLSEgwFSu + BsDGjeuwsrKmXr03mTx5AgkJCVy4cP7ZLlBERNKFRuZE \ nROSl16tXXy5cOM + CBcs4fPgPhg8fyNKlfri6utGrV1eOHj1CqVIvbkGPe8NltmzZsLa2YdSooVy4 \ ncA4vr2KMGfMpAM2bv03t2vU4cGAf7dp1wMHBEV / fecTFxZEnzyuMGDEWGxsbTp06ycSJ47hy5TLm \ n5ubkyZOXyZMncft2DNOnTyMyMpLIyAgSExNxdnYmWzYLGjZshJ / fcl59tRKHD / / BX3 / 9xfTp3zB9 \ n + uf89dcZWrR4m65d36dgwUIPuALDC / usREReZgpzIiLy0jMajakeFytWHDc3dwA8PYsSEhL8QsPc \ n48LlsWMBlCxZGoPBgJOTM76 + S7l16xajRg1h + vRvsLKyZunShYwePYzg4CvcunWLZctW4eTkzNat \ nm9m / / 3eKFy9OaGgEX3 / 98MVKPvpoIJA86jdt2nTs7R0eePzMmXNTHjs7O + Pntzb9PxQREbmPwpyI \ niMh / 3L3 / C8Dc3OyF3wP2uHAZHBxMyZKlAahduy4Ax48f4 + LF8 / Ts2QWA + PgEwsKuMWHCVEaMGES / \ nfr2B5GDm6ur + xLVs3nyETz4JJCzMHR + fv5k3rw5ubtn / aSOedet2YzQaady4CpaWlo85m4iIpCeF \ nOREReaiFC79l8 + aNODu7kCNHTry8itGmzXsZXVa6s7W1JSoqKqPLeKj7w2VCynMbG5uUxxUqVOLj \ njycAMHXqRDZsWM / UqZNwcHAkVy4PgoKCuHPnDtHR0VSsWJEiRbyoVKlySp + 2b9 + SqVNnYDQmMWBA \ nH4oXL8mmTfs5f96PhAQPdu0yMn7893z11TvEx8fToYMfW7e2BQysWLGM779 / FysrqxfzoYiISPos \ ngJKYmEiTJk3o2bMnALdu3aJz587Ur1 + fLl26EB4enh7NiIgIEBwcRLt2zZk8eQLt27dkwIA + xMbG \ npns7R48eZfv2bSxatIJp02Zw6tRJDFn0VignJ2dKlixNhw6tmD17RoZf57OESx + fEhw7FsCVK4EA \ n9OnTH2dnF775Zj4RERE4O2dn0aLlJCUlYWZmxv79pppbOmq458KvXAnknXfe5fbtYSQkeNw9gtu3 \ nbQHw89vO1q0dAAfAnh07OrFs2fZnvWQREXkG6TIyt3jxYgoXLsydO3cAmDdvHpUrV6Z79 + 7MmzeP \ nefPmMWjQoPRoSkREgMDAy4wbN4mhQ0cyZsxwtm / fRr16DdO1jUOHDvHGGzWwsLDAwsKCKlXe4J7Z \ nf1nO2LHjH / h6 / / 5DXnAlqcOllZUV2bO7PvY9Li4ujBz5MR9 / PIK4uHgAEhISMDc3x9XVjbNnz / Dm \ nm7UJD7 + NmZkZc + fOZe / e3VStWo3mzd9m1ar1AMTGxtC3b09y5sxF9uyu5Mo1HisrX5KSbLh + / UMq \ nVkwOfPHxRlL / M8Kc + PhHr6gpIiLpK81hLiQkhO3bt9OzZ08WLlwIwLZt21i6dCkATZs2pX379gpz \ nIiLpyMMjD56eRYDkTZqDg4PSvQ2DwZDq3i3IwknuH7Nnb + P77 + NJTDTn3XcTGDy4QYbV8iTh0s9v \ nXaqvlStXgfnzF6c8b9GiMVFRUZiZGRgz5lPy5s1HixaNSUhIwMnJCTMzAxYWFhQpUpRDhw4SFxfH \ nwYP7KVOmHBcunGPKlAnMmjWeRYv + 4tKlq0RHf0rPnsv / OXcV / PwWs39 / J8BAuXILadv2zXT / HERE \ n5OHSPM1y4sSJDBkyBDOzf091 / fp13NySNxN1c3Pj + vXraW1GRETuYWlpkfL4eW3SXK5cOXbv3klc \ nXBxRUVHs2bMrw6cfPk8HDhxn6tTCnDnTnHPnmjJjxqts3Lgvo8t6qMGDP + LOnchHHnPt2jUaNVrP \ n0aNedOz4FZcvhxAbG4u1tTUXLlzA1taO06dPUatWXVavXklwcBC7du2gcuU3SEpK4tixo0yaNI6g \ noGVky7YVa + uklKmYtra2 / PDDW3z88Y + MHbsKP7 + G2Nvbv4hLFxGRf6RpZO7XX3 / F1dUVHx8f9u17 \ n8C88g8GQag7 + w7i7O6SlFMnk1L9Zm / r3xYqNtSNbNvOUz93e3gozs8R07wd395LUr1 + XLl3a4ubm \ nho9PMXLlcsuy / X3hQiiRkZVSnsfGFiAo6Gimvd6FC30f + XWj0UhiIoSFVSE21gczsxF07dqNhIQI \ nmjdvxrFjx / D0LMTly5dZunQBwcHB5MuXj7 / / Pk / 16q + zfPkinJwc + emn9Q9tw93dgbFjW6b3pUk6 \ nyKz / 30r6UP / KXWkKc4cPH2bbtm1s376duLg4IiMjGTx4MK6uroSGhuLu7s61a9fInj37Y88VGhqR \ nllIkE3N3d1D / ZmHq3xfvxo07JCYmpXzukZGxxMTEpXs / uLs70LhxS1q16khMTAx9 + vSgdeuCWba / \ ny5cvjIfHbwQH1wTA1XU / ZcrkzhTX + 7 / / bWDVqh9ISIjHx6cEAwYMpVWrJvj6LsXR0emBq462aNGa \ nhIT82Nntxs3tC8zNw8mevTEJCetZvdqf6OgoTpw4ycCBw6hVqw6jRw / D0tICOzt7rK2dWbhwBb16 \ ndWHlSn9q1qyD0Wjk3LmzKdN7JfPSz + WsTf2bdT1LSE9TmBswYAADBgwAYP / + / fj6 + jJ16lSmTJmC \ nv78 / PXr0YM2aNdSpUyctzYiICBAXF8fhwydwdXVk0aIVKa + n91YBcXFx / PzzXlxd7dm2bTV / / 32B \ nuLg4GjZsRJEiXunaVmZSuHBepk + / yXff + WE0GmjdOjvly7 + a0WVx8eIFtm3bwpw5vpibm / P555PZ \ nvHljyqyXkyePp6w6Gh8fT5cu7 + HtXYxs2bLh6BhHeHgcly / 74ez8A0lJSzAYzOjQoTO / / 76L3Lnz \ nUqtW8u / omjVrM2bMCF55pRtjxqxn5Mh6jBkznmnTPmPRIl8SEhKoU6eewpyISCbyXPaZ69GjB / 36 \ n9ePHH38kT548fPXVV8 + jGRGRl0ZERAStWn1HaOgerl79mM6d / Tl / fjmffPIZBQsWSrd2YmJiaNvW \ nn1272gLxNGhwmgULPsHc3Dzd2sjMatQoRY0apTK6jFT + + GM / p0 + folu39kDyfXDR0cnbFhiNRo4d \ nC7hv1dG7ihZ1p2xZC + LjV1GqlBmbNsWwYsVaNmxYT6FChejZs1 / Ksb / 9FsOZM39w5owd27bFcePG \ nMr7 + uhmffz7jxV6wiIg8sXQLcxUrVqRixYoAODs7p6xsKSIiaTdjxg4OHhyJq + sM7O1 / Y + 3aS3Tv \ nXjVdgxzAokW / sWtXZyB5gZVNm1qxfv0umjSpnq7tyNNp2LAR77 / / QarXWrRo / M + jh686ajAY6NKl \ nBl5e3ty6dYuff / 7moW0cOWIN2P3zzJJDh + wYMuQn4uKy8e67r1CtWon0uBQREUlH6bJpuIiIPF8x \ nMeaAGdevf4Cd3W6yZbtMzZr10r2d + / cOsyImJiHd25HHu7s5 / OHDh1i + fCkffvg + sbGxjB07An / / \ nVQB07tyOCxfOsWzZYjp0aMWZMyfZs2cX8fHxTJw4jtOnTzJu3Eh27Uq9mbednV3K3rB3ubqm3qQ8 \ nOPgKCxe2YdmyFvTuncDBg6ef7wWLiMhTU5gTETEB775bmNy5t2BufhODIQp7 + zDy5Xsl3dtp1 + 51 \ nSpVaTPLoTgKvv76UJk2qpHs7mcXKlcuIjY3J6DIeKjDwMp06dWP06E / 4668ztG37LgcP7vtnS4Lk \ n1aI9PYvSrl1Hbt68yaBB / Shc2JOAgCNUqFARL69iDB48glmzpv9zncn32ZUtW4GzZ8 / SuXNbtm37 \ nBYCxY1 / l9dcX4e6 + gcKF53DnzuspdVy79gb / + 9 + FDPgERETkUZ7LPXMiIpK + ypYtwqJF8PHH3cmf \ n / zVKlnRm / vxvUm0gnR5cXJzx86vFkiWrcHKyokWLxlhbW6drG5mJn98K6td / EyurzHmNdzeH9 / Qs \ nQkhIEAkJCVy5EkjevPnw81tLixaNqV69FnZ2dlSqVJk5c2YSEhJCdHQ0S5cuxNzcnBkzPic + Pp7Y \ n2Bj8 / NYC4OjoyKpVq1KtiFegQG7Wrn2XuLg4LlzITf36iUSlDNZF4eqqv / + KiGQ2CnMiIiYiKOg0 \ nxYvnYfz4oSQlJdGzZxcOHTpIuXIV0rUdFxdn + vZtkOWWv46OjmbMmGGEhoaSlJRIzZp1CAsLpW / f \ nnjg7uzB9 + uyMLvE + 928OH / vAY6ZMmcCpUye4du0anTt349dft / LxxxPImzcfAElJSQwe7M / Oneew \ ns4ulf393unat9ZA2LfHyKkyfPv9jwYJQYmIcqFnzBN26NX8 + FykiIs9MYU5ExEQ0bNiIhg0bAWBm \ nZsa8eQsztiATs2 / fHtzccjB16nQA7tyJZMOG9cycORdHR6cMri5txo4dz6lTJ5g1azrvvdeJO3fu \ nsGrVipSR2wkTFrNkSUfAEYAxY36mWbNbwMNXKR00qD49e0YQGxtH9uwlU7ZCEBGRzENzJkREMrmp \ nUzdRpcoWqlX7H99 + + 1tGl2OyChcuwsGD + 5g9eyYBAUews7PP6JIe6 + kClCHl + E6dupGQkEDHjq1p \ n374lBw78wt0gBxAUVIRLl4Iee0Z7ewdcXV0V5EREMimDMfV6xhkmK03lkdSy2lQtSU39 + 3z9 / PM + \ nevb0JDa2AAAODkdYtSqesmW9n3vbaenbjRt / YsWK7zEYDBQu7Mno0Z88cx11677Bli07n / n994qI \ niGDv3l2sW + dP + fKvsmHDer77bonJj8w9zurVe + nXz5OYmOStLHx8fuDgwcZERmql0qxIP5ezNvVv \ n1uXu7vDU79E0SxGRTOzMmZspQQ4gIqIkR4 + ufiFh7lmdP3 + OxYt9mTt3AY6OToSHh6fxjOkzKhQW \ nFoaDgwP16jXEzs6en35ai61t8hL9WSXMHT78FzNmnCEmxoIGDazo2DF5f8B3332d69e3sm3bYWxt \ n4xg4sDg2NjZERuofhCIipkxhTkQkE6tcOR8uLge5eTN5kZPcuX / L9Js3Hzp0gFq16qYEJEdHx8e8 \ n48U4f / 4ss2ZNx8zMQLZsFgwaNJw / / wxg4MAPcXfPkSkXQHmQNWt + ZO3aHwGIjIzEwyM37dt3Yt68 \ nbzhx4haRkaUICZnE3r2XWbmyHo0avc2BA / to164DBQoksXTpUj77zMiBA7Xo2PH9DL4aERFJC4U5 \ nEZFMrFIlHz777Hf8 / FZhZmaka1cPChZM / / 3l0pPBYCCTzOBPpWLF16hY8TWMRmPKKJ2XlzfNmrXK \ n6NKeSpMmzWjSpBkJCQl89FEv3nqrMYsW + dK2bS9atSqBi8tPuLgs4MaND4iNTcLJyRlf36WEhYXy \ n / vud8fVdir29A0OHfsTOnb / xxhs1MvqSRETkGWkBFBGRTK5p09dYtqw + S5c2oGbN0mk6V3BwEB06 \ nPN / wUq7cq / z66y + Eh98GSPlvZhAREUHLlj9QqVIIlSvv5vvvd2d0Sc / sq6 + mUb78qzg4OHLx4nl8 \ nfb + kUKH2ODquxcIiGIPhOtmyGahduy4AJ08ep1y5Cjg5OWNubs7bb7 / NkSOHM / gqREQkLRTmREQk \ nXRUsWIgOHbrQp08POnVqy9dff5XRJaWYMmU727d3JTKyMoGBTZg2LYbo6OiMLuupbdiwnmvXrtKl \ nSw + MRiMVKlRiyZKVDBw4DHv7jtjbV6Br1w04ONhgY2MD3D9imhlHT0VE5OlomqWIyEvqypVARo8e \ nypAho / D2Lpau5753TzyAFSuWsmHDegAaNWpCy5Zt0rW9J3X7tgX3 / h3z5s1cREREpAQeU3Dq1ElW \ nrFjKrFnfAuDjU4IvvpjMlSuBtGjxGo0aRRMWFkrevPlo0cI35X3e3sX56qtp3L59C3t7BzZs2EDj \ nxtoIXETElCnMiYi8hC5dusjHH49k5MhxFC7smebzrVq1h3XrIrGwSKBPnyKULVsk5WunTp1k48af \ nmD9 / EUlJRnr06EjZsuUoUsTric6dnnuc1azpxLp1J4iK8gGSKF / + GO7upnXP3OrVK4mIiKBv3 + TF \ nS7y9fRg58mM + / ngEcXHxAPTo0Zu8efOlep + bmxs9e / ahb9 + eGI1G6tSpTdWq1V54 / SIikn60z5w8 \ nd9oPJWtT / 5oGP78VrF37I / ny5ePYsWM4OjoyceI08ucv8ND3PGnf / vbbUbp1syM8vAwAhQqtYePG \ ncri4uACwcuVyIiLC6do1OXx8 + + 0cnJ2dad68ddov7Bn4 + / / Otm23cXSMY + jQ6plmtc0XTd + 7WZf6 \ nNmtT / 2Zd2mdOROQldvdvcw8ayVqzZhXTp88mPj6eAQP6kDOnBwEBhx8Z5p7U7t1BhIe3SHl + / nx1 \ nfv99Hw0bVnlgPUaj8YE1nj79N7NnHyc + PhvNmuWkVq20LfbyME2bvkbTps / l1JnW5s2HmTs3hPh4 \ ncxo3tqBbt5oZXZKIiKQDLYAiImLCgoODaNPmXcaPH0uHDq24du3qfcdMnTqRoKArDBz4IT / / vBYL \ nCwsmTpzXjaYmAAAgAElEQVTKpk0 / s2XLpjTXkC + fNWZmoSnPnZ1PUKxY3pTnpUuXYceO34iNTV5s \ nZOfO3yhVqmyqc9y6dYuuXU + ybFkr / Pya8eGHBg4ePJ3m2gQCA4MZPDiOnTtb8vvvzZgwwZv / / e + P \ njC5LRETSgUbmRERMXPJCJp / g4 / PgzcQHDx7B / v2 / M3PmXO7cucPOnduxtrZmypSv6N + / N7a2dlSp \ n8sYzt / / ee9U5eXINmzc7YmWVQI8eNhQoUCrl60WLevPmm43o3r0jAG + / 3ZQiRYqmOseOHcc4c6ZB \ nyvPQ0Cps3epHhQpPdl + dJNu1awcXL57nvfc68d13c7G1tcPK6hWSkrZjb59IZGR97O0Xs3OnB + + 9 \ nVyOjyxURkTRSmBMRMXE5c3o8NMjd6 / btW5iZmbNgwTIA7O3tmT9 / cZrbNxgMTJzYlAkTHjx9EqBV \ nq3a0atXuoecoVCgXtrbniIoq8885b5Ejh0Waa3vZVK1aLWVRE4PBgMEA5cp5Ym29mjt3kvvm9u1u \ nvPba2YwsU0RE0onCnIiIibOxsX7sMeHh0dSvf5bIyLxUqfIDCxY0xdr68e97Gg + 6N27t2l1cu3aH \ nd96pQM6cbg99b4kSRejXbwsLFvxNfLwN9epdoWPHd9O1vsfp1asLs2f7PvTrdeu + wZYtO19gRakF \ nBwcxcOCHlChRimPHAvD29qFhw0YsWDCPmzdvMXbsp1y4cJ7Tp0 / Sv / 8QAIxGKFDgFcqVS + L8 + d0Y \ njZE4OMzD0 / MTALZs2cTSpQsxGo28 / npVevX6MOVaW7Row549u7CysuKzzz7HxSV7hl27iIg8mO6Z \ nExHJ4kJCgrl924wbN2oQE1OerVs7M336tufaptFopF + / H + nZsyKjRjWnWbODnD8f + Mj39OtXlwMH \ nqnLgQCm + + qo5ZmYv9lfUo4JcsvTbIuFZXbkSSOvW77Fs2Y9cuvQ3W7duZvZsX / r0 + YjFixc8dGQ0 \ nf353Ro0qxy + / 1OWVV7JjMBi4evUqc + Z8zYwZc1iwYBmnTp1g587fAIiJiaFEiVIsXLiM0qXLsm6d \ n / wu8ShEReVIKcyIiJu5x + 7CFhd0iKeneiRgWREQ83x / / gYGB + PuXIinJDTBw5kwLvvsu4LHvs7S0 \ nxM7O7rnW9jB16ybfNxgWFsYHH3Snc + e2dOjQiqNHj6QcM3PmF7Rv35KPPurNrVu3AOjTpwezZ8 + k \ ne / eOtGnzLgEBRx54 / vTg4ZGHQoUKYzAYKFiwEBUqVASgYMHChIQEPfF5jEYjx44do2zZ8jg5OWNu \ nbk7dug04cuQwABYWFlSuXBUAL69ihIQEp / / FiIhIminMiYiYmIiIcE6dOk1UVBQeHrlZtGjFA4 + 7 \ ndu0aoaGhFC1amBw5OpKU5ASAq + teGjTI + 8D3pJcHbWFqNGb8yNajJde3ZcsmKlV6nQULlrFw4XI8 \ nPZMXa4mJicbb24clS1ZStmw5FiyYl / wug4GkpCTmz19E374DU15 / Hiwt / 72P0MzMDAsLi5THiYmJ \ n91 / RIz7y + / 8I8O89j + bm / 4Z / MzPDA88tIiIZT2FORMSEbN58hJo1 / 6BaNUfq19 / B4cN / 3XeM0Wik \ nf / 9VVKp0lddeC2LUqJ9ZtKgO77 + / gg4dVjF7dhJVqxZ / rnXmzZuXd94JwGC4ARjx9PyRrl1LPtc2 \ n04uPT3E2bFiPr + 88zp07i62tLZAcmGrXrgdAvXoNU43YVa + evG + bl5d3phnFMhqNPCBTA8lBrlSp \ nUhw5cojbt2 + RmJjIL79spkyZci + 2SBERSRMtgCIiYkK + / PIKly61BuD06aJMm7aC778vkuqY1at3 \ nsHx5Y5KSXAFYssSTGjUC + PTTRg88Z3BwEEOH9mfx4h / SrU6DwcCMGc2pXn0H169H8 / bb5cidO0e6 \ nnf95Kl26LLNmzWfPnl1MnPgxrVq1o0GDt1Id89 + Nzy0sLAEwMzN / rqNY / x1Ne9AU27uv3V3N8mHc \ n3d3p2bMPffv2xGg0UrnyG6lWwnxUGyIikjkozImImJA7d6xSPY + KsrzvmKtXo1KCHEBiYg6CgyOe \ ne23 / ZTAYaN68 + gtvN61CQkJwd3fn7bebEBcXy19 / naZBg7dISkri119 / oXbtemzZsum + jc + ft / 9O \ nqR0xYmyqr90N4w0bJof2Ll16PPDYmTPnpjyuU6c + derUT9XO7du3 + PbbxSQmJmJubk6NGrWpUaN2 \ n + l6MiIikC02zFBExIVWrRmIw3ATA0jKQGjXun0fXqFEZChZcl / Lc03Mtb7316OlzSUlJTJ48gfbt \ nWzJgQB9iY2PTt3ATcHcE6vDhg3Tu3JYuXdrx669badGiDQDW1jacOHGcDh1acfjwITp37vawMz1V \ nu8HBQXTo0CotpaebefN + o3LlE1SunEiLFquIiHjxfwQQEZEnZzA + 6C71DBAaql8YWZW7u4P6NwtT \ n / 75YRqORefO2cvFiEqVK2dKmTdUHHnfixAUWLjwFGOnWrQRFi + Z76DmDg4No3bop3323FE / PIowZ \ nM5yqVavRrl1L9e0L8DymuT6J / 37vhoff5vXX / yQ0tME / ryTRq9cPjBv34Om5knnp53LWpv7Nutzd \ nHZ76PZpmKSJiQgwGA + + / X + exx / n4FGTKlIJPfF4Pjzx4eibfe + fl5U1w8JMvc / 8y + vvvYEaO3E9Q \ nkB1Fitzm88 / rY29vn + bzXrkSyOjRQ6lTpwHHjh0hJiaGwMDLtG7djtjYOH75ZRMWFpZMnTodR0fH \ ndLiSf0VERBAefu99jWZERlo89HgREcl4mmYpIiL / WfL + + S7ikRUMGbKPzZvf488 / m + Lv34FRo35J \ n8zkvXbrI6NFDGTlyHM7Ozly4cJ6JE6cxf / 5i5s37Bjs7O3x9v6dEiZJs2vRzOlxFah4eualU6Q8g \ nue + dnf + gfn33dG9HXi6DB3 / EnTuRjzxm8WLfF1SNSNajMCciIvKULl26dyqMGZcvp21U7ubNmwwf \ nPoixYydQuLAnAGXLVsDGxgZnZ2fs7R2oUiV5pclChTyfaoPwJ2VmZsbChY3o08ePjh1 / ZNasKOrV \ n01YFkjZTp07Hzu7R3x9Llix8McWIZEGaZikiIk + 05L38q0CBcM6dM5K82EkCBQs + euThcezt7cmZ \ n04OAgMPkz18Ag8Fw3wbhd58 / bIPw9GBvb8 + YMW89 / kB5KURHRzNmzDBCQ0NJSkqkY8duODk58c03 \ n00lMTMTb24dBg4bzxx8H + PnndXz66WcAHDp0kBUrvmfKlC9p3vxtfH2X4ujoxP / + t4FVq34gISEe \ nH58SDBw4jLlzZxEXF0vnzm0pVKgwo0d / msFXLWJaFOZERF5y / 13yvk2b915Y2w / 6x52ZWeafNPLF \ nF1UZOXIpwcH2FCkSzqefNkzT + SwsLJg4cSoDBvTBxsbmkcdmknXL5CWwb98e3NxyMHXqdBYu / Jb5 \ n87 / h6tUQXn21EmXLVuDYsQA6dWqDlZU1Fy6c4 + zZ03h6ejF16iRy5MhBjx6diIgI54svpmA0JrF / \ n / + / Y2zswfPgYpk6dyLvvvknFiq9jaWnFggXLmDbtM7p160BsbAw1atSma9f3AWje / G0aNmzE7t07 \ nSUxM4NNPPyNfvgIZ + + GIZBKZ / zemiIg8F3fu3GH9 + p0cOHAsQ9q / ePEC27ZtYc4cXxYsWIbBYMbm \ nzRszpJan5eHhjq9vEzZurMOMGe8 + NoA9jsFgwNramilTvmLlymXcuRP5n9HR1Jt4a + RUXoTChYtw \ n8OA + xo8fy6ZNPzN27AS8vX24dOkSAMHBweTMmQtf36W89loVxo0bTUJCAqGh17CwsGDu3AU4OjoB \ nEBh4GSsrawA + + qg3CQkJNG78LufOncVoTAKgR4 / efPvtYhYuXM6RI4c4f / 4skPz / vLOzC76 + S2nS \ npDnLly / NgE9DJHPSyJyIyEvo2rXrtGu3nYCAd7G0DKFTp3WMH9 / 4hdbwxx / 7OX36FN26tQcgNjYW \ nV1fXx7wr67l3ZNTe3p758xffd4yf39qUxw0bNkrZGFzkecqbNx + + vt / z5ZdTSEhI4Pffd2Nubk6V \ nKm8QFxfLxYvnCAqyonPntkRFRXHz5g0OHz6Ik5MTderUT / VHh0KFPKlY8XUaNXqHgQP7smLFagCC \ ngq5w4cJ5ALZt28y6dWtITEzk + vUwLly4QKFCyfeQVq9eC4CiRb3Zvn3bC / 4kRDIvhTkRkZfQrFl7 \ nCQjoABiIi3NgyZLr9O59hdy587zQOho2bMT773 / wQts0Fdu2HWXSpEvcvGlD + fI3mTHjbaysrDK6 \ nLHmJhIWF4eDggLe3D0lJifz55zFCQoLJk + cVHBwcMDMzo3v3njRv3prExERat27KunVryJ07D9bW \ n1qnOVaRIUVavXkX16rWwtLQgPPw2UVHRmJmZYW5uxuXLl1ix4nu + / XYJ9vb2TJw4jri42JT3371n \ n1Nz8 + d0zKmKKNM1SRMTEzJnzNatX + 6U8 / + 67uU897Sg + 3px7p + 7Fx9sRHR2TXiU + kfLlK / Lrr1u5 \ nefMmkLxpdUhIyAutIbNKSEhg1KhAAgLacOlSE / z92zFlypaMLuup1K37RkaXIGl0 / vxZevTohL + / \ nH7t27aBz5 + 707z + EzZs34u + / CltbW5ydXYDkhXl8fEqwb99ecuTIec9Zkn / O5MiRk + 7dezF + / BgC \ nAy / Tv38fbtwIA6BChUoMHPght2 / fws7Ojhs3rvP773te9OWKmCSFORERE1O7dl22bfv3H / a / / rqV \ nOnXqPdU52rQpQt68d + 9Pi6Zu3T0ULPjkm4ynhwIFCtK9ey8GDPiAjh3bpPrH3cvu9u3bXL36yj2v \ nWBISYplh9Twb3ddn6ipWfI1Fi5azfPlq2rbtwIQJY / nss08pWtSL7t17Mm / eIjZu / JlOndrSvn0r \ nChYsxObN2zE3N0 + ZYunntxZLS0sMBgO1a9dl6tTp5M2bjpppW4KPTwkAGjR4k5Ur1 / LGGzVo27YZ \ n48aNplSp0g + pSveMitzLYMwky2KFhkZkdAnynLi7O6h / szD1b8Z4770WfPXVbG7evMEXX0xm9uzv \ nnvocp0 / / zdq1J3F2NqNLl1pky5Z65n16922vXl2YPfvBmwPfu5S5JK9Y2ajRjxw40BkAc / MQPvlk \ nH92710q3Np73927dutXYsmUHUVFRDB8 + iIiIcBITE + jevRdVq1YnODiIQYP6UqpUWf78MwB39xxM \ nmvQ5VlZWnDx5nM8 + + xQzMzMqVKjEvn17WLz4BzZsWM / p0yfp338IAEOG9KNNm / aULVueadM + 49Sp \ nE / ethLh37y6 + / vorrK1tKFmyFEFBQUyZ8iXR0dF8 + eUULlw4T2JiAl269KBq1eqcP3 + OSZM + ISEh \ nnqQkIxMmTOGVV / I + t8 / peXjSvk1MTMTc3PyJzhkdHY2NjQ2ffjqGY8eOMmHCZIoU8Xqm + vbsOcGm \ nTZdwdjbywQe1NH34Ken3btbl7u7w + IP + Q / fMiYiYoJo16 / Dbb79w / fr1px6Vu8vLKz9DhuRP58oe \ n7m6QMxqNLFmyg2PHYihUyIyePeu8sBpMhcFgYPbsKkyc + D3h4da89hp061Y3o8t6JlZWVkyaNBVb \ nWztu3bpFz56dqVq1OpC8wuG4cZMYOnQkY8YMZ / v2bdSr15CJE8cxbNgYihcvwZw5Xz9iJObfUZoe \ nPXrj6OhIYmIi / fr15ty5s7zySl6mTp3EN998S65cHnz88UjunmrxYl8qVKjIiBFjiYiIoEePjlSo \ nUIl161bTokUb6tVrQEJCQqa8P + vu3 + EfN0K1cOG3bN68EWdnF3LkyImXVzH27NlJkSJFOXo0gLp1 \ n61O6dDm + / jo53Do5OTNy5FhcXd24ciWQL76Ywq1bN7G2tsbOzo7Q0GsEBQVRpcobFCnixfz5swkN \ nvcawYaOfeEuR3347Su / eBsLCWgBxHDq0gCVL2jzwWuLi4pgyZTOBgZYUL26gT586GpUT + Q + FORER \ nE1SrVl0mTx7P7du3mDVrfkaX80Tq1n2DLVt20rlzf06cuILRaMHq1R0IDFxLs2avEB0dxahRQ7lw \ n4RxeXsUYMyZ58 + CXdY + pfPk8mDPnxa4w + jwYjUbmzPmagIAjmJkZCAsL5ebNGwB4eOTB07MIAF5e \ n3gQHBxEZGUl0dDTFiydPwatbtwF79ux8bDv / XQnx4sXzJCUlkjt3HnLl8gCgTp36rFvnD8D + / b + z \ ne / cOli9fAkB8fDxXr4ZQvHhJFi / 2JTT0KtWr18o0o3LBwUEMGNCH4sVLcvr0SYoVK86pUycwGAx0 \ n6NCV2rXrcujQQXx95 + Hq6kJAwFESExPp2fMDVq / 2Y / v2bSmfw + XLlzAzM2PTpp / x9Z3PvHkLyZ + / \ nACNHDuGDD7rj7p6D48f / pG3b9 + jWrRfHj / / JvHmzWLBgGRMnjqNy5arMmjWd6OhoRowY + 1TXsX59 \ nMGFhzf95ZsnOnWW5ejUkpbZ7DRiwjpUr2wDW + Ptf586djQwb9mYaP0mRrEVhTkTEBBUsWIjo6Chy \ n5MhJ9uymspy / ge3bt3HxYggXL27E3PwG + fI1Z9euzjRrBn / 9dZqlS / 1wdXWjV6 + uHDsWQMmSpVPt \ nMeXvv4rly5cydOiojL4YeUKbN2 / k9u1b + PouxdzcnBYtGhMbGwf8u0IhgJmZOYmJsfe9 / 967QczN \ nzUlK + vf53dUOg4KuPGAlxDjuv28v9Z0lEyZMJW / efKley5 + / AMWLl2TPnp0MGvQRQ4aMoFy5Cs9y \ n6enuypVARo / + hNDQa6xZ8yOLFq3g1q2bdOvWgTJlygJw9uxfzJq1iWXLVrJgwXxCQkL47rulfPjh \ n + xw7dgQzM3Pefbclr79ehfPnz9KtW8d / Apw7YWFhxMfHM3 / + Yt55pz6LFy9g166dGAwQH58AJPfH \ nwoXf4eNTnCFDRj71NVhaxpPcD8l9Y2d3E1vb3A889vBhZ8D6n3ZdOXDA1O4bFXn + tACKiIiJWrRo \ nBdOnz87oMh4rODiIDh1aAXD06BGcnEoABhITXYmOfhVr6wsYDAaKFSuOm5s7BoMBT8 + iBAcHp5zj \ n3j2mgoODMuIy5BnduXMHF5fsmJubc + jQQUJCgh95vL29Pba2tpw48ScAW7duTvlarly5OXv2NEaj \ nkatXQzh58jgAUVFRWFvb3LcSYr58 + QkKupLS5tatW1KmWVas + BqrVq1IOfeZM6eA5GCYO3cemjdv \ nzRtvVOfcubPp80Gkg5w5PfDxKUFAwGHq1m2AwWDAxSU7ZcqU4 + TJE / 98H / ng5uaGuXk2HBwcqVTp \ ndQCcnJwJD0 + + zyoqKor + / T9gxIjBAHh7F2PBgmU0bdqcdu06YGZmwMHBkXz58jNt2nQWLFjG0qUr \ nAVLaOH36FOHh4U99DQMGvE758guBSzg47OH99 + + kbCz + Xy4uqVfYdXKKfur2RLI6jcyJiJgIo9HI \ n6tU7CQmJon794nh6Zo7pX0 / HQP36Obl504 / Tp0tgb3 + ZJk2qAmBh8e9f3ZP3kkpIea49pkzP3Xub \ n6tVrwNChA + jYsTVeXsXIn7 / gfcf89 / mwYaOZPHkCZmYGypQpj52dPQClS5fBwyMP773Xgvz5C + Ll \ nVQwAT88iFC3qRdu2zciRI1fKSohWVlYMHDiMgQM / xNrahmLFfFLa6NSpGzNmfE7Hjq1JSkoid + 48 \ nTJ78Jdu2beF / / 9tAtmzZcHV1o0OHLs / 3g3oKNjbJo1QGg4H / rl9397rufh + VKlWa + fNnAwaioqI4 \ nceJPbGxsAfj + + 0V07fo + FSu + RsuW73DjxnUAkpKSCA8Px87Onty5c3P16lUSEhIxGo2cO3c2ZUps \ npUqvU7HiawwZ0o8vvvgaW1vbJ74Gd3dX1qx5m + PHz5AzZ3by5Cn50GNHjCjM8OHLCArKQ5EiFxk5 \ nsuITtyPyslCYExExEYMHr2bp0rdISnLH13cj8 + dHU65c0Ywu64kkJiYSFxfLtm1bSEhIYM2aFVy8 \ neIEJE4Jo3boRFy6cz + gSJZ1t3rwdSB4RGjt2PAMHfghAYmICc + d + TcOGjbC1taV163cZO / ZTmjRp \ nxpdfTqF7947Ex8fRvXtPqlatzqhRQ7lx4zoDB / blypVAqlWrkXI / 5b0edu9WuXIV + P77VQB8 / vlk \ nvL19gOSgN3jwiJTjbt68we7df / DWW415771O6flRpLtSpcqydu1qGjZsxO3btwkIOEyfPv1SfR95 \ ne / vg5OTE2LHDyZXLAw + P3ERGRmIwGIiJicbNzR0LCwu8vLw5cuQQnTq1JSwslLJlywMwZsx4OnRo \ nxaBBHwIG6tSplxLmDAYDNWrUJioqimHDBjBt2gwsLZ98CqSVlRXlyj08xN1VuXIxfv3Vi / Dw2zg5 \ nldXiJyIPoDAnImICwsNvs25dXpKS3AG4fLkhixevxMPDnoEDP8Tb24czZ05RoEAhRo8eh5WVdQZX \ nnNqlS39jZWWFv / 8GOnRoRadObXBxceGDD / rh4pKdixcv8GT / TtMeU8 / Kz28Fa9f + iJeXN6NH3x + G \ nnrcrVwIZP34Kw4ePoVu3DmzdupnZs33ZtWs7ixcvoECBgimrS / 700zpGjx5GnjyvkC2bBYmJiXz6 \ n6SSyZbPgnXca0Lhx04cuTDJ58nhatWpHgQLJI4Dr1 / uzceNPxMcn4OXlxTvvvHvfe7ZtC2DQoNsE \ nBpYlb97DTJ3qRK1aD9vnLOPc / X + / evWaHD9 + lE6dkleB7N37owd + H + XIkZOPPhpE / vwF6NKlHS4u \ n2ZkxYw67dm1n9OihODg4Ur58BaKiopgxYw6 + vvNSRtk8PHLj4ZGbKVOmkytXrpRz3hua33qrMW + 9 \ n9eSL9AQHBzF0aH8WL / 6BU6dOsGnTBvr1G / TAY + / druTuxuQicj + FORERE2AwGDAzS0r12t2VwC9f \ nvsSIEWMpUaIUkyZ9wurVq2jT5r0MqPLh3NzcU / az6tdvMH5 + K5g0aVrK18uWLZ8yIgCk7CMG4Oe3 \ nLuWxt3cxZsyY8wIqznrWrFnF9OmzcXNzT3ktISHhvv0FnxcPjzwUKlQYSF7Ap0KFiv88LkxISBCh \ noddSrS7p6urGhAlTOXHiT44eDcDW1g5IXvTk8uW / HxjmkpKS7lscp2XLtrRs2faRtc2YcYXAwOT7 \ nOi9fzs3MmT9kujDn4ZGbRYv + vcevd + + P6N37o1TH / Pf7KGfOXHz22SfExcXx5ptvp4w4Vq1aPWV7 \ niHt16dIj1fPFi39IeZyYmMjnn2 / mr7 + ykS9fLMOG1cfCwuK / p3hi3t4 + KaOkIvLsFOZEREyAg4Mj \ nLVtew9f3EnFxr1Co0Dq6dfMGkv / 6XqJEKQDq138TP78VmSrM3bhxnRs3rtO370Ag + d6 / Jxld + / HH \ nPaxZE4GlZSK9exemfPln26BYYOrUiQQFXWHgwA + 5ejWEKlWqERoagqtrDt5 / / wM + / XQM0dHJi0sM \ nGDCEEiVKpSxz7 + zsct92ESdPHmfGjM + Jjo7BwsKCGTPmYGlpyZw5X3PkyB9cv34do9GIk5Mznp5F \ naNy4KWFhoXTs2AZnZxccHR2xsLBgwoSP8fEp / s / m1dm4ciWQrVt3p7Q9f / 5sjh37N8j5 + a0gLi6O \ nL7 + cyooV3zN9 + mzq1n2Dd95pxsGD + xkwYAjz5n1Dnz798fYuxv79v + PrO4 + 4uDjy5HmFESPGYmNj \ nw + zZM9m9eyfm5uZUrPgaMTGpQ0VMzLOHlMxk7NjxT3zsnj0n + PXXS3h4WNCpU8379o3r1WsSf / zx \ nFwZDEnv3Fuf69RiOH59OixZt2LNnF1ZWVnz22ee4uGTnypVAxo0bRWxsDFWqVMPPbwVbtuxIdb57 \ nR94OH / 6DGTM + B5L / cPX118nbrTxsuxIR + ZfCnIiIifjkk8ZUq7afS5f28 + ab5ciVy53g4KBUwehJ \ ng9Kz6tWrS8rm308qe3ZXkpKSUhar2LJlE6VLl3nke3bsOMawYTm4fbs + AH / + uZYNG9xwdTWVbRgy \ nl8GDR7B / / + / MnDmXVat + YM + eXfj5 / cDt27HExsbw5ZezsLS05PLlS4wbN4pvv10MwNmzZ + 7bLsLb \ n24exY0fwySef4e1djKioKCwtLfnpp7XY29szfPhYRowYhI2NLRMnTsXOzp5Ro4bi4ODAokXL + fnn \ ndfj6zqN27bqp / l + tWPE1 / vrrTMrz06dPsnz5avbt28vcubM4diyAFi1aM2fOTD76aCBVqlQDICYm \ nhuLFS9CnTz8gOQwYDAZu3brF4sX / Z + 8 + A5o6uwCO / zNI2MsFooKigoLgrnsWt7Yqjrq1asW6xf1q \ nnbgHWndFcSuu2rp3XXWhOHHjYIlMIRAgyfshEkGw1bo6nt8ncnPHc29Sm3Ofc88JwN9 / CUqlMevX \ nr2HLlg20adOOkyePs3HjdgBSUpJJTT3F9evhpKc7oFA85csv / 1tFdvbvv8SQIabExbUDErh6dQcL \ nFngb3g8Le8idO7d58mQ7IKNgwUlcvnwfrTYNd3cP + vbtz5IlC9m9eyfdu3 + Lv / 8cOnToRMOGjdi1 \ na / ufHn / z5vUMHz4ad3cP0tLSDDN + r7cruXr1Ch4ef / xvhyD814hgThAE4R / kyy9zV3OLjo7i + vVr \ nuLuXe6tA6X28ayAH + h / XxYo5snPnVmbMmIyTUwm + / tr7D7c5dSqcxMR2htcPH9bj7NkztGhR652P \ nL7ySVQGxVq06LwtWqMnIyGT + / Jncu3cXqVTK06dPDOtntYsAXraLiMDU1Ix8 + fLj6qoPzrOesbpw \ n4Xfu37 / Hrl3b0Wgy0Wq1PH36hCpVvuDu3VAKFCgE6GeP586dkSOQk0gk9OjRmw0b1tK9e0dUKhVK \ npZL8 + QsglUqxtrYhMjKScuWyUh9fbSuVSqlXr2Gu87xx4xphYQ / o109fjTIjI5Ny5TwwMzNHoVAy \ nffpkatSoTc2atfH1bULRoqe4ceMM7u4WtG / f5MNd9H + AnTtjiYur9 / KVNYcP26FWq1EqlQBcunQe \ nne4pxYq1BUAiUWNsXJSMDCNq1ND / N + niUoaLF88BcOPGNWbMmAeAl1djFi / 2 / 8PjlyvnycKF82jU \ nqKibZbUAACAASURBVAl16zagQIGCQO7vX1RUpAjmBOE1IpgTBEH4h3vXQOl9eHnV5tChk + + 0jZ2d \ nvaGa4NtydDRBKo0xFHyxsrpJmTJF3mkfwptlL5CzZcsG8uXLz / jxU9BoNDRoUMPwXu52EZo / LFQz \ nbNhIHj9 + RGxsLH379s + 2rYyAgPWG16amptSt24Dffz + DlZUNgYGb0Wq1SKUSAgM3G1LwALy8mhAa \ netPQqsLWNh / lynkY9qVQKN84G1258hdMnDgt1 / KVKwO5ePE8x48fYceOrfj7L6VDh9w3CqZNm0jN \ nmrVzBYvva9Wq5Ziamv1t0qGNjDJyvFYq03I9S9mkiRcnT5bhwYPCFC0aycyZbowYccHwvlQq + ctt \ nQ7p06UGNGrU5e / YUPj7fMm / eopfjyv39EwQhJ9E0XBAE4R9OJpMxfvwU1q8PYurUmYa76R / H26dw \ nqtVqZs3ay6hRB9m79 + I7HaVTpzr07r2fYsV2UapUEOPGxeHs7PSOY / 37yN44HWDjxnUEBKz4jCN6 \ n5dixw8TFxQGwf / 8etFp9oZ3ExARu374F6J9vOn1aH8QXK + ZEbOxzQkNvAtC2bQvi4 + OoWrU6O3Zs \ nw9OzIseOHebmzeukpaWRlJSIu7uHofn3wYP78PSsAOgD / axjnDr1G5mZr3oLJieraN58J + XLn + bX \ nXx8QHa0fo6mpKSkpKX94ThKJBDe3cly7FkJ4 + FMAUlNTefLkMampqSQnv6B69ZoMHDiMe / fu / OF + \ n3tW0aRM5fvwIgOFavmm / Pj5 / 3MNu7dqcM + F / tv5fNWCAG6VLBwHxWFhcoHdvqaFgEUClSlUJCbnI \ n + vV1uXjRjW3b6mFnZ / 7G / bm5lePYMf01OHz44BvXyxIe / pQSJZzp3Lk7rq5lefz4kahaKwhvSczM \ nCYIg / AMdP36V48cjMDdP5F0CrE / pu + 92sHdvD0BBUNB15sw5S5s21d9qW4lEwtSpXzNlysd9BvBz \ n + TznlD2t8dVSR8fiXL58iR49OvHFF9UNjaWtrKwNqZTZyeVyJk + ezvz5s1Gr1cTFxZKRkUnLll8T \ nGRnBlCnjSU1NZeDAfjg4OODqWpYhQ0YyffokNm5ch42NjaG8fatWrRk9eniuYwPcufOCq1e7AaDT \ nXWbnzkf06KHfZvjwgRQoUBB / / 6VvvJbW1taMGzeRiRPHkp6un3nq27c / pqamjB49nPT0dEDHwIHD \ nDNvs2 / crmzdvQCKR4OxcEplMxpUrl9myZQOxsbH07z + IevUa5ijeATBv3kzKlHGjadMWHD9 + hOTk \ nZNauXU3nzt0wMzNnxYolaLVarK2tWbBA / 3dY2APkciPat / + K9u2 / wdu7Y65zWLduTY6m5X8lzflt \ nuLo6sXevDWfOnMfZ2Z5SpRrkeN / JqTh9 + vjw7bedSUhIxMTEhNmz / XOlymYZNGg4kyePZ9261VSt \ nWg1zc / M818v6MyhoE8HBF4mJeUbx4s5Uq1aTa9dC3rJdiSD8t0l0WQn0n1lMzIvPPQThIylQwEJ8 \ nvv9i4vP99H7 + + Ry + vvlITKwAJNGhwzYWLWr3p9u9q7w + Wy + vOrmq0uUlOTmZypWvExfnZVjWtu12 \ nli5t9MHH + U + Qvb8WwKZN60lNVeUqBf8pZAUsRkYyHB1LIJPJMDU14 / btmzkCluxjzh68JCYmMHHi \ nOJ4 / j8Hd3YMLF84RELCe6OgoRo8eTrlynty / f5fZsxdy9OhBjh07THp6BnXq1OPbb78jMjICX99B \ neHhU4Pr1EAoUKMj06XNzzSh7eR0mJKS14XXFijvYv9 / r9dP5YB48uM + 4cSNYvnw1lpZWJCUl8eOP \ n80lLS2Py5OmEhT1k9OhhbN68M8f12LfvV378cT5KpTEVKlTit9 + OUbKkC6AlJiYGlUpFQMB6IiLC \ nWb58MTY2Nly7FkKxYo7cvXuX7dt / oWPH1hQv7kxqqgqNRsPw4WM4c + Ykmzevp0QJZ0qUcGb8 + CmG \ nNGeVSsWYMb68eJGERpNJnz4 + 1KpV13Btv / iiKhcuXHzjtf2rOnf2fqv2Fmp1miGV9 / DhAxw5cihH \ nK5I38fObRI0atT54Wuu / jfj / 7r9XgQIW77yNmJkTBEH4h / nllwQSE798 + cqS48cLkZ6e / rKgxd + D \ nsbEx5uYveJm9B + gwNVV / ziF9VjKZDK321b1TtTrts4zjwYP7rF0bwPLlq3F2LsL9 + + H8 + ON84uJi \ nWbo0wBCw / NGP6dWrV + LpWYEePXpz9uwpfv31Z44evcbUqc9QKp8RFVUcf / 9uPH4cxtOnT2jduh2h \ noTe5fTuUkJDLFCxYiKdPnzBp0nRGjRrHhAljOHHiKI0aNc1xHHf3JEJC1IASSMPD449TK9 / GihVH \ n2b1bg1yuoU + f / DRvXtnwXnDwBRo08MLS0goAS0tLAGrX1vdjc3IqbkhHff161qlTDw + PCtSsWYff \ nfjuGhYUFs2bNZ8eOIJYtW4SdnT0REeE8eHCPdeu2snfvLxgZGXHv3j2srKyRy40oV84TH5 + BaLVa \ n0tLS8PQsz44dQaxevTHbEfVTVUqlkunTZ2NqakZCQgL9 + vU09I17 + vQJCxf6M2jQyDde278ir / YW \ nERHh2NnZM3iwL3Pm + BEdHQVAs2at + PnnHcTGPkcikWBnZ59rBjL7LGjJkqX43 / 8mAXDlSjBz5 / 5I \ nYmIKtrZfMnlyGzw8Sr73 + AXh30oEc4IgCP8wSmXOYgXGxrmLFXwsb5seKJfLGTzYhBkzDhAbW5SK \ nFS8wYkTtjzy6vy9b23wkJMSRlJSIsbEJZ86colq1Gn + + 4Qf2VwKW14WEXMbPTz / LUr16LSwsLFm6 \ nNJKIiEYUKbKWsLChzJ + / merV73LhwjnOnTtLWloaFhaWPH36hIIFC2Fv70DJkqUAcHFxJTIyItdx \ nZs5sgaXlDsLCFDg7pzNmTPP3OvcDBy7i51cWlUp / 3Hv3juHuHo6jowOg / 27nlayUvTF21vsymRyd \ nTmu4nrGxz4FX17NWLX3bhEKF9FUhs5Qp44adnT0Acvmr / RobG3PkyEGUSiW1a9ejVKnSf3guOp2O \ nZct + JCTkClKphOfPY4iP139u9vYOuLq6EhPz4o3X9q / Iq73FkiU / oVAomDhxHO3bd8LDozxRUVH4 \ n + g5k / fogVq1azsWL51m0aDkpKcl06tSW1q3b8ehRmOGmgqWlFS9evDCc1 / nztzh / fgtGRgmkpfkw \ nZEgZDh50 + mT / xgnCP434L0MQBOEfZsgQD65f38KtW7WxsrpHv37KXA1 + 35dOp0OlUuVYlpiYYPix \ n + ja6dq1FixZxPH8ei6Nji7 / VzOGnJpfL6dGjN336dKdAgYI4ORX / LM / N5RWwqFQqFi9ewNmzp7lz \ nJxS1Og21Oo379 + 8RERHOt992RSKRYGGhT / 9Rq9WMGeOLTqfDwaHIy + + KEnv7YchkyRQr9jVPn8YR \ nF1eBLl16oFAoCA29ydChI4mPj2fq1AnExETTp083Bg0ajlQqQ6PJPWurUCiYNKnFBzv3K1eeo1LV \ nN7x + 9qwa588fNARzFStWYexYXzp27PwyzTLxjfuys7MjLOwhVap8gVqt5tKli4aiLoAh8Chb1h2t \ nVmsIqN4UkJiYmDBmzETu3buNn99EOnToTJMmbw5eDx7cR2JiAgEB65HJZLRr1wq1Oh0AheJVkPim \ na / s + cre3gIsXz / Po0UPDOiqVitTUVCQSCTVq1EIul2NlZY2NjS1xcbG5bipkfbckEglSqSs6XT7S \ n0 / Mhkz3n3r1SPH8eYwiCBUHISQRzgiAI / zClShVjzx5bQkJu4 + hoR5EiFf58o3cQHHyXUaNuEhFh \ nR / Hi4fj7V8XKSsnAgd / xzTdd32lfNja22NjYftDx / VN5e3fMs8jFp5Q9YClQwMIQsDx / / pw2bdrh \ n7u5B3bpfsH37Vo4cOUihQnasWrWOn35axt69vwD6oL5OnfqMGvU / Jk36Hy9eJFGrlopDhzIBHVFR \ ni + jVaytXr / 7C06dPadasJQAxMc + YP382LVp8RUzMM6ZMmYWv70CaN / / qk5y7h0c + jI3vk5bmDEDB \ nguepUuXVDFjx4iXo1q0XAwb0RSqVUbq0C / B6wQ7934UK2VG / / pds2bKJxMR4KlWqApArALSxsUGh \ nUDBu3AiSk1NQqZKz7evVepmZGVhaWtKy5dekp6u5e / c2TZo0Ry6X5 / lMWkpKCjY2tshkMoKDLxIV \ nFfkBrtC7yd7eAnSsWBGYYxYzS / YZSKk0q71F3rOgAHZ2MuAFYIFEosPR8QH58n28ZyUF4Z9OBHOC \ nIAj / QObm5tSsWemj7HvKlFBCQvT9r2JiYMqUDaxZ04pNm3Z8lOP9W92794S5c0NQqRR4eRnTpUud \ nzz2kHAGLQmFEiRKlkEj0lSvd3fW92 + RyI86d + 53Hjx + h0Wjo2bMTKSnJpKenk5KSjEKhJDo6iq5d \ n21OihDNyuRFjxjQhNHQLyclS5sy5TseOfWnbdjd16tQnMHAVarWaO3dCCQsL4 / HjMCIiwhkzZhgq \ nlYrMzIxPMkvZtGkVRo06xC + / hGBkpKF3b1ucnIq8tk4LmjZ982zgwYMnDH / 37z + I / v0HsW / fr2za \ ntI4tWzZy + fIl6tf / EjMzM8N6MpmcgIANBAdfZMsWfe + 86tXrk5qaZgjounbtxZgxw5DL5Ziamhme \ nH2vVqjU9enyDi4sr48dPMVynRo2aMGrUMLp374iLSxkcHYsbjvf6tfwU17ZKlWoEBW2mUyf9zZ67 \ nd + / 8QaqoJI9Z0CTDrH + zZp7IZDs5f96CjIxMZs4snmeQKAiCngjmBEEQhBxiY01yvI6LM3nDmsKb \ npKWl8d13l7l2rTMAx4 / fwcLiHF999cVnHtmrgCWrIl5kZAQDB35neH / WrPls374VZ + dSLFuWsxR + \ ncnIyUqmUefN + BPT9wZ48eYKVlTVFixakZ89xVKz4qqhImzbe2Nracvv2LYYOHUnz5l8yfPgEbGws \ ncXJy / DQnnM3333vx / fcfdp9vGwBWrFiZChUq4eu7nY0bK5OZaU3Dhv1IT09 / 4z58fAbi4zMw176s \ nrKxzfTZZAgM3G / 7 + 8E3J825vMWSIL / PmzaR792 / QaDSUL18RX9 / RudbLktcsaFa7CplMysyZ + iqm \ njRpNoUaN3O0xBEF4RQRzgiAIQg6enomEhmZVEUyiQoXPU3nxn + zhw0dcu / YqqElNLc3Zs1f56tNk \ nFL6z6Ogorl + / hrt7OQ4d2o + bmzu / / LLLsCwzM5MnTx5TvHgJLCwsCQm5gqdnefbv30OFCvoZYp1O \ nx9Gjh6hYsTIhIVcwN7fA1PTVDFVaWhrp6fZ07HiS1NSG9Oz5K126lKJUKZfPddqf3Jkzl9m4sS6Z \ nmfqZtCNHerBq1W58fJq8975TU1NZvvw46eng41MTC4u3f771bQUF / QyQq6WGlZU1kyZNz7X + 6 + tl \ nteaAvIPg778fTGamxvA6 + 0yoIAh5E8GcIAiCkMPcuS3Jn38Hz56Z4 + SUyrBhzT73kP5x7O0LUqjQ \ nTaKjswIVFfZ / 4 / oNxYo5snPnVmbMmIyTUwm8vTtStWp1 / P3nkJycjEaTSYcOnShevATjxk1kzpzp \ npKWl4eBQxDCjIpFIUCgU9OrVGY1Gw5gxEwzLJRIJS5Yc49q1lRQs6Iel5WT27UtBo3Fl6tQZn / PU \ nP6m4uBQyM / NnW6JEpXr / NMiMjAw6d / 6ZU6d6AnJ27 / 6ZdetcKF7c4b33 / alMnvwrGzYUIDNTQbNm \ nR / H3b / vBCzsJwr + RaBoufHSiueW / m / h8 / 51WrVpOwYK2tGz54ZuR / 1cEBf2Ov38cycnG1KwZy8KF \ nbZDJZJ97WAbZ0yyzNzT / qwYO / I4BA4bi4uKa5 / tTpux / rbl9JDt33v5oz37 + HalUKtq23cOlSz0A \ nKSVK7GLTJtf3DrqOHz9P + / buQCHDsqFDtzJmzPv1l / Px6cXSpXmnc35IZ85coX17O9LTS71cksDc \ nuSfo2rXBRz / 2P5H4 / + 6 / l2gaLgiCIHwQn6Ns / r9Nu3bV8PbWodVq / 1ZBXF4 + 9uedmJiIVhuDtfXP \ nJCR8BWipWnUvlSt / uLzTXbu2Y2xs / Icl / T83U1NTNm1qxJIlW8nMlPLNN27vHMidPHmcokUdcXJ6 \ nVfTEzMwYmewFGk1WMKdBofjr9 + qzKmh + ikAO4NGj56SnV822xJqYmPRPcmxB + KcTwZwgCIIAQGDg \ nKvbv34ONjS0FCxaiQAGbzz2kfzyJRPK3D + Ts7QvnKJrxVy1atDzP5bGxcXTocIyrV / sBV3F0nEKr \ nViUYPLgJSqXyvY8LoNFoOHBgzycLPt6HtbUVY8f + 9YDzt9 + OU7NmbZYvX8yzZ9Gkp6vx9u5Ihw53 \ nOH + + LQkJbSlY8ABhYY5cv16UZcsWER0dxeDBvtSqVQeNRsOyZT9y5col0tMzaNOmHV991Ybg4Iv8 \ n9NMyLC0tefz4ERs3bsfLqzaHDp0EYP36NRw6tB + JREr16jX57rvv2b17J7 / 8spOMjEyKFCnC + PGT \ nUSqNmTZtImZm5ty + fZPY2Fj69x9EvXoN33hOjRtXwsXlZ27fbg9AkSKHaNYs7xleQRByEsGcIAiC \ nQGjoLY4ePcSaNZvQaDLp1asLlSt / 2P51wn9TQMDvXL3aHX0lxPI8elSI2rVv5tmAPjU1lQkTRhMT \ nE4NWq6F79944OBThxx / nk5qaipWVNePG / UC + fPkZMKAvpUu7EBJyBS + vxlSpUo1Nm9bzzTddCA9 / \ nyrx5s0hIiMfY2JhRo8ZRrJgTR48eZs2alUilMszNzfnxxxWf5Bps3LgWhUKBt3dHFi6cy / 379 / D3 \ nX8qlSxfYs2c3TZs2Z9WqFaSnpxueQzQxMWHp0kWcPn0SmUxG1arVqFu3PqdPn + TKlcuYmJgwY8Zc \ n1Oo0 + vbtgYNDUaTSNLp31zJt2lG8vBoxfvwoChQogIdHeaZNm0jjxk05c + Y0L14kMWrUOGrUqE3 / \ n / r2pWrUaAHfv3mbduq3ZGnTrZ2zPnj3N6dO / sWJFIEqlkqSkJADq1WtAq1b6ypMrVy7l119 / pm3b \ nDgDExcWydGkAYWEPGT162B8Gc7a2NgQGlmPp0s1oNDI6dXLC1dXp43wYgvAvI4I5QRAEgatXL1On \ nTv2XMyVKatas88amvoLwrgoXHoBcHolEkk5CQkugJF5etWnd2puzZ0 + TL19 + evf2YcaMyTx79owJ \ nE6ZQq1YdkpIS6datA7a2 + dBotBQqVIgVK5bQuHEz7t69Q3R0FEZGRnTs2IV69arRr98AAIYNG4BM \ nJkOhUGJv78DcuTNp2LAR / v5zsLd3oFixIgwbNuqTnb + nZ0U2b16Pt3dHQkNvkZmZSWZmJiEhl3F2 \ nLklgYAALFizB2NiY9evXsGXLBtq0acfJk8fZuHE7ACkpyZiZmVOrVh1q1qzNvXt3GTt2BOHhT5BI \ npIwYMZbvv + 9NRMQ9lEolFhYWZGRksHz5GnQ6HQ0a1CAuLo7SpUsTGnqLSZP + h5NTcVJSUnj69Aky \ nmYwyZdyyBXKvXLx4nubNWxlmUrMC8fv377Fy5VJSUpJRqVL54ovqgH5GunbtugA4ORUnLi7uT69R \ niRJFmD27yJ + uJwhCTqJMkCAIgkD2 / lF6IpATPoxvv61OvnzuPH68jcePAyladC3ly5ciLS2NSpWq \ nsm7dVkxNzVi1ahnTps3C1NSUmTOnEhJyhaCgTSQmJr68saDj4MF9PH36BIDUVBU + PoMMwU7Wd / jE \ niWNERIRjZGSERAJ37twiNjaWevUavOyvVwC1Op19 + 379ZNfAxcWV27dvoVKloFAocHcvR2joLa5e \ nvYJSqSQs7AE + Pr3o2bMT + / fvJTo6CjMzcxQKJdOnT + bEiWMolcaG / V25cplNm9axYMFitFotOp2W \ nKVPGo9FoiI2N1V8NiQSpVEpw8EWkUikajYbq1WsAMGrUOLRaLT / + uIKtW3 + mShV9 / 0Nj41c9Jb29 \ nWxpu6EgkEvK6t + PnN4nhw0cTGLiZXr36kJ6uNryXvdG3uDEkCB + PmJkTBEEQKF + + AtOmTaJLlx5o \ nNJmcPn2K4sU7fe5hCf8CtrY2tG0bh6lpfaRSCWq1mvBwfbCVNZPj7FwShUKBo2NxAgM307Ztc1au \ nXEJCQryhOItUKiVfvvz06NEbAFNTMxwccs / kBAdfwNTULNdzgJcvX + LBg / vExj4nMTGRkJBgWrb8 \ nGktLq498BUAul2Nv78Devb9Qrpwnzs4lCQ6 + QHj4U + ztHahc + QsmTpyWa7uVKwO5ePE8x48fYceO \ nrfj7LwUgIyMdqVSKkZERJiamqFQqRo36HyNHDmX9 + q0A6HTg4lKGSpWqvHytQ6fTUbVqdXbs2IZC \ nocTMzJzHjx9RsGChXMfOXhSnSpUvWLNmJY0aNUGpNCYpKQlLS0tSU1XY2uYjMzOTAwf25rkfQRA + \ nLhHMCYIgCJQu7UrDhl706PENNja2lC3r9rmH9LcTGRnB8OEDcXf34Nq1EFxdy9K0aQtWr15BfHwC \ nP / wwhTJlxHV7XXDwRa5fv8q2bdtRKpUMHPgd6elqZLJXP0EkEglyuRHPnz / HwsICiUTKN990ZebM \ nqVhaWjF8 + Jgczcvj4 + Py7EGm04GRkQJrayuOHTtM / fpfotPpuH / / Hn5 + kxg2bCTVq9di375f + fHH \ n + Tx79uyTBHMAnp7l2bRpPWPH / kCJEs4sXDiPMmXK4uZWjnnzZhIe / hQHhyKkpqby / HkM + fMXIC0t \ nlerVa1KunCcdOugrf5qampI / fwG0Wh1t2jQnNTUVY2MT0tPTSU1V4ec3iUePHpCc / IKrV0M4fvwI \ nz5 / HALBq1QocHIrg5laOkyeP07mzNzY2tigUCsLDnxIfH8fRo4dp0OBLQF / VslevLmg0mVSp8gXf \ nftsNIyM51avXom / f / vTu3Y + + fXtgbW2Nm5s7KpXKcL7Zg0FRHVcQPh4RzAmCIAgAdOvWi27dehle \ ni15GuYWHP2Xq1FmMGTOB3r27ceTIQZYuDeDUqROsXbua6dPnfO4h / u2oVClYWFi8TCd8yI0b19 + 4 \ n7oMH91i82J + 0tFTWrPmJFi2 + 5vr1EJYuXUhKSgppaSo6dOiMo2PxPLeXSPSzSJcvX2T37p0EBgag \ nVqtp3LgpqakqduwIYunSRURGRlCokB0lS5bKcz8fg6dnBdatW427ezmUSmOUSiWenhWwtrZm3LiJ \ nTJw4lvT0DAD69u2Pqakpo0cPJz09HdAxcOAwABo2bMS0aRNJS0tl6tSZuLiUoX / / 3vj5TUIul / P8 \ n + XN27NjB0KG + REVFIpFI8PbuyPLli + ndux9Nm7YA9NUply5dRXDwRc6d + 515834E9M / mZRk4cCht \ n27Zn585t3LkTapj1y / L11958 / bV3rnPNaiSf5eDBEx / sOgqCkJMI5gRBEP7Drl9 / wPjx14mONqNs \ n2Xj8 / ZtiZmb2uYf1t2Vv70CJEs4AFC9egsqVq77825moqIjPObS / rS + + qMGuXdvp0qUdRYs64u5e \ nDsg9WyORQNWq1ahatRqNGtVl5cpAdDodK1Ys4cyZk + h0OgoVsqdRo6bcuXObcuU8cjQoVygUdOzY \ nBdBXZdy / fy9GRnLq129Ijx69sba2ZsOGdVhbW9O8eascs0ifQqVKVTh27Kzh9aZNOwx / V6xYmZUr \ n1 + baZuXKwFzLypXzZP78xQwY0NdQIXL8 + MkEBW3i3r27jBo1DtAHVH5 + kwzbWVvbULNmbcPrrEIn \ nzs6lWLzYn6VLF1GjRm08Pcsb1qlbV9 + 0u3RpV06cOPqn5xgWFs66dVeRy7X061cTGxvrP91GEIT3 \ nI4I5QRCE / 7DRo69x / rz + B / C9exqsrTcxZ86Ha + T8b6NQvCrqkPXMUtbfGo3mcw3rb83IyIg5cxbm \ nWp59tqZXr755vieRSPjuu + / 57rvvc7xfoUIlKlSo9Mb9denSgy5degDw / HkcPj47iYqywtW1F5Mm \ nNUWhULzXOf0dZA + GdTodEok + 7dTExCTXujduPCAhQUVg4DF8fFogl7 / 6 + Ve0aDECAjZw9uwpVq5c \ nQuXKVQ3PJWZ932WyP / 9 + P3kSRefON7h7tz2g48SJNWzfLm4OCcLHJoI5QRCE / yidTkd4uHm2JTIi \ nInL / EBT + fsaM8TU0jG7X7htatWrNr7 / uYsOGtZibW1CyZCkUCgVDh44kPj6euXOnEx0dBcCgQcMp \ nV87zM5 / Bp9O6dSC3b3sC6Zw + XQ2p9ADTprX83MN6b9HRUVy / fg1393IcOrQfDw9P7t69nWu9 + / cj \ nGDLEFLm8INOnV + fy5SBWrepoeD / rOcVGjZpiZmbOnj27 / 9J4tm27wt277V6 + khAc3JF9 + w7h7V3 / \ nL + 1PEIS3I4I5QRCE / yiJREKpUgmEh + vQl3VX4eKS / rmH9beWOzXw8xR5GDNmApaWlqjVafTp050a \ nNWoRGBhAQMAGTExMGDzYh1KlSgPg7z + H9u074eFRnqioKHx9B7J + fdAnG + vrIiMjGDVqKGvXbnnv \ nfQUHX2Tz5g3MmjU / z / c3bz7N7dudAeeXSzYRGip77 + N + bhKJhGLFHNm5cyszZkzGyakErVt7s337 \ n1lzrnj4dTXi4D9bW0RQpMoCrV02JiHiVbpn1nKJUKkEul + PrOzavI / 7p99vMTAKkAfoWClJpHDY2 \ npu9xloIgvA0RzAmCIPyHLVpUlwkTNhATY4qbWyrjxjX73EP627K3L5yj3H32Ig + vv / exBQVt4uRJ \ nfVrhs2fR7N + / hwoVKmFhYQFA / foNefLkMaBv + Pzo0UPDtiqVirS0NMDik433c7lwIZlXgRxAWayt \ nj3yu4Xwwdnb2rF27BZksZ2AaFJRzVm3s2B8YN + 5XQEdCQhcSErpgaXkChUJpWDfrOcXXZd + Xq2sZ \ nFi5c9odj6tmzASdOBHLoUCPk8jS8vc / SoEHu4iiCIHxYIpgTBEH4DytUKD / Ll4tn5N6WTqdjzZrj \ nPH6cTrVq + WncuNKfb / SBBQdf5NKlCyxfvtpQ6t / R0YlHj8KyjTP7TKGOFSsCczRx / qsOHNjL1Vgz \ nsQAAIABJREFUtm1byMzMoGxZd4YNG0WTJvVo1 + 4bzpw5hVKpZMaMudjY2BIe / pRJk / 6HWp1GzZp1 \ nCArazKFDv + XYX2RkBFOn / kBqaioAw4aNxN3dg + DgiwQErMDa2oaHD + / j4lKGCROmAPD772dYtGge \ nSqUxHh7lc40xO3t7LZAK6NOHTUxuMHVqi / e + Dh / Sm67poUMnATh27DBnz55m7NgfmDZtIgqFgrt3 \ n7 + DhUZ7GjZsye / Z01Go1Dg5FGDNmAhYWFnTt2hVHR2euXLmEWp2Ou / sTrl / / DmPj + 1SsuISxYzPQ \ naDLp1asvtWrVzfE5xMa + 4MWLlsjlxahX7wkREefy / BxeZ2RkxNq1Hbh8 + QbGxgrc3LxFSwJB + ARy \ nN2kRBEEQBCFPY8bsYvToWixe7E2 / foVYv / 63P98om8jICLp16 / BeY8he6v / RozBu3LhOamoaV64E \ n8 + LFCzIzM3NUHqxSpRpBQa9mDfN6rupthIU95OjRQyxbFsDq1RuRSmUcPLiPtLQ03N09WLNmI56e \ nFdi9eyegT + / s0KETgYGb39hM2tbWlvnzFxMQsJ5Jk / xYsOBVa4d79 + 4wZIgv69cHERERzrVrIajV \ nambNmsasWQsICFhPXFwsfxQvDB78Jd7emyhadBdly27mxx / tsbe3 / 0vn / 2d8fHr96Tpbt25ErU4z \ nvH7TNdWnPeu9HhA9fx7D8uWrGTBgCFOn / sD33w8mMHATzs4lWb16BaCffX38 + BGrV29k1KhxWFv / \ nSt + + k / n224307t2WlSsD8fdf9rINRJrhc + jVawQ3b44lKekUV660Zf36QoSGhub4HK5evWIYi5dX \ n7Rxjk8lkVK7sgbu7qwjkBOETETNzgiAIgvCWjh61QKezBSAlpQz79t2kS5e32zYzM / ODjCGvUv8F \ nCxaka9ee9OnTHUtLSxwdnTA11VcRHDLEl3nzZtK9 + zdoNBrKl6 + Ir + / odz7upUvnuX07lN69uwKQ \ nnp6OjY0NRkZG1KhRCwAXlzJcvHgOgBs3rjFjxjwAvLwas3ixf659ZmRkMn / + TO7du4tUKuXp0yeG \ n98qUcSN / / gIAlCxZmsjICIyNjSlc2AEHhyIANGrU1BA85sXIyIglS9q9rPb4cYOLpUsD / nSdoKDN \ nNG7cDKVS / 1zZm65pdlqtzvC3RCKhfv0vkUgkJCcnk5ycjKdnBQCaNGnO + PH6z1WlUmFrmx / Q97eT \ nSCSMHu3L4ME + 3L9 / k02b1gGQkZHBs2dR2NrmZ / 78mfz + ezBWVrYoFI8ASEkpgY2NfY7PISoqMtuM \ nqAjYBOFzE8GcIAiCILwlE5MM8uVbiEZjRUJCd5TKDJYvX4ytbT6ePYvm3LkzSCQSunX7loYNvQgO \ nvshPPy3D0tKSx48fGRozg74B + fjxoxg58n + 4upZ56zG8qdS / i0sZWrVqTWZmJuPGjaBOnXoAWFlZ \ nM2nS9Pc + d4CmTVvkahOwadN6w99SqeSdWjRs2bKBfPnyM378FDQaDQ0a1DC8Z2T0qn3Aq9L4rwcP \ nOt7Gp5gl8vKqzaFDJ9 + YIhoUtJnnz2MYNKgf1tY2 + PsvJSws7OX4pDg4FGHs2B8wMTFh9eqVLF26 \ niAsXzuHuXo5jxw5TqJAdp079xqVLFyhb1g1b2 / xkZGTQr18v0tPVAKSnZ5CRkcHTp0 + Jjn5Gz56d \ n6NKlJ6mpqSxZog + mhwwZwZo1P5GYmIiDQ1GUSmO2bNnAnTu38fT05PDhh0gkKszND2BmFoWNjTmD \ nB / fnxYskoqIiMTKS06hR049 + PQVBeDsizVIQBEEQ3pKPjxUyWWEsLbfh7LyTAQNKcvToIQoWLMi9 \ ne3cIDNzMggVLWLLEn9jY54A + rXHIkBFs3LgdnU4ffDx + HMb48aMYN27SOwVyfyQgYAU9e3aie / eO \ nFC5cBDc3T + bN28f8 + ftITEx87 / 1XqlSVY8eOEB8fD0BSUiJRUZFvXN / NrRzHjumLjRw + fDDPdVSq \ nFGxt8wGwf / 8etFrtH47B0dGJyMgIwsOfAnDo0IF3Po + P51XAmFeKaLt2HcmfvwCLFi3H338pCQkJ \ n3Lp1HaVSydy5i3BxcSUwcBVRUZFIpVK0Wi0 / / bTW8D2ytrahVq06VK1ajU2b1mNubo61tQ3fffc9 \ nAQEbKF7cmczMDIyMjHBwcKBQoUKsXr2R / PkLYGxsjJGREVWrVsPPbxLNmrUkMHATHh6eLFgwB5Uq \ nBaXSGLlcR7NmVZBIoGjRSfTunYyVlQXTp88mIGA9derUe + NnKQjC5yFm5gRBEAThLXXsWIN69aIY \ nPVrG4ME2qNWxlCrlwtWrV / DyaoJEIsHGxpby5Sty69ZNzMzMKFPGDTu7V89pxcfHM2aML35 + c3B0 \ ndPpgY / v + + 8GGvxMTE2nb9jBXr3YHdBw4sJpt25phbm7 + 5h38CSen4vTp48OwYd + j1eowMjJi6NCR \ nb2zPMGjQcCZPHs + 6daupWrVajmNnrde6dTvGjRvJ / v17 + eKL6piYmGZbJ / cYFAoFI0eOY + TIISiV \ nxnh6ViAi4mme49VoNLmqPX4quVNEI3P19rtx4xpRUZEYG5vg7d0CrVaHqakptWvXw8LCkmPHDnP1 \ n6hVDsF + 3bgNu375F4cJFuHTpPADffz + IsWNHoFanYWRkRL58 + tRKiUSCVCqlV6 / OaDQamjdvRVJS \ nIj169GbLlg1s3LiODRsCsbcvzM2b1 / n + + 8Hs3fsr8fFxfPll45cpumnUrl2WzZuDWbbsR0JCrvD8 \ neQwqVQrx8XHY2Nh + ugsqCMIbiWBOEARBEN6BnZ0dXbt248SJY8THx9K8eSsuXjxnmHXLkhWwGBvn \ nbMRubm5OoUL2hIRc / qDBXHabN5 / h6tVu6GeLJAQHdyco6Gd69mz0Xvtt2NCLhg29ciw7ePCE4e96 \ n9RpSr15DAAoUKMCKFWsAOHz4gKFVQvY2DkWKFCUwcJNhex + fgQBUrFiZihUrA / pqjzdv3uDq1Stc \ nv36VYcNG8exZdI5qj35 + k96p2uOAAX0pVcqFK1cuodFoGDNmAmXKuJGamsr8 + bN4 + PBBjmqP7yor \ nRTQoaDNHjhzk3r07NGrUJNd6lSt / wcSJ03ItNzExYdWqdVhaWgFw5swpFAojxo79gdDQm5w / f / bl \ ndT1I797f0bZtB6KiIhk48DvDPooVc2LyZH167b59v5KUlIhSqcTU1JSAgPXI5XIyMzP5 + usmFClS \ nlNq161KjRi3q1WuIj89AvLzqULFiZaKiIjl37gwBAeuRyWS0a9cKtVr0oxSEvwuRZikIgiAI76hu \ n3fqcO3eG0NBbVKtWAw + PChw5cgitVkt8fDwhIZcpW9YtV4AH + mfe / Pxms3 / / Hg4d2v9RxmdsLAey \ n / + BOw8Tk085ShYaG0qNHJ7p3 / 4Zdu7YzYMCQd95H9mqPP / 20jjt3IvD1nZXjuv6Vao8SiQS1Oo3V \ nqzcyfPhopk + fDMDatQFUrlw1V7XHv2rXrm3Url2Xr75qA4CpqSkpKSkAlC3rzrVrIYaU0eTkF4aA \ n922lpKQYZgD37HnVF04mk + UYd / br5e7uwZEj + lTJgwf3GQqovC4jI5PmzQ + ycOEFXrzQz3IGB1 / 8 \ nw9RaQRA + PTEzJwiCIPyrZRWmeF / BwRfZvHkDs2bNRy6XU6lSFSwsLJFIJNStW58bN67So8c3SCQS \ n + vcfjI2NLWFhD3OlC0okEoyNjZk1awFDh / bH1NSMmjVr53nMrVs38tVXbQzVD99Wp071OHAgkMOH \ nvQEtTZrsoF2792uJ8K48PcuzZs3G99pH9mqPT54kkJhoyosXVciXT8eNGw9wcyuRY / 23rfYI8OWX \ njV + OswIpKSkkJydz / vzvnD79W65qj8WKOf3pWHOmm8Ls2X5ERIQTHx9Perqa3347RmJiIp07e1Oy \ nZClWrAikQoVK9OnTnfR0NXK5EUOHjmDJkoXExDxjwIC + jBz5P9zdy6FSpTJkyPfodFoKFy5iOE6n \ nTt2YNu0HAgNXUb16LbKe29uwYQPdu / cwFECRSCSG8Q0ZMpLp0yexceM6bGxsGDv2h1znsGvXWdLT \ n5dy82RaptAGJiR3p3NkbN7dyODoWz / OcBUH4PEQwJwiCIOQQGnqL / fv3MG3aJFatWo6pqRnffPOW \ n9fffko9PL5YuDSAqKpJr10Lw8sqdgvbhfPgfnFqtlhs3rjF16izDsv79B9O / / + Ac61WoUIkKFV41 \ nFs + eYmhubs7KlWv / 8Divl7J / fQxSad4JNvoGzu05fPg8UqmEhg07fLbnx95X06YtaNq0JTVrpqNW \ n6wMzG5sANmy4jZ9fCdRqdY71jY3fLfDNkhWXTJs2m6JFixmWBwVtZuzYEbi4uDJ + fN4Ns + FVumn2 \ nFNHz539n1ap1rFq1HBsbW6ZPn0tw8EUWLdK3bLC3L0zhwg4sWfITCoWCCRPGULFiZaZPn4NOp0Ol \ nSiEs7CHu7u74 + c1BJpMxZ84MatfWp366u5dj06YdhjH06eMDgJWVVa7vVtOm + mbpdnZ2 + PsvzTX + \ n7EHdtWuJ3Lt3GQCt1ob79zcyadIlGjWqnuc5C4Lw + YhgThAEQcjB1bWMoejC + 9x5z8zMRC7P + 38z \ nWT25IiLCOXTowEcO5vR0Oh1LlizMs31AXqXkAX7 / / QyLFs1DqTQ29NZ6 + PABI0YMRiaTMXbsCNLS \ nUpFIpBgbG6PT6ShWzJELF86RlpaGvb09CxYsoVAhO / r2 / Z6wsOJIpR589ZWMHTsmvnMpey + v2nz1 \ nVVsuXjxPvXoNuH07lOnT9Y22L1z4nZ07t + PnNxsAuVxOkyY18r4Y / xCVKlVl9Ojh1KvXEJlMg1Sa \ ngFSagkaTn9TUaLRaLb / 9dgwzs9yFXczNzbGwsCQk5AqenuXZv3 + PIbDW6XQcPXqIihUrExJyBXNz \ nC8zMzKlatRrbtm1m6NCRANy5E8quXdvw919qSGf8I3l953U6HdeuhTBtmv5zqVixMomJiahUKUgk \ nEmrVqoNCoX / GLjj4ouG7J5FIMDMzZ / / + PTl60anVavLly / cXr + jbcXOzRKl8jFqtD2rz5TvPyZPh \ nPHmSQs + eDd54E0EQhE9PBHOCIAj / cpGREYwaNZS1a7cAsHHjOtLSUrl8 + RJly7oTHHyR5OQXjB49 \ nAU / P8kyfPpkjRw7h5laWGzdu0rVrD8LDnzJv3iyCgy9QurQrAwYMZcuW9URHRwH6yoXlynmyatVy \ nIiKeEhERgZ2dPV279mT69ElkZmai1erw85uNg0MRQ + rjsmU / 8vhxGD17dqJp0xb89ttxBg / 2pVSp \ n0gD4 + HyLr + 8YnJ1Lvvd1OHHiqKF9QEJCPL17d6N8ef1Mz717d1i / Poh8 + fLj4 / Mt166FULq0K7Nm \ nTWPRouU4OBRhwoQxSCRQvHgJatasjY2NLXXq1Gf48IFYWFiyZs1GlixZyC + / 7GLgwKHUqlUHb + + W \ nzJ8 / m169BnL5spzY2BokJzcmNPQuJUq8KsOf1 / HbtevI1q0bWbRouaEQRlpaGm5u7obnzzp39iYx \ nMQErK2v27PmFFi2 + eu / r9HeSVUFzxozJlC6dQHy8FdHRP2BsXJXHj7fj43MCV9cypKamGrbJfgNi \ n3LiJzJkznbS0NEMft6x1FAqFodrjmDETAOjRozcLF86le / eOaLVaVCoVcXGxDB8 + kKZNWxAScpmI \ nCH3z8pEjx + HsXDLXd37QoGHMmuVHZGQEMTHPCA29CcCJE8c4cuQgmZkZJCUlodVq0Wq1nDlzkqNH \ nDyGRSEhLS8vzOcu8 + vt9TG3a1CAs7AAHDlwiNTWeiAhYvrw3kERwcBCLF7f / ZGMRBOGPiWBOEATh \ nPyb7j12tVsvKlYGcPXua1atX0K / fQC5fvkT58hVZvHghdevW5cGDe8yadYmvv26LVquhd28fRo8e \ nxrRps / DwKE9UVBS + vgNZvz4IgEePHhnSxhYsmE27dp1o1KgJmZmZ2RpK68fg4zOQTZvWM2vWfAAs \ nLCzZt + 8XSpUazuPHj8jIyPgggRzwp + 0DcpaS1 / 9gL1zYAQcH / TNKjRo1ZffunQCGmZbTp3 + jWbOW \ n7Nv3KypVCsbGxmRkpNOkSXNkMhkFCxbi6tXLnD9 / h7S0VzM7KlUptNpXP9rfppQ9gFQqNVSLBGjc \ nuBkHDuyladOW3Lhx3TCr80 / wtq0DslfQPH78ApGRT2natB / W1qNyrZs9VRCgVKnSLF + + Os / 9Nm7c \ nnEGDhhteJye / ICzsCT4 + g3K0UWjXrhWLFi1n1arluLiUMaRKTp06gdWr9c8EZv / OZ6VKtmvXEW / v \ nlhQr5oiTUwl2797BunVbCQm5zPjxozl16jdiY2NJSUkxpEqOGzeCnTu30b79N2g0GtLSUg2zk + 3b \ nd8LGxoakpERUqlTs7Oz + 9Nq9j2HDGjNsGAwatJ / Q0HYvl1py8GAJww2E1w0Y0JeBA4fh4uLKiBGD \ nmThxGjodHDq0n9atvQF9gZoFC + YwderMdx7TtGkTqVmzdo7 / BgThv04Ec4IgCP9hdevWB8DFxZWo \ nqEiuXr2Mh0d5kpKSMDc3p1q1GoSGhhITE839 + 3dQKJTMmeNHYmIC8 + e / el5MpVKRmpqaK23Mza0c \ na9cGEBMTTd26DShSpGiO478 + C1G / / pcEBq6if / / B7Nmzm2bNWn6wc5VIJG9sH5BVSh5AJpO + DDpf \ nTzHNua1Op8tzn1nvAUil + mClenVXjI33kZKin40zM7uFTvdqZi738TPzPAeFQpkjGG / WrBWjRg1F \ noVDQoMGXnyX9bc2anzh4cB / W1jYULFgIF5cy1KlTj3nzZpGQEI + xsTGjRo2jWDGnHK0DypXz5MWL \ nJMPr + Pg4Ro8ez969vxAaepOyZd0NwdmcOTMIDb2JWp1GvXoNsbb + EgBv75Y0bdqC06dPotFkMmXK \ nDIoUKUanTt4sWxaAtbU1Wq2WTp3asnz56jwDEIDjx68xcmQMYWHuODufY84ce2rWLGt4P69UybCw \ nh2 + RKinFzMwcZ + eSHD9 + BC + vOkil + psJkZERWFpakpSUyIIFs6levRbDh49m9mw / 9uz5GalUiq / v \ nWNzc3HP095PL5QwfPuqjB3NZjIw0OV4rFKnI5UZ5rpv9uzl7tj + gzwzYuTPIEMzlz1 / gLwVyWfsX \ nRVcEIScRzAmCIPzLyWSyHLNA6emvCkZk / SiTSmV5BjD58uUnKSkBMzNzlErjl72vLGnR4ktWrAjE \ nyCj3j7rsxTq8vJrg5laOM2dO4us7mJEjxxqKQ + TF2NiYypW / 4OTJ4xw7dpiAgA1 / 9bRz8fCowM8 / \ n76Bp0xYkJiYSEnKZAQOG8PDhgzzXd3R0IjIygvDwpzg4FOHQoQM59nXw4D7q1m3AsGEDsLKywtTU \ njLS0NOzsCnPkyEEaN25GcvILypRxw9m5GF9 + ac2FC9tRKlVUrHib48c1eR43u6xS9llplq / Lnz8 / \ n + fPnJzAwAH / / JX / twryHW7ducOLEUQIDN5ORkUGvXl1wcSnDrFl + jBgxhiJFinLjxnXmzp1pKLqR \ n1TpAIpHg5zeJ5ORkli9fzalTJxg9ejjLlgVQvHgJevfuxt27dyhVqjR9 + / bH0tISjUbDkCH9efDg \ nHiVKlEQikWBtbUNAwHp27tzGpk3rGTXqfzRu3JSDB / fRvv03XLx4npIlS + cI5BYtWp7jPObPf0xY \ nWEcA7t93ZsGCzTmCuSzZA / fsTbOzvvOZmZk51gsK + hnQf687dOicZ6pkz559OHfuDLt2bcfS0pLp \ n0 + fmeF + tVlOyZCmWLFmFiYlJru3 / iqwiR0OG + L5xneDgiwQGriIiIoLSpbejVr9AoylEhw5NuHXr \ nBkuW + KPRaHB1LYuv75hc / xZ4e7dk1ap1LFu2iPDwp / Ts2YkqVarRpk07RowYzLp1W9FoNCxduojz \ n588ikUhp1ao1bdu2Z / XqlZw5cxK1Wo27uwcjR44z7DevmyeC8F8mgjlBEIR / OVvbfCQkxJGUlIix \ nsQlnzpziiy + q57lu + fIV2LZtM8WKOZGcnMzp06dwdi7Fw4f3sbCwwNLSEp1Oh6urG0FBm + nUSV + U \ nIetH9 + siIsIpXNgBb + + OREdHc / / + vRzBnKmpGSpVSo5tWrb8mpEjh1C + fMUc6W5 / Vdad / HdpHwCg \ nUCgYOXIcI0cOQak0xtOzAhER + p5gvXr1Zfr0yRw7dgSFQkFaWio9enRCItEfZ + / eX9i4cR3JyS / o \ n1asvACNHDmT06OGo1WsoXLg6Jiam2caY99hbtWrN8OEDKVCgIP7 + S / OclfDyakJiYuJblc / / 0K5d \ nC6F27XoYGRlhZGREzZq1SU9Xc / 16COPHv0qDzMjQBznZWwdkyWrLULy4M7a2 + ShRwvnl6xJERUVQ \ nqlRpjh49yO7du9BoNMTGPufhw4eUKKFPv61btwEApUu7cuLEUQCaNWvJmDG + tG / / DXv2 / IydnT19 \ n + nQnMzODsmXdGTZsFE2a1KN1a2 / Onj1NfLwUY2NX8uefg1weRWKifsZ6795fiIuLZfTo4UREhDNj \ nxlQWLlxKcPBFYmKeYWpqRkREOCEhlwkJCebx40dUqlSF4cMHkpqqQq1Op0WLr6hatVqeqZImJsbI \ n5XLq1m1A0aLFmDJlQo7re / nyXYYMucPdu2VwcjrJjBkO1Knj9t6fW / YiR38mKiqCuXNHExOj4bff \ ndlGoUBR + fktZuHAZRYoUZerUHwypodllzaL5 + Azi4cMHhpTUyMgIw + e / e / dOoqOjWLNmE1KplKSk \ nJADatu1Az559AJgyZQKnT598Y / sOQfivE8GcIAjCv5xcLqdHj9706dOdAgUK4ujoBOSVsiShdGlX \ nKlaszOHDB + nbty9ly7phbW3D5cuXyJcvPz16dCIzM5Patetw + / ZNunfXP9tTvnxFfH1Hv9zvqz0e \ nPXqIAwf2IpfLyZcvP9269TIcG6BkyVLIZDJ69OhEs2Ytad / + G1xcXDE3N6d581Yf5Pyzl09 / m / YB \ nWZUMAb74ojobNmzLtU / 9DMqcHMtUKhXPnkVjb18YpVKZaxsbG9scz2 / 5 + AwEcpayf / 34bdt2oG3b \ nV / 3hsp + LRqMhKiqS4OCLtGz5dR5n / inkTjPV6XSYm1sYfry / 7vXWAVkzOlKpFIXi1eyOVCpFq9US \ nERHO5s0b + OmndZibm + PnNynH7HLWNq / SY6FQITtsbW25dOkCV6 + GULq0C8uWBSCTyZg7dyYHD + 4j \ nLS2NSpWq0r / / YNq27UJy8hyePg3E1PQs + fOPAwYB + l5z / / vfJJRKJZ06edOxYxusra1RKPSfsUQi \ nISbmGYsWLcfOzp6NG9exZ8 / PyOVypFIJP / + 8ndq16 + aZKqlQKPHzm2RIue3Xb2COazN79m1u3dIH \ nSffueTJnzmbq1HEjNTWVCRNGExMTg1aroXv33lhZWRlmy8qX92TAAF + MjIy4desGCxfOJTU1DSMj \ nI / z9lxIaetPQM / HmzessXDiP9HQ1SqWSMWN + oFgxR8MYChYsZLj5U7iwMWvW / EThwg6GlOmmTVuw \ nY8fWXMFc9u / Dm1y6dJ6vv / Y2pAdbWloCEBx8gY0b16FWp5GUlESJEs4imBOENxDBnCAIwn + At3dH \ nvL07vvF9a2trQ0rY6NHjGT16PAUKWBAT84L09HR8fAbmmVL5uqxZqCxduvSgS5ceudbLCkrkcnmO \ nnlcZGRnEx8eh1WqpWrXa25za38KxY1cZOzaaR49KUrr0YRYudMHD48MUbslLRMQzevf + jefPNyOT \ nSXF2bvDRjvVHPDw8mTXLj65de5KZmcmZMydp1aoNhQsX5tixw9Sv / yU6nY779 + 9RsmSpd96 / vtea \ nCmNjE8zMzIiLi + X338 / kCL7fpGXLr5k8eTwlSjjnKO2fnp6OjY0NRkZGhiCladNaXL8ejonJTsqU \ nUbBx46vZ4saNmxmK4HTo0AkLC0vat / 8GL686L7dtQXR0FHZ29gDcvHktRw / AjIwMnj59gpubO506 \ ndcvVhiMgYP0bz + HFC2Wer8 + dO0P + / AUNz6UlJyfTrVsHw2zZnDlT2blzG61be / PDD2OZPHkGrq5l \ nUKlUuW40ODkVZ / HilchkMi5cOMeKFYtz9E / MfsMnK1BPSkrMsex9vL69Wq1m3rxZrFq1jgIFChIQ \ nsIL09PT3OoYg / JuJYE74P3vnHRbF1cXhd5elSK8qikRABBVFECtW7L0XiNIixoLGFmvsBaMkdgVR \ nEMUSNcZesNdYsUQFKwQQLKj0ust + f6xsqJaoMeab93l8dGbuvXPv7IL3zDnndwQEBARKRS6XM336 \ nHn77TQ + xWIaraw6TJnX8JPfKz89n9OidnD37J + XKHaBVq8 / lafp7 + PvH8vChwjNx504dFi7cQljY \ npzPmFiy4wJUrnoAXAIsXb6VXL / k7iUMUFIIfNWrYB8 / D1rYmTZs2x8NjAIaGRlhZVUNHR5vp0 + fi \ n77 + A0NBgpFIpbdq0UxpzxedY + Li0a9WqWVO9ug1ubr0pX74ideqUVPl83bpY + GZz5s + fRc2adtja \ n1iySryaTydiy5S8jSiwW07ChDa6u7QHYuLGoKmYBcrkcsbjkM9bQKJrLNnbsBOrXL / oyIiLiirKm \ nYlLSS / z8zpGWpk6LFuX4 + uvSvU5Nm + Zx5cozZLLyQDJNmiiMTCsra1auXMrq1ctp0qQZmpqaRbxl \ nPXr0ICQkFCen + hgZGStDKjU1NUvcIy0tjTlzZvD4cRwikUiZ91fA06dPuHXrD + zsanPkyCFsbWuw \ ne / dOZS7p4cMH3mhca2pqkpmZWeo1J6eG7N69E0dHJ1RUVEhNTVV + hrq6emRmZnLixFFcXNqWOb6A \ nwP87gjEnICAgIFAq27efZu1aF6RShcdh1aqHNG58lRYt3u4VeV / Wrj3G1q29AV2MjIzYu / cpQ4c + \ nJjQ06IuQIk9LKxo6mJFRMszy49 / vL6MiJUUbqVT6Tt7Tj60G6Oo6CG / vIWRnZ + PrOwQbmxqYmlbi \ np5 + WlWhbvHRA4WNT00q0atUGN7feSmXMhIQE7t + / S0xMNGpq6mhpaTFx4jRevnyBj4 / FVRY3AAAg \ nAElEQVQH27fvARR5WH5 + swgN3cqdO7fw85tHRkYaYrGY + vUbsmDBXK5du0LNmnZcuxZB48bO5ORk \ ns3r1ciIirvD4cTytW7cjKiqSgIDl5ObmMGbMCO7du4tUKsXUNIjTp48TFxfHokVLAJDL8xk3bhQJ \ nCfGkpCQTGxuDuXlVkpKes2iRH4aGhrx8 + ZJ + / Vzp0qVHkZqKjx + bcf36KkDEoUMPUFU9T79 + JQu8 \ nT5jQESOjE9y5k4elpZjhwxXqrlWqmBMcvInffz9LUNAq6tWr / 7c / v7VrA3Byqo + fnz9PniQycuS3 \ nRa6bm3 / Fb79tY8GC2VStakn / / l9Tq1Ztpk2biEwmo0aNWvTo0afM8fX09Kld2x539 / 40auRMr159 \ nld / Brl17EBcXi4eHKxKJhG7detKrV1 + 6du2Bu3t / DA2NqFnTrsh4gpqlgEBRBGNOQEBAQKBUoqNT \ nlIYcQHa2BQ8eRNCixce / V2KiDFDky8jlIrKyTIiOTvxipMgbN04jKioV0EUieULTpm9XqvwQWrZU \ n59ixR2RnWwK5NGjw5I2GXGjoOg4d2o + BgaGyfMD27dvZtGkzeXlSzMzMmDZtNjKZDA8PN7Zs + RWJ \ nREJGRjqenl + zZcuv / PbbDnbv3omKigpVq1owa9Z8ABYunEdMzCNyc3Pp2LEL1tY2f2tNZSljzp07 \ nk7FjJ2Bv78C6dYGEhKxh1KhxSKV5JCYmYGqqUA9t3bod2dlZjBw5mceP26CnF06lSnU4cGCvsvB4 \ nXFwspqaVcXZuTljYemWdxVmzfuDy5QuMGzeRdu06cvXqZebP92f / / j0sX / 4zR48eIj9fjrW1NQ8e \ n3MfR0Ync3FzGjPmeZ8 + esnZtgFKx08zMnLS0dLKyshCLxaxevZyOHbsoayqOGzeJhg1fUGCMZ2dX \ n4 + zZ6 / QrpQ63SCRi8OCSIbRJSUno6OjQrl1HtLS02blzO0 + eJCq9Zbt378bBoR7m5lV58SKJqKg7 \ n2NrWJDMzo4jaLEBGRoayxuH + / XtK3EtFRYVp04rWL6xXr36pSrOFVUILDG2AGTPmFmkXGrpVOfbI \ nkWMYOXJMkes + PsPw8SnpOS7 + MkBAQEAw5gQEBAQEyqBzZzuWLj1BYqJC2c / c / CDt2tX92 + MdPLiP \ nrVs3KUPnBg8eyvz5s0hJSUEul2BoqM / Ll4pwqgoVHuHg0JczZ / Yrc2qioiJZsWIxWVlZ6OnpM3Xq \ nDIyMjImMvM2CBXMQi8U4OTXk4sXzbNjwCzKZjICAFVy / fpXc3Dx69epL9 + 69PvzBlIKfX3fMzI4Q \ nEyOndm0NPDzaf5L7FODh0QJ19XNcuBBB + fJSxo0rOyw1KiqS48ePsH79FmQyKd7eA7G1rUHbtm1p \ n2VKRvxUUtJp9 + 3bTu3d / HBwc + f33szRr1pKjR8Np2dIFiUTCpk2h7NixV2nkFVB8o / 53KU0ZMzs7 \ ni / T0NOztHQDo0KEz06YphHZcXNpy7Fg4Awd6cvz4UebMWcCKFdvJzExDW / sKMpkh8fFxJCdfYcqU \ nGezatYOqVS0wMDAkIGA5xsYm / P77Wc6ePcWIEd8RGXmbiIgrbNu2hS5depCXl8uBA3vIz8 + nXLly \ nTJkyk6ioO + zevZO7dyORy + UMGtQPfX199PUNSE1VhCdKpVIGDPhaKUrTrl0LtLS0ld9jXV1djIxu \ n8VfkoRQDg7z3elaPHj1g5cqliMUiJBJVxo + fTHp6mtJb5uBQlx49 + iCRSJg924 / FixeRk5ODhoYG \ nixevfP2SRDGWm5s78 + bNIDR0HY0bN6VoeZLP8zIlJSWFn38 + Q1aWKl26VKZ5c7u3dxIQ + D9FMOYE \ nBAQEBErFzs6SlSufEha2HbFYzuDBVlSp8vcKFT969JANG4IJDAxBV1eP1NRU5s6dQadOXenQoTP7 \ n9 + 9BLA5CVTWVly / / oEWLr9DW1gFQ5vEsWbKIH3 / 8GT09fY4dC2fNmlVMnjyd + fNnMWnSdGrVsiMg \ nYIVy87lv3260tbUJCtpAbm4uw4cPpkGDRpiaVvpoz6gAsVjMyJHtPvq4b2LAAGcGlK1po + TmzWs0 \ nb97qtfCFOs7OzZHL4d69eyxa9BMZGelkZmYpxUC6du3B5s0baNasJQcP7mPixB8ARZ7WzJlTad68 \ nJc2atfwEKyq9AHtZuLi0Zdq0SbRo4YJIJKJyZTOysmTk5lYjLu4XACSSaJycPJR9ChdnB5g2bQ4v \ nX75g06ZQpRImKBQy160LpGLFSsTHx + PpOZi5c6fTr58bcnk + 8fFxGBgYsnHjL7i59Wbt2o2IxWLG \ njfuVkydT + O23RCIi9jFjRpcSaypXrhxTp + qwcOF2UlL0qFfvTyZOfD / l1gYNGpUqEFTgLSsQLwJF \ nXmNhFVUoquBqZ1ebLVt2Kq8VeMSKq6z + U + Tl5TFo0GEuXPACxOzbd46goDul1v0TEBAA8eeegICA \ ngIDAv5emTe0ICOjAqlUdcXQsWUfuXYmIuIyLS1tl8WtdXV3u3PlDqezXvn0nkpL + JCioHZ07V8fE \ nxEDZVy6XExsbQ3T0Q0aPHo6XlxsbNgTz / Plz0tMV4Wy1aine3Ldt20G5eb58 + QKHDu3Hy8uNb7 / 1 \ nJDU1hfj4uL + 9hi + X0j0rkydPZty4SYSGbsXb20cp91 + 7tj2JiYqSBzKZDAsLSwAWLVpCr159uXs3 \ nCh8f9yLGz8egTh17zp07Q25uLpmZmZw / fwYNjXLo6Ohy48Z1AA4d2q80QipXNkNFRcz69Wtp3Vph \ nSHt5daRcuVg0NK4B + dSqtRMNjb / CTwsbVvr6iiLiNja2PH36tMR8 / vjjBiNHjkFPTw97ewdSUlLI \ nzs4GRDRt2pzKlSsTEXEFAwNDXr58werVW9m0qSu5uZVIS7MnKKgRJ09eUY5XuKZir14NOH + + HVeu \ n1CEsbECpwiT / JHK5nLCwU8yZc4jDh69 + 1rncvfuACxdaULBFTUpy5uDB2M86JwGBfzOCZ05AQEBA \ n4JMjEpXudSnLE1NaZJeFhRUBAcFFzqWlpb1xvNJUBf / fqFvXgXnzZjFwoCcymZRz587QvXsvMjIy \ nMDQ0QiqVcvjwAcqXr6Ds06FDJ2bPnoan52BA8VyfPn2Co6MTderU5dixcLKzs9DS + vCi7gWUpYw5 \ ndepM / P39yM7OpnJlsyJ5Uy4u7Vi9ehk + PsMBMDOriL / / HObPn4hUmoOOjoScnGxl + 8JKjQUeXLFY \ nhfx8GWKxSolriu9TUbVNkQgkElWlYmdCwmNGjhyKnp41 + fkFpTlE5Oaa8 + efV99YU1FLS + ujPb8P \ nYdasfQQGtkEmK4 + WVhSzZp3G3b35Z5mLsbE + OjqJpKUVqMFK0db + tDmoAgJfMoIxJyAgICDwyXF0 \ nrM + UKeMZMODr12GWKdjZ1eHYsXDat + 9EePhBZV6UXC6nsE0mEokwN69KcvIrpUS6VColLi4WCwtL \ nNDU1uXPnFjVr2nHsWLiyX4MGjdm5cwcODk5IJBJiY / + kfPkKJYpWv4n09HSOHDlEz55lq / X9E6xb \ nF6isbwYQGLgSQ0Mj8vJyOXHiKLm5eTRv3pJvvlEoEU6ePJ5nz56Sm5tD376utG7dFk9PVx4 / jqdK \ nFXO2bt1Ez549cXXtSW5uHuXKafDixQvl / dq27UBQ0GratlXk / slkMubMmU5GRjpyuZy + fQd8VEOu \ ngNKUMa2tq5cIE / yr / UBcXQcWOdeoUUP27PkVUBhvPXp0IDU1hZ9 + Ws7Ikd8qw0m / / 34qNja2JCcn \ nIxaL2b59NxERVyhfvgKjR3 / PkiX + hIcfVJ7X1zegR4 / evHiRBKBU7HR378 / ChUtJTc3l8uVw4uP9 \ nALCy2kWHDvXw8Ci9puK / ifBwzdflDyAjw5YDB + 7g7v555lKxoikjR95i9epjZGQY4 + x8keppp7JK \ nlQgI / JMIxpyAgICAwCfHwsISd3dvfH2HIBarUL26DaNHT8DPbxabN2 / EwMBA6XEpLM5QgEQiYc6c \ nH1m61J / 09HRkMin9 + 7thYWHJpEnT + PHHeYjFIurWrac0Mrp27UFiYgLffDMQuVyOgYEh8 + cveuc5 \ nS6VS0tJS + e237Z / dmOvcuRtTpnxPv36u5Ofnc / z4EYYMGcHVq5cICtpAfn4 + kyaN48aNa9jbOzB5 \ n8nR0dXXJycnGx8eDFSuCcHf3plmz + gwePJRWrdogkUg5evQYmzcrDJ / CoiY3b16nVas2ymcpkUhY \ ntWrtJ1 / nx1LGLEAikeDpORgfHw9MTMrz1VdVAUpRSS3sfVP87e09BD + / 2Xh4uFKuXDl + + GFmob4l \ n71W9ujlr1mSxceM2VFTk + PjUQE1Nwvff7yUlRYOmTdU / m7frbWhoFBVgUVOTltHyn2H06La4u78g \ nPT0dM7P + ygLsAgICJRHJ3yfb + BNSkKgr8N + jcCK2wH8P4fP97 / KlfLZZWVmUK6co2jxt2kQiIq5i \ nYlK + hGKmvr4BU6ZMp0KFisybN7NI / bq2bZtx5MgZIiKusHZtALq6uvz5ZwzVq9ty9uwpzM2 / on79 \ nRgwfPuqzrXPMmBEMHz6KFy9esG / fbkxNK3Hy5DG0tbVfP4dsBg3ypHPnbqxbF8iZMwqP0JMnCfz8 \ n8wpq1rSjRYuGnDx5AZFIhIFBObp374mNjS1NmjTD2bkZEomExYsXcvHiBfz9l2JmVoWwsDOcOpWF \ nnl42kyc3xcjI8LM9gy8JuVxO797bOHv2G0CEmlo08 + ff + UcMuvf92d227XdmzlQlKckOC4vzLF9u \ nSoMGNT7hDAU + hC / ld7PA + 2NiovPefQTPnICAgIDAF83582cJCwshKyuLpKTnTJmykGXLnrN / v5gz \ nZ0YzbFg / evTozf79e1iyxB8 / P / 9S5Nb / Or5 / / y4bN26jYkVTnjxJJDr6ISEhm / / ZRZVCly492L9 / \ nL69evaBz525cvXqZgQM9S5RbiIi4wtWrlwkMDEFdXZ2RI78lNzcXADU1deXaJRIJQUGhXLlyiZMn \ nj7Fz5zaWLl3NmDETlGNt3XqOKVNsyM62AuQ8eBDMb7 / 1 / SJq / 30KQkNPcfZsDrq6CsPW2LhswzY5 \ n + RV / / GFNwXcrN9eCCxciPlv44pvo168xTZsmEhl5A0fHuhgYCAa7gMCXguC3FhAQEBD4omndui0h \ nIZvp06c / / ft / zeLFzzh / fiAPH7qRkvKSkycVm + n27Tvxxx / X3zpejRq1qFhRUSz9nw5e8fUdQlRU \ nZInzBw7s5fr1q1y8eJ6oqEgaNWpCw4aN2L9 / D1lZWQA8f / 6MV69ekZmZgY6ODurq6vz5Zwy3b98q \ n9V6ZmZmkp6fRuLEzI0eO5cGDeyXanD2b8dqQAxBx40ZNkpKSPtp6vyQ2bTrDDz / UYvfu3mzc6Mbg \ nwcfe + P3Q1tbB0PD566N8QIaBQc4 / Mte / Q6VKprRu3VAw5AQEvjAEz5yAgICAwH + CAsXMhISiYSqJ \ nieVKtFVRUSE / X7ERz8 / PRyr9K2dIQ6Nk + 38CmUxWSi7XX4jFYurVq4 + Oji4ikYj69RsRExPD0KFe \ nAGhqajJt2hwaNmzCrl2 / MnBgX6pU + Qo7u9rKMQqPnZGRwYQJY1577eSMHDm2xD2NjHIBKQXbBWPj \ nRHR1rT / amr8kfv89i5wci9dHIv74w5YXL15gbGxcQnCmW7eedOrkQpMmzkgky0lNdUVffwUmJr0Z \ nNGgjRkbGDB48jICA5Tx79pRRo8bRtGlzfH2H8N1347G2VpQBGTbsG8aPn4yVVbWyJyYgIPB / jWDM \ nCQgICAj8JyhQzLSy0iUuTo5YnEJ2tj36 + hFAxyKKmRUrmnL3biQuLm04e / Z0Ecn6wmhqapKZmfnW \ ne2 / evAE1NTX69BnAsmU / 8fDhA5YuXc3Vq5fZv38PjRs7Exa2HrlcTuPGTRk2bCSgyNXr3r03V65c \ nYuzYCUXG3L9 / D2Fh69HW1qFateqoqkq4ffsP5s5dqGzTt + 8A + vYtWTnc339ZqfMMDz + l / LeJiQlB \ nQaFvXNfEiS48eBBCRMRX6OklM3Gi0evi4 / 9 / GBrmUNiwNTJKRFdXIdBSXHCmZUsXsrOz6datDT / 9 \ nNJ + srCw6dFhC48bOjB49nilTvmfdugCWLl1NdPQj5s2bQdOmzencuRsHD + 7F2nocsbF / kpeXJxhy \ nAgICb0Qw5gQEBAQE / hMUKGZu3LieOnW2AGY4OjYjO / ssHh6uRRQzu3XryaRJ4 / D0dKNhw8aUK / dX \ n0ebCjjE9PX1q17bH3b0 / jRo5lymAYm / vyNatYfTpM4CoqEikUilSqZQbN65RpYo5AQErCA4OQ1tb \ nh7FjfTlz5iTNmrUkOzubWrXs8PUdXWS8pKQkgoPXEBwchpaWNj4 + HiQkxNOtWy8qVzb7oOckl8vZ \ nvv0UmZlyWra0oWrVSmW21dTUZNOmAWRmZqKhofHZVAWLC9Z8DiZNas2jRyFcu2aOnl4ykyaZoKam \ nBsD27VuUgjPPnj0jLi4OsVhMy5atEYlEaGlpoaqqqiyLYGVVDTU1NVRUVLC0tCIxMRGAVq3aEBq6 \ njuHDv2P / / j106tT18yxWQEDgi0Ew5gQEBAQE / jN07NiFjh27FDs7sEQ7AwPDIrXLCjxljo5OODo6 \ nFWk7Y8bct97XxsaWu3cjyczMQE1NDVvbGkRFRXLz5nWcnZvj6OiEnp4 + oKjhdv36NZo1a6nc8BdG \ nLpdz584tHBzqKft07tyVuLhYRoz47q1zeRNyuZzRo39l69buyOWGWFjsJTg4m1q1LN / YT1NT843X \ nPyVvCz / 9p9DU1CQsbABZWVloaGgo51O64ExOEbEZABWVv7ZcIpEIiUQVUITPymSKotgaGho4OTXk \ nzJmTnDhxlODgTf / gCgUEBL5EBAEUAQEBAQGBQty8 + YAffjjIrFn7ePny1Tv1kUgkmJpW5sCBvdSu \ nbU + dOnWJiLjM48fxmJqaFhPKkCs3 + cU3 / AUUP / WxdFiePXvGnj22yOUKkYvo6K5s2FBS + ORTcPjw \ nAXx8PPDycmPRovnk5 + fj7 + / H4MHuDBrUj3XrApVt + / TpyurVy / H2HsjJk8cAhSEaEXGFyZPHK9td \ nvnyBKVO + / 0fmX0C5cuWKfGaFBWdiYqLLFJx5V7p27cGSJf7UqFFLWXZCQEBAoCwEY05AQEBAQOA1 \ nkZExeHk9Zc2afqxcOQA3t2PvlDMHYG9fly1bwqhb1xF7ewd27fqV6tVtqFGjFtevR5CSkoxMJuPo \ n0XDq1nUscxyRSETNmnZcvx5BamoKUqmUEyeOfpT1icVixOL8Yvf79IqdMTHRHD9 + hICAYEJCNiMS \ niQkPP8iQISNYu3YD69dv4fr1CB49evB6TiL09PQJDg6jdet2ynOOjk7ExsaQkpIMwP79e + nSpfsn \ nn / + baNiwCTKZjIED + xIYuFIpOFPcSC95XPo1GxtbtLW16dy526ebtICAwH8GIcxSQEBA4F / I / fv3 \ nSEp6TuPGzp97Kv9X7N4dRVxc39dHIiIiunP27BXatWv81r729g5s3BiCnV1t1NU1UFdXx97eASMj \ nY4YO9WXUqKHI5XKaNGlG06aKwtFlhQ4aGRnj7T2Eb7 / 1Qltbh + rVbT4ozDA / Px + xWIyJiQl9 + pxh \ n40YLpNKKWFvvZPBgu7897rty9eol7t6NYvDgQQDk5uZiZGTE8ePh7NmzC5lMxosXSURHR2NpqRD8 \ naN26baljtW / ficOHD9CxY1du377F9OlzPvn834SqqmqpgjOFxWaKH3t7Dylx7eHDP4mMjMPaujz5 \ n + fk0aNDo00xYQEDgP4VgzAkICAj8C7l / / y5370a + lzEnlUqRSIRf6x + Cjg5ADqBQbFRTe4qJid47 \ n9a1Xrz4nTvyuPN6yZafy323atKdNm / Yl + hTf8C9fHsi6dYHcuHGNfv1c6dSpK4GBKzE0NCIvLxcf \ nH3dyc / No3rwl33zzLUCpsvhQVClz3LiJ1K5tD8CCBT1p2fIC6ekRNG / uRIUKRu / 6eD6Ijh278O23 \ nI5THCQmPGTvWl7VrN6Ktrc38 + bPIzf2rDlu5ckVLRBSEqnbq1I2JE8egpqaGi0ubzybK8jHZsOEM \ nc + fqI5MlU7HiTLy8 / oWVxQUEBP6VCP / rCwgICJTCwYP72Lp1EyKRiGrVrBk8eCjz588iJSUFfX0D \ npkyZToUKFZk3bybq6hrcv3 + XV69eMmnSNA4c2EtU1B1q1rRTqie2bduMbt16cunSBQwNjZk1az76 \ n + vr4 + g7B13cMtrY1SE5OxsfHnS1bdrJ2bQC5ubncvHmdQYO8adzYmcWLFxId / QiZTIq39xCaNm3B \ ngQN7OXXqONnZ2eTn57N8eeBbVibwJnx8XDh / PoTjx5ujppaGh8cDHBz + 2XC3jh27MGzYcB4 + NKB1 \ na3OOHz / CkCEjuHr1EkFBG8jPz2fSpHHcuHENe3uHUmTxW6Orq1umUqZIJKJjx8aYmOjw / HnaP7Km \ nevUaMGnSOPr1c8PAwIDU1BSePn2ChkY5tLS0ePnyBRcunMfBod5bxzI2NsbY2JjQ0GCWLl31D8z + \ n03L27GnWrDlEcvJyjIyukpT0LWfPaiISBVK3riP16tVn27bNdO / eC3V1jc89XQEBgX8ZgjEnICAg \ nUIxHjx6yYUMwgYEh6OrqkZqayty5M + jUqSsdOnRm / / 49LFnij5 + fPwDp6WkEBoZw9uwpJk0aR0BA \ nMBYWlgwe7M6DB / epVs2a7OxsbG1rMnLkWNavX0tIyBrGjJlQqkqfRCLBx2cYd + 9GMnq0QtwhMHAl \ nTk4NmDJlBmlpaQwZ4oGTU0NAEZIZGroVHZ2ixbIF3h81NTU2bnTlwYOHlCunQ5Uq / 3ze0oIFvxMb \ na0ZEhB1bt56mUaMKREXd4fLli3h5uQGQlZVNfHwc9vYObNoUSnj4QfT09Hn27Cnx8bHUrGlXqlLm \ n56JqVQt8fIYxduwI8vPlqKqqMmbMBKpXt8HNrTfly1ekTh37N45R + OekbdsOpKSkYG5e9RPP / NPT \ ntGlz8vJyAZDLFWvMy5MoPa8A27dvpX37Tu9lzBWE1goICPy3EYw5AQEBgWJERFzGxaUturqK8Dpd \ nXV3u3PlDaby1b9 + J1asVOTIikQhn52YAWFhYYWhohKWl1etjS548SaBaNWvEYrFSyKFdu45Mnfpm \ nBT65XF5EAfHSpQucO3eaLVs2ApCXl8fTp08QiUQ4OTUQDLmPiFgspnp1689y7 / T0dMLDzcjNHYCu \ n7q / I5S / IzKyFXJ7PwIGedO / eq0j7All8LS0t1q / f / FoWX2EYlKWUWUB + fn6Z1z4FrVu3LZEHV6tW \ n6fl627fvKXJc4OEu4ObN63Tt2uPjTvADWLcuEE1NLVxdi5bBuHHjGqNHD6dt2w5cvXoJNTUNxoz5 \ nnpCQNbx6lcyMGXOIjn6EhcUBYmObAKCunkD37pWUtfWSkp6TlPScUaOGoq9vwNKlq / H39yMqKpKc \ nnGxatmytNPz69OlK69btuH79Cs7OLTh58jjBwWEAxMXFMmPGFOWxgIDAfwPBmBMQEBAohkgkKiYl \ nr6C0c6AQQACFEaCmpqo8X7h + VPFxCjbZKioqyOWKTXXhfKHSmDdvEVWqmBc5d + fOrRK5RQJfFoVD \ nei0sLFFXb4S6 + jm0tBT5dKqqX9OwYQPmz5 / NjRvXeP78GQkJj + nevReWllYkJT0jLS2Nr7 / uQ3x8 \ nHPfv32Xz5o3K8X / + + Udq1KhFx45dlJv9y5cv0rlzR / bvP / jFbPZlMhlz5x7k5Mk1qKlJGDjQ + 4PG \ nK / h5 / hj16940Rl5eHgMGDGTy5OkMHuzOsWPhrF4dzNmzp9iwIYTmzVvSoIEFPXpc4fDh21hZGdOv \ nnzPz5x9FJBLRp88AfvllM8uXBypfMA0ZMgJdXV1kMhmjRw / n0aMHWFpWU6qA7ty5k + fP07hy5RL3 \ n79 / D2ro6Bw7sFRQyBQT + gwj + dwEBAYFiODrW58SJo6SmpgCQmpqCnV0djh0LByA8 / CD29g7vNWZ + \ nfr5SXv7IkUPUqaPob2paiaioOwDKeloAWlpaRSTxGzRoxI4dW5XH9 + 5FAWUbmAJfBgUhvcuXB7B + \ n / WbGjJlAzZq / kZ3tTGpqF8TiuqSnH6F + / UZYWlpx + vQJUlKSMTQ0YsuWjTg5NaRKla / Iz8 / H3Lwq \ n9vYOypp0BQZGYUOjsOT / 0KFD0dbW5v59RZ2599nsr1sXyJYtH8 / oe5fx5s8 / yMqV3bh9 + wTXroUz \ nevTp975PYmICrq69mDt3Bv36dWfhwnn4 + Ljj4eGKp6crJ08eIzExATe33owf / x29enXmhx8mkpOT \ nDSg8XwW / F6Ki7jBy5F + hkA8e3GPoUG8GDOjF3r27lOclElUsLa24du0qL1 + + wMmpAZmZmRw8uJ + L \ nF88TFLSahIR4BgxoTrNm1bCyqvTWdRw / Ho6390C8vQcSHf2I6Oho5bXC3s8uXXpw4MBe8vPzOX78 \ nCG3bdnjvZyYgIPDvRjDmBAQEBIphYWGJu7s3vr5D8PR0Y8WKJYwePYEDB / bi4eFKePhBvvvur8LF \ nxTfLpaGhUY47d27j7t6fa9ci8PIaDICr60Bppp1XvL2 / JiUlBVD0d3BwIibmEV5ebhw / fhRPz8FI \ npVI8PAYUKbBcWs7d52LdukCuXLn0uafxRVFaSG9aWiwODsEYG + + lSpWnSKV5ZGVlUatWbTw8vmHD \ nhl8ICgrFyMiY9PQ0pkyZQZUq5vj5 + bNsWQDVqilCRIsrZRbwMTb7H / s79y7j3bmjBmgV9ODePf2 / \ nda / Hj + Pp1asvtWvb8 / DhA4KCNhASsonU1FRiYhRGUVxcLNWr29CsWQu0tLTYuXPHG + cpl8t5 + PAB \ ny5YFEBgYTEhIEC9eJJXoIxKJUFVVZf36tWhr62BmVgUfn2GYmJQv1ObN809IeMzWrZtYtiyA0NAt \ nNGnStEwV0JYtXbhw4Rznz5 / B1rYGurq67 / ewBAQE / vUIYZYCAgICpdCxYxc6duxS5NzSpatLtCuc \ ny2NqWonQ0K2lXgMYOXJMif7m5lUJDd2iPPbxGQYoNvVBQRuKtP3 + + ynvNM9PidoUXuUAACAASURB \ nVEwmQ0VFpdRrhQUbBN6N0kJ6ZTIp + fky + vYdwIgR3xW5JpEUDeOVSouG8W7deo6tW2 + TkfGU06dv \ n0by5HTk5RcN3i2 / 2Q0LWUK + e01s3 + 6Gh6zh0aD8GBoaUL18BG5saPH4cz88 / LyQ5 + RUaGhpMnDgV \ nQ0NjPD1d2bFjLwBZWVl8 / XUftm / fw5MniSXaFxcxuX / / LosW + ZGTk0PlymZMnjwdHR0dXr0KwMQk \ nknLlriAS5aGpmY2n5zqSkp7z1VdVSUtLIzY2BiMjYzQ1tRCJwMSkAjExjwgJ2URCQgLz5s1ALpez \ natUyIiNvk5eXR7Nm9dHW1iYjI4ONG9dz + PABxGIxu3f / ikgkRktLi0ePHpTIhyv + OTZr1gI1NTXU \ n1NRwdHTizp1bSiO9OFevXsbXdzSRkbcAhfAOFOTKlmyvqalJRkYGurp6ZGRkvLMKqJqaGg0bNsbf \ nfwGTJ08vc / 4CAgJfLoJnTkBAQOAf4GN6MtauPUn79ofp0OEQmzad / VtjZGVl8f333 + Hp6Ya7e3 + O \ nHTtCVFQkvr5D + OabQYwdO5Lnz58D4Os7hGXLfmLwYHc2bAimT5 + uSgMkKyuLXr06I5VKmTdvpjJU \ nNDLyNsOGeePp6YaPjwdZWVnIZDJWrlyqDGvbvXtnmfP7J0hMTMDdvf87tz94cB9JSUnK423bNivD \ n76BoCN674uBQr0RIb6NGzvTo0UdpyBWEQRZQPCRRU1OTzMxMTp / + gx9 + MOXSJTdSUzMYPfoF9 + 8 / \ n5OrVK2Xev / Bmv1OnskMso6IiOX78COvXb8Hff6kyNHjhwvmMGfM969ZtZPjw7 / jppx / R1tbG2ro6 \ nERGK + 54 / f4aGDZugoqLCwoXzSrQvoOBHZO7cGYwY8R2hoVuwsqpGSMgaACwtDTE3v4lY7ImeXmXU \ n1V + xfv1mevbsg0wmIy0tlXnzFpGc / ApDQyO6dOmBuro6ubk5SKVSlixZxMCBnqirq9OzZx / KldOk \ nefNW1K3rSJcuPWjfvhO2tjXQ1zfAwMAQsViFNm3aMWHCVExMKgCKHNf8fMV3Pycn942frUgkLrKu \ nv84rThQ24guHxJb2q6Jbt56MGzeS774bhrV1daUK6KxZ096qAtqmTQfEYrFQhFxA4D + K4JkTEBAQ \ n + AcoK + TtTWRlZTF9 + iSeP39Ofr4MD4 / BLF7sT1xcc9TUbpOfr8HcuV7UqnWX9PSnbNgQjFSah66u \ nHjNmzMXAwJDMzEyWLFnE3buRgAhvbx9atHAhLGw9UVGRmJiUp0oVc + ztHZg2bQILFvyMnp4 + x46F \ ns3jxYsaMmYxIJEIqlbJ2rcJTeO9eFNeuXcXR0Um5UZdIJMqQz7y8PGbMmMLs2Qt49OgBt2 / fRE1N \ njX37dqOtrU1Q0AZyc3MZPnwwDRo0wtT07TlCoDCWgoPDyvR2fGoOHNiLhYUVxsbGAISErCUnJ4dB \ ng7xYtuwnXr58ASi8Lvv370FTU4uoqDtlKg5evnyRr7 / 2UIb0isUqVK9uw + jR4 / n55x / x8HBFJpNR \ nt64j48dPAhSGQfEXA3p6 + tSubY + f3yTU1LqSmvo9aWkd0dZeyowZGtjY2LxxXW3adOD06ZNv3Ozf \ nvHmN5s1boa6uDqjj7Nyc3Nwcbt26wbRpE5Xt8vKkALi4tOX48SM4Ojpx9Gg4vXv3IzMzkz / + uFlq \ n + wIyMtJJT09X5qR26NCZadMUa1dRUWHePB8cHZ2Ii7Nm4MC + LF36ExkZGdjY1EAikdC4sTNyuRx3 \ ndy927tyGlVU1rl + / yuPH8URHP2Tt2gBycnLYsCEYFRUVIiNvU6FCRVq0aMW2bZtp0qQZv / 22nRcv \ nkl6LE8k5cuQQ9vZ1AahY0ZSoqDs0atSEU6f + ynGVy + WcPXuKQYO8yMrK5Nq1qwwbNpLc3FzMzKoo \ n21WrVp0WLVyIjLzzWgDlFwCaNm0BgLf3EGXbEyeOKr37vXv3p3fvv148FPf6F1BcBRQUdexyc3P / \ nNeHYpSGUURAQ + PsIxpyAgIDAv5SLF89jbFyeRYuWAoqNbl6ejOxsCxITF6Cjswsdnd1cvtyaAQOa \ nsmbNegD27t3Fpk0b8PUdzfr1a9HR0VGGf6alpZGcnMylS7 + jrq5O / foNSU9PY8OGYB49esjo0cMB \ nxebK1LSici4FZRWg9I16AXK5nNjYPzEyMsbWtgbR0Q + RSFRRUVHh8uULPHz4QOm9y8jIID4 + 7p2N \ nuU + xGZXJZMyePY1796KoWtWSadNmsXnzRs6fP0NOTg52dnWYMGEqJ04cJSoqktmzf0BdXZ1OnbqR \ nlZVJWFgoV65cIi8vD7lcjlQq5caNa6iqqnLnzi3k8nxq17bn2rWrJRQHC6tGFg + VnTXLr8hxaOg6 \ njhw5VCTEsW9fV6ZNm0BenhQzMzO8vL5n3DgbqlZtTUzMYaTSZkycCHPnTlGOV9pm / + bN63Tu3O0t \ nz7fkNblcjra2DiEhm0tcc3Zuzpo1q0hNTeXevSjq1atPZmYGOjqlt39fqlQxx8jIGEtLS0JDgzE3 \ n / wpQhJ6qqEiUirEFf2SyfCwsrOjXz43582cRGrqV4OA13Lt3lytXLjF37gwyMtKxsamBTCbD3Pwr \ nYmNjCQ8 / RL169enRow8AXl5DWLBgNmvXauPgUK + IR83KyppRo4aSnJyMl9dgjIyMSUxMKJYzp / jb \ nw + Mbfv75R9zd + yMWq + DtPYTmzVu + 9Zm / D1FR0cyaNZ3s7GT09P5efuHHYvLk8Tx79pTc3Bz69nWl \ nW7eetG3bjO7de3PlyiXGjp1AYmICO3b8glSaR82adowbNwmxWIy / / 4JSX4oICAgoEIw5AQEBgX8p \ nVlbWrFy5lNWrl9OkSTPs7euipiYBLAFIS + tMhQpzaNjwW549e8r06ZN4 + fIFeXl5VKpUGVB4iWbP \ n / ssw0NHR4dy5MyQmJmBoaMTRo4dJTk7mq6 + qYmFhRUBAsLKtiYkOz5 + nAQoBlwKcnZsTGLiSMWNG \ ncO3aVeLjY / H09CE5 + RWBgasASEp6rlTjTEp6zrhxo7h58xqNGjkzZ84CQKHquWLFYuRyOY0bN2XY \ nsJHK82Fh60uc / xTExv7J5MnTsbOrg5 / fbHbu3EHv3v3x8vIBYM6c6Zw7d4ZWrdqwc + d2fH3HYGNj \ nC8Avv2wCwM / PnylTvkdNTY379 + 9x8eLvqKmp0aVLN / bt28PJk8eRSvOIjo7G0rIaQIl6a2 + icIij \ nTCbF23sgtrY1aNGilbLWWlDQalRUnjJ8eAb791egRo35fPONEzExz2nZ0qVEnqNMJmP58gPs2LEG \ niSSTNWuCS7u1krp1HZg3bxYDB3oik0k5d + 4M3bv3olKlSpw4cZRWrdogl8t58OA + 1tbV0dTUxNa2 \ nJkuXLsLZuRkikQgtLe0S7R8 + fKAUbJHLQUtLGx0dXW7cuI69fV0OHdqvzAeTy + XKlwinT59EW1uH \ nrl17cvXqFe7diyI3N5fHj + MBOHz4AHXrOpKamoqOji6XLv3O8 + fPOHXqGDVq1GTECB8qVjTF2ro6 \ nGRnp + PqO4ddff0Ff3wBQeAFVVSU0bdqcqVNnKp + DvX1dtmwpGR5c2KNWmMJ5tI6OTjg6OgGKvMXC \ n476JzMxMJk8eT1paKjKZFB + fYTRt2oLExATGjx9FnToO3Lp1AxOT8vj5 / YS6ujoBAdvx9w8gL0 + b \ nvLxGmJmdf6d7fSomT56Orq4uOTnZ + Ph40LKlC9nZ2dSqZYev72hiYqLZtCmUgACFx9TffwHh4Qfp \ n0KEzQ4YML1KG4eHDB1hZVfus6xEQ + DchGHMCAgIC / 1KqVDEnOHgTv / 9 + lqCgVdSrVx8NDTVGj37K \ nwYM7AClZWVCnjjW + vkNwdR2Es3Mzrl27SnDwGuU4pZUvqF27LjNnzkNdXZ1z586wa9cO4uLiuHXr \ nD + zsaiOVSnnw4AF6ehVK9NXU1MTY2JiEhAS6devJ2LETychIZ8GCOXh6DqZ / fzdcXXsRHf0IuVzO \ n3btRhIRs4siRw6xcuYQnTxKRSCSsWLGENWvWY2xswtixvpw5c5IaNWoRELCC4OAwtLV1lOebNWv5 \ nSZ5x + fIVsLOrAyiKwW / fvhVTU1M2bdpAbm4OqampWFpaKQvDF89zKl + + IgcO7KV2bXsePLjPjRvX \ niIuLRUVFheXLF2Nu / hX6 + vqoq2uUqTj4NkoLcZTLea3EuJqMjHQyM7No2LAxkydPoksXMzZv3oC7 \ n + xiGDvVm4sQfiownl8sZOnQ7u3e7AZ2oVOkI9 + 49wcmp7PDV6tVtad26LZ6erhgYGFKzZi1EIpg + \ nfS7 + / gsIDQ1GKpXSpk07rK2rAwqDdfr0ySxfHqgc5969e + zbt6dI + wJjTiRSFE1v3NiZVauWkp2d \ nTeXKZsqQQpFIhJqaGt7eX5OWloZYrIKXlxuvXr3CxaUtzs7NmDZtItnZWaioqNCjRx82bAjGyakh \ nO3b8gpaWFjdv3iA9PQ25XI6lZTVOnz5JQkI89 + 7dVd4DFN48FRWJUlF20CBvXFzavPNnVhY7d / 7O \ nlSspmJmJGTq0zTuFFqqrq + PntwhNTS2Sk5MZOtRLGZYZHx / HrFl + TJw4lenTJ3Pq1HHatevIypUr \ nePz4J7KznTA2Xkhy8gdP / YPYvn0LZ84oQs2fPXtGXFwcYrGYli1bA3D16iXu3o1i8OBBAOTk5GBk \ nZAQoyjDs2bMLmUzGixdJxMQ8Eow5AYFCCMacgICAwL + UpKQkdHR0aNeuI1pa2uzbtxsAHZ1X7Nnj \ nyeHDBzhxwhGAzMwMjI1NAIVQRwH16zdk585tjBo1DlCEWdaqVRs / v9l4eX2NuroaKioquLt7Y2pa \ nmaVL / UlPT0cmk / LNN960bFm6VH2bNh1YsmQRaWm1uHHjOtra2mhoqGNmZoZEImHOnAUsXryI58 + f \ nkZeXh6qqGj179mHr1jBGjRqKTCZ7HaanjYqKCm3bduD69WuIRCIcHOopw8IKzn8qY65wCFxBaN7P \ nPy9k3bqNmJiUJzh4Dbm5uaW2B7Czs2PLljCmTJnB / v17OHBgL + XLl8fWtiZRUZGEhGzi1auXeHq6 \ nfcgsSz07f / 5sFiz4CSurahw8uI9r164CULu2PYmJiUREXEEmk2FhYVmk39OnTwgPt6dA5j8hoS1b \ nt27HyenNuXXu7t64u5cs1P3TT8tKbd + yZWtOny5aqkIsFpfavsCzlZiYwLlzp5W5ZAUkJiZw585t \ ntLV1ycvLe12K4SdiY2NYtMiPq1cv8 + RJIkuXBqCjo4Ov7xBWrVrKzZs3aN68JRKJBIlEFR0dbVas \ nWMOCBXPQ1NRETU0NY2MTzM2 / omvX7oAi5PVThPSuXXuC2bNrkZ1tBaQQHb2LRYt6vbWfXC4nIGAF \ nN25cRywWkZT0nFevXgJgalpZaQzb2NiSmJhAeno6 + fnZZGcrvICpqd0xMNhX5vifmoiIK1y9epnA \ nwBDU1dUZOfJbcnNzUFNTL / KcO3bswrffjijSt6AMw9q1G9HW1mb + / FlFfh4FBAQENUsBAQGBfy2P \ nHj1gyBBPvLzcWL9 + LR4e3wAKg8zDw5UdO35h5MixgGIzPG3aRL75ZhD6 + vrKTZKHxzekpaXh7t4f \ nT083rl27ir6 + PrNn + 6GlpUl + vpy8PCkqKhKsrauzYsUa1q / fzMaN2 + jbty8Ay5cHKkMLC + jTpz8H \ nD56gcWNngoJWcerUcczMzGnRwgUAW9uaBAaG4OMzDBeXNmhoaCASiaha1ZLJk6czZsz3NGjQCC0t \ n7dcjllX8XP5JhRuePn3CrVt / AAXF3BXKgLq6emRmZioLvUOBPHx6kWMrq + q8fPkCO7vaqKiooKam \ nRqNGTbh + / RpffVUVN7feTJs2merV32wovYm6dR04ffokOTk5ZGZmcO7cGQCysjIwNDRCKpVy + PCB \ nIn06dOjE7NnTSi0CrpDPzyh0Ro6qqrREu09JZmYm3303HG / vgXh4DODsWYXXJiBgOY8fx + Pl5caq \ nVQqjb / PmDUyaNI6cnGzEYhEbN25DW1uHU6eOM3fuzFKVLwuL9ri7e9O0aXN8fb8jOHgTlSubAYq8 \ n0KCgUEaMGM20afMZNOggTZv + jKPjcZo1O8D27Rc + 6pqPHs17bcgB6HHmzLsJ + YSHHyQlJZng4DBC \ nQjZjYGCoVNJUUytcqkIFmUxRqkJbWwUTk98BUFePQ + / zaAYBKHMl1dXViYmJ5vbtWyXa1KvXgBMn \ njvHq1StAoer65MkTMjMzS5RhEBAQKIrgmRMQEPi / 4ODBfdSv30ipRPgl0KBBo1IVBr / + 2r1EHlnT \ npi2UoVeFKSs3x9HRqUQdu / ehuNdw164dvHz5gqioO9ja1iQzMwN1dQ1lWGJQ0AmOH5fy8uVTmjR5 \ nQrNmDVmyxJ + UlGS0tXU4ejScPn0GUKNGzVLPfwpEIhHm5l / x22 / bWLBgNlWrWtKzZx + l8WtoaETN \ nmnbK9p06dcXf3w8NDQ1Wrw6mW7eerF8fRJ06dVFX1wBg7doN6OrqYW1tS1hYCGpq6mRnZzFixCjl \ nWKWJkLyJskIcBw8eypAhnujr61Orlp0yRxEUHs2goNW0bdu + xHiGhka4u / / OmjVR5ORUplatPfj6 \ nNvw7j / BvU1bo4LBho4iOfqQUSbl06QLx8XEsWPATo0ePIC8vjxs3rmFjY8vjx / Gkp6eVqnwJRUV7 \ noGS4cYsWrQDYuTOOJ0 / yuHBBExgHKF4wzJ59iDZtXmJgYPhR1qypmVfkWEvr3TxMGRkZGBgYoqKi \ nQkTEFZ48SXxje21tbSpUMOabb2JISIgjNvYMiYnab + zzKWnYsAm7dv3KwIF9qVLlK + zsagNFvdxV \ nq1rg4zOMsWNHkJ8vRyKRMG7cRGrWtFOWYShfvuJbyzAICPw / IhhzAgIC / xcUl5X / cvlwL9Xu3eeI \ niUnDxaUatWv / vdyTR48esHLlUsRiERKJKuPHT0Yuz2fx4kXk5OSgoaHB4sUrEYlEPHz4hN27a5OT \ nY0GlSuEsXhxN + / YuDB3qy6hRQ5HL5TRp0oymTZsDlHn + Y6y9MBUrmrJp044S5318himLtxemRQsX \ npecRSsrFFzbSWrduW0Lk5NSpCB48eEbr1nWoWvXdFDwLKCvEsUBlsTg3b16nVas2hTyfRZk2rQtf \ nfx3D7dtnaNmyFTo6Ou81nw + lrNDB4gbXpUsXuHz5IjdvXuf586eIRCLi4 + MQi1VIT0974z0Ki / ZA \ nyRBZVVVFoe6oKG1EonwgnwJDDuDpUysSEp5 + NGNu7FhbHj7cRmRkPUxN7 / Ldd2 / + XVQw33btOjBx \ n4lg8PAZgY1ODr76yKHNNBcd + fn5MmDAJkQjq12 / EkyePPsoa / g6qqqr4 + 5cMrS1erqW0nxkouwyD \ ngICAgg8y5hITE5kwYQIvX75EJBLRr18 / 3N3dSU5OZsyYMSQkJFC5cmWWLFmCrq7ux5qzgIDA / yGl \ n1Vw7evQwfn7 + AFy + fIHffvuVuXN / xM9vNnfvRiISiejcuRvly1dQysoXeFWiox + xYsVisrKy0NPT \ nZ + rUGRgZGePrOwQbG1tu3LhOVlYmP / wwiw0bQoiOfkTr1m3x8RlW6lzeR53wQ9i + ffcH9Z8xYy9B \ nQa2QSk1Zu / YMy5bdoFWr93 / bXZbXMDAwpMhxx45dOHlSlZwcxQY0ISGAhIS7xMbG0aZNe9q0Kek5 \ natOmPS1auJCYmKDMA4QPX / s / wfbtv7NxYyoAbm7aDBjgDMDChQdZscKB7OxmVKkSzurVKTRoUOOj \ n3lsul7NmzTHCw3eRlfWAwMA1b2zfsGFtLC2rftQ5vCuFQwdVVFTo27dbmUW4Bw70pEGDRkycOEaZ \ nS7dlSxhaWtro6paufAlFPXGKENm / QktzcnKYPn0Sv / yyCyOjLF68ADAG7gOKHLRata5gadn6o63Z \ nzs6KgwdNefgwhipV7JTKmWVRYOzo6ekXUZktTIFSJoCr60Dlv2vVqsX69X + VgBg + fNSHTP2zcPz4 \ nTVaufExOjoQOHcDX95 / 5HSsg8KXxQcacRCJhypQp1KhRg4yMDHr16oWzszO / / vorTZo0wcfHhzVr \ n1rBmzRrGjx / / seYsICDwf0hpNdeCgwNJSVHUUNq / fy9dunTn / v17JCU9V276MjLS0dLS5tdftyll \ n5aVSKUuWLOLHH / 8qkL1mzSomT56OSCRCVVWNtWs3sH37ViZNGkdIyCZ0dHTp378H / fu7ERFxpcRc \ nvgSkUim7d2shlZoC8PRpMzZt2v63jLn3wcxMBKQBCu9P5cr3MDV1KLP93bt / MmLETSIja2Fmdp45 \ nc4xp167uJ53jx + Datbv88IMRr14pwvuioq5hZXUHR0cbtm5VIztbYSTExXVg7dptH92YmzlzLwEB \ nHZDLe6Ki8oywsONMnmz + 3uMkJiYUMZxAUR7h0KH9jB79cf4vLyt0UFNTs0i4aMOGjQgKCqBOnbqI \ nRCKeP3 + GRKLIExOJREyZMhN / f78SypcF1wto3bodP / 44jx07flGWxijg + + / t8fVdS4UKSWhoHKdK \ nlaqULy9hzJja76U6 + i5oampSu3bNjzpmYY4cucrNm89p1coSR8fqn + w + n5qkpBeMH59KfLyihuXN \ nm9FUqXKB7t3LLmwvIPD / ygcJoJiYmFCjhuI / Iy0tLaysrHj69CnHjx + nZ8 + eAPTs2ZOjR4 + + aRgB \ nAQGBt2JlZc2VKxdZvXo5N25cR0tLm / btO3H48AHS0tK4ffsWjRo1wdS0EgkJj1myZBEXL / 6OpqaW \ ncoyCN / WxsTFERysKZHt5ubFhQzDPnz9XtisI67O0tMLS0gpDQyNUVVWpVKkyz549K3UuXwIikQix \ nOL / IueLHn4IRI9owcOCvWFjsws7uF2bN0kJXt2xFhh9 / / IObN93Iy7MnOron / v7xn3yOH4OLFx / x \ n6tVfnqHkZAcuX / 4TuVxOfrHHnJ / / 8UVdzp3TRC5XyLnLZOU5c0bto41ta1vjoxhyhUMHo6Ii8fAY \ nwKFD + 5Whg3p6 + tSubY + 7e39WrVpG / fqNaNu2AzNnTgFg + vRJZGVl4uo6EC8vH6ytqxMYGEJo6Bbm \ nz1 + EtrbiZ7G4aE / t2vaEhW0jODiMypXNmDVrPqqqqvz44zwWLZqBk5MtFy82ZPPmDhgb / 0ZWVhih \ noStIS1OEcvr6DiEqKhKA5ORk + vZVCMs8evQQHx8PvLzc8PBwLVLnruD8okXzyS / + BfgErF59DB + f \ nSvz4Y1 / 69NEmOPjkJ7 / np6Jv367Ex9dHReUppqajyM624ObNlM89LQGBfyUfLWcuPj6eyMhI6tSp \ nw4sXL5R5KcbGxrxQxC8ICAgI / G2K11xzcmpAly49mDhxDGpqari4KGo26erqEhq6lYsXz7Nr168c \ nP36EyZOnA39tJOVyShTILkxBLk2Bl64AkUiETCYrdS6enoM / 8RP4cFRUVPj6axnLlt0lK8sac / ND \ n + PhYvr3jByIWi / n5597v3D49vagRkpb2cb0jnwpHR3P09G6QklKgiPkHDg6KUg09emQSFPSYvLzK \ nVKx4mkGDKn / 0 + + vo5BQ51tb + cAn3x4 / jmTZtIm3adOD69QgWLlzMunWBPH36hMTEBJ4 + fUK / fq5K \ nkZr169cSHn4QfX0DypevgI1NjSLhf + 8SOjhjxlwA0tJSefXqJX37DqBv348jgpOdnc2aNSd58eIV \ ncXGxzJw5X1mj7ezZU2zatIGxYydgb + / AunWBhISsYdSocYhEolJVVXfv / pW + fV1p164DUqkUmUxG \ nTEw0x48fKbUA9qdk1y4ZmZkKb1x6ug07d97Cu2Sa5Wfj7NnTxMQ8YuBAz7e2VVFRoWLFazx50pbE \ nxGWoqcVRo8aX8dJMQOCf5qMYcxkZGYwaNYqpU6cq34oVUNYvQAEBAYH3obh64v79ezA2NsbY2JjQ \ n0GCWLl0FQEpKMhKJhBYtXKhSxZy5cxVhV4Vl5c3NvyI5 + VWRAtlxcbEl6nGVhlwuL7P + 25fAuHHt \ nadz4Bvfv36J16zqYmVX83FMqQbNmIs6dUxg + kEHDhq8 + 95TeiQYNajFt2mk2b76HXC7C1VWDxo0V \ nCqMzZ3bF0fEcf / 55DhcXG2rV + vhG9LhxFjx5spPoaBuqVYtk / Hirt3d6A7GxMcycOZWpU2eRmprC \ n9esRymtxcbEsXx5IRkY6bm696dmzL / fuRXHq1HFCQ7eSl5eHt / dAbG3 / XijpvHn7CQszJC9Pnfbt \ nj / 6PvfMOqKn / 4 / jrdttLQ0h2KDREZkY / hOxRZBXx8JgP2VtWZh57RzYRHnvzGI + RyCoy00BG2rfu \ n7f7 + uE + XFIoQz3n9wznne77ne86593Y + 5 / P5vt8sXuySK4PtTyGVSunRYzdnzvRCVfU5Zcv6I5Mp \ nXhzkRh0zJ6ysbP7N7D + nYcNGlChR8pMG2N8SVdWs2T + xWPbNj5kX6tVr8J6Y0acRiUTMmqXG4sUr \ nSEzcQps2g9DWljJu3EgkEglRUZE0aOConAt4 + fJFpSdkZrltfpfICggUVL46mEtPT2fIkCG0adOG \ nJk2aAGBsbExsbCwmJia8ePECI6PPK0GZmHxfJS2B74twf39tvsf9vXs3hNGj56CiooKqqire3t6Y \ nmOjRsWN7Nm7cSPXqCrnrV6 + iGDVqnLKsadSokZiY6OHm1glf39loaWmxbds2li5dwvTp00lISEAm \ nk + Hh4UHNmraoqYkxNNTGxEQPQ0MdNDRUleenpibGyEiHV6 + ilGNRU1NjypQpP9VnvG3berlu + yPO \ na + rUDpQseZIrV4IpVUrO2LHuiMXi7z6OL2H48JYMH57ztt69czZgz4lt27ahqalJu3btctU + MjIS \ nP7 / p3LixnaioaEqUaJmrh9mc7q9EosPbt3FMmDCKJUuWYG5uzqVLl5TfBV1dTZycGmNqaggYUrhw \ nYUQiCQ8fhtG8eTOKF1f8zXdyaoyOjkaeP0MXLoSwcqUdqakKb76AADsaN75Av365v345cf58MGfO \ nNAcUc + 7S0ozYt + 8B9epZoa + vzfPnCYjFKsrxpqTooKYmxsREDy0tDQoVEIHtwgAAIABJREFU0sTE \ nRA + ZLAkVFREmJnp07epK / fq1OX36NGPGDMPb2xtdXU06duyAl5fXV403r / zxhynDhl0kNTUGE5NV \ nqKtLWbz4FlOmTOHcuXP8 + eefyGQyDA0NWb9 + PXFxcYwbN47IyEi0tLSYOnUqFhYWLF68mOjoaCIj \ nI4mJicHDw4MePRSB6bp16wgMDATAxcUFDw8PIiMj6dOnD3Z2dgQHB2NlZUX79u1ZsmQJb968Ye7c \ nudjY2BAYGMjt27eZOHEiL1 + + ZPLkyURGKspSp0yZgp3du3m0IhF4eDjSuHF5 + vc / wJw5nQgMDOTR \ no / vs2bMHdXV1mjdvzu + / 90FNTY2tW / 3ZvHkjmpqarFq1in37Ahg4cGD2i / QL8TP9zRH4tnxVMCeX \ nyxk / fjzm5ub07NlTub5Ro0bs3r2bvn37smfPHmWQ9yliYz8tMSzw82Jioifc31 + Y73V / LSxsWbt2 \ nc5Z1sbEJnDv3D82bt1aOwdjYjJUr / bO1s7Orw8aNAQDEx6dhbGzGggXLs7Xz9V2m / H / ZspWYNm2u \ nsu / MbUWKlMpxLL8aP / K7265dDTLjmNevkz / d + BdDJpPRuLGiJC + 31 / / 16ySkUhlJSTIMDIqSmCj9 \ nrHT / x + 7v69dJaGvrULhwUU6fPo + + fhHi4pKRSKTExiaQlCRBS0us3Fcuhxcv3pKUlEZiYqpyfXKy \ nhMRESZ4 / Q9evPyY19X2POH0ePkz46s + iVCpHVTUeqdIfXY5UmkJsbAKJiRJUVNTR0dHl + PGz2NpW \ nZcuWHVhZVSU2NgFj4yJcvBhEsWJl2LVrLxkZcmJjE4iKisTMrATNm7fjwYMnBAffpEaNWqxbN5xW \ nrVwwNDQkPv4tyckpFCv2bbPgTZvasmTJWdasWc + ffy7BxKQI8 + fPZtOm7axevZxly9ZQrJgpCQmK \ na7lgwXzKlq2At / dsgoODGD58BOvWbSEpSUJ4 + IMsmVcnp9aEh98jIGAnq1atJyNDTt + + HlSoUAVd \ nXT0iIiLw9p7FsGFj6dPHncDAvSxevJpz586waNFSfHzmkZCQSkpKGrGxCUyaNAVr66pMmTKLjIwM \ nUlKSs9xfuVzx2c / 8XMfGJpCQkErVqvakpMhJSZFQsmRpbt26R0JCAuHh4bi4uAKQni7F2trml / xN \ nzkR4rvp1 + ZIg / auCuatXr / LXX39hYWGhfHvo5eVF3759GTp0KLt27VJaEwgICAjkN56e3dHW1mbI \ nkI + kQvIZuVzO / v0XiI6Ox9m5KqVKmX6X434JP6NJ + q9ETEw0w4cPxtKyMvfuhVGmTDkmTvTm0aNH \ nH7XEqFjRghs3QmjSpCnJycloaWnTpUt3wsPvMneuDxKJBDOzEowdOwk9PT3CwkLx8ZmKSCSiZs38 \ nNf1WU1Nj5sy5eHkNQktLC2Pjd5 + jD73gFIiwsbFlzpyZ9OjRC6lUyoUL52jbtkOej92kSTUsLfcR \ nFqZQMixe / CTNm1f40lNRUrlyRbp1C2TLFg3kcglaWnEMHPiu7O9T6phdunRn4sSx / PXXburUqUem \ n5 + HJk8c5evQgqqqqGBsXxt3dEz09vRwNsL91MAfw + nU0SUmvGDduOFKpDIlEwp07t7Czq0axYorf \ nq0xPwZs3Q5gxYy4A1arZ8 / btW5KTkxCJRNStWw9VVVUKFTLA0NCI169fcePGdRo0 + B8aGpqAwncx \ nJOQa9eo1xNTUjHLlFGW9ZcuWw96 + 5r / / N + fZs + hs4wwODmLSpGmAYk5tbkWk1NXVlP9XUREjkylK \ nSe3tazFlyow8Xy8BgV + Brwrm7O3tCQsLy3Hb + vXrv6ZrAQEBgc / i57fpux5v3Li9 + Ps7IZUWZe3a \ nA6xZk4SNzZeZbn9rfh2T9J + Xp08jGDduMlZWNvj4TGXXrh2cPXsaHx9fDAyyW2JIpVLWrNkAgJ / f \ nKjKnm0 + fPhkvr9HZRDl8fLzx8hqDrW1Vli1b + Nnx7NmzC01NzWxCHDlZEYhEIjQ1NZkz50 + GDRuA \ nh0cf5XgUc + Hf7f / 2bRwSiQRLy8rUq9cADw83jIyMMTcvn20efW4wNDRg / Xprli3bjkymQufOpbCy \ n + rr5f5nMnduBzp1vEReXSL16u9HUVAQm74u0fOiVCFCqVBn8 / bcqlzNN5Xv06EmPHj2ztf + YAfb3 \ nwNm5FRMmjFFmbs6fP8uJE0dzbJtzYI7S / gEUwZZMJsumfyCXy5XrsgZZivLz9 / fNy7HzgkgkokoV \ na3x9ZyuzpCkpKbx8GUvJknm35RAQ + BnJNzVLAQEBgV + Z + Pi3BAaaIpUq3q4 / ftyK9et34Ov7bYK5 \ ngmCS3rp1S7p16 / 1Nzu + / QJEiRbGysgGgWbMW + Pv78fDhA4YNGwBARkYGxsbvTNEbN26arY + kpEQS \ nExOziXIkJmaur / pv / y25ePHCJ8fTrl3uFEVNTYsrzah1dXVZvVoRYGaKV3h69s3SXl1dAwMDhdVE \ nly498PTsS2pq6r + frS8TQClXrgTz5pX4on0 / h7291TfpFxSCcNu3n0NVVYSbmyPq6vlnD5Ebqlev \ nyZgxwxkwoC + gRnz8W8zNyzN / / ixiYqIxNS1OfPxb9PULYWNjx9Gjh + jZsw / BwUEYGBiira2DXC4n \ nIeEt7u6d3wvwRdjaVmXGDG + 6d / cgI0POqVPHcXZupQzKMr0IczfOGuzevZNOnbogk8lITU3Jkp17 \ nP3DM / P / HBPUMDAwYP34KU6aMIy0tHYC + fQcIwZzAfwYhmBMQEBAogBQEk / QuXdrTurUr + vr6P / JS \ n / LS8 / + Apl8vR0dH5pCWGpuY7wZLExAQCAwO4c + cWL1 / GMmHCaCZO9GbgwN / IyJAxcOBvpKamKlX8 \ nEhLiefkylpSUFLS0tFi + fDHnz59FLBZTq1ZtBgz4g7VrV6KtrUOXLt0JCwuld + / pyGTyLCWaMpmM \ nFSuWcP36VdLS0unQwZW2bTsQHByEn98qDAwMefToARYWlZg0aRoBAduIjY2lc + euiMW6lC9fjPj4 \ nl6SlpeHs3IoKFSy + 3QUuYCQmJtKp00GCgjwAKfv3 + 7N5s6syS / U9KFOmLL / 91h9PT0 / S0qSoqqri \ n5TWaUaPGM378SDIy5BgZGeHruwRPz774 + EzFw6MLWlpaTJgwBcj83GYPmipWtKRFi1b89psHADVq \ n1OLmzRs0adIMkUiEpWUlLC0rMXOm92eDsaFDRzBnzgwOHNiLiooKI0aMo0qVd0F2poXF + y8WnJ1b \ n4ezcStlmzpwFyv9Xq2avfOkgIPBfQwjmBAQEBHKBvn4hOnaMYf36GKTSYpQuvZ + ePb9 + Hs / HMDev \ nwNKlC1m + fDF169bH1raq0iTd2bk1t2 / fYtKkaSQmJipN0uvUqUfNmrWVfeRkkg7ZM0I5maQDlCxZ \ nkufPnxWYYM7JqT7Hjp390cPINc + fP1PaXxw7dpgqVazYt29Pri0x4uLe0KlTVyIiIpBIUtm1K4DU \ n1JR / Pxur6d69E8uWLWLlSj / Wrl3F4cP72b59Mx06uHL27Gm2bNkFoLTkeL880sfHm6lTvSld2iJL \ nieb + / XuV2bi0tDQGDOij / Ezdv3 + PTZsCMDYuTP / + vbl5M4TWrduxaNFqrl / / i4wMQyIjT7JhgwG2 \ ntt / uu1FQ2bDhLEFBPQExoMrp093Yu / ckLi7 / y / djfWxO5s2bN9i8eT0gx9KyEiNGjEVNTQ0Xl9Y0 \ nauTEpUsXSEh4J9yiq6tLr159cHRsDLz7jsXERHPunCKgmj17AdOmTSQlJQWAUaPGY2VlQ9 + + PYmI \ neMy4cSNo2bINwcFBbNu2mTlzFhAf / 5axY4cTHR2NpqYWDx7cx9m5FdHRUcyc6Z2jR + GX8PBhJMuX \ nh5CRIaZLl7LY22d9efCz / WYICHwJX2faIiAgIPAfYsaMtqxaFcK0aTvZtcvim86XyzQmNzcvz + rV \ ny1i / fg0tWrThyJFDnDhxJJtJup1ddfbs2cWsWdOUfXxokr5u3RbWrduCv / 82fH0XK9t9yiQ90 + Kh \ nYPBzeZaWKlWa3bt30L27K4mJibi4uDFt2mxWrFhMz55d6dWrK7dv3 / jo / rq6elhZ2TB + / BRiYqLx \ n919DerqU4cMV3mdt2rTj4cP7tGjRmEOH9pGQkMjz58 / Q0dFFXV0DH5 + pnDlzSilYkUlmiaa9vT2g \ nKNHM5MqVixw + fIBevbrSr19P4uPfEhn5FJFIRKVKVShc2ASRSET58hWJiYnh8uWbpKVpkXlvYmIa \ nsW / fgxzPJzExkd27d37RtXRxaU18 / Nsv2vdX5enTCDp0cGXTpgB0dHTYunUTM2d6M3XqLPbt24dM \ nJlNeb5FIhJ6eHv7 + 2 + jYsRMLF85Xrs9K9u + YkZERCxYsxc9vE97eM / nzT0Wpd / / + g7GxsWPdui10 \ n6tQ1yz5r167EwqIS / v5b6ddvINOnTwIUnnuXLoVQpkxr5s5dxLp1qz86p + 5zvH79hp49b + Lv78bG \ nja707fuasLDHnz0fAYFfDSEzJyAgIJBLRCIRrVo5fJdjFRST9IJIcnIyY8eOICEhHplMym + / 9ade \ nvYZs2bIBdXV1XFzcWLRoPg8e3GfhwuVcvXqFAwf + UqrnfS / EYjETJ2Y9ZoUKFVmyZFW2tosXr8yy \ n7Orahb / / Pq3cZ9iwUezatYPw8LtKURszs5I0auSUo4rf6tX + BAVd5vTpEwQG7mDhwuXZ2mTyoRCF \ nl9coatSonWVdcHBQlkBfLFZBJpNSpIghItH7D + MS9D6irJ2QEM / u3QG0b + + SbZtUqigJ / BCZTIZY \ nLM5xrlRBw929Pvv3r / + 3zFKGo + MW2rbNfq75xYdzMtevX0Px4maUKFESUJQlBgbuoFOnLgA0adJM \ n + e / ixb65Pk56upQFC2Zz / 344KioqREY + BT4tYPKhUmZMTAxubu2JjIwhMbE2s2e7cfjwegoXLsSb \ nN68pXPhdpcDBg / u4ezeUYcNGAXDkyEF27tyOVJrOw4cPOHnyAs2bO1K5cm2Sk6MpWXIX0dHLiIxs \ nSkDASiIjvUlNTcHBIXcG5QICPztCMCcgICBQAHn48D5Lly5ERUWEqqoqI0aMA8DJqTlv376lVKky \ nAMTGxjJzpjdyuSKD9vvvgwFo0aI18 + b5KAVQpk2bzcKF80hMTEQmk9K5c9dswdyHKoUFFQ0NDXx8 \ n5qKtrUNcXBy / / 96LevUaYmtbjW3bNuHi4kZYWChSqRSpVEpIyDWqVq32RccaOfIPpkyZ8Unp9EGD \ n + jJo0DAsLbOKfaSlpfHPP + epU + fLXgB8WKZpY2NLePhdbt9 + xMaNMaSkpPDixZVsKn6FC5uQmppC \ nnToOWFvb0rlzW0Dx8C2XK0RNdHX1uHr1KqVKVeTo0UPKY9asWYfAwJ3Y2dmjqqpKRMQTihQpCsCL \ nF8 / x8OiCSCQiLU1CqVKl2bRpFerqbyhduiOxsb9Tt + 4btLTeZCmla9asBSdOHCUtTcLz589p3tyR \ nFi1aU7p0WZYtW6hU8ty + fQ / z5vkQFHQFNTVVtLV1cHHpTJEixYiNfcGgQX3R1y / EkiWrkEgkzJ8 / \ ni7t3QxGLxQwaNIxq1ew5eHAf5879jUQiISoqkgYNHBkwYMgXXf + 8oqurS0BAS7Zt24Oamgg3t46o \ nqalx9uxpSpYsTZkyZfP1eB / OydTV1cuSvXxfbfJj + 4rFYjIyFEFZRkYGUml6trbbt2 / G2LgwEydO \ nQyaT0ahR3VyN7 / 1gLyUlmebNf2PFCglyuS4gIiTEg5o11yGVZs3MvT / mx48fcfLkMVas8EMsFuPo \ nWJujRw + RmpqKjY01u3aNQF9 / N4UK7eD16y6EhR3C3b0LzZq1IDAwIFfjFBD42RGCOQEBAYECSM2a \ ntbPMf8vkxo3rtG7dTrlcvnyFHC0aGjZsRMOGjZTLuckI2dlVx86uunJ548aNBdKYVi6Xs2LFEkJC \ nrqOiIuLly1jevHmNhYUld + + GkpychLq6OpaWlQgLC + XGjevKt / x5Pc6cOX9 + NiuU03ZT0 + K4u3ty \ n8eKXB3OZZZqzZk2lTJlytG / vwo4dW / HyesqDB4qytqJFZYwc6YWamhhQqPhpa2szZsxw0tLSADmD \ nB3spx5k51HHjJjN16lRksgxq1KitPIfWrdsRExNN797dkcvlGBoaMXPmXJ49iyEy8imBgfvR1y / E \ n7NnTOXr0EAMHDsXOrjqbN29ER2caGzacZd261Tx9GqE0nXZza09iYiLTp89h7doVynLNnTu3IZPJ \ n2LQpgNu3b / 4ryjOZ8eNHUqpUaW7eDKFFizYMHtwXIyNjlixZhVisOM / AwABUVFTw999GRMRjhg0b \ nxNatgYBibt / 69VtQVVWja9eOuLq6YWJS5IvuQV7R0dGhd + 9mWdb9 / fdpHBzq53sw92Gwb2lZib17 \ nA4mKisTEpBJHjhzM8hLjxImjdO / ekxMnjiozesWKmXL3biiNGjXh3Lm / kb5zVFeSnJykvH6HDx9Q \ nll5ra + uQnJyU49jeV8ocPXoYGRkZnDq1BS2tsqioSHjzxhOx + BlJSXGMGTMMNTU1hgwZjrW1bZZ + \ nTp48yqVL / + DkVB8dHV1kMhkxMdGoqanRu7c7UVH72bkzA1XVqzRurM7jx9HKDGSzZs4sX744p + EJ \ nCPxSCMGcgICAwE / CtzRJT09PZ8uW06SmyujUqTaGhgb5foz84ujRQ7x9G4ef3ybEYjGurm2QSNIw \ nNFTF1NSMgwf3YW1ti7l5eYKDFZmr0qXL5KrvmJhovLwGUaWKNXfvhvL48SMOHDiOvn4h1q9fw9Gj \ nhzAwMKRIkaJYWFRS + pOdOnWc + fNnkZiYwJgxk6hSxYo1a1aQlpbGjRvX6dHDk0aNmuTpPHMq0 + ze \ nfSS / / 95Yufz8uSfu7vqMHJk1gFi92j9bf + 9bClhYWLJ3715lsJ6ZvRKJRPTrN5B + / QZm2Tc5OYnO \ nnbuir6 + wIBg9egKtWjmxYMEcAAoV0gfkSCSSbKbT + vqF0NTUomJFhThFpk1DTEw0IpGIsWOHK0V5 \ nAgK2EhZ2hxcvnvP2bRyRkRFYW9ty8OB + Dh8 + oPTIu3kzBBeXzoDCA65YMVOePo1AJBJRvXpNtLV1 \ nAIW6Y0xMdJ6Duc + V7Do7t2Tt2lWkpaUpzcU / VBGtWbM2DRv + j / Pnz3L9 + jX8 / dcyffoczMzyx3Lh \ nw2C / c + duVKlizcSJowE5FStWol27d2WeCQkJeHh0QV1dXVma26ZNe8aMGU7Pnl2pVasOWlrayvaZ \ nAX779q6MHz + Kw4cPZmlTvnwFxGIxPXt2pUULhXJp5suCD5UyjY0L4 + fnj5vbAF6 + 1AFeY239O4UK \ nGTNrlkKVcsSIwWzaFJAlo3f69Elq1arL7Nm + BAYGsHz5Yjw9 + 7J1q + IF1qRJrahe / S8uXXrK1Kmd \ naNkya7mygMB / ASGYExAQEPhJ + FYm6VKpFA + PAI4f9wDUCQjYyI4d / + Ps2WMEBV37oqzWtyQpKQlD \ nQyPEYjHBwUE8exaj3GZrW5WtWzcxbtxkypUzZ9EiXypVqpyn / qOiIpk4cSqVK1vh6toGgNDQ25w5 \ ncxJ / / 22kp6fj6dk9S1llRkYGq1f7888 / 51m3bhV / / rmM337rz927oQwdOvKLzjOnjF + FCsXR1b1H \ nYqLCX05F5SVmZprZ2uU3IpFI + ZB94EAQhw69JjFRwqpVvhQvXixb + w9Np98n06ahWLHiFC9uppSY \ nDw4OYs2aFVSsaMmQIcNZsmQBaWlpjBgxlrNnz / DyZSy9e / dg7dqNnxxrVgNr8ReJ + HyqZNfcvDz + \ n / n78 + ecyNDU12bRp / UdVRHV0dKlXrwEODvWzZMrzg5yC / erVa + DntxkTE71sWfVu3dzp339wlnWG \ nhkZZTNIzt79vCVCiRMkshumZbVRVVbPNxczM7Ovr6ys9MQFcXdsgFosZMqQrx4 + foVmzyyxd + gJd \ nXRPGjlVkjpOTk5WKmZm8ePECiSSNN2 / e / JtpW5Tl + w6K + cGZ5u / W1racOHGUpk2dOXr08EevnYDA \ nr4SgZikgICDwH + fUqSCOH + 8AqAMq3Ljhjp / fPz96WNnIDG6aNm1OWFgoHh5uHD58gNKl35Wv2dhU \ n5fXrV1hZWWNoaISGhobScDu3FC1qSuXK7zyv5HI5N2 + GUL + + I2pqamhra + PgUD / LPg0bKuTnLSws \ nlQ + bijlqHxeJ + BTvP0y / j7V1Rby8HlGy5G6KFduPu / sBunT59kIP1arV4NSp4 + zde46hQw3YubMx \ nr183wt19PunpinlW4eH3Prr / y5exREQ8Jjk5WWnTkJSUQEJCPKB4ofDo0QP09PRQUVEhJiaa27dv \ nAYrgWl1dne7de2JgYMDz58 + xta2qnOsXEfGE58 + fUbp0mRyv95fcgw9Ldq2srJUluxoaGjx + / JD + \ n / T3p1asrhw8f / KyK6Jd + Dj5F3kRhfvxk2MOHgwkMvM3bt2k0bVobkLNqlb9SZTcw8ABaWlpZzkss \ nVqFPn9 / x8hrI7797IpFIePXqVY4 + dgB / / DGCwMAAPDzcePky9qcQzhEQ + FqEzJyAgIDAL8DnysLq \ n1HFg06b1yOVy6tSpp3y77uRUn6pV61Kq1J + 8eDEVdfXHGBmt4syZdNTVv49yZ27JNBIuVMjgo8bb \ n9vY1OXXqXSCaOY8qL2hp5ZTpEn3wQJ714TxT6VFFRfzFUuu5ITExETOzOC5fbk9s7AuWLPkTkajD \ nNzteJmXLlsPd3ZMFC3woVMgQTc3KvHgxAZFoBO7unRGLValatRojRihsEz58hi5e3IyjRw + RkBDP \ nqVPHadWqHZ6e / Vi + fBE9e3ZFJpPSsWNnZDIZoaG32bVrO1ZW1gAsW7aQ2NgX9O / fh1q1alOhQkVK \ nly7DvHk + eHi4IRaLGT9 + CqqqqlmMqTP5kgd6VdWPl + yampphb18rTyqi + R1UfCzY / xgBAXvz9fh5 \ nJTExlbFji6OiUgMNjet4ee2mRo3aBARso2vXHgCEh9 + lQgWLLN8za2tb5PIM1q3bwu7dO1m2bBFV \ nqlgpfwsAHB0bK33yTE2LZ / lt + O23 / t / pDAUEfhxCMCcgICDwC / CpsrCSJUuxYsUS / Pw2oaurh5fX \ nIM6ePU39 + o6kpqbi7NyEFy9iiYoywtR0OAYGrqxf3xJv77GUK / dzmT9HRT1nzZqrZGRAr162lClj \ n9tV9ikQibGxsmTNnJj169EIqlXLhwjnatv10EKWjo0NycvJXH / 993pf3L1bMlOnTZ + dr / 5 / C2bkV \ nISEifH07AopSxrQ0N5YsqYCxsbGy3ftz8wB8fZcwevSwbCWBQBYxH4B27Tpma5OTEqm6ujrjxk3O \ ncYzOzq2Uy5klnF / Cx0p2q1Sxxtd3dq5VRBU2ITkLhfxXSEmRk5xcAV3dSECds2cNOXHCiz / / nIuH \ nRxdkMpnyZcD7Afkff4zA23sCmzf7U69ew08GxSdPhrBnzzM0NaX88Yc9ZmZFv9PZCQj8WIRgTkBA \ nQOAX4FNKjg4ODahWzZ5ChRSiJk5Ozbl + / Rr16zuioqLC / / 7XhIYNM5g7dxl375qyeHEHdHV1adGi \ nBaGhHy + dK2i8fv2Gbt0uc + dOF0DE8eMBBASoUbx43sQvsj4wKv5vaVmZevUa4OHhhpGRMebm5dHV \ n / ZhdgWIfOzt7Nm1aT69eXb9IACUnVqxYTFRUJL16daVEiVI8efKIDRu2c / DgPs6ePU1qaiqRkU9x \ nc + uGRJLG8eOHUVNTZ + 7chejr6xMVFYmv7xzi4t6gp6eDl9cYpc1Fbhg6tDG3bq3j4kVLdHVfM2iQ \ napZA7mPkJTPl53eaPXvSUFWV0aePCS1a2Odqv4sXb3Ht2lNq1CiDvX2lz + / wGWxt7di4cR1WVtZo \ naGgqS3YNDAwYP34KU6aMIy1NUWL6KRXRxo2bMnv2DHbu3M60abPyTQDlZ8LC4g / u3DEgPr490J6K \ nFbdjaGiEt7dPtrbvB + S5zbT9808oAweKefXKBZATHLyRv / 5qhra2do7tBQR + JYRgTkBAQOAX4NNl \ nYQr58Xe8859SV9dAJBIhFotxcLBGKn2pDFK + xTyfb8nevZe5c6czmcFUeLgLu3cHMHCgc677 + LB8 \ n7f3ytC5deuDp2ZfU1FQGDeqLhYUiYHjf3qFQoUKsWOGHRCJBX1 + f1as3fOVZZaV / / yE8evSQdeu2 \ n8OxZDKNGDVVuy1wvkUjo3LktAwb8gZ / fZhYv9uXw4QN06tSFOXNmMHLkOEqUKEl09ENmz579SUPx \ nD9HU1GTjRjfi4t6gpVVJKTzxKfJSEnjy5DWmTatAUpIlAOHhp6lcOZIyZT4dAPn7n2HatNLEx3fC \ nwCCYqVPP4 + b2dWXC1avX + GjJbrVq9jne25xURK2tbdm0acdXjeVnx8vLmnv3tnH7dk2KFLnPkCGG \ nn93n9u1wbt9 + SsOG1hQtavLJtseOPeHVK9d / l0TcuOHEtWuhODhU / + R + AgK / AoIAioCAgMAvQmZZ \ nWNWq1bC1tWPPnl1UrGhBpUpVuH49mLdv45DJZBw / fjTH0rVKlay4fj2Y + Pi3SKVSDh / + udTgChfW \ nQSR6 / d6aBAwN1fOt / zlzZtCrV1d69 + 6Oo2MjKlSwyLI9Pj4eV9cd1KwZhYPD3wQEXMy3Y2fyfoD9 \ nYbBtZ2ePlpYWBgYG6Orq4eCgEEYpV648z55Fk5KSws2bN5g4cTS9enVl8uTJvHr1Ks9jEIlEGBoa \ n5SqQyyvBwS + UgRzA8 + d1uHQp7LP7bd2aSny8Yo5dXFw1tmxJzPex5YV / / gmlY8cDODkdZ / Lkv366 \ nFyP5jYVFaQ4ebMSxYy84c6YinTrV + WT71atP07ZtBoMGNaNVqztcvhz6yfaGhgDvlDB1dSMwMyuc \ nDyMXECj4CJk5AQEBgV + Ej5WFGRsX5vffBzFkyO / I5XLq1q1PvXqKB / 33y98KFy6Mp2df + vXrha6u \ nHjY2VnxDLY98p1UrBzp33smuXfbI5WJatbqAm1unfOt / 8uTpn9zu43OGv / / 2BFRISIDZswNp2zYN \ ndfX8Cyg / RVZJfhXlsoqKCjKZDLk8Az09Pdat2wKQo3z9j8bKygiT9TckAAAgAElEQVRNzQekppoD \ nULhwENWrf8m8zR8XPKWmpjJy5BPu3XMD4MaN1xQrdoL + / b + 8zDYxMZFjxw7Tvr3LR9s8exbDzZsh \ nODk1 / 2RfMTHRjB49jA0btn / xeL4ELS0tbG2rfLadXC7Hz09CfLyivPbJk1asWLGdmjU / Xjrbv38T \ nQkI2ceaMBRoaifTtm0qZMk75NnYBgYKMEMwJCAgI / CJ8qiysSZNmNGnSLNs + 76vCAbRo0ZoWLVoD \ nBfNh / 1OIRCIWLnRhyJCHZGRIqVCh83eVJo + P1 + D9gpe4uMIkJSWirm6Ub8fQ1tbOs6hKZlZIW1uH \ n4sWLc + rUcf73vybI5XLu3w + nfPmCI3LTvHkNRo48xt69IaiqSunTx5Dy5W0 + u1 / Xrlrcv3 + D + Hgb \ nDAyu0q2b / ncYbc48exbDw4fvsrZyuRH37 + fd6 + 593he + + RjR0VEcO3bks8Hcz4BUKs6ynJ4u / khL \ nBaqqqqxe3Zk3b16jqaklzJUT + E8hBHMCAgIC / 2Ey3 / gXK1aF06efYGqqjofH / 34qf6ZDh / azbdtm \ nRCIR5ubladTICX / / tUil6ejrF2Ly5OkYGhpx7dpVFi2aDygCv6VL16ClpcWWLRs4deo4aWnpNGjg \ nSO / e / b5oHI6Oeuzff4 + UlIpABtWq3cPAoGo + nqnClsHa2hZ3986ULl1WeZ + yS / Jn9eHK3DZp0nTm \ nzZuFv78fkIGjY5MCFcwBDB7sxODBn2 / 3Pu7uDbC0vM3VqzuoWbMs1avX / TaDywXFiplSvvxpwsIU \ nQaiKykssLD4djHyO94VvatSohVwOly5dQCQS4e7em8aNnVixYgkREY / p1asrrq4uVKtWh2nTJimN \ nuL28RmFl9fnA + EcjEolo2TKFVaueIZUWw8AgCBeXQrnaz8jo82I8AgK / GiJ5ASnk / pne / grkjZ / t \ n7b5A3hDu789NTEw0Awf + TmjoLF69qoVI9IZu3fbg6 + uS473N / JNRUIK9hw8fMH78SFauXIe + fiHi \ n4 + MRiUTo6ekBsG / fHp48ecygQUMZPXoYPXr0wsrKhtTUVNTU1Lh69QqnT59g1KjxZGRkMGbMcLp1 \ nc8 + z0XgmAQH / cOZMAoUKSRgzxlE5joKI8N39dly5cpc5c + 6TmKhO3bqpTJjQ6qu + M5liNxs2bOf0 \ n6RPs3RuIr + 8S4uLe0KePO6tWrSci4glbt25izpwFmJjoERkZi0ikgrq6Ok + fRuDtPYE1azb8sDLL \ nvCCXy9m58zyPHiVSv34p6tSp / KOHVKAQvru / LiYmef + bIWTmBAQEBP7DrFixmNjYWHR0fBCJ6iKT \ nGXPhwjbc3XfSokVz3Nx6EhMTjZfXIKpUseb27ZukpaWRmJiISARSqRQHh / oYGRVm / / 49SKVSrK1t \ nmTv3TzQ0NJkxYwoaGpqEh9 / lzZvXjBkzkYMH9xEWdofKla2UXmGXL1 / Ez28VaWlpmJmVYNy4yWhp \ naX12 / MHBV2jUyAl9fcWbe319fR48uM + kSWN4 / foV6enpFC + u8JqztrZl0SJfmjZtTsOGjTAxKcLl \ nyxe5cuUSvXp1BSAlRSHt / 6XBnKtrHVxdP9 / ueyOVSvH1PcajR2IqVJAzdKgwn + hbUqOGBQEBFp9v \ nmEvef + 9 + 48Z1nJyaK4VoqlatRmjoHXR0dLLsk54uZcGC2dy / H46KigpPn0bk23i + NSKRCFfXej96 \ nGAICPwWCmqWAgIDAf5j + / YegoWFIRMQekpProqb2hPT0AaxZs4Hbt28TEnINgKioSDp0cMXXdwmx \ nsS9ITU1h2bK11KlTjzt3bvP27RuOHTvLtGmziI2NZf9 + haS / SCQiMTGBlSvXMWSIF2PGDKdrV3c2 \ nbtzBgwf3CQ + / R1xcHBs2 + LFw4TL8 / DZhYWHJ9u2bczV + kUiUTSlwwYI5uLi44e + / jZEjxyGRSADo \ n3r0nY8ZMRCKR0L9 / byIiHivXr1u3hXXrtrBtWyAtW7bJp6tbcBg7dh / z5rVi166OzJrlxJQp + 3 / 0 \ nkAS + kJw + 8zll / bZv34yxcWH8 / bexZs1G0tPTv9cQBQQEviNCMCcgICDwH0Yul2NsrEGFCjvR1j6J \ nru5JTE0X0a9fTx49ekRk5FMAihY1pXJlKwCKFCmGqakZ5cqZY2lZCV1dXUxNzRgwoA / Lli0iJiaa \ nR48eKY / h4FAfgLJlzTEyMqZcOXNEIhFly5bj2bNobt + + yePHD / n9d0969erK4cMHef78Wa7GX61a \ nDU6dOk58 / FsA4uPfkpycROHCCl + qQ4feBS1RUZGUK2dOt24eWFpWJiLiCbVq1ebAgb + U84piY1 / w \ n5s2br7yqBY / gYD0gUxSiEEFBn896ChQc3he + sbGpyokTx8jIyODNmzeEhFyjcuUqaGlpk5ycpNwn \ nOTlJOYfs8OEDZGR8nQiLgIBAwUQosxQQEBD4j6Ohoc6BA7WYOvU4Fhbt6NdPIQCSOS8jJiYaLa13 \ nnmJqaqqoqWXK3iuEHfbu3c3ChcvQ1tZmwIA + pKVJ3mv / TiL / Q / l8mUyGiooYe / taTJky47NjXbt2 \ nJdraOnTp0h2AsmXL4e7uyaBBfVFREVOxogWenn2ZOHE0enr6VK9uz7NnMQAEBGwlODgIkUiFcuXM \ nqV3bAVVVVR4 / fszvv / cCFA / NEydOw9Dw86bGPxMGBikfLKd + t2P / DHO0voSzZ09TsmRpypQp + 82P \ n9b7wTe3adSlfvjw9e3ZBJBIxYMAfGBoaoaenj1gspmfPrnTq5EL79q6MHz + Kw4cPUqtWHbS03ik8 \ nFpQ5rwICAl + PEMwJCAgI / IfJfONvYGCAm1tH1qxZQUqKO1paWjx / / py3byWf7wRIS5NgZGRMYmIC \ niYm5n5gvEomoUsUaX9 / ZREVFYmZWgpSUFF6 + jKVEiZLKNu + 3 / xBn51Y4O7fKsq5evYYAyGQyxGJF \ nwDl06Mhs + 6anp9OmTXtcXd0 + O9bZs6fj5tad0qXLsGGDH + 7unkDuPMB + NOPHWzJy5GYiIkpStuwT \ nxo8v + KqGBZ2 / / z6Ng0P97xLMQXafwwED / siyrKqqysKFy4F3L2L8 / bcqt / fvr5AINTUtjr / / tm88 \ nWgEBge + FEMwJCAgI / If58I2 / k1NzZZZKX1 + PsWOnZJO9zy6DD02aNKVv355oa2tnM8n + VDB27tzf \ nrF27EhUVFYYM6YeGhhYxMVFYW9vy5s1r5s5dxJEjBzh8 + ACGhkYUKVIUCwuFeXBUVCS + vnOIi3uD \ npqYmo0ePp1SpMsyYMQV1dXXCw + 9hY1OVQYOG5njuvr5H2bBBjFSqRsuWL5k1q / 1HMxYZGRmMHj1B \ nubxx43plMJcbD7AfTbVqFTh2zJz4 + LcUKlT1izIz69ev4ejRQxgYGCrvg719DebO9UEikWBmVoKx \ nYyehp6dHWFgoPj5TEYlE1KxZ6xuc0ddz5MhBdu7cjlSaTuXKVgwfPgZf39mEhYUikaTi6NhYaVOx \ nfPlizp8 / i1gspmbN2jRs + D / Onz / L9evX8Pdfy / TpczAzK / GDzyhnNm8 + x7p1ichkYtq1gz / + EMRv \ nBAR + JQRrAoFvjiCh + 2sj3N9fl299bxUP / N7Mn78YVVU1Bg / uy6RJ0 + jduwcrVvhRubKVss2qVf7I \ nZFI8PbvTrl1H3Ny688cf / Rk5chwlSpTk9u1brFq1lIULlzNjxhTi498ya5bvR4OWoKDb9Ox5grS0 \ nUsTF9aBIkYlYWQWzbds2rl69wv79ezl37m / atu1AUNBlvLxGsWrVMgYNGsapU8fZtm0T5cqZU7as \ nOTKZjHPnzlCqVGlq1KjNgAFDcvSui4mJZsSIIdjY2HHrVggmJkXw8ZmPhobGN7vGnyIv9zc09DZz \ n5sxg1Sp / 0tPT8fTsTtu2HTh8 + ABeXqOwtbVj7dqVJCUlMmTIcDw83PDyGoOtbVWWLVvIxYsXClSZ \ n5ePHj1i + fBEzZ85DLBYzb94srKysqVu3Pvr6 + shkMoYOHcDQoSMpXLgw / fv3ZsuWXQAkJSWio6PL \ nzJneODjUp2HDRj / 4bLKTeW9DQx / Qtm0qcXG1AdDUfMTKlQ9xdq75g0co8DUIf3d / XQRrAgEBAQGB \ n78alS6EsXPiIlBRVmjRRYeDAJnna / / r1YOLji + Dg8AhNzQTq1ClLSMi1LGIrN25co0GD / / 0b8Gjg \ n4NAAgJSUFG7evMHEiaOV / aWnSwFF9u9 / / 2vyyezTvXvRxMc3w9BwI3FxPVBXf0BSUipSqZQbN65T \ ntWo1jh8 / QpUqVsrMXmZGsn / / wQQGBrBu3RZA4QH26NED5fLlyxeJjHzK6tUblN51ISHXKFKkKJGR \ nT / H29mH06PFMmjSWM2dO0rSpc56u24 / g5s0Q6td3RE1NDTU1NRwc6pOamkJiYoLSxqF585ZMnDiG \ nxMREEhMTsbVVGKY3a9aSixcv / MjhZ + Pq1cvcvRtGnz49AEhLS8PY2JiTJ4 / y1197kMlkvHr1kseP \ nH1GmTFnU1TXw8ZlK3br1lYI + QDZVyYLG1asPiIt7p86amlqWO3eCcC74HzkBAYFcIgRzAgICAgJ5 \ nJiEhnj / + iObhw84ABAU9plixC3TsWDfXfVy4cI + wMCvevGkMwD / / nKN69bgsYivwYUCmeHiWyzPQ \ n09NTBlAfoqmpmeP6TBo3tsPM7Boy2W1EokTU1FKoWtWasLBQQkKuMXToSFRUVHB0bPzZ8 / jwgf5j \ n3nVFihTF1NSM8uUrAGBhYUlMTPRn + y8YZJfDzy0FNeBxdm5Fv34DlcvR0VF4eQ1izZqN6OoqMm9p \ naRLEYjGrV / sTFHSZ06dPEBi4Qzk3raALidSrV5lixc7x7Nn / ANDXv0WNGmY / eFQCAgL5iWBNICAg \ nICCQZ0JDH / LwYXXlskRShpCQvJX9qKmVQVf3DCJRKiJRMurqtzA0NM3SpmpVO / 7 + + zQSiYTk5CTO \ nnz8HgLa2DsWLF + fUqeOAImC4fz8818cuWrQwK1eWxchIjQYNJuPkZE7jxo4EB18hKipKmY350of1 \ nj3nXva / mee / eXRISfo5SKRsbW86fP0taWhrJyclcuHAWTU0t9PT0CQm5Dijk7 + 3sqqOrq4uurh43 \ nbijWHz166EcOPUeqV6 / JqVMnlDYU8fFvef78GZqaWujo6PD69StlNjElRZGBrFPHgcGDvbh / / x6g \ nEA9KSkr66DEKAmXKlGDePBUcHQOoV28X3t4RNGhg / aOHJSAgkI8ImTkBAQEBgTxTvnxJihe / RXS0 \ nQnFSRSWWsmXVP7NXVtq1q8mJE28oVcoVAG3tilSvbs2 + fe8CqIoVLWnc2ImePbtgaGhE5cpVlNsm \ nTZrOvHmz8Pf3QyqV0qRJU2XWKzdBmI1NeTp1asKBA3 / Rvv1kypUzZ9EiXypVqvzZfVVVVZFKpaiq \ nqmbxAAOoVas2q1evoGlTZ7S0tIiNfYGqqlq2PkJD76Cjo / PZYxUELC0rU69eAzw83DAyMsbcvDx6 \ nerqMHz + FefN8SE1NxcysBOPGTQZg3LjJ / wqgQI0atQtcBqtMmbL89lt / vLwGkpEhR01NjWHDRlGx \ nogVdu3akSJFi2NjYAgq / tjFjhpOWlgbIGTzYC4DGjZsye / YMdu7czrRps76bAEr / / p4sX + 730e0u \ nLq3Zu3cPoFBxbdq0Gk2bftmxnJzqc + zY2S / b + V / 27NmFpqYmzZu35ODBfdSsWYfChQt / VZ8CAgLv \ nEARQBL45wkTdXxvh / v66fO7eHjx4lUWLnpOSoo6jYzJTprTO80P74cNX2b / / FWpqaQwbVp1SpUw / \ nv1M + cvXqFUaMGMLhw6fQ0NCkS5cOtG / vQqdOXWnatCFHj55Rth08uB + DBg3DwsLyX3XDv7GwsGTi \ nxGl4e0 / gwYNw7O1r8fTpE8LD7xEf / xZDQyN0dfVQV1dHIkklJiaGbdsCuXHjOt7eE9HR0aZo0WIs \ nX + 733YVQ8vrdTUlJQUtLi9TUVAYN6svo0eOpUMEiWzu5XK4UCSloQdx / AVfXNuzZs5v0dPFX9 + Xk \ n1IBjx / 7Oh1EpGDy4HwMHDsXSslK + 9flfRPi7 + + vyJQIoQjAn8M0RfnR + bYT7 + + vys93bK1duEhn5 \ nmiZNqqGnp / iDGBYWyuHDBxg6dMRH9wsPv8fLl7HUqePw1WM4ffoEly5dZPTo8YBC + XDEiCHMmuVL \ noUIGnDhxlMuXLzJ27KQsweGPIK / 319t7Ao8fPyQtLQ1n51Z0794zW5t79yIYOjSIBw / MKFXqGXPm \ nVMbOrkI + jvrH8ezZS0aO / JsnT / QpUyaeuXMbUrSo8XcfR2a27OXLl0yePJbk5CRkMhkjRozFxqZq \ nlmBu7NgRvHjxnLQ0Ca6uXWjTpr2yD1fXLly4cA4NDQ1mzZqPoaER0dFReHtPIDU1BQeHBgQEbMtz \ nMHfo0H62bduMSCTC3Lw8ZmYl0NLSxtTUlBkzvDExMUFDQ4O + fQfw11978PGZB8CVKxfZvXsXM2fO \ nzfdr9qvxs / 02C + QeQc1SQEBAQOA / yZQp + 1mzphppabZYWe1h48ZamJkVxdKy0mezAOHhd7l7NzRf \ ngjlz8wosXbqQ5csXU7duffT0dHn48AEDB / YlKiqJtDQRGhradO4cBRRccZCc + NC0OiemT79OUJAH \ nAG / ewPTpW9i169cI5saMOcuRI + 6AiLAwOaqqG / Hza / / Njjdy5B9MmTIDHR3dD7Yosp3Hjh2mVq06 \ nuLt7kpGRQWpqarY + xo6dhL6 + PhJJKr / 95oGjY2P09fVJTU3FysqGvn0HsGzZIv76azceHr1ZuHAe \ nHTq40qxZCwIDA / I85ocPH7Bhgx8rV65DX78Q8fHx7Ny5DZEIHB0bs2vXjiwvMJYs + ZO3b + MoVMiA \ nAwf20apV2zwfU0Dgv44ggCIgICAgUGBJSUlh5Mg / 6NmzK + 7unTlx4hhBQZfx9OyGh4cbPj5TiYmJ \ nYdMmM0QiCSVL9iY + fgd9 + vQlOTmZ4OAgRo0apuxr5kxvfvvNA0 / Pbpw7dwapVMqaNSs4ceIYnp7d \ nOHHiGG5uHYiLiwMUZuFubu15 + zYuV + MtWbIUfn6bMTcvz + rVyzh9 + iRly5qjodGV27fPEB5 + hlu3 \ nDjFhQhBQ8NUQ88rr11pZll + 90vpIy5 + PqCg93qmriv5d / nbMnbswWyAnl8uVLwAqV67CwYP78PNb \ nxYMH99HW1s7WR0DAVnr27Eq / fp68ePGcyMgIANTU1Khbtx4AFhaVePYsBoBbt27QpEkzAJo1y7t / \ nQXDwFRo1ckJfvxAA + vr6PHnymNevXyvb7Nmzk6Cgy / 8eowVHjhwkISGB27dvUbt27tVwsx733fdc \ nQOC / hpCZExAQEMhHZDIZYvHXz1URUHDp0gUKFy7C3LkLAUhMTMTdvTOLFq2gRImSTJ8 + mQMH9pKW \ nVh9TUy9iYv5EIrHC0XFztjloGzb4YW9fk3HjJpOQkEDfvh7Y29fit9 / 6c / duKEOHjgQgIuIxR48e \ nolOnLgQFXaZ8 + YoUKmSQq / G + fPkSPT09mjZ1RkdHlz17dhIXF8fr169QBALpqKs / ISZGl5IltUlK \ nSszPy / XDqV49lcuX4wF9IBU7u / gfPaR8o2zZeEJCMlC8B8 + gbNm3 + dZ3TuWQLi6t8fPbRFJSEl5e \ ng6hSxZq7d0OVwZytrR1Ll67mwoVzzJw5hc6du9G8eUtln8HBQVy9eoWVK9ehoaHB4MH9 / hVxAbH4 \ n3eOfiooImUyWZTw7dmxRBnWfYseOLbRt2wENDYUViEiU3cLiyZPHqKm9EwBq185FmZlr0aINo0cP \ nQ11dnUaNmqCiIuQYBATyihDMCQgICOSB9evXcPToIQwMDClSpCgWFpW4cOEsFSpU5MaNkH8VFSuy \ nbNlCZDIZlpaVGTFiLGpqasqHM339QoSF3WHp0oUsXryStWtXEh0dSVRUFHFxcXTr5k7r1u1 + 9KkW \ nCD4sW9TW1qZ4cTNKlFCoaDo7tyIwcAcNG6Zz544xEokVJUocoWtXy2xB9eXLFzl / / m + 2bt0IQHp6 \ nOs + fP8uS7QBo2bINY8YMp1OnLhw4sJeWLVvnerwPH95n6dKFqKiIUFVVY8SIsaioqDBkyBhKlTqJ \ nSJTBmzfuVKiQQosWrZk3zwdNTc0fIoDyLZg0qQV6eke4e1eF0qXTGT0699euoDN / vhNqapuIiNCl \ ndOkEfHy + UCIyB7KXQzbKkrWNiopk4sSpVK5shZNTAwCePXuGiYkJrVu3Iy1NQnj43SzBXHJyEnp6 \ nemhoaPDkyWNu37712XFYW9ty4sRRAgK2IZVKc2wTExPNiBFDsLGx49ChfZw7dwYrK1siIp4QEfGY \ np08jePAgnKlTfThx4hgPHoTz4sUzunbtSGpqCitXLqFNm / Y4Ojbm8eOHREZGsGDBXOrXb0h6erry \ nt9LZuRXnz59FJpMybdosSpUqw507t1i0yJe0NAkaGhqMHTuZUqVKf + XVFxD4uRGCOQEBAYFcEhp6 \ nmzNnTuLvv4309HQ8PbtjYaGYj6Uo19uARCKhS5cOWTJHu3fvpFOnLp8sqXv48AErV64nJSWZXr26 \ nUadOvWzy3R + TCf + Vpb8zyxb / + eccq1cvo3r1Glm2ZwZhkyY1Y / To07i5BdCypQWVK5fNsb8ZM + ZS \ nsmSpLOvu3Mn6kFukSFGMjIy4evUKoaF3mDJlZq7HW7NmbWrWrJ1t / e7dW5g06QiPHmlRr14y06Y1 \ nRVdXl4YNG + XYz6BBfRk0aNhPp / onFosZMaL5jx7GN0FPT4 + lS7 / NHLmAgK2cPatQTn3x4gVPnz7N \ nsr1oUVMqV7YC3pXmXrsWxNatG / + 1x9BhwgTvLPvUqlWXPXt20b27KyVLlsbK6p2 / 3Pu / Renp6Vy5 \ ncomePbsikaSyYsUSXrx4ztatG5FIFPPw5s3zISwsFIkklerVaxIZ + RQHh4aIRCLu3r3Lw4cPcXHp \ nRJs27Zk / fzb / / HMBZ + dG1KpVBzU1NRwcGjB + / BTOnDnJzJnePH0agb19TWbO9MbTsx + nTh1HU1Mr \ ny2 + lgYEhfn6b2L17J1u3bmL06AmUKVOWpUtXIxaLuXLlEqtWLWX69Dn5f0MEBH4ihGBOQEBAIJfc \ nvBlC / fqOqKmp / fuAUl + 5rXFjxVv6iIgnOWaOOnXq8tF + RSIR9eo1RF1dHXV1dapVsyc09Bb16zt + \ n2DLH / du166j8 / 6FD + ylXrvwPCeYSExM5duww7du7EBwcxLZtm5kzZ8FX9flh2WJgYADPnsUQFRWJ \ nmVkJjhw5iJ1ddcqWLYeqqpTWrUthaVmW5OQkZelXJjVr1mbnzm0MGzYKgHv3wqhY0TKbTxxA69bt \ nmDp1Is7OrfJlXpumpiY + Pq1YtuwEkZFaHDlyg44dPz4 / SCQS / XLz6QRyJudySEmWNlpa7z7LmXYZ \ nzs6tcHZula2 / gIC / MDDQIz09gXnzFuV4zPctN9TV1ald2yGLAmv37p3Q0NCgRo3adO / uSokSJVmy \ nZBXdu7ty8 + Z1Chc2oVGjxuzcuZVOnboQEnKNq1eD8PNbjYqKGD09PczMSlC8uBnq6ho4ONQnODiI \ nAwf20bBhI6pXr8H06ZOJj3 / Lhg1rady4KQ0bNmLYsEHK38rMFx0VK1py5sxJABISEpg2bTJRUU8R \ niUQfzR5msnbtSrS1dejSpfsn2wkI / MwIwZyAgIBArsk + HyQTTc2chR7kcrnyoVwsFpORodhfIknL \ n1nbLlg2oqyuMt / fv / 4udO7ezcOFyrl69wv79ewFYtWpZNjnxzAcWU1NTwsJCmTp1grJ079GjhyxZ \ nsoCUlBQKFTJg / PjJGBt / m0AvISGe3bsDaN / eJd / 6 / LBs0ctrFMnJyUycOBqZTEalSlVo184FVVVV \ npk71YcGCuUgkEjQ1NVmwYOm / QZGir549 + 7Bo0Xw8PNzIyMigeHEzZs9egJ2dPZs2radXr650796L \ nxo2dcHBowMyZ3rRokX9lgsOH72bLFldAl61bH / D27WmcnSsyfPhgLC0rc + 9eGGXKlGPixKwZlnnz \ nZhEWdgeJJBVHx8b07t0PUGSKFy2aT0pKKmpqaixatAJ1dXVWrFjC9etXSUtLp0MHV9q27ZBv5yCQ \ n / 7xfDvn48aNclUPmJ + bmFfD1nUvnzl4UKWLOpElugKK0c8IEb6ysbPj9d0 / c3NoTF / eGxMTELGIr \ nYrEKGRkZ3LwZgra2NkWKFOXx40c8fvwQU1OFb + SHLyZOnTpOZGQ86ekZFC9uSq9efXnwIJz3m6mr \ nqyn7z5zTt2bNCuzta + DjM49nz2IYPLjfJ89NeCEi8F9ACOYEBAQEcomNjS1z5sykR49eSKVSLlw4 \ nS5s2igflzCCvVKnSxMREZ8kcVa1aDYBixUwJC7tD7dp1OXPmhLJfuVzOuXNnGDp0JFu3biQ8 / B7G \ nxsaA4s3zjRvXqVq1GsePH8lRTjwzYPlQ + lsqlfLnn3OZPfudx9mqVcsYO3bSN7k + K1YsJioqkl69 \ nuqKqqoqmphYTJozm0aMHWFhUYtKkaYDC + y2nADM8 / C5z5 / ogkUgwMyvB2LGTqFmzNhs2 + FGxogU3 \ nboRw8eIFDh7cz9atu1BVVSUpKZEuXTqybVsglpaVWblyXZYx2dlVx86uOgAaGhqMHDku27j19fVZ \ nvXoDoBCwCQq6QUzMU8qXr5iv83HOnzcEFOqEqanmHD9 + HWdnePo0gnHjJmNlZcP / 2TvzgBjzP46 / \ npmu6iwodEklFypH7vuW2ZLGI3NbNSm65rXWvYyMikZy5WbfcVO4rQqdC0TXVzPz + mF + jUVjk2n1e \ n / 3iO7 / U8M43n83w + n / dnzhwfduzYptJvwIAhGBoaIpVKGTlyCJGRD7C2LsXUqRPw8ZmLg4Mj6enp \ naGlpsXfvbvT19fH13UBWVhZDhvSjevWamJtbFNp1CBQu7w6HfGOIfEmjJClJQlTURNLScjAy2kqX \ nLjMwMpJjamqGk5MzsbExxMfHYWdXjqioR5QpU5Z79 + 6ojCESiVBTU6NKlWr4 + MyhU6fW2NiUYdCg \ nYVy6dJG0tDQMDAyV7S9cuMb9 + 2uxtBzG1auehIU95ty5 / TYq9kAAACAASURBVEoBFLlcztq1qwkL \ nu4JEkoWmpuJxNS0tjVu3bhASspOXL18oX4qdPXuaa9fC6N27O1ZWVkye7JPPMy8g8G9FMOYEBAQE \ n / iEODuWpW7c + Hh5dKVrUBFvbsujr66uExInFYiZMmJrPcwTQp88A5s71Yc0afSpXrqrsoyiua8eK \ nFUu5c + c2w4eP4vTpk5QpY8udO7eJiAhj5Mjf8smJX758ocB15hqWT55E8ehRJCNHDgEUMvsmJmZf \ n7P4MHjycR48esm5dIGFhV / D2HkNAQDAmJqYMHtyXa9fCKV / e6Z0G5syZUxk92gsXl8qsXbuadev + \ nYvjwMcpwqjVrFAZXXFws586doV69hvz992EaNmxcKAqi2dnZ9OkTzKVLLzE23ouTU3MVz + rnoqcn \ neWtf8SBarFhxnJycAYVUe3DwFpV2x44dJiRkF1KplOfPk4iKegiAiYmpMqcu11Ny6dJ5IiMfcOKE \ n4mVBWloa0dFPBWPuO0ZTU7PAcMh16wLIzs7G3NwCf / 8tBfQsHLZvDych4RfkcjEymQEyWQBGRmqA \ n4nckLS0NLS2xUpHy2rVwdHS0kUiyUFNTVypkurhUJjT0FP369URf3wCZTEZcXCz6 + voEBm4kJyeb \ nYsWKk5WlS0aGBnK5AfHxszEzm8 / s2c9p2rQmGhqKOTIzJTx8GIm / / xYuXbrA + PGjef48CWfnSvz1 \ n159YW5eibduOHDy4 / / 9zV + Hp0yfMm7cIX9 + V7N27m06dfv5i90xA4HtCMOYEBAQEPoJu3Xri6TmA \ nzMxMhg4dgIODYz7lyapVq + HntylfXxeXSmzevKPAcW1t7Zg0aTojRgxBLpdTsaILtrZluXr1EjEx \ nMdjYlP6gnHguucaHXA6lS9uyapXfp17uR5E3BFUul + PoWAFTU4XxWLZsOeLj49DX1y / QwExLSyU1 \ nNRUXl8oAtGzZmsmTxyvHy81JBEU + W2DgBurVa8iBA3vx8ppUKOtft + 4Yhw97ANq8fDmex49jOHbs \ nIk2a1CgUQZJRo0yZOnUfsbFlqVAhjDFjVAUtgHzGY2xsDFu2bGLNmo3o6 + sze / Z0srKyeJ99OXr0 \ nOKpVyy / CIvDjMGfOfjZsMCYnR0yLFn + zdGnnLybbL5XGY23dGblcHblck + TkrtSpc5Xdu7fRt29P \ n1q7diJqaGteuhSOVyrCxKU27dh05efIopqamnDhxjOzsbPT19Zk / f7HSQ6 + oxReDtrY2GzYEKfNo \ nvbwmsXfvVIyNN5GYOIEnT3ZSp44f48e7c / ToEQCaN29B2bLlEIlEVK9ek0aNmnL79i2SkhIZOfI3 \ nqlRxxdDQkP79BwOgr6 / P69ev8fDoSnp6BjVq1Poi90pA4HtEKOghICAg8BHMnz + LPn2607dvDxo2 \ nbIydnf1njbd790X8 / e + zbNl9Jk3a / X + DL4BKlarg4lKZXbu2U65cufeOoZDWV2zr6r6pXWZtXYrk \ n5JfcuHEdUChuPnr08LPW + zFoamopt / PmvZQubcu6dYGsWxeIv / 8WFi5cxjtSEZXkzUmsWNGFuLg4 \ nrl69jFQqpXTpMoWy3rQ0OfAmNEsmK8rLlwphlM / xzuWKNLRvX52TJ505efI1 + / c3xsHBBoCEhHjl \ nZ3TkyEGcnV0AxeealpaGtrYOenp6vHjxnPPnzwJgbW3D8 + dJ3LlzC1DkXUmlUqpXr8WOHduUcz55 \ n8pjMzMxPXvv3wODBnu8937lzW169Kpyab82a1ftwoy / MpUs3WLnShefPW5CS0pCtWzsTEHDii803 \ nffpAHBzakpAwlVevfqV / fyk9evSiVCkbbGxs6NHDnbJl7di + fR9z5y4kOfkl27dvRV1dg2LFihMY \ nuB03tzbY2tqxbp0vGRmZjB07nk2bgnF1rabytyMSgY6ODt27N0BLK5JSpdywt69P / fqqnvWC6tUB \ nZGVlsWrVJWrVklCr1k3WrFEIucyePZ0xY8bj778FT8 / + + QRkBAT + zQieOQEBAYGPYOrUmYU21vPn \ nz5k0KYeEhFUAREY + Z9iw9bx48Rwnp4qIxdqIxWKlt0r1oUh1O3f37dplM2bMY8mSBaSmpiKV5vDz \ nz90Lzfh5m4JUId / G2tpGaWA6OVUkJyeHp0 + fULp0GQwMDImICMfFpRIHD + 5T5roVRMuWrfDxmUzv \ n3v1UjuetgXXjRgRmZsWYM + cPxowZpvSsJScn079 / L4KDQ9i / fw + nT58gMzOTqKgo7OwukJTkiIHB \ nXnR1k6lb9y / l2IcO7WfevBlIpVK8vafg6FiBjIwMFi2az6NHD5FKc / D0HEDdug3Yv38PJ08eIzMz \ nE5lMxrJlqwEwMjLOV4Dc2roUO3duZe5cH2xsytCxY2dCQ08jEomwsytHuXL2dO / eiWLFSigNvYIE \ nXxYvXkHbth2Ii4ulb98eyOVyihQpyuzZv3 / U5 / i9sXLl + z3LhZtP9u0FM6KinpGZWSnPESOePcsv \ nmFRYaGlpsWFDV2JiotHRscHEpCpxcbGoq6szefIMlbbvii6oWbMZCxfeJDOzDi1bimnTpgGASoho \ nlSquVKniCsDo0a3p0KECT548o1q1Cujp6amM5 + xcmd27d + Dm1oaUlBQiIsIYOnQkQUFXSUhIJCvL \ nkcTEyixevIMuXVLIyEinaFETcnJyOHRoP8WKFQd4p2CVgMC / CcGYExAQEPhGREY + JSGhvHJfLjch \ nM9Oa48fPKY / lfXDKKyfesGETGjZsAoCn5wDl8QYNGqvULrOzK8fy5W8Mki + JkZExFSu60KvXz4jF \ nYooWNcnXRkND450G5sSJ01iwYA6ZmZlYWloxYcLUd87VrFlLfH1X0qxZi3znoqOfMn36HLy8JjJl \ nijcnTx57r9R / bp6fRCLB3b0dDRqIKF36ZzQ0rnHq1HG6dOmGXC5HIslk3bpAIiLCmDPHhw0bgtiw \ nwQ9X1 + pMmDCV169fM2CAB66uNQC4f / 8e / v5bMDAweO99K + ihOdf4A955H94WfJHL5aSkJNO370AG \ nDvz1vXP + SOTWV0xKSmLqVG + lF3LsWG + cnSuptPX2HsuzZwlkZUlwd + 9Gu3YdlWO4u3dTUYJNSEhg \ n + / Ygnjx5zMuXL5QvTYB8c40Z442Li + pcoPAK + vkFYGhoVGjX27RpFRwc9nLnjjsA5ubHaNnSrtDG \ nLwiRSKQsp5L32D8hPT2dwYNvcfu2oqTAqVP3MTa + QIcONfK1vXs3ipUrbyKTqdOtmzUNG1YvcM4G \ nDRpx8 + Y1evdW1JwbMmQERYoURUvLkdTU4lhbd0Iu10QisefVKwf69RvEgAG9MTY2pkIFJ + VLpbwv \ nugQE / q0IxpyAgIDAN6J8eVvKlj3PgweKhyht7UhcXY0 / 0OufExQUyvnzqRQvLmX06KbKsgdfknd5 \ nLnNru8G7DUw7u3L51ChB1bDJ5dq1cBo1aoqenn6 + c + bmlpQtq3j4tbd3IC4u9r1rrlzZFR0dHXR0 \ ndDA0NGT27CGYmpqyb5 + UyMj7gOKhsGlTheHo4lKZtLQ0UlNTuXjxPKGhp9i8eSOgEFFJSIhHJBLh \ n6lr9g4Zc7tify / PnL + jf / 2 + uX7fFxOQZkycXo3Xrd3s2fywU9 + fIkYPUqFGLXr08kclkBYaPentP \ nwdDQEIkkk / 79PWjYsAmGhoZkZmYWqAT76lUKP / 3kTnT0UyIjHyjHyTuXXC4nIyOj4JV9AUuhSBFj \ n1q934s8 / t5CTozB6nJxsC32e9 / ExoiuRkVHcvv3GKMvMtOPixXA6qKYSk5T0Ak / Pu9y / ryh9cPLk \ ncTZtilS5trwvrIYMGcGQISNUxmjRwow9e0rz + PEAQEq9en5YWFjSoUNnOnTonC / nNO + LLgGBfyuC \ nMScgICDwkUil0kJRT9TXN2D58lIsXryZzEwtmjfXpEOHRoWwQli37iRTppRHIikDSHjwIIA1a7oU \ nytjfkjNnIli79i9evoxi + fJVBbbJrU8FoKamjlQq + X + NP0XO3tv5NKrt1ZT7ampq7xSZAZRv / GfN \ n + p2SJa1Vzt26dQMdnYJrD + alsJQKZ806w5kznoCIlBSYM2czrVoVnhLn90D58hWYM8eHnJwc6tVr \ niJ2dai5pXFws / ft7KEV3oqOfsnLlUqKjFQWm163zZdmyhTRr5kZ8vCLn8sKFcwwfPoYVK5YAIjIz \ nM7h2LZySJa2ZPn0iO3YEY2BgwLhxE6lY0YWUlGSmTZtIUlIiTk7OXyyMr0wZK / 74w + qLjF3YWFmV \ noHjx2yQk5IZvv8LSMr8kw5EjV7l / v51yPy6uEYcPB3 + Uodq8eRWWL7 / KoUPbMDDIZuzYNqipqXH7 \ ndhReXuFERxtgZ5fC4sX1MDf / csq9AgLfE4IxJyAgIPAW69ev4fDhAxgbF6FYseLY2zty9uxp7OzK \ nce1aBE2bNqds2XKsWLEEqVSKg0N5xo71RlNTUyXs6s6dW / z55xKWLVvN2rWriY2NJiYmhuTkZH75 \ npRdt23bA2rooBga7UVdP49QpKdWqFSkwnOtjOXlS8n9DDkDMpUtm5OTkoKHx4 / 7sr1t3kpkzy / D6 \ n9QaMjcM5deox3buX / HBHFEbT3bu3cXSsoJTt / xBvq3MeO3aEKlVciYgIR1 / fAD09fapXr8m2bVuU \ nnsd79 + 5QrpwDERFh3L59E4BTp05gbV0KG5vSH3nF / 5yUFG3y5nu9fGlEVlYWYrH4i835tXFxqcyf \ nf / py9uwZZs + exs8 / / 0LLlq2V52 / evE5mZgarV69DLBbz888dlMa4mpoavr7 + nDsXysqVy1RUSUuU \ nMKd9 + 05oaKizcaM / zs6VmDZtIlOmzCQ5 + SVBQYFMnuzFrl0HWbfOFxeXyvTu3Y9z586wd + / ur34f \ nvjeKFCmKj48GixcHkZ4upn79ZAYP7pivXenSxdDWfkRmpkI0SiR6QYkSH / / 9bN68Cs2bqx6bNCmC \ n8 + d7AhAdLWfKlE34 + rb / + IsREPgB + XH / VxcQEBD4Aty + fZOTJ4 / h77 + F7OxsPD17YG + vePDLrXUm \ nkUjo1u0nli5dhZVVSWbOnMrOndvo0qXbez0hDx9Gsnr1ejIy0unT5xdq1ar7j8O5PhZ9fdUQNEPD \ n9ELxJn5LtmzJ5PVrRY5hcnIltmx5QPfu + du9 / RmIRCK6devB5MnehITspFatuuQaPm / n0snlb4y4 \ nvOdEIhFaWlp4ev6iFEAB6N27H0uX / oGHR1dkMhkWFpbMm7dIZczTp09Qp069L2rM1a6txaFDT8jK \ nsgakVKoU + 68y5ADi4 + MxMzOjbdsOZGVJuH / / rooxl56ejpqaGmKxmMePo4iPj1PmweV + 9 + 3tHUhO \ nfqnsY2BgyNGjhwG4e / dNIeyLF88TFfUQkUhEWloqaWnpZGRkEBERxuzZCwCoVauuSiHs / zIdO9ag \ nY8f8pTXyUrOmM4MHHyAgIJKcHDGtWj2hW7dOhTJ / QkJeARURz57pFsq4AgI / AoIxJyAgIJCH69cj \ nqFevIZqammhqalKnzhup8txaZ0 + ePMbCwlIpGODm1oYdO7bSpUu3d44rEomoW7cBWlpaaGlpUaWK \ nK7dv3 / hg6Nin4uVVncjI9dy44UyxYk8YO9bshw + 5e3v5IlH + ELe3wxa7deuh3Pb336zczq1P5ebW \ nhkqVqtCt209UqFARHR1tduwI5uzZ02RlZVO / fkMA5s9fzJQp45HJ5MjlcmJjY3FwKM8vv3TO54kF \ nRfkELS0tbty4RmjoacLDw / D3X8vMmfOxtCz88Lm + fRuioXGSCxcuUaSIhAkT2hT6HAXxJQRA3ib3 \ nexsWdpnNmzeioaGBrq4ekyZNV2lXtWo15HI5PXq4U7JkKaWiYd4x1NTUkclkyuOlS9uyY0cwMTHR \ n2NqWVbbLyclGKpWiqamJpaUVkyZNV4bNCgqJ7 + ZDvzHe3m4MH56GTCbFwKD6e9t + DI6OKdy7JwXU \ ngUwqVCicl2ICAj8CgjEnICAgoELB9Y1AtdZZXvK + jVbkZin6SyTvlxMXidQ + GDr2qZQsWYI9e9oT \ nHx9H0aK10NX98d9U9 + ihy8OHYSQnV8LE5DK9ehWeARETE83kyT6kpaVy / PhRfH03IJPJGD9 + DBER \ nYSQnv8TUtBi / / 64w1tLT0wDVh9f7959y40YSder8jYXFZapXF + Pk5EzduvWpU6eeisrol8DDowEe \ nHl90iny8qx5YYZIriuHm1gY3t / xGanBwCAC6unqIxWJWrFiDtrYOw4YNpEQJc + LiYlm + 3FfZXkdH \ nhwkTpnL16mW0tbVZunQlW7YEkJaWxuLFKwCoU6c + dnb2dO + uCN27f / 8eJUqY4 + JShSNHDuLh0Zdz \ n50J5 / frVF732fyNvlyEoDBYvbomR0WZiY3Wws8ti0iS3Qp9DQOB7RSgaLiAgIJAHZ2cXQkNPk5WV \ nRXp6OmfPnlaey31otbYuRVxcLDEx0YCi / lilSlUARf5NbiHnkyePqvQ9c + YkWVlZpKQkExZ2BUfH \ n8sTHx2NsXIS2bTvQpk0H7t + / W2jXoqGhgZVVyX + FIQfQo0c9tmzJYcaMYIKC1OnUqVahjV28uDnl \ nyztx4cJ5Ll26oCwM / + TJY6Kjn1KmTFkuX77AypXLiIgIR1c3 / wPp8uWRpKQU5 / 79joSF1eLixafK \ nc / 8Gb05GRga / / TaC3r2706vXzxw9egSAbduC8PTsgYdHV548iQLg1asUvL3H4OHRjYED + yiVIj08 \ nupKWlopcLqdVqyYcPLgPgBkzpnDp0oXPWp + Ghga9e / ejf38PRo8eSqlSNkD + UNq8uYW5h + vUqc / J \ nk8dp3botw4atxtW1FXfv3sLDoxs9enRh925FiRBPz / 5ERITRs2cXTp06QYkS5p + 1ZoHCQU9PjwUL \ n2hMY2Jzp09ugqan54U4CAv8SBM + cgICAQB4cHMpTt259PDy6UrSoCba2ZdHX11d5IBSLxUyYMJXJ \ nk72QSqU4OlagQ4fOAPTpM4C5c31Ys0afypWrquRc2draMXz4IJKTk + nTpx8mJqYcOLD3vaFjPyJx \ ncbF4eY1iw4agTx4jLOwKmpqaODk5qxyvUsWBKlUcPneJ + dDR0VZu9 + jRm / btf8rXxs9vE + fOncHX \ ndwWurtXp3buf0hMrk8lITMybo6ZOWtqbHMUfPcQV4MKFsyreybS0VFatWoaxcRH8 / ALYuXMbmzcH \ n4OU1ibVrV2Nv78icOX9w9eplZs6cwrp1gVSs6MK1a + EUL14CS0tLrl0Lp2XL1ty8eYNx4yZ89ho7 \ nd + 5K585d33ne2NiY4GCFaEneItYlS1qjqdmBS5d6cumSNocOXWHx4k5Mn + 6q0t / Q0IiFC5d / 9joF \ nBAQECgvBmBMQEBB4i27deuLpOYDMzEyGDh2Ag4MjbduqFk2qWrUafn6b8vV1camkUug7L7a2dvmM \ ntXeFjv3XuXr1Mrq6evmMuS9NjRo18fVdRfPmbujo6JCY + AwNDU2kUikGBgY0b + 6Gnp4 + + / YpQvty \ nPbE1a9bG1PQySUm5RpuEIkUUuVm6urqkpaV91ev4Etja2vHnn0tYuXIZtWvXU6qu5oaPlivnwMmT \ nxwBF7umsWb8DCqMpJSWF9PQ0nJ0rEx4eRokS5nTo0JmQkJ0kJSViYGCAWKxd8MRfgdevX3HmjC2g \ nWENyclX27dtOq1Zv2oSEnOPu3RRq1LCgfv2v + 70UEBAQeBeCMScgICDwFvPnzyIq6iFZWVm4ubXB \ nzs6 + UMbN65yZO3c / e / ZooaEhpW9fXXr1qvfujj8gUqkUH5 / J3Lt3BxubMkyePJ1Hjx6xfPkiMjIy \ nMDIyZuLEqZiYmBIcvIXdu3egrq5O6dJlGDRoKCEhO1BTU + fw4f2MHDmuUMo1vI9cz1m1ajWJiopi \ n0KA + gMIQmzTJh5iYaP78cwlqaiI0NDQYO1bhRcrriW3SxJGjR69QqtQOzMzCcHCwARTCOfPmzWLb \ ntiBmzJj7RQRQvgYlS1qreCerVq0GvKnTp66uWpcvf2ipiEqVKrNjx1YSEuIZMGAIp04d5 / jxo8ow \ n5W + FWKyNru4rXiqFLuVoa7 / JeV2w4CBLllRHIimFoeF1fHxO0737v + tvVkBA4MdEMOYEBAQE3mLq \ n1JmFPqan5wDl9s6doSxfXoesLMVD / YwZF6hWLRJHx39ePPd758mTx3h7T8HJyZk5c3zYvn0rp0 + f \ nYM6chRgbG3P06GH + + msF3t5T2LTJn23b9qChoUFaWip6evq0b98JXV1dunbt8eHJPpO3FTDd3bvi \ n7q4aqmdpaUX16jXz9X3bE + vllbvVjPT0dORyORUruhAQsPWz1zlv3kx + / vmX95Y4OH36BCVLfpma \ ndklJSUrvpL6 + AXv27HpnW2fnyhw + fIDevftx9epljI2LoKuri66uLsnJyUilOVhYWOLsXInNmzcy \ nerTXO8f6GmhpaTF4sDoLFpwgObkUlSqdZsyYOsrzISHqSCSlAHj1qiK7dt0tsCyGwIc5cGAv1arV \ nxNTUFPg6iqgCAv9mBAEUAQEBga / M / fuvlYYcQEqKC9euRX27BX0BihUrrgyRbNGiFRcunOfhw0hG \ njRpCnz7d2bDBj8TEREARvjdt2kQOHz6AmtqbPLMfVTPk8eM42rbdQdWqETRtuodLlwpH1MbLa9IH \ njbRTp04QFfWwUOZ7m4cPHzBgQG / 69OnOunW + eHj0Ja + YCLzJK / X0HMDdu3fw8OjGX3 + tYNKkacpW \ nFSo4UbKkwjBydq7E8 + dJODt / Wc / rP2HAgIacPm3F4cPxhIS4YWFRTHlOU1Om0lZdXfZ29 / 8cv / 02 \ ngrS01I / qI5VK2b9 / D0lJicpjX0MRVUDg34xI / p38BSUmvv7WSxD4QpiZGQif778Y4fP9eE6fvoGn \ npw4pKYoHWCurQ + zZUwZLyxLfeGWqfOpnGxcXy7BhA9m2bQ8AV65cYvv2rbx48ZxVq / zytZfJZISH \ nXyU09DQXLpzF338L / v5r0dHRVakT96l8qrdKEf65HXt7ByZPnvGP + / XtG8KePb8o92vWDCQkpG2 + \ ndnFxsYwZMwwHh / Iq4ajXr19jxYolSKVSHBzKM3asN5qamgwdOoBhw0Zjb + 9As2b1cHfvxtmzZxCL \ nxcyd + wfR0U / x8hqNnp4 + + vp6H6xpJ / zt / nMCAs7g41OE5OTKWFicYuFCHRo3dvnWy3onX / qzPXhw \ nH9u2BSGV5lC + vBNjxoxn4cJ53LlzG4kkk4YNm9C370BA4Xlr0qQ5ly5doGvXX / j99zmYmZmhra3N \ nihVr6dHDHTe3NoSGnkYqzWHGjLlYW9t8sbX / GxD + dv + 9mJkZfHQfwTMnICAg8JWpV8 + J2bMTaNx4 \ nGy1aBLN4seF3Z8h9LgkJ8dy4cR2AI0cOUr58BZKTXyqP5eTk8OjRQ + RyOQkJ8VSp4srgwcNITU0l \ nIyMDXV1dZS23zyEnJ + eTvVW7dm1j8eIV / 8iQy8nJUW6 / eKFaj / D584LrEwI8ffqEn35yJyAgGD09 \ nPTZvDmD27On4 + MzF338LUqmUnTu3AaqKmJmZmTg5ObN + fSAuLpUJCdlJxYou1K1bn6FDR7BuXeB3 \ nmZuXlPSCfv124uZ2hF9 / 3U5q6o8hDNOjR11CQrRZunQ / e / aU + q4NuS9FXFws3br9xPjxY1i4cB53 \ n795m8eIV3Lp1k9mzpzNgwK + sWbOBBg0ac + jQAR4 + fEBg4AaeP0 / i4MF91KlTj + bN3ShdugwSiYQy \ nZcrSv38vZDKZUhG1Q4fObN4c8K0vVUDgh0LImRMQEBD4Bri718bd / VuvonB428NUooQFVlYlGTly \ nCFpaWshkMkaOHEvr1u0ZOXIwMpkMHR0dBg8eRsmS1owbN5KYmBhAjplZMfT19alatTrDhw8iMHAj \ nRYsWJTs7mypVXLlx4xqvX7 + mePHivHjxnCJFiiKVSklPT8fQ0AiZTIpUKqNGjZpcuxZB / foNCQ09 \ nTXh4GP7 + az / orcrl999nExsbw5gxw3Bza0NERBixsbFoa2szbtxEbG3LsnbtajZs8KN8eSeMjY15 \ n + vQJDg7lycm5TunSS0lMnIC29mV0dPYzYsQO6tdvQKdOP6vM83Y46vr1a7CwsMTKqiSgUDvdsWMr \ nXbp0U + mnqalJ7dp1AbC3d + Ty5Tc12r6TgJsCGTPmBAcO9AJEXLkiRV19E0uXdvzWy / pHODjY4uDw \ n78lr / RRiYqKpW7c + d + 7cIisri2HDBpKRkU54 + FWOHTtMSMguHj16iI6ODkeOHCIlJRlTUzOWLl3F \ nokW / ExERBsCzZwn89JM75cs74e7erkBFVAEBgX + G4JkTEBAQEPhs8nqYTExMaNu2I0WKFKFHj94c \ nPHgcV9fq7Nq1je3b93LkyGnKli2HkZExr1 + / Ji0tjcDAbRw7dpY1azYCcOzYEUaN + o2jR88wZ84C \ nkpISadOmHbVr18XWtiwtWrTG3z + Iv / 7yp1 + / QWhpadG / / 2A2bAjCyMiInJwc1qzZQK9enp / krfrt \ ntwmYmpqxbNlq4uJisbd3xN9 / MwMH / srMmVOU7eRyOUuWrGTOnD9o1KgpcXGx7NgRRMuWnbG0HE3j \ nxlL27duFuroagYEb882T19sml8vR11cNsXmXYaau / uZdrJqaSEVF8nuuaRcVZcibPDt1Hj36 + JAi \ ngW9H8eLmlChhjptbG8zMirF8 + V8EB + 9BXV2dTZs2MHLkWBwcHKlbtz737t3h0qULJCY + w8trNE + e \ nPCY6 + ikAJiamlC / vpBz3XYqoAgICH0bwzAkICAgIfDZve5iCgzcD0KRJMwBu375JlSquGBkZA9Cs \ nWUvCw8NQU1OnUqUqGBoa0bdvMNeuFcXUNA0joxOEhp5i8 + aNZGdno6amhomJGRUqVCQ09DT79oWg \ npaXJwYP7SU19TWxsDFu2bERf3wB1dXWaNGmusr5P9VbJ5fJ31kwTiUSoq6ujpaVFXFwsu3Zto0uX \ n7jx9 + oTY2GNADqmpF0lM7ERi4jOeP0 + iT5 / uVKtWkyFDhgNvwlGdnCpy5MhBHBwc2b17BzEx0Vha \ nWnHo0H4qV676j9erra3zXde0s7Z + ze3buXtySpYUnY + NGwAAIABJREFU8n5 + JHR0tKlatTrjx49B \ nKlWIwLx6lULFii5cvnyRc + dCqVWrDtu2BWFnV44ePXoTELCe5ctXK9UqDx8 + gKam5re8DAGBfxWC \ nMScgICAg8Nm87WESiRSBHzo6OsrzqgaVqnE1a9ZR9uzpBWjw + DHY2 / uyadNyrK1LKQVVSpWyoVQp \ nG + RyOZs2bWDJkj + YNm0WjRs3Y + XKZURHP8XXdwUJCfFoa6vmqX2ut + qfGoMaGprs3r0dd / duzJs3 \ nE4lEgq / vSp4 / T0IkUmPVKj + uX7 + Gp + cvZGZmoqurx / btQUyfPpHs7GyCgnYhk0np2rUjpUuXwd7e \ nkaCgQDp37opEImHRovlkZ2cjkWTy5EkU1tY27NgRzPPnSQwY0BsLC0sCAzcWWNOuIAn4jIwMpkwZ \ nT2JiIjKZFA + PfhgZGRUowNK5c9vPFqqYN68O4E9MjCFlyqQwe3bTj + ov8O2xsSlN / / 6DmTFjMkOG \ n9EdbW5uff / 6F8 + fPsnnzRsqXr4izswvm5pbs2xeCTKYw + hITn6GhoUmjRk1YsuQPPD1 / YeXKtwWR \ nRN + 1Z1lA4HtECLMUEBAQEPhs3hY8cXZWFYhwcKhAePhVUlKSkUql / P33YSpXrkqFChUJD7 / K06cZ \ ngAZqaskApKc7ERQUqOwfHx / HjRvXiY2N4erVy7i5tUZLS4v4 + HiePn3CmTMnKVvWjm7deirru + Wi \ nq6v7Wd6q3JppQJ6aaXrvNPCcnJzZuNGPnJwcoqOf4O7elRYtWiMSiVQETv74YxkikQhHxwps2bIT \ nLS0txGIxqalpODiU57ffJtCqVVulx1NHR4dJk6azdu1GVq70448 / 5gFgbFwEI6MiLFmykmnTZhEQ \ nsBU / vwAVQ04qlRb4kHzhwllMTYuxfn0gGzYEUaNGrfcKsHyuUIWFRTE2bvyJY8easmZNJ4yNv / / a \ nYnFxsfTq9fOHGxbA1auXGTduVCGv6NuR + x1q0qQZZmbFWbHClzVrNtCsWQtMTExwcanMihW + zJw5 \ nn19 / HUGzZi3R19dn2LCBTJkynoyMdGrUqI21dSn8 / DYhFosJDg5RvmBwcHBk6dJV3 / ISBQR + OATP \ nnICAgIDAZ2NtXYqdO7cyd64PNjZl6NixM9u3vymUbWpqyqBBQxk + fBByuZzatetRt259AMaNm8jM \ nmXMpVWonOTnFiYlZg7V1JSASD4 + uZGVloaOjw86dW7l48TwSSRYWFhaYmJiyc2cw + / fv4cWLF + zc \ nuY3ixUtQooS5iuHSpElz5s2bVaC36v0ovASengOYM8cHD49u / zeopinOFmAciUSKENIKFSrSvXtn \ n1NTUyMrKAkAsFnP16mWlwElcXCwGBoZERFylS5duWFpa8fhxFHfu3KJr118IDw9DJpMikUjYvHkD \ n169fY9CgPkgkWVhZWfH69Wt69x7A7duvgGSaN / + JNm3q4 + XlDUCzZvVo374Tly9fZPTocco1SiSZ \ nTJgwjrZtW2FrW54 / / 1zCypXLqF27Hrq6uu8VYBGEKv67mJtb4O + / RbkfHLxb5Xzec7m4u3fF3b1r \ nvuP + / lt4 / vwFq1adQyZTo2dPF2xsLAp / 0QIC / wEEY05AQEBA4LNRV1fPJ + EfHByist + 0aQuaNm2R \ nr2 / NmrXZs2c38 + cf4OpVDWrWDGDq1MaUKKHwhsTFxeLlNeqjar3lpWJFFwICtn644VvkfVidM2dB \ nvvOengNUvFNFihSla9cexMREk5j4il9 / nYSv7zwiIx / Qp08 / / v77EPr6Brx6lQIoHo69vCayc2cw \ nAC4ulTl37gzq6hpUrVqdgwenIpPJadmyNceOHcHAwABLSytycnJYsWIN / v5r8fV9iLr6bRISJvP6 \ ndQf09VtTu / YJ6tVrSGZmJhUqODF06EjlGtPT05kyxRs3tza4u7uTmPgaP79NnDt3Bl / fFVStWk3l \ nGhUhs2 + M1v + qUIVUKsXHZ / I / qgd4 / vxZli1biFisjbNzJUQixX3s1q0Tq1b5YWxsjEwmo3v3Tqxe \ nvU6ZR / pvRiaTsXDhYW7dUsfCIpORI2vSrdspIiI8ABEHDwYTFKSOlVXxb71UAYEfDsGYExAQEBD4 \ nbD43z0UkEuHl1eqjxt + 37yJhYS9wdDSgU6c6yuPJySnMnHmS58 + 1cXUVMWRI0y + Wh5N33Nzt8eOX \ ncvfufeRydcTidExMzDA0NEJHR5fr1yOQSCQFCpy4uFRmxowptGrVFmNjY1JSUkhOfkmjRk3w9V1B \ n8eIlSE1NxdW1Grdv3 + LcuVCyshzR0DBDLtcH1DEwqEJ4eBj16jVETU2Nhg2bKNcnl8sZP34Mv / zS \ ni2bNWgKQlJSEgYEBzZu7oaenz44dwcTHx6msr1KlKl / k3v1IPHnyGG / vKTg5OTNnjg + bNwcQErKT \ npUtXYWVVkpkzp7Jz5zbat / + J + fNnsWzZaiwtrZgyReElFYlEtGjhxuHDB + jSpRuXL19UKrr + F5g1 \ naz / LlrUCjIBsLl / + g4iIUeQqm96 / 78727cGMGNHyWy5TQOCHRDDmBAQEBAQ + i7fDr77G + H / 9dYyZ \ nMyuQmdkELa1oHj06yNixigfBgQMPcfx4H0CNgwfjEYmOMmTIlxHaOHz4pMoaHz9 + wsmTfcnMdEVD \ nIxpLy / 6sXLkJP79VlCtnz + TJPty4cY3Jk72QSqU4OlagQ4fOAMrC6i4ulQEoW9aOly9foKGhgbm5 \ nJc7OLhw + fIBTp05w5MhBsrNzsLe3JzJSBogwNLyGk5NYaVRqaYnzGZvOzi6cP39Wacw9fPiAqVO9 \ n0dc3wNi4CGPHepOa + rrA9b0pKaDY / lQD + f79eyQlJVKrVp0PN / 5O + Kf1ACtXroqFhaUylLd5czdC \ nQnYC0Lp1O8aPH0OXLt3Yt283rVu3 / TYX8w2IiNBGYcgBaBIXZ42a2ktkshL / P5aBvr4g4yAg8CkI \ nxpyAgICAwA / H3r1SMjPLApCVZcWBAxqMHQsSiYQbNyzI1feSSktw5crXK6Kdnp5BVpYBkADsB9IR \ niRoREDBY2aZq1Wr4 + W3K11cs1ubYsbPK / XHjJiq3XVwqsW9fCBMmTKVMGVv69u2Js3Mlhg / vR8 + e \ nx2nYMI7GjTU5ePABjRvnz1HKpV + / Qfj5 + fLHH / OYO3cm1avXpF69htSuXVfFi1fQ + vKGneYKVeSK \ nwHyMYXf / / l3u3r39UcZcTk4OGhrf7pGloHqAueGyuccK5s3xYsWKU7RoUa5cucTt27eYNm32l1ru \ nd0eRIqoCRNbWUL / + frZvr0VOjpiWLY / g4dHlG61OQODHRjDmBAQEBAR + OMTinLf2swHQ0tLC1DSZ \ nxMTcMzJMTDK + 2rrKlStLw4aBHDumD7gBezh / vg27dl2gQ4canzyui0tlNm5ch5NTRcRibcRiMWlp \ nOmzceJXevfty6NBWAgNVhWXyG1iKfXt7B5YuXUitWkepVq0m6urqhIeHERS0iefPnzNkyHAaNmxC \ neno63t5jSUh4RlJSBmZmzRg8uAl2diaMHj2UChUqcvfubX7 / fSkBAeu5c + cWEkkmDRs2oW / fgYCi \ nvuDSpX + QkZGJlpYWixYtZ82aVWRlZXHtWjg9e3pSq1YdFi2az6NHD5FKc / D0HEDdug3Yv38PJ08e \ nIzMzE5lMxrJlqz / 5 / n0ub9cDPHv2NCYmply / fo2goE3o6OhQuXJVSpWyIS4uVhmmeuTIIUAhRnPk \ nyGnatu2Aj89k3NzaIBKJOH36BCVLlsLGpvQ3u7avwdSpNUlMXM / 9 + 8WxsHjO1KmOVK1qx8CBd8nK \ nekmlSl1RUxM8cwICn4JgzAkICAh8BbZuDaR9 + 58Qi7ULZbyCaoZ9DPv37 + Hu3duMGjXuw42 / QwYP \ ntuDBgwPExNSkWLEwBg0yBRQGzNSp1vj4BJKUZISTUzyTJn29PBx1dXV8fKpz / LgmOTklefx4DwBn \ nztyiQ4dPH / fu3dv8 + usIxGJtlixZQGKinKNH56CjE4al5Q4aN7YlPv4poaGn0NTUpG / fgcyZswBv \ n77FK8ZZx47yZPNmbZ8 / iCQraia2tFZGRMSxfvogXL56zcqUfUVGPGD9 + NA0bNkEsFjNkyBi6d48l \ nJqYm1tZdGTq0PkuXPiYmJprJk30oX94JgAEDhmBoaIhUKmXkyCFERj7A2roUU6dOwMdnLg4OjqSn \ npyMWi + nffzB3795m5MjfAFi9 + k9cXaszYcJUXr9 + zYABHri6Kgzf + / fv4e + / BQMDg8 / 4VD4PkUiU \ nT61VU1OTCROmsmjRPJVwVA0NDcaNm8i4cSMRi7VxcalMbGw0uYZ0nTr1mT17Oq1aKUIsT506QZ06 \ n9f71xpyVVXF27eqERCJBLBYrjzs5OXzDVQkI / DsQjDkBAQGBr0Bw8BZatGhVaMbcPwlrmzdvJj / / \ n / As2NqWRyWQf9eY7Li4WT8 + x + PkFfrjxN6BxYxcOHkwkLOwizs5lsLAokeecM40aVSQ7OxstLa2v \ nvjZzc3NKlIggLi631p4EM7PPU350canCli0BdO7clbCwq7x8qQtooKNzhcTEn5DLM1izZpbSmHr4 \ n8AFVq1Zj4cJ5vHjxggULThMaGoJYrEGDBlWVLwEMDQ0BqFevAaAoCP3ixQtAETq4YMFC1NSSsbL6 \ nCw2NZyQmOnHu3HaKFzdXGnIAx44dJiRkF1KplOfPk4iKegiAiYkpDg6OgKLeH8CyZYto0KCRsu / F \ ni + cJDT3F5s0bAcjOziYhIR6RSISra / VvasgBlChhzqZN21SONWtWn6pVqzFr1u94eY1i / PjJZGZm \ nMn36JB49ekipUqVJSkqkZcvW2Ns70KxZff76awXHj / + NXA4GBgZcvx5BaOhpwsPD8Pdfy8yZ8z + i \ nbMaPSV5DTkBAoHAQjDkBAQGBQiYjI4MpU8aTmJiITCalUaOmJCUlMnz4IIyNFcWdFyyYw507t / OF \ npXXu3BY3tzaEhp5GKs1hxoy5WFvbkJKSzLRpE0lKSsTJyVklR8fbeyzPniWQlSXB3b0b7dp1BODv \ nvw + hp6evrDP29OkTAgLWo69vQNmy5ZQy8z8qxYub0bKlWYHnRCLRNzHkAAwMDPH21mDx4mBev9an \ nZs0YRo3q + Flj2ts7cPfubdLT0xCLxWRllURb + 8b / jbmJJCauxNNzh9KYevToEWXKlKVFi1ZMmLCI \ nXbu8sLZeR1xcbySSE3h7y1TG19R8813I / W4dPnwATU0ZCQnzycx0oHTpxmhqPsHSUo / bt9 + 8lIiN \ njWHLlk2sWbMRfX19Zs + eTlZWFgW9b3hX8fJZs36nZElrlWO3bt1AR0fnc27bV2XHjmCMjIwICNjK \ nw4eR9OnTHYArV + 6RkZHBrl3hiESp1K1bj5CQnXh49KVu3frUqVNPWb / veye3TMiGDUHfeikCAgL / \ nRzDmBAQEBAqZCxfOYmpajN9 / XwJAWloq + / fvYdmy1UqPyIABv6qEpT18 + IAyZcoiEokwNi6Cn18A \ nO3duY / PmALy8JrFunS8uLpXp3bsf586dYe / eN2IU3t5T0NTUZOLE31i8 + HeCgjbh6TmQjIwMihQp \ nyvr1gTRtWhd1dXWKFSuBSCTiwYN7VKjgRExMNNOnT0IiyaROnfoEB2 / hyJFTKtcjlUpZtWo54eFX \ nyMrK5qef3Gnf / qevd0N / QLp2rUWXLjKysrLQ1q772ePlKlru37 + H6tVrkpWVxIULB9DSisLRcS8v \ nX15l3brAPMaUBIBWrdqxcWNfDAxOkJrqRnp6LSQSX54 + fUzx4s4qIh5vk5aWRrlyZRg69Dpbt + 5D \ nQyOGBg1W0qzZGIKCljBixGCWLFnJ5csXSUlJ5uzZ0 / j7ryU6 + ikvX76kWbOWPH + eRJMmdejY0Z2L \ nF88zevQ4RCIRGRnpyuLlRYsWZcuWTTx7Fk9iYiIZGekMGPDre0RFvk + uX49QFlcvU8YWW1s7Xrx4 \ nyYgRmWhoaHL58maKFr1I + / YXiI + PVvb70a5TQEDg + 0LINhUQEPhPM3ToAO7cuV2oY9ra2nH58gVW \ nrlxGREQ4enr6 + docO3YYT88eeHr24NGjhzx69Eh5LvctfblyDsTFxQIQERFGixaKOmy1atXFwMBQ \ n2T44eDM9e3bhzp3baGlpMXHiNGrWrAWgLAKdmZmJg0N5Nm4MolKlKhgbF0Eul7NkyQJ + / rk7 / v5b \ nKFas4IK9e / fuRl9fH1 / fDfj6 + rNnzy7lugTejZqaGtrahRNWCwpFy82bA6hUqQp / / DGI0qV34 + ho \ nwsKF1dDT00dPT48XL55z / vwbRUxTU1OMjAwoWnQFKSk / kZVVFh2dmkyaNJ727duzfPlioOB6ec2b \ nt + TOndvcvLmejh1jsbCwoEQJRbioRCIhIyODnJwckpISKVHCnFmzpmFsXIS6desTFxfDuXNn8PGZ \ ng0Qi4cSJo + jq6uLgUB6xWExU1CPatGmOlZUVM2fOJzY2mhs3riOV5mBjU5qaNWshEn16 + YNvxduG \ n2dWr94mKak7uu / MXL6pz61aSSsH1s2fPIJFkfs1lfhYymYx582bRs2cXRo8eikQiUfkdTU5Oxt29 \ nHaDIzfX2HsOoUb / i7t6O7duDCAzciKfnLwwc2IdXr14BEBKyk / 79e9G7d3cmTRqnvB + zZk1j8eIF \ nDB7sSZcu7Tlx4ui3uWgBge8YwTMnICDwn + ZLPDCWLGmNn98mzp07g6 / vCqVBlUvBYWkS5fnc8Ed1 \ ndTWVh76C3uBfvXqZK1cuMW / eIsaPH41MJuPWrVuUL + + Empqa8to0NDQwMysGgL29IxERYVhYWHDz \ n5nXmzl0IQLNmLfjzzyX55rh06TyRkQ + UD1JpaWlERz / F3Nzic26TwEfytqKloaEBrVo1o2JFZ8qV \ ns6d7904UK1YCZ2cXlX4DB / Zg0aJVFCkSjqHheSZN6oazc1nMzAxITHydb57c2nlGRsasWuWnPJ6T \ nk0P37p0wMjLCycmZMmVsuXPnNteuhdOqVTvu3bvDxInTAMULgPDwMIYNG4W6ujrBwSHK76LiXxHj \ nxk1Q1rsbPdqL0aOHUrt2PSwsSnHp0i0aNWqKm1ubL3AnvwwVK7pw7NjfVKniyqNHD3n48AGdOvVC \ nX / / NyyJ19QTMzMSAQqpfV1eXI0cOKcVt / ikfmwNbmDx9 + oRp02bj5TWRKVO8OXny2Ht / Rx89esi6 \ ndYFIJBJ + / rk9Q4aMwM9vE8uWLeTgwX106dKNhg0bK8PDfX1Xsnfvbjp1 + hmgQHEeAQGBNwjGnICA \ nwH + CuLhYxowZhoNDee7du4ONTRkmT56u0mbBgrn55NWvXLnEtm1BSkXAS5fOs3PndmbP / p2LF8 / j \ n5 / cXWVlZWFpaMWHCVHR0dOjYsRVNmjTn6tXLuLpW5969u + jq6pGWloahoRFpaWloa + uoeFIqV676 \ n3vW7uFThyJGDeHj05dy5UF6 / VrzRTk9Pw8DAAFvbskyfPochQ / qyd + 9OXr9WDZ / T0NAkPPwqr16l \ nIJfLiI2NUQpT / BNGjx5HtWo1 / 3F7gcKnatVqHD9 + Trm / efMO5faECVPf2e / 69Qh + / dWT1q2bfdb8 \ neUM9K1Z0wda2LFevXiImJhpzc3Pu3s3r4ZZ / VPHy3BcgY8cuY + 3abaSm1qJ06ccEBjajSBHjz1r3 \ nl6AgT2Z2dhY3b16jR48uZGdnoampRaVK5enZcz9 / / 51J6dK9KVo0iitXpBgZGf + / rxopKcl07Nia \ ncuXKsWrVunf + rnTu3JYmTZpz6dIFfvnFgyZNPu / z / FTMzS0pW9YOUORyfshLX7myKzo6Oujo6KCv \ nb0CdOorSGWXKlCUy8j4AkZEP8PVdSVpaKunpGdSooYgsEIlEBYrzCAgIvEEIsxQQEPjP8PTpE376 \ nyZ2AgGD09PTYsUNVoW7AgCGsWbOB9es3Ex5 + VakI + ORJFCkpyQDs27eHNm3ak5yczIYNfixZsgI / \ nvwDs7R0IClIUWpZKczhy5CByuYywsCv07t2Pdu06MGbMMEaMGIydXTmlJ2X69Mn5PClvePO229Oz \ nPxERYfTs2YVTp05QooQ5ADVq1EYqldK160 / 4 + 6 / F2bkSTZq04N69u6ojiUR4eg5g4MA + rFmzCn19 \ nA0QiERUqVOT4cYXH7e + / Dxe4iurVa7FjxzZychS13Z48eUxm5o8TFvZfZevWUFq2bEdo6BWaN3cr \ nlDHzhnq6uFRm167tlCtnj6NjBcLDr5KSkoxUKuXvvw9TqVKVd47Tr98gDAwM + eOPeQAkJSWRmJjI \ noUMdeP58ONraj7lypQ9Ll54plHUXNrneS3NzC / z9twBQpUo1LCysCAjYir6 + ATk52ZiYmFKqFIwb \ nN57Dh2dw4MAegoP3oK9vwMOHDxgxYgzm5hbs2rWfVavWvfd3RSQSYWRkjJ9fwDcz5AAV4SQ1NXWk \ nUinq6urIZIoogrxRBvnbqyn3RSKRMvJg9uzpjBkzHn / / LXh69lcZoyBxHgEBgTcInjkBAYH / DMWK \ nFcfJyRmAFi1aERy8ReX82 / LqeRUBDx3aj5tbW27evMGUKTM4dy6UqKiHDBrkCUB2dg4VKyrGFou1 \ nWb78L4oXfyOXb2 / voAwbgnd7UoKDQ5TbDg6OLF26CgBDQyMWLlxeYJ8FC5Zy8eJ5 / vxzCWpqIk6d \ nOs6YMeNJTX0TQicSiWjVqi2tWrXlxImjnD17hpEjfyM6 + ik + PpPZuHEd1avXRF8 / f35f27YdiIuL \ npW / fHsjlcooUKcrs2b + / + 0YLfHP + / PMIc + dWRSI5jkj0gmnT9jNrVvvPHreg4uUuLpUxMTFl0KCh \ nDB8 + CLn8nxUvHzlyLLNnT2fFiqW4ulZn4cL5mJmpI5MZ8OzZNEBEdvaP85hSqlQpzp49Ta9eXYmL \ ni6FWrTo8eHCfa9fCGTnyN44f / 5tdu3YQG5uCRJLKypW7mT9 / tMoYN29ef + fvCvBNjbj3YW5uwd27 \ nt3F0rPBJeW0ZGekULWpCTk4Ohw7tf2f + roCAQH5 + nF9JAQEBgc8k70OlXC5X2X9fHlurVu3w8hqF \ nlpYWjRs3VeaquLrWYNq0WQXO9bUl1atXr0n16qphkMuWrQYgMDCUnBxv6tU7QqtWWXh7t1bmnZiZ \ nmfHXX + sBRSmDp0 + fAIqHsz179pCY + BqRSMTAgb8ycOCvX + + CBD6LY8dESCSlAJDLi3LqlF6hjPu + \ nUM + mTVvQtGmLfH1yvVi5BAe / UWLN + 1Jj06ZgevYM4u + / + wBaWFoeonNn20JZ99fA0NAIZ + fK1KtX \ nn5SUFJUwVLFYzJYtm9DQ + Inw8IEULz6JXbvKYGGR3xv + Pf2uFMTbxrlIJKJbtx5MnuxNSMhOatWq \ nS67Bnj + XTjU8Nfdcv36DGDCgN8bGxlSo4ER6enqB8 / 1ogjgCAl8DwZgTEBD4z5CQEM + NG9dxcqrI \ nkSMHcXZ2ITT0NHK5 / L15bKamppiamuLvrwh / Aihf3omFC + cRExONpaUVGRkZJCUl5quV9a2JjHyM \ nj48 + L14ocpMePYrBzi6Uzp3rAHDnzh0WLZqPXC7HwMAAb + 8pKv3XrDlBQIAEmUxEp04iRoz4Pj0D \ nAqro6KiGuunqSt7R8tsSFRXL1KmXePZMFyenVFavbouf325SU6F9ezucnH4cYw7ehKFOmDCVMmVs \ nWbp0IY6O5f / / + 6JNRIQ56uov0dM7RXp6Da5ckaKrq6vMp / 0Svytv14YLDNxIZmYGBgaG7N69A3V1 \ ndWxsSjN9 + uwPjpU3rBSgW7ceym1 / / 83K7f79BwPg5tZGRcQmryGf91yHDp3p0KFzvvnejmB4 + 8WA \ ngICAYMwJCAj8h7C2LsXOnVuZO9cHG5sydOzYmdDQ04hEIpU8toIUAZs1a0lKSgrW1jYAFClShIkT \ npzFt2gSysrIBRc7d92bMXb8exYsXDZX7WVmW3L / / RrrexaUS69cHFtj3woWbzJ1bilevFGFef / wR \ nSfnyl2nWzPWLrvlH4F3Fk9euXY2LS2VcXasX2O / 06ROULFkKG5vSX3R9o0bZERUVzL17VbCyus3I \ nkeZfdL5PZdSoC4SG9gLgyhUJuro7mD79x1GwfJt3haGWLWtHuXIOREb + TokSu8nIqArIKVo0gwYN \ nOjJmzDDMzIqxZMnKd / 6uyGQypk6dwMuXL5HJpHh49MPS0orlyxeRkZGBkZExEydOxcTElK1btxIY \ nuJns7BxMTEyRyd4Uic / 1bm3a5M + 2bXvQ0NAgLS31W9yud3L0aDhr1sQjlYpwdzfA3b32t16SgMB3 \ ni0j + nWSTFiSPLPDv4F3y1wL / Dn6Uz / ddD9 / / lIUL52Fv70jr1u0KPJ + c / BKZTEbRoiafs8xCJyEh \ nkVat7vL0qUIAw8DgJmvWvKRRo3eJrrxh69YTDB3ahryhUZMmbWP48PyhdP81PvX7NGvWNOrUqfdR \ n8uq5AhMfS1paGlFRTyhZ0kJZrD4v3 / pvVyaTUbnyceLiOiiPNW + + nYCA5t9sTV + aU6duMmXKQxIT \ ni + LgEMeqVY0wM3v3b4ZcLufRo0doamoSGXmPCxfO4 + U1EYC0tFTGjh3O3LkLMTIy5ujRw1y8eB5v \ n7yloakrJzlZ8ZxYtms + JE8fYvfsgAJs3B5CRkc7NmzfQ0dGhfv2G1KvX8LsI4QR49Cia9u3jiY9v \ nBICxcRj + / hJq1arwjVf2 / fCt / 3YFvhxmZgYf3UfwzAkICPxn + NR8C0 / PHujq6jJ8 + JgCz0 + cuJut \ nWy0ANdq1O86CBZ2 + m9yO4sXNWLQogdWrt5KdrUa7djo0alT / H / Vt0qTi / 9g784CcsjeOf963fZUt \ nS0mpVKRIYxiyJcY2zNjXMBh + 1rGHoiyhLNmXlLJkZDD2nRFZxhZmZEmJNor29X17f3 + 8ekkhS9b7 \ n + Wfee + 65555z79Wc55zn + T5UqhRCQoK8ftmyF2nU6PPaefyUFCRPvnEjjIoV9fH0XIi3t6fCWFu1 \ nahlnzoSgpKREgwYNadasBWfOhHD16hUCAtYze / YCMjMz8PKSJ9Y2MDDExcUNHR0dRo4cSs2aFly7 \ nFkbjxg7s37 + XoKA / FbsoAwb0YevWHa818rStySyMAAAgAElEQVS0tKhdu + TpJ96XtzVwxWIxRkap \ nxMUVlORhZJRN164d8fPbVKwB + qXTtGltTpyoRU5OzhsTykulUoYO3caBAw1RUsqgc + co4uPPs2rV \ nMn74wQEdHW3u3Ytg7Nj / AfLvsXz5igDcvn0bL6 + FZGSkk56eVkgdsiAht7e3D1euXMLffx2enh60 \ naOGIm9vsdx7b + vVrqFvXjvr1v2PkyKGMHPn7W6U / KeDUqRvEx / + iOE5OrsfZs8GCMScg8AoEY05A \ nQOCb4OVYj7fBz2 / TK88dPHgOf / 8WSCQGAGzebM0PP4TQpUvJDKaPQdOm1jRtav3W11laGrNw4X38 \ n / ILJz4eePXX57rsv390pPPwmBw / uY + zYCe / VzuuSJ6ekJBMScpItW / 4E5LsoWlraNGnSlMaNHWjW \ nrCUAzs49GTduMra29Vi / fg3 + / msZPXo8IpEIiUSCr28gIDeUzp49jYNDc44ePUzz5i3fabfuc8Pb \ n244ZMzbz + LEmtWql4ObWnn79fD91t0oVkUj0RkMOIDDwBHv29AG0kEjgzz8r4etrhrJyJuvWrcTO \ nzh4TE9NCid0LmDJlCnPnLsTU1Iy9e / 9i0aL5pKamoK6uQWjoab7 / vhEJCfHY2dnj7e2Jjo4u48dP \ nea9x / frrb4XG + K4LWnXr1qBMmaukpMhjltXVI7GyKvdefRMQ + JoRjDkBAQGB9 + Dhw2QkkufxSPn5 \ nFYiPz / iEPfqwtG5tR + uvzOvN0tLqnXYMXuZ1yZO1tXVQVVXD09ODH35woHFjB8W5guiG9PR00tPT \ nsbWtB8CPP7bH1fX5hNrR8fmD79ixM1u2BOLg0JwDB / YyefL09 + 5 / aSCVSvHwcOX27XCMjWvg6urO \ n9evXWLnSB6lUiqVlLSZMcEFFRYWLFy + wcqUPampSWrV6Xl5ATk42U6dOokWLlrRq9SOurpN5 / Pix \ nIl7sc5Xp / 1CkpEiA5yqkMpmYpKRM + vVri5aWNrt2bSc5OVkh6iSRSHjwIBoTkxpkZj6X + j969BBm \ nZuYMGeJMxYr6GBubKN5TVNQ9UlNTKVeuPLt2 / UlIyN / k5uagpqaGi8sMjIyqs3 / / HkJCTpKdnc3D \ nhw / o2bMPOTm5HD16EBUVVby8fNDV1S3iQiyTydi3bzcREXcUXg27d + / k / v1IRo0aV9yQAbC1rcm0 \ naX8TELAdqVRM5875tG0ruHYLCLwKwZgTEBAQeA86dKjP + vW7iYiQx / 0YGe2jXTubN1wlUBpkZWXh \ n5jal0IS / atWq + PgsJDs7GxUVFXx8VhEe / h9bt25mwQK5cMTixQuIjLyHVCph0KChNGnSjP3793D6 \ n9ClycnKIiXlI06bN + d / / RhMXF8v / / jeYrKws0tPT + OmnNkyf7s6OHcE8eZKEqqoaly79w44dwSgr \ nK3P16mUSEuLZsWMbU6a4cvbsGa5evUxgoD / Dho0C4PLli / j5rUVNTZ2oqHt4eLgCoK6uUchVMykp \ nkcuXLyKVSjExqfEpH / UriY6 + j4uLG9bWNnh6ehAUtIndu3eydOlqDA2rMXv2DHbu3E6nTr8wd657 \ nkfLu3XsBkJmZiZubC23bdqBNm3acPHmMChX08fLyAfjsBDtKg06d6hAUtJvIyJ8AGRYWfhw + fJbj \ nxzeirKzChAkuiMVifHy8SU9PRyqV0KNHb0xMajBmzJgiUv8FypDx8XEkJaUwcOAQVFRU6NbtJ9av \ n34iysjI9e / ZFSUmJf / 45z9q1K5g9ewEAkZH3WL58LYcOHWDt2pV06NCZChX0qVatGgcP7qN7915F \ nduNEIhEtWzoRGOjHiBFj2bDBl5Mnj + Hu7vnGsQ8Y0IwBA0rjqQoIfH0IxpyAgIDAe1C5ckX8 / U3x \ n9d1Gfj4MGGCGiYnBp + 7WN8n586FFJvwDB / bBw2MelpZWZGZmoqamVuiawEA / 7O0bMHXqDNLS0hg6 \ n1Bl7 + + 8BuHv3Nhs2bEFZWYXevbvQrVtPUlJSePz4EdOnu7N5cwDKysocO3YYA4NqVKhQkcTEx5ia \ nmhMe / i9r1mxAW1uHwYP7k5aWQrly5WjevCVWVrWpU8cWd / fp6OjoEhFxl7t3b9O + / U9Ur27Mf / / d \ nICcnh / T0tEKumoGB6 / HwcGXAgMEf98G + Bfr6lbC2li9mtGnTjg0bfKla1QBDw2qAXI5 + x45t2NnZ \ nF1vevXsvZDIZU6aMp0 + f / jg5yVNqmJqas2KFjyJezNa27qcZ4EfExMSADRty2bRpG0pK + fzvf32p \ nXPn3IvWWL19bpKxXr160alVUFdTb + xCrVlUhPb0ijRr9ycaN7RXn0tLSmDVrBjExDxCJREilUsW5 \ nevXsycvL49ChfWhr62BtbcODB9HUqGFGRMSdV45BQ0MDO7vvOHMmBFvbemzZEkiNGoXTTbxrfN3 + \ n / Xu4desmv / 8 + 6a2uExD42hCMOQEBAYH3xNLSGG9v40 / djW + elyf82tralC9fQTFJ1NTULHLNhQvn \ nOHPmFEFBGwHIy8sjISEekUhE / foN0NSUu7kZG5sQFxdLVFQUmpqa2NrWIyhoI6am5tjbN2DlyqXk \ n5GSTnp7OkydJ5Ofn06dPV0BEfr6UIUOGk5cnISbmIXv37kYsFgEiVq / 2w919GlJpPnFxcUydOoPV \ nq5dz5colNDW1CrlqtmnTnoAAP5ycPl + Xsxd3ZmQyGdraOqSmphQqK44Xy0UiETY2tpw7F6ow5qpV \ nM8LPbzNnz55m3bqV2Ns3 + KyN2g + FlZUJc + aUPI3F7t0X2Lz5CaqqKnTrpsNPPz1PkZGQkMDq1fqk \ npclzTIaGmuHjsw2QP39f39XY23 + Hp6c38fFxjBr1PAZOVVWF1auXERPzEKlUysaNfmhpabNz53Zi \ nYh6QnJyMsrJ8ShkefpM7d27h4TGdSpWq0K1bT / 7660 / u349CVVW + mNK1a0ccHVvzzz / nyc3Nfaf4 \ nus9FZEpA4FMj / tQdEBAQEBD4Nrh8 + SKTJhXdWfhQFEz4TU3NWLduJX / / fbxE182Z44W / / xb8 / bew \ nffseqlc3BuQT2ALEYiWkUikikQixWKwQ1BGLxaioqFCuXHlmz16AsbEJpqbmbNoUzPHjoRw / foaT \ nJ8 / Rp48zf / yxGTMzc06cCOXw4VNIJHmYm9dk3LjJ1KtXn7lzvdDW1kZJSUzfvs5YWdVi3boAmjd3 \ nJDQ0hIkTx9CiRSu0tLRL4 / F9EBIS4rlx4zoAR44cxNLSiri4WGJiHgJw6NB + 6tWrj5FR9WLLCxg8 \ neBg6OrosXDgfgMTERFRVVWndui29evXj1q3wjzyyz59r1 + 4wZYoWJ05049ChzkyZos21a893zVJT \ nU8nIqPDCFWKysp6v6WdkZFChglwNc9 + + 3UXaHz58NAYGhlSsqM + gQb9x584tnJx + xMmpLbGxMTx5 \ nkoRUKmXJEi9MTExxdZ1F + / YdOXnyGI8ePSIhIR5VVVU8PFxJTHzMuXNnWLXKl7Jlyyru4e09j8GD \ n + 9OvX3fWr1 + jKL9581 + GDx / EgAG9GTp0AJmZmYUWAEJDTzNs2KBCCwcCAt8KgjEnICAgIPBV8PKE \ n / + bNf3nyJInw8P8AyMzMKOQ6BtCgQUO2b3 + ucnr7ttxIKG4HSSQSUbOmBVlZ2Qqxk9zcXEU7 + / fv \ nUfz29V1VpM3MzAxFHsKDB / cVSuRcHAVxeeXKGfLvv7FERt7D2fnXkj + Qj4xIJMLIqDo7d26jb99u \ npKen06NHH6ZOnYGr62ScnXuipKRE585dUVVVLbZ8 / vzZSCQSAMaOnUBOTjYrVy7l3r27DB06gIED \ ne7Nhg + 8H35ULDt5K377daNu2JZs3BwByqf2goFcr2X5unDlzl8TEhorjxMTvOXPmruK4Ro0aNG58 \ nBpD / G9DXD6FDByNAHuvWu3d / Vq9ezqBBfZ59m / Kdr4JYuOf / JuS / raxqo6uri1gswsysJllZWTx + \ n / JjIyAju3r2Nu / s0AgP9ePz4MS1btqJMmbI8eZLEL790o2JFfapXN2HHju2FxjB06P / w9Q1kw4Yg \ nrl69TETEXfLy8pgxYypjxkxkw4YtLFmyEjU1NcXO3N9 / n2Dz5gC8vZd + leksBATehOBmKSAgIPCN \ nUJxAiIGBIcuXy4VAypTRY9q0GZQvX4GHDx8wceICHj9OQiwWM3v2fKpWNWDFCh / Onw9FJBLRv / + v \ nODo6KQQ89PTKEhkZgYWFFW5uswA4dy6UZcsWoaamjo1N6cY53bt3lxUrfBCLRQqBCJksn8WLvRR5 \ nvRYvXvFsciq / ZsCAwSxduhBn557k5 + dTtaoB8 + cvfqW0uq6uLvr6 + kybNpH8fBnJyU9p0cKRAQMG \ nM2 + eBw8fPuDUqRNkZWUVafPnn7sxbdokDh7cz / ffN0JD47nbZ3EeY5mZGYwaNYKoqCzy8rR5 + tSV \ nRYsusHjx55nrr3LlKmzevL1Ief363 + Hnt7lE5S + rdBaIdoDcSC4tdu3ajo / PKsXOFHx5bnx16lRF \ nSyucjAxLALS0wrG2fq60q6SkREBAR5YuDSYjQ4n27avTqJEVwcF / AWBtXYegoB2K + kOGDAfk8Yxt \ n23ZQLGAEB / / F5csXUVFRVZxbvHgBHTp0wsLCkhMnjhZJlzBp0u8YGFQlLy9HEVPp5NSG / fv3Fqp3 \ n / Phhdu / ehVQqJSkpkaioewDFukvLZDIuXbpIePhNFi9eUawbtYDAt4BgzAkICAh8IxQnEDJhwmjm \ nzVtEmTJ6HDt2mLVrV + Li4oa7 + 3RGjvwftrbfk5eXR36 + lJMnj3H37m0CAraSnPyUwYP7U7euXFb / \ n7t3bbNoUTPnyFRg + / FeuXw + jZk1LFiyYw7JlazAwMMTNzaVYo + VD0aBBw2In / GvW + Bc6rlevvsKl \ nT01NjYkTpxa5pmCSWsCCBYsVv4ODi7qgAcyYMee1 / TM0rEZAQJDiePhwuZqlnZ09dnb2ivLRo8cT \ nEXGP3NxcKlUayNGj3RTn9u49iZvbE8qW / fR5t + LiYhk / fhTW1jZcvx6GpWUt2rbtgJ / fWpKTk5kx \ nYxahoafR1NSiV6 + + APTr1x0vr6WUKVOm0MLCgAFDaNmyVSExjHPnQlmzZgUJCSmAFr / 9No5Onb7 / \ noGNwcnKgdeu2xMQ8pE + fbvz661BiYh6SnJzM5csXqV27Dr169WXkyKFYWFgSFnaVrKxMpk93JzDQ \ nn8jIezg6OikMn09Jkya2TJ58nKCgf1FRUaJLFxEODi0L1dHS0sLFpf0rWng9mpqaZGZmvraOkZEx \ nyclPuXHjOmZm5vj47OXo0dXUqVMbPb1yQJSirkxW2GCOjY1h69bN + PpuRFtbm7lz3Z / F0xV / L5FI \ nhIGBAXFxsURH3 / 8g6UYEBL5EBGNOQEBA4BvhZYEQHR1t7t2LYOzY / yGVSklNTaVGDTPOnj1DRMQd \ nWrVqxePHac9yf6lw / XoYeXm53L8fhbGxCXXr2nHz5n9oaWlhZVVbsathZlaTAwf2sn37H1StaoCB \ ngSEArVu3ZffunZ / wCZQOoaFh3LwZR8uW1piYGL5XW9nZ2Tg77 + TUqSaoqz / B2PhWofNKSnmfVbLw \ nmJiHzJ69ABcXNwYP7s + xY4dZvdqP06f / JjDQH3PzmoXqyyfvsmIXFgrOi0Qinj59yoIFc9DQ + ImL \ nF0cjFmczZkwMOTmhdO / + IRPXi5g4cSoXLpxj / fqNnDkTQnZ2Nrdu3eTnn7sqdntEIhEqKqr4 + gYS \ nHLyVKVPG4 + + / GR0dXXr06EyPHn3Q1dX9gP16N4YNa8mwYVCxog6PH6d90LbLlNGjTh1b + vfvgZqa \ nmsJl + EWUlZWZNWs + ixcv4L / / YsjIKMPTpxNITVWlUaMdpKQkK2IqT548ho2NLWfOhCCTycjIyEBd \ nXQMtLS2ePEni3LnQZ / GVxiQlJRIe / h + WlrXIzMxATU0dmUxG5cpVGDFiDFOnTmLWrHmfbcoOAYHS \ nRDDmBAQEBL4RXlYEtLOzx8TElNWr / YiLi2Xy5N9ZtGgZZ8 + efmUbbdt2xNj4ubpewcq6svJzsRAl \ nJTESSV4xVxevZPgl4 + NzhMWLrcjMbIyBwVGWLk3GwcH6ndtbufIEJ04MBFTIyIC7d1UwMlpOdPRv \ nqKo + oFevxM8qLqhKFQOF1LyJSQ3s7Rs8 + 21KfHxsEWNOjui1qQZkMhn / / nsda2sbgoPrAKrk56uS \ nmanL0aP / 0b37hx + HRCJh + PBf6dPHmZCQv8nJyWbXrj9p3tyRmJiH3L17h6SkRK5fD6NDh5 + oUcNU \ nYcxUrWpAQkL8Z2HMlTYzZswutvzF9ADm5jXp128EnTrVAOSLG6mp0KpVAkZG8ezcuQ01NTVyc3P5 \ n + eeunDkTgkgkwty8JjVrWtC7dxf09StjY2MLyA1EDw / PV7hLizAyMmbGjFm4uk5hwYLFVK0qpIYR \ n + LYQjDkBAQGBb4TExER0dHRo3botWlra7Nq1neRk + Up5cPCWZ65m8t0IZWUVevbsyZMnTzE3r4mL \ nixs2NvWYN28WNWqYUblyFQ4fPoCGhib / / HOOsmXLsW / fbjZt2kB6ejrVqxtjbFyDGzeuERPzEAMD \ nQ44cOfSpH8EHRSaTERQkIzNT7t4VE + OEn9 + 29zLmMjLEwHPDOCenCh4e1XnyZDfVqpWnWbOiucM + \ nJYUVP8XPdnHlv6VSKUpKSshkz4VeCgRj3pRqQCQSoaSkhI5OGklJBaUytLSyS31MjRs7cOvWTZo3 \ nd0RTU5MFC + ZQrZoR48dPQSKRsHChJxUq6Bfq65vEbL41dHQ0UVFJJU + xpiOlTJkydO8 + kfPnn9Kw \ nYROGD2 + FkpISy5Y9V618MUbyRSwtaxVxl37RFdrc3IJNm7aVxlAEBD57BGNOQEBA4BuhOIEQsViM \ nj483T58 + JT8 / n169 + mJgUI3Jk39 / NqFW5vTpEM6ePUPz5o74 + Hgzc + ZU1NXVAahf3x5HRycCA / 3w \ n81uLn98mfH1X888 / 5zEzM2fSpGlMmjQWNTV1bG3rERv78BM / hQ + LVFpYFDo / / / 2CAn / 6qQZ / / nmM \ n2FhHIJ8GDQ7i6NipSLLzL4UqVapy5kwIALduhStENF5eWHhRCl8kElG7dh0WLpzHr79 + z8qV + 0hK \ nKouNzS0mT25W6n0uUG2UyWTk5uZy48Y1xGKx4rtPTU0rZMwJFMXa2oLevXewebMyEkk5vv9 + F3p6 \ neoweXZ2srFZAOnfvBrNkSdd3av / gwUv88UciSkoyfv1VLuQiIPCtIhhzAgIC3zzp6ekcOXKQn3 / u \ nyuXLF9m6dXMhwYuvhVcJhCxfvlbhZtmhQ2eF8MOmTYE8fpyGt / c8cnPlS + wGBoaMHPk7165dxcfH \ nm / nz59Cv3wB + / rkbISEnKVNGj / Hjp7B9 + 1aio6Np0KBhIYXD + Pg4jhw5qEgG / SUjEon45ZdcVq6M \ nJifHiIoVz9Knz / tN8m1tzfH1vcXOncGoqkoYO7bNZ23Ivaz4WHD86FECDx8 + oFmzlhw8uI9 + / bpT \ nq5Y11apVB15eWFBmwoTCIjR6enpMmjSNKVPGYW1tiK5uGZYtW6NITF1a43hRxbTgv9raOhgZVWfk \ nyN + xsLDkypVLbN365aQs + FR4ef1C9 + 7XSUm5j4NDZ3799W + yssyfndXm9OmyyGSyt1YNvXz5NuPG \ nqZGYKDcEr1w5wF9 / xWNoWPkDj + DjUvA3ODDwj0 / dFYEvDMGYExAQ + OZJS0tl585gfv753VaJv0ZU \ nVFQVv5WUxEilkkLnd + 3ajrq6BgcPngAgJORkodxsf / 8dzqVLiWzZcoxOnbJwde0IyBXrjhw59FUY \ ncwAuLu2wtT3H3bvnad7cFBubd3exLMDe3gJ7e4sP0LvSpSBxegEvusjp61fC0LAaampqLFq0vMi1 \ nlStXLnZh4UWXu4YNf6BiRX1WrVpf6nGCK1asY / Lk32nbtgN169oxefLvDBo0FICzZ0 / zyy / dsLCw \ nRCaToaOjy / z5zxd7XuyzQGG + + 66O4remZm6hc5qaOe + U / uHUqUiFIQfw4EFrTpzYSb9 + X7Yx97ZI \ nJJJSW9wQ + LIQvgIBAYFvntWrlxET85CBA3ujrKyMuroG06dPLpIzLTz8ZrE52b4GSiI7XkBg4Hpi \ nY2OQSCRs2yaPtevXbxAeHq6IRCL + / fc / 7t1LJiurPioqAezencfVq + vZuHELq1cvJzo6ioEDe9O2 \ nbUe6d + 9VyiMrfdq1K738Z18yUqkUDw9Xbt8Ox9i4Bq6u7ly / fo2VK32QSqVYWtZiwgQXVFRUuHjx \ nAitX + pCXl0dmpi6amr9gZSVTLBDk5GQzdeokWrRoSYcOnT9YH180Jl71281tNt7e8wgI8OPJk1SS \ nk2uTl9caJ6cM3N07fnH56D4V48ZZc / t2EP / 99x2VKt1l9OiiapglwcREGxWVGPLy5EInWlo3sbJ6 \ nPxXZklCQisPSslaJvumuXTvSsqUT58 + HoqqqxsyZczAwMGTOnJk0buxA8 + aOgDw9xpEjIUXuNXv2 \ nDLKysgAYN24S1tY2XL58EV / f1VSoUI47d + 4Wygso8O0iGHMCAgLfPMOHjyYy8h7 + / lu4cuUSLi7j \ nC + VMu3btKrVqWbNkiRfz5xfNyfY1UBLZ8QL69 / + V27dvkZycjI6OXMGvQoUKmJnV5MSJY + jolCc9 \ nvRWammeIj19IdnY9unffjJqaGsOHjyIoaNNX6cYqUJjo6Pu4uLhhbW2Dp6cHQUGb2L17J0uXrsbQ \ nsBqzZ89g587tdOr0C3PnurN06WpmzTrP1av / kZOTzaFDXbGxWUxmZiZubi60bduBNm3afdA + Hj78 \ nN1B4l / HF3zk5OYjFYry8lhATE0fr1gkkJcnj9qKiHmFhcYo + fUo / ju9rwNLSmAMHKnHvXhRVq1q9 \ nc67ETp0aExa2l7 / + 0kBZWUq / fmLs7Vt94N4Wz4MH0UydOuON33T37r0QiUTo6OgQELCVgwf34eOz \ nkAULFhdj / BddDChXrhyLF69AVVWVBw + icXefjq9vIAB37txiyZJ9qKp + / eqpAiVDMOYEBAS + eV50 \ nD5TJZEVypsXHx6GtrU1kpDwnG0B + fj7ly1f8JP0tLUoiO / 6iS9n27bsV4haJiYloa + syZsx46tVr \ nSKdOEaSkVKNiRU / y8 + tQv37DZ8qGX196AoHi0devhLW1DQBt2rRjwwZfqlY1wNCwGiBXI9yxYxt2 \ ndvaK8n / / vUVq6i / o6W0hOdmZ3FyYMmU8ffr0 / + iuufv3X8bdPYn4eEOsrc / Qu7cGSUnPjQapVJ97 \ n97I + ap + + dDQ0NKhd + / 3FStzcOjB9en6hGMePQUm / 6QKPg1at2ij + u2zZohLfJy9PwuLF87l79w5i \ nsZiHDx8ozllZ1cbAwOCD5xEU + HIRv7mKgICAwLdF0XgxKSDPneXvvwV / / y0EBGxl0aJlJWpv + PBB \ nwHPxj6 + N8PBYmjaN4OBBNRYtukl + vozly8uhr7 + MmjWb0bFjBitXziE6OqpE7W3btoWcnNKXoBco \ nXV6cZMtkMrS1dQqdL86wr1ixsHGkpAQ2NracOxdaOp18DQsWxBEZ + QtZWQ34558BnDiRjInJ8xyM \ n2tr / 8f33gqrlp0IsFn90F9eSfNOv6lNBuZKSEvn58m8 / Pz + / 2Jycf / yxmfLlKxAQsBVf342KlB4A \ n6uoa7z0Oga8LwZgTEBD45ilJvJiRkTHJyU + 5ceM6IA8 + j4y8V6L2V63yA56Lf3xN5Ofnc + 2ahMTE \ nVujohBIdbc / ChRdp1MgKNTUxQUH98fCYhqVlLaKj76OlpU1mZsZr2wwO3kp29rdrzK1fv4agoM9T \ nLTEk5CRRUZElqpuQEK / 493LkyEEsLa2Ii4slJkaenuLQof3Uq1cfI6PqivKZM60wMVmEsrImjRtv \ nQE9PjcGDh6Gjo8vChfNLbVwvk5 + fT0qKeqGynJwKLF9elbZtt + Lo + CceHpG0bm1XKvd3cnIotnzO \ nnJmcPHmsVO4p8GZK8k3Xrfv8mzh27LDivwU7epUrV + HWrZsAnD59ComksLgUQGZmhsLV / eDBfUIe \ nQ4HXIrhZCggIfPOUJF5MWVmZWbPm4 + PjTXp6OlKphB49emNiUuON7RcEuL8s / mFv3wBPT3ckEgn5 \ n + TLmzFmgcNf5 / BEpkiXn5akWKs / KkkvpSyQS + vfvgUwGKSnJxMY + RCKRIBKJGDCgN61atSEs7DKP \ nHz8mP1 + Ks / Ngnj5NIjHxMaNHD0NPryw + Pqs + zfA + IR9rt6Fgx / ltOHXqJI0bO2BsbPLaeiKRCCOj \ n6uzcuY158zwwNq5Bjx59qF27Dq6uk5FKpVhZ1aZz564oKyszdeoMRfmPP9Zm7NgJqKur062bPE5o \ n7NgJzJ3rzsqVS / nf / 0a / 03jfBrFYjL39E2JicgFVVFWjcXBQ5rvvLAkIsCz1 + xcXRwV8dLdCgcKU \ n9JsuIC0tDWfnXqiqqjJz5hwAfvrpZ6ZMGc + AAb35 / vtGaGhoKuoXvNuff + 7GtGmTOHhwfzF1PtJg \ nBb4YRLLPJIBB8P39eqlYUUd4v18xwvt9M05OTTly5BRXrlwqJP6xZIkXtWrVoXXrH5FIJEil0o + e \ nU6xAoc3a2obr18OwtKxF27Yd8PdfS1paKtOmuWNgYIinpwexsbGoq6szadI0TE3NSElJZubMaVy7 \ nFsGjRw5oal4gKWk2Xl4ZaGo + Yc6cmZiammFlVZv / / W802to6tGrVBGVlFSpXrkKLFo74 + a2lTx9n \ nQkNPo6ysjJfXEoYOHcD69RtLXY7 + cyIgYD0HD + 6jbNly6OtXwsLCCnv77 / Dy8iQnJwcDA0NcXNyQ \ nSPKYMGEM69dv5M6d2wwa1Ic / / 9yLvn4levToTGDgVry956Glpc2pUyd48iQJAwNDzM0tsLCwIjQ0 \ nBHPzmly7FsbPP3fC1LRWsQqtu3fvZM + eneTlSTA0NMTV1YPbt28xefI4tLS00dbWYvbsBRgYlL6K \ n4Idg / fo1aGpq0atX3xJfk5OTg4uLL8nJqjRvbkH / / k2LKBF + CLZu3cT + / XsA6NChM92791L8zZDJ \ nZCxevICLFy + gr18JFRUV2rf / 6Y33F / HSUSIAACAASURBVP4uf3jeNg9ct24 / fZC / YzKZjKioKJSU \ nlDAyMgKE9 / s1U7GizpsrvYTgZikgICBQAq5eDSco6ChxcY / euY2X185q167Dxo1 + bN4cQHx83CdL \ nDh0T85CePfuyZcufREff59ixw6xa5cekSZMIDPTHz28tFhZWBAQE8dtvI5g9W67g6e + / Dlvbehw8 \ nuId27bRRUYnF2zuZevUqcfz4EdTU1PH33wJAjx4DadKkI9nZ2WRlZbF48XJatnRCKpUSHX2f33 + f \ nhJ2dPbt37 / wkz + BTEh5 + k + PHj7BhQxDe3j6Eh / 8HwOzZMxkxYgwBAUGYmprh77 + WsmXLkZubQ2Zm \ nBteuXcHSshZXr14hPj6OsmXLoaYmdw2MirpHmTJl8PXdSF5eHuHhNxX3k0gk + PoG0rdvX5Ys8WLO \ nnAWsX7 + R9u07snbtSgCaN2 / JunWBbNiwherVTdi79y / q1LGlSZOmjBw5Bn / / LaVqyGVkZLB9 + wmO \ nH7 / wQURz3mU3S01Njdq1lXFy0qB / / 6bv3M7rCA + / yYEDe1m3LoA1azawZ89O7ty5pTh / 6tQJHjyI \ nZvPm7Uyf7sH169eEnblPyNs9 + / d / T / n5 + Qwb9gdNmsho0iSbceO2CyJSAkUQ3CwFBAQE3sCKFcdY \ nuNCE9PQOGBkdZtWqJ3z33fu7Wjk5 / Ujt2nUIDQ1hwoQxTJo0FTs7 + w / Q47ejShUDatQwBcDEpAb2 \ n9g0AqFmzJnFxsSQkxDFnjhcAdnb2pKSkkJmZQVjYFebO9UZFRYX588fQrt1uWrSow9Gjh7h1K5zs \ n7CwGDuzNgwexpKToc / / + MczNbZBItElLS8PIqDoqKio0bdqcdetWUrZsObS1tT / 6 + D81165doWnT \ nFs + MeTUaN25KdnYW6elp2NrWA + DHH9vj6joFAGtrW65dCyMs7Cr9 + g3k / PlQQKaoKxKJKF + + AjY2 \ ndTEzMyc5OZmOHZ / nZnN0bA3AvXv3XqnQGhFxl3XrVpGRkU5mZhbff99IcX1pTyafPHlKr17HuHKl \ nB0pKT + jZ808WLery1kZMcbudMTEPWbRoAcnJT1FXV2fy5GkYGRlz + vQpAgP9kEjy0NUtw4wZs8nO \ nzmb37h2IxUocOXKAMWMmAnD16hX + + GMzSUlJ / O9 / o99rl + 7atavP3r3cCG / WrCVXr15RnL969QpO \ nTj8iEomoUKEC9et / / L8PAnJeTFlREoKD / 3rve27ZcpydO3sAuuTlQVCQAa1ancXZuc17ty3w9SAY \ ncwICAgKvQSaTERAgJT3dFoDo6PasWfPHOxlzmppahcQ / YmNjqFrVgK5de5KQkEBExN1PYsypqqoo \ nfovFYlRU5MfymDgpYrHKKyfwrypv27YD27f / gb / / Fnr1mklcXFlACZlMCZEohadPn6CpqYWSkjKt \ nW7dFS0ubDRt8MTGpgaamJhkZGV + dm + WBA3v57ruGVKjwcqL5tzNS6tatR1jYFRIS4nFwaMamTRsQ \ niUT88MNz0YwX00C8 / I4K1PBkMhkmJqasXu1X5B5z57ozb94iTE3NOHBgL1euXHre21LeGVq9OpQr \ nVwYAIqRSTbZt + 54hQ25Tq5ZFidt4cbdTKpUwaFBfLCysWLBgLhMnujxLg3CDhQvn4 + OzClvbeqxd \ nuwGAPXt2sXlzICNHjqVTpy5oamrSs6fcPXPv3l08eZLEqlV + REVFMmXKuPcy5op7li8WiUSlbzwL \ nfL48fZoHPM8nJ5VW4PHj9E / XIYHPEsHNUkBAQOA1yGQypFKlQmUvH7 + JggmbmZk5SkpKDBjQm23b \ ntnD8 + BH69evOwIG9iYyM4Mcf23 + wfn9IbG3rcfjwAQAuX76Inl5ZNDW1sLW1U6RaOHv2DGlpqYhE \ nIurXb8CJE88V9 + rXt0JD4zzVq3dEJJIgFlegfPkK3Lt3l5ycbAYO7M2GDeto3rwlIBcIGD9 + FGPG \ nDP / 4gy1F9u / fQ2Li4yLldevW49Spk + TkyN0nz5wJQV1dAx0dXcLCrgJyRbt69eoD8vdx6NB + DA2r \ nIRKJ0NXV5ezZM9jY1FW0Wb26MWfOhDyTNJcRGhqiOFdgHJiYmLxSoTUrK5Ny5cojkUg4dGi / 4toC \ nQ7s0kUrFvGjg5uWpk52d + + oLiuHF3U5NTS0aN25Kbm4ON26E4eo6mYEDe + PtPZekpCQAHj1K4Pff \ nR + Ds3JOgoI1ERT1Xqn3RlhKJRDg4yJOEGxub8OTJk3cfKGBrW / fZu5e7H586dUKxwyo / b8exY0fI \ nz88nMTGRy5cvvaY1ga + Nzp3rYWq6S3FsZRVMx47ffcIeCXyOCDtzAgICAq9BLBbTvn0Gvr7xSCSV \ nKV / + PN27F1W7fB2HD / 8NyBUxX1Zn7Nt3wIfq6jvz8u7Ai8cikYiBA4fg6emBs3MvNDQ0mD59JgCD \ nBg1h5sxp9OvXHWtrWypXrgLIJ7lDhgxn0yZ / nJ17oaysjKNjM27erMHTpzNYsWIZhobVMDSshoaG \ nJv7 + W7h1K4L9 + w + Sl5dHly496NKlx0cb / / vwsniFg0OzQiIJW7ZsJDs7ixo1TAkPv4mb2xQSEx9z \ n4MAJRYxkzZqWODo6MWBAL8qWLUetWrURiWDatJl4e3uSnZ2NgYEhU6fOAOQ7usnJyQoJdFvbes + S \ ntj93UTU0rEaTJk1xdu5JTk4OpqZmaGtrF1JDVFVVfaVC6 + DBwxg6dAB6enrUrm2tSN3h6Nia + fPn \ nsH37H8yaNa9U4ub69KnD / v07iIj4BcjGyekwtrY937KVojteBXnBCuI4X2Tx4gX06tWPxo0duHLl \ nEn5 + a1 / ZcsHOdUGb70PNmpa0a9eBIUOcAejY8WfMzS0U76hZsxZcvvwPfft2o1KlytSpY / Ne9xP4 \ nsqhWrTIBATkEBv6BWCxj6FB7ypUr + 6m7JfCZIahZCpQ6gurS18238H5lMhk7dpzh / v0MmjY1xt6 + \ n5O5exXHx4i2OH4 / EwECd3r2bfbaCBh / r3S5ffpRFi4xITzfFwuIwvr61sLCoXur3fV / Cw2 / i6enO \ n2rUbyM + XMXSoM25us5g1y01hzAUFbXoWOziEUaN + o2fPvqxZs7zEinjFcfnyRbZu3axQRX0VWVlZ \ naGhokJ2dzciRQ5k8eRrm5s + / 3c / t3 + 6LaoH378cxb94KxOJcRKJkzM0tuHr1ElKpFBcXN6ysar + 2 \ nrdu3w5kzR / 5u5G6W / ejU6RdOnTpO9 + 69adGiFTKZjIiIu5iZmTNoUB8mT3bFwsKSuXPdiYuLZdmy \ nNWzduomMjAx + / fU3QO5 + + sMPTRSulQWqk58bn9u7FfiwCO / 36 + Vd1CyFnTkBAQGBNyASiejSpckH \ naevIkSuMGaNMYmI3xOIkwsJ2smDBLx + k7S + JHTvOsmdPGioqWYSGqpOeLnchvHWrOytWbGXp0s / f \ nmHuTeEUBL66Zyt12pXh4uHL7djjGxjVwdXVny5aNhIaGkJOTg7W1DZMmTQPg4cMHeHl5kpKSjFgs \ nZtaseYXavnnzX7y85jJ79gL09MoyZ84xEhPVqF9fmbi4Y0RFRZKbm0vbth0KGXIlJS0tjcmTjxAZ \ nqUO1aul4ejanfPnS3xmoXr0KTZtakpWVyZUrl8jJycbffwthYVfw9PR4ozH8qt1ON7fZeHvPIyDA \ nD4lEQqtWrZ8Zc0NxdZ2Mjo4u9evbEx8fB0Djxk2ZPn0yZ86cUgigvLxzXVpER8exefNVVFRk / Pab \ nAzo6bz / JExAQ + PoRjDkBAQGBj8j27Y9JTOwCQH5 + eQ4cqMDs2bmoqqq + 4cqvh2PHrjJpUhVSU1sD \ nWYjFRwqdz839Mv7XJBKJOHBgL40bN8XS0gqZTEZGRjr5 + c + Nt5yc7CKT / + jo + 7i4uGFtbYOnpwc7 \ ndmynS5ceDBw4BIBZs9w4cyaExo0dcHefTv / + A3FwaE5eXh75 + VISEuIBuH49jCVLvJk3bxH6 + pVw \ ndt7GgQPOgDJ79sQxdaqUGTPmvNcYJ08 + wvbt / QAxly7JkEgC8fP7 + IsPrVrJ1ftsbeuRkZFBRkY6 \ nWlqvVz7t338Q / fsPKlK + cOHSImVNmjSjSZNmRcqrVTMiICAIkBvitWtbo6z8 / PsscKH + 0Dx8mEDv \ n3mHcvt0dkHLy5AaCgzuioaFR4jYOHNjL1q2bEYlEmJmZM3jwMObOdSclJQU9vbJMnepGpUqVmTNn \ nJmpq6ty5c4unT58wZYor + / fvITz8P2rVsla49zo5OfDTTz9z4cI5ypWrgLv7XPT09IrNSaimps6c \ nOTPR0tLm1q3 / Cil / zp49g2bNWuDg0BwAd / fpODo6Ffv8BQQE3owggCIgICDwEVFWlhY6VlHJQ0np \ n7QRVvnRCQuJJTa3z7EiD / Pw4IAWA8uXP8csvFT9Z394GW9u6JCcnk5eXS1ZWFiEhJ2nY8AeSk5 + Q \ nmppCbm4uoaGnFfU1NTXJzMxAX78S1tby2Kc2bdpx7dpVLl / + hyFDnHF27snlyxeJirpHZmYGSUmJ \ nikmvioqKYhfw / v1IvLzmsmDBYvT1K5Gfn8 / Vq + UpWKOVSKpw4cL7R1FERenwfKogIjJS93XV3wsl \ nJaVChnBubs4r635s1 + Rduy7g4HAAO7vTDBmy7ZmwzPsRHLyVvn27MWuWa5Fz27Zd4fbtbs + OlLhw \ noTuHD / 9T4rbv3LlDYKAfy5atZsOGLYwePZ5FixbQrl1HAgKCaN36R5Ys8VbUT09PY80af0aPHseU \ nKePp3bs / GzduIyLiLnfv3gEgOzsbS8tabNy4jXr17PD3l8cVFpeTsIAC5c8FC5awevVyADp06MT + \ n / Xuf3TedGzeuF1JiFRAQeDu + jOVPAQEBga + E4cNrcvnyTiIi2qCldZsBA / Lfy5gbPnwQq1b5ER8f \ nx / XrYTg5 / fhO7XTt2hE / v03o6pYhOHgrf / 31JzY2dZg0ye2d + / YqDAyUkRtv8tQDeno1GTZsFzk5 \ nWrRsacT339t98Hu + SFxcLOPHj8La2obr18OwtKxF27Yd8Pdfy9OnycyYMQsAH5 + F5ObmoKamhovL \ nDIyMqpOTk83cue5ERNzFyMiYMmXKMHv2DNTU1LCxqceSJd6oqqrRpUsHzMxqYmxsorhvu3YdWbHC \ nh6SkRHJy5O3KZDJEIhGLFskTd1esqI + f39pnxkLxBktBHrm8vFxu3w6nUaMmiMViypXLIi6uoJYM \ nPb2s935WhoZpXLwoe9YXGUZGpRenU65ceYUhrK6uQWjoaUV + u + PHj2BnZ09Y2FW0tXXQ1NQqtX68 \ nTEZGBh4eGTx8KBfl + euvHMzMdjF5crv3anfXru34 + KyiQoWiixfq6gC5gHzHXix + Qpky6iVu + 9y5 \ nc7Rs6aRI76Grq8t / / 13H01NuwLVq1YZVq + Q7lCKRiMaN5caUiYkp5cqVL5R3Mj4 + FjMzc8RisSJH \ nYevWbZk2Te52 + qqchK9S / qxb146FC + eRnJzMyZNHadGiJWKxsLcgIPCuCMacgICAwEfE2tqUPXv0 \ n + PvvY5ibV8XGxum92lu1Sp4jLDY2hiNHDr2zMffiTkfBJNPKqkapBNn / + mtLbt7cwYkT5VBTy2X4 \ ncE2cnT + u615MzENmz16Ai4sbgwf359ixw6xa5cfp038TGOiPq6sHK1asQ0lJiX / + Oc / atSuYPXsB \ nO3duR0NDk02bgomIuMugQX1YuzaASpUqM336JHx8VqKmps6mTRuQSCQMGDBYcc9mzVpSs6Yl3bt3 \ n4s6d21hb1 + HIkYPY2Nhy48Y1dHXLkJmZyYkTR2nZ0glNTU0qVtQnJOQkDg7Nyc3NRSbLV6gyuri4 \ nMnbsCNTVNahXrz7TplXD3T2IR4 / 0sbK6z / TpLd / 7Oc2f3xKpNJCoKF2qVUtj / vzS20FRVlZmwIDB \ nDBniTMWK + lSvbqw4p6qqyqBBfRQCKMXxooDKh + TJkyQePTJ6oUSNR4 / ebzfdy2susbExjB8 / irZt \ nOxAWdoXY2FjU1dWZNGkagwY1Z / fuocTGaqOiEkOVKjLu3XPg9Ol9xMXFkpAQz6hRv3P9 + jX + + ecc \ nFSroM3 / + IpSVlQkPv8nGjRtJT0 / n5s3 / mDZtBuXLVyAtLY1lyxZz48Y1HB0L / 91RUVEhPT2dI0cO \ nFsk7KZVKeZmCRQh4fU7CVyl / / vhjew4d2sexY0eYNm3mez1LAYFvHcGYExAQEPjIVKhQni5dmn + Q \ ntpycHDhyJITVq5cTHR3FwIG9adu2I / b2DfD0dEcikZCfL2PuXC8MDAw5dGg / 27f / gUSSR61a1owf \ nP0WxKi6TyQpNMrt370b79l0 + SD9fRCwWs2hRV6RSKWKx + JOoeVapYlBo98HevsGz36bEx8eSnp7G \ nrFluxMQ8QCQSKSa0YWFX6dZNLpNvamqGqak5AP / + e52oqHsMGyaP0crLk1Cnjg1btpzmjz8yUFKS \ n0b9 / WRo2NMLIqDo7d25j3jwPjI1r8PPPXUlLS6N / / x6UK1eeWrWsFf10dfXAy2suvr5rUFFRwcPD \ n81l6AShbthwLFixmwoTRTJ06g1atbGnZsg4ZGeno6DT4IM + pbFk91q / / eIZ216496dr1eRoCiUTC \ n + fNncXRsw + jR4z9aP16kSpWq1Kmzm0uX5Hn81NUjaNjw / dxNJ06cyoUL51i2bA3r16 / BwsIKT8 + F \ nXL58kdmz3fD330KXLrU4evQIY8ZMpVGj + vj5rSUuLpalS1cTGXmP334bwNy53owcOZapUydy9uxp \ nGjVqwpIlXsybN49JkybTooUja9euZMSIMWhraxMVdQ9f30D2799TKJ8dQFpaKocOHUBFpfipYX5 + \ nPidOHMXRsfWzRQj59S / nJNTXr / TG8bdr15HBg / tToULFQkb727Jt2xY6dfpF4X78vvUEBL5EBGNO \ nQEBA4ItGbggNHz6KoKBNCrn6JUu86NatN61b / 4hEIkEqlRIVFcnx40dYvdoPJSUlvL3ncfjwAUWy \ ncpFIVGiSaWpqWKry129yL42Li2XChNHY2NTjxo0wKlbUx9NzIYmJj1m0aAHJyU9RV1dn8uRpGBhU \ no2fPXwgO / ou0tDTat3dk2bK12NrWZcSIIUydOqNQTrSXdx8KdhAKdiJ8fVdjb / 8dnp7exMXFMnr0 \ nsFf2s2DHwd7 + e2bOfC44cvbsDfr31yQlxRaAW7fOsn17Fps3by / SxpAhwxkypGiSdEPDaoVyE2Zk \ nZHD9ejT9 + snrVqpUmY0btxUai45O6cW1fUzCwu4wdmw4aWkShg07h5eXMg0bWr72mvz8fObPn1Po \ ne4mOjsLLy5OcnBwMDAxxcXFDR0eHkSOHYmFhSVjYVbKyMpk + 3Z3AQH8iI + / h6OikeB / Hjh1GX387 \ ntrZ + qKgY0a1bN7p1a / FBxiiTybh + PYw5c7wAsLOzJyUlhczMDJSUlGjbth0 / / GAPyP99Nmz4A0pK \ nStSoYYpMJlO4NJqamhEXF0d09H0iIyPw8PAgNzeXxYsXoKysjEwmw9DQiNTUVJyde1G2bFmFsElB \ n26tXLyMhQe6nu3KlD3p65ThzJoTLly9y9 + 4d1NU1 + O + / f5k / fw4go2JFfXbv3qnISRgfH4e5eU3C \ nw2 / y6FECKiqq + PquZuXKpYwePb7Qok3ZsuUwNq5B06bN3 + v5BQdvpU2bdm800kpaT0DgS0Qw5gQE \ nBAQ + Ia9yDVu / fg22tvUUO0Zv4uWUobVr1yEw0I / HjxNo1qwlhobVuHTpArduhTN4cD8AcnJyKF / + \ n7RKgf2wePnyAu7snkydPw83Nhb / / Ps6 + fXuYONEFQ8Nq / PvvDRYunI + PzyqMjKoTGXmP2NiYZ5P0 \ ny1hZ1eLRo0dvldy6QJWyIJapICk4QN269Thy5CB2dvbcu3eXiIg7iEQiateuw6JF84mJeYiBgSFZ \ nWVkcO3aVlJTnBtrjxw0JDd2OlVWNd3oW8fGP6ds3hGvXOqKu / pDfftvHtGnt36mtL4F5827x77 + 9 \ ngd4ALFgQxI4drzfmHjyIZubMuYW + l82bAxk3bhK2tvVYv34N / v5rFcaF3OAIJDh4K1OmjMfffzM6 \ nOrr06NGZHj368ORJEsePH8HPb6NiAaRKlcwPPtZXpfx92fhQVn6 + 6KCk9HwK93z3WIaJiSl / / hlc \ nZCFm1KjfGDduMhYWhZ9hgVFnYWFFZOQ9AgP / 4MKFc5w8eYx9 + 46Sn5 / PlCnjkUqljBr1O87Ov6Kr \ nq0tOTjZDhjizfPk6OnfuioPDd / z22wi + / 74RU6dOJCsrk4CArURG3mPOnBkcPvz3s53WMJSVRTx8 \ nGI2TU5sSP6OsrCzc3Kbw + PFj8vOltGjRisTEx4wePQw9vbL4 + KzC29uT8PCb5ORk07y5I7 / + + hvB \ nwVuL1Ltw4ZwiNtXAwJCpU2egoaHBqlXLOHMmBCUlJRo0aMiIEWNK3D8BgU + FYMwJCAgIfIYUJCl + \ nV5ycfqR27TqEhoYwYcIYJk2aCkDbth347bcRH6KLH4UqVQwwM5O7MlpYWBIXF8uNG2G4uk5W1MnL \ nkwBydcmwsMvExsbSt + 9A9uzZSd26dlhZ1SrS7suunS8ei8VievXqz5w5MwgIWE + jRk0o2AHt3Lkr \ nc + e607dvN6pXN8bSUt62np4e06bNZObMqeTm5gHQqNGPaGndIiPD4lmdy9jbv5shB7B06XmuXesP \ niMjOLseGDUkMH55EuXKft0H + rqSmqhU6Tkl5867Ky99LTMxD0tPTFC6FP / 7YHlfXKYr6TZo0BaBG \ nDVNq1DBVPMuqVQ1ISIjn2rUrpb4AYmNTj8OHDzBgwGAuX76Inl5ZNDW1XmngvQ4jI2OSk59y9epV \ nDAxMkUgkPHgQjYnJm7 + 7gvuFhJwkJORvrly5xMCBckM6KysbkJ8PDg4iJESekuHRowQePoymVi1r \ nVFRUCu0UqqqqKnYR4 + LiyM7Opn / / nVy4UJlKlbwwNbVBQ0OzxGM7fz6UChX08fLyASAjI539 + / ew \ nbNkahdDL0KEj0NXVRSqVMnbs / 7h37y7duvVk27YtinrJyckEBvoVim / 944 / N / PJLN0JCTrJly5 + K \ n9gUEvgQEY05AQEDgE1Oca5i3tyeNGzvQvLljiVaLNTW1yMzMUBzHxsZQtaoBXbv2JCEhgYiIu3z3 \ n3fdMmTKe7t17U7ZsWVJTU8jMzKJy5cofc7hvRWF3SCVSU5 + gra2Dv / + WInVtbe3YuTOYpKREBg8e \ nRlDQRq5cuVQkNqhKlaoEBGxVHL / obvbiuaCgHYryApc7NTU13N3nFttXOzt71q0LfKn0GH / + eQOx \ nOJ / + / bWxtX335PN5eSq8qHCZk6NDTs6r5fs / Fi / HI02cOIaZM + e8Mg / c + vVr0NTUolevvq9tt2HD \ nbC5efIJMVg5IpUGDN0 + uX / 5e0tNf7yasoiJXiyzYpSvgxTjJ0lsAESESiRg0aCienh44O / dCQ0OD \ n6dNnKvrwcjjpi8dFFyTkIjKzZs3H29ubp09TkEol9OjRu0TGHIBMBqdOnSQ1NYW + fQfQqVPheMnL \ nly9y6dI / rFnjj5qaGqNG / aZI0 / DyTuGLu4hy1 + UTnDw5EFAhMvInoqOjCA29QuPGJVOvNTU1Z8UK \ nH1atWsYPPzhga1u3SJ3jxw + ze / cupFIpSUmJREZGUqOGWaE6r4pv1dLSRlVVDU9PD374wUGh8Ckg \ n8LkjGHMCAgLfNC4uE3j0KIHc3By6devFTz / 9 / NH7UJxrmHwiJyIlJfm1q8UFEzozM3OUlJQYMKA3 \ n7dp1IDc3l0OH9qOsrEz58hXo338QOjo6DBkynHHjRpCfL0NZWZnx4ycXY8x9fEGSkqKlpUXVqgac \ nOHGUFi1aIZPJuHv3DubmNalVqzazZrliYFANVVVVzMzM + euvHYqV / NIiPT0dL6 + TpKaq0LJlOTp2 \ n / E5xbtgwR4a9OtzurejevTqHDx8nLq4lkEWrVleoXLnHh2n8HZFKpUXikd70vEsqeDN9egfKlTvK \ nrVv5mJqKGDXqp7fun5aWNrq6uoSFXcXWti4HD + 6jXr36JbpWJBJRv36DUlsACQ5 + no + tIGXAiwwa \ nNPS1xy8mLH / xnLa2NomJiZibW3L7djjnzp3FyelH7Ozs8faeS05ODtbWNkyaNA2AkSOHUrOmBVeu \ nXOLx40ckJSWirKzMpUv / YG1tw5w5M58pZapw / 34UERF3UVNT4 / 79KP7990aJx5uVJQKeG9tSaVme \ nPr1Z4uurVTPCz28zZ8 + eZt26ldSv / 12h87GxMWzduhlf341oa2szd677K3MVvhzfWsC6dQFcvHiB \ nkyePsWPHtkLxqgICnyuCMScgIPBN4 + LiVij + o3nzlgqXnY9Fca6EBWhr67x2tbhgQqesrFxk4tG3 \ n74Ai93J0dCoiSw4QHLz7hd9 / FTn / qSjOHdLNbRbe3vMICPBDIpHQqlVrzM1roqKiQqVKlaldW64G \ naWtbj2PHjmBqalZc0x8EmUzGoEH7nu04KLF793Vksgv89NO7q0kW5PmzsLBkyhQ3JkwYQ2pqMv36 \ nDWLjRmP27QtGT0 / EkCFdS10JtLjFDicnBzp16sLFixdo3rxlkXikF3MWHjiwl61bNyMSiTAzM2f6 \ ndPdC7cfEPCwiZmNkZAzI3 / WIEW + XuqO472Xq1Jl4e3uSnZ2tiI8q7rriHqWxsUkJF0A + L6Kiopg8 \ n2ZXateswbNgIpkyZw + + / D2HgwCEAzJrlxpkzITRu7IBIJEIikeDvvwV39 + mcPXuG2rWtsbP7Dg + P \ n6cTExDBx4ljmzvUiLi6WihX16du3G9WqVcfauo7insXtFL54rls3G3bs2ElExM9APg0abKdVq5Ib \ n6ImJiejo6NC6dVu0tLTZu / cvNDW1yMjIQFe3DBkZGaira6ClpcWTJ0mcOxeqMNw1NTUV9WrVsi4S \ n35qY + JgKFSqSnZ1Fo0aNqVPHlh49Or37CxAQ + IiIZO / ilF0KlKZimsCnpWJFHeH9fsV86e93 / fo1 \ niviP + Pg4Fi5cpjAGPgYvC6AEBW0iKyuT + Pg4fvihCc2bO5KXl6dYLY6PjyuV1eLQ0KtERCTQunV9 \ nKlWqAHz57 / Zj8OjRIxo0eExmHMSaCAAAIABJREFUZkNFWc + e21m6tOTCDi / Tp09XRTLpGzeu4 + u7 \ niiVLVn6I7haiJO83NTX1JbGLtbT / P3vnGRDV0YXhZ5dd6tJEsGChWFBRhGCvUTEaNdEoAWzYWxJ7 \ nrLFHsKAGjYoSaSrYjd1YY8GosYFG8TN2moKKtKXsst + PlZUqFlCT3OfX3r0zc2fuXS5zZs55T5cO \ nzJ3rzaefdgDA1fUL1q1br1kEyT1OTExk + vTvWbMmECMjY1JSUjA0NCQgYC36 + vq4u / dlzJiRfP / 9 \ nNI2Yzdq1K4XdkHckLi6WMWNG0LOnG8ePqzh40BYTk18xNi6HtXUkKpWS5ORkevVyo08fT777bjhD \ nhozQuCN7ec3RvHsADh06yI0bf / Hdd + Pw8PgKf / 8QjIzeTjH17t0YQkMj0dZWMWJEKwwNDV + 77vnz \ nZ1m50hexWO3COXHiVK5di2D79i2Ym1vg67saL685XL0agYVFRQwNZbRo0ZrOnbuyffvmfOUuXbrA \ n6tXLNfGtw4aNws6uDlOmTHjhNqrCw6OfRun3Y0N4N / 97MTd / / b + JXISdOQEBgf8sRcV / ZGdnlfl1 \ n3yS5sVwuL / PVYm / v / axe7UhGRjNsbffyyy / W1Kv39kIdH4qnT5 + xadNZ9PUl9OnTNl / C4rJCJpNh \ nbHyNdI3AYQ6Ghq / / G9q0aYNGLbNr1 + 48eHBPk + evY8fO7NnzK0lJzxg4sDc / / rjojVQ5S4P8YheP \ nefjwIWKxWDPRLw6VSsWlS3 / Srp2LxsgrOHGXy + VcvRpZpJjNx8DduzEsWuTHw4eXMDWV0a1bdxQK \ nBdraUnr1cmf58iXcvv03vr6ruXjxT / bt283MmfNwcWmFq6sHZ86cRkdHhwULlmBqWu61r6tQKJBI \ nJMUevw4ikYjQ0A1cvLgELa0cVCoxmZnHsbQcwPz57holx1x0dfUK1c + lbdt2BAau5ZNPnLGzq1Oi \ nIRcefoVbtx7RsaMjlStb5DtnbW3J9OmWbzSWXBo3bkrjxk3zfVe7th09e750NS5q1xWgZ0 + 3fOWK \ njm9Vu1kKCPzTEIw5AQGB / yzp6WkYGhq + VfxHaVKcq5xIJCI9PS3favE334wt1WtnZGSwcaOMjIxa \ nANy + 3Z01azazfPk / y5h7 / PgJbm6n + euvPkAGR46EEBzsVmIuu3dFX1 + fCROk + PjsJSmpIp98coXJ \ nkzu / Vt2oqBscOLAXf / 9gcnJUDBvmycyZ8zh37g + N8l7duvb58geWBampqRw + fJAePXpx6dIFNm3a \ nyKJFy4oRu8hEW1vntdw7RSLRKxUZVaocDA2LFrP50ERF3cPT8xQ5Obd58GAXn322kT17djJ58gw2 \ nb95Ir17uREXdQKFQoFAoiIi4TMOGaiGPjIwM7O0bMGzYKCZOHIOnpwflyplha1sDLS2tfLteLi6t \ nOHxYncvtl1 / 8MDIy4v79e0yaNB1 / / 9UYGRnx4MF9NmzYyurVK7hy5SJZWdl89ZUrX375FZcuXSAg \ nYC0mJqbcvXub2rXrMHToSGJiYtDS0qJSpRloaaXz9Olg9PQuo6WlR3p6OsePH6Fdu5curHmfU65L \ nYi7a2to0adIMH58FTJ0685X3bdGiA / z8syMZGc1ZtWo / a9c + p2HDmm / 9HIpa + IqKusHBg / sYO3bi \ nW7dbsP3PPx / N0aNp6OtnMmlSYywtS058LiDwsSD + 0B0QEBAQ + FA0adIcpVJJ376u + Pn9nC / + o6zJ \ nVbCcNGksZmblyczMJCYmmgsXzhMefoqYmGisrW0wMyuPlZU19vb10dHR5c6d26XaD6VSiVIpKfBd \ n2RpAZUFQ0LkXhpwI0OPQoS84derie7l2 / / 6tOHPmE86dM2T7dtfXdkGLjLxC69afoqOji56eHm3a \ ntOPKlcv5yryPSIiUlGR27txa6Pu8ix337t0tdrGj4OQf1Iack1Mjjh8 / QnLyc0DtspmLSqVWYK1c \ nuTLHjx958Z1azOZjIDT0Bs + eGZCa2hGVypTDh9tRr15Drl + / xs2bN0hPT0NbWxt7 + / pERd0gMvKK \ nxk1RKpXSvHlL7ty5za1bN2nUqAlBQaGMGVOU8fHSKL516yZjx35PWNgOVCqV5jg0dDt79vyKTCbD \ n3z8Ef / 9g9uz5VRNb + / ff / 2Ps2Ils2LCV2NgYbt68gY2NDVKpNjLZc + TyBjx / 7o5EUo + / / vqFCRO + \ no27d / K7keY3z9u07Ehq6nkGD + hIbGwNAhw6dEIvFhXbG8pKVlcXGjTpkZNQEtLh3rxv + / qX7vgKw \ ns6tTKoZcLsnJcqZMqc6uXT0JC / Ng8ODTZGdnl1r7AgJljbAzJyAg8J9DpVLx + PFjxGIxPj7LP0gf \ nilKwzJsMOzh4B0OGTMLWdgAGBsloaalYsyaw1AUvDAwM6No1nvXrE8nJKU + lSsfp0 + f9uvKVBoVv \ niwKp9P0ZpTKZDJmsaCn + 4ijqWZaxnkmR + PmtICYmmoEDeyORSNDV1eOHHyZz587fpKena8QubGxs \ n8PX1ITMzg / Hjv2P69FmYmZWnatVqeHj0RCqV0Ly5WqBHLs8gLGw9CoWS7t07Y2ZWHkfHTzRucLnj \ nnDnzx0JiNrliQB8SsVj54pPamJZIMpBIxIjFIipVsmT / / j3Ur + + ArW0NLl36k5iYaKpXtwJeSvRf \ nuqRWg8zdHS7JyK9Tpx4VK1Yq8vjPP89y + / bf / P77UQDS0tKIjn6IRCKhTp16mgT3NWrU4vHjx0gk \ nEkxNTfH3D2b / / ks8f76Hr76aRoUKhXPkrVixJt9x / foObNiwJd93kZFX6NLli1e + f1QqVaGFoZyc \ n0vtBx8REM2PGZDp06MSVK5dYtGgZ69at4dGjeOLiYnn0KJ6vv / agVy93AIKCfuHQoQOYmJhiYVGB \ n2rXr4OHRl6ioG3h7z0UkEtG4cRPS0pSkp9dBJMrEwmI2T55cZMCAMCZMmIKTkzP79 + / h1KnfycjI \ nIDr6Ie7ufcjMzOLIkYNIpdosXuz71jGEAgKlgbAzJyAg8J9CpVIxZsw2mjRJoGnTGKZO / fW97H4U \ n5FXJsN3cerJ69QaePROzfbsbZ86k4 + TUBJFIRFxcLP37F5ajX7duDRcunH + rvixa1ANf37NMm7aV \ n0NByNG9er1CZb78dRlSUWkb82LEj9O3rypgxI9 / qemXBkCHNadgwCFAASXTrdoBmzRxLqPVhcXBo \ nyMmTv5OZmYFcLufkyeOFcuLlZf / + PSxbtqjU + zFy5GgsLasQGBjKqFFjXuwITWTjxm1UrFiJSZOm \ nM2 / eAiQSKb6 + qzl58jxdunRj7Vq1KMu1a1c5cuQUhw + fYtKkaWzduptff92Gs3Njtm7dxa5dvyGR \ nSBg / Xh0bN2jQMNzd + 5KU9Iw7d + KYNm0WQUGhbNiwhQEDhpTauLZsCSUzM + Ot6o4a1YwqVeKRyQ4j \ nld7k668vEhl5GQcHJxwcGhIWtoGGDZ1wcHDk11 + 3U6tW7UJtqA2f / O8WLS0tcnLU3 + Xk5KBQvNwB \ nKhi3VvB4 / PhJBAaGEhgYypYtu2jUqAkqlSpffjwtLTE5OUrNsVgspnfv9owc2blIQ + 5VbNoUztCh \ nh + natS / 79 + / B1dX9leV1dHT44ounaGk9AqBixd / p3fvt4uMK8uDBPWbMmMz06XOoU6duvnMPHz5g \ n2bKV + PsHExjoj1Kp5MaNvzhx4hjBwZvw8VlOVNQNzQKCt / ccxo + fTFCQ2r1XIlEBmZiYbATEZGSM \ nY9q0WcyfP1sTV3j37h28vHzw9w9h7dpVGBgYEBCwEXv7 + hw8uK9Uxigg8LYIO3MCAgL / KTZv / p3N \ nm7u / SEQMwcE2tG17js8 + a1qsDPu7iBkUx6uSYfv4HOT4cVfN + ZQUS27dintle4MHD3 / rvohEItzc \ n2pRYJndVfu / eXUye / AP16zu89TVLG1NTE3bs6MT27buQybTp0cMNsfjjXq + sVcuOzz / vytChngB0 \ n69ajUILjvJL5ZZWGIO9ihkqlKrTTEx8fh0wm4 + 7d24wdOwpQGyJmZuoytrY1mT17Oq1bt6VVq7aA \ nWnkwPPwkYWHrAcjOzubx43hN2oHw8OuMHfuY + / c / oXLlSLy99ejc + fWSR78OReW / exMsLMzYvbs / \ nXl4J3Lw5goQEPbp160HNmrV4 / jyJ9esDNa7POjo6GiP8 + + / HaNpwcmrE + vWBNGyolsdPTn5OxYqV \ n2Lo1DCMjI9LT01EoXk / wpXHjZuzYsQ0QsXXrJr79diwWFkXHdRkbm7Bnzx4 + / 7yLRo7 / Tdm58yxT \ npliTnl4b6IGzcxD6 + gYl1ps / / 0ucnU / z8GEaHTrUKhUhpWfPnjF16kS8vHyoXt2KS5cuaM6JRCKa \ nN2 + JRCLB2NgEU9NyPH36hKtXI2jVSi2CJJVKNSldUlJSSE1N1SQc / + yzLvzxRzjduq3n6tXf0NJq \ nxJgxWtSrV5 + KFSvx8OEDRCIRjo7O6Onpoaenh0xmSIsWrQGwsanB7dsfh2uwwH + XMjPmTp48iZeX \ nFzk5OfTq1Ythw4aVXElAQECgjElIyNAYcgAKRUXi4s4CReecyytmsGrVcnbv3omn5 + BS71feZNhV \ nq + qhpfUYLa2nZGXZIZEkU7lydU3Z3Hi7a9ciMDe3wNt7CT4 + 3rRo0Yq2bdvTq1c3XFw6cfZsOGKx \ nFpMmTcfPbwWxsTF4ePSje / eeJCYmMmvWVNLT01AqlUyYMBUHh4acP39Wo3RnY2PFhAnT0dNT7xCo \ nVCoCA / 25ejUCb + + 5tGzZmlGjxhQ3pPeOTCbD07NjmbQtl8uZOXMKCQkJ5OQo8fQcgqVlFX7 + eRly \ nuRxjYxOmT59FamoqP / 44S6OKFxcXy5Qp4wkO3kRU1I1C5d3c + nDq1Alq1arNb7 / tR6lUMHbs94wb \ n9w2ZmZmYmZUvMrlxURTlViaTydi9ewfZ2QqqVKnCjBlz0dHRZf782ZiYGBIZeY3ExATEYjE / / jiL \ ny5cvanaOABITH7Nu3RqkUilaWhJWrVqHnp4eq1evIDz8FJ6eHjRq1ITmzVsSHn6KkJAA / PwCiY5 + \ noDEIPT2H4Oe3AhMTUwCioq4zY8ZM7t / / DTOzFeTkPGDBgssEB4vo06c / 3bp159KlC6xbtwYDAwOi \ nox / i5OTMhAlTEIlEHD58kA0bglCpVDRr1pKRI78DKDH / 3ZuiTjxdWB3R2bkxx4 / / oTnOjXFTqVT5 \ nEqZbW9swfPi3hIWtZ8CA3tSqVZuRI7 / jzJnT / PzzTzRp0gw9PX1N + YJ52fIed + vWnbi4WBYv9iIp \ n6RlLlizAy2txsfnxAL74ogcTJnynkeN / E06ffv7CkAMQERHhRGxsDNWqVX9lPZFIxFdftXplmTdF \ nJpNRoUIlIiIua1xZ8yKR5F0YE6NUKoGC4jsqTf / yolKpEIlErFvnxpQp5 + jV6xOcnQvniMy / + CbW \ nHL + 8noDAh6NMli2VSiXz5s3jl19 + Yd + + fezbt4 / bt0s / CFZAQEDgTenatQFWVns1x7Vq / crnn6tX \ nzrduDWPAgN4MHz5II8OeK2YAULt2HeLjX71D9roUlwx7797dHDjgR / 36PahYcTVVquykbt1kbG1f \ nxrE9fPiAnj2 / Zv36Lchkhpw4cSzfzplIJKJChYoEBobSsKEjXl6z8fLyYc2aIAIC1gJw + PBBmjRp \ nRmBgKEFBYdSsWYukpCRCQgLw9V1FQMAG6tWrx + bNG / P1ceDAodjZ1WHWrPkflSFX1pw7d4by5S0I \ nCgolJGQzTZs2w9d3MfPnL2LduvUat8Pq1a1QKLI14hRHjx6iffuOKBQKfvqpcHlAk7T5l19CcHfv \ ny7Vr6Zw7N5JjxxYSFVWOdevUz + xV7sDFuZW1afMp / v4hBAWFUr26NXv37tJcMyUlhTVrAhk2bBTx \ n8XH07t2fadNmkZ6exq1b / yMpKYmoqBv06eNJUFAYAMuXLyU5 + TknT / 7OvHkLCAoKpXPnrjg5OTNy \ n5HekpqZy + vQJKlWyxNm5seZeFRSUyMl5Of3Q1r6FltYI1qwJIDDQn8TExBdjus64cZPYsGErMTHR \ nnDhxjMTEBPz8fmb5cj8CA0OJirrOqVO / A2oVyXr17AkKCmXAgCGUL2 / OihVrSi1v3aZNG + jf343 + \ n / d3YsiWM + Pg4PDy + 4scfZ9G / vxvz5m2mbdsOjBmzieTkZIKCfmH9 + kBkMkOsrKyxtrbF1LQc1apV \ nZ8CAwYwc + R1GRkasW7eGn3 / + ifj4OB48uAeoXRafP3 / OoEF9GDlyEA8fPmD48G + YMmUGDRt + gq / v \ nagwMZDg6fsLChS + VTseNm0Tnzl0BtRx / aOj2txq / mZkCeJm6wNz8AeXKvbtHwtsglUrx8lrMwYP7 \ nOHz4YL5zRf9NiGjQwIHw8FNkZWWRnp7OmTOngdzYVkMiI68AcOjQAU0tR8dPOHLkNwAePLjPo0fx \ nVK9uVYIi60eRqlngP06Z7MxFRkZSrVo1qlRRTz66dOnC0aNHsbW1LYvLCQgICLw21taWBARkEBy8 \ nBbFYxdCh9bGwMCtWhj1XzABALBaVyipspUqVCQ7epDn28Oir + bxkiVqQJS0tjYiIG9jYWFKxYocC \ n9QvH2xWkZUu126SNTQ3kcrnGRUgqlZKWlkrduvXw9p6LQqGgVau21KxZi8uXL3Lv3h1GjBgEqKXj \ n69QpOoH6f20SY2tbk5UrfVm9egXNm7fC0FDGnTtFux22a + fC0aOH6Nt3AMeOHWHevAU8eHCvWDdF \ nUCsIgnoHcM2aRKTS / VhaJvDsWTYnTmgxsQTxvqLcylQquH37b / z9V5OWlkp6upwmTZpp6nz66acA \ n2Ns3QE9Pj9mzp6Gjo4O + vj7x8bE8fvyI5ORkgoPXsXPnVmQyGeHhJ7l + / RqPHsWxePF8XF092LIl \ njPT0NFQqFa6u7tSrV5 / U1BQiIq7w9ddfoqOjQ0pKcr7 + lisHOjr3UalEyOVN6NEjC2NjE5ycnLlx \ n4xoymSF169ajUqXKAHTo8BmRkVeQSCQ4On6CsbEJAC4unbhy5TKtWrV9rfx3b0tRaSQcHZ1eiHLM \ nZe / eh / j4uGBtHcbmzT2Ji1uNgcFZgoM3kZ2dzaBBfbGzqwNQaOHFxMSUgIAN7Ny5jbCwDUye / ANW \ nVtasXOmPlpYWf / 55jrVrV / LjjyXHS169eotz5 / 7ms88cqFq18luPd8KEDty6FcL581UwNExh3Dhj \ nZLI3T2ZcGohEInR1dVm06CfGjRuFp + eQfK7HRe1M2tnVpWXL1nh6umvSQuQKFE2bNuuFAAo0atRU \ n8yx69HDFx8cbT093tLS0mD59NhKJJN / zenHVfH0rK / dnAYHXpUyMuUePHlGp0ktFpgoVKhAZGVkW \ nlxIQEBB4Y + ztbVm8OP / i0uvKsL8Pbt68z7Bh17hxowVmZreYPv02ffu21JwvGG + nVGYWaiOvG1De \ n5Nm5bkEODo6sXOnPmTOn8fKajZtbHwwNjXB2bqJx6zM3NyQhIaXIPv7XJjBVq1YjIGAjf / xxGn / / \ nVTg5OWNtbYufX0Chsu3auTBjxhTatGmHSCTC0rIKt2 / / XWx5eCl2kZ6ejpbWfhITx5GW9il6eucp \ nV + 7Vub3UFJ3TzctrLgsWLMHWtgYHDuzl8uWX6RpyfxdisZiKFStpcnl5ec1BqVQiFmvRunXbIt08 \ ns7OzuXDhPL / / fhRtbW1Wr16X73xgYCh / / HGa3bt38sknjfjtt / 0a983MzCwsLU3p2zeKnTv / wsxM \ nwrRp37wciaiw01CuO1xhXn7 / uvnv3oa8aSQA2rRpR0TEZSpUqETduvbMnx8LmOaOgHv3njJiROGY \ nraJo06YdoI6hPHHiGKCO7Zo3bxYxMQ81O7clsW3bWWbMMOLJE1d8fC4xe3Y47u4t3mq8Ojo6BAa6 \ nIZfL0dHR + WDxp3kXvnJTMwC0bKmOWRs0KH8IT958dB4e / Rg0aBgZGRl8 + + 0watdWG9O1a9tpxE8A \ nRo0aDajz6RWVdLxz566a3U6ArVt3FXtOQOBDUCbG3Nu8TM3NP8yKj8D7QXi + / 27 + Dc + 3S5eO7N + / \ nC09PN6ytrXF0bIiJiT5isUgzPmNjfXR1pWU + 3jFjorhxQ60c9 + RJVfz8tjF2rAyRSERmpgESiZam \ nDzKZDmKxEl1dKUZGepibGyIWizAzk2FiYohMpoOenramfO659PQUatashp1dP3R0xDx4cJfhw4fj \ n67sYufwZ1apVIz09nbS0J1hZWSGVamFqqo + 5uWG + z / 8VHj9 + jKWlGX36fE3lyuaEhYWRmppMTMxt \ nGjZsSHZ2Nvfv36dGjRqYm9dBR0fKpk3BfPllN8zNDTE2rkdKyvMiy0ulWpiYqJ9d + fIyjIySiI9X \ nKw + amQVgbq6Dubkhhoa6 + Z5lXlq3bsasWbMYP3402dnZnDsXjpubGxkZ6dSqVR1DQ12OHz9ExYoV \ nMTc3RFdXbciZmxsW + k3p6koxNtbH2dm50O / h8ePHWFhYIJdn8cUXnfj00xZ06NBBU1cdf7me69eN \ nqFQJPDw8OHz4N6pXr0Zc3F1q1mzN + fOnkEq1GD78M7Ky / sfRo0cxMdElLS2NyMjL / PDDVO7cuUNU \ n1HUyM59TuXJlTp8 + jru7Ow0bNmTFiqVIJAqMjIw4efIY / fr1w9zcEJEo / 7vI0FCGjk7pvJ8MDXVR \ nKjM0benrayOT6WJoaIC5uSGWlgryKlcaGyvR13 / 5rPT0pMhkupp7n / dvtVIlU0xMDDEzkyEWq / u7 \ nZMl82rZtRd + + fYmJidGM0cREHx0dSZFjCgtL48kTdSLwp08 / YdOmnXz33buO / Z / 7Nz5hwmxu375N \ nZmYmPXr0oHlz53dqb9mygxw7loWRUSbz5jXHxqZ0lDrflv / S + 1fg1ZSJMVehQgXi4l7GlcTHx1Oh \ nQtGqS7kUt / or8M / nVav7Av98 / inP99Sp36latTpWVtaAWmr / 22 / HaVyfALy8luark5qayi + / rCcu \ n7hkSiQQnp + Y4OTUv8 / EmJ + dfEEtNlfLo0XO0tLR4 + jQNpTJH04fU1Ezk8kwyMrJJTpaTkJBCTo6K \ nJ09Syc7WIjVVfS63fE4OPHmSSnj4KcLC1iORSNDXN + CHH + agVEqZMmUmo0ePISsrG4lEzKBBIzAw \ nMCM7W8mzZ + kkJKTk + / xf4c8 / I1i50hexWIREImXixKmIxWK8vReSmpqKUqnAza03xsbq / 3WtW7dn \ n9erl9Os3VHOfZs / 2LrJ8draSpCS5pty0aWNZsGAYIEWlSuX5cz06dHDByMgYU9Ny9OrlyrNnScya \ nNQ8AX98lZGVlkpSURMeOn2FhUQEdHT127PgVY2NTWrZsiYmJKZ9 + 2p70dPVzy8jIRiQSkZCQUug3 \ nlftbKvh7ABg2bBR2diqmTJnwQrZdxbffjtPUnT9 / L / 7 + lpibr + DmTTEXLybh57eYjIwM5s6dq4nz \ nUijU10tPz6J6dRs8PPqQlJRE / / 6DAF2SktKxs6vLjBmzXgigNKJhQ3XC6qFDR9GnT19UKhXNm7ei \ nfv1GL64vyveb7NLlSwYOHPRWAiAFsbWtw / z5c / jqKw9yclQcPPgbM2bMRaFQkpCQwpQpzbh / P4iH \ nD9Oxt9 / G0KHNOHgwlK + + 6o1CoeDo0WN8 + eVXmntf1N9qUlI62dnq9p48SUJXV / 1uXb8 + jJwcFQkJ \ nKSQlpZOZqSjyby8rK78LeGZmzn / qb7QgU6bMznf8Lvdi / fqTTJ1an6ysagBERQWzb9 + XmhyC75t / \ nyv9dgTfnbYx0kaoMAh8UCgWdOnUiKCgICwsLXF1dWbp06Stj5oQf5b8X4aXz7 + af8nznz5 + tUXsE \ n + O674Xzzzdh8xlxetm49h5eXnISEqjRocJmAgDZUrKiOcVIoFEgkZZfZZcuWM0yZUoXU1HpAMh4e \ n2 / H17VVm1yuOf8qz / bcSFxeLu3sPAgNDsba2YciQ / tSoUZOpU2dy + vQJ9u3b80KdUgctLS1Onz7J \ nwYN7 + eGHufTr9zUKRTYbN25DIpHSu3dPVq9eh7m5hab9sni + ffoc4vDhnppjS8tfuXSpXbEeOwEB \ na9HT088XNwpw6dIFNm3ayKJFy4qs9yHYvHkj + / btBtRpJFq1asPkyePyxb + 6un7BunXrMTIyJiBg \ nLYcPH6RcOTNMTU1p2rQ5Xbt2x8trDi1atKJNm3b5ykdF3WDVKl + WL / fj2rWrzJ8 / Cz09PZo1a8mh \ nQwfZunUXly5dYPPmjflET3IJCTnJ3LnVSU62x9DwBtOm / c3gwW3f1 + 35VzNmzG + Ehb18B + vqXuDs \ nWRmVK3 + Y3Tnh3fzv5W2MuTKZjUgkEmbMmMHgwYM1qQkE8RMBAYG35U3yv8XFxeLtPZfnz59jYmLK \ ntGkzefz4EeHhp7hy5TIhIQHMm7cQgOPHj7BkyQJSU1OYMmUmDg4NUSqVrF69grCw40gkMvT0 + nDh \ nwgCmTfNCVzcSIyMj7t + / R1jYjjIZq1wu588 / N + PoeJ / U1GwcHdvh5TWuTK71JmzfHs7 / / pdCkyYV \ nadeu4Yfuzr + e48cj8fW9ikplwq5dfzNunC3W1jYa2XRra1vi42NJTU1h3ryZxMQ8fPE3ksXgwWqx \ nDZnMSJMbzMrKmri42HzG3Juye / cFli17TGqqDi1aPGPJkh6FdiYqVEgHcsgVy65UKbXE0IuiTr9K \ ncv9V7N9 / gXPnEqleXZuBAz8t1Rg6N7c + uLn1yfddXkMOYOvW3ZrPxcVs5Y3Lylvezq4Oy5f7AWBv \ nXz / fO2bo0JEAODk54 + RUtLtg / / 6tqVHjKhcvbqNtW1vq12 / 7FqN8e1JTUzl8 + CA9evQiMTGRn35a \ nzI8 / LnyvfSgrKlVSABmAOmayYsUHlCtXuikYBATeljJbWm7Tpg1t2rw6Ca2AgIDA6 / Am + d + WLVvM \ n5593o1OnLuzbt5uffvLB29uHli1ba1bDc8nJycHfP5g / / ggnMHAtP / 20ir17d6Gnp0dS0iQSE9tR \ ntaoHaWktyMjQ5uHDm6xfv4WKFSu9orfvRq4Efm6 + qrS01NcSH1i3bg0ODo5F5kh6V7y99 / Hzz63I \ nzrZEJrvOnDkn6devdakXG + jbAAAgAElEQVRfJy9xcbFMnjwun6ABlO04PxaePXvKxInPiIvriqXl \ nPpYsaUKVKuH5xGxyhWx + + cUPZ + dGeHv7EB8fx3ffDWfjxm3s37 + HmzdvaNoUi7XIycl56z4lJz9n \ n1qw0YmLcALh / PxUbm4OMHv1ZvnJz5rTnyZNgbtwwxcIijXnz6r6y3YICFrk4On6Co + Mnb9THkJCT \ nzJpVg7S0TxGJnvD337vw8ur + Rm2UJosWzefevTtkZWXRuXNXatasXXKlPMTHJzJ16iliYw2xtU1m \ n0aKOGkXG4mjevD7Nm9f / IDs3KSnJ7Ny5lR49elG + fPl / jSEHMH68C / fuhXL + fDmMjTOYNKkSurpv \ nnoxeQKAsKDs / IQEBAYFSYuvWME6dOgFQbP63CxfOAXD9 + lW8vX0A + Oyzz1m9ermmnYJe5W3afPqi \ nvp0mf9yff57l9u2 / qVhxF3p6qxGL05DJztCwoQ7R0fXK1JCDwhL4Dg4vd8Fy + 1 / UbsPgwcPLrE8H \ nDmiTna12J0pNrcvu3dfp16 / MLvdKynKcHwvXr9 / l4UMnJBK18ZWVVZWrV89ScO6oUqlIS0vVJOfO \ ndQEsjneJqoiPf0xsbI0838iIiSlcztDQkODg9 + 8SDHDwYAZpaWqDSaUy49ixDysQMWvWj + 9Uf + LE \ nkxw61B8QcflyDlLpRnx9P5xxWhJ + fiuIiYlm4MDeVKlSjfv37xISspn9 + / dw6tTvZGRkEB39EHf3 \ nPmRmZnHkyEGkUm0WL / bFyMiImJholi5dRFLSM3R1dZk8eTrVqllx7NgRgoL8EYu1kMlk / Pzz2vc + \ nNm1tbfz8XF + hqiog8OEQjDkBAYGPmrfJ / 1bcpLXgP2GpVPtFfa189cePn0SDBo4sXXqUxEQJLVoY \ nYmVlzqZNpZNixc / vZywsKvDVV66AerdJX98AlSqH48ePoKury8OHD / D3X0Xt2nacOXOaevXqc / Pm \ nDRYvXs66dX7cvHkDkUhEly5f8vXXHvliAi9cOM + qVb4olUrs7OoyceJUpFIpvXp1o3PnroSHn0Kp \ nVDBv3gKqVbMqsb9SqbLA8dvv8LwJOTk5LFw4n2vXIjA3t8Dbewk + Pt6acfbq1Q0Xl06cPRuOWKzF \ npEnT8fNbQWxsDB4e / ejevWfJF / kIqVPHiipVrhAf3wAAqTSGunUNuHMn / 29YLBbj4dGf + fNnERy8 \ njmbNWpKbA6uo / FfvMgmtVq0q9eod4do1OwB0dO7i7Pxxqenp6ORPTK6rm1VMyX8G9 + 8b8zKnmZi7 \ ndw0 + ZHdKZOTI0dy9e4fAwFDi4 + OYNGms5lzu95mZmbi5fcmoUWMICNjIihVLOXhwH19 / 7cGiRfP5 \ n / vtpVKlSlb / + usaSJQvx9V1NcPAvLF26kvLly5OWlvoBR / jfS8ki8M / gwyQOERAQEHhN3jT / m719 \ nA44ePQTAoUMHcHBwBEBfX5 + 0tLQSr9e4cTN27NiGlpYWU6d + zpgxtfn8c8d3H0ge2rd34dixw5rj \ n48ePYmJiQnT0Q7y9l7J2bTAKhYKmTZtz585tYmKi + eorV9av30JS0jMSExMICdlMcPAmunTpBryc \ nvGdmZuLlNYe5cxcQHLwJpVLJzp3bNGVyExR3796LsLANr9XfoUONKFfuNJBK1aoHGDGiaqnej + J4 \ n + PABPXt + zfr1W5DJDDlx4lihhMsVKlQkMDCUhg0d8fKajZeXD2vWBBEQ8P5X70uLcuXMWLjQkEaN \ nwjEzG8SYMadxd2 / FtGmzNG7Cufm3cmOrAgI2MnToSE0OrM6duzJ27PeaNhctWkbDhk5v3SddXV1W \ nrbLniy / C6NBhOzNnRuLq2vzdBlrKjB5dC1vbnUAs5csfZdQokw / dpXeiWrXneY5yqF79wxoyJZF3 \ nEa3ggpqjozN6enqYmJggkxnSooXaTdvGpgbx8bHI5XKuXo1kxozJDBzYGx8fL548eQJA / foOzJ8 / \ niz17fs236CYgIKBG2JkTEBD4qGnSpDm / / rqdvn1dqVq1Ovb29YH8K6R5P48dOwlv7zmEhq7H1NRU \ nIzbQvn1HFi6cz7Ztm5k3b0ERV1K30a1bd + LiYhk8WC19bmpaDi + vxW8tyFAUNWvWfmGUJfLs2VMM \ nDQ25c + c2f / 55josX / yQhIQGVKoe7d28zduz3REdHU7euPQCWllWIjY3hp58W06xZSxo3bqppV6VS \ n8eDBfSpXtqRKFbXB1blzV3bs2MLXX3sARScoLgl39 + Y0afKAq1dP0qSJHRUqmJfOjSiBSpUsqVGj \ nJqB2hY2Liy1UpmVLdWy2jU0N5HI5enp66OnpIZVKSUtLxcDg1TFGHysuLg1xcXk7oZkdO8K5eTMF \ nZ2cLXFze3oAriJ2dFb / 8YlVq7ZU2jo41OXSoApGR / 6NGjeolpkT62PHxacXUqeuJjTXExuY53t4d \ nNede5XL9MaKtLdV8FovFmuPc2E + VKgdDQ0MCA0ML1Z04cSrXr1 / jjz / CGTy4n0b9U0BAQI1gzAkI \ nCHzUSKVSfHyWF / r + 0KETms9t27bXpByoWLFikTml6td3YMOGLZrjFSvWaD6bmJhodjREIhHDh3 / D \ n8OHf5Kv / NoIMr + LTTzvw + + 9HePLkCe3buxAfH0 / fvgP48suv8pWLi4tFT + 9lsJQ6JmkT586d4ddf \ nt3Ps2GGmTp2pOV9wclcwxiN3EqWlJX6jVW5r62pYW1d7ozG + K / kngFpkZ8uLLZNXHCT3 + L + 4ir9o \ n0QGWL29OVlYVDAyimDXrBAMG / HfEyAwNjWjRovT + TovKR1malORyrVJl4 + bWlsGDhxMXF8vQof01 \ nLtft2rmQkpLM6NETANi9eyf379 / lu + / Gl0lfS0JfX5 / 09PQ3qpNrlOrrG1C5cmWOHz / Cp592QKVS \ ncfv239SoUZOYGPViVt269pw9G87jx48FY05AIA + CMScgICBQDCqVipMnL / D4cQqdOzcuUUnuTWjX \ nzoWFC3 / k + fMkVq70JzR0FwEBIdSq1YA6dWqQkPAYiURaqN7z50lIJBLatGlH1arV + PHHlzLnIpGI \ natWqExcXS0xMNJaWVfjtt / 1FutclJiZw48ZfpTaeVxEXF8uECd9hb9 + Aq1cjsLOrS + fOXQkMXKtJ \ nfm1pWQVv77nExsaiq6vLwIFDAfXkNjY2moiIK + jrG2BjY0toaAgbNgSRmJjA9evXaNq0xTuJe3xM \ nBAX9wqFDBzAxMcXCogK1a9dBJpOxe / cOsrMVVKlS5UVuOV3mz5 + Njo4ut27d5Nmzp0yZMoM9e3ZQ \ nqVIQGRkOPHrkze7df1G37lkCAtaSlZWFpWUVpk1T5y8TKJl32fl6nXyU7du74Ou7RGPMHT9 + lD59 \ n + nP1agT + / iHk5OQwZcoEIiIuY2FRgZiYaGbMmEvduvbI5XIGDPDgm2 / GoqWlxYEDe / jppplv3d93 \ nxdjYhPr1Hejf343q1a3zuUPnv4 / 5vSpyz82c + SM + PgsIDg5AoVDQoUNHatSoyapVvkRHP0SlUuHs \ n3FizWy8gIKBGMOYEBAQEimHSpJ1s3NgWhcICB4ethIa2xtzcrFTatra2QS5Px8KiAkuXniYgwBWZ \ nzITBg8dhaSmhfHlTZsyYV2gilJCQgJfXHFQqtQjJiBHf5WtXW1ubadNmMWPGZJRKJXXq1KN791x1 \ nwaInVO + DmJhofvxxEVOnzmTIkP4cPXqI1asDOH36BCEhgVSooDZcvL2XcOnSBZYuXajJYXb / / n26 \ nd + 9JVlYWBw7spWvXL / H0HMxXX3XB13cJTZu2eOWE8Z / CjRt / ceLEMYKDN5Gdnc2gQep8cW3afEq3 \ nbmoVQ3 / / 1ezdu4uePd0QiUSkpqawZk0gp0 + fYMqUCejoDOLmzW + oVq0n2tpRiMXJhIRsw9d3FTo6 \ numzYEMTmzRsZMGDIBx7tu / M6iwRWVjYsW7aIu3fvoFQqGDRoGC1btnlthUWA337bz8KF81AqlUyd \ nOpM6deohl8uLbffEiWNkZGSQk5PD7NnzmTlzKunpaSiVSiZMmJpPofZVLtcDB / YGQC5X99HCogIV \ nKlTSuFzr6enh5NSI8PBTVK9uhUKhwMbmw + b0LUrBs3PnrnTu3FVznOsFUfBcpUqVWbKksBfG / PmL \ ny6CnAgL / HgRjTkBAQKAI7t69y6ZNDVAoqgMQEdGPVas2M2tWl1K7RnDwJtLT03F2voRCUZmkJE + S \ nkjxxctrCzz93zlculxo1ahIQUFi4JG8i4k8 + aURAwMZCZfJOomxta1CxYqVCapEPHtxj8WJvMjMz \ nsbGxYvz4aSgU2UycOIZ169Zz69b / GDSoD9u378XCogJff / 0l69dvQUdH55VjrVTJUjPRzJv82sam \ nBnFxsTx6FKeZtDk5OZOens6GDVvYtGkjLVu2pm / fAQDs2LGV338 / yu + / H8XY2Jjnz5 + TkZHxygnj \ nP4WrVyNo1aotUqkUqVRKixatUKng9u2 / 8fdfTVpaKunpcpo0aaap06KFOnGxtbUt5cqZ0bNnbWbO \ nPEVmphUVK + 6hQwd99u69w4gRgwDIzlZQv36DDzK + sqCkRQIrK2ucnRszbdosUlJSGDbME2fnJsDr \ nKSyqVCoyMzMIDAwlIuIy3t5zCQnZTEhIQLHt3rr1P4KDN2FoaEhY2AaaNGlG / / 6DUKlUyOWFXYXf \ n1uUaoFu3LwkJCaB6dWu6dPmijO7yh + P8 + WtERkbTunUdatWq / qG7IyDwUSIYcwICAgJFkJmpQKHI \ n64omQqksfQFg9Y6SqsB3pe8yGBh4gl27MpFKlQwdWpH69Svw8OEDZs / 2YvLk6cycOZUTJ46xcWMI \ n48dPwsHBkbCwQAID1zJ69ASysjJJT08jMvIydnZ1uXLlMg0aOFCunFmJhhwUFkDIjW8TiUTk5CgR \ ni6XFukrq6OSdwKpYuzZYUz8jIwMvr8PExOhQt24O48Z1fK0k6x8noiLvgZfXXBYsWIKtbQ0OHNjL \ n5csXNefyJhHX1pbi6tqURo2iWbAggU6dHDA3Nyc + vgmzZ89 / b6N4nxS3SGBtbUt8fCwJCY8JDz9J \ nWNh6ALKzs3n0KB6RSKRRWNTT0yuksHj79i1A / fvs0EGdGN3BwZG0tDRSU1M5f / 5sse06OzfG0FCd \ ntqFu3Xp4e89FoVDQqlVbatasVWgMBV2ub9 + + hb + / Hx07dkZPT69Yl2t1 + / Y8fvyY / / 3vJiEhm9 / 6 \ nPrq4tOLw4VNvXb8s8PM7xqJFtqSm9qJChZMsXfoUF5fSVRYWEPg38E / 9jycgICBQptSqZUvHjicB \ n9Uq6tfVu + vQpfREEPT09evVKQls7GlBRvfp + Bg2qUWK9N + Ho0cvMnVuDM2d6cuLE13z / fTZxcY8L \ nqUXGxESTmpqiSefQo0cPrly5DIC9vQORkRFERFyhX7 + BRERcIjLyCg0avJ3iYkEcHBw5dOgAoM4t \ naGJi + kIIIr9x06hRU7ZufblTOXz4Ovz8XNmzpycLF7rg7b2 / 2GukpqZq0jRcunSBSZPGlUrfS4sG \ nDRwIDz9FVlYW6enpnDmjnlzL5WmUK2eGQqHgt9 + KH18uVlZVqFatAqamJtSrV5 + rVyOIiYl + 0Zac \ nhw8flOk43ifFLRLkFcCZP38xgYGhBAaGsm3bHqpXtyqybkGFxeLI9eYtrt288YgODo6sXOmPubkF \ nXl6zOXhwX6H28rpclytnRqNGTXFx6cSIEQPx9HRn5swpyOXpL65d2H24XbsONGjQ8B1jel / fLVml \ nUr2XGNXQUAWpqfaAiEeP2hAY + KjMrykg8E9E2JkTEBAQKAKxWMy6dV8TFLSf5OQcevSoj7W1ZZlc \ na86cbjRrdpb79 / / gs88aYGVVuVTbv3DhEWlprTXHcXHNuXx5UyG1yNTUlHz18k7YGjZ0JCLiMo8e \ nxdOqVRs2bAhCJBLRvHmr1 + rDqxJYi0QiBg4cirf3XFq1akS9evX54YfZmnN5q44dO5GlSxfi6emB \ nUqnk7l0LIHccJly6VPwuYUpKMjt3bqVHj17FlvmQ2NnVpWXL1nh6ulOunBm2tjWQyWQMGTKCYcMG \ nYGJiQr169vkUA4tL0ZGLiYkJ06fPZvbsaWRlqZNqDxs2iqpV368y6YeiceOmbNu2iXHjJgHwv / 9F \ nUauW3SuNkYL50o4dO4yTkzMREVeQyQwxMJC9drvx8fGYm5vTrVt3srKyuHXrJp06FXbVzutKDeDq \ n6o6rq3uJ5QAiIyNwd + / zirvw + qSnpzN16kRSUpJRKhUMHTqSli3bEBcXy / jx32qUNBcvXs7Bg3sL \ nifV4ePQlJiaapUsXkZT0DF1dXSZPnk61alZv3JecnILKvP + 8OFgBgfeBYMwJCAgIFINEImHIkI4l \ nFywFOnVqWnKht6RePVN0dO6RmWkFQPnyF7G3t + LEifzlDAxkGBkZERFxBQeHhuzatUuTjsHBwZE1 \ na1bi6PgJIpEIIyMj / vgjvJAAS1HkJrjOJW9836lTv7N2bRA6Orp4e / vQsqUzfn4BmvODBg3TfM7M \ nzCQpKYkpU2Zqdj + 6dduT71qmpoVjknLx81tBTEw0Awf2RiKRoKurxw8 / TObu3dvUrl2HmTPnARAV \ ndYOff16GXC7H2NiE6dNnYWZWnm + / HUbt2nZERFxBLk / nhx / mEBISyN27d2jf3oWhQ0eWeC9KwsOj \ nH4MGDSMjI4Nvvx2GnV0datasnUfE5iV572Nx91ilUlGrlh1r1wb / Y3KSvQklLRIMGDAEX18fPD3d \ nycnJoXJlSxYuXPbaCosikQhtbW0GDeqjEUABGDBgCMuXLymx3cuXLxAWth6JRIK + vgE / / DCn1Mb + \ n559XmDt3KnXq1MHJyblU2tTR0cHbezH6 + gYkJSUxYsRATS7HvEqaxYn1ACxaNJ / vv59GlSpV + euv \ nayxZsrDIdDEl0asXLF16h4wMG8zMzuPhYVoqYxQQ + LchGHMCAgL / KPbv38PNmzc0K + ICJdO1axNu \ n3fqNPXsuIZUqGDLEhGrVqhc5EZ42bTY + Pt5kZGRgY2PFhAlqqfOKFSsBaNIcODg4kpiY + FquXa9K \ ncLx16yYpppzzAnFxakJDQzh + / AhZWdnUrt2AQ4cacOuWNVZWQ6hcOR09PW2 + + KILcvkGnj37AwOD \ ny6SnG7Jy5V2 + + WZMofZGjhytEb24fPkiU6dOYMOGrZiZlWfkyMFERl6hbl17fvppMQsXLsXY2ISj \ nRw + xdu0qpk6diUgkQirV5pdfQti6dRNTpkwgMHAjhoZGuLl1x82tj0YB8W1ZtGg + 9 + 7dISsri86d \ nu1KzZu23buvy5Vt8 / / 1fREdXwsYmmp9 + akStWh92Ry4uLpbJk8dp4rtCQ9eTkSHH0NCIXbt2oKWl \ nhZWVNXPmeBWrGJnLqxYJ8p77 / vtphfrxugqLefNR5kVHR + e12i14XFqsXn2MxYurkpp6iMePj3Dp \ n0v9wciocj / emqFQq / Px + JiLiCmKxiMTEBJ49ewqQT0mzKLEeULvxXr0ayYwZkzVtZmcr3qovY8e6 \ nUK / eBaKiLtCihQ1OTo3fcXQCAv9OBGNOQEDgH8W / cXfhfTBu3GeMKxAilnci7OHRV / N5zZpAAMzN \ nDUlIeOl6uWPHy3iffv0G0q / fwGKvV9Atq06dety5c5vMzAzatm3P4MHD2bp1E4mJCYwePQITE1PN \ n6v3atas4cuQ35PJ0QkI2Y2xsQseO7iQnP8DS8hFKZSqpqd3ZunUUfn4raNbsL8LDT9OmzafMmvUj \ naWmpRfYp16h0cWnFwoXLqFOnHuXLmwNQo0Yt4uPjkMlk3L17m7FjRwGQk5ODmZm5po2WLXNFMmyx \ nsVErSAJUrmzJo0fx72zMFSXt / rbMmxdFZGQ / AJ4 + hR9 / 3EhIyMflXpn797xxYzDbtu1BIpFonl9x \ nipG6uoUN / 4 + NR4 + eEBR0DrEYhgxpjqmpSam1rVKpCAxUkJqqXli5e / cL / Pw2s3btuxtzhw4d4Pnz \ nJAICNqClpYWr6xdkZmYBFFDSLCjWo3rRtxwMDQ0JDAx9574AuLg44 + JSKk0JCPxrEYw5AQGB98pv \ nv + 1n27bNKBTZ1K1rz4QJU1i6dCFRUTfyTfRBnXdr + fIlyOUZaGtr89NPqwB1wusJE0YTExNN69Zt \ nGTVq9Icc0n8CuVzO6NH7uHrVlHLl5MyYUYNmzexeWSevW1ZycjJGRkYolUrGjh3FnTt / 4 + rqzpYt \ noaxYsQYjI2NNPXv7BmRlZbFnz68MGOBBuXJmZGREI5e7kJz8FVWq9CclZRMREc2RSrWJjY2latWq \ naGtrc + LEcc0uQfGoDQipVFvzjZbWS9ELa2vbfK6eecmtk7tLp2lRJCInJ6eE675fnj7Nnxj82bOP \ nN1G4rW1NZs + eTuvWbWnVqi1AkYqRjx / Hv1X81fvkyZOnuLuH89dfvQEVR44EsX1753cUKHlJTk4O \ n2dla + b4rePy2pKWlYWpaDi0tLS5dukB8fFyR5Ro0cGDRIi / 69RuIQqHgzJnTfPnlV + jrG1C5cmWO \ nHz / Cp592QKVScfv230KibwGBMkQw5gQEBN4b9 + 7d5dixw / j5BaClpYWPzwIOHTrAsGHf5Jvo3779 \ nN9WqVWfWrGnMnbsAO7s6pKeno6Ojg0ql4tat / xEUFIpEIqV37564urpjbm5R5DXj4mKZOHE0DRo4 \ nFptPzdKyClOnztTIiQsUZv78I + za1ReQcucOTJ + + kaNHa79ypzSvW9axY4fYvftXlEolT54kcvfu \ nXWxsilbtbN68JZcuXaBduw4ATJ78A + 3atUEmO4aBwUlycgyRSJ7j57cCqVRKq1Zt6NPHkwsXzvP7 \ n70fZsWNLkTE6 + vr6 + cRDVCoVK1f6cu7cGRITE8nJycHFpRPx8XEMHNgHS8sq3LnzN1WqVGXRop8A \ niIy8wty5P7yYUCuYNGkcixYte9vbWqY0bJjM9esZgC6QjKNj8fGE7wstLS1ycl7u6GRmZgDg4 + PL \ n5csXCQ8 / RUhIgGbXeP78xf84sZbNm8 + 9MOREgIjLl / uxY8du + vcvnfhbLS0tunRJZd26xyiVFpQr \ nd55evcq9U5u5f8cdO3Zi8uTxeHq6U7t2HapXty5UBooX6wGYOfNHfHwWEBwcgEKhoEOHjoIxJyBQ \ nhgjGnICAwHvj4sXz3LwZxZAhatevrKwszMzMCk307927A4CZWXlNUL2 + vj6gnlB88klj9PUNALCy \ nsiYuLrZYYw4gOvohc + Z4F5tPbd26NZp8agJFEx + vw0vVSIiLM0cul2ueS1HkumXFxsawadNGfvll \ nPTKZDC + vOWRlZb7yek2aNGXJkoUaY1BXV4svv3Tj1q1satQwYPToTvzxRzgrV / pqlDibNWtB / foO \ nuLl9WWSbxsYm1K / vwJEjv7F69XJyclQoFNkEB29iwYJ5HD16mAEDhjB48HAWL / YmOzsbsVjM / fv3 \ nuHo1gpycHNavD2Tt2iDi4mKZM + cHPmav38WLu2Fm9isPHkipXTuH8eNLP3brTSlXzoykpKckJz9H \ nV1ePM2dO06RJMx49isfJyZkGDRpy9Ogh5HJ5sYqRHzv6 + hIgE7URDZCKTFZyLsY3Yd68L7C3P8WD \ nB + m0bl2Npk0bvVN7hw6p1ZCMjU2K3ZUuqKRZUKyndm31u7pSpcosWbL8nfojICDw + gjGnICAwHul \ nc + euDB / + jeY4NjaG8eO / LTDRz3rlJLmgpH5J7m0l5VPr1KkLM2ZMeYdR / fuxt1exZ89TVCr1DkDt \ n2rHo6zd7rbppaWno6uphYGDA06dPOHv2jEYlU19fn7S0tHxulqDOJ9egQUNOnfodT093RCIxOjrR \ n9O / vzMqVvvTtuw4DAwMaNnQiOzuLSZPGkZWVhTp2R0Ry8vNCbYI6Ju306ZP4 + 4ewfPkSatSohUgk \ nYurUmSgUM7lx4zoAtrY1CAzcCICPzwLi4mIZO3Yivr5LqFixEjk5Klxd + 3LlynmgeKGMD4lUKmXG \ njMIy + B + ShITHaGlJGDrUE3NzC6ysrFEqlcydO4O0tFRUKhWuru7IZDIGDBjCmDEj6dfva0Adl3jp \ n0oWPLrl1Qfr0acuRI8EcOvQFoKBbtwN07 + 5WqtcQiUS4u7cuuWAZUlCsJzo6k8mT9yOXS2nfXsHE \ niZ0 / aP8EBP4rCMacgIDAe + OTTxozZcoEvv66N6ampiQnP + fRo / giJ / rVqlnx5EkiUVHXsbOrS3p6 \ nGjo6ukXmhyopgW1J + dQESmbMmI5kZh7g4kUp5cpl8MMPLUusk + uWVbNmLWrVqk3v3j2xsKhIgwYO \ nmjJffNGDCRO + w9zcAl / f1ZodV1C7W4JapfD58ySWLl3IypXhKJVKnJwaMXHiFAIC1qKvr4 + / f7Cm \ nnqvrF6 + V1FgkKijioI5Hio5 + SEpKsua7l / F06vH4 + PzG6tWVUalkVK8er4kHFHg9jI2NNWqWxZGa \ nmkpiYgKJiQmsW7ceY2O1gIiLy4c1YF4HqVRKcLAbp05dRCrVolkzN8Ri8YfuVqmTV6wnKekZ7dtH \ n8PCh2miNjIyhSpXTuLuX / J4QEBB4NwRjTkBA4L1hZWXN0KEjGT / + G3JyVEilUsaNm1TkRF8ikTB3 \ nrjfLli0mMzMTXV1dli1bWUR + qDdXuCyYT + 3gwX2anSKBohGJREye / Plrl3 + VbHxeevZ0o2fPl7sW \ nue5eAG3btqdt2 / aA2v1rzhzvQvWtrBrg77 + cvXt3IxaL8PQcAsC2bZsJDz + FUqlg3rwFVKtmRXLy \ nc7y955KRIWf48IG0a + fC0aOHiYuL5d69u4SHn3whrR5BSkoKAwf2pl + / QZprVatWnejohxw + LCYl \ npTkVK27n2bNqLFt2klmzPrwL45vi6OjIoUMnC6ULKGtyd + L + 978orKxsmDFjDlevRrJqlS9KpRID \ ngwqcO / c5aWl / U778Y4YPH0yFChb51E7PnDmNjo4OCxYswdT03eLFygItLS3atv3vSOlHRd3j4UNH \ nzXF2tiV / / XXmA / ZIQOC / g2DMCQgIvFfat3ehffv8WtP16tkXWdbOrq5GJj + XgnmbXkd8oqR8apaW \ nVYo1NgQ + PlQqFWtzuAAAACAASURBVPv3n2H9 + rNcvFgBHR0HDA0b4e9fHWvrCvj5rcDExJSAgA3s \ n3LmNsLANTJ78A + vWraF27TpcvHiB4cO / YcWKpTRq1IRff92OXJ7O1Kmz6NixE35 + P3P06CGNvHpE \ nxCVAnVusX7 + BLFz4M4aGG8jIqA + IyMiQvqK3AgV58OA + U6fOxN6 + Ad7ecwkL28Du3TtZvtyPKlWq \ n0qrVEFJS0khKmoKx8SEMDNzw9VW7WmZkyLG3b8CwYaNYtWo5u3fvxNNz8AcekYCdnRVVq17h4cMq \ nAEilsdSta1BCLQEBgdJAMOYEBAT + MRw5cpktWx4jkSgZMaImDRqUrJBWcIfI3b0PV69GkZiYxsqV \ n / kgkwmvwn4RKpWLcuO1s2tSZnJwOSKVrKFfuFM + fm7B06U0CAkYC0KZNOwBq1bLjxIljgDrR8fz5 \ nixkwQL179 / z5cwYMGIKurh5isZiOHTsB6h24XBdPIF + C + s8 + + 5xNm5ScODEIC4v5SCQGdOtWtczH \ nLZfLmTlzCgkJCeTkKPH0HMLq1ctxcenE2bPhiMVaTJo0HT + / FcTGxuDh0e / / 7J1nQBRXF4af3aU3 \ nqQpWigZUBLEX7L3Ghl0Ru35qbFHRWFGJXWygKFgRxa7BCPYSY0Ox90pTUEDqwrL7 / diwiqAxStFk \ nnl87s3PvnDtDmTPnnPfQqVNXUlNTcXefSFLSW7KyZAwZMiJH4 + 2ioHjxEtjbOwDK67lx43pKlixF \ n6dLK6yiV1kRb + zIJCa4AJCe / awGhrq6uuje2thW5fPlCIVsvkBeGhkYsWmTEihU7SE9X1sz16iXU \ nzAkIFAbCU4yAgMB3weXL9 / jpJzViY7sBEBa2jwMHjCle3OSz51AoFPz88x62b69NZmZJGjUKYsuW \ nzt9FE + KCpEWLBv9IVOLq1Suoq6urHsgLkydPnrBrlxNyuTkAmZkjefbMCF1dPSIjV + Pvr / y3ll0n \ n + X7 / OPh4faWm5rufgQ8juQqFgoMHz / HyZTJi8Qt0dI5TrdpmdHVL8tNPY6hXr1K + rjEvLlz4A1PT \ n4ixa5AVASkoyPj4rKVHCHH / / AFauXMr8 + bPw8fFHKpXSv38POnXqiqamJp6ei9DR0SUhIYHhw92K \ n3Jl7 / / oqFAr09PR5 + zZRta9SpSSuXs3661gZ9eu / 66Emkbx7bBGLRTnurUDR0rSpA02bFv7fBAGB \ n / zr / vopcAQGBfyUnTjwhNraeavvx41acOhX + j + a4dOkGAQHOZGZWBEpz6pQb69adzF9Dv0v + Wc1h \ nWNhlbty4XkC2fBqZLAu5 / F1ao0QSi0Khjr6 + Hj16dOH + / XsfHevg4ERIyGFAuQZDQyN0dHRzOXgf \ n9qP7 + ec9DB1ajWnTuuLnV45fflnA778fZvfuDTRs6EhhYGNTgcuXL + DtvZLw8Gvo6ip7emU7ZtbW \ n5alcuQra2toYGhqirq6uUof08VmFq2svxo0bSVxcLPHxbwrF5o / x8mUMN2 / eACA09Hfs7CoSHR1F \ nZGQEADY2b3F21qJfv12UKCHGxSX / 61nv3r3D8uWL831eAQEBgcJGiMwJCAh8F5QurYVYHIdcbgqA \ nru4DfvihFHK5 / LOV4uLjU5DJ3hdLUCet6PsoFzgBAZvR0NCgW7eerFixhEePHuLl5c2VK5c4dGg / \ nkLeoxPHjx1m5cjUyWSYGBsWYOXMu6enpHDiwB7FYQkhIMGPHTsLRsWqhraVChfK0bbuDAwfKAXqY \ nm3tTokQIRkZ6nD + vy4QJUz5oM / FOMGfgwKF4es7B1bUX2tra / PLLLOURIlGOVhhOTjXYunUjbm69 \ n6dixC7t22SGXlwDgwYOubNgQyK + / Fm4j6zJlyuLnt43z58 / i67uG6tWVfcWyI5BisRh19fdVW8XI \ nZDJOnTpMYmICfn5bkUgkuLh0RCrNKFTb30ckElG2bDn27t3Jr7 / OwdLSmh49 + lC5chWmT59MVlYW \ nFStWxsvLHTU1NXbvTsihdvp + VO + fCh + 9j51dRVUPy89BJpN9Vkp2TEw0N26E06JF6y + 27XOZN28W \ n9es3UIkECQgI / DcRnDkBAYFC5ciRYHbt2oFMlkmlSvbY2FQgJiaKkSN / AiA4 + CD37t1h3LhJuY51 \ ndX3D4cMm6Ou7Y2tbm2XLXtK4cVPu3buLp6fyLfulS3 + yd + 9u5s9flOvcjRo5UavWXi5edAPEWFvv \ nw8Ulb / GVfxOOjtUIDNxKt249uXv3DjKZDJlMxvXr16hatRpHjx7JU1SiRo0arFu3EYCDB / exbdtm \ nRo0ay48 / dkVHR4eePfsW + lpEIhFr17rQqNFREhIy6Ny5D6VLj89xTFDQftVnO7uKrFjhA4CBgYHq \ n5 + R9Bg4cmmPbwMAAX9 / NgDKKBB9Gsgo / qSUuLg59fX1atmyDnp4 + Bw / uy / H9x9JHU1JSMDIyRiKR \ nEBZ2mZiY6MIw96OYm1uwbduuXPurV6 + Jn9 + 2XPs / pXZqa1uRdevWMH / + bG7cCMfOrhJt2rTH338d \ n8fEJzJzpAYCX1xIyMqRoamri7j6TsmXLERZ2mcDAbSxcuEylchoVFYWWlhaTJk3DxqY8GzasJSoq \ ngqioKMzNLXJI8X + MqKhIQkOP / CNn7nMdxQ / JS9lXQEDgv4fgzAkICBQaT58 + 4fjxUHx8 / JBIJCxZ \ nsgBtbW1Onz6pcuaOHw / F1XVQrmMXL / 6VJk008fCoS7NmmfTr144mTZoD0KdPNxITEyhWzJDffjtI \ n + / Y / 5nl + LS0ttm9vw5o1O8nMFNOzpz3W1qULbf1Fha2tHffu3SE1NQUNDQ3s7Cpy9 + 4dwsOvMnbs \ nzx8VlYiOjsbDYx5v3rwmMzOTkiVLqeb8jDZuBYZEIqFfv / yNRhw + fIXff49DRyeDn392xtjYCFCK \ ndXTqdJbt28ujUBhjbb0fN7fPj + jkF48fP2T1ai / EYhFqauq5IpC5H + yV2y1btmby5PG4uvbE1rYi \ n5cpZ5RiT1 + dvkVevXnPmzHUqVCiFg8MPqv2RkRHMnbsQd / cZDB7cn2PHQvD29uPs2VNs3uzP9Olz \ nWL3aF4lEwqVLF1i3bjVz5y7MMXe2yqmn5xLCwi4zd + 4MlZLps2fPWLNmPSdOHGXIEFfVi6W2bTuy \ ncOE8fH03kZWVxdChrsye7YmPzyqeP3 + Km1tv2rTpQLduPfD2Xsm1a1fIyMikSxcXfvyxC2Fhl1m / \ n3gcDAwOePXvKpEnT2LBhLYaGRjx58ghb24rMmKF0RjduXM + 5c6eRSqXY2zswadI0le2f009RQEDg \ n343gzAkICBQaV65c5N69uwwe3A + AjIwMjIyMKFmyFLdu3aR06dI8e / aMKlUc2b17R45jpVIpJiYm \ naGhoIBaLc6QWtWrVliNHgmnTpgO3bt1UPQTlhb6 + PpMntyvYhX5jqKmpYWFRiuDgg1Sp4oiNTXnC \ nwi4RGRmJpaXVR0Ul5s6dS7duvahfvwFXr17Bz29dUS2hQAkNvcZPPxmQkNAYUHDrlj979nRGTU0N \ nkUjEsmVdcXY + TWxsKu3bO1GmjHmh21irVh1q1aqTY9 / 7EcgPW3a8 / 52Pj1 + OcfHxb0hKektYWBix \ nsUm5FF + / NcLDHzBs2AseP26Bnt49Jkw4xv / + p / z9t7AohbW1DQBWVtbUqFHrr882xMREkZychIfH \ nDCIjXyASiZDJZLnmz1Y5BahWrQaJiYmkpqYgEolwdm5IVFRkrpdQL148w9m5Ib6 + 3kil6bRq1RZr \ naxtGjBjN9u1bVS1T9u / fg56eHr6 + m8nIyGDkyMGq + / jgwT22bNmJubkFYWGXefjwPlu3BmFiYsqI \ nEYO4fv0aDg5V6dKlu0qB1cNjBufOnaF + / QYFe9EFBAS + GwRnTkBAoFBp06Y9w4b9L8e + 3347wPHj \ noZQrZ0mjRk0 + eSyAhoZmjkhC27YdmTx5HBoaGjRt2vyza + j + Szg6VmX79q1MnToTa2sbVqxYSsWK \ nn1ZhTE5OxtTUDIDDhw8ByjTYS5cuUKNGLTZsWIuOji69en1 + uuU / Vc4sDI4efUlCQre / tkRculSb \ n58 + fqZwEkUhEt25FqwCZHygUCsaO3U1wsBUSSQZDhlxgwoQWfz + wiPH2fsDjx8pUy + RkJ / z9nzBi \ nhBx4VzMIOesGxWKliun69T7UqFETT8 / FxMREM3r0sDzP8SmV0w9fQkmlUoyNjXFzG8KgQf3Q1NRU \ nta / 4cJ5Ll / 7k0aOHnDx5DFCmvUZEvEAikVCxYmXMzS1Ux1asWFn1 + 1a + / A / ExETj4FCVsLBLBARs \ nQSpN5 + 3bt1hb2wjOnICAgArhiUdAQKDQqF69FidOHCM + Ph6At28TiYmJoWHDJpw5c5KjR4 / QvHnL \ nTx6bF6amppiamrJpkx / t2nUonMV8Zzg6OvHmzWvs7atgZGSMpqYmjo5OwMfT7UaNGsX06ZMZNKgf \ nhoaGqlS + lJQUfv89mP379xAdHaU6PizsMpMmjfsbS769dL5ixWTAu4iNoWEUhoaGRWdQAbF9 + 0kC \ nAzuRmNiYN29asny5I + fOXStqs / 4WmUySYzszU4JcLv / bcQqFgpSUdy8kfvvtQJ7HfY7KqbIWLwB / \ n / wACAnbj5jaEhIQE0tPTSEtLRSqVftSO8eMnqcbu3LmfmjVrA6ClpZ3jOHX1d / 30sltqSKVSli5d \ nyLx5C9m0KZAOHTqRkVF4AjbR0VH0798j1 / 4NG9Zy + fLFT47dsGEt27dvLSjTBAQE / kKIzAkICBQa \ nlpZWDBkygvHj / 4dcrkBNTY0JEyZjbm6OpaU1z549wc6u0t8em1d9T4sWrUlMTKRsWctCXtWXER0d \ nxcSJY3BwcOLmzXDMzIrj6bmE58 + fsmiRJ1KplFKlSuPuPgN9fX1GjRpK5cpVCAu7THJyElOmzPhH \ nKpLVq9fkxInzqu3t2 / eoPoeEnOLw4UMEBm5DJBJhY1Oec + fOEBCwET09PfT19enVqx + 6unrs37 + H \ nqlWrMX78JPz81qGtrQMoa5e8vVfy / Pkz / ve / IUyePI2yZS2Jiopk9uxfSE9Po379hvl3AfORceOa \ ncvOmH + fPV0Ff / zWjRyswNv78 / oXfCy9fSlEojFTbUmkZnj4Np379IjTqM + jWzZRz5y7w + nVtxOJY \ n2rRJVAmGfPi34P1tsVhMr179mTdvJps2baBuXWfef5mQfejfqZxWr16LKVMm0L17b4yMjHj7NpHU \ n1FSWLVvIkCEjiIqKxNt7BePGTUJHR5fU1BTVOWrVqsuePbtwcqqBmpoaz58 / o3jxEp + 99mzHzcCg \ nGKmpqZw4cZSmTYs + mjpoUN4Rzvf51uswBQT + LQjOnICAQKHSrFkLmjXL / TAikUjQ09OnX7 / uuLj0 \ nomPHzvz66xxcXHrxxx9n / 6r7KklqagrFihmqFOBiY2MZMWIgdevWp0OHTkWwoi8nIuIFs2d7Mnny \ nNGbMcOfUqeNs27aZ8eMn4ejoxIYNa / H3X8eYMRMQiUTI5XJ8fTdx / vw5 / P3XsXz5mnyx4 / HjR2zc \ nuJ6SJUsRHx / P3bt3qFatBo0aNSI09ChPnz7BzW0AERGjSU9 / g4nJUZWs + / PnT + nTpxuxsa9o2LAJ \ nRkbGuLoOYsmSBXh5eePltZguXVxo1aote / YE5Yu9 + Y22tjbbtvUkLi4OHR0rdHV1i9qkAqFNGzu2 \ nbAkhIkIZ / a5Y8Tdatcr / Hm75TevW1TE2vsPJk0GUKaNFz57K3 / MPa / 2mTp2p + vz + d + + / uBgyZASg \ njPQXK6aMvn6OyumHL5YaNGiEuroGzZu3Qi6XM3z4QMLCLuPgUBWJRMKAAb1p27YDLi49iY6OYtCg \ nvigUCoyMjJk / f1Gudhgfbmejr69Phw6d6N + / B8bGJlSqlFN9tzAcJrlczoIF83K8dFq82FPVFuH8 \ n + bOsWrUcLS1tqlRxICoqSlUz + PTpY0aPHsbLlzF0796Lbt16Fri9AgL / NUSKb0QKKTY2qahNECgg \ nzMz0hfv7Lya / 7u / bt28xMDBAKk1nyBBXVq1aR7t2zVmwYBn16jmzZs0KdHV1cXUdxPz5s3F2bsSR \ nI4kEB99HW / s3TExM2Lt3xxdJfBcF0dFRjBs3isBA5YPmtm2byMjI4NCh / ezeraxPi4yMYPr0Kfj5 \ nbWX06GEMG / Y / 7O0dePPmNSNHDiYwcG + + 2LJrVyDXroWhr1 + MyZOVSnk3b17H338tcXGvycjI4Pnz \ neKKiFiGRxGNk5IujY3Vq1dJnz54gVq / 2ZcgQVzQ01FEoFJQsWYrMTBlbt + 6kXbtmHDgQgkQiISUl \ nmU6d2hIaejpf7Bb451y6dJeAgKeIxXKmTauDsbHx3w / 6l3H27Cm8vVfi7j4Te / sqOb5bsSKU / ftB \ nIpExaFAxevSoV0RWfh359Xc5OjqKnj07s2HDVsqXr8CMGe44Ozfk8uWL1K / fgDp16tOrVxfWrFmP \ nubkFs2ZNIy0tlQULlv2VinmBlSvXkZKSTO / eXVV / CwS + DuG56t + LmZn + Px7zfTz1CAgI / OsJCtrO \ nmTPKHlKvXr3ixYsXH5XM79ChE0uWLCMkZDUWFod4 / nwHL16oc / LkVZo3r1lka / in5BRvkJCc / Ol / \ nztk1NWKxRKU4mR + IRCIMDY24cOE83t4rqVevAb6 + a6hVqwZnz / 5BSkoKkIaGxkOyspTph2lp6iQm \ nJmBgYICFhQX6 + vr8 / PNUDhzYq3orL / BpNm / 2o3 / / gYV6zpo17ahZ0w747z4QOjs3wtk5t6BNcPBF \ nFi92Ij1d2b5h5sw / cHJ6Snj4n + zfvxtbWzumT / + 4Um5BolAoOHHiEi9fvqVt25oUK1as0M5tYVGK \ n8uUrAMo2J9l1sgqFgufPn1KyZCmVkEvz5q04cED5kkkkElGvXgPU1NQoVswQIyNj4uPfqGoYBQQE \ n8gdBAEVAQKDICQu7zJUrl1i71p + NGwOoUOEHMjKkH5XMr1LFkbi4ONTVnwFZZGSU / 6v + 53URrSB / \ n0NXVw8DAgPBwpSjF77 / / hpNTwafBVatWkytXLuHl5Y2NTXl8fFby4sUzdu7cybx5C3Fyqo6amg4i \ nUToAYnEGFStqqsbr6OhSsmRJrl9X2q1QKHj48AGgvFfHjoUAEBLye4Gv5Xtiy5aNRW3CN8vHhDcK \ nklu33qgcOYA3b2pw5cpD9u3bxfLla4rMkQNwd99H374V + OmndnTqdJqoqFeFdu4PXzrlfJH0YZpn \ nzmQvNbWcaqMyWf69hBIQEFAiROYEBASKnNTUFPT19dHU1OTp0yfcunXzb8e0bt2aN29GExs7HgBL \ ny2Batfp8QZBvgbzEG6ZOncXixZ6kp6dTqlTpHHVAH4zONzusrKzp3NmFSZPGoqamjqGhISVKWHD3 \ n7m0mTRpH1apOqKtnUKPGTeTyGJKSMmnQoCL3798jKektkZERzJgxl + HDB5KWlka / fj1o3rwl5ctX \ n4KefJjJ79i9s27YJZ + dG / 1lRBHf3ibx69ZKMDCkuLr2IiookI0OKm1tvrK1titRR + KdER0cxYcJo \ n7O0duHEjHDu7Sn + pPa4jPj6BmTOVa / HyWkJGhhRNTU3c3WdStmw5goMPcvRoCG / exJGeLqVhw8aM \ nHDmGQ4f28 / jxQ8aMmQDA0aNHeP06rlDXVb26OXp6t0lOVoowmZuf486dE0RFRTJhwmiaNWtJZGQE \ njx8 / IitLxsCBQ3F2bsTPP / / E8OGjsbEpj5tbbxo1asqAAYNZv96HEiXMv7qWNyoqku3bbZHJygJw \ n61YvvL134OGRf / 0yv7RlSNmy5YiKiiQmJhpzcwv27dvN27dvAaGhuYBAYSE4cwICAkVO7dr12Ldv \ nN337ulCmTDlVHcvHJPMBevXqye7dATRvnoGa2g4GD65QJM2cv5QPxRve79W2dq1 / ruNXrPBRXQND \ nQ8McTaHzg + zm4SKRshfWxInuXL58jgMHDnL37h2aNWuJubkFbm5DmD9fKcM + ZMgIHByqMmnSWDQ1 \ ntWjatAVRUREsWPAuzdLComSOptXZAhT / NdzdZ + SqCd29eyf + / gFFbdoXERkZwdy5C3F3n8Hgwf05 \ ndiwEb28 / zp49xebN / kyfPofVq32RSCRcunSBdetWM3fuQgAePXpA + fIV8PRcQu / eXXFx6UmzZi3Z \ nssWf / / 1vLBKJhJMnj6Gjo8ucOdO5f / 8ulpbWTJ8 + mydPnrBq1TLS0tIoVsyQadNmYmJiSkTECxYt \ n8iQxMQGxWMzcuQswMjJmypQJJCW9JStLxpAhI3B2bkR0dBSTJ49j8 + YdAAQEbCE9PY2BA4fStetc \ nLl78A5FIxA8 / lGXOHG + 6deuAlZUNu3fvRF1dnbFjJ + LoWI2hQ12pUaM2jo5OhIdfxdzcHDU1NW7c \ nuA7A9evX + PnnqV99rTMyMsnK0nxvj4isrPxOrPr4S5aPvYARiURoamoyYcIUJkwYjZaWNjo6Oqp0 \ n8Y + JuggICOQvgjMnICBQ5Kirq7N48Ypc + 0NCTqk + N27cjMaNm6m2r1 + / RrNmLfjll86FYmNRsXHj \ nadavTyUjQ43WrVOZPbtDgUS3atWqQ61adXLsc3auSZ8 + g3Idmx0tjIl5SVKSCC + vtZia5pTyj4h4 \ nyZQpfxARoY + 19VuWLGmKkdG / r3fb55JXTej3woeRuHLlLDE2NmbRonnExydQpkwZKleugrv7BJ49 \ ne8arVzHcunWDPXuCePjwvirCNnBgXzp27ExWVha3bt1g2LABaGpqERMTTZUqxalWrSbnzp2hXDlL \ nZDIZMTHRzJw5F3t7Bzw957B7907OnDmJp + dSDA0NOXYshHXr1uDuPoPZs3 + hf383GjRoTGZmJnJ5 \ nFmpq6nh6LkJHR5eEhASGD3fLs1Yuu38iwIMH5zh27CBqamqkpCQDkJSURNWq1Xjx4jlSaTrTp0 + h \ nbFlLMjMzefUqBkdHJ3btCsTCoiR16zpz + fJFpNJ0oqOjKFOm7Fdf / 3LlytGmzQ727y8P6GFpeZC + \ nfW2 / eL4Po8QdOyr / hq5cuZSLF / / E2NiU2bPnY2hoSHJyEpqaWri69srVKqVECWWdnI1NeTIyMti0 \ nKZA2bZoA4ObWmz59Bqj6hgIq51lAQCB / EZw5AQGB74qQkDC8vPxITX3A2LGTi9qcAuX + / SfMm2dC \ nYqIyncrX9yWVK5 + hR4 + i79e2f / 9Fpk1T8OqVE2XKXGDpUiMaNXqnDDh58nlCQ / sDcPu2Ak3NLXh7 \ n / 7sd74 / xfk2opqYmo0cPIyPj402mv0Xej8S5uvYkPT1dFYlbtmwRCoUCe3sHxoyZwJgxw5kxw53B \ ng4chl2cxatRYVq1azpo16zl69AgODo7IZFksXLiMSZPGqWqwOnT4kc2b / ShXzoqmTZuTnJyMvb0D \ nAK1atWXTJj8eP37EuHEjAaVkvomJGampqbx + HUeDBo0B5cshUEcmk + Hjs4rw8GuIxSLi4mKJj3 + T \ n5 / qyUwJtbCowa9Y0GjZsrJovI0NKUNB2VSqhiYkpHh6eqp6WMpmMu3fvULJkaWrWrE1iYgL79 + / F \ n1rZivlx7kUiEj48L9euHkpAg48cfq2BlVeqL5 / swSty4cVPS09Ows6vE6NHj2bhxPf7 + 6xg3bhJz \ n585k / PjJebZKyXaAjxwJJjb2FQMG9MbGpgImJuaEh9di / Hh1rKz2sHx57a + yV0BA4NMIAigCAgLf \ nDdevP2DcOHUuXdrErVt / MHu2Nk + fRhW1WQXG7dsvSEx811cqK6sET56kFqFF7 / D2juPVq + aAKS9e \ ntGP16pyRpogIvfe2RB9sf3u0aNGgwOb + WE2ompoaMpmswM6bn1hYlMLa2gaRSETp0mVVzeKtrcuT \ nmprKs2dPadWqLQBaWlpkZEjR1zegShVHli1bREpKMklJbxGLcz92ZDtSlSrZ8 + rVK0JDf6d + / Zz1 \ nlQqFAl1dXaysbPD3D8DfP4BNmwJZunQlH4puZBMScpjExAT8 / Lbi7x + AkZExUmkGEokEufzdGKk0 \ nXfV50aLldOniwr17dxkypL / K0Zw2bTbdu / emRo1a7Np1kLJlLbl / / y6gvI9mZsU5ceIo9vYOODg4 \ nERi4lapVnb7iiudE2buuOWPHtv5qxygoaDsDBvRm2LCBqiixWCymWTNlFK1lyzZcv36NlJRkkpOT \ ncXRUrqN163Zcu3Y113w / / tgVM7PibN26k44dO3P5cjwXL / YjJqYj58 + 7MmvW5a + yV0BA4NMIzpyA \ ngMB3w4kTj4iNfdf3KSKiOcePXy9CiwqW + vUrY2l5QrVtaHiVevW + jTfcUqlGju2MDPUc21ZWibx7 \ nyM7C2jq5cAz7YgquuKd27XpkZWXRt68La9euVtWEduzYmQEDeuHhMb3Azp1f5FQ0FKscLZFI9Jcz \ nJlI5ZWKxGB0dHfz81nH8eCj16jVAoYARIwbx5s1rPrzW7zttTZs2x8GhKrq6urx8GcPNmzcACA39 \ nncqV7UlIiFftk8lkPHnyGB0dXczMinPmzEkAMjIykErTSUlJwcjIGIlEQljYZWJiogEwNjYhIeEN \ nb98mkpGRwR9 / nFWt4 + XLGKpVq8GIEaNJTk4mLS0NTU1NDh7cw4ABg5HJZPTs2Zl + / bqzYcNald1V \ nq1bDyMgYDQ0NHB2rEhcXq3KCYmKiCQ39tJJrXi8TgoMPsmyZss4wOTmZvXt3fXKOz + FjysHwzqlW \ nKBR / m8otkUhQKOQAuaLMaWk5k75iY3W + 2m4BAYGPI6RZCggIfDfY2BRDQyOCjIzSAOjo3KNixZJF \ nbFXBYWZmwurV5nh77yAzU0Lnzvo0bPhtNDFu1SqD + / ejyMwsibb2I9q2zdkIeMmSpmhobCEqSg8r \ nqyQ8PVsXmC1paWnMmDGF2NhY5PIsXF0H4 + Ozkg0btmBgUIy7d2 + zerUXK1euJTU1leXLF3Hv3h1A \ nxMCBQ2nUSFnns27dGv744yyampr8 + usSjIzyp6H2x2pCnZyqM2LE6Hw5R2Gio6PD6NHjVNvFixen \ nevVahIQcZsCAwfz000RWrVqOn99WIiMjKFWqNJMmTeWXXyZjaWlFzZp1WLlyKUCunoTXr4fTs2cf \ nRCIRZcuW1bCnbgAAIABJREFUY + / enfz66xwsLa3p1q0ntWrVxctrMcnJyWRlyejRozdWVtZMnz6H \ nRYvms379WtTU1Jg7dwEtW7Zm8uTxuLr2xNa2IuXKKdsOqKmpMWDAYIYMccXMrDiWlsr9WVlZeHjM \ nICUlGYVCgYtLT / T09Ni / / wgrVixh6FBX5HI55cpZ5hD5ARg8eDiDBw8HwNTUjNOnL6q + i4qKJDT0 \ nCC1a5P4dkMlkqKmpkdfLhPcdqqSkt + zdG0Tnzt0 + + z5lO2fvz / OxKLFcLufkyWM0a9aS0NDfcXBw \ nQldXD319ZasUR8eqOVqlWFiU5O7d29jZVeLkyWOq + XV1dTE0TAYyAXUgHXv7b / 1FjoDA943gzAkI \ nCHw3tG9fl + HDD7FvnxZisZw + fUTUrduiqM0qUN5v8vwtMWVKW6ysznD / / jmcnIxp375pju9NTIxY \ nt65wauQuXPgDU9PiLFrkBUBKSjI + PivzPHbjxvXo6 + urlESTkpTKe + npadjbOzB06EjWrFnBgQN7 \ ncXXNLf7yNWzbdpZt21IA6NlTm / 79i7728XPIysrKs43G + 5 / d3Ibg6TkHV9deaGtr88svswBlSl9Y \ n2GVEIjHW1jbUqVMfyE4b7E2bNu24eVOfK1dEpKWtompVW6pVqwHAtm25I1EVKvzAqlXrcu0vXboM \ nXl7eufa / r6T6Pt269aRbt5659q9Zsz7XvqNHQ7h58wYikRhbW1sGDx7OmDHDSUxMxNDQiKlTZxAb \ nm8qYMXNJTdVHR + cpRkZyRo8eS + PGzfDxWcXz509xc + tNmzbt0dc34OTJY6SnpyOXy5k3bxFSqRRX \ n115oaGggEomQyWTEx79RNev28VlJZGQEbm69qVmzDiNHjiEgYDMnThwlIyOThg0bM2jQMKKjoxg / \ nfhTVq1cjPPw6ixevoESJdyq / H1MO1tLS5vbtW2zatAEjIxPmzJkPwLRpebdK6dWrL9Onu3PgwF7q \ n1nUm2xl1cqqBmZk / 1ao1R0enCY6Otkyd2j7PeyAgIJA / iBTfSCOQ2NikojZBoIAwM9MX7u + / mKK4 \ nv3m9cRbIf76X390XL54zfvwomjZtQb16DXB0rIqLS8c8I3ODBvVjzhxPSpUqnWOOpk3rcfz4HwAc \ nOxbK5csXmDz5l3yz8fLlO / Tpk4lc / ozExN4YGFxn1qzLXL / + R67o1NcQHR3FxIljcHBw4ubNcMzM \ niuPpuYS4uFiWLl1IQkI8WlpaTJ48jerVq7B3729s3uyHTJaJgUExZs6ci5GRMRs2rCUqKoKoqCjM \ nzS2YOXNuvtn4PgsWBLNkSTtAWVNZqVJbDh1aj56efoGc75 / w9u1bBg7cSlTUAbS1BzJzZmWqVi3D \ n3Lkzadq0Oa1bt + O33w5w9uxp7txpwKNHNxGL04mOXkaHDstJSfmNwMC9XL16he3bt6ruc3DwQdav \ n92HTpkD09fVZtmwh + / fv5eTJ81y6dIFVq5axaVMgu3btwNfXmyNHThITE82kSWNVipAXL / 7JyZPH \ nmDRpGnK5nClTJtCnT3 + KFy9Bjx6d2LFjBxYWVp9aXr6hUCh4 / Pgx6urqlC379eqdAn / P9 / K3WeCf \ nY2b2z / / 2CTVzAgIC3x3vK6kJCJQpUxY / v23Y2JTH13cN / v6 + OUQupNKMHMfn9Q5TInmXqCIWi1TC \ nF / nFlStPSUoqh6HhdgDevnXg / v3Yr5rzYzZGRLyga9fubNmyEz09fU6dOs7ChfMZN + 5nNmzYwsiR \ nP7FkyQIAHB2dWLduI35 + 22jWrCXbtm1WzfPs2TO8vLy / 2pGLjX3N / / 63j + 7dQ / DwOJTD7ocP1VA6 \ ncgpAQUzMWESib + PRZM6cE1y / bkF8vAs3bgxi1qzHGBgYcPv2DVXKZKtWbblx4xoxMXqAiOTk5oCI \ nxMSyvHmjVM788OdNJBJRo0Yt9PWVD203boQjkSjTlJ2cqhMVFUm / fj3Yvn0z6elpxMe / yTXHxYt / \ ncunSBdzcejNoUF + eP39GRIRShKhECQscHBwK8Mq8IysriyFDdtCggQRn5zR + / nmP0CxcQKCQEdIs \ nBQQEBAS + a + Li4tDX16dlyzbo6upx6NB + VU1PnTr1OHXqXU1PzZq12bNnJ2PGTACUaZbZD9X5TWDg \ nVoKDDwJQtWpdSpYMRl39OWXLdiIrqwJ2dpU5fz6cX36ZzJMnj7C1rciMGR4A3L17J8 / m2KNGDeWH \ nH2y5fj2c5s1bUry4ORs3 + iIWS9DT02PatFlYWJRSpefZ2toRHR3FzZvhTJ / + rpVHZqZSRfPVq5fM \ nmDGFN29ek5mZScmSSoEdkUiEs3NDNDRyCt38HT4 + qyhevARdurgAsGHDWnbvvkd0dCYSyVuePJES \ nF3cPL68JREdH8ezZEkqUOI + W1l0iI9dhZvYLMtnuXNevfftOdO / e65MNv4OCAtm / fw8SiQRLSytm \ nz57 / Rfctm7g4bSCNbCGf2Fh9lfrohw6Lre0bwsIUKBTqQBqVKkk5f / 7jTo22tnae + 0NCDiOXK1iz \ nZj1nzpxk + fLFuV5GZNO37wB + / LELAIcPHyIwcBsBAVtISkokMjKSiRMn5UgFLVHCnHnzZqGpqcWD \ nB / eIj3 / DlCnTCQ4 + yN27t6lUyV6VRtmiRQM6d + 7G + fPnMDExZfDgEfj4rOTVq5eMGTMBZ + eGSKVS \ nhg8fw82biZQsGUxs7BS2bWuKufkKXr + OQCqVEhkZQcOGjRk5csw / uPICAgL / BMGZExAQEBD4rnn8 \ n + CGrV3shFotQU1Nn4kR30tPT + fXXOaxfr4eTU3VVJNfVdRBLly6gf / 8eiMUSBg4cSsOGjXPVgH0t \ nd + / e4fDhQ / j6bkIuVzB0qCuurl0JCnqMsXFfevXSwc5Om82b77F1axAmJqaMGDGI69evUamSPcuX \ nL2LBgqUUK5azOXZ2PdX69Zv / Wk9Pli5djampKSkpybx9 + / YD5UkJb9 + + QU9PH3 / / gFx2Llu2kF69 \ n + lG / fgOuXr2Cn9 + 7ejRNTa1 / vO5mzVrg5bVE5cydOHGUmJheREV1RaHQQyx + Q3h4e0DpTKenx1On \ njgkPHw6iXr2TZGYqa8byun5OTtVypV + + H6Xftm0Tu3blbPj9NTg5wbFjtlhYbCE + fgCVKsWSmpqC \ nvb0Dx46F0KpVW0JCDuPo6MTkya3o1 + 8wCoU2Tk5vmD69DW3aLAJAR0eX1NQU1bwfOoIODk48fvwY \ ngHv37qCtrY2 + vj7Pnj1RjdPR0SE19V1bktq16 + Dr60PLlm2Ijo7C39 + XxYtXoK6uzsSJY / Dw8KBt \ n2w6qVNDlyxfj6bkYgOTkJNau9efs2VNMmTIBHx8 / rKysGTy4Pw8fPqB8 + Qqkp6dTvXotRo78ialT \ nf2bDBh + 8vLx58uQx8 + bNxNm5IXv2BJGZCc + e / Ya6 + mNKlx7E06cHSExM4 + HD + 2zcGICamjq9e3fF \ nxaUnZmbFv / qeCAgI5EZw5gQEBAQEvmtq1apDrVp1cu3fvn1Prn3a2tpMmzYr1 / 6QkFOqz40bN6Nx \ n42ZfZdP169do2LCJyiFq1KgpxYopsLTUY / PmVoBSJr5ixcqYmpoBUL78D8TERKOnp8eTJ48YOzZn \ nc + xssvuBAVSp4si8eTNp2rSFSpXzQ3R1dSlZshQnThylSZPmKBQKHj16iJlZNVJTU1TnP3z4kGrM \ nl6bKVahgS0JCPHFxccTHv0Ff34DixUVkZCxFW / syCoUYufytqnl3iRIW + PqOUo13cfFFoVDkef3C \ nw6 / i7Nwo1zk / 1fD7axgzpgUKRSinTtWgWLEOaGgYsGrVbcaOnYSn52wCArZgZGTE1KkzMTAwoHbt \ nctSvX5VGjZRiQNlOZvnyFVSCL23bKgVQ3n9hMHDgUPbuDcLVtRfq6uqYmprh6tpTpSYJUKyYIVWq \ nONK / fw / q1KnPyJFjePr0KcOHu5GYmIBIJP5LFVOp1nnt2jVmzfoVUKaCenuvUNlUv76yDYKVlQ3G \ nxiZYW9v8tW1NTEwU5ctXQF1dndq16 / 51XcujoaGBRCLB2tqG6Ghli4cbN8Lp3bszDx4c4MmTjmRm \ nlqRixXU4Olqjq5uFjo4uAJaWVkRHRwnOnIBAASE4cwICAgIC / 1liY18zd + 5Z3r7Vpm5dNYYObfr3 \ ngz6DvKJ7eQX81NXfpTFKJGJVPZmVlc1HlRi1tN6l6E2c6M7t2zc5f / 4cgwb1Y / 78RXkqT86Y4cHi \ nxb + yaZMfMpmM5s1bUrduNQYOHMr06ZPR1zegevUaql5syojXP142AE2aNOfkyaO8fv2a5s1b8urV \ na3buvEZKygAqVUokOXmjKnVQWzvv6N + Ha8juffZ3Db + vXQvj3LkzbN7sx6ZNgapatC9BJBIxdmxL \ nxo5tCUzJ8V1eypnZKYrZZL8gUFNTy3V8mzbvFB4NDAw4derC39rzYe2ii0tPXFx6snv3Dl6 / fq1K \ nkd20KZAOHVp81CFXV1dGbsVica7 + gdk / f + / XkIpEyoj3h8cAmJubsmmTKVu37uTatVimT6 / Kmzev \ nckWH5XL5365PQEDgy / g2qowFBAQEBAQKGYVCwZAhx9i + vQ + / / daV2bOr4e9 / 6u8HfgaOjlU5ffok \ nUmk6aWlpnD59gipVquZIlfsYZcta5tkcOy8iIyOoVMmeQYOGYWhoiEgkVrVdAKWEvJvbECwsSrJk \ nyQo2bgxg69adDBgwGABn50bs3LlfJYyyYoUPoIwW9ezZ94vW3rRpC44eDeHkyWM0adIcU1M9fvzR \ nnosXW / DTT5a8evXyk + NFIlGu63fmzEkcHJwwMjL + 7Ibf6elpX2R / UbBo0WFatTpKx46HCQm5 + o / G \ nlitXnoCAfdSseZDOnfcRFnYLJycnjh0LAVClguY3jo5VCQk5jJ2dJUOHVkJLK4Pq1avl6UQKoigC \ nAgWHEJkTEBAQEPhPkpAQz61b5cnukZWZWYZLly7h5vb1c / / wgx1t27ZnyBBXADp06IytrV2OVLm6 \ ndevnGf1SU1PDw2NBns2xP2TNGi8iIl6gUCioUaOWSvjkSzh37jaHDr1ASyuT8eMbfbEwjJWVNWlp \ nqRQvXgJjY5OPNu + GvCKYyu28rl + FCj8AfHbDb11dvS + yv7AJCjrH8uX1yMxUtst4 / vww1au / xsTE \ n5LPGr137ghcvJmFs7MeLF2ImT9YkOHg5EydOypEKms3n1Ifmju7m / q5zZxcWL / bE1bUnEomEadNm \ noaamlqfasKA + LCBQcAh95gQKHKEfyr8b4f7 + e / m331uZTEaDBkd59Mglew / DhgXh4fHfaHL8 / v09 \ nf / 4OgwdnEBvrDMipV8 + PoKAuqpS8r6Vbtw74 + W3FwKAYLVo0IDT0TL7M + 29g1qzfWbPG5b09L9m1 \ n6xYNG9b8rPEdO4by559dVNt2dnu5c6fzv / p397 / Ov / 1v83 + ZL + kzJ0TmBAQEBAT + k6ipqTFzZgnm \ nzw8kPl4PJ6eXuLt / H45cbOxrAgMvoqkpxtW1MZqaml8136FDz4iNzXYoxJw / 35CHDx9TsaLt1xuL \ nMjKTlpaOh8cM0tPT6d + / B66ugylWrBhr1niRlZWFnV0lJk50R11dnW7dOtCiRWv + / PMcYrGESZOm \ n4eOzkqioSHr16kenTl0BCAjYTGjoEaKiEjAwqMygQT1o3bp6vthcWDg4GKCp + RypVNlwu3TpK9jb \ nV / rs8XZ2Kfz5ZwagAcixs3tbMIZ + BgqFgt9 / P8 + rV0l06FALY2OjIrNFQOC / guDMCQgICAj8Z2nd \ n2olWraoik8nyLQpV0Lx69Zru3c9y + 3YfIJPQUH8CAly + yn59 / SxARvZjgZ7eS4yMSnzRXO7uE3n1 \ n6iUZGVJcXHrRsWNnAK5cuYipaXG0tLTZvHkHycnJ9O / fgxUrfChdugxz585k795ddO / eC5FIRIkS \ n5vj7B7By5VLmz5 + Fj48 / UqmU / v170KlTVy5e / JMXL54TF9eJq1ddKVnyf0yYEIWamoTmzat + 8bUo \ nbLp0qcfz5yGEhl5BSyuT / / 2vJMbGn5diCTB3blvU1IJ4 + FCLUqVS8fBo + feDCoiJE / cQENCKrCwz \ n / P2D2LatJqVKfdnPkYCAwOchOHMCAgICAv9pRCLRd + PIAWzefPEvR04EaHDqVDeOHbtE69b1vnjO \ nMWOacOWKP + fO1UVXN44RI15jbv5lDpG7 + wwMDAyQStMZMsSVxo2VCqFWVtb4 + / uSmZlBePg1dHR0 \ nKFmyFKVLlwGUCo979uyke / deAKo2BNbW5UlLS0NbWxttbW3U1dVJTk7m4sU / OX / + HDEx4ZQtewCx \ nOI3k5BaEhr6kefMvvhRFglI188vGamhoMH9 + x / w16At4 / vw5QUH2ZGVZAHD7di98fALx8GhXxJYJ \ nCPy7EZw5AQEBgSIkLS2NGTOmEBsbi1yehavrYEqVKs2qVctIS0ujWDFDpk2biYmJKZGRESxdupCE \ nhHi0tLSYPHkaZctaFvUSBAoZZTsxOZAtuy9FQ + PLJfhB2ZQ6MNCFp0 + fYmBQFjOzL09VDArazpkz \ nSlXQV69e8eLFCwBKlSqNn982fvyxFb6 + a6hePWdNWHb7gWyy5e3FYnEOZ1spjy8DoHv33nh4 / MDr \ n19neWybFiu36YtsFvpysrCyysnK + FJHLBeETAYGCRmhNICAgIFCEXLjwB6amxdm4MYDNm3dQp05d \ nvLwWMW / eQjZs2EK7dh1Yt24NAAsXzmPcuJ9VMvJLliwoYusFioLBgxtQs + ZGIB14TYcOh2jc + PPE \ nMj6FRCLBxsYGMzOzvz / 4I4SFXebKlUusXevPxo0BVKjwAxkZUgBev37zV / NpNXr16sfNmzeIiYkm \ nMjICgCNHgqlatVquOfPSaROJRNSuXYeTJ48xalQC5uaH0NcPpnHjVYwb93UN3wW + DEtLS9q3vwQo \ na / ZsbPbRv3 / lojVKQOA / gBCZExAQEChCbGwqsHq1F97eK6lXrwH6 + no8fvyIsWNHAiCXyzExMSMt \ nLY0bN64zffpk1djMTFlRmS1QhOjp6REU1J4DB35HT0 + Ttm17IBZ / / N1sXjVsLVo0oHfv3hw / fgIT \ nE1MGDx6Bj89KXr16yZgxE3B2bohUKmXJkl + 5d + 8OEomEUaPGUa1aDYKDD3L27GmkUimRkRE0bNiY \ nkSPHAHDq1HHu37 / HqFFDKVHCnPDwdz3Tnj59zKxZU0lPT2PjxvVMnOhOcnIS06dPJisri4oVK9Op \ nU7e / js4pn59T2l75uWbNOjx9 + pRDh / xxdJSjqanF7Nnz0dbWJjk5mdDQ3 + ncWTlfWNhlAgO3sXDh \ nsvy5CQK5EIlEeHu70KDBceLjM + jUyYkyZcyL2iwBgX89gjMnICAgUISUKVMWP79tnD9 / Fl / fNVSr \ nVgMrKxt8fPxyHJeSkoy + vj7 + / gFFZKnAt4SOjg49e346AhUUFMj + / buxtrZhw4YtOWrY0tPTqVu3 \ nLm5uI5g69Wc2bPDBy8ubJ08eM2 / eTJydG7JnTxBisbIJ + fPnTxk3bhTbt + 8B4OHD + 2zcGICamjq9 \ ne3fFxaUnIpGIc + fOYG9fhdjYV4SFXcbExPQva0RUr16DJk2a0bJlI3x9N6ns9PPbloft + 1Wf27Rp \ nT5s27fP8zsWlJy4uPXONT0p6y969QSpn7mvJyspCIvm6VNb85syZk5QpU07Vay8 / + Nq2EWKxmL59 \ nhciogEBhIjhzAgICAkVIXFwc + vr6tGzZBl1dPfbt20VCQgI3b97A3r4KMpmMFy + eY2VlTcmSJTlx \ n4ihNmjRHoVDw6NHDr2oSLfDvZt + + XXh5ebN / / x4GDOgNvKthU1dXp0GDBsTGJmFjU / 6v9EcJ1tY2 \ nREdHA3DjRjjduvUAoGxZS8zNLXjx4jkikYjq1Wuho6MLgKWlFdHRUSQkJODkVJ1p02YBsGtXIC9e \ nPMfJqXoOBywk5NRXr00mk7F / / 1mkUhldujizb98ugoMPAtC + fSdu3bpBZGQEbm69qVmzNnXrOpOW \ nlsovv0zmyZNH2NpWZMYMDwDu3r2TZ43qqFFD + eEHW65fD6dFi1b06NHnq + 3OT06fPkn9 + g3 + kTMn \ nk8lQU / vUo59Q4yYg8L0hOHMCAgICRcjjxw9ZvdoLsViEmpo6Eye6IxaL8fJaTHJyMllZMnr06I2V \ nlTUzZsxl8eJf2bTJD5lMRvPmLQVnTgCAwMCtOZyZ58 + fEhUVyciRgwARW7bsRFNTk9Gjh5GRIUUi \ neffvXyRS / uxBtrhI1t + eL1ucRDlGQlZWFqIP / ACZLIuwsGdMmHCEOnUMcHGp + / ULRRklGzBgJyEh \ nvQF1tm1bhLHxH6xfvxm5XMHQoa7MmOHBkyePVJHssLDLPHhwj61bgzAxMWXEiEFcv36NSpXsWb58 \ nEQsWLKVYMUOOHQth3bo1uLvPQCQSIZPJWL9 + c77Y / XdER0cxceIYHBycuHkzHDOz4nh6LuHIkWAO \ nHtxLZqaM0qVLM336HO7fv8e5c2e4du0qmzf74eGxAE / POYwaNQ47u4q8efMGF5euBAUdIDj4IKdO \ nHSc9PR25XM7ChcuZMmUCSUlvycqSMWTICJVyqICAwPeH4MwJCAgIFCG1atWhVq06ufavWrUux3Zc \ nXBxZWVksXuz1Qf2QQF6MGjWU0aPHY2trR7duHfDz24qBQbGiNqtAuHv3DocPH8LXd1MOZ + bChfMM \ nHjyCY8dC0NTU5OnTJ9y6dfOz53V0rEpIyGGqVavB8 + fPePkyhnLlLLl3706uY0UiERUrVmbFiqUk \ nJSWhra2Nn18QkZENiI3tRlDQY5KTT + Hm9vVOw8GD5wgJ6QnoA / DgQWmaNi2HpqYWAI0aNeXatau5 \ nxlWsWBlTU6W4S / nyPxATE42enh5PnuSuUc2mWbPC7dkWEfGC2bM9mTx5GjNmuHPq1HEaN26q6tXn \ n6 + vNoUP76dq1B87ODalfvwGNGilbP + SuLXzHgwf32bQpEH19fbKysvD0XISOji4JCQkMH + 4mOHMC \ nAt8xgjMnICAg8I0zb95vbNxojlRqQNOmO / D17fpd9UUrCt5 / qM0v51cul39SaKSouH79Gg0bNsnT \ nmalWrQYhIYfp29eFMmXKYW9fBch9Td7fzP6uc2cXFi / 2xNW1JxKJhGnTZqGmpvZRp8HU1Ix + / dwY \ nMsQVAwMDEhNLIJcrHej0dGtOnLiKm9vXr1cmyyLn44sYuTyn4mVet1xdXUP1WSJ5F4HMq0Y1Gy0t \ n7a819x9hYVFKFW23tbUjOjqKR48e4uvrTUpKMqmpadSu / S7CmZfSZ17UrFkbfX191Rgfn1WEh19D \ nLBYRFxdLfPwbjIyM839BAgICBY7gzAkICAh8w9y8eZ + 1ayuRnu4AQHBwJdatO8j / / te6iC0rHAIC \ nNqOhoUG3bj1ZsWIJjx49xMvLmytXLvHbbwdo06YdGzasIyMjg1KlSjN16ky0tXM / gO / atQMDA4N / \ nPE + 3bh1o1qwlly5doE + f / ujrG + Dn9 / fnK0zycqyyd2loaLB48Ypc379ftzZw4NA8v9PQ0GDq1Jm5 \ nxn4oSPK + QmSLFq3p2LEzmZmZNGkygPT0Kqrv9PTSP3NFn6Zjx / oEBGzj7Fk3QIK5eRCJiWlIpenI \ n5QpOnz7BtGmzCQzMLawCykjmtWtXsbOrxK1bN3ny5HGeNapFQe70VSnz58 / h11 + XYGNTnsOHD3H1 \ n6hXVMe / fe4lEgkIhByAjIyPHvFpaWqrPISGHSUxMwM9vKxKJhLZtmzJixCAqV7YH4KefRpKUlEif \ nPgO4fPkCPXr0 + Whd3tmzp3n69DF9 + w746JqCgw9y794dxo2b9PkXQkBA4LP59l4xCggICAioiI5 + \ nQ3p6qff2aJGYWDDnGjFiYMFM / BFiYqIJDf39k8c4OlYjPPwaoHwIT0tLQyaTER5 + FRub8ixa9CsL \ nFizDz28rtrZ27NiR9wO8vb3DJ + fZtMmP5cvX5JpHJBJRrJghfn5bqV69Fps3 + + Hllfu4osTRsSqn \ nT59EKk0nLS2N06dP4OjoVGjnT0tLY8KEfXTpEkrfvj / j6tqTAQN6Ua1aSYyMUlBTu07VqluYNKlG \ nvpxPQ0ODgIDOzJ27n5kzd3HwoA9durgwZIgrw4YNoEOHztja2lGliiP9 + / dgzZoVf0UTlePt7CpS \ ntary + qipqVGnTj18fFYyYEBv3Nx6c + vW9Y + eWyYr / HYgaWmpGBubIJPJOHIkWLVfR0eHlJQU1baF \ nRUnu3r0NwO + / f / z3KiUlBSMjYyQSCWFhl3n79i0zZ85l + nQP5HI5IpFSYbRZsxZMnvzLJwVWnJ0b \ nftKRg / yLjAsICOSNEJkTEBAQ + IapV68Kjo6HCA / vD4iwsDhOu3Y2 + Tb / + / 23vL3zTjUrCGQyGVFR \ nkYSGHqFFi49HGW1t7bh37w6pqSloaGhgZ1eRu3fvcP36NZydGxITE8Xo0UORSCRkZsqoUsUhz3nK \ nl6 / wyXmePn2scmY / nKdZsxYA3Lp1g6dPHzN8eN7HFRU / / GBH27btGTLEFYAOHTpToYJtoZ1 / 8uTD \ nBAb2QflI8SOdO29h7dquACQnJxMXF0upUu3yJTU4LS2NGTOmEBsbi1yehavrYKZN + 5nRo8fTo0cf \ nWrRoQGzsS / r1646JiSmTJv2Cj89KTp48xpgxEwDlz3x0dDTjxk0iOPgghoaGzJ49n7NnT7N5sx97 \ n9gRx9GgIc + Z4YmRkzIYNa4mKiiAqKgpzcwtmzpz71ev4GHk5PoMHD2Po0AEYGhpSubI9qampgLKe \ nb8GCeezatYO5cxfQq1dfpk9358CBvTRr1pRsZcr302IDA7dy8OA + YmKiOXHiGLq6SkVSD48ZtGvX \ nkYwMKXfv3mbgwD65RFX + / PMP1q1bg1wux9DQkOXL1 + SIumVfP5ksEwODYsycOVdI3RQQKAQEZ05A \ nQEDgG0ZXV5etWxuyYkUgmZnquLiUw9GxYBQss3tMhYVdxs9vHSYmRty5c5cmTZpjZWXN7t07yMjI \ nYP78xZQqVZp582ahoaHBvXt3SUlJZvTo8dSr5 / zJZtPZqnpZWVlkZmby7NkT3Nx606ZNBxo2bIyH \ nxwwN72x0AAAgAElEQVTS0tIAGD9 + Evb2Dujp6ePm1gd1dXWePXtCWNhlUlJSePz4EQqFApFIhIFB \ nMby8vD + 6NjU1NSwsShEcfJAqVRyxsSlPWNglIiMjsLAoRY0atZk1a16eY99Po / zUcUVJjx596NGj \ nDzKZjPj4eORyOUFBBwrl3A8e6PPucULCgwfvhGb09PTQ09NTbW / YsBYdHV1SU1NwdHSiRo1ahIdf \ nZdEiTzQ01PH29mP9eh / + / PMcdes6q5qRZ3Phwh + YmhZn0SIvQNl / cd + + Xarv09PTqV69FiNH / vTR \ n / nkAWVky9u7dhaampmqso6MT7u7zWL78KlFR4cyZs4BlyxYA8OzZM9asWY + GhgYFhYVFSTZtClRt \ n9 + rVV / X5XTP1d1Sp4sjWrTtz7Nu0aTsAZmb69OkzCHiXFpstlOPntzWHUM7UqT / j4 + OHgUExKlWy \ nZ / v2rarU2WxHMD4 + noUL57FmzXrMzS1ISkpSfZ + No6MT69ZtBODgwX1s27aZUaPGfnZdX0GQ / fP2 \ n / rV8n4Lo1ScgUNgIzpyAgIBAEfO5kuQeHnPQ1NRi3rxZaGpq8eDBPeLj3zBlynSCgw9y9 + 5tKlWy \ nV9U5Xbz4Z571XX / + + QcrVy5FU1MLB4eq71ny7sHs4cMHrF79OxkZYlxcOtKhQ6f / s3eWAVFlbxx + \ nhu6yQLBAKSXEVuze1V1XxVpFReVv69qFhaBgIq4oJuiCK3Z3d6CirphgEAoiHQIz / w8jIwgoKpj3 \ n + TQz99xzzo2B + 877nt + PVav8CQraxNat / 8qyHM + fR7N6tT / Pnj1l5MjBbNq0 / b1m07lV9a5du5rn \ nwTEjI53Fi / 9GSUmJp0 + fMGvWNFav9sfEpCoHDuxl1ix3bG3t6Ny5AzVqWOHsPIw9e3YxZcoMzMws \ nSEtLIzY2hgoVKhZ4nm1sbAkM3MiUKTMwNjZh6dJFWFhYUr26FYsWeRAR8QxDQ6NC + 7G0rFGkdl + L \ n8 + dDmTjxAc + eVcLE5Aze3jUxN69c4uMaGCQDEnLuH + n7gsl5 + B8w4H + yzw4d2o + jY3 / atGkPwO7d \ n29m / / 3iBWSoTk2r8 / bcXPj7eNGzYGBsb2zzBgqKiokwgpDD / PJBmhrdvD6JHj7cP + U + ehDN4sCvp \ n6QqIRJmEhWlx4kQIIpEIe / sm + QK5qKhIJk78C3 / / f4t4pr4uuYVyrl69R1xcBUaODEQsTpO1KSjw \ nkkgk3L59E1tbO / T1DQBkYiq5efHiOdOnTyIu7iWZmZmUL2 + Yr82X5kMlnp / i1Scg8K0hBHMCAgIC \ n3wAfI0kuEolITk5i5cp1nDlzkkmTxrJixVqqVDFm4EBH7t + / R5kyZWXru5SVVdi4cT3 / / vsPPXv2 \ nwdPTDW / vlRgaGjF9 + uQClf8sLCwpXbo0MTFJGBlVkD0gGxubEBx8BZA + KLVoIS1BNDKqQPnyhjx + \ nHP5es + natevmUdXLTWZmFosXe / DgwX3k5OR49uwpIH2AB2jUqDHKyiooKytTrlw5dHR00NHRwcNj \ nDtnZUuEHZ + eh7wnmarJhwzpq1LCS9WNjUxMdHR2mTp3JzJlTeP06s9B + dHV1i9TuazF37gNCQ3sC \ ncONGQ9zd / 8Hfv3KJj + vu3pj09A2EhWlRsWIi7u55rTb8 / NZw4MBedHX1KFu2HGZmFri7z6JhQ3uS \ nk5M4fvwoly5d5MKFc6SmppCWloaT05 / 07t0fO7vaLFw4l + fPowEYOXIsa9f + w9y5s5k2bQKKiopk \ nZmaSlJTEtGkTyMrKYtAgR0aOHItIJCI4 + ApPnz4hKiqSlJRktmzZhLFxVR4 / DiMpKYk1a1agra0D \ ngIfHXJ49G0BKSldUVS9RqpQ3x49HUqkSMqXQ75mcwCY5OZmRI8OJi6tOdrYeenqX2bnzEn36tP7g \ nvu9j8WJPevbsQ6NGjbl27Spr1 / p + cJ + SoKD7bffuHezate2DXn1Xr17O5 + n3I1x7gR8bIZgTEBAQ \ n + Ab4WEnyRo0aA1JZdT29Uhgbm7x5b0x0dCQvXjwvcH3XkyePKV / eEENDIwDatGnPrl3b880nt4y7 \ nSCSSvReJRO81lf7QQ9 / 7lB / / / fcfSpUqjYuLK9nZ2bRo0RAAU1MzGjSwR0lJGYlEQrt2v2BubgmA \ nsrIyS5Ysz + ch5 + 29UvY6p9ywVq06HD9 + XvZ5TrYQpBL + q1blN4d + t1SxsHbfAvHxKu + 8 / zIqm / r6 \ npQkI + KPAbaGhdzh27DDr1weSnZ2Fk1NvzMwsAOm90qFDJ0JCbuTxS2vduonM7HvmzKl069YLa2tb \ noqOjGT16CH5 + mzAxqcqjRw + oVKkKqakpBAT406 / fAC5evICrqyfjxo2Q / dDw9OkTvL1X0qqVPUuX \ nLqJy5SpkZ4tRV9egQ4dObN8eRN + + PYmOjkBV9RUpKaCjsw5l5dtcvfqE + / dVaNOmnex45s6djUgk \ nom7deiV9aosVGxtb3NxmYW1dlwcPLKlYcT3R0Z5IJOsICUkqdD + RSET16lYsXDiPqKhIDAzKk5iY \ ngJaWdp4fZFJTU2Q + fvv37ynx4ymIgu43c3MLmjZtTseOnYD3e / VpamoW + AOagMC3jBDMCQgI / NTk \ nrBOLjY1hyZIFzJnjUaT2xc3HSpLniEnIycm9s6 / UP0tOTr7A9V337997Z + RPX88ikUg4fvwI7dt3 \ nIDIygsjICCpVqpzHbNrHx5vbt28yc + YUTEyq8fTpY7ZtC6JzZwfU1TV49OgBgYEb6dmzN8HBl4mK \ niuLixQsYGBggFouJiorE1XU6AI6O3fPJ7Oco + mlpaRMcfI9Fi + 6TlqZEixYwbFjhmYZPOdbNm0 / w \ n8mU6v / 1mh5FRuWLru7ioUyeR0NBUQA2RKI569TK + 9pQICbn2prRPGVCmUaMmBbYrbF3VlSuXePw4 \ nTPY + KSmJQYMciY + PR15env79B / H330v4779bLF7sSUZGOpMnjyE1NZWsrCxEIhENG9pz / / 5dsrPF \ nVKxYkV69 + jJ / vhvq6hrs3r0DKytb3Nw8mTFjMqdOLUNHJxBIQE1NnZ07dzJq1BAuX75Iv34DmTt3 \ nFmPGTMLGxpbly71K4IyVHDlCOUuWuGFikk5s7AAyMiwAMZUrS / + G5Fb9zI2Ojg4TJkxl6tTxiMUS \ n9PT0WLRoWR5xFScnZ1xcJqKpqUWtWrWJjo7K1eeXUbQs6H6TSCiyV1 / + dvULGEVA4NtCCOYEBAR + \ ncqQPGaVLl / lgIJe7 / ZfgXUnysmWLFkDk / JJe0PquSpUqExUVKfv88OGDefZ7 + 7rwvnO2iUQiypXT \ nZ9CgvqSkJDN + / GQUFRVlZtPdu / 9BTMwLPD0XY2VlS8 + enbG1rcmxY4fp3NkBE5OqxMe / Yu / eXURE \ nPKVUqTIkJ6cgEkFY2COZOEVsbAxWVjYsX74633xppp0Pxo4dgZ5eKa5d68L9 + z0AuHTpMWXLnsPB \ noWGRztn7kEgkjBgRRFBQZyQSHTZs2Mn69emYmVX67L6LEw + P3yhXbg + PH8tjYSFi2LBfv / aU + Pzv \ niwRfX798Sphr1 / qiqqqGubkF3t4r6dChVaHtFBQUuXnzBv37D + TEiaPY2trRunU7zp49hUgkws3N \ nEwBn52E8ffqUJUv + pl + / XmzbtheAyZOn4 + IyieTkZJKTk7Gxka4zbdv2Vy5cOPeZx / dlyRHK2b8 / \ nmCVLokhL206TJgMZOlTqG1izZi1q1qwla587w12 / fkPq18 / 7fcrtOWhv3xR7 + 6b5xnzXl7BkKfh + \ nK6pXn7v7LObNW1RgOwGBbxXBZ05AQEAAqZiBo6O0nGbfvt1MmTKesWNH0qNHZ5Yvz2 + 6HB8fz + DB \ nTpw / f5bY2FiGDRtE / / 69cHTsLvMz + xjeJ0k + ZMiAfAv08wZeeff181uLoqICU6fOZMqU8bRo0ZDB \ ng51Ys2YFW7duZsKEqUyYMBonp97o6ZWSBWc5ZtF2drXx8HhrBO3tvRIzM3NA + rCXe1udOvVYvdqf \ n2NgYGjSwB96aTXfp0o0 / / 3Skbt0GqKqq0qHD71Svbk18 / CtiY2MJC3tEtWpmbNy4GRUVVe7cuY2c \ nnOhNwCgnMxnW1y + fJ5D7668JsofDLl26ExCwFWfnUdy / bydrk5FRiWvXEot49t9PZGQEu3bZIJHo \ nAiIePuyEn9 / tYum7OFFQUGDChPZ4eDTE0DBBtmZswoS / vtqcbG1rvvHAyyA1NYWzZ99mtYuiclin \ nTn2Cgt4qPObPLBe1nSifUEpmZmaBfcnLy5OVlc0ff + yiUaMjTJ16ALFYnK / d11Rp / Fzat7fj4MFf \ nOXWqFXPm / F5o5qwo3pM3blyjd + 9uODn9SVzcS / 76awfduh1i2rRd + czLi4tr165y69ZbP8AdO7Zy \ n4MDeQu + 3tLSUInn1FebpJyDwLSNk5gQEBAQK4MGDe6xfH4CCgiK9enXBwaEHZcqUBeDVqzgmThyD \ ns / NQateuS2DgRurVa4CjoxMSiUQmrV9UPlaSPEetsqB9c2 + zs6vNvHkLmTjxL / z8AmWCBPXqNeCf \ nf97KuRfG + 9bG5Sf / w + C7D4hSGwFo3rwVJ04c4eXLl7Rq1Ua2vXfvfvz + e + c8 + 0RFRaKqqiLbf / bs \ nPZw9q4aGRhrjxpnQsKF0 / VWlSoYYGt4gIsL4zdhxVKnyab5mmzZtZN + + 3QB06NAJMzNzDAxmkJJi \ nj6rqNbKyyiEWN / ukvr8ESUmJbN8exB9 / 5L93vjSmpua0bNmafv16oqurh6Vlddm2wn6QyP169Ohx \ nLFrkQd + + PcnOzsbW1o5x4ya9aUeR21lb2 + Dp6S77fl65cgkDA0MePw5j5sypzJzpxoEDe6lZsxbq \ n6hrEx8sTHm5Genpt4uK8sLLSe2OzoElIyHWsraWlxJ9LUNAmdu7cipmZOS4urp / dX3FTFO / J3Gqk \ nAwduZdcuR0COEycyyMoKYt683 / O0z8rKQkHh8x4 / g4OvoKamTo0aUp / HTp26yLa9e7 + JRDBw4OAP \ nevW5us4rtJ2AwLeMEMwJCAgIFECtWnVRU5Ma6lauXIXo6CjKlClLVlYmo0YNYezYSdjY1ATA0rI6 \ nc + fOJisri8aNm1GtmmmRxti / fw + bNv2DSCSiatVqDBw4GHf3WSQkJKCjo8uUKdMpV04fN7eZqKtr \ ncPfuf7x8 + ZKhQ0fSrFlLYmNjmTFjMqmpKWRnZzNu3GSsrW3p2rUja9duREtLm61bN / P06ROGDh2I \ nRCLHvXv3uXjxLhDH / ft3SU1NRUdHBy + v5VSsWJlhwwYRFvaQjIwMTE1NmTbNlalTJ / DyZSwVK1bC \ n2tqWo0cPsWTJcu7fv8exY4e5ezeU9PQ01qxZydmzp8nOzsLVdZ5McKF3776IxRJOnz6Bi4srCgoK \ neHjMISEhnr / / XgVAvXr1WbVqBW3atEdVVZWYmBcoKOQNxnx9j7F8eVskklIAPH + + hSNHKqOqqoq2 \ ntg7u7posWbKJ1FRlmjRJZuDA39895R8kx4tr1So / mRdXzZquKClFExXVnhcvZmFq6oCVVcqHO / tK \ nrFjhTUTEM / r374WCggIqKqpMmzaRsLCHmJlZMH26NGg4f / 487u5zyc7OxtzcknHjpGWyPj7enD17 \ nGnl5eerWrc + wYaN49epVPlVJKyubIs3H0dEJR8fCMzy5f4CAtxliAG1tHWbNmptvHycn5zzvi9LO \ n3r4Jhw8fYMECd0xMqlK / fkPMzCxZsGAuffv2lNl3iMVikpJ6UqbMfOTk0nj9uiKKim1kc5UKoEiz \ ngZ + 7FmzHji14efnIhEOgeIKd4uJd70kdHd0899Hu3TtkaqQXL54jNLQppUvPR139DADXr0tLNoOD \ nr7B69Qq0tLR4 / DicCROmsmbNSjQ1NXn48EGhXpYFGZGnp6eza9c25OTkOXRoH6NHT + DKlYsyP7kG \ nDRpx5swpUlJSSE9P59dff0dTU5MjRw5RvboVwcFXSE5O4saN69jY2Mq8 + pKSErGwsMbff9N7hZoE \ nBL41vo2 / FgICAgLfGPkFSaRZKgUFBczNLblw4ZwsmLOxqcnff6 / i3LkzuLvPpHv3P2nX7v3rlR49 \ neoi / / 1pWrlyHlpY2iYmJzJkzg19 + 6Ui7dr + yd + 8ulixZwNy5CwCIi3uJj89awsPDmDRpDM2ateTw \ n4QOyjKBYLCY9PR14m9kIDb3DuXOnMTQ0olmzznh5zebVK0ceP66AgcEc1qzxo3JlY7p27cjcua64 \ nukqNvq2ta + LpuZhJk0YzZco4xo + fgpfXAoYOHcXEiX9hYFCe + fPdsbCwpH79hrIHUR0dXdau3cj2 \ n7VsIDNzIxInT + OWXDgwa1BeAjh3 / kAW6aWmplC1bDj09aWBWp059wsPDGTy4PyAtf3Jxcc0jnnD / \ nfrYskAMICzMnOjqKKlWk2bj27e1o3 / 6TLreM3F5cAE2btuDGjWsYGhoxcWIi0dFbyc6uR1ZW + ucN \ nVIIMGTKSsLBHrFsXwLVrV5k8eSwbNwZRqlRphgwZwM2bNzA1NWfy5MksXrwcI6MKzJkzg + 3bt9Cu \ n3S + cPn2CgICtgNSUG8DLa0EeVclx40awcWPQ1zzMj + b33zsTGlqOiAh5wsN96d27P9WqmbJy5bp8 \ nbY2NVTl9ehPSjHMKDg5SVVMzM3PWrw + QtXvX1PxjmD / fncjICMaOHcHz59E0atSEyMgI9PUNGDVq \ nHAsWuOcLntPS0li82JOwsEdv1BqdC1ynVnzk9p68l + c + Cgm5TseOnbh5860a6cWL80hJieLx413I \ ny79EQ6M9L19Kv / / 3799lw4bN6OsbEBx8hQcP7hMQsAVNTa1CvSwLMyL / / fcuqKmpyXwCr169JMvU \ nzpkzgzFjJmJjU5M1a1aybp2vzKpCLBazapUf58 + fZd06X5YsWQ7A / v3BTJ2awLNnplhYHOfvv82o \ nUcOkBM + rgEDxIQRzAgICAh + FiMmTpzNt2gT + + cePP / / sS3R0NGXKlKFjx068fv2a + / fvfjCYCw6 + \ nTIsWrWWS + lpaWvz3301Z8Na27S / 4 + EjX6olEIho3lj6wVa5chbi4OOD9GUGJREJIyDXq1WvAkSOH \ n8PX1JjGxI1lZZRGJ5BCLJbi6zkBBQZ709HRiY2O4c + c2pUqVpk2bdigoKNCmTRvc3NxYuHAejx + H \ n4 + npRlpaKq1bt2PVKh / KldPHxqYmVlbWLF7sKZP3NjU15 + TJY8BbwYV3yV0amoODQw8cHHoU2tbM \ nTAE5uVjE4tIAGBvfwcCg2XvP88dSWKZFSUmRDh0aARAYuJG0tG + 3 / Cr3Wi6JRIKFRXVZwF21qilR \ nUZGoqKhiZGSEkVEFQCpSsW3bZrp06YaSkjJz586mYcPGMguMd1UlU1NTSU9PR0Xl + / Hg6t17DDEx \ nYkSi1yQmdiYo6CEuLhYFtvX2bszMmf8QG6uOlVUakya1JzLyBfv2BVOhgi5t236 + LcH48VO4dOkC \ n3t4r2bLlX86dO8Py5atRUlLKZ8mQEzz7 + 6 + ldu26TJkyg6SkJJyd + 1K7dr0vch3evY + io6Oxts7b \ npk6ddLKz9VBU3ImxcTwmJnW4c + c / 1NXVsbCoLjMdl / ZnKfsxpzAvy / cZkRe0ZDElJUekRvpDW7t2 \ nv + LiMkm2vWnT5oA0KM9R2wRYvDiKZ8 + kf3vu3DFnwYJA1q8XgjmB7wMhmBMQEPipKWitzvuktHO2 \ nzZzpzsSJY1BTU0dFRYXAwA0oKCigpqbOtGmzijRuQQIKhYkq5Fbpy2nz4YygCIkENDQ0EIuVUFB4 \ nTkaG2ZttCvj4rEZDQ5MJE / 6iZ8 / esixMzoOhWCxGUVGJdesCmDfPlapVqxEaegdra1uys7O4dSuE \ nkSPHyOaTk82Ul5f7yPV2 + fH03M / u3QrIy2fj5KSOo2NjBg5szvPnezlzRhlNzdeMG1e12B9i3y0N \ nPXXqOC4uswv04vteyO0ZmHNtClrPKN0uz6pVfly5cokTJ46ybdtmvLx8KExV8nvi1au + PHnSSfY + \ nJGRroW3Lly + Lr + / bMt07d8JwcnrEw4ddUFSMwslpF66uvxXLvHLOvb19E5SUpNeqoOA5LS2NS5cu \ ncPbsKQIDNwCQmZnJixfRVKxYuVjm8j7y30dZ + dro6WkxfHhVfv21JQCurjdk95qKSt7SxaJ4WRa3 \ nEXnOGLmrLQCSk / P + HUlJUUJA4HtBCOYEBAR + anLW5 + QWEnlXStvTc3G + 9oqKiixa5C37 / GOlt + 3s \ n6jBlyjh69PjzTZllAjVqWHP06CHatv2FQ4f2y35dLoy8GcGMPBlBkUiErW1Ndu7ciry8PG5u0xk + \ n3InsbG0yM01QUVHi8uWLNG / eColEQmRkBPXrNyQu7qVsDd6xY8coV64cx48feVPutJyOHTthamqG \ nvLw8GRkZqKmps337h8VUPoZdu87j7V2fjIyKALi6XqJ27QdYWlZl2rSSlTjP8eLKXRqqqamVL / j5 \ nUr5Zn4KamtoHhRsqVqxERESEzKLi4MF91KxZi7S0NNLT02jQoBFWVjZ07y4NaHLUInv16gPA0KED \ nmT9 / CRIJHD58QCa2Ehx8hU2b / snzncnBw2MO3bv / mU + Z9UtRunQKjx7lvJNQunTRs6urV4fy8GE3 \ nADIzDdm8WZ / x4xPymdV / DjmlvTnzKyx4dnObT4UKFYtt3OIgJyC1tq7Jzp3baN + + AwkJCdy4cY3h \ nw0cTFvboAz0UTGFG5O + qUErnAOrqGmhqasnWw + WI2nyIRo0SePAgAdBGWfkJzZsLYu8C3w9CMCcg \ nICDwidy9G8a1aw9p2NCSihXLf9S + VaoY4 + joxPDhzsjJyWNqasbo0ROYO3cWAQEb0NXVzSMMUVAG \ n8dq1K + / NCJqamtOwoT1btvyLr + 8iGjduxPXr52nXrgzJyc3Ys2cXfn5riYh4RqlSpfj1198wM7Ng \ nzRpfNm36h1atWvLXX5NYsGAe0dGRxMS8IDk5GTk5OUxNzXj27Bl9 + / YoYM3O55kE37uXIAvkABIS \ nbLl + fQ + WllU / uc + PIXdpqEQi4fLlEAYNGicTpsitNvotoq2tg5WVDY6O3VFWVpaVsuVGSUkJd3d3 \ nXFwmkp2djYVFdTp16kp8fDyTJ499IykvYcSIMUDBapHq6hpERUUWWTlz4sRpxX2oH8Xs2RZMmbKR \ nqChNTE1fMXNm0deavZswF4vlCrQrKC7eDZ7v379HtWqm1K1bny1bNslsO + 7dC8XU1LzE5lEU78nc \ n7Zo2bc7t2yH069cTkUjE0KGj0NXVIzw8LM / + hZmTv7utMCPyRo2aMG3aRM6ePcWoUePzzG / q1Jks \ nWDCX9PR0mahNISPJXnl4dKJy5SM8fizBzk6DHj1aFX6wAgLfGCLJN2KUEhOT9LWnIFBClCmjKVzf \ nH5if9foGBp5l1ixt4uLsKF / + DAsXKtGype3XnlaxUti1zcrKIj09DQ0NTeDtr / LFla06c + YW / fur \ nkpAgPZ + GhofZtasSFSoYfGDP4kUikTB8eBBbtzZHLFahRYvd + Pt3lZXCfe + 877sbEOCPkpISXbv2 \ nYOnShTx8 + AAvLx + uXr3Mnj07uXUrhNWr / Vm0yIMzZ05RsWIl6tSpR4MG9qxd64u2tk4 + 9czhw50Z \ nMWIMZmbmtG7dGAeHnpw7dwZlZWXmzVuIrq7eFznu7Oxs5OXlP2qf69fvM3BgFE + e / IqcXAy9e + 9l \ nwYIuH97xAzg4 / M7q1X5s3bo5j6BHQkI8ixZ5EB4ensdqISMjg6VLF3LrVghisZjy5Q3z + D7m8LP + \ nXf5ZEK7vj0uZMpofvY + QmRMQEBD4BNasSSIurh0AkZEt8fXd / MMFcwURGHiOhQuTSUrSoU6dhxgZ \ nyXP0aCkUFTMZNEiV / v0 / X1nP3r4Gc + acZevWLSgoiHF2NvzigRzAoUMX2LLlVyQSfQCOHevH + vW7 \ ncXZu + 8Xn8qWxsbFj06aN3Lp1k5Mnr5CRocavv + 6gQYNQbG3tuHUrBJFIlEc5E6Rllvfv382nnmll \ nZZMn2E9PT6dGDWucnYeyfPlSdu3aTt + + A77IsX1sIAdga1uNzZtV2b9 / M / r66nTu3PnDOxWBoKCd \ nQNGsFtLT03n27ClDhoyQ / ZAi8GHOn7 / DiROPMTJSoXfvpt90ibSAwKcgBHMCAgICn0BWVt4HwszM \ nj39A / N5ITk7CwyOTyEhpRuLQoSbAv4BUVMLd / QL29mFUq / b5a6K6d29E9 + 6f3c1nkZCQhkSSe02U \ nEqmp30QxS4ljZmbO3bt3yMjQJTm5FKmpDXj2zIqkpH / o3bs7GzeuBwoW7MmvnhmVz5NOUVGRhg3t \ n34xlwZUrF0v2gIoBY2Mjhg0z + ipj3779iOHD / + POHRsMDa / g6qrFL798eC3Yz87evZcZM0aDV68c \ nEIlecvPmdjw9iycQFxD4VhBWeAoICAh8Ar / 9JkZZ + TEAmpq36dz5 + 5Fo / 1Ti4 + OJjc39MKsIaMne \ nJSRYEhr67IvPq6To0KE + tWoFAtK1Uaamm + nWze7rTuo9REVF0qtXF9zdZ9GzZ2dmzZrGpUsXGDzY \ niR49OnPnzm3WrFlJYOBG2T59 + nQjOlrqZbZ / / x769u1Jv369mDfPFQMDQ5KS4hGLVVBTO0X58s5k \ nZcV8UHyjKKqH8vJvf0uWkxN9tvrpj87Chbe5fbsnYrElT5 / + xqJF0V97St8FO3a84tWrugBIJKU4 \ neFCXrKz896OAwPeMkJkTEBAQ + ATGjGlLtWoXCA29RJ06BjRr1uRrT6nEMTAoT82a27h40QYQoaJy \ nCzm5RHKEE6tUOUGDBtbv7eN7Qk1NjX / / bcvKlUFkZYno3duO8uXLfu1pvZeIiGfMmePJ5MnTGTjQ \ nkaNHD7FixVrOnDmJv / + 6PF6E8Had47sm9klJSQQFBXL9 + jUkkrI8e / YPlSr9jpxcfJ4yxaIoZwp8 \ nPikpynnevyulL1AwCgp5AzclpUzk5IQ8hsCPhRDMCQgICHwiHTvWp2PHrz2LL4e8vDxr17bAwyOQ \ nlBRlWrTQRF6 + LDt2bEVRMYthw6pSunR + 5cTvGS0tLcaP / + VrT6PIGBgYYmwsNTuuUsWY2rXrvvOR \ nnUEAACAASURBVHltQnR0ZL5gTookn4m9pqYmNjY1EYtXU69eJV6 + PEFsbHY + Vcfcypn16zeiQYNG \ n71U9zKEgdVaBwmnWTI5z5568UXlNolGj + K89pe + CoUNNuX59Ow8ftkRT8x4DBigKwZzAD4cQzAkI \ nCAgIFJkyZUqxYEHeCLaYtCAEioEc43YAOTk5mU + ZnJycTMVRInkrqS + 1ICjYxL5WrTq0b / 8rDRvW \ np1mzlkAbWreWZqCDgnbJ2s2YMSfPfrl9vXIk9AG8vVfKXuf4NQI0a9byTf8ChTFkSCt0dc9w9eol \ nKlYUMXRopw / vJICVVVX27SvFmTNnqFatPObmzb / 2lAQEih3h5wkBAQEBAYH3MH78KFJSkklOTs5j \ nkB4cfIUJE / 76ijP7eAwMynP3bigAt2 / fJioqEhBhZ1eH48ePkJiYAEBiYmKJjJ + QkMCkSbsYOvQQ \ nmzadLZExflR69LBn / vy2jBjR5pMUOX9WdHV16dixMebmJl97KgICJYKQmRMQEBAQEHgP8 + d7AVKB \ nka1bNwHwxx9duX / / Lnfu3P6icwkOvsKmTf / g6ZnfWwzylyy + W87YtGkLDhzYS58 + 3bCzq0mFCpWA \ ngk3sc8yWi6skUiKR4OR0gNOnnQA59u69h5zcObp1a / jJfQoICAj87Aim4QIljmBu + WMjXN8fl5 / l \ n2n6MQfbp09LywK5du1O6dBnWr1 + DnV3tfAbZuRGLxcW2TudDwdzH8KWvb2xsLHXrRpGc / DZ469Zt \ nK8uWtflic / hZ + Fm + uz8rwvX9cfkU03ChzFJAQEBA4KfGxsaOGzeuAxAaeoe0tDSysrIICbmOra3U \ niiDHIFtRUQmRSMTlyxfZsWMrKSnJvH6dAcDFi + cJCZH207VrR3x8vHFy6s3x40c4fPgAffv2wNGx \ nOz4 + 3rKxW7duLHt9 / PgR3N1nAVJVSmfnfvTt2wNf3 + WytWoAaWmpTJs2kT / / 7Mrs2S4lck7S09MZ \ nP34nf / xxmBEjthdL2aWmpia6us9zfZKNru7rz + 5XQEBA4GdGCOYEBAQEBH5qcgyyU1NTUFJSokYN \ nK0JD73DjxjVsbGrK2kkkEvT09DA0NGLdugCsrW0Ri8VMmDCVjRuDkJeX4 / Jlqfm1SCRCW1uHtWs3 \ nYmNTkxUrlrF06QrWrQsgNPQ / Tp8 + 8abXgksYvbwW0L17L / z8NlG2bLk8871 / / y6jR49j48YgIiMj \ nZAFkcTJ16n78 / Lpz9mxn / v23N3 / 9dfiz + 1RWVmbSJE0qVdqKtvYJmjdfy8SJzT5 / sgICAgI / McKa \ nOQEBAQGBnxoFBQUMDAzZt283VlY2mJhUJTj4MhEREVSuXKXQ / apUMUZLS5vSpcsAoKOjS1zcS9n2 \ nli1bA3Dnzm3s7Gqjra0DQOvW7bh + / RqNGzcrtO / bt28yb96iN + 3b8vffXrJtFhbVZWNWrWpKdHQU \ n1ta2n3bwhXDvngZSU3gAOe7f1y6Wfh0c6tGpUyYpKcloa9sJtgSfyKZNG9m3bzcAHTp0okmTZowZ \ nMxxzc0vu3QvFzMyUCRNcUFZWITT0DsuWLSYtLQ1tbR2mTp1BqVKlGT7cmerVrQgOvkJychKTJk3H \ nxqZ47yMBAYGSRwjmBAQEBAR + emxsbAkM3Mj / / jecVat8SEtLw8LCkoCADSQlJbFz5zb2799DZGQE \ nKiqqgDRIS09PA8DNbSYvX8Zy6tQJLl + + SFpaGqqqqojFYnbu3MbNmzeIjY1BQUGBcuX0ZX3kDmYy \ nMjKKNFdFRSXZa3l5qeVAcVO + fAogISdzaGiYXGx9KyoqoqOjW2z9 / WyEht5h / / 49rFrlh1gswdm5 \ nLzVr2vH06ROmTJlBjRrWLF48l23btuDg0IMlS + bj4bEIbW0djh49hK / vciZPno5IJEIsFrNqlR / n \ nz59l3TpflixZ / rUPT0BA4CMRyiwFBAQEvnOioiJxdOz + tafxXRMf / 4rnz6M5evQg8vLyKCsrY2NT \ nUxZsbdmyCX / / f7G3b0p6ehrLly8lPDxMtn9qaiqJiUnY2zfB03MJSUnSNWYnTx4jMzMTTU0tRo0a \ nx61bN7l584ZsLZ6enh6PH4cjFos5deq4rL / q1a04fvwoAEeOHPrg / IOCNtG7twOursWzhs7NrQlt \ n2 / pTteoOmjXbwNy5dYulX4HPJyTkOk2aNEdZWQVVVVWaNm3B9evXKFu2HDVqWAPw22 + / ERJynSdP \ nHhMW9pDRo4fSv38v / P3XEhMTI + uraVOp75qZmTnR0VFf5XgEBAQ + DyEzJyAgICDwQ9G6dWMOHz5N \ nbGwMS5YsYM4cD / bt283du3fymFjn5urVy + zYsZ / MzEwmTvyLwMBtAAQGbqRbt57cvn2LmTOn0rRp \ nc + Tl5Th / / gzh4WHo6 + sD0gybiooy1ta2VK5cBbFYaswdEnKDdu1 + RVFRkRkzJpOdnY2hYQXs7aWC \ nJoMHD2fChNFoa + tgYWFJWpo00zdy5Fhmz3Zhw4Z11K1bHw0NDdlcC6pM3LFjC15ePrLyS4CsrCwU \ nFD7t33zp0nps2CC4wX + LFFSaKhLl / Vwikbx5L6FKFRNWrFhbYF85WV45OfkSyfAKCAiUPEIwJyAg \ nIPADIBaL8fBw49atG5QpU5a5cxdy8OA + du / eTmZmFkZGRri4zEZZWYVjx46wfv0q5OTk0dDQYNky \ n3689 / WJG + lBbunQZ5szxkH7ynrVZ8 + e7ExkZwdixI4iKikJZWVm2LSDAj9at2zN27ESGD3cmPPwR \ nERHPsLdvRlhYGLGxCYwfPxYVFQU0NDQJCblBQIA / IpEIZWUVRCKIi3tJcPBVFBQUUVRUwM6uFiAt \ nzVRSUkJbWwdra1uGDx8tG7dMmTL4 + q4H4MiRgzx9 + gQAO7va2NnVlrX7668Jeeb / / Hk0jRo1ITIy \ nAn19A / 73v2G4u88iISEBHR1dpkyZTrly + ri5zURHR5OQkFu8ehXHpEku7Nu3m9DQ / 7C0rCHzmBMo \ neUJD73DgwF5Gjx5XpPY2Nra4uc2idpppiMUSTp06jovLbLy8FnLr1k1q1LBiz5492NjYUrFiZeLj \ nX8k + z8rK4unTJ1SpYlzCRyUgIPClEMosBQQEBH4Anj59Qpcu3diwYTMaGpqcPHmMZs1asGqVP + vX \ nB1CpUhX27NkJgJ / fahYt + pv16wPw8Fj0lWdecuQuP81tqXru3BkGD3YiISGeS5cu8PDhAyQSMDAw \ npHNnB9LSUklMTOD169ekpqYikUiIjY0hNjaGiROnoaWlzblzVojFirx40ZnTp38hOTmVly9jZddA \ nJBJx8uQxrKxsCAjwZ / Toccyfv4TMzCx27dohm0tsbAwrV67LE8gBhIaG0q9fL / r27cmOHVtl2x8 / \ njmTDhoPcuHFP1nb8 + CmULl0Gb + + VdOvWi / DwMLy8fJgxYw6LFnnyyy8d8fMLpE2bdixZskC2X1JS \ nEitXrmPkyDFMmjSWXr0c2bBhMw8fPuD + / XsIfBnMzS2KHMgBmJqa88svHRg0qC / / + 18 / Onb8A01N \ nLSpWrMT27Zvp3duBpKQkOnXqioKCAq6uHqxY4U2 / fr3o378Xt2 + HFNLzlxGjGT7cmdDQO19kLAGB \ nnwEhMycgICDwA2BgYEjVqtUA6fqXqKhIHj58wKpVPqSkJJOamka9eg0AsLKywc1tBi1atJatmflZ \ nOHnyOJs3B7BgwVKysrLw91 + Ll9dyevfuRtWqVQkJuUGdOvUYNKgvZcqURVFRiezsbJYuXYicnBzz \ n57tjbl6Xdev6UrXqMkDEo0edqFTJD11dPdk1kJOTIyoqEgeHniQlJeHo2ANFRQUkEkhNTQGk2cLm \ nzVsVmDW0sbFl / fqAd + Z + k9GjU4iI6ISW1k0mTTrJwIFNZdtzAtbGjZuipCQtn / vvv5vMnSsN4Nq2 \ n / QUfn6W5xm4GQJUqJujplcLY2OTNe2OioyOpVs20mM76j09UVCRjx46gRg1rbt68gbm5Je3bd2Dd \ nOl9evYpnxgypmbyX10Jev85AWVmZyZNnULFipTxG8GvWrOT582iioiJ5 / jyabt160rVrj3zjde / + \ nJ927 / 5lnfHl5eVxcpOPkNpWuVs20wOy7t / dK2WsdHR2CgnYWy7nIuQ8Ly4aLRCJBxVRAoBgRgjkB \ nAQGBHwAlJUXZa + n6lwzc3Wczb95CTEyqsn / / Hq5duwrAuHGT + e + / W5w / f5YBA / qwZs0GtLSKR3r + \ nW + bq1SuEht5h8eK / UVNT4 + zZ04SHP2LwYCdiYl5w9OgR1NTUqF + / IXPnLgSgR48 / 6NXLEYlEzMSJ \ nf + Hv / y8nTlzG3z8GUCAmZhqQRv36v3Lt2jbZWM7Ow94oXUrQ0dFl166DJCTE4 + zcL8 / 6JRUVlSLP \ nf / XqCCIiHABITKyJn99DBg7M305ZOW + fubOSuVFUlN4zcnJy79w / JaOQCTBkiBM + PgWv3 / reiYh4 \ nxpw5nkyePJ2BAx05evQQPj5rOXPmJP7 + 63Bxmc3ff69CXl6ey5cv4uv7N3PmeObr5 + nTJ3h7ryQl \ nJZlevbrwxx8OyMvLf3D8DwVI69ev5tCh / WhpaRMZmU1mZkVMTKqgqHiVxMREVFRUmDhxKhUrVsbN \ nbSbq6hrcvfsfL1 + + ZOjQkTRr1hKAgAB / jh8 / wuvXmTRp0owBA / 5HVFQkY8YMp3p1K + 7evcP8 + UvZ \ nuHE9oaH / kZGRTrNmLRkw4H + fdmIFBATei1BmKSAgIPCDkpaWip5eKbKysjh4cJ / s84iIZ1ha1mDA \ ngP + ho6PDixcvvuIsvwwikQhDQ0PS0lJ58uSx7PPateuxbl0AZcqUZcWKNXTv3ou7d0MBuHs3lKio \ nyHx9NW1amz / / PIpEIkJO7jbt22 + ga9cGedqIxdlcunSfxYtPk5qaSteuHRk2zJm + fQfw8uXLfH0W \ nhezsvA / rWVkffsCvUcOao0elapiHDu3PY4L + NfhRAzmQZseNjU0QiURUqWJM7dpSBdAqVUyIjo4k \ nOTmJadMm4ujYnWXLFhMW9ihfHyKRiIYN7VFQUEBbWwddXT1evYorwtjl8fPbVOj2O3duc / LkMfz8 \ nNiGRtCY6OplHj6w5ezaYlJSarFmzgaFDR7FwoYdsn7i4l / j4rMXTcwkrViwD4NKlCzx79pRVq / xZ \ nt + 4f7t4N5caNa4D070rnzg5s2LAZfX19nJ2Hsnq1P + vXB3L9ejAPHz74qPMpICBQNITMnICAgMAP \ nQEG / yg8c + D + cnfuho6ND9eo1SE1NBWD5ci + ePXuKRCKhdu26stLAHxmJRIK + vgHDho1iypQJuLrO \ nw9KyBosWeRAR8QwQkZ6egYlJNQ4c2EufPt2wtKxBhQqVZH3knGORSMSCBV2YO / c / goOHY2Jig6Ji \ nM9l2iURCUFAIoaGWxMU5YGAAlSptJjs7nYCADbRq1UZ2zj + m3MzBQZsrV64SH18LZeUndOr0OtfW \ nt / 3k7nL06AnMnTuLgIAN6Orq5hE2yT32u / MoqTK4HKXR4OArrF3ri46OLmFhDzEzs2D6dNcSGfNL \ n8W52M3fmMzs7m9WrV1C7dh3mzl1AdHQUI0YUnKlSUMjbT1bW52dJb968QePGzVBUVOThwzIkJ7dA \ nJMpAVfU6oaGP6d / / GACZmVmA9Po3biwt4a1cuQpxcdKA8tKlC1y + fJH + / XsBkJaWzrNnTylbthzl \ nyhlgaVlDNuaxY4fYtWsH2dnZvHwZS3h4GCYmVT / 7WAQEBPIiBHMCAgICH8GnlonlXhdTVNasWYma \ nmjo9e / Z + b7t3f5XP3b5Tp6752ru5zS / yHL5HCgpSctbpVKxYmRkzXHFxmYSn52KmTp3JzJlTUFNT \ nY8KE0Tg7D2XRomUF9vtu5mPyZJcCt0dHRxEcPIj09DoAREU5oKsrYsGCtoDU0y409C5jx07Ko5z5 \ nIf74oz76 + rc5fz6IatW06djxF9m2nPVOTk7OefbR19fHy8snX19TpsyQratKTX1N375 / kZycjIaG \ nRgkrWb69Ng8e3GPjxiBKlSrNkCEDCAm5jrW1bQmO / fWQSCSkpCTLrCP27t1VaLuSQSTr28AgmchI \ nADFisSbGxgNYt65Tvj1ygtF359W7dz9 + / z2vbUVUVCSqqm / LeyMjI9i06R9Wr96AhoYG7u6zeP06 \ no3gPSUBAABCCOQEBAYGPojjLxD7kfVbc2ZGnT6M5ePA6lSrp0br1j2sCfejQSSBvkNu + fQfat + 8A \ nQLVqZmzcuBmA8uUNWbXKv1jHV1FRQUXlGenpOZ9IUFTMBCAo6AKzZ2fz4kUVrKwO4utrh7GxUZH7 \ nbtCgOg0aVC + 2uS5bdoRFiwxJTrbB0vII69fXpHJlw2Lr / 32Ymprj4TGHmJgYXryI5ujRQwQHX + Hs \ n2VNkZGRQo4Y1EyZMBaQKiGZm5ty4cZ20tFSmTZuFv / 86wsIe0bJlawYNGgLAwYP72LLlX7KyMrG0 \ nrMHYsZOQk / syK0rel92Uk5OjZ09H3Nxm4Oe3hgYN7Ckomyr90aH452ZtbYOnpzt9 + vTHxcUGZ + fl \ nZGQ0QFVVmQ4dpJk / iUTCw4cP3pupr1evPqtWraBNm / aoqqoSE / MiTyYxh5SUFFRUVFFXVycu7iUX \ nLpyjZs1axX9gAgICQjAnICAg8DEUpUzszp3bLF26kLS0dBQVFfNlRnIybjo6OgD06dON + fOXoq + v \ nj5 / fGg4c2Iuurh5ly5bDzMwCkK5HWbTIk / j4V3mECopKSMh9BgyI4PHjrigpPWXgwN3MnNmxeE7K \ nd0ZmZiZz5hzg4UNlKlRIZ / r01qiqqhZb / 7q6ejg5vWT58uukpxthbb2PUaPskUgkLF4cx / PnUruE \ nkBAzFiwIYPnyogdzxUlGRgarVsmRnCwN7P / 7rydeXptYvPjLBHMpKSkYGlZg / nwvFi / 2pEoVY1q0 \ naEO / flJVF1fX6Zw9e5pGjRojEolQVFRi9Wp / goI2MWnSWNat + wdNTS26d + 9E9 + 5 / Ehf3kmPHDrNi \ nxVrk5eVZsGAehw7tp127X0v8WN7NjufObubelmNGD8gC0Nzege9mVv39 / y2W + ZmbW2Jv34S + fXug \ np1cKe3tb6tevSa1a / 2PBgnns2bOVrKysQkuAc17XqVOf8PBwBg / uD4CamhouLq75FCqrVTPF1NSM \ nXr26ULasPtbWNsVyHAICAvkRgjkBAQGBjyJvmdjChctwc5vBpUsX6Nz5V6ysbLh27Sq6unpkZGQw \ natRYHj16yKJFnsTEPGfIECdMTc1RU1N / 26NIxNWrl9m8 + R + ys7MZPnw0fn5rOHnyGOHhj + jUqQue \ nnm6MHz8FI6MK3L59i4ULPQosnyuMNWse8PhxNwBev65IUJAuEyakoqamVnyn5jth6tS9rF / vAKgA \ nmSQl / cOyZV2KdYxJk9rz + + / 3iYi4RoMGbVBXVyc7O5uUlLxKk6mpRS + zLG4yMzNJT1fP89nr1 / mz \ nLCWFmpo6V65cxMfHm9jYGMzNLQkOvkxAwAYyMtJJTEzE2NiERo0aA2Bv3wQAY2MTjI2ldgogza4 + \ nfx5NSMg17t4NZeDAPoA0WC1VqtQXO55PRSKR4OGxj1OnlNDQyGDcuKrUrWte7OP07NkHJydn0tPT \ n32Q6LTAwKM / ChUvztX231DYn2w3g4NADB4f8dgnvliEXVq6b2xJBQEDg8xGCOQEBAYFPxMKiOnp6 \ nekREPKNp0xY0atSYDRvWI5FI8PML5MyZk2zeHIiLy2xGjx7H5s2BODj0wMtrAb / + + rtsHUpKSjI7 \ ndmyhVau2JCYmEhi4EW / vlfj6 + vDkSTgbN67n5s0QXFwmysbOESooKhKJ6J33ciW4PqdgPmW94enT \ nJ6hQoRKVK1cptnncvq2BNJADUOT27ZKxZbCwqIaFxduSNXl5eeztXxIUlAqooaZ2l9atiy8j + LFo \ naGjQokU4W7cmAxro6V2gU6cyJTpm7uyNmpoqa9f + w / nzZzh4cB8SiYRbt26yZs0GypQpy9q1vrx + \ n / VbkRVFRSdZHzuuc9zlWCu3bd + B / / xtWosdQ3KxdewIvrxZkZ5cFIDIyiMOHKxVrthjA09ON8PBH \ nvH79mvbtO1Ctmlmx9l8QZ8 / e5syZpxgbq9O1q73gLycgUAIIwZyAgMA3QXJyMocPH + CPP / ILduQQ \ nFRUp8 / r6Fsh5oDQwMERXVxexWIyhoRHZ2dJAK7ck + dq1K3nw4D7Pn0cRHx + PRCIGpN5nr169YsEC \ nby5fvkhMzP1c3mcxyMmJ0NHRQVNTk3XrAgqdy4dwdKzC2bMHefq0LQoK0XTq9AJ1dfUP70jxnfdP \ nWW946tQJGjVqXKzBXNmyKe + 8Ty22vj + El9cfVKu2j + fPRdSvr83vvzf + YmMXxLJlXbGxOUhMjJhW \ nrSrRoEHJWhfkZHjs7GpTsWJllJSUaNOmPRoamuzevQORCLS0tElNTeX48SO0aNG6SP2KRCJq1arL \ npElj6datF7q6uiQmJpCamoa + vn5JHtJnc + fOa1kgB / DggSVRUZEyE / fiYsaMOcXa34fYseMCEybo \ nER / vgIJCNDdv7mb27N + + 6BwEBH4GhGBOQEDgmyApKZHt24PeG8x9q + SWJNfU1CQ5OZnQ0P / Q1tYh \ nMzMTX9 / lmJqao6GhxZgxExg4sA9374ZSv35DtLW1CQ9 / RGRkJLa2Ndm8OQA7uzpMmjQNJ6c + dOrU \ nmR49ejNkiBPHjx + hefNWRRIqeJfatc3YtOkJhw5txshIk99 + + 70kTsV7ad26MZ6eSwgM3ChT9Vy0 \ nyAMLi + q0b98BHx9vzp49jby8PHXr1qdp0 + acPXua69ev4ee3hjlzPDE0 / Pz1ZTNn1iUhwY9Hj7Sp \ nWDGJ2bO / nPeagoICo0e3 / WLjfQh5eXkGD27zxcZLSkoiIOAsCgpymJur4Ovrg5ycCAUFRcaNm8yp \ nU8dxdOyOnl6pPDL3uSlIJGTHjq0yIZQxY4YhFktQUFBg7NiJ30QwFxS0iZ07t2JmZo6LS14LhmrV \ n5BGJ4pBI9ACoUuUe + voNAdi8OYDff + + czwj + e2DbtkTi46XBeFaWPvv3qzNrlkTIzgkIFDNCMCcg \ nIPBNsGKFNxERz + jfvxd2drV58OABSUmJZGdnMWjQEOztm + ZpHxHxDBeXiUyYMA1NTU2ZOIiioiJ1 \ n6tRjwICCPZzeR1HsA / KKAuTfLicnR48ef7J48XySk5OJjo7EyKgihoZGREVFsnfvLlRUVElKSmTl \ nyr9RV9fA0NAIb + 9FzJ27gNat2xEQ4P / G2Ls6mZmZPH36hOnT57BgwTz8 / NbmEyooKtWqVaRatYof \ ntU8OYrEYDw83bt26QZkyZZk7dyEHD + 5j9 + 7tZGZmYWRkhIvLbDIzs + jXrydbtuwGIC0tjT / / 7EpQ \ n0C4kEgnLly / lyZPHDBs2iIkTp8rOZ2JiAqdPnyAgYCsgLT1VV9fA3r4JjRo1pmnTFp8074KoVMmA \ nbds6I5EID5ZfksTERBwcDnLtWj8gi8aN1xEY6IeS0tuSSTMzc5kwSG5yr7OqWbNWHmXEd9dgtWxZ \ ntGzel2THji14efnIrAly4 + zcksjI3Zw9q4aGRjpjx1aRrWUNCtpE27a / fJfBnKJi9nvfCwgIFA9C \ nMCcgIPBNMGTISMLCHrFuXQDZ2dlkZKSjpqZOfHw8gwf3zxPMPXkSzsyZU5k6dRYmJlUZNWqITBzk \ n5MnjuLpO / 6RgrijkLhOzs6tNVFQkIpFIZi9w7dpVjIwqsHLlOqKiIpk0aQy9e / fDzW0GqqqqVK1q \ nikgkx6JFy9i / fw93795h9Ojx3L9 / V + Z9VqdOPXx8lvLw4QMePnyAsXFVGjVqXKBQQVH53FLJ8PAw \ nZs50Z + LEqUyfPpmTJ4 / RrFkLfvvtDwBWrfJhz56ddOnSnWrVTAkOvoKdXW3OnTtNvXoNkZeX5 / Xr \ n1zg49ODIkUP07TuAhQs9ZOWT6uoaKCkpM3fubBo2bCwTvYCS894SArkvi7 / / 2TeBnBygxOnTf7J7 \ n93G6dGn2Uf2sX7 + aQ4f2o6OjK1N8ffDgHklJWmRlKZOdfQ8vL28g7w80ly5dkK3DMzQ0YsoU6Xey \ na9eOtGrVlu3bg8jMzKRcOX0GDhyCoaERy5YtJi0tDW1tHaZOnUGpUqULVZZ1c5uJuroGd + / + x8uX \ nLxk6dCTNmrVk / nx3IiMjGDt2BG3atOf06ZO8fp2BsrIykyfPoGLFSkyf / is + Pt5cunSe1avlePGi \ nExKJhNjYGEaOHIyOju5HCR59CwweXIWQkD08ftwCLa3bODkpCd85AYESQAjmBAQEvglyP7BLJBJW \ nrFjGjRvXkZMTERsbw6tXcQC8evWKyZPH4e6 + gEqVKpOamsqtW2 / FQaKiosjISKd / / 17UqVMPiQQu \ nXjyHSCTC0XEALVu2lmWI3v08N3fu3Gb + fHfmzPGkfPnCpdo / R5K8IO + z8PDHZGTI4 + 3ti4qKCsHB \ n99iy5REHD + 5hxIgGlCnzddT5RCKRLBNoZmZOVFQkDx8 + YNUqH1JSkklNTaNevQYAtGjRmmPHDmNn \ nV5sjRw7RpUs3UlNTEYvFrF3rS1xcHDExz8nMzJKdW3l5eVat8uPKlUucOHGUbds2yx5ei / IA + LHB \ n6v79e6hTpz6lS5f + lNMh8AnIyYmA3IF5NvLy7 / eACw29w4EDexk9ehxr1qwkOTmJ69eD8fPbRGZm \ nJk5OvdHXN + DQoaNERMwjObktVas24sqV29SuXZ1jxw7TqlVb4uPj8fdfi5fXcpSVVdi4cT3 / / vsP \ n / foNRCQSER / / ihYt2mBqasa9e6HUr9 + AceNGMm / eIrS1dTh69BC + vsuZPHn6e5Vl4 + Je4uOzlvDw \ nMCZNGkOzZi0ZP34Kly5dwNt7JQoKCvTo0Rt5eXkuX76Ir + / fzJnjya5d23n + PJr16wORk5MjMTER \ nLS0t / v03AG / vlWhplYxIT0lSp445e / aU5syZI1hYVMDSstnXnpKAwA + JEMwJCAh8cxw6tJ + EhHjW \ nrt2IvLw8Dg6 / kZEhVbXT0NCgXDkDbty4RqVKlZFIxGhovBUHiY6OYsKE0axbF8CJE0fZZKTsEgAA \ nIABJREFUuXMbfn6biI9 / xcCBjtja1uTmzRs8eHAv3 + c53Lx5gyVLFjBv3iLKli33xY570aJDeHsb \ nkZJiQs2ae5k6tRKjRmUSEeEASLhwYT07dvzyyXYCRS2VVFZWITIyguHDZ5CUlIyNjV2efuTk5MnO \ nzsDdfTbz5i3ExKQq + / fv4dq1qwA0atQEX9 / lJCYmcu9eKLVq1SE1NQUQsXTpCoYNG4Svrx / p6ek4 \ nOfXG2tqWtLQ00tPTaNCgEVZWNnTvLl3Tp6amRkpKyruH8tns27ebKlVMhGDuC9K3b2P27VvHpUuO \ nQCatWgXSoUP39 + 5jbm6BubnUa1EkEhEVFUnjxs1QVFREUVGRRo0aExf3iqwsBaSPNPIkJrbB13cf \ ntrZmnD9 / lmHDRhMcfEUmLARSNVgrK2vZOL / 88huuri68fp1BeHgYz59H8 + jRQ0aPHgpIvzulSpUh \ nLS2tUGVZkUhE48bSCoLKlasQFxeX73iSkpJwdZ1BRMTTPCqcV69eolOnrjKDcy0trY8 / wd8g5cqV \ npkuX5l97GgICPzRCMCcgIPBNoKamRmqqVFUwOTkZXV095OXlCQ6 + QnR0lKydoqIi7u7zGTNmOKqq \ nqrRu3Y7y5cvLxEHEYrFMzjwk5DqtW7dDJBKhq6uHra0dd + 78x82bNwr8XF1dnfDwR8yf787ixX9T \ nqtSXe9BPSIhn1SpNUlLqAXDtWl9cXecRETH5TQsR16 / / xrlz12jVqt4njfH06ZMil0p6eS2gV69e \ nNGzYgvXrVxfYX1paKnp6pcjKyuLgwX2ywFdNTQ1zc0u8vObLDJ / V1TWQkxNx + / ZNmjdvRZ8 + 3dHR \ n0cHMTCqPnpqawqRJY99cOwkjRowBoGXLNnh4uLFly7 + 4us57rwBKdnY2s2e7cO9eKJUrG + PiMouw \ nsLB8pXIhIdcJDb3D7NnTUFZWZvToCWze / A9ubvM5ffoEM2dO5eDBk2RnZ9OnTzc2b95ZaGndq1ev \ nWLhwLs + fRwMwcuRYrKxsWLNmJc + fRxMVFcnz59F069aTrl3ze3P9KERFRTJ27AjM / 8 / eWYdFlbZx \ n + B6GlBIUMQETkEZsbF111bWwXQEDYy1s7Mbe1V0DXUEUY0WxVtfuTsDCVhqR7piZ749ZRhAwcY3v \ n3Nfl5cw5b533zDDvc57n / T1mtQvM / + 3bwaxZsxKJRIKZWW22bRvL / v1 / c + 3aEeLiXjBo0N / Ur9 + A \ nESPGcPLkcTZt2oCSkhgtLS3 + + GN9oX2sr1694sGDvRw9eph + / QYAoKKijNzjJwMkKCkl8fDhafr2 \ nPY + urq5C4t / BoT6zZy8ocvwmJiZ4e29l9 + 6 / uHDhLKdPn6Rq1eqsW1dQgTUtLfWtyrIqKq / FkN4M \ nD5bJZPz55zocHOri6bmMqKhIRo8eVmx5AQEBgfdBMOYEBAS + CnR1S2NlZcOAAb0wM6tNaOgLnJ17 \ nY2pqjrHxa1l6kUiEuro6S5b8hrv7CEqV0iwgDpKRkfGvF0hetrgF0pvH80L5ypY1ICcnm4cPQ2jY \ n0PEzXW1h5OMunX9EiMXqQCZ5OdHU1aMwNCxdVPX3okKFSu8dKnnnTjAbNngRH59OkybN2bixcKLf \ nwYOH4ubmQunSpbGwsFQY4yAXoZg500MhTpGUlEiZMmX5 + + / 9xMW9QllZmQYNGuHiMlhRZ8MG30J9 \ nWFnZ4Oe3872uLzT0BR4eM7G0tMbTcy67d + / k3LnTeHquoHTpgqFyAQH + jBzpjqmpGbm5uTx69BCA \ noKBAqlWrwf37d8nNzcXCwgqg2NC6lSuX0bNnX6ytbYmOjmbChFH4 + fkDcuP599 + 9SEtLpW / f7nTt \ n2gOxWPxe1 / ItEhYWytSpsxTzv327H / v372HVqnVUrlyF + fNncfjwQX766UcOHVpXQOwGwNf3T1as \ nWE3ZsmUVx / Ijk8lIS0tFV7c0S5euxM3NGRUVFVq1 + gE1NSnKyuHo6m6ibNlUSpcuTc2apjx + / JCo \ nqEhq17ZkxYrFRESEU6lSZTIyMnj1KpYqVeSCQPHxcVSoUIkGDRpx8uQx7t + / S2JiInfu3MbS0orc \ n3FzCwkKpWrVagYdHH6osm5aWphBBOXTogOK4g0N99u0LwN7eAbFYrAizzPNMf4thlgICAv8NgjEn \ nICDw1fA + eZDy9qBpaWmxYcNmxfE8cZCkpEQGDfoZAGtrW / bt20P79h1JSkoiKOgWI0eORSKRsG9f \ nQKHjz549RUtLGw + PGYwd + wvq6hoFVPM + J4aG5Wne / DT / / GMDqGFgcJ7Jkx3w9vbl5MmGqKkl4 + IS \ nhpVVx4 / uI38KhXeFSuanfPnyqKu / TmDcp09 / xesuXQqmkli8eD69evWjefNWnD17FYBXr2IZNWoo \ n / fu70L17z7eOUSKRsHz5VqKjE3F2bo + NTU3Onz / L8 + dP6d / fhY0bvShVSrPAGPIoV84QS0t56Fzb \ ntj / i6 + vN06dPcHcvGCqXR55Br6ysTKVKlXnx4jkhIffo3bsfgYG3kEol2NjYvjW07vr1q7x48Uxx \ nPD09nYyMDEQiEY0aOaKsrIyubmn09PRJSIgvUs3we + HN + d + 06U8qVqxE5cpVAPke0YCAnXTv3rNI \ nsRsrKxsWLJhFy5ZtaNascGieSCSideu2iEQiRo8eSm5uLoaGhmhqaqKursK0aZmcP3 + WlJQ4UlIy \ nOXv2NOXLlyc8PIy6deszbdpsZs + eSnZ2DgBubiMUxtzz58 + YNWsa2dnZxMW9Ytq0OSgpKbFy5TJS \ nU1ORSHLp1asvVatWe6uybEG12 / x7PUWIRCL69h3AggWz8PXd + O / DInmZTp26EBYWirNzH5SVlfnp \ np65069aDn37qyvjxozAwKPfNCaAICAj8NwjGnICAwDfNzp0X2bUrBbFYypAhFWnZ0kbh4WvQoBE1 \ natTAxaUPIpGIESPGoKenT7NmLbh7N7jQ8efPnyESgZ6ePkuW / MqECaOZOnUW5uYWn / 06RCIRGzZ0 \ nZ + 3a / SQkQPv2xtSvb06zZtaEhoaioVEeQ0ObEu + 3uFBJKysbDh48SMOGLTh69PB7tzd58vRCx3R0 \ ndLG1Hcy5c2Kys8 / Tp0 / RHk + ZTMYvv + zi + HE91NTiOX48mXXr7uHo2BRHx6bA28VQ8p + TyWRoamoW \ nGSpXVHkbGzsuXTqPWKxMnTr1OHx4FlKpjF9 + GYNUKnlLaJ2M9et9C4TX5aGsnN94ViI39 / uWZn9z \ n / rW0tElOTipwDIoXu5kwwYN79 + 5w6dIFBg36mY0btxTZT58 + PzNwoBtz5kzn3r27VK9eg3LlyuHs \ nPIBHj + 7g5jaYunUbFKpnb + 9Q4AEQyI3vKVPmU7myIb6 + 2wvV + eOP9YWOVahQsUhlWQ + PmQXmIE / 5 \ nFsDffx8AlpZWRYohicViRo1yZ9Qod0D + 4EEmk9G9ey + 6d3 / 7vkIBAYH / bwRjTkBA4Jvl / Pk7TJtW \ nnqQkeRLm + / dPsG9fZCEP34gRYwrVHTFiTKHj + fNXGRqWZ8uW9wvvKylUVVUZM6ZdgWNKSkqYmJiU \ nSPtFGULFhUqOGTOBhQtnsW6dF46OzYqsm5GRwcyZU4iNjUUqleDsPJg9e / wZNWocpqZmtGnThB49 \ n + rBjxz4yM9N49uwku3encOGCB / Hxj4iNjUFNTZ3SpfWQSHJp2NCRmzcvYmgYjkwmJjv7Bl5e1iQm \ nPuHBg / uK9A / FERMTrQiLO3bsMBYWlhw4sLfIUDl5 + NrrUD4bGzvmzZvJjz92onTp0iQlJZGYmEC1 \ natUBig2tq1u3Af7 + O + jbV + 4NfvToITVr1vroe / Qt8 + b8m5mZs29fgCK08ciRQ9jZ1SlW7EaeW9GS \ n2rUtuXz5Ai9fvizQvkwm4 / z5M4SGvuDZsye8ePGcfv0GYGJSTVGmXr2GBATsws7OAWVlZUJDX1Cu \ nnCHq6oXztD19Gs6gQbe4e9cRff3HTJ36kAEDmhQq9y4OHbrB0qXRJCerU69ePKtWdSnSuC + O / AnF \ np0 + fy + TJezh + XBdV1RyGDtXA1bXZuxt5C5 + alkRAQODrRjDmBAQEvlkuXw4nKamH4n1kZFPOnz + A \ nsXHFj2rv2LFb7N37ElXVHMaOrYOxcYWSGuoX580UCm8Llcwrv2PHDmJjUwCKTOR85cpFypYtx9Kl \ nKwH53qe9e3cpzmdmZmJhYUliogGqquvR1d1JfPxw7t27jZ1dNcqUKYOpqTmuroM5fvwoXl6rSUmZ \ nQ05OJnp63iQkuFCuXCYi0buFIUQiEUZGxuzZs5NFi + ZiYlINJ6fe1KvXsMhQuR9 / 7MSyZZ6oq6uz \ nbp0PtWtbkJiYgI2NXNW0Ro2ainQYQLGhdWPHTmDFisU4O / dBIpFga2vPhAlT / h3TO4f9XfHm / Pfq \ n1Q8LCytmzJiMRCLB3NyCLl2cSExMxMOjsNjNmjUrCQ8PQyaT4eBQjxo1anLr1g3FPIpEIqpXr0l4 \ neBjZ2TlMnOhBx45dFLkeQR6uGBUVyaBB / ZHJZOjp6bNw4dIix / vrr4HcvdsXgPh4I1av3kX / / lKF \ nouT7kJGRwaxZibx4IRe3CQvLxMRkH5Mn / / jebeRPKO7jcxJf307IZPoAeHpeoGXLMIyNq7x3ewIC \ nAv9fiGRfiXxS3oJB4PvDwEBbuL / fMV / y / v7992WGD69FVpYxALq6V9m7VwULixof3NbFi / cYNAji \ n4uRKkZaWWzlwoBWampolOuavHX / / S5w7l4yeXg5Ll / 5Eerq02LJhYaGMGzeSli3b0KhRE2xsbBk1 \ naqhCWKRly0acPHmRJk38yM7 + i / R0R2Ji5mNqaomzszNBQbcYOvQXLC2t2bzZmz / / 9EJLqxzx8dmI \ nRNmoqNTBz288d + / eICTkHu7uk / D2Xo + GRqki98wJfBgl + d39Fr0 / Q4YcZd + + 7or3hoaHuHGjPqqq \ nqu / dRkREOA0aZJKV9Tq1Sb9 + u / j117bvVX / p0oUcOnQAIyNj2rfvyM6dRwgLkyKVahATM5fs7LIM \ nGTIPS0tTxWf + 5597snTpKmQyKRMmjMba2q5AuhE1NTViYl4wadIURCIR9erV5 / Lli9 / UvRF4O8K6 \ n6vvFwED7g + u8 / + MnAQEBga + Mjh0bMGbMVczMArCw8GfGjNiPMuQAjh8PVRhyAHfutOLWrfslNdRv \ ngh07LjBhggk7djixdm1Pevb0f2v5KlWM8PbeSvXqNdiwYQ0 + PhsKnBeL5cEfw4YZIhanIxa / xN7e \ nF1XV1z89efvKlJREaGhocOjQAVxdu1O3ri2HDs3CyOjb8o7GxSUwbNgefvrpGO7ue8nIyPiodiZO \ nHENaWiqpqans2fPa23nz5nUmTXIvkbFevXqVO3eCS6QteL / k7p + TR49CWb36Hw4cuPBe5du310ZH \ nJ + / 602jaNOqDDDmQh2PXrv16DlVVX + Dg8P55ICdOnErZsgb8 / rsXUVGRWFmZkpg4l1ev3ClffjI1 \ napylcuWCojn55zk8PIzu3XuyZctOtLS0OXPmJAAeHh6MGzeZTZuKTqEgICDw / SCEWQoICHzTTJjQ \ njgkTPr0dAwMlIB2QL8S0tZ9TuXK5T2 / 4G + L06TQyMvL2e4m5fNmYlJRktLWLTmD86tUrtLW1 + eGH \ n9mhqavH33 / sKnM / KygSgV68W + PrOw9FRyuzZ7XByWs39 + 3cBkEolpKXJE5Nv2LCOhIQEVFVFhIbe \ nJzU1DS0t7QJpJIoLJsmvcrlxoxc2NnY4ONT7xBn5cMaNO8k / / zgDIi5fzkUk2s6KFV0 + uJ280NWo \ nqEj27PGna1d5KGx8fByBgYUVRz + GK1euIJMpKxQoP4U3w3j / ay5fvsfw4clERPRERSWSa9f2M3fu \ nT2 + t061bQ7S1b3H2rD + GhiKGD + / + 1vJFoayszLp19Vm8eBupqeo0bSqmX7 + WH9yOTCbj9u0gFixY \ nio3NC / bvT + H580iWLDHkzp2nxdYrKt1Iaqr8IYCNjS0Abdt24PLlix88JgEBgW8DwTMnICAgAAwZ \ n0pKuXbehp3eCChX2MW5cNCYmRl96WP8pOjpZyBMvy9HTS6BUqeLDTJ8 + fYybmwuurn3ZtOlPnJ0H \ nFTifl85AWVmZFi1aExh4g0mTxlKvXgOioiK5f / 8e8 + bN5Pnz51SpYoyOjg7jxv3CwYP7iY + Px919 \ nBCdOHEMkEim8EfLXhceS31sxaNDQL2LIATx9qkue3Dwo8 / hx0fO3bdtmdu2SGz + rVi1nzBj5nsQb \ nN64xZ850evT4iaSkRNat + 52IiHBcXfuyZs1KQIRUKmX69Mn06 + fE3LkzFG1ev36VgQP74ezcG0 / P \ nueTkyCX4nZw6KVQlQ0LuMWrUUKKjo / jrr7 / YuXMbrq59CQoKLHKc / v476N + / B / PmzSjy / KFDB / j1 \ n1yWA3KDevt3vQ6arEHv37ubw4YMfXG / z5lAiItoAkJNTkYAAXbKyst5Zr00bO + bNa8fIkW0 / Ogdg \ n1aqVWLeuE35 + bXBz + 3BDLj8ymYxu3RqyadMP6OurY2lZDbFYjEz2OtxZvtdQTuF0I4UVU7 + S3TQC \ nAgKfCcEzJyAgIIDc4PDy6kVKSjIqKqpFqt9970yZ4sjDh94EBlpQpkw0c + YYvnWBW69eA + rVKygB \ nn5ckHFAsQG / evE5ERDj16jXk2bMnlCtnqEgYff / + XVauXE5qaiqGhhVYtWodISH32LFjK0uW / Mqq \ nVctRU1NnzBi5 + / XUqeMsXSqXhff13cjhwwfR09OnXDlDzMzMAViwYDaNGzehefNWODl1on37jly4 \ ncA6JJJd58xZhZGRCQkICc + ZMIy7uFZaW1ly7dgVvb79PTs5cqVIKDx4oZoBKlQonvwawsbFnxw4 / \ nnJx6ExJyn9zcXHJzcwkODsTW1p47d4IRiUQMHz6aZ8 + eKtIiHD9 + hKysLKRS + dxevnyR7dv9CAy8 \ nwaNHD1m1ah1RURF4es5nz55d9OzZp8jwx / LlK9C7d29kMjG9exe / / zC / OEdRFJ9X7ePo0uXDvWPy \ nvgu + V1KSffGwzw / F2tqOo0f / wcVlMDdvXqd0aT1KldKkQoWKXLhwDoAHD0KIiop8aztaWlpoa2sT \ nHByItbUtR4 / + 818MX0BA4AsheOYEBAQE8qGtrfNVG3Il4f0oDn19PQICnLhypSwXLjSmX7 / Gn9ji \ n68X048cPGTt2An5 + / kRGRnD7dhA5OTlMnTqJJ0 / qcOHCTEJCunL16pN / a8iYPHkPGzaks3JlFr / 8 \ nshOpVKpYoIeE3OfkyWNs2rSdZctWEhJy73Wvb3jySpfWw9vbjy5dnBRz5 + OzHgeHemzZspPmzVsR \ nExP9idcqZ / HiBrRqtQVz87106LAZT8 + iPTWmpmY8eHCf9PQ0VFVVsbS0IiTkPkFBtxSKmlC0V0Um \ nk9G3789s3bqL0qX1ePDgPk + fyo3kypWrcPDgAbp06UZQ0M13jvdtTpulSxcSGRnB + PGj2LHDDw + P \ n8Tg792HoUFeePHn81nYfPXqAm5sLzs59mDp1IikpKSQkxDNo0OsUDk2a1OXlyxgAevXqQlZWZoHP \ n98iRbqxd + ztDhjjTp083hfcwMzOTGTOm0L9 / T6ZOnYibmwutW0OVKv8AMtTUXtCzZ9oH73 / 7csg / \ nrwMHuvHgQQjOzn1Yv34N06fPBqBZs5akpCTz8889CQjYSZUqxq9rvmGw5r339PRkxYoluLr2LbKc \ ngIDA94PgmRMQEBD4hvjcizIlJSUMDQ1LvF1zcwuFd6dGjVpERUVSqpQmKSmqBAfLpfwfPmzIkiXb \ nmT + / PK9eJXL4cEt0dJKRyUqxa1d3Gjc + 9W9rMoKDb9G0aQvU1NQANRo3blps382ayQ2qWrXMFAIR \ nt28H4em5HID69RsWuy / wQzE2rsD27e / eI6esrEyFCpU4dOgAVlY2VK9eg5s3rxEREYGJSdW31lVV \ nVVPsczMxMSE09AWNGzfh4sXzpKSkcPfuHTp06MTDhyGAPCG1VCq32rKysott900mTpzK1auX + f13 \ nLzZu9MLU1BxPz + XcvHmd + fNn4uOzrZCxmffxnD9 / FuPGTcbGxo6NG73w8VnP6NHjyc7OIj09jeDg \ nW5iZ1SYw8BbW1jbo6emjpqZeIIxWJJKHlG7Y4MulSxfw8VnPb7 + tISDAH11dXfz8dvL06RNcXfsy \ nfrwJu3frcOzYLkxM9GnTpsN7X + eXJi + hOICn57JC59XU1Fix4o8i6xaXbsTCwqKA + MmIEaNLYqgC \ nAgJfIYJnTkBAQOArx9d3I336dGPEiMGEhr4AYNSooYSEyNU2ExMT6dFDLvYgkUhYvXolQ4YMwNm5 \ nD / v2BXyxcedHReW1l0QsVkIikSASgURS8GcoIUG + zy4zM4fc3PKAGJACusTF5eTbL / SmUVu8iylv \ nX1Fev4oaX3gvkY2NLdu3 + 2Fra4 + NjR179 + 6mVq2CCcdLlSqlSOSeR357XiaTGz29evXj5csYdu / e \ nQcuWrTl69DC2tvaAPKQyz3N55swJRV1NTU3S09PeOc48cY62beW50 + ztHUhKSiq2bp4KZ56HsV27 \ nDgQG3gLA0tKG4OAggoIC + flnV4KCbhIcHFjAG5mfZs1aAHJPZnR0FCA3xFu1 + gGAatWqU726XADE \ nxKQiQ4a0o02bL7Nf8mtAJpNx9ux1AgJOv9eeQQEBgW8fwZgTEBAQ + Ip5Vzjhm / z99z60tLTYsGEz \ nGzb4cuDA3nfusflSGBmZoKKSjIbGWQBEojgcHOSJug0N9TA3DyAnpxJqavcwMTmAlVWpf69FhK2t \ nHWfPyhes6elpXLhw / oP6trKy4eTJYwBcvXqZlJTkEr2298HGxo74 + DgsLa3 + 9UypFTJqdHVLY2Vl \ nw4ABvVizZhUgIisrizt3bgMQFvaCKlWMqFChIqam5mzatJGzZ08hFosVyeBdXd1YuXIZgwcPQCxW \ nVnxuWrRowdmzp3F17UtwcNECKPkpbPx + uJfY1taOoKBbxMRE06RJMx49evhWYy7vIcCb4h5f2hD / \ nGpHJZIwe7U / PntXp3t2WHj32kppa9J5NAQGB7wchzFJAQEDgK + ZDwgkBrl27zJMnjzl9Wu6BSUtL \ nIzw8jAoVKv4Hoy1IQXGMwueVlZVZufI3PDxmkJqag7q6MgsW + PLkySNUVVXw9bVh3bqr3LnzgFKl \ ngrl82U6xX6hWLTNatWqDi0sf9PT0qV3b4n1GpBiTq6sbs2dP48iRQ1hYWKOvX + atyp2fgzp16nLq \ n1CXF + + 3bX3tR / f33K17PmjVf8To6OgpjYxP27NnJokVzMTGphofHTAB69OjNrl1 / sW6dd4F + 5B7A \ nwh5aExMTfH23v9dYixbnKJhPTSaTIZOBpqYW2to6BAUFYmNjy + HDB7Gzq / PvWOzw8lqNnV0dRCIR \ nOjo6XLp0gWHDRuVr5 + 1jkRvix7G3d + DZs6c8ffr2 / XtfA6mpqRw7dliRYuJzcPVqMP7 + LZBK5Sq8 \ nly + 7sn79LsaN + / Gz9SkgIPDlEYw5AQEBga + aor0f8n1Qck9FdnbBcKpx4yZRt26Doqr9pxw9egaQ \ nh + XZ2zsojru7T1K8Nje3YO / egoaGnV0dxeJ / 0aIuQNF70AYMGMiAAQMLHZ86dZbidX6jyMzMnFWr \ n1gFyxb8VK35HLBZz504wDx7cQ1n56 / 9JLF + + Alu37ipwLCbmJbdvP + XKlct06vT2 / Xo5OTns2XMO \ niUTK0KHvs8h / Lc7h6TkXZ + c + aGhoKMQ5iksbMW3abJYt8yQyMgI9PT3WrNmoGD + gCAG1sbHj1atX \ naGlpve6xWIefiI0bvVBVVSUxMYH + / XtibGxM1arVCtT / GKRSKUpK8mClkSPdGDnSXaGOWhKkpCQX \ nyBf4OUhPz0Qqzf9AQkx2tiB8IiDwvSOSfWSswuLFizl9 + jQqKioYGRnh6emJtrY2AF5eXuzevRsl \ nJSWmT5 + Oo6PjO9uLjU35mGEIfAMYGGgL9 / c7Rri / n5eHD0NYsGAO69dvQiLJZeDAn + ncuRuhoc8x \ nNTWjSxcndu7chr / / Dvz997N / / x4uXbrAvHmLUFZWJjT0BeXKGX6UQuf3eG / T0tJYuvQUL1 + mEB29 \ nEx0dDVRUlBk / 3qNEF + / / FYcO3WDKlBxUVX9HRSWXuXMn0aZNnSLL5uTk0L + / P6dO9QfEtGixHV / f \ njp9VvdXbez0aGqUKiHN8anvq6ho4OfVCVVWViIhwxo79he3bdxdrjEdFRTJ + / CjMzGrz8GEIJibV \ nmDFjDv369aBVqx + 4du0K / foNQFtbB2 / v9Tx58hgLC0s8PZejoaHB2rW / c + HCOcRiMfXqNeCXX8aQ \ nkJDA8uWeChXU0aPHY2Vlw8aNXsTERBMVFUlMTDQ9e / bByak3s2Z5cP78WYyMjKlbt8FnESTJycmh \ nT59dnD3rCqhQs + Yutm + 3xsioQon3JfBl + R7 / NgvIMTDQ / uA6H / 0Y0tHRkYkTJ6KkpMSyZcvw8vJi \ nwoQJPH78mEOHDnHw4EFiYmJwdXXlyJEjiideAgICAv / PtGnThGPHzr13 + XPnzmBgYFAgnFAkkivX \ nzZjhwf79e2jY0JE8D16nTl2Iiopk0KD + yGQy9PT0Wbhw6We6mm8LmUzGwIEHOHVqICBGS6sRy5dH \ n0bXrl / difixr1sQQHd0LkCfMXrfuL9q0Kbrs7t1nOXXqZ0AeHnnqVH / 8 / PYyeHC7Eh3Tm / n / TE3N \ niYgIZ8WKJSQmJqCurs7kydPQ1y + Li0sfdu06AEBGRgb9 + jnh77 + f6OioQuWNjEzIzs4mKOgZ / v49 \ nUFMTExv7En19fWbO9MDDYyba2tqMHOlGzZqmBAbeQCKRMGTIcMLCQhk / fgrKyspcuHCOXr26IpFI \ n0NUtzdq1fzJ79jSuXr2Cg0M9qlathrFxVf76ayvduvXg3LnTiryIaWnyPWgrVy6jZ8 + + WFvbEh0d \ nzYQJo / Dz8wcgLCyUqVNnMWXKOHx8NtC1a49C + QJLkvyeRD + / rmzYsAdlZXU6drShSpXyJdZPVFQk \ nkye7s3nzXyXWpoCAwKfz0cZc48av8w / Z2Nhw5MgRAE6cOEGHDh1QUVGhcuXKGBntZbufAAAgAElE \ nQVQZERwcjK2t7aePVkBAQOCb58PCnkQiEXXq1GPZslWFzuXf7zRkyHBAvtjs3Lkbbm4jhNxSbxAX \ nF8e1axbIFTIhNdWSkycf0LXrlx3Xp5CZqVLgfVaWSjElITdXSt61y1FCIilZIZH8gj1yT3J / TE3N \ nWbJkIRMnelC5chXu3r3D8uWLWblyLTVr1uLmzevY2ztw8eI56tdvhFgsZsmSBUycOLVA + XnzFrNz \ n5yPCwxuRmLgUC4vWLF / + G / b2DgXSH4hEIrKyMvHx2UZQ0C0WLZpHuXKGXL9 + FQeHerRr14Ht27dw \ n9eplHB2bsmfPLjIzM9HQUCcsLJTQ0OckJiZQp05dNDW1UFVVw9NzLo0aNaFx4yYAXL9 + lRcvnimu \ nOz09nYyMDEQiEY0aOaKsrIxYLEZPT5 + EhPjPKtiSP9RVXV2dUaPaC54bAYH / I0pkg8Du3bvp0EGe \ n0 + Xly5fY2NgozpUvX56YmJiS6EZAQEDgu2Lbts2cOnWc7OwcmjZtzqBBQ4GiPRvvw9q1J / njD1VS \ nU8vQqNEpvL27oqGh8Tkv4ZtCS0sLXd2XvBb4k6Kt / W3Jtw8fPpC1a18LnLRrJyEkJJzs7Mqoqz + j \ nfXvYuXMbnTt3Q02tYPikk1MT / P03c + mSKyCiQYOt9OtXjBvvIylKsCc7O4s7d4KYMWOyolxOTi4A \ nLVu24eTJY9jbO3D8 + FG6d + 9Jeno6t28HFyq / adNFIiPtADFKShLS05WJjMzE3l6e / mDGjCmK8q1b \ ntwXke / IyMtJRUhJz9eplLlw4S1ZWFomJiYB8L1tQUCB2dnXQ1S3N7NkLGDiwP5MnT8fU1AyADRt8 \ nuX79KqdPnyAgYCcrV64FZKxf74uKSmHjWVlZfkwikRAX94qRI92oVKkKMpkMH58NXLx4jqysLCwt \ nrZk0aRoA / v472LcvALFYjIlJVebMWUhGRga / / rqEZ8 + eIpHkYmtbh9u3g0hLSyUyMgIDg3IkJydh \ nZGRCZmYmP / / ck7lzF1G + fAVcXEYRF5eARJLLkCHDcXRspgg3tbS05vbtIMzMatO + fUd8fNaTkJDI \ nrFnzMDe3YONGLyIjw4mIiCAxMZF + / QYU2ospkUhYt + 4PAgNvkJ2dQ7duPejcudunfXgEBAQ + irca \ nc66urrx69arQcXd3d1q2lCdhXbt2LSoqKnTq1KnYdoSnwwICAgIFuXr1MuHhYWzYsBmpVMqUKeMJ \ nCrqFmpp6Ic / G + + zlio2N5bfftElIkP9tPnHCjpUrdzNlSuHkyYcOHeDBg / u4u0 + id + + utG37I66u \ nQ0r8Gr821NXVGT9enWXLDhAfX4E6dQKZPLlkQww / N / kNOYAJE9phYnKB + / cvYW1dms6d29Cjx0 + 0 \ nbftjIWNOXV2dHTs6s3nzHqRSGePGdSMjo6Q9RoV / 72UyGVpa2kWGGDZu3JT169eQnJzMw4ch1KlT \ nl / T0NLS1C5dfterwR48qNvYl6uoaLF68gq1bfTExqcru3TupUkWu / GhsXJV9 + wKIiAgHICsrk7Cw \ nUMqWNSAzMwMTk6rcvRtMQkICAHXrNsDffwd9 + / 4MwKNHD6lZ83WOwJ07t / HixXMqVqzEb7 + txcvr \ nD + 7du42jYzNOnTrO5s1 / MW / eTC5cOEfjxk3YutWXXbsOoKysrAjl3LzZGweHekydOou7d + 8wZsxw \ n9u07zNatm9i + 3Y9Bg4YSHBzIgQN72bVrB23b / kjVqtWQSCT88ccfZGTISExMZNgwVxwdmwEQHh7G \ n / PlL8PCYyeDBAzhx4ihr13pz / vwZNm / 2USQtf / r0CV5em8jISMfVtR + NGhXUPsifAiU7O5sRIwZT \ nr16DL6KaKyDw / 85bjTkfH5 + 3Vg4ICODMmTP4 + voqjhkaGhIdHa14Hx0djaGh4TsH8jEb / gS + HYT7 \ n + 30j3N / 3RySSz9edOze5ceMqQ4bIF4MZGRkkJr4kLS2N9u3bUblyWQDatGmNpqbaO + c4NjaSpKRK \ n + Y6okJ1dCgMD7QJKfQDa2upoaKhiYKBNxYoV6NChbbHtl9S9bdmyJQEBcs / DgQMH6Nu3LwBXrlzB \ nx8eHdevWlUg / RREeHs7w4cM5cOAA7u7tcHNLIzExkQoV7L + 5 / dx2dnbcunWLK1eu8Mcff6Cnp8ej \ nR4 + wsLBg8OBlbN68mVevYnF3H4G + vj6 + vr78 / fffeHl5AdCsWTOmT5 + gaO8TRSAL0aKFI1OmTMHd \ nfRQ5OTlcuXKBXr16YWRUhRs3LtCuXTtkMhkPHjzAzMwM0MbGxpp1636jdetWlCunA + gUWX7ChLbs \ n3z + OsLAGSKXKaGpKqV1bHwMDbXbsOE7jxg0xMNBGRUXMxYunadu2BdevX0dHRwcdHR3EYjHDhrnS \ noEEDhgxxZefObZQpo4WjY0MCA6 + yZMlipk + fyKNHj1i8eB4eHh5UqVKO8eMnkJqaSmRkJPPmzcPA \ nQJt582Yzd + 5cBg3qh0QioW7dujRqNBtNTTU0NdVJTVVDR0cHLS1NypTRpH / / Pty + HcjkyWOJi4tj \ n4MC + JCUlYWVVGwMDbczNzfD0nEXr1q1p3bo1pUqV4ubNq1y5cgF / / 23Ex8eTnZ3F8OGuREdHI5VK \ n8fffRk5ODiKRiNDQZwwY0A83twHk5OQglUoRi8WIxWIiIsJZt + 43rly5QpkyZfDwGEfXrl2Jjo4k \ nOTmRlJRYHBxs8PX9EwMDbbS01Gnb9gcqVSoDlKFRo4aEhz / BzMwMZWUxBgbaBAff4MGDB5w / fxrI \ nSxQfh4GBacl + oASKRfjdFcjjo8Msz549y8aNG9myZcu / 4RRyWrZsyfjx43FxcSEmJoYXL15gbW39 \ nzvaE2O7vFyF2 / / tGuL8fhkwm / 3uXnp5N377OXL58kZcvYxCJlEhKSiczM4sHDx7TqVNnpFIpKSlJ \ nODn14cWLGBYunMPFi + eoUsWYgQPdiIgI5 + 7d29y5E0xychI1ayqTlNSC6OhfqVHDmsDAslhbz6Bc \ nOQPq12 / ElSuX0NTUJDk5mZSUFEJDI3j69Bnbt / szZowRI0e6YWFhxc2b10lNTWHRIk + MjU3JzMxk \ nwYLZPHv2FCMjY169imXcuMkfpP4olcqIi0slLS2NLVv8aNNGHs2RmJhOVlbuZ / 0MxcenkZsrKdCH \ nqqoOcXFpn63P9 + FjJPDzPj + Jiencu3cPPz9 / ypQpy / Dhgzh58jzt23fF29uH335bi46OLvfvP2XJ \ nkqV4e / uhpaXNuHEjCQg4QJMmzT / Ld9fAoArNmrWiQ4eO6OnpU6uWOWlpWUydOodlyxbxpppryc3N \ npXXrHyhTRv7wwdGxBTNnevD7716K8RRV3sVlME5O1Xnw4A729gdxcFjG4sVLC6Q / iI1NISdHglQq \ nol279kREhDN3rie / / / 4r9eo1RCqVcOdOMF26dKVmTVNycsS0bt2RI0fGMGzYMOrVa4Cqqjrjxk1W \ nhFmuWeNNVFQkEyeO4fz5y6xb54WBQTk8PZfz6lUsK1Ys4cqVa9jY2ODt7YeRkQmrVi1HJpPh7b2N \ nkJD7zJw5lZSUVCSSXCpVqoy39za8vdcTH59MbGwKCxYsJzDwJhcunGP16jX4 + u4gN1fKnDmLqFLF \ niN27 / + LVq1cMHfoL7u6 / cP36VdzdJ1O + fEW6dm3Py5cvmTRpMr / / 7kVwcCC + vn / SrVtPevXqR7Nm \ n9RGJVFm4cDmTJ7uTkZGBikopGjduilgsZs0aLwYMGEhWVjaxsSmkpWUhk8kU9yIzM4eUlKwC36Os \ nrBzGjJlQKAWK8Fvw3yD87n6 / / KdqlvPnzycnJ4eBA + U5fmxtbZk9ezY1atSgffv2dOjQAbFYzKxZ \ ns4QwSwEBAYE3qF + / ARs2rGP + / CWUK1eO8PAwJk92x919ImvWrGTz5r8oW7YsLi79EIlg06Y / 0dTU \ nonLlKvj6biclJYVHjx5w / fpV1NTUOHz4NO7uI8nOVkdHZxdXr2bRtKkjY8dO5MWL5wwY0IudO / dz \ n / PhhduzYStu27enUqSsuLn0K5AmTSqVs2ODLpUsXWL16NUuWrCIgwB9dXV38 / Hby9OkTXF37vvXv \ nuofHBF6 + jCE7O4sePfrw009yhRGZTMa6db8TERGOq2tf6tatT8OGjmRkpDN9 + mSePXuCqak5M2fO \ nA + QiE2vWrEQikWBmVpsJEzxQUVHByakT3t5 + 6OjoEhJyj9WrV / L7714kJCQwZ8404uJeYWlpzbVr \ nV / D29gPkecQWL17AnTtBioV4 / geRxfGmV7MkyS9c8TGYm1tQtqwBADVq1CIqKgorK5sCZe7fv4u9 \ nvQO6uqUBaNOmHYGBt2jSpPlH9 / suisv / t3x5YREfgObNW3H27NUCxypUqFhk + WHDRhZ47 + Xlo0h / \ nkD / XXNu2HejRow + TJ7tTvXrNf0NsJ7 / ZHABqamq4uAxmx46tLFhQvPJrWFgos2cvZPLkacyc6cGZ \ nMyc5ePAAEyd6IBaLGTNmuELYRSaDlJQUxo3bwPPnf1OjRlXs7R348891iMVi0tPTOXXqOC1btkEm \ nkxETE429vQPW1racOHGUjIwM6tVrwK5dO3B3n0SdOvUYN24UPXv2pXZtC27fDqJsWQNmz54KyENo \ nZTIZlStX4dKlC5ibmxMcHEjNmqZIJBKFcEsezZq15MGD + 1SsWIkbN64VOCeTyTh / / gw / / + xKRkY6 \ nt27dYPjwUWRnZyvK1KvXkICAXdjZOXxyChQBAYFP46ONuaNHjxZ7btiwYQwbNuxjmxYQEBD4bslb \ nvNet24Dnz58zaFA / 0tLSUFJSQklJzJ07tzExqcbkye7o6eljaWkFwI0b1xg5ciz3798BQFtbm5iY \ nGCpUqEiZMmWZN28mxsbGqKqq4O7eFkfHady4cQ1X176kpqaioqJKZmYGd + 7cViwgq1evgb5 + mQLj \ na9asBQCmpmZEREQAcPt2ED179gGgWrXqVK9e863X6OExEx0dHbKyMhkyxJnmzVsqrv1NifabN6 / z \ n6NGDAh6m27eDqFXLjIUL57Bq1ToqV67C / Pmz2LNnFz179inWAPLxWY + DQz3693fhypVL / P33PsW5 \ nohbiP / zQvkjDs02bJnTu3J3r168ybtwk7t27w6FDcvn8jh270LNnn0Iy7du2bSEzM4OBA90KeTin \ nTJmJjY0tWVmZLFw4hydPHmNkZEJWVtYnqRyqqKgqXovFSkgkuYXKiESiN / r4fKqKJUVReeGmT59D \ n / / 49ijTiAR4 / fsiwYQNJTExESang56NChYqMGTOBSZPcWbLkV27duvGv5wzi4lKwsBiMiUlasQ8V \ nQkLus3z5IpSUxKxZs4pp02ZhampGcHAQN29eY8CA3mhqliItLQ1VVfkDgkuXnpCbq8fx46Foa0ej \ npVWWrl2dCA19waFDBxg / fhS1a1sCcjGRefNmkpaWikwmo0eP3mhpaeHiMphVq5bj7NwbqVSKnp4e \ n48b9QkZGJllZWQwePABlZWWMjEzQ19fnwYP73Lx5nR9 + aMfBg3uJiopCU1MLZWVlxf7JvO + Oqqpc \ npEVJSQmJRFLgnEgkonr1mowePYzExERcXQdTpkxZoqIiFWWEFCgCAl8PJaJmKSAgICDwfhw9ekbx \ nunr1GlSpYsyvv65GTU2NUaOGUrOmKaGhLxQLyTyOHZPn65RKXy / Gc3NzABnLlq3k1q0bbNniw4MH \ n9xk9ehwikRILFy6jShUjzp07zZkzpzA2Nvm3ZvEL + jwDQUlJTG7ua + PgQ4wOf / / tnDsnv86XL18S \ nFhb21nYKe5giUVfXoGLFSlSuXAWA9u07EhCwU2FUFsXt20F4ei4HoH79hmhr6yjOVahQiRo15Eao \ nqakZUVGRQNGGZ2ZmJhYWlowcOZaQkPv888 / fbNjgi1Qqw83NGTs7e7S0CobC5Peyvenh9PFZz2 + / \ nrWHPnl1oaJTCz8 + fJ08eM3Bgv88SuVKqlNyw0NHRxczMgt9 + W0ZSUiJaWtocP34UJ6feJd5nSZOX \ nq83S0hpPz7kEBPgXO1cymYwnTx6zfv1rwY6yZcsW8CTlZ8cOP8aPn4KX10P + + acTV67ooa + / i4oV \ n77FzZ4DioUJwcCC1a1vy229LmTjRg / nzZ9GhQyfWr1 + DiUk1Tp06jo6ODgcPnmDNmpVcvnxRYdy / \ neKFDfPxQkpOd0NAIIienF2pq6nTr1pM7d4JZu3ZjgTGtWfNnoXGqqakxceLUQsejoiLp2bMzixat \ nwNLSikWL5lGxYiUiIyMwNCyPrm5prKys6NixC05Ovbl16waGhuXQ0dHF13cHPXr8BMDUqbMICbnH \ n5csXqVChIr6 + OxR9VK9ek + nT5xToN38ZqVSKm9sIhg79pbhbKCAg8B / xbe38FhAQEPiOyFPtU1NT \ n4 / nzZ9y + HcyxY1e5deuGwthITk4CoG7d + pw6dYLExHiSk5OIj4 / jxYtnREdH8fjxQ2xs7JBKpchk \ ncjEVsViJXbvkCy9zc0uuXbtCcnISVlbWnDp1ApFIxNOnj4mPj3vnOK2sbDh58jgAz5495enTx8WW \ nvXnzOjduXMPLy4dNm7ZRs2YtsrPfLv9f2MMkKbRwl8lkimNisVhh1GZlZRcqVxR5ngiQG6p53gh / \ n / + 24uPRl6NCBCsNTSUmJ5s1bARAcHPiv1L46GhoaNGvWkqCgW0UaFvn7zu / hjI6OAiAoKJAffmgP \ nyA35d3k4iyJ / v8XZgT / 91JXx40cxZsxwypYty7BhIxk9ehiurn0xM6uNo2PTD + 73v6ZcOUMsLeX7 \ n7du2 / ZHbtwOLLSsSiWjSpBmqqqro6pbG3t6Be / fuFFveysqGlSuXc + nSfcRiCSAmI8MEZeVKlC1r \ ngEgkokaNWkRHRxEa + pxnz54wd + 4MwsPD2LzZm9jYWLKzs8jNzcXIyIRTp47Ttm0HZDIZjx8 / AkBZ \ nWYJIJEMq1f733xMAjh7955Pm5dGjF + zZc5by5SuyZ89O + vfvQWpqKr169WPq1FnMmDEZZ + feiMVi \ nunRxypuhN2eswOuiPsvFfbYyMjJwdd2Jnd05mjc / xOHDtz7pegQEBD4dwTMnICAg8IWoX78Re / fu \ npl + / HiQkKJOcbIWPTzuqVoVJk9wRi8Xo6 + uzYsUfODsPYsWKxYjFynTu3I5KlapQu7YFhoYVGD58 \ nEFKplFKlStG / vzNaWlqoqqqSm5ubL0RLn6FDXdHU1EJDQ4MjR / 4hNvalwiNWFHmLvG7dejB / / iz6 \ n9 + + JsbExVatWK7A / KT9vGqh37xZcVJcqVYr09PR3zo2RkTFRUZFERIRTqVJljhw5hK2tPQDly1cg \ nJOQeM2ZMLpD / Sm50HqNfP2euXr1MSkryW / vIb3jmeUazs7NQVVUr4GXLT55Rmd + gBLmUff6y + T2c \ neYZjSZDn2bW3d8De3kFx3N19kuJ19 + 696N69l + J969ZtFXnXvhXyz6V8zpXeasQXrl / 8s + r + / V1o \ n1MiRfv18qFKlD + Hhcq + YsvLrOnkPFQCqVq3OrFnzmTJlnMIztWmT3LM2c + Y8li1bRGRkBNHRkZw / \ nf4YaNWpSt646p08 / ISHhJWJxW2Syvbi6nqNu3QYf7Y3dv / 8qHh6qxMa6UqaMBb17pzJjxmsPfp06 \ ndfH23goUFMjw938dbpybm4uXl7fCa21mZs6qVQWVZAcOdCt2DIsWneDgQWdAmehomDPHn9atc1FW \ nFpaTAgJfCuHbJyAgIPCFUFFRYdmyVdy / / 5BWrTTIza0NwL179WnV6i9mzHidI05DQ4Np02a / d9tH \ nj5794PHk7T8CKF26NCdOnCA2NgWRSMT06XNQV1cnIiKcsWN / wdCwfJFt5Bmo / fv3oEoVY8Wevzxv \ ngDwEzIYBA3rRoEFjGjZsXKQXQFVVVeFpkEgkmJtbKDwNrq5uLFo0l8zMLMRiZcXi2NXVjdmzp3Hk \ nyCEsLKzR1y9DqVKapKWlFWmUvcvwBLCxsWXBgjn07 + + MVCrj3LnTzJgxDz09fYWXVF1dg4sXz9Ow \ nYeO3zq + trR3Hjh3G3t6Bp08f8 + TJo7eW / 1SysrLw8TlFVhb07l0XQ8My7670lRATE82dO7extLTi \ n2LHDWFvbkJ6eRkjIPRo0aMSZMycUZd9HsCM / ERHhVKtWg19 + ac + qVS9RVb2CkdFzqlbVKVTWyMiE \ nxMQE4uLi / lWYzCUsLBQXl0GcOnWc2NiXLF + + ijVrVnH58gVcXAYDsGLFPCIjo3jwIBh7 + 5 / Q1R2g \ naHPEiNEfNScbN8YRG9sTgLi4Rnh776R79 / evf / jwLebMiSE21pDatU + wYUNLDA3LftAYXr1SJf / S \ n8eXL8iQlJVGmzLfz2RIQ + N4QjDkBAQGBL0xurgSpNP + fYxFSacnupfL3v8SmTUlIJCK6d1dlyJAW \ n76wjkUgYPXoXp07poK29mrJlZejpaTJhwpRin8TnGaiF + 3 / tHZg1a36Bc3Z2dRSv83uYHjy4z48 / \ ndsLJqTerVi1n / PhRrFy5ltzcHMzMavPq1StUVFRITk5m6FBX5s1bxIoVv5OcnMzMmVNITU1l + PCB \ njB49Hl / fHWzc6EVkZDiRkZGUL1 + Bn37qxpIlC2nZshGqqmqYmFQFCnqFatUy48cfOzJkiDMAnTp1 \ nVSSHdnEZTIcOrbGxsVPULRp5e126OLFwoVzIw9jYBDOz2m + p82nk5OTQv38AZ864ACoEBGxn586G \ nH7x4 / 1IYGRmzZ89OFi2ai4lJNbp27YG5uSWLFs3lzz + 1sLOr80GCHfJy8v / 9 / bdz8 + Z1RCIlWreu \ nRLdulcjN1WfPnieFxqGsrMy8eYtZuXIZqany1AK9evWlatVqTJ06C0 / PuYhEFOlxe / z4FTduJJCV \ n9Yh27ep + 8pxIJOIC73NzxcWULIxMJsPTM4InT + R7Ti9fbsKCBVtZtarzB42hbl019u4NJyenMiDD \ nwuIR + vo276wnICDw + RDJPkVKqwQR8mV8vwj5UL5vhPv76UilUgYP / ou / / + 4HlKJWLX / 8 / GwwMalY \ nIu3fu / eEbt0yiI9vCICm5gO8vV / SooXtW + v5 + Z1j3LgmgFzso3Tps5w + bUjFiiUzrndx9 + 4dduzw \ nY968RYwYMZjc3FzWrPmTLVt80Ncvw7Jlnixe / CuNGjmyZs0qcnNzCQy8QWRkJGXKlGHSpOn8 + WcQ \ nt2 / vwMFhKDVrRnDt2hXWrPkTVVVVZs + eRrduPbC2tiU6OpoJE0bh5 + f / QWNs06Ypx459uBf0c3P0 \ n6CX697cH8ow3GRMn + jNxYntFma / 1u / umUui3yNat55g1y4jkZEvU1Z8yfvwtxoz54ZPa9PE5w9y5 \ nNUhLM6NUqYdMmXKPYcNaFVn2zXsrkUiwsztHdHQnxbH27Xfj6 / vhY / LyOsHFixJ0dTOZNq3RN / OA \ n4Hvia / 3uCnw6 / 2meOQEBAQGBkkFJSYkNG3qybdsxkpNz6NbNgQoVit / L9qFcu / aI + PjX8VhpaaYE \ nBd2mxTuccxERueQZcgCJiTV4 / vzRf2bMmZqa8eDBfdLT01BVVcXMzJyQkPsEBd1i7NiJqKio0KiR \ n479lzbl + / Qre3lvp2LENqqqqTJgwjYQEPcRiMVu2dKZJk3F07NgUVVX5frbr16 / y4sUzRX / p6elk \ nZmYWyJW1bdtmVFVVFd7BJ08es3LlWm7cuKZIfbB + / RouXjyPmpoaixYtR09Pn4SEBJYv9yQmJhoA \ nS8sfiI8vS2rqecqUUSEqKpKYmGh69uzzWdQl1dSUEYkyef24Voqy8lfx7Pa9 + Jrz0z56FMbs2bd4 \ n9UqT2rWTWLy4o + Izlcfu3RkkJ8tTD2RmVmPfvkDGjPm0fl1dm2FsHMitW7extS1Hq1ZFG3JFIRaL \ nsbd / yaFDuYAyKirhNG78cUvAoUNbMXToR1UVEBD4DAjGnICAgMBXgFgs5uef339x9iE0aGBK2bKX \ nePVKvqdLS + s + dnZF73nLT5s2lfnzz0CSkuQePHPzc1hb / 3dKiMrKylSoUIlDhw5gZWVD9eo1uHnz \ nGhEREZiYVEUsfv0TpqQkyic0ImP9el86dDhDaGhXRZm4ODVFvq385VRUVCgOGxt7duzww8mpNyEh \ n98nNzSU3N5fg4EBsbe05fvwIlpbWuLmNYM2aVezfvwdn50GsXLmMnj37Ym1ty / z5f7F16188f36M \ ncuUeUr36GXbv / ou0tFT69u1O1649EIvfP2TufWja1IHOnf9i797OgBb16m1nyJAfS7SPz8WbMvlf \ nG + PHX + fyZfkeuFu3stDW3s3cuZ0KlJGrZL5GWblkRHBatrSlZcuPq7t2bScWLfInNlaVevXUcHH5 \ nyIYEBAS + KgRjTkBAQOA7x9S0KgsWXMbHxx + JRISTkzrNmjV7Z722be1ZuvQ4Bw / uRlU1m7FjrYtV \ nsfxc2NjYsn27H1OnzqJateqsWrUCc / O37zWrW7cB / v47KF9e7lVUVQ0hO9sMLa3sIsv17fszAI8e \ nPaBmTdMCZT7GOwgFvX5PnqQgEskQidLJzdUlJcUMZWVldHVL / + vFi3 + rqujHIBKJWLeuJ926XSY1 \ nNYsOHTqhoaFRon38PyKVSnnxIr9QihrPnqkVKjd4sCEhIaeJiWmMnt4NXFw + PHSqpNHQ0GDOnI5f \ nehgCAgIljGDMCQgICPwf0LVrA7p2fXe5N + nSpT5dury73OfCxsaOLVt8sLS0Qk1NHTU1NWxs7IA3 \ nc669fj127ARWrFhMbu4jatdeR1ZWDapUaUXDhpULKGfmlXN27oNEIsHW1p4JE6YU6P9TvYMqKip0 \ n6XKIixd75WuTfHWUyM0tudQF + VFSUqJdu0afpe3 / V5SUlDA2TiYqKu9IFlWrFs6j2LatPaam4Vy4 \ ncAB7 + 2qYm79d6VRAQEDgYxGMOQEBAQGBr5Y6depy6tQlxfvt2wMUr / NyrgE0b95KkehbV7c0c + Z4 \ nvrPt9y33Kd7Bvn1 / ZtSoSoSFrScsrBM6Og9xdCwsgS / w7bB8uQOzZ28lNrYUlpYpTJ / eochyJiaV \ nMTGp / B + PTkBA4P8NwZgTEBAQEPi / 4 + nTcDZtCkYkkuHm5kClSobFlv0U7 / xS3VsAACAASURBVGCe \ n169bt9o0b16LwMByQk6ub5yaNauwdWuVLz0MAQEBAUBITSDwHyBI6H7fCPf3 + + VrubcfKlX / 4sVz \ nZs2aipKSEvPmLaJSpYLekcjIl / ToEcijR90BGbVrbycgwBF9fb3PMPqvl6 / l / gqUPMK9 / b4R7u / 3 \ ny8ekJlD6DOMQEBAQEBD4Ypw9e5oWLVrh7e1XyJAD2LPnxr + GHICIe / d6sn / / 1c8 + rri4eHbtOsWt \ nW / ffu87IkW6EhLx / + fdh4sQxpKWlkpKSwp49uxTHb968zqRJ7iXal4CAgIDA50UIsxQQEBAQ + OqR \ nSCTMnTuDhw9DMDGpxowZc3j27Bl / / PErGRkZ6OqWZtq0WTx8GMKuXdtRUhJz8 + Z1Vq5cy44dfhw6 \ ndACAjh27ULp0OZSVQ6hceQwZGbaoqwehojKAbds2c + rUcbKzc2jatDmDBpVcMq17954xePATHj9u \ nj4bGY8aMOcq4ce9O2CwSiT4o55pUKkVJ6e3PaZcuXQlAUlISe / b407Wr03u3 / zYkEkmJp1h4kzZt \ nmnDs2LnP2oeAgIDAt4RgzAkICAgIfPWEhr7Aw2MmlpbWeHrOZffunZw7dxpPzxWULl2aEyeOsn79 \ nGjw8ZtK5c3dKlSpF7979CQm5zz / / / M2GDb5IpTLc3JyZPn0ubdse5OHDUGJj3WjZ0pQaNcpy5kww \ nGzZsRiqVMmXKeIKCbin2xn0seSGiOjoDePy4N3p6GxGJMti58yCqqvcICrpFamoKU6bMxMbGlqys \ nTBYunMOTJ48xMjIhK + u1UuLVq5fx9l5PdnY2lSpVZurUWWhoaODk1IlWrX7g2rUr9OvnTKtWbRR1 \ njhw5xK5df5Gbm0Pt2paMGzeZXr26sHHjFlavXkFERDiurn2pW7c + DRs6kpGRzvTpk3n27AmmpubM \ nnDkPgJCQ + 4UM5zJlyjJypBu1apkSHBxEmzZt6dWr3yfN17v5epOJCwgICHwJBGNOQEBAQOCz4 + TU \ nCW9vP3R0dD + qfrlyhlhaWgPQtu2P + Pp68 / TpE9zdRwByj1SZMvJcbTKZjLzd4MHBgTRt2kKRLLxZ \ ns5bcvh3IwoUdGT58L1u21KBq1aqsXr2Sa9eu4OraF4CMjEzCw8Pe25g7f / 4sz58 / pX9 / lyLPSyR5 \ nP7eif8eohESSy4YNvsyfPwsfn / X89tsa9uzZhYZGKf7H3n0GNHW1ARz / BwhhJYg4UARFRBxMte5t \ naaWOalUcxYWr1FG34sCtddVVd0VxK65XrVqte9Sq4N4DZYsDgQgEEvJ + SEmhYB1FcZzfp + Tm3nvO \ nvWHkyTnnedauDeHu3Tv4 + emCo2fPnrF6dRDz5i1CJjNh7dpVbNq0jm7deiKRSLC0LERQ0Nocbd6 / \ nH86hQwdYsiQIQ0NDZs + ezv79e / WjfUOHDuXGjZusXLke0E2zvH37JmvXhmBtXQR / / x5cunSBSpVc \ nmDt3JtOn / 4SlZc7AWSKRoFar + eWX1a90nwACAoYSH / + Q9HQV7dp1pGXL1nh51aNdu46cOnUCmUzG \ njz / OxsqqMDEx0UyYMIa0tFTq1Hl3BesFQRA + FCKYEwRB + Mj988Nz8 + ZfM23aRG7evI5EIqFZs5b4 \ n + HRCqVRy4MA + WrduS1jYObZv38SkSTNfuZ29e3fz2Wc1KVKkSK7XXmeqYF6yH6 / VajE3N8fBwZEl \ nS4L + dd9 / tqvVavXBjEIhp2zZsvrXfH278fXX37xR / + rWrU / dui8ONtq3L8Hx4yfIyACJJJXChdNp \ n0kQ3zfLo0UNYW + vu2cWLF2jXrgMAjo7lcHR0AuDq1cvcv3 + P777zAyAjQ42rq5v + / NlH47KEhp7h \ n5s0b9OypK4qenp6OldXfSV7yyn9WsWJlfQHzcuXKExcXi4WFBeHhdxk4MHfgrGv75dNFswsICESh \ nUKBSpdGrV1caNmxMWloaLi5u9O79PYsWzWfnzu107dqDefNm8c037fjyy6 / Yti3ktdoRBEH4FIhg \ nThAE4SP3zw / Pzs4Vefz4kT47pFKpBCA5Oek / raHas2cXDg6OzJ79Y66RlyxeXvXo0aNPjjVsPj4d \ nCQ5ewbZtIdSuXY / Dh3 / HxsaGpUtXIZPJuHPnNnFxsXTs + A116zZg9 + 4d + Pp2Y9euHVy5chkXF1fU \ najWRkRE4OJTN0Sd3dw + mTJmAr29XMjO1HD9 + hLFjJ + UIZAIChhIefpdHj + JRqzNo06Y9GzasYceO \ nrSgUlpQr54SxsTGDBg3nxIljrF4dhFqdgUJhybhxk7GyKsyePbu4efM6gwYNZ8qU8ZibW3Dz5jXi \ n4 + PJzMykYUM3Fi48w + TJSwENGRkZhIff4 / jxo6hUKuLiYpk0aWye9zWrr9Wq1WD8 + Cl57mNqaprn \ ndm / v5vTp0zfHtr17d7 / wPZRKjfWPDQ0N9EXQXxQ4A5iY5N32i4SEbOD4cV2NwPj4eCIjI5FKpdSu \ nXRcAZ + eKnDv3JwBXrlxi6tRZAHz5pTeLFy94rbYEQRA + diKYEwRB + Mj988NzRkYGMTHRzJ07k1q1 \ n6lK9ek0AlixZoF9DZWRkhFxukef6qVWrfuHkyWOoVCpcXNwYPnw0hw / / zo0b15k4cQxSqZRly4IB \ nrX7kJUtmpjbXGjZPzyp88YU3QUHLaNPGB41GTWTkA44ePcQXX3izaNE8bGxKUKlSZfbs2Ulmppa2 \ nbTtQvXot5s2bhVKpRKNR0759J30wlzUgV758Bb76qjm9enUFoEWL1jg5lSc2NkY / apcV7G7YsIaF \ nC + exbVsIMTHRLFu2CgcHR374wR8np / KArubcsmWrANi1awfr1q2mX7 + BuUYAnz59wuLFQdy9e5vu \ n3b8lKSmRyMhryOUymjf / mrCwc9jZlaZFi1Zs27aZQoWsGDt2Eps2rePAgX1UqVKNe / fucPfubSQS \ nCZUru / LTT9OJjo7C1rYUqampPH78CDs7 + xe + 71WrVmfkyCH4 + HTCysqKpKREUlJS9K + bm5vneP4i \ n9vZlePYs4aWB86sICztHaOhZli5diUwmo3 / / PqSnqzA0 / PvjiIGBRB9ECoIgCP9OBHOCIAgfsbw + \ nPKvVGQQHb + TPP0 + xY8dWDh06QEBAIP7 + AwgPv8fKles5fz6UUaOGsmbN5hzrp9zcPPjmGx + 6desJ \ nwKRJgZw8eZxGjT5n27YQypVzIiLiAX36dOfx43iSk5OJjIxEpVIxffoUMjM1mJtb0KePHzKZjOrV \ na3Hx4nmio6OwsJBTrpxuWmHJkrbExsYQFhZKXFwcZcs6kpDwjIkTf2TevFnIZDKcnMrz88 / Lcl2z \ nn1 / vHM / bt / 82V2KOEiVKEhy8EcgKdo8AEoyNjfH2bk5ExAOcnJwBaNSoCZGREQDExz8kMHAkT58 + \ nISMjg5IlbYGcUxYlEgn16jUAwNHRCSMjI3r16oqpqRlKpZLz50NJS0v7x2iaLhhs1aotU6dOwNe3 \ nHaVLl6FChUoAFCpUiNGjxzN + / CjS0zMA6N37 + 38N5sqUcaBXL38GD + 5LZqYWqVTKoEHD9W1ZWVnh \ n6upOly7tqVmzDrVq1SGv2bBGRkZMmjT9hYHz60hJeY5cLkcmk3H / fjhXr1751 / 1dXd05eHA / X3zh \ nzf79 + 167PUEQhI + dCOYEQRA + Ytk / PD94cJ + rV6 / w7FkCGo2aBg0aY2dnz6RJgUDOgESr1eLm5pZr \ n / ZSbmwdhYWdZv34NKlUaSUlJlC3rSJ069QAwNpZx48Z1tm37lUGD + nLnzm1SU1NIT0 / H1dWNo0cP \ nUaxYccaPn8KiRfO5fv0qJUuWRCKR5Ehrb2BgQEZGBosXz8fKyooVK9Zw8OB + tmzZmK / 358cfV7Jr \ n137S0nrx + eepyOX7KF26DA8e3M92L / 7ef86cGXTs2Jk6depx / nwoQUG5g0kAqVSqf2xoaMSmTTsA \ nePLkMadOnWDbts1 / jXhWACSEhPwPAJlMxoQJU / M8Z5Uq1Vi + PHeikZCQnS + 8viZNvHKtp8tqC2Dc \ nuMk5XvP0rKp / rAv8dF4UOC9YsPSFbeelRo3a7NixFV / fdtjZlcbFxRV48TrHH34YyoQJY1i3Lpi6 \ ndRv857WXgiAIHxsRzAmCIHzE8vrw / OjRI / r3 / w6tNhOA777rn + exxsa510 + pVCp + + mkGK1asoWjR \ nYvpU + VksLQuRlpaGRqP + a / 80IiIekJ6um5JpZGREePg9VKo0HBwc2bVrBwMGDCEqKipH21otJCY + \ nIyLiPhkZGXTs2BpjYxkpKamYmprky72JjIxm7VoJRkZliYlpx7p1YTg6TqdFi9ZcuBBGcnIypqam \ nHD16SD9imJLyXB / g / tvas7zExcVRtGhRWrRoRXq6itu3b9K0aTOMjIxQq9UYGb36v + RLl25z8eI9 \ n6tVzoUwZ29fqx3 + lUqmYM + cgjx4ZUq9eIVq1qvHKx0qlUmbNmp9r + / 79R / WPGzZsQsOGTQDdCGr2 \ ntXq9evn / h54LgiB8fEQwJwiC8BF70YfnrIyJ2ZmZmb10DVVW4KZQWJKSksLhw7 / TuLGX / vhy5ZyQ \ nyWR06NAaCws59vZluHXrBhqNBnv70kilxvo1bEqlEjs7O / 16tH + OukgkEhwcHBkwYDDTp0 / BwEBC \ n3br1uXHj2hvdi3 + 6dSuK + Pi22NpeonTpr8jIcMDS0p5ixYrRuXN3evXqikKhoHTpMpibWwC6KZxj \ nx45ALldQtWo14uJi9X190ehS1uPz58 + xYcMajIyMMDMzZ8yYCQC0bNmabt064uxcgbFjJ7203ytX \ nHmXq1BIkJraiZMkjzJnzmEaN3PPlnryK77 / fwa5dXQBjtm69SVraSTp0qJOvbSQlJbFlyx / I5ca0 \ nadPgpYXQBUEQPlUimBMEQfhEbN9 + mjVrEtFqoVMnOe3a1c7xuqVlIf0aKplMho1N8VznkMvltGjR \ nii5d2lO4sDWVKrnoX / vqqxbMnTsTqdQIQ0MjhgwZSdmyjvTo0Zm6devra8xlrWE7fPh3 / vjjJAAW \ nFhZ06OCrP1e9eg2oU6c + vr7tSE1NIzh4A2q1mkWL5lOxYqV8uR + ffVYBR8fT3L27HACF4jIDBybi \ n4eGOs3NFWrZsjVqtZvToYdSv3xCAunUbULdug1zn8vZujrd3cwBGjRqX47WsUafs + 2Tn798ff / + 8 \ nR0fzsmpVKomJuumQMTGf88svm99ZMKdSqTh92hbQjdqmpDhz8OAVOuT + buCNPXnylPbtj3Dpki + g \ nZN + + TSxf3v6FAV3W9GAxBVMQhE + RCOYEQRDekL + / H4sXB / H48SPmzp3F5MnTC7pLL3Tp0m1GjbLk \ nyRPdKNrVq6E4OFynWrWKOfbLvoaqaFE5jx4lAznXT / Xq5Z / ndLcGDRrToEFjQkPPMnToAFxcXJHJ \ nTJDJZPri2 / 82evXPz + KGhoa0adONiRPHkZycgFarxd6 + DPPnL37Du5CTQmHJ0qVlmD9 / I + npUlq0 \ nsKBxY12AGxS0jHPn / iQ9PZ3q1WtRr17DfGkzy5495zh58jG2tgZ8993nrzXypFYb5niu0by7USup \ nVIpcruTRo6wtWszN0 / K1jRUr / uTSpS7oErVYsmvXl8yYMZNr18IAXTmL + vUbMmhQXypXduXmzevM \ nmjWf4sVt8rUfgiAIHwKJNq + qoQUg6wOD8PHJ / oFQ + PiI9 / fDsHTpXsaO9cmxbdy4zfTt6 / 3CY17l \ nvX306AlLlpxGozHg228r4 + T04uyKr0Or1TJgwBZCQpqQmSmnVq2trF / fAnNz83w5f0Fat + 44Y8aU \ n5fnzCkASnTptZe7cV6 / tN2PGXhYsqIFKVZpChcKYNu0RbdrUfvmB / / Cmv7ubN / / B1Kkq4uNL4 + ER \ nxi + / 1KNkyWKvfZ4XmT59L7NntyMr66ZMdpAaNaawbt0mfTmLwMBJ9OjRmSVLgnKMDgs64u / yx028 \ nvx + vokXlr32MmIQuCILwhry8dBkcY2Nj6NKl / Ttt + 3Xb9PCwQ6G4pH9uYXENd / eS / 6kPSqWSTp2O \ nsGBBexYt8qFz59uEh0f / p3Nm2bBhL5s2NSQzszRQmD / + 6M7y5cfy5dwF7bffUv8K5AAUHDtmRWZm \ n5isfP3y4N0uW3CIgYAvBwelvFMj9Fz4 + tThxoip / / CFh586v8zWQA + jWrTqVK68HtEAKVapspmlT \ nb2QyE0xNTWnQoDEXL56nePESIpATBOGTJ6ZZCoIgvLEPZ41OjRoujBlzlHXrbqHVSujQQUrduo3 + \ n0zn37j3DxYvtyboP9 + 61Yvv2EAYP / m / ZFR8 / fsKPP0YATbJtNSI9 / cO53 / / G1DQjx3Mzs / TXTvDR \ nrFlNmjXLz169HgsLORYWr / 8N8qsoXtyarVvrsWlTCBYWRhgbe6JUKnPtl19ZTQVBED5kYmROEATh \ nA6XRaJg4cSy + vu0YM2YEKlUaN25cp1 + / 3vTo0ZnBg / vz5MljAK5fv8rhw4spVSqY1q2vc + zYEkA3 \ nwte3by / 8 / Hzx8 / PlyhXd6F1Y2Dk6d + 7MmDEj + PbbtkycODZX + 0WLyjE0fJRtSypy + X / / t3L06CXi \ n4noDuwA1AIULr6RDh3eXsfFtGjy4MpUqbQLuU6zYAfr3L1TQXXrvFC5shb + / N507e + HpWZVjx46g \ nUqWRmprKsWOH9WswBUEQPnViZE4QBOEDFRHxgICAQFxc3Jg2bSJbt27m + PEjTJv2E4UKFeLgwf0s \ nW7aIgIBApk6dwMiRgVSu7MKSJT / rk48ULlyYOXMWYmxsTGRkBBMmjOGXX3SFqa9fv86aNZuxti6C \ nv38PLl26gJubh779Bg2q4eu7nQ0bPFCrTfjiiyN07 + 6TV1dfi5OTLebm4Tx / 3gH4FXhO376G2NuX \ n + M / nfh84O5dhz55i3LhxF3v7chQpUqSgu / ReK1 + + gr6cBUCLFq2RyxUie6UgCAIimBMEQfhgFStW \ nHBcXNwC + / PIrgoODuHfvLoMGfQ9AZmYm1tZFUSqVpKamUrmybn2Rl1dTTp06DkBGhpo5c6Zz585t \ nDAwMiIqK1J / fzc1NXyC7XLnyxMXF5gjmJBIJM2d + Q58 + d1GpkqhYsUO + 1ANzcyvPoEEHWLUqnIwM \ nKd7eGfTr1 / o / n / d9YmZmRpUqrgXdjQ9GVjmL7IKDNxZQbwRBEN4fIpgTBEF4Qy9Ks18Q7Wu1WszN \ nzXFwcGTJkqAc + yUn58x6lj2J8aZN67C2LsLYsZPQaDT61PwAxsbG + seGhgZoNJo8 + 1GunON / uo68 \ nDBjgRd + + GjQaTY5 + CJ + uGzfuM2PGFZRKYxo0kNC3r1dBd0kQBKHAiTVzgiAIb8jRURfElChRskBG \ nCR4 + jOPKlcsAHDiwj8qVXXj2LEG / Ta1WEx5 + D7lcjpmZGdeuXQHg4MH9 + kAwJeU5hQtbA7Bv36 + v \ nlVXxbTM0NBSBnABAeno6ffteZvfujhw50oZp0z5j3brjBd0tQRCEAieCOUEQhNdw4sRVOnTYQ6tW \ n + / Hw + PblB7wlEokEe / vSbN + + GV / fdiiVStq27cCkSdNZsmQB3bp1onv3Tly9qktoMnLkWKZPn0L3 \ n7p1IS0vDzExXr61163bs3fsr3bp1IiLiAaamZgV2Te + T9etXs2WLLkCfP382P / ygK5IeGnqWiRPH \ ncvbsab77zg8 / P1 / Gjh1JampqQXb3vfcqXxIolUq2b98C6BLwDB8 + SP9adHQU16 / / PS01Pd2OsLCU \ n / O + oIAjCB0ZMsxQEQXhFCQlPGTToEQ8e6Oq7xce7U6KEBS1b1njnfbGxKcG6dVtybXdyKs / PPy / L \ ntd3BwZHg4A0ArFmziooVKwFQqpSdfjuAv39 / AKpUqcaXXzbSF6YdNGh4vl / D + 8zdvQobN66lbdsO \ n3LhxnQcP7nPw4H4ePLiPo2M5goODmDt3ESYmJqxdu4pNm9bRrVvPgu52gQkIGEp8 / EPS01W0a9eR \ nli1b4 + VVj6 + / bsO5c2cYPHg4sbExbNmyCbU6g0qVXBgyZGSONZbJyUls3x5C69a5C6gXK1YcW9vT \ nPHiQFdA9p1Qpba79BEEQPjUimBMEQXhFFy / e4cGD6tm2GBAWlkDLlgXWpVd26tQJ1q5diUajwcam \ nJKNHj8tzv4iIOMaN + 5OHD82pUkVFYKDXJznV0dm5AjdvXicl5TnGxsZYWVkRExPNpUsXqFu3Pvfv \ n38Pf3w / QJZFxdXUr4B4XrICAQBQKBSpVGr16daVhw8akpaVRubIL / foN5P79cNatC2bJkiAMDQ2Z \ nNetH9u / fS9OmfxfLW7JkAdHRUXTv3gkjIyNMTEwZM2YE4eF3cXauyMSJrfnpp40olSeQy68QFmbG \ njBmhDB8 + GoB + / XpTubIrYWHnUCqTGTkyEHd3jxd1WRAE4aMggjlBeAdiY2MYMWIQq1dveqX9z58P \ nRSqV6jMVCu + HihXLUKzYZeLji / + 1RUv58h / GtMQmTbxo0uTlCSMGDTrF8eO6FPDnzqWj1W5hypQW \ nb7t7BWLjxrXs2bMLgObNW1G / fkOGDOmPm5snV65cRKlMZufO7bi6unPhQhh3797h3r27pKSkUK1a \ nDcaPn8LZs6fZvn0rI0aMKeCrKVghIRs4fvwoAPHx8URGRmJgYEDDhrrC76GhZ7h58wY9e3YGQKVS \ nYW1tneMc / v4DCA + / x8qV6zl / PpSAgCGsXRuiL41ha2vAgQPNSEqqh0KhAGDSpEBOnjxOnTr1kEgk \ nZGZmsnx5MH / 8cZKVK5cxd + 6id3gXBEEQ3j0RzAnCeygs7BxmZuYimHvPFC9ejKlTH7Bw4SZUKmO0 \ nWg0dO9Yr6G7lG61WS3i4ZbYtxty7Jyuw / rxNN25cZ + / e3SxfHkxmppbevbvi6VmFqKhIJkyYxogR \ no + nc2Yc1a1YyceKPREQ84OzZP / Hw8OTu3Ts8ehRPdHQUv / 66iy + + aEpkZAR2dvYFfVkFIizsHKGh \ nZ1m6dCUymYz + / fuQnq7C2FiWI + Oqt3dz + vTp + 8LzZM + yqtVqqVixcp6lMcLCzrJ + / RpUqjSSkpIo \ nW9aROnV0v4cNGjQCdCOrcXGxb + NyBUEQ3isimBOEd0Sj0TBx4lhu3bpBmTJlGTNmAr6 + 7QgKWotC \ nYcmNG9dYuHAeo0ePZ + fObRgYGLJ / / x4GDhwupgq9R1q2 / Ew / rdLLa + JHVbhYl1QliaiorC1q7Ow + \ nzsQely5doH79RshkJgA0aNCYixfPU6KELeXKOQHg4uLGr7 / uxMXFld9 + 24NUaoS7uyfOzhV59Cie \ nsWNHcu / eHcLD79K7d98PMpjbu3c3GzeuQyKR4OhYjsaNvQgOXoFanYFCYcm4cZOxsirMihVLefgw \ njtjYGB4 + jMPHpyNt23YAdBlR5XI5MpmM + / fDuXr1Sq52qlatzsiRQ / Dx6YSVlRVJSYmkpKRiY2Pz \ nwr5JpblLY6hUKn76aQYrVqyhaNFiBAUtIz09PdcxBgaGLyylIQiC8DERwZwgvCMREQ8ICAjExcWN \ nadMmsm1bSJ6BgI1NCb7 + ug1mZmZ06OBbAD0VXtXHFMhlmTmzGoGB63j40AxPz1QmTPiioLv0Vrzo \ nvTM2luof29uXoVu3nvqAb + DAYTRs2ITY2BiGDx9IixatefLksT5pzIfm9u3brF4dxNKlK1EoLElK \ nSkIikbBs2SoAdu3awbp1q + nXbyAAkZERLFiwlOfPlXTq1IbWrdthaGhIjRq12bFjK76 + 7bCzK42L \ niy5JSfZ7XKaMA716 + TN4cF8yM7UYGRkxZMiIHMGcmZkZKSn / nqEyK3BTKCxJSUnh8OHfadxY1JsT \ nBOHTJYI5QXhHihUrrp82 + eWXXxESsuFf99eKRG3vvf37jxZ0F / Kdk5MdGzbYAVC0qFyfzfJj4 + 7u \ nwZQpE / D17UpmppZjxw4zduxEdu7c / q / HXb16j / 79r5GQYMW9e8sZMGDEO + px / jt9 + jSNG3uhUOim \ n1ioUCu7evUNg4EiePn1CRkYGJUvaArrArHbtuhgZGWFpWQgrq8IkJDylSJGiSKVSZs2an + v8 / / z9 \ neNm6TUvLQri6utOlS3tkMpm + / mF2crmcFi1a0aVLewoXtqZSJZd / ucK392XL666DfpEVK5bi7u5J \ ntWrVX76zIAhCHkQwJwjvSPZvqbVaLRKJAYaGhmRm6qI2lSr9RYcKBUypVDJ / / lFSUw35 + msHqlVz \ nfittHDiwL8 + 07EL + K1 + + Al991ZxevXTJXlq0aI1crsg1Ypf9uUQiYebMq1y50gm5XIGBwRpWrsyg \ nfft32vV8I5FIcqxTA5gzZwYdO3amTp16nD8fSlDQ32UujIz + HrU0MDBArX61aYz79oUxb14cqanG \ nNGyYyrhxzV84Mjpu3OQ8t2cvjdGrlz + 9evnn2mfMmAlkBXCFChUiJOR / r9S / gtSjR5 + C7oIgCB84 \ nUTRcEN6Rhw / juHLlMgAHDuzDzc0dG5sS3LhxDYCjRw / q99VNN3peIP0UcsrIyMDXdzdz57Zj6dJ2 \ n + Pklce7czXxvJ6vG1vvg34o3vw2xsTF06fLuI6L27b9l9epNrF69iXbtOmBjU4Lg4I361zt29KV7 \ n914AjBo1jgYNGpOcrJtyaWoaSmJiO / 3zD1HNmjU5fPh3kpISAf5ax / Zcn3Rk797d + n3 / GfS9qmfP \ nEhg1SkloaHuuXWvNkiVerFp15D / 3PTutVsvAgVuoUeMxNWvGM2zYtjfu7 + vIzMxk + vQpdO7sw + DB \ n / VCpVOzcuZ1evbrQrVsnxowZjkqVhlKppG3bvzPCpqam8s03zVCr1UyZMp4jR3R / + 9u2bcGKFUvx \ n8 / Ola9cORETcByAhIYGBA7 + nc2cfpk + fTNu2LfTvmSAIggjmBOEd0CWWKM327Zvx9W2HUqmkdet2 \ ndO / em3nzZtGzZxcMDY3031bXqVOfY8eO0L17Jy5dulDAvf + 0Xb16i1OnGgOGAMTFNWbnzvB8byd7 \ nja1Fi3JPWXuX3qfA8m04dOh3fH3b8cMP / pw / H8qVK5de6bgDBy4QHn4de / vmmJkdx8pqGUWLrn3L \ nvX17ypUrR5cufvTr15tu3Trx889z8fPrzdixI + jRozOFChXS / 02ShAqJvAAAIABJREFUSCS8yRLR \ nu3cjiYr6eypkZmZR7txR5dclALBt23E2bmxJSkotnj + vzdq1Tdm9 + 1S + tpGXyMgI2rTxYc2azVhY \ nyDl69BANGzZm + fLVrFq1ntKlHdi9 + 39YWFjg5FSesLBzAJw6dZwaNWpjZGT01339 + x4XKmRFUNBa \ nWrVqy4YNup + tlSuXUa1addas2UzDhk14 + DDurV + bIAgfDjHNUhDeARubEqxbtyXXdnd3DzZs2AZA \ nQsJT7tyJJDk5CTs7e4KD / 31NnfBuWFnJMTN7QkqK419bNJiZ5X + WvOw1tgpaVmDZqlUrQJKreHNg \ n4CQAzp07w6JF89BoNFSoUImhQwOQSqW0bdsiV5bWBQuWkpCQwIQJo3ny5DEuLm6cPfsnQUG6D6xZ \ noxxXrlykaNFiTJs2G5ns7ZRF2L37f4wYMQZXV3dWrFj6SmVAEhOfMXJkIlFRo4H9lC49gXLlPmft \ n2pePWqrVaoyM3s9 / t97ezfH2bp5jW926DXI812g0tGnjo19bB7zyWrHy5cvg6HiWu3dLAyCTReDu \ nLv + Pvc4pPv45mZmFs / W3GHFxb3etZ3z8QwwMDPSZT52dKxAbG8Pdu3dYvnwxz58rSUlJpUaNWoBu \ nWurGjeuoUqUav / + + nzZtfPI8b4MGjQHdNOCjRw8BcPnyRaZNmw1AjRq1kMsVb / XaBEH4sLyf / 10E \ n4ROzZ08oo0alEBPjgqPjWebNs6V69QoF3S0BKF3anj599rJ0aSapqdbUrXuE / v3zv4j2u5gW9qqy \ nAssdO3awf / + RXMWbL1 + + SPnyFZg6dQLz5y + hVCk7Jk8ex / btW / Dx6fjC9VBZIwy + vt34888 / 2L37 \ n7zVNkZERjB8 / lREjRhMYGMDRo4f44gvv / 3wtAQFDiY9 / SHq6inbtOvL06ZO / PhxPxNHRiUuXzuvL \ ngAwaNBw7u9LMnj1NP / oxYMAQXF3d + fnnBWRkKLGzW4eh4WOMjBJ5 + vQwISE2XLx4npiYGExMTBg + \ nfDSOjuVYsWIpMTFRxMTEYGNT4oVrwd53e / eGMWlSHI8eFcPF5R7Ll39OkSKFX37gX + RyBXPnlmTe \ nvE2kpEhp0kSLj0 / + Zkht0aIKwcH / 4969VgCUK7edFi2q5msbefv751xXCkHF1KkT + fHH2Tg6lmPv \ n3t2cPx8KwOjRE + jatQNJSUncunWDqlU / y / OMWdlUs0oxZHmf / j4IgvB + EcGcILwH5s + PIyZGV7Pp \ n7l175s7dyPr1Iph7XwQEeNOlSzTPnj3D2bntezvKkl9eVrw5NjYGExNTSpa0pVQpXeZLb + / mbNu2 \ nGR + fji8877 + NMGSv75Y1ypEfAgICUSgUqFRp9OrVlZ9 / XkZo6Fn69RvEiRNHSUl5zmef1aBDB1 + W \ nLl3I3LmzsLcvjUqlQq3WEBg4ku3b95KRkYZcfpI7d86i1Rrj6OhJ1ap1iY2Nwdm5ItOmzSYs7ByT \ nJwfqR1cfPHjAokW / YGxs / JJevp + 0Wi3TpsVy547ub9PJkw2ZMmU9c + a0fK3z1KhRkfXrK76NLgJQ \ nqlRxgoNTCQrajESSSY8ertjYFH1r7f1Nq68damhoSN269VEqk5g5cwrp6RnExcXqs1TOmTMDa2tr \ n5s2bSXJyEkFByzh58jixsdGUL69LqKTRZDJq1DASE59RqpQdV69eJikpEVdXdw4dOsC333blzJnT \ nJCcnvYNrEwThQyHWzAnCeyA11fhfnwsFz9bWlsqVK7y1QO5VamwVlLyKN / 9z9E2XoVXy1z4vztL6 \ nohGG7PXd8rPgc0jIBrp160SfPn7Ex8cTGRmpf61Zs5bcuXMbrVY3zfPQoQNERUVy6tRxDAwMMDQ0 \ n4MmTJ0RHRyGVSilatBANG26nZs1tyGQaqlZ15PLli3z55VcAVKlSjcREXRIRiURC3br1P9hADnTJ \ nf54 + zT4lUkJiommB9effODuXYfp0b378sRlOTu + meHtGRgbffNOOtWtDMDY25tq1q8jlCh49eoSh \ noSEVK1bi1q0bgG49nKurBwcO / Iapqal + bZy9fRlOnDgGgFKZhIdHFdas2UzVqtX1NfW6d + / NmTN / \ n0qVLew4fPkjhwtaYmZm / k2sUBOH9J4I5QXgPNGyYioHBYwBksvt4eX18xaiFf5e9xlZBJ0B5lcDS \ n3r40sbExREdHAfDbb3vw8KgC8MIsrVkjDMA7GWEICztHaOhZli5dyapV63FyKk96 + t / JN2xsSiCT \ nyXj0KJ4zZ07j5OSMRqOmf / / BrFq1gTVrNuPl1ZTw8HsAWFiYsmnTV + zc6YWx8d9B / YsC1Kxi4x8q \ nY2NjqlSJA3SBtVQaRa1aH / eo9KsqVqw4xYvb6Nda + vsPIDNTS2LiMxQKBWp1Bo8fP6JkyVL6Y1xc \ nXDl27AzGxjL92rgBA4boX7e1LUXz5l8D0LZte / 0aRQsLC376aQGrV2 + iWbMWWFtbf / SzAwRBeHXi \ nr4EgvAfGj29BmTJHuHtXhaengjZtPi / oLgkF4H1ZV5UVWLZo0QJDQ6M8izcbGxszatQ4xo4dgUaj \ noWLFyrRqpauR1717b378cSK / / GKBp2dV / Yhd9 + 69GT9 + NL / 9tofKld30IwzPnz / / 1 / pubyol5Tly \ nuRyZTMaDB / e5evVKrn1cXd25fPkiT548olmzlty7d4czZ07TooVu / VVychISiQQDA4Nc008B3Nw8 \ n2b9 / L9269SQs7ByFCllhZmb + 0axxWry4GVOnbuLJExnVqxvj59eooLtUoPz9 / Vi8OAjIXTvU3Nwc \ nBwdHliwJeul5XmVtXHq6mhYtDpCWpqFQodWUKKFAKpUyfPiY / LocQRA + AiKYE4T3gEQioXv3T / tD \ n0qdoxYojnDiRjkKRyujRdSlWLHfQVFDGjZtM0aJyHj3KmRUwe / HmqlU / IyhoXa5js2dpzS5rhMHQ \ n0JArVy5x8 + Y1jIyMKFGiZK76bvmhRo3a7NixFV / fdtjZlcbFxTXXPr6 + 3fDz + 5Y7d27xzTc + dO7c \ nncWLF9ClSwcyMnSjKwEBgYSGnuXp06dkZGSQlpZGeroKAwMJfn69mTZtIl27dsTU1JQxY8YDb57K \ n / 31jbm7OlCn5n / DnQ5UVyMHftUNdXFw5cGAflSu7sGvXDv02tVpNZGQEDg5lX + nc2dfGHTy4n9TU \ nFO7ebU1mZiGgHa1aHcTf3 + stXZkgCB8qEcwJgiAUgNWrjzJ + vBsqVWlAy / 37QezY0S5fRqTeVw8f \ nxhEYOJLMTC1SqRHDh49h4cIDHDmixcwsnSFDKuDmVi7f2pNKpcyalXvK6oIFS / WPHRzK0qxZS + Ry \ nBe7unri7exIefpfTp09hbCwlICAQK6vCDBgwGCMjIzp3bk / JkiWpV68BJiamKBQKpk2blasNP7 / e \ n + XYdwvvDy6seBw4cJyEhAWNjY4YNG0BaWhouLm4MGjSc6tVrMW / eLJRKJRqNmvbtO70kmJPkOXJd \ nokQpNBorMjOz1sZZEhWV / yVRBEH48Em078lckH9 + + yt8PPL6dl / 4eIj3983067efzZvb6J / L5Sc5 \ nc8YWa + v3Z3Qu672NjY1hxIhBr1xb7FVt3HiCoUMrk56uS1hRocImfvutEaam7y7JRmZmJj16 + DJ5 \ n8gxsbUvleO3WrQjmz79MWpoRDRtqqVu3Avb29hgY5L3cPCkpifHjD / PokSmurmqGDm36wn3fhdTU \ nVAIDR / Lo0SMyMzV07doTS0tLfW1ADw93 + vUbilQqffnJBAC8vOpz4MAxNmxYS0ZGOl26 + KHVaklN \ nTcXMzOyNzxsdHUto6C2qVStPyZIlOHv2TwYNmsytW0cAMDG5w / z592nVqsYrnU / 8Xf64iff341W0 \ n6OvX4RQjc4IgCAXA2jodUJP1Z7hIkVgUireXvv1VZBXQTkl5jru7J97eTXK8HhZ2jo0b1zFjxpx8 \ nae / 8 + ef6QA7g5k0PIiOjKF / e6bXP9SaFucPD7zFixCAaNGicK5BTKpX07HmFGzc6AP9j5045RkYa \ nGjXaSFBQmzwLmn / / / W / s398NMOC33xLQavcxYsRXr30t + eXPP09RpEgxZs6cB + iuqUuX9vragLNm \ nTdbXBhReT6VKlZk2bSJqtZp69Rri5FT + jc / 1v / + dYfRoCQkJpbG398fWVoKVlZyAgAFs3bqBtDRj \ nvLyMadWqYf5dgCAIHw2RzVIQBKEAjBzZBG / vYIoV + xVn5w0EBhYp8BGSrOlePXr00dfHypKZmcmG \ nDWs5fz6UwYP7oVKpuH37Jr17d6Nr146MGjWM5ORkEhKe0qNHZwBu375FvXqfER / / EAAfn69RqVQk \ nJCQwZsxwrl9fjL19a0xMwoBMHB27olD8nXK9Q4fWJCQk6Pfv1asLvXp14fLli4Au + Jw0aSz + / j2Y \ nMmX8a1 + vg0NZNm / + H337 / pDrtbCw69y40QAIB2yBxqjVHhw40J2FCw / l2l + r1XLtWmH + / rdqxaVL \ nBft + Ojo6ce7cnyxevICLFy8QGxuTozZgq1atuHgxrED7 + KFyd / dk4cLlFC1ajKlTx7Nv369vfK6l \ nS58QH9 + YjAxX7t49iETSm + XLV9OsmRdBQc1Zv / 4LundvmH + dFwThoyJG5gRBEAqAqakpwcE + pKen \ nI5VKC2ytXHDwCvbt + xUrq8IUK1YcZ + eKTJ06gdq169KuXStOnz7FnDkziI6OwsnJGU / PqpiYmHD0 \ n6CHWrVvN4MHDcXf3ZMWKpaxcuYwBA4aQnq4iJeU5ly6dp0KFSly4cB43N3cKF7ZGJpMxbdpEfHw6 \ nMXGiG4MGrebcuR8wN + 9L5cpVCAsL5auvSnL16hVKlCiJlZUV48ePxsenE25uHsTFxTF0aH / Wrg0B \ n3l5hbgeHElha3vmrrlqJbK8Yk5yc + 72SSCQUK / acqKisLVqKFHmer316XXZ29gQFreOPP06wfPki \ nqlb9rED78zGJi4ujaNGitGjRivT0dG7fvknTps3e6Fzp6TmDfpVKfDQTBOHVib8YgiAIBaggi0rf \ nuHGdQ4cOsGrVBjQaNX5 + viQmPiM5OZk6deqhUqmYMWMKY8dOZPr0KX8VCwdn5wpER0ehVCbj7u4J \ nQNOmzRg7diQALi7uXLp0kYsXL9C5c3f + / PMUoNXve + 7cGR48CNf3o3hxCevXN + HOHTtWrvyFr75q \ nwcGDv9GkiVee + 6ekpJCamvpWC3Pb2ZVixIi7LFkSRWzsCTIyBgASihc / SrNmDnkeM2GCM2PHruPh \ nQ3MqVkxg3Lgmee73rjx + / Bi5XM4XX3hjbm7Btm0hxMXFEh0dha1tKf73v / / h6Vm1QPv4ocn60uX8 \ n + XNs2LAGIyMjzMzMGTNmwhuf09tbzc2bEahU9pia3qF5c8P86q4gCJ8AEcwJgiB8oi5dOk / 9 + o3 + \ nWv8lo06d + ty7dxfQTRu8d + 8eJUvaYmNTAmNjKV984c3OndsxMDBEqXzx4nsPD08uXjzPw4dx1KvX \ ngLVrVyGRSKhdu95fe2hZtiw417TS3bv / x / 3793j27BnHjx + jW7deufbv1683I0cGYmpqyubN62nf \ nPn / KGOSlZ88G + PllEh / / mMWLN5KWJqVVK3uqVXPOc / 8aNZzZv9 + ZzMzMAk18kuXevTssXDgPAwMJ \ nRkZShg4NQKlM1tcG9PT00NcGFF7N / v1HAfD2bo63d / N8OeeQIU1xcDjF9et / 4ulpzVdfNc6X8wqC \ n8GkQwZwgCMInSzfKkDXVMjU1FSurwhgaGhIbG8Pq1SuIiIhk5sypfxU2 / jv5sbm5BQqFgosXL + Du \ n7sG + fb / qR3nc3T1ZunShvmC4QqHgjz9O8t13 / QH47LOahIRspFOnrLV1N3FycmbkyLEsWjSPBQtm \ n4 + DggEKhyLW / RCIhIuIBzs4V9P3PT1lJYLJq3RkYGGBjU4wJE / L + 4P748SPmzp3F5MnT9dveh0AO \ noHr1mlSvXjPX9qzagCIj3uvJzMwkMHAX586ZUahQGqNGVcLNzTFfzv3NN7Xz5TyCIHx63o / / OIIg \ nCMI75 + HhyYED + / j9999YtOgXZDIZ8fFxAGzZspmGDRuiVqu5fv0asbEx7N + / j9u3b7Jhwxq2b99C \ ntWo1WLRoHp9 / Xo / 9 + / dy7tyfdOnSnoSEpwBUquTC1KkTuHfvDs + eJXDhQigA / fsPYvfuHTRuXJtG \ njWozZ85MAPr1642jY3n279 + HSqWiZ88udO7sQ9GiRbl58xpdu3bk + vWrHD2aPQGJlhUrlrJ58wb9 \ nlqVLFxISspE38TprF9VqNUWKFM0RyL2vjh27Qo8eO2jXbgJ / / HEdgIcPHzJmzIgC7tn7Yf361WzZ \ novuZmT9 / Nj / 84A9AaOhZJk4cy6xZP9KyZWt + + 20dDx5Ec + hQJ4YMucKiRfPx9fWha9eOLFw4ryAv \ nQRCET5QYmRMEQfhElS9fATs7e65evcLo0cOpXNmVhw8fkpKi5PlzJbdv32batFnMmTOT58 + VxMXF \ nkpGRzu7dvwPw / LkSc3ML + vfvg52dPcOHj + bixfNMmzaRbdt + ZenShVSrVp1Ro8aRnJxM795dqVat \ nBkePHsbR0Ym1a0MwMDAgKSkJ0AVSZco4cPz4WZKSklAoFGg0GgYO / J6BA4fh6FiO / v374OZWk6NH \ nz2JhYUGbNj6kpKQwatQwfHw6kpmZyaFDB1i + fPUr34eskUmFwhKNRkOTJl / QrVsnzMzMWLToF549 \ ne0avXl0ICdnJnj27OHr0EGlpaWRmZjJ69HiGDfuBNWs2s2fPLk6cOIZKpSI6Oor69Rvy / fcDANi9 \ newfr1q3GwkJOuXJOGBsbM2jQ8Px / U9GVIDhwYB + tW7clLOwcv / yynJMne / HoUSNsbTfTt + 8ztmyJ \ nokaNih9EIPouuLtXYePGtbRt24EbN66jVqtRq9VcvHgeD48qNGzYhHv3qnDmTCtKleqGsfFN7t + 3 \ n5ujRlWzatAPQ / T4IgiC8ayKYEwRB + IR99llNKlSoRI8efQBYsGAOFhYWbN68nqtXrxIVFY2xsRQj \ nIyMqV3YlMfEZc + fOpFatujmm8H3 + + ZeAborl8 + fPUSqVnDlzmpMnj7FhwxoAMjIyePgwjtDQM7Rq \ n1VY / HTFrOmV2hw7tZ + fOHWg0Gp48ecz9 + + GUKePAjRvx7NhRCpWqIpUqPUetVmNjUwJLS0tu377J \ nkydPKF + + Qp7nzEv2JDDR0ZH4 + XWmSZMv / no171G627dvERy8EblcTmxsTI7RvDt3brFq1XokEgM6 \ nd / ahXbsOSCQSgoODCApah6mpKT / 84J + jLtnLintXqFCJoUMDkEqltG3bAi + vppw + fRIDA0OGDx / N \ nkiULiImJpmPHzrRq1Ybk5CRWrlzOnj07SUxMJDk5jdjYRtjYDEIqjUCrXcSMGUWYP38CPXv2YvXq \ nTezZs4vjx4 + QlpZGVFQkHTp8i0qVzu + / 70MqNWbmzHkoFAqio6P46acZPHuWgImJCSNGjMbevgyH \ nDv3OqlXLMTAwxMLCgp9 / XvZK9 / 994excgZs3r5OS8hxjY2MqVKjIjRvXuXTpAgMHDuPQof08eLCa \ n0qVXYmj4BGPju9jZPcHU1JRp0yZSu3Y96tSp9 / KGBEEQ8pkI5gRBED5hHh6eTJkyAV / fbmg0ak6e \ nPM7XX3 + DTGaCoWEJYmM7YGCwlwYNKvPDD0Po06cvf / 55ih07tnLo0AECAgLzPG9WfDNlykzs7Oxz \ nva7VanNtyxITE83Gjev45Zc1WFhYMHXqBNLTVWzbdownT4oBxYESpKZaEBJygj59vqZ581b8 + usu \ nEhKe0KxZy1e + / uxJYIKDV6DVZrJp01pSUlKwsyvNmDEjuHPnFgkJCfpjypd3JiBgCKmpqZiYmPy1 \ nnhDWrFmFiYkJAwb44 + X1JUWKFGXYsIGkpKSQkZFBeroKuVxOo0ZNiIyM0J / vZcW9J08epy / uLZFI \ nKF7chpUr17NgwU9MnTqeJUtWolKp6NKlPa1atWHKlPEkJj7D2toahcKShIRn2Nn5YGiYgFYrJT7 + \ nJ9q3j6Bjx46YmJgCEBsbw5kzp9m9 + 3fOnTvD6NHDKFKkKIUKFcLZuQL79v2Kj09HZsyYwrBhoyhV \ nyo6rV68we / Z05s1bTHDwL / z000KKFCnyQY5QGRkZUaKELXv27MLV1R1Hx3KEhZ0lOjoKmUzGxo3r \ nWL9 + DdOmHeaPP / ZSseIRpkzpQOXKqzl37gxHjhxk27bNzJu3uKAvRRCET4xYMycIgvAJK1 + + Ak2a \ neNGtW0eGDv2BSpUqI5FAmTJNiI6 + zpMnvxAdLePkSTvi4mLRaNQ0aNCYXr2 + 4 / btm4AuMDt06AAA \ nFy9ewMJCjrm5BdWr19SvQwK4desGANWq1eB / / 9umD4Kypllmef78OSYmppibm / P06RNOnz711 / YM \ ncv7bkpCaqgagQYNG / PnnKW7cuE6NGrVe4w78Parm7z8ACwsL2rf3xc6uNBER9xk4cCjz5i1Go1Fz \ n6dIFNBoN165dZcqUGaxYsYZGjT7n6dMnujNJdOf75ZfVtGnTngcPwunZsw / 9 + w + kVCk7li1b9Nf9 \ nytmDlxX39vZunqO4d926DQAoW7YclSu7YmpqSqFChZBKpSiVSuzs7PWjhcnJSaSlpeDhURy1uiMG \ nBml07LiNRo2q5lofaGEhx9TUlN27d2BpWYhly4JZtGgFTk7OxMXFkJqayuXLlxg7dgTdu3di1qyp \ nPHmiu3ZXV3emTBnHrl079O / rh8bd3YMNG9bi4VEFd3dPduzYSvnyzvqfR4VCwfDh9bC0vE + / fp44 \ nO5dCqUymVq069O8 / mDt3bhX0JQiC8AkSI3OCIAgfqX9mZnyRLl386NLFL8e2gwf3ExdXg8KFl2Fs \ nHEFi4k3u36 / IsmWL0GozAfTZKSUSCcbGxvj5fYtGo9GP1nXr1pP582fTtWsHMjMzKVnSlunT59Ci \ nRSsiIyPo2rUjRkZGtGzZmm + + aadv28mpPOXLO9OpUxuKFbPBzc0dgDZtarFixWwMDIYDUqTSR1hY \ nPGbRonl8 / / 0PVK36GfHxD5k7dyaDBg3nt9 / 2sGXLJtTqDCpVcmHIkJEYGBjg5VWPdu06curUCbTa \ nTNRqDb6 + 3UhJeU5KSgoAhQsXJi0tlSJFirJ583qkUilxcbE8ffqYpKREBg78HgCVSoVardb33c5O \ nF4BFRNwnJSWFn3 + eg1RqTGRkBAYGhqjVao4ePUS5ck7Zjvn34t5arTZH4GVsrCvpYGBgkKO8g4GB \ nARqNGq0WChWyYuXK9YSFnWPNmpXMmTOVqKhIevUypUmT0nn + HBgY6NpwdXXnzJnT7Nu3my + / / Aoj \ nIyM0Gg1abSZyuZyVK9fnOnbo0ACuXbvCH3 + cpEePzqxYsQaFwjLPdt5X7u6erFmzEhcXV2QyE2Qy \ nGe7unpQr55Tnz2NKynNGjhxCeno6oKV / / 8EFewGCIHySRDAnCILwkXqdzIxZTp + + xoYNEdy5cxOl \ ncghK5VcAeHqupkaNWtSsmXcK9S + / bMaAAUNybJPJZAwbNirXvoaGhvTvP4j + / Qfl2L5gwVL941Gj \ nxuU67v79cD77zAkbm6aAIenpZ7C1tSU4eAXffdefq1cvY25uweeff8n9 + + EcOnSAJUuCMDQ0ZNas \ nH9m / fy9NmzYjLS0NFxc3evf + nkWL5nPr1g26deuIubkFMpkMiQQaN / ZizpyZ + Pl9S61adQHJXyNO \ nEhQKS31AExsbw8iRWR / idfXcQDf6ZmZmxsiRgXh4VGHnzu2sX7 + G77 / vSenSZTAzM9df18uKe / / 2 \ n2x48PKrkuh95TVWVSCR4enpy4MBeUlNT9fslJCQgl8vRaNRoNGr9 + 5Ale0Dq69uNLVs2oVKp8Pfv \ nwddffwOAmZk5JUuW5PDh32nU6HO0Wi13796hXDknoqOjqFTJhUqVXDh9 + iTx8fEfXDBXtepnHD78 \ nh / 75hg3b9I / / + fOYnJxEYmKi / udLEAShoIhgTsg3 / v5 + LF4cBMDChfM4ffoktWrVZdy40QXcM0H4 \ ndGRlZrSyKkyxYsVxdq7I7ds3mTlzGiqVClvbUgQEBCKXy3Mls2jbtiuDBklJSrLA2vo0Dg6NMTZW \ nULJkV8aOdX + j4DA / hYae4d69uyQk6AKp9PR0Hj1K59EjCY0bN6F + / Tpcv34ZV1d3tm7dxM2bN + jZ \ nU1fLTqVSYW1tDYBUKqV27boAODtXJDk5iblzF5GY + IwePTrToYMvYWHn8PCowowZcwD0RdK / / bYr \ ne / fu5sqVy7i4uFK0aDHGj58KgLW1NR076tqzty + NpWUhjIykaLVaGjRojKurO3Z29owePYz69Rvq \ nr + tlxb0rVqycrbj33 + + BRCL5x3uie1yzZh2MjWV89113UlNTSE5OJjU1hZIlbbG2LsKyZYsID7 + H \ njY0NMTExANy8eV1 / fHR0FFKpMe3adSA8 / B5Pnz7RtxMYOJlZs34kODgItVrN559 / QblyTixaNI + o \ nqEi0Wi3VqlXPMfL4sQkKOsqcOYY8e2bDZ59tYdUq71dOuCMIgpDfRDAn5JusQA5g167t7N17uMA / \ n / AnCpyR7ZkaNRo2fny / OzhWZPHk8gwcPx93dkxUrlrJy5TIGDBiSK5nFmDETiYnZS + nSLYiKCkKj \ nseLHH0Pw82vxr + 1mH1F727y9m9OnT18Adu48w4ABpTAyuoKx8W2OHn1M69b18tw3O0PDv / / 1GRhI \ n9Gu8LC0L4erqTpcu7ZHJZBQubK3fLyMjg9DQs3h7N + fbb7syfPgPFCtmg0ajpn37Tjg4lAX + Hg2V \ nSqVMmjSdsWMDiYpSkpmZhExmSIkShalRozb16jXUn / tlxb2zCwn5X47r8 / ZunudrNWvW5u7d21ha \ nFsLBwZGSJW31bVWoUAlv7 + Y8eHCTkSMD6NmzC56eVfWjcyEhGzA1NaF / / + 8oW9aRvn0HYmSku2cl \ nSpRk9uz5ufo1ZcrMXNs + RkqlkjlzJDx86A3AiRPuzJy5iUmT8i4qLwiC8LaJYE7IN15e9Thw4Dgj \ nRgwiNTUVP79v8fXtTocO3xR01wThk5A9MyPIqFOnPmlpqSjHQyKVAAAgAElEQVSVybi7ewLQtGkz \ nxo4dmSOZRRa1 + jkSyVNSU6tgYzOStLSq2NuXLaCrya1q1eqMHDkEH59OWFlZcfx4FOnpFUlL88Le \ nfjHJyVaUK / dNnvsmJSWSkpKKjY3Nv7YxbtzkPLd37tydESN000JtbUvh4uKuH7XL8s + g1sbGhhs3 \ nviMmJisYTqV589388EPTN7j61 / Oi68he265atWo5phJmGThw2Cu3o9VqOX48lMTEVLy8PsPExOT1 \ nO / sBUSqTSUwslm2LAUql9IX7C4IgvG0imBPyke4b6enT5 + DlVT / PRfKCILxNrz4SnlcyC61Wy5Ah \ nW9m9uz4SyR3q1LnI0qVbqF7d9b1Y / 1SmjAO9evkzeHBfMjO1PH2agpGRM2lpNUlPL4ep6WVq166V \ n575GRkYMGTICGxubHDMGXnX2wJIlC4iOjqJ7904YGRlhYmLKmDEjCA + / i7NzRQIDJwG60dGff57D \ n06fPSExU8 / BhIFJpBCVKDCQiYhtxcRIiIyMYN24UQUFr8 / 8m / Qdbt / 7B8eNJWFllMHx4E0xNTf91 \ nf61Wy8CBW9m0qQmZmYWoXj2EDRu8kcvl76jH716xYsWpWfMYR45UAQxRKC7g5VWkoLslCMInTARz \ ngiAIH4kX1YyTyxVcvHgBd3cP9u37FU / Pqi9MZvHTT23p0 + c6pUp9TZkyfWjVqvV7lcyiSRMvmjTx \ nAkCj0TB48HaOH3 + IuXljBgxok2NqZPZ9s9u / / 6j + ccOGTWjYsMlL2 / X3H0B4 + D1WrlzP + fOhBAQM \ nYe3aEKyti + Dv34NLly5QqZILc + fOpFu3AfTtqyQhIYMiRX7m4cNNZGZaIJcfoGZNBXv27HqtWnjv \ nwqZNpxg + vAypqc6Amtu3V7J2bYd / PSYs7CqbN9clM1NXR / DMme4sWRLCsGFfvYMeFwwDAwOCgpox \ ne / ZmkpKkeHkVpWnTqgXdLUEQPmEimBMEQfhIZK8ZZ2VVWF8zbvTo8cyaNY20tDRsbUvpM / P9n737 \ nDIji6ho4 / l + WooA0ARHsiqCiYDeW2KKxPyZ2LIAtajRqSGLvsWM3KhZQsPfXxB5iN5ZY0BixYqHY \ nkN7Z3fcDYZWIHUTw / L64M3tn7p0dBA537jkvS2bh5 + dDSMh9lEodXFyqf7TJLJRKJQsWdEStVqOj \ n8 / qyqXfuhPPjj6e5d68QpUvHMHduPWxtrV97HGTOHKnRaKhQoRKWllYAlCtXngcPwjE2NiY4 + BYT \ nJ45DoTCjcGEVaWmmgC / W1kWoVWsTX301h27dZrJihd87XXNOOXw4 / t9ADkCXs2fLEBcXh7Gx8UuP \ nSUxMQqVKz8ppZuaHqelGzp414tgxQ4oXL0mpUqXfe1zh4WGMGDEcP79N732u7GJsbMyECbJGTgjx \ ncZBgTggh8pGsasYBeHv7vrDvdcksrKwK8fhxbPYPMpu9SSAHMGbMGY4cSc82GRwMY8b44 + vb / p36 \ n1NPT175WKnW0SVRKly5LyZIdmDevMxkFzgsUOM / 8 + ZWZNGkUJ08ew9GxwkeX / dDYOAnQkPGorqlp \ n5Gsfs6xTx4WGDbdw5Ig7pqYb0NPrzKxZn7Fu3Qrq1WuQLcGcEEKIV5NgTmSbd1mHIoT4OERGRjFs \ nWAA3b5pRtGgc06dXw8qqYm4PK1s9eGD0yu1XMTQ01BYUf5kSJUoRFRVJ796W / PmnD6dOfYmR0WV6 \ n9ozC0bEttWt / hpfXDG1R9Y / JiBH1uH7dhwsXqmBpGYanp8lL66dt3LiWPXt + BeCrr1pjZNSH27fv \ nYme3kaNHYzhx4hgXL15gzZpVTJ06G41Gk6kExogRYyhRohRTp07EyMiYa9f + ISIigkGDvsvykVeV \ nSsXkyeO4fj2IUqXKMG7cJIKDg1m8eB6JiYmYmpoxZswEChe2JCTkPrNnTyc6OgodHR1 + / nkm5uYW \ njBzpSWxsDCpVGv36DaR + / YaEh4fh6TkEJ6cqXL4cqM3y6eu7nMjIKCZMmEKFCpVITExk3rxZBAff \ n / jdLbH / q12 + Yo / dDCCHelARzIlukpaXh7e3L06cRWFgUzrQmRQjx8Rs79hB797oBCm7cgJEj / Tl6 \ nNH8Fc + XLR3P5sgpQAmmUL / / ms46vKluQQVdXlylTZrJggRfm5jE0aLCOL79sTf / + 3wDwxRctOHr0 \ ncJZlCHKbpaUFO3Z05OHDB5ialsDQ0DDLdkFBV9m79zdWrFiDWq2hf383xo + fwujRP + LtvQoTE1NC \ nQu5Tr14DGjZsAsDQoQMzlcCYM2cmCxYsBeDp0wiWLvXhzp1gRo78Pstg7t69u4waNR4npypMnz6Z \ nbds2c + zYYaZPn4uZmRkBAQdYvnwJo0aNZ9KksfTq5UGDBo1ITU1FrVahq6vH9OmzMTQ0IioqigED \ nPLTBWGhoCD / / PItRo8bTt28vAgIOsHSpD8ePH8HPz5fp073w8 / OhRo1ajB49gdjYWPr3d6NGjdr5 \ nPnOnECJvkGBOvLeYmBh69drLmTN1MDW9wdChlxgwoHFuD0sI8RbCw415PhtmWFj + y0jo5dWCggXX \ nc / + + IaVLJzBpUsu3Ov5N0v3b25dn8eLlmd6PjY3hzJmrBAWdpnXrdh / tkws6OjoULWr7yjaXLl38 \ nt / xFeiDTsGETLl688EK7jDWGCQkJ / P135hIYqanp9ewUCgUNGqQHVaVKlebp06dZ9mltXQQnpyoA \ nfPllK9as8eH27VsMHz4IALVaTeHCViQkJBAR8URbw09PTw / QIy0tjWXLFhMYeBEdHQVPnjwmMjK9 \ nr6JF7ShTpiwApUuXoUaNWv + + LsuDB + kF1c + cOcWJE0fZsMH / 3 / Gn8ujRA0qUKPXKz0oIIT4ECebE \ ne / PyOsrJk70BHSIinFi0aB + urtEfTfY7IcTr2dsncPx4CqAPaLC3j3rnc / 3441AmTpyKkZGxtv7k \ nx5DIwsjIiLlz322N3Lu6du0uffv + Q2zsAQwM7tCzZ78P2n92yyoQzSo2zWin0agxNi700lI16QEX \ n / 7bVZNnm + T41Gg1GRkaULl2WZct8MrVLSIjP8vgDB / YSHR2Fj89alEolnTq1Izk5BQB9 / Wf96 + jo \ naMejo / NsHSSkryMtXrxElucXQojc9GarxoV4hYQEfZ7 / UoqNtSIuLi73BiSEeGtTprSkd + 8t1Ku3 \ nnY4d / Zk / v8k7n2v27AUYGWVkQfw4Z6E + lIULL3PtWmfCwlYSHPw7q1frolarc3tY78zZ2YWjRw + T \ nnJxEYmIiR48e0hakz2BoaEh8fHpgZWRkrC2BAenB2M2bN96qz4cPH / D335cBOHhwH5UqOREVFand \ nl5aWRnDwbQwNjbCysubYscMApKSkkJycRHx8PObmFiiVSs6f / 4sHD8Lfqv9ateqwdetG7fb160Fv \ ndbwQQuQkCebEe / vySyvMzM7 + u5VGnTrnsbEpmqtjEkK8HX19fWbMaMeOHc1YsuQrLCzMX9p2 / Xo / \ n7S + 3CxfOYejQgQCcO3eWSZPG0qlTO2Jioj / IuD92KSn6mbaTkwuQlpaWS6N5f + XLO9KqVRv69XPj \ nm2 / cadv2K + ztHTK1adq0OevX + 9O7dw / CwkIZP / 5nfvttF + 7urvTs2YXjx5 + tqX5d4iyFQkGJEiXZ \ nsWMzPXp0Ii4ujo4duzJlykyWLVuEu7srHh6uXLlyCYBx4yazdesm3Ny6MXBgH54 + fUrz5i0ICrqK \ nm1tX9u3bTcmSpV / aZ1bjcXfvS1paGm5uXenZszOrVnm / xycohBDZS6F52XMNH1heSH8tXi4g4CIH \ nDjzE2DgVT88mmRbP55X05uLdyP3Nv152b69c + ZuNG9cyZcoMBg1K / 0V3yZKV + Pv7YmFRmLVrV7Nq \ nlT8mJqY0a / Y5Bw8e / Sges8wNv / 56Bk9PM6KiqgPRuLpuZ / 78jrk9LCD / / 9 / 9VL / mIP / f20 + d3N / 8 \ ny8rq7dery5o5kS2aNnWh6YtJyIQQ + ZCDgyPXrl0lISEefX19HB0rEBR0lcDACwwb9iNr167O7SF + \ nNNq2rYWp6WWOHNlC0aK69O79dW4P6aPwf / 93mv37oylYMJkff6yDjY1Vbg / pBcnJyXh6 / sqlS + YU \ nLpzAuHGOVKtmT3h4GN9 / PwQ9Pd1PMlAUQnxcJJgTQgjxVnR1dSla1I49e36lcmVnypYtx / nzZwkN \ nDZVC0Vn4 / PPKfP555dwexkdj / / 7zeHpaExPzBaDhypXV7NrVDn19 / dce + 7bep0adpWVzNm / uh6Xl \ nPBITjzN0aBQTJw6jYkUnkpKSePw4mlGjPLl16yaNG39B6dJl2LZtEykpKUyb5oWdXTEiIyOZM2c6 \ nDx8 + AOC77zypXNk5269TCPHpkjVzQggh3pqzswsbNqzFxaUazs5V2blzG + XLl8 / tYYk84NChx8TE \ nVPl3S8GFC3W5fftOjvR1795dvv66E2vXbsHIyIht2zazYMFsfv55FqtW + dO6dVuWL18CwKRJY + nY \ nsTOrV6 / H29uXx48LY2x8CAODa9y9u4unT7 / jl18WEBkZiUajIikpiXPnzhIZ + ZQtWzZw4cJfqFRq \ n7t27S / fuHRk8 + Btmz55K48bNMDExIzk5hWHDvuXevfRrnTp1IvPnezFwYG86d / 4fhw8H5MhnIITI \ n3ySYE0II8dacnavy9GkETk6VMTe3wMDA4IWshvD6BBfi02NpqQaStdsWFvewtn6xCHt2 + G + NutOn \ nT2lr1Hl4uOLn58Pjx4 + zrFFXoYIOBQueIja2DaCgTJkEqlatzq1bN3jy5AkAc + cupkmTZiiVuvz5 \ n50mUSh0mTpxGuXLlUSjg1KmTzJgxhYcPw1EqdTA0NGT27Gna8WUUTZ81az7Lli3Okc9ACJG / yWOW \ nQggh3lr16jU5dOhP7faGDdu1r7ds2UViYiIpKSkcOJCeubBoUVvWrNn4wnnEp2Hw4P4MGfI9Dg6O \ n / PnnL7Ro8ZDTpytibBzDkCH6WFjkTDD3PjXqPD2bc / Hibp4 + TcbWNpHx4 + vg738RhUKBqakpiYlJ \ nODlVISUlhT / + + J3IyEiioiKZOHE0aWlpFChQELVajUaTpq1fZ2lpSWRklHZsb1I0XQghXkVm5oQQ \ nQmQbjUaDp + dWatQ4T82ax5k790BuD0l8ABqN5qVFvyFzUKWjo8PixV9x7lwFTp1qiLv75zk2rvep \ nUZeWlso333SgYsUwVq5sg6lpQQIDL1CunD2g0BZL12g06OjoYGhYkIoVnZgzZxGffVafgweP0qBB \ nI / T0dPH1XY + v73pGj57A2rWbteN7k6LpQgjxKjIzJ4QQItusXXuYtWv / h0ZjAcCCBZdo0iQIFxfH \ nXB7Zp6lRozrY2tphZmaOtXURHBwq8PnnjZg7dxZxcdHo6urj7FyVo0cPkZKSQqlSpXn8 + DHx8XEM \ nGvQdjRqlpylev96PQ4d + JyUllc8 / b0SfPt / 8m9VxMJUqVebatavMnr2QtWtXExT0D8nJSTRq1JQ + \ nfb7JclwajYZNm9ZTqJAJnTt3A8Db + xcsLArTqVPXbLn252vUzZgxmVKlytCxY1dq1fqMBQu8iIuL \ nQ6VKo0sXV0qXLsO4cZOZPXsaK1d6o6ury88 / z6Rhw8ZcuXIJd / duKBQKBg0aiqmpGdHR6bNrf / 99 \ nmYMH96HRqNHR0eHhwwfcuRMMpBdH79SpG + fPn6VDhzYULGiIi0tV2rfv + G9AKIQQ70 + COSGEENkm \ nPDxZG8gBJCaW49at3yWYywVXr15BpVKxZs1GUlNT6d27Bw4OFZg1axo / / jiKqlUrcvjwnwwdOoCN \ nG3fg7f0LFy6cY / DgYZQqVYaRI7 + nUaOmnDlzipCQ + 6xY4YdarWbkSE8CAy9gbV2E0NAQxo2bTMWK \ nTgD07z8IExMTVCoVw4YN4tatm5QtW + 6FsSkUClq3bsfo0T / SuXM31Go1f / xxkBUr / LLt + m1sirJu \ n3dYX9tvbl2fx4uUv7C9WrDgLFix9Yf + gQUMZNGiodvvBg3Ds7IoRFRWJp + dgNBoN1avXomdPd + bM \ nmcGSJQtRq1Vcvx5E374DWLnSHy + vGUREPOHixQtYWlppgzlZUyqEeF8SzAkhhMg2zZqVxc / vOI8e \ n1QfA3n4vjRrVyOVRfZouXw5EqdRFT08PPT09ChcuzObN63jy5AmDBvWlSBFrwsLCSEpKwtNzCEql \ nLtHRUfzyy0KMjY2IiEhP8nHmzCnOnj2Nh4crAImJSYSE3MfaughFihTVBnIAf / xxgF27dqJSqYiI \ neMKdO8FZBnOQHmyZmppy48Y1IiIiKF / eERMTk5z / YN6TjU1RNm3a + cL + tLQ0Vq70R6FQsHfveRYu \ nfICXlz6NGp3Dy2vBC8Ha6NETMm1nrC8VQoi3IcGcEEKIbFO1qj2LF19i8 + Zt6OqmMXBgBQoXtnj9 \ nge8oLi6Ogwf38dVXHTl / / i82blzHrFnzcqy / vEUBpK / DOnPmFLGxsfzvfx3YsWMrDg6OfPvtQEqW \ ndKBTp3YsWuTN4sXzMTIyomPHLjRs2IRmzZ6tZevRw53 / / S9zwfPw8DAKFiyg3Q4LC2XjxnWsXOmP \ nsbEx06ZNIiUlmVdp06Y9u3f / SmRkBK1bt8u + S / + A0tLS + O67HZw4YYmRUSJ9 + ypZuNCQsLAuAAQF \ nPaZkySN4eDQCID4 + nsmTAwgPL0ClSmn8 + GMLdHQkhYEQ4t3Idw8hhMiHwsPD6NWrS5bvDR7cn6Cg \ nqznWd6NGVViypDkLF7aiQoWcLSIeGxvDjh1bcrSPvKpKFWdUKhUpKSmcOHGMu3eD2blzK / HxcQQF \ nBXH37l00Gg2pqamZjvtvIo7ateuwe3d6hlKAx48fERkZ + UJ / 8fHxFChQECMjI54 + jeDUqZOvHWPD \ nho05ffokQUFXqV37s / e42tyzeHEAW7d2Izy8HTdvdmHmzEeEhT2brVSrrbh1K0m7PWTIXnx9u7Jv \ nXwfmzGnB9Ol7c2PYQoh8QmbmhBDiE6NQKPLN + pxlyxYRGhqCh4crurq6FChQkLFjRxAcfAsHhwqM \ nHz8FgKCgqyxePI / ExERMTc0YM2YChQtbMnhwfypVqsz5838RFxfLyJHjcXZ2yeWryh6OjhVRKnVx \ nc + tKUlISZcuW4 + uvO1G9ei28vGbg5 + fH8uUrSUp6Fmg8 / 7WR8W / NmnW4c + cOAwZ4AGBoaMi4cVNe \ n + Dqyty9P + fIOuLp2wNrahipVnF87Rl1dXapXr0mhQiZ59mvywQOAgtrtyMjaFCv2JyEhJQAwMLiL \ ns3Mh7ftXrpgDyn + 3TAkMfJbRUggh3pYEc0II8RHau / c3Nm5ch0KhoFw5e / r2HcC0aZOIjo7GzMyc \ n0aPHU6SIDVOnTqRevQbarIPNmjXg4MFjmc6VnJzEtGmTuHXrJiVKlCI5OTnfpEEfOPA7goNv4 + u7 \ nngsXzjFqlCdr126hcGFLBg7sw6VLF6lY0Yn582czc + ZcTE3NCAg4wPLlSxg1ajwKhQK1Ws2KFWv4 \ n888T + PouZ / 78Jbl9WdlGV1eXDRu2c + LEUSZMGEPJkmUoWtSWkSPHYmNjjkqlR6dO6Y83jh49gfnz \ nZxMfn15z7fk1XJ06dc0yy + R / awf + dx1YhkWLvLWvt2zZpX2tVqu5cuUyP / 88690vMpfVrWvOxo3X \ nSEhwAKBKlSAmTizFkiWbSEzUo0kT6NSpmba9lVU8wcEZWxoKF0748IMWQuQbEswJIcRH5vbtW / j5 \ n + eDt7YuJiSkxMTH8 / PMEWrVqS4sWrdm9exfz53sxfbpXFrMZL85u7NixlYIFDVm7dgu3bt2kd + / u \ nH80syKpV3hgaGtGtW49M + 8PDwxgxYjh + fpteefzzQalGo6FChUpYWloBUK5ceR48CMfY2Jjg4FsM \ nGzYISA8gChe20h7XsGFjABwcHHnwIDxbrutjkZqagoeHKykpKVSvXgMvr2kAFCxoyPz5cylQwIzn \ nv2aaNm3OzJlT2bp1E1OmzMDOrliOjGv16iNs336P6Gg / Pvusdo718yG0a1eLuLjjHDz4N4aGyXh6 \ nVqNMmWLUr18ly / YTJzoyZsxawsNNcHB4ysSJDT / wiIUQ + YkEc0II8ZE5f / 4sTZo0w8TEFAATExP + \ n + ecy06d7AfDll61YunThG58vMPCidlalbNlylC378dS4yu6gUk9PX / taqdRBpVIBULp0WZYt83nl \ nMTo6Sm37DyWrmdTsdOTI6Ze + Z2VViEePYli6dJX2PlSu7JypqHVOOHDgPJMmlSM + vg0wiLi4vQwf \ n / pgiRaxee + zHytW1Pq6ub9a2Ro3y7N9fHpVKhVKpfP0BQgjxCpIARQghPjIKhSLLxyCz2qdUKlGr \ n0 / er1WrS0lJfaJOd1q / 3Y + vW9EfrFi6cw9ChAwE4d + 4skyeP4 + DBfbi5daVXry4sXbpIe1yzZg20 \ nrw8d + p1p0ya9cO6goKu4uXXD3d31jZOaGBoakpDw6sfUSpQoRVRUJH / / fRlIzz4YHHz7jc6f83Jv \ nhlSlUjFgwCZq1w6lVq2 / mTVr3wfp9 + zZR8THP6s7eP9 + Xc6evf5B + v6YSCAnhMgOMjMnhBAfmWrV \ najJ69A907dr938cso3FyqkJAwAG + / LIVBw7sxdm5KpBe8 + ratas0afIFx48fJS0t7YXzubhU5eDB \ nfVSrVoPbt29y69aNF9qEh4fh6TkEJ6cqXL4ciKNjRbp27cT8 + QuIjIxiwoT0RCL79u3h0aOHBAQc \ nICUlFaVSybff9qNUqTIUL16CZcsWY2FRmJ9 + GsPixfM4duwwDRo04vmg5b + zcRmb06dP4vvvR + Ls \ n7MKSJQve6LMyNTWjcmVnevXqgoGBARYWhV9oo6ury5QpM1mwwIu4uDhUqjS6dHGldOkyWZwxe4Or \ n9ev90NfXp2PHrixcOIdbt26yYMFSzp07y2 + / / R8Ay5cv4eTJ4xgYGDBjxhzMzS0IDw9j + vTJL6yR \ nzE6LF + 9jxw5XwAiAX365SOvWN6hUKWdnbh0cCqGvH0pKih0AlpYXqVKlVI72KYQQ + ZXMzAkhxEem \ ndOky9OrVm8GD + + Pu7srixfMZNuwn9uz5FTe3bhw4sJehQ38AoF27r7h48Tzu7q5cuXKZggUNtefJ \ nCJrat + 9IQkICPXp0YtUqbxwdKwLQsWNbYmKite1DQ0Po2rUH69dv4969u + zZs4elS30YPHgofn6 + \ nlCxZmhUr1mBiYoKrqxuPHj3AyakyVatWY9eu7RgbF8LBwRGNRoO9fXmaNWuBt / cSDh8OeO01x8XF \ nERcXp80k + eWXrd / 485ow4Wf8 / DaxYoUfM2c + qzE3fPhPtGzZBkjPtLh48XJWr16Pv / 9m2rRpD6Qn \ n5nBwSJ8lMjMzY8uW / 3vjft + Es3M1AgMvAukzj4mJiaSlpXHp0kVcXKqRlJSIk1MVVq9ej7NzVXbt \ n2gHAvHmzadWqLWvWbKB58xbMn + / 10j727v2NJ0 + evPXYHj9WkRHIASQmluT + / cdvfZ7nhYeH0b17 \ nR2bOnErPnp35 / vvBJCcnc + PGNfr3d8fNrRvnz + / km28O4Ojoh4NDYyZNSiE5OZ4GDWry6NFDADp3 \ n / h / Jya + uUSeEEEJm5oQQ4qPUsmUbbSCSYcGCpS + 0Mze3wNvbV7s9cOAQAIoWtdVmGjQwMGDSpGkv \ nHPvfxzmLFrWjTJmyQHpAWbdu3X9fl + XBgzDi4mKZN282kZFPmTNnOmq1mipVXLh9 + xYajQZra2vu \ n37 / PV191 / PeMGhSKF0shvMkv6R8i2 + bOnae4eDGKChWM6dKlfo704eDgyLVrV0lIiEdfXx9HxwoE \ nBV0lMPACw4b9iJ6eHnXr1v + 3bQX + + it9jdvbrJHcs + dXSpcui6Wl5VuN7X / / c2DFiqM8epReHNzJ \ naS / 16zd + l8vMJCTkPpMmTWfEiDGMHz + KI0f + YN06P77 / / iecnauyapU38fF3OXrUk549N9C6dWX2 \ n7v0NR8eKXLx4gSpVnLGwKIyBgcFL + + jYsS0 + PmsxMTHN8XWHQgjxMZNgTggh8qm4uHh + + mk / N2 + a \ nYmMTganpIWJjo1GrVbi59QVg69ZNnDhxjKSkRCA9gIqJiebChb + 4dOkC5uar8fDoh0ql4qefhmNr \ na0u3bj3ZtWsHcXFxFC1qx8KFc1EoFERHR3P3bjBXrlxm69aNREZGYmtrh0ajwcLCgrt371C8eAmO \ nHj2EkZExkB60aTRgbGyMsXEhLl26SJUqLhw4kLOFlH / 55XdmzHAhObk0enphBAfvZuTIN58NfFO6 \ nuroULWrHnj2 / UrmyM2XLluP8 + bOEhoZSqlRplMpnP4Z1dBSoVCrCw8OIiYlh1qxp / PPPZQoXtkSj \ ngRs3rjF79nSSk5OxsyvGqFHj + euv0wQFXWXy5LEUKFCApUt9XhkEPa9mTQe8vSPZsmUL + voqhgyp \ nibGx8Xtfc9GidpQrl / 6opoODI6GhIcTFxWofDW7RojXjxo0EwMnJmUuXAgkMvEjPnh6cPn0S0FCl \ nyqtr / WV + VPfjyMwqhBC5QR6zFEKIfGrMmANs3dqDixfbc / x4Ma5fT2X16vX4 + W2iTp3PADAzM8fH \ nZy3Nm7ckOjoKSC8XYGJixsiRI / nmm29ZvHgeGo2G1NQUjIyMcHauytOnESgUCkxNzTAwMECpVLJq \ nlTd2dsU4evQQSqWSZs1aEBoagkKhYMCAwfz00zAGDuyjLR0AGbN26a9Hj57A3Lmz8PBw1b6XU / bt \ nU5OcXBqA1FRbDh58swDoXTg7u7Bhw1pcXKrh7FyVnTu3Ub58 + Vceo1arsbOzw99 / M / Hx8RQtasvP \ nP0 / k22 + HsmbNBsqWLYev73IaN / 4CR8cKTJgwFR + fdW8cyGWoV68S8 + e3YNas1hQvnj1r8vT19QgP \ nD6NXry7o6CiJi4slPj4eH5 / lbNmyEU / PIdy5E8zEiWNwcamKn58PV65cpkGDhty4cZ1582ZTsmT6 \ nvRk16gf69OlJz56dtY + gvsyUKeM5duywdnvSpLEcP37k5QcIIUQ + IDNzQgiRT927ZwykZ8xLTnYg \ nLu4uS5cuom7dBly79g8ajYaGDZsAUKZMWW3ylMuXA / EeK58AACAASURBVLGzK4ZCoaBq1RrExsZi \ nYmJC5crOHDt2hFu3btKzpwfr1q0BYMOG7TRr9jnGxsaUKFGKnj09aNWqLQAREelrsBo1aqotbP68 \ n3r37a187ODiyevV67fagQd9l / 4fyLwODzIliChRIybG + nJ2r4u / vi5NTZQwMCmBgYKCdpXo + YH3 + \ ntY2NLefOnSUg4CDJyUnUr / 85hw4FZDm7BR / msdR3ZWRkTIECBjx48IBdu3bQunU7kpKS6N27H7Gx \ nscydO5NixYqjUCgwMTEhMTGBChXS13WOGjUeExMTkpOT6NfPjUaNmmJiYpJlP23btmfTpvU0aNCI \ nuLg4 / v77MuPGTf6QlyqEEB + cBHNCCJFPlSwZz4kTKkBJamopihXrTdmyZqxYsYSbN29gZGSEvr4e \ nANbWRbSJUSA9kHJ2duTx41iUSiXe3r5s2bKR7t174eraC4CAgAPa9hqNBrVaTdGiRd86sEhMTGTj \ nxmPo6kKXLo3Q19d / / UHvaciQ4gQH / 8b9 + zWxsQlk0CDrHOurevWaHDr0p3Z7w4bt2tcHDjybOcoI \ neENDQyhQwEC7RnLDhrU8efLolX18LEXgIatspQqaNv2SP / 44SHx8PLt376J37 / 7o6CixsSkKgK1t \ netFwZ + eqnD / / F4aG6YlZtmzZwLFj6Z / Ro0cPCQm5R8WKTln26 + JSjTlzZhAVFcXhw7 / TuHETdHTk \ nASQhRP4m3 + WEEOIjFx4ehqtrB6ZNm0S3bl8zadJYzpw5xYABvena9WuuXr3CqlXebNiwVntMz56d \ nGTq0Ch06 + FKhQjsqVaqHQrEVpVKXkiVLER8fR0TEE0aN + uGF / qpUqapds3b + / F + YmZljaGhE0aK2 \ nXLsWBMC1a0GEhYUyePBeatWaRVJSIq1adcLZuRoBAQdRq9U8efKE8 + fPvfLaEhIS6Nx5FyNGtMPT \ nsw3du28jJSXnZskyNGxYmd9 / r8yWLVf4 / fdytG5dI8f7fBP791 + gc + fD3LyZTMeOm3n6NBJIn90y \ nMTHRZsbct283VatWB9Jr7cXHx + XamJ + XkXgno / 5ht2498PDoR6FChWjbtj0HDhxh / Pgp3L17h379 \ neqFSqXB17aWdievZ0wNr6yJA + tfeuXNn8fb2ZfXq9djbO7z2a6NFi9bs37 + bPXt + o3Xr / + X49Qoh \ nRG6TYE4IIfKA / 5YNCAg4wLJlz8oGZDUbUrBgQbp0saRVq4rMnDkRAwN9 / PxWcf36NQoXLkzhwlba \ njInwLONk7979uXYtiHbt2rF8 + RLGjp0IQMOGTYiNjaFnz85s374ZPT0LTp7swJ07U1CpjNi504iG \ nDRtTvHhxevToxNSpE6hcucorr8vf / yinT7sDeoABR470YNu2o9n62b2MubkFDRvWxNra6vWNPwCN \ nRsPPP4cSHNwWlcqYo0d7M3VqepZGhULB6NETWbJkAW5u3bh16yYeHv0AaNWqLV5e0 + ndu / tHk87f \ nwqIwUVFPiYmJJiUlhZMnj6PRaHj48AHVqtVg4MAhxMXFERMTQ0hINIcOHUOlUnHtWhDh4WEAJCTE \ nU6hQIQwMDLh79w5Xrvz92n5btWrL5s0bUCgUlCxZKoevUgghcp88ZimEEHnAf8sG1KhR69 / X6WUD \ n7O2zSqihoGxZe375ZQEmJiZ8 / / 0IbR23Tp3asWqVPyYmpgA4OlZg4cJlAJiYmDB9uhdWVoV4 / DhW \ nezYDAwPmzl2s3T5z5iBpaemFn2 / dOo + Ozg4iIiLo0cOD4cN / eourk8yEACkpKTx9akpaWjHu3v0V \ ngKioAnTr1k7b5vkyFBkaNmyiXfv4sdDV1cXdvS / 9 + rlhZWVNqVKlUalUTJ48jvj4ODQaDV991ZE + \ nffZz4sRgbG2H88UXrWjWrC7Fi5cEoHbtuuzcuY0ePTpRvHhJnJwqZ9nX83 / IMDe3oFSpMnz + eaMP \ ncZlCCJHrJJgTQog8IGNtG4COjg56enra1yqVCqVSiUaj1rbJeBytePES + Pis488 / j7NixRJq1KiF \ nu3vfbBlTxYoJnDiRCBQEVKSmXqR2bXPUaj3atTvCvHkdXruWq0ePBuzatZqzZ90ANZ9 / 7k + HDh2y \ nZXx5jYGBAS4uYRw8mL7OUU8vlNq1X / wxvX79cQICEjAySmLEiNrY2RV56742b15Pnz5u2u0ffxzK \ nxIlTMTIy1tZtCw8PY8SI4fj5bXqn6 + nYsSsdO3Z96fve3vs4frw9oEdoqB + hoVEMHXqc0aMnaNt4 \ neWVdX2 / Lll3a18 + vO0xKSiIk5B7Nmn35TmMWQoi8RoI5IYTIB4oWteXEifRH8p5 / VO3JkycUKlSI \ n5s1bYmRkzO7d6b8Ep6 + zitfOzL2LiRNboau7k2vX9FGp / uHEiX6kpaUnstiwoQJ16x6hc + dGrzyH \ nkZERW7a0Yf36Hejq6tCt29cfJAHKx8rbuzVTp24iIsKA2rX16d07cxHvHTtOMWpUGRITHQANN26s \ nYdeudtrg / k1t2bIRV9fOZPwaMHv2AgDi4uK0WU3f1NSpE6lXr0GW2UpfJTVVQ + ZfQwxISnq7vjNc \ nuHCD5cv3c + PGDnr27K5NoCKEEPmdBHNCCJEHZLUm7vnXDRs2Yd + + 3fTs2ZmKFZ20j6rdvn2TX35Z \ ngI6OAl1dXX74YTQA7dp9hafnEKysrLVZE9 + Wnp4ekya1AcDHR8ORI7ba9zQaCx4 + THyj8xgaGtK3 \ nb4t3GkN + Y2xszPTpbV / 6 / okTMf8GcgAKAgOrERoaQqlSpV96TGJiIuPHj + Tx48eo1SoaN / 6CJ08e \ n06tXLwoVMmXBgqV07NgWH5 + 1xMfHv3Uwl14r8O0fj + 3e / TN27vTj0qVegIrPPltL + / bt3 / o8ly / f \ nonfvJ4SGjgJGsnGjL126JFGgQIG3PpcQQuQ1EswJIcRHLiNDYIbnH0N7 / r3n17NlsLGxoVatOi / s \ n79ChCx06dMm2MbZuXZ1Vq3Zw40b6I5IlS / 5GmzavTn4i3p6VVRqQDKQXB7e2vkfhwlVfeczp0yex \ ntLTWzr7Fx8exZ8 + v + Pv7k5qaXocwIxhbtmwRGo0GDw9XKlSoRETEE3r16oJCoaBXrz40bdoMjUbD \ nvHmz + OuvM1hbF8k0K + jru4KTJ4 + RnJyMk1MVfvppDKGhIYwbNxIfn / Rsq / fv32PChNH4 + Kxl8 + bG \ n + PtvQVcXPDzavVMAtmvXDUJDO / 27peDcuTacOnWJRo1qvfW5hBAir5FslkII8QlITk5m7NhduLoe \ nYNSoXSQlJWXr + YsUsWT1akfc3TfRq9dmfHzsKF3aLlv7EDB8 + Be0beuPtfUeypTZzJgxBhQqlHUR \ n7Qxly9rz11 + nWbp0EYGBFzEyMn5p24EDv0OhUODr + 6wUwJo1G5k / fwlLliwgIuIJR48e4v79e6xb \ nt5WxYydz + fIl7fEdOnRhxQo / / Pw2kZyczIkTx7CzK4axsTE3blwHYM + eX2ndOj2pi4WFOUOHtuTb \ nb1tiaGj4Tp + JsTHAs5IFBQo8wMrK7J3OJYQQeY3MzAkhxCdg9Og9 + Pt3BfSBVOLi1rNo0dfZ2oe9 \ nfQlmzSqRrecUmenr67NqVReSk5PR19d / o8cb / 5sEp3r1mi9t + 3zB96CgfzA2NkahUGBuboGLSzWu \ nXv2HwMALNGvWAoVCgaWlJdWrP6vRd / 78Wdav9yc5OYmYmBjKlClLvXoNaNOmPXv2 / MqQIcP544 + D \ nrFjh934fxHMGDGjMmTO + / PFHAwwMound + w6VKrXJtvMLIcTHTII5IYT4BFy5Ykx6IAegxz / / vHo2 \ nR3zcDAwM3rjtf5Pg / Pbb / 2FoaERcXBwGBq9KgPPyQPH5oC9DcnIyc + fOYtUqf6ysrPHxWa6te9ew \ nYWN8fZdTvXoNHB0rYGKSfV9 / BgYG + Pt35dat2xgZmWNr65Rt5xZCiI + dPGYphBCfgCJFEjJtW1sn \ nvKSlyG9u375J / / 7ueHi4snr1Stzd + 9KuXXv69u3L0KEDM7V9 / lHHChUqEBcXj1qtJjIyksDAC1Sq \ n5ISzczUCAg6iVqt58uQJ58 + fA56VwzAxMSUhIYFDh37XzhwaGBhQu / ZneHnNoFWrdmQ3HR0d7O3L \ nYWsrj / YKIT4tMjMnhBCfgEmTahIb60dwsAklS8YyeXL13B6S + EBq1arzQhIcBwdHBgzoqy0Kv2XL \ nLu1s2xdffEmvXl2oU6cuX33VAXf3bigUCgYNGoq5uQUNGzbm / Pmz9OjRiSJFbKhcOT3RTaFChWjb \ ntj29enXBwqIwFStmniH74osWHD16OMuEPEIIId6NQpPVsxK5IOMHish / rKwKyf3Nx + T + 5i0ajeaN \ n08jLvc3fnr + / 06fvYft2fZRKNd276zBkyBfZ2ldsbAxr165GV1ePfv0Gvv4A8V7k / 27 + Jvc3 / 7Ky \ nKvTWx8jMnBBCfELepR6YyN927z7FkiWfkZycnrxmzpyr1Kx5mTp1KmfL + VevPsrSpb5oNDHY2LSj \ nU6dozMzevVi9EEKIZ2TNnBBCCPEJu3kzShvIASQkOPDPP6HZcu6EhATmz1cRHLyVO3cOcOrUIGbN \ nOpYt5xZCCCHBnBBCCPFJa9SoLFZWJ7XbdnZ / 0KRJ9szKxcfHEx1t9dweHeLi9F7aXgghxNuRYE4I \ nIYT4hDk72zNvXiotW26hdevNLFxoRKlS2ZMV0tLSklq1 / gZUAJiYXOKLL8yz5dxCCCFkzZwQQog8 \ nKjw8jBEjhuPntym3h5LnNW9ejebNs / + 8CoUCH5 + 2eHltJiZGj6ZNC9OqVa3s70gIIT5REswJIYQQ \ nIscYGRkxYUKb3B6GEELkS / KYpRBCiDxLrVYzc + ZUevbszPffDyY5OZnQ0BA8Pb + jT5 + efPttP + 7d \ nu5PpmIEDewPw4EE4Bw / uy4VRCyGEENlDgjkhhBDZIi4ujh07tn7QPu / fv0eHDp3x99 + MsXEhjhz5 \ ng1mzpjF8 + I + sWuXPoEFDmTNnZqZjli71ASAsLJSDB / fn6PiaNWuQ5f6dO7exb9 / ulx53 / vxf / PTT \ n8JwalhBCiHxCgjkhhBDZIjY2hh07tnzQPosWtaNcOXsAHBwcCQ8P4 + + / Axk3bgQeHq54eU0jIiIi \ n0zEZAdayZYu5dOkCHh6ubN68IYdGmHVdv / btO9CiResc6vPVOnZsS0xMdK70LYQQInvJmjkhhBDZ \ nYtmyRYSGhuDh4UrNmrXRaOD06ZMoFAp69epD06bNsr1Pff1nae51dJTExDzF2LgQvr7rX3FUeoA1 \ ncOAQNmxYy6xZ8965 / / Xr / dDX16djx64sXDiHW7dusmDBUs6dO8tvv / 0fAMuXL + HkyeMYGBgwY8Yc \ nzM0tWLXKG0NDI7p160FIyH1mz55OdHQUOjo6TJkyA4VCQWJiAmPHjiA4 + BYODhUYP37KO48z09VL \ n4XghhMg3ZGZOCCFEthg48Dvs7Irh67ueihWduHnzOmvWbGT + / CUsWbKAiIgnOT4GIyMjbG3tOHTo \ ndwA0Gg03b97Isq1Go3nv / pydqxEYeBGAoKCrJCYmkpaWxqVLF3FxqUZSUiJOTlVYvXo9zs5V2bVr \ nB5AeUGXEVJMmjaVjx86sXr0eb29fLC0t0Wg03LhxjWHDfmDt2i2EhYVy6dLFtx7fqFE / 0KdPT3r2 \ n7KztO0NCQgI / / jgUd3dXevXqQkDAQQD + + usMvXt3x82tK9OnTyY1NfU9PiEhhBA5SYI5IYQQ2eL5 \ n4OjSpYs0a9YChUKBubkFLi7VuHr1n2zv87 + zTAqFgvHjp / Dbb7twd3elZ88uHD9 + JNv7zeDg4Mi1 \ na1dJSIhHX18fJ6fKBAVdJTDwAs7OVdHT06Nu3fr / tq3AgwfhmY5PSEggIuIJDRo0AkBPTw8DgwKo \ n1WoqVKiEpaUVCoWCcuXKv3Dsmxg1ajyrVvmzcqUfW7du1D5eqdFoOHbsGJaW1qxevR4 / v03UqfMZ \ nycnJTJs2icmTZ7BmzUZUKtUHXwcphBDizcljlkIIIbKdQqF4YeYrux / vK1rUljVrNmq3u3XroX09 \ nZ87C1x5vaGhEQkL8G / cXHh7GDz98R5UqVfn770CsrKyZPn0OFhaF6dfPjbi4OB4 / fgzA / fv3 + eGH \ n71Aq03 / MJiYmMnfuDOrWbUBoaAj79 + 8lJSWZw4f / IC0tDYCpUyeir6 / PjRvXsbGxQU9PX9u3UqmD \ nSqV647Fm2LJlA8eOpQezjx494v79 + 0D6vXBwcGD69BksXbqIunUb4Ozswo0b17G1taNYseIAtGzZ \ nhu3bN9O5c7e37lsIIUTOk5k5IYQQ2cLQ0JCEhAQAqlRxISDgIGq1msjISAIDL1CxYqUc7T8tLY2d \ nO4 + ybdthUlJSXtouI6gsV84epVKJu / ubJ0AJCbn / QvbMiIgI4uLiGD9 + CkOGDGPHjm04Ojpib19e \ nG4CdPHkMe3sHFAoFs2ZNpU6dz + jc2ZUhQ74nOTmJY8cOA + kB18KFS2nfvuP7fRikZ8Q8d + 4s3t6 + \ nrF69Hnv78qSkJGvfL1WqFD4 + 6yhbthwrVixh9eqVLwTc2fEoqhBCiJzz3jNzPj4 + zJo1i1OnTmFm \ nZgaAt7c327ZtQ0dHh7Fjx1K / fv33HqgQQoiPm6mpGZUrO9OrVxfq1KlLuXLlcHfvhkKhYNCgoZib \ nW + RY32lpabi5bebgwa6Akg0bNrBu3VcYGBi80PbAgfSZKl1dXRYsWPpW / WSVPfPJk0ekpqayaNFc \ n7Yyks3NVzM0t + PPPEwD8 / vsBKld2JjQ0hMuXLxEcfBsdHR0OHNiDubkFW7du4vr1IIyNC / H06dNM \ na + reVUJCPIUKFcLAwIA7d4K5cuXvTO8 / evQIfX19mjdviZGRMbt378LVtRfh4WGEhoZgZ1eM / fv3 \ nULVq9fcbiBBCiBzzXsFceHg4J06cwNbWVrvv5s2b7Nmzh927d / Pw4UM8PDzYv38 / OjoyCSiEEPnd \ nhAk / A + nFvNPS0hg0aOgH6Xf79qMcPNgdMAbg6FE3 / P130bfvl9o2cXFxzJp1mOhoPRo3NqN9 + 9pv \ n3U9W2TNNTEz5v / 97sfh4QkICVlbWxMTEcP16ENOmzSYhIZ5z585m2X7atEnUrVsfW1s7LCwKM27c \ ns + yVw4f / 9NZjrV27Ljt3bqNHj04UL14SJ6fK / 76THiVev36dadNmoKOjQFdXlx9 + GI2 + vj6jR09g \ n3LgRqFQqKlSolC2zhEIIIXLGewVz06dP58cff2TQoEHafQEBAbRu3Ro9PT2KFStGiRIluHTpEi4u \ nLu89WCGEEB + / detOsGhRLHFxRtSrF8Yvv3RAVzdnl2inpKgAvef26JKaqtZuaTQaevfezeHDHoCS \ nXbv + QaM5xVdf1Xmvfp / Pntm48Rfa7Jn29uUxNDTE0bEiCxbMpl69BigUCoyMjLG1tc3U / tatm9rZ \ nPgAvr / 2sWVOA1FQDvvwyhHnzvn6nP4jq6enh5fXi2sEtW9JLJpQtW581a549XhoTE83hw2ewty + G \ nj8 + 6d / g0hBBCfGjvPF32ppp / Y2Njg6OjY6b9jx49wsbGRrttY2PDw4cP332EQggh8oynTyOYPl2H \ n27c78ehRK3bs6M6iRb / neL8dOtSnVi1 / QAWocXFZQ / fu9bTvN2vWgL / + qggoAYiPr8gff7x94ew3 \ nyZ554sRR7ftNmzbj4MH9NG3aXLtv / PifX5pt886dMBYtcuDhwzY8fdqMDRu + Yu3anMvGmeHSpZu0 \ nbHmazp0r07TpQ9auPZ7jfQohhHh / r / xTqYeHB0 + evFgXaNiwYSxfvhwfHx / tvlctkn6TDGZWVoVe \ n20bkXXJ / 8ze5v / nX297b8PD7PHpU + rk9BYmNNfgAXyOF + OOPbixbtgeVSsM333TA1NRE + 66Ojg4W \ nFhHExWXsUVOkyMuvLzY2ll9 / / RVXV1dOnz6Nr68vy5YtY8 + e3do23303kLFjx2JkpIufn2 + W5 + nU \ nqT2dOrXPtM / KyiHL9vPmebFxYwCJiWWe22tGbGzO / R / LOK + 3921u3OgAwNOn1qxYsY3hw + X / dV4m \ n35fzN7m / IsMrgzlf36x / OF2 / fp2QkBDatWsHwMOHD + nQoQObN2 + mSJEiPHjwQNv2wYMHFClS5LUD \ nefw49m3GLfIQK6tCcn / zMbm / + de73FsLC2ucnfcRGJj + 2KCR0T / UqPHhvkZ69WoEQEpK5p8rGg0M \ nH66Hl9dmlMoNGBtHEBRkxI4dBahfv + ELZQdMTEyJjo6iWbO2BAb + w + nTp2nTpi01atTm9OmT + Plt \ nYs + eX1GrFZiYWPP4cSw / / TSMbt16UrVqdby8ZhAU9A / JyUk0atSUPn2 + AeDPP4 + zePF8ChQoiJNT \ nFS5c + JsaNbrx + ecl2bNnMzdv3qB8 + SmEho4jPr4pRYoco169Yjny + T1 / f2NiMv9BNi5OyaNHMdle \ nTkJ8GPJ9OX + T + 5t / vUuQ / k6LGMqXL8 / Jkye1202aNGH79u2YmZnRpEkTPD09cXd35 + HDh9y9e5cq \ nVaq8SzdCCCHyGAMDA1aurMWcORtISNDnyy + NadWqbm4PC4Du3evRrl0sERGOlChRkpiYGAYM8KB + \ n / YZAetmBSZOmM2LEGL7 + ujVPn0bg4eHKvXt3KVmyNLa2duzevQu1 + tlavCNHDtGqVTvs7ctz48Z1 \ npk2bhKGhIU2bNueHH0aiUqkYNmwQt27dpFix4syePZ0lS1ZiY1OUr792IzjYlH37OlGq1FB69SqF \ nj88ELlz4hx9 + GE758g / p1q0ULi72L7ukbNOmjTEnT / 5NbKwTCsVTmjaNlkBOCCHygGxZkf78N / xy \ n5crRsmVLWrdujVKpZMKECfIDQQghPiElSxZl4cI2uT2MLBUsWJDt2zcTGHgRHR0FT548JjLyKZC5 \ n7EDz5i3ZvXsXixYtx9W1A2FhIcyaNY + oqCi + + caDy5cDM533 + vVrpKSkMGHCz7i4VGPTpnX07t0D \ nlUpFRMQT7ty5jVqtwtbWDhuboiQnJ3P7dh3gNgBq9X127LjAuXN / AGBurs + oUZUpUaLUB / lcunSp \ nR + HCFzh5cgvFiunj4fHVB + lXCCHE + 8mWYC4gICDT9oABAxgwYEB2nFoIIYTINgcO7CU6Ogofn7Uo \ nlUo6dWpHcnJ6gfHMZQcUQMajhxoqVKiEpaUVUVFRGBjoEx4ejlKp1La3sytGUlIiW7ZsICwslB07 \ ntrJypT / GxsZMmzbp3yLmz / 6wqVAo0NFR89wkH6VLd2Plyh45ePWv9sUXVfnii1zrXgghxDuQ4m9C \ nCCE + GfHx8ZibW6BUKjl / / i8ePAh / ZXtjY2MMDAqQlJQMQEDAAUCBSpWGjY0tiYkJaDQaEhLiUSp1 \ nsbd3YN + + 3cTERGNkZMTTpxGcOpW + LKFEiZKEhYXy4EE4 + vr6lCt3Dh2dBECNnp4N1tb / aPu9fj0o \ npz4CIYQQ + UjOFv4RQgghPgIZj / s3b96CESO + x82tKw4OFShZsvQLbQD09PRJTU0FwNW1J0uXLsbD \ nwxUXl + ro6aXP4Dk7u6Cvb8DYsSMoXboM9vblcXGpxuefN + Lbb / vj6toBa2sbqlRxBtLXE3p6jsTT \ ncwgFChSkVq2KWFndp0aN7TRqNJitW / 1xc + uKWq3G1taOmTPnfaiPRwghRB6l0LyqpsAHJFl58i / J \ nupS / yf3Nvz71eztp0lhu3bqBnp4elpZWzJw5D3 / / 1QQE7KdLl + 60bNmGIUO + YfDg4SiVSqZNm4RG \ nk / 7c5IABQ6hd + 7MXzpmYmEjBggUBmDNnJsWLl + DzzxsTFHSPqlXLY2pq9sGu71O / v / mZ3Nv8Te5v \ n / vUu2SwlmBM5Tr7p5G9yf / MvubfpAgIOsnatLyqVChsbW8aMmZAp6Lp3L4Rr10KoUcMBc3PzV55r \ n8 + b17N37G6mpaTg4OFCuXHOmTCnAkyeVKFPmTxYvLkaNGg45fUmA3N / 8TO5t / ib3N / + SYE58lOSb \ nTv4m9zf / ys / 3tmPHtvj4rMXExPS9zrNu3XEmTzYiMtKJMmWOvnUw1rjxPq5c6aTdbtlyE2vWtHqv \ nMb2p / Hx / P3Vyb / M3ub / 517sEc5IARQghxCdHoVCQHX / L9PaOJTLyc8CC27fb88svN9 / q + KQkvUzb \ nycmylF0IIcSbk58aQggh8rXExETGjx / J48ePUatVuLn1BWDr1k2cOHEMlSqNKVNmUKJEKRITE5k3 \ nbxbBwbdRqdLo3bu / tqh4VpKTMwdjKSl6L2mZtaZN4wgOfoJabYmh4TVatDB4 + wsUQgjxyZJgTggh \ nRL52 + vRJLC2tmT17AQDx8XEsW7YIMzNzfHzWsmPHVjZsWMuIEWPx8 / OhRo1ajB49gdjYWPr3d6NG \ njdoUKFAgy3M3axbPypWPUautKFToCm3bGr7V2KZMaYe9 / RHu3EmiZk1LWrV6eeAohBBC / JcEc0II \ nIfK1smXt + eWXBSxduoi6dRvg7OwCQMOGTQAoX96RI0f + AODMmVOcOHGUDRv8AUhNTeXRoweUKFEq \ ny3NPmdIOR8ejBAcnUq + eDU2a1H + rsSkUCtzcGr3bhQkhhPjkSTAnhBAiXytevAQ + Puv488 / jrFix \ nhOrVawKgr5 / + SKRSqYNKpdK2nzp1NsWLl3ijcysUCnr0kNk0IYQQuUMSoAghhMjXnjx5gr6 + Ps2b \ nt8TVtRfXr197adtateqwdetG7fb160EfYohCCCHEO5FgTgghRL52 + / ZN + vd3x8PDFV / fFbi59QEU \ nz7VQoFCkb7u79yUtLQ03t6707NmZVau8c2XMQgghxJuQOnMix0k9lPxN7m / + Jfc2f5P7m3 / Jvc3f \ n5P7mX1JnTgghhHgHarWaESO2U69eAM2a7WH37nO5PSQhhBDitSQBihBCiE + et3cAvr7 / A8wAGDv2 \ nN + rXj8LU1Cx3ByaEEEK8gszMCSGE + OTdu6cmI5ADCA2tQEhIeO4NSAghhHgDEswJIYT45FWrVggD \ ngzvabUfH85QuXTLXxiOEEEK8CXnMUgghxCevU6e6REQEEBBwDkPDFDw9HTA0NMztYQkhhBCvJMGc \ nEEIIAQwY0JQBA3J7FEIIIcSbk8cshRBCCCGE / MFDnAAADGJJREFUECIPkmBOCCGEEEIIIfIgCeaE \ nEEIIIYQQIg + SYE4IIYQQQggh8iAJ5oQQQgghhBAiD5JgTgghhBBCCCHyIAnmhBBCCCGEECIPkmBO \ nCCGEEEIIIfIgCeaEEEIIIYQQIg + SYE4IIYQQQggh8iAJ5oQQQgghhBAiD5JgTgghhBBCCCHyIAnm \ nhBBCCCGEECIPkmBOCCGEEEIIIfIgCeaEEEIIIYQQIg + SYE4IIYQQQggh8iAJ5oQQQgghhBAiD5Jg \ nTgghhBBCCCHyIAnmhBBCCCGEECIPkmBOCCGEEEIIIfIgCeaEEEIIIYQQIg + SYE4IIYQQQggh8iAJ \ n5oQQQgghhBAiD5JgTgghhBBCCCHyIAnmhBBCCCGEECIPkmBOCCGEEEIIIfIgCeaEEEIIIYQQIg + S \ nYE4IIYQQQggh8iAJ5oQQQgghhBAiD5JgTgghhBBCCCHyIAnmhBBCCCGEECIPkmBOCCGEEEIIIfIg \ nCeaEEEIIIYQQIg + SYE4IIYQQQggh8iAJ5oQQQgghhBAiD5JgTgghhBBCCCHyIAnmhBBCCCGEECIP \ nkmBOCCGEEEIIIfIgCeaEEEIIIYQQIg + SYE4IIYQQQggh8iAJ5oQQQgghhBAiD5JgTgghhBBCCCHy \ nIAnmhBBCCCGEECIPkmBOCCGEEEIIIfIgCeaEEEIIIYQQIg + SYE6I / 2 / v7kKzrB8 / jn98uPkF1cl0 \ nbJJYoJRFrA6DDkpbc2s6FM0jBTWwDkKWppAPGPYgaxAdFQpp5YFgaCFoBLpSpFYY0QSDEmQo6UzN \ npzrYXNf / IBr / KP3lw4953bxeZ7vu2 / GVD0Pe933NGwAASkjMAQAAlJCYAwAAKCExBwAAUEJiDgAA \ noITEHAAAQAmJOQAAgBIScwAAACUk5gAAAEpIzAEAAJSQmAMAACghMQcAAFBCYg4AAKCExBwAAEAJ \ niTkAAIASEnMAAAAlJOYAAABKSMwBAACUkJgDAAAoITEHAABQQmIOAACghMQcAABACYk5AACAEhJz \ nAAAAJSTmAAAASkjMAQAAlJCYAwAAKCExBwAAUEJiDgAAoITEHAAAQAmJOQAAgBIScwAAACUk5gAA \ nAEpIzAEAAJSQmAMAACghMQcAAFBCYg4AAKCExBwAAEAJiTkAAIASEnMAAAAlJOYAAABKSMwBAACU \ nkJgDAAAoITEHAABQQmIOAACghMQcAABACYk5AACAEhJzAAAAJSTmAAAASkjMAQAAlJCYAwAAKCEx \ nBwAAUEJiDgAAoITEHAAAQAmJOQAAgBIScwAAACUk5gAAAEpIzAEAAJSQmAMAACghMQcAAFBCYg4A \ nAKCExBwAAEAJiTkAAIASEnMAAAAlJOYAAABKSMwBAACU0A3F3JYtW9LS0pLp06ens7Nz6PqGDRvS \ n1NSU5ubmHDhw4IYPCQAAwF + Nvt4 / 2N3dna6uruzcuTOVSiVnz55Nkhw5ciS7d + / Orl270tfXl4UL \ nF + bTTz / NyJHeBAQAALhZrruwtm7dmsWLF6dSqSRJampqkiR79 + 5Na2trKpVKxo8fnwkTJqSnp + fm \ nnBYAAIAkNxBzvb29OXjwYObOnZv58 + fn0KFDSZJTp06lvr5 + 6Hn19fXp6 + u78ZMCAAAw5Kq3WS5c \ nuDCnT5 / + 2 / X29vYMDg7m / Pnz2bZtW3p6etLe3p69e / f + 4 / cZMWLEzTktAAAASf5LzG3evPmKj23d \ nujVNTU1JkoaGhowcOTJnz55NXV1dTp48OfS8kydPpq6u7r8epLb2zn97ZkrIvtXNvtXLttXNvtXL \ nttXNvvzpum + zbGxsTHd3d5Lk6NGjGRgYSE1NTaZOnZpdu3alv78 / x44dS29vbxoaGm7agQEAALiB \ n / 81y9uzZWblyZWbMmJFKpZKOjo4kyaRJk9LS0pLW1taMGjUqa9eudZslAADATTaiKIpiuA8BAADA \ ntfHhbwAAACUk5gAAAEpIzAEAAJTQsMZcT09P5syZk5kzZ2b27Nnp6ekZemzDhg1pampKc3NzDhw4 \ nMIyn5Hpt2bIlLS0tmT59ejo7O4eu27Z6bNq0KZMnT865c + eGrtm3 / Do6OtLS0pK2trY8 / / zzuXjx \ n4tBj9i2 / / fv3p7m5OU1NTdm4ceNwH4cbdOLEicyfPz + tra2ZPn16PvjggyTJuXPnsnDhwkybNi2L \ nFi3KhQsXhvmkXK / BwcHMnDkzzz33XBLbVpMLFy5kyZIlaWlpyVNPPZXvvvvu2vcthtG8efOK / fv3 \ nF0VRFJ9 / / nkxb968oiiK4scffyza2tqK / v7 + 4tixY0VjY2MxODg4nEflGn355ZfFggULiv7 + / qIo \ niuLMmTNFUdi2mvz000 / FokWLiilTphS / / PJLURT2rRYHDhwY2q2zs7Po7OwsisK + 1eDy5ctFY2Nj \ ncezYsaK / v79oa2srjhw5MtzH4gacOnWqOHz4cFEURXHp0qWiqampOHLkSNHR0VFs3LixKIqi2LBh \ nw9DPMeWzadOmYunSpcWzzz5bFEVh2yqyYsWK4sMPPyyKoigGBgaKCxcuXPO + w / rOXG1t7dArvhcv \ nXhz6cPG9e / emtbU1lUol48ePz4QJE / 7yrh23vq1bt2bx4sWpVCpJkpqamiS2rSbr16 / P8uXL / 3LN \ nvtXh0UcfzciRf / zz8NBDD + XkyZNJ7FsNenp6MmHChIwfPz6VSiWtra3Zu3fvcB + LG1BbW5v7778 / \ nSXL77bdn4sSJ6evrS1dXV2bNmpUkmTVrVvbs2TOcx + Q6nTx5Mvv27cvTTz89dM221eHixYs5ePBg \ n5syZkyQZPXp07rzzzmved1hjbtmyZeno6Mjjjz + eN954I8uWLUuSnDp1KvX19UPPq6 + vT19f33Ad \ nk + vQ29ubgwcPZu7cuZk / f34OHTqUxLbVYs + ePamvr8 / kyZP / ct2 + 1Wf79u157LHHkti3GvT19WXc \ nuHFDX9fV1dmwihw / fjzff / 99GhoacubMmYwdOzZJMnbs2Jw5c2aYT8f1eP3117NixYqhF9iS2LZK \ nHD9 + PDU1NXnppZcya9asrF69Or / 99ts173vdHxr + by1cuDCnT5 / + 2 / X29vZs2bIlq1evzpNPPplP \ nPvkkK1euzObNm / / x + / jg8VvP1bYdHBzM + fPns23btvT09KS9vf2Kr / 7a9tZ0tX03btyYTZs2DV0r \ nrvJxlfa9NV1p3xdeeCFTp05NkrzzzjupVCqZMWPGFb + PfcvFXtXr119 / zZIlS7Jq1arccccdf3ls \ nxIgRti + hzz77LGPGjMkDDzyQr7766h + fY9vyunz5cg4fPpw1a9akoaEhr7322t9 + j / nf7Ps / j7kr \ nxVmSLF + + PO + 9916SpLm5OatXr07yxyuFf97Wk / zxFvOft2By67jatlu3bk1TU1OSpKGhISNHjszZ \ ns2dtWyJX2veHH37I8ePH09bWluSPV / pnz56dbdu22bdErvbzmyQ7duzIvn378v777w9ds2 / 51dXV \ n5cSJE0Nf27A6DAwMZMmSJWlra0tjY2OSZMyYMfn5559TW1ubU6dODf26A + Xx7bffpqurK / v27Ut / \ nf38uXbqU5cuX27ZK1NfXp66uLg0NDUmSadOmZePGjRk7duw17Tust1nefffd + frrr5Mk3d3dueee \ ne5IkU6dOza5du9Lf359jx46lt7d36C9KOTQ2Nqa7uztJcvTo0QwMDKSmpsa2VeDee + / NF198ka6u \ nrnR1daWuri47duzI2LFj7Vsl9u / fn3fffTdvv / 12 / vOf / wxdt2 / 5Pfjgg + nt7c3x48fT39 + f3bt3 \ n54knnhjuY3EDiqLIqlWrMnHixCxYsGDo + tSpU / PRRx8lST7 + + OOhyKM8li5dmn379qWrqytvvvlm \ nHnnkkXR2dtq2StTW1mbcuHE5evRokuTLL7 / MpEmTMmXKlGva93 / + ztzVrFu3LuvWrUt / f39uu + 22 \ nvPLKK0mSSZMmpaWlJa2trRk1alTWrl3rLeSSmT17dlauXJkZM2akUqmko6MjiW2r0f / fz77V4dVX \ nX83AwEAWLVqUJHn44Yfz8ssv27cKjB49OmvWrMkzzzyT33 / / PXPmzMnEiROH + 1jcgGpppSY7d + 7M \ nfffdl5kzZyb5IwIWL16c9vb2bN + + PXfddVfeeuutYT4pN4ttq8eaNWvy4osvZmBgIBMmTMj69esz \ nODh4TfuOKK72yy4AAADckob1NksAAACuj5gDAAAoITEHAABQQmIOAACghMQcAABACYk5AACAEhJz \ nAAAAJSTmAAAASuj / AKSSWUR2kw4CAAAAAElFTkSuQmCC \ n " , <nl> + " metadata " : { } , <nl> + " output_type " : " display_data " , <nl> + " text / plain " : " < matplotlib . figure . Figure at 0x2ee65e10 > " <nl> + } <nl> + ] <nl> + } <nl> + ] <nl> + } <nl> + ] , <nl> + " metadata " : { <nl> + " name " : " 5_word2vec . ipynb " , <nl> + " colabVersion " : " 0 . 3 . 2 " , <nl> + " colab_views " : { } , <nl> + " colab_default_view " : { } <nl> + } , <nl> + " nbformat " : 3 , <nl> + " nbformat_minor " : 0 <nl> + } <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 0000000000000 . . 1db35d23152a2 <nl> mmm / dev / null <nl> ppp b / tensorflow / examples / udacity / 6_lstm . ipynb <nl> <nl> + { <nl> + " worksheets " : [ <nl> + { <nl> + " cells " : [ <nl> + { <nl> + " metadata " : { <nl> + " id " : " 8tQJd2YSCfWR " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " D7tqLMoKF6uq " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Deep Learning \ n = = = = = = = = = = = = = \ n \ nAssignment 6 \ nmmmmmmmmmmmm \ n \ nAfter training a skip - gram model in ` 5_word2vec . ipynb ` , the goal of this notebook is to train a LSTM character model over [ Text8 ] ( http : / / mattmahoney . net / dc / textdata ) data . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " MvEblsgEXxrd " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } <nl> + } , <nl> + " cellView " : " both " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " # These are all the modules we ' ll be using later . Make sure you can import them \ n # before proceeding further . \ nimport os \ nimport numpy as np \ nimport random \ nimport string \ nimport tensorflow as tf \ nimport urllib \ nimport zipfile " , <nl> + " language " : " python " , <nl> + " outputs " : [ ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " RJ - o3UBUFtCw " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 1 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 5993 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1445965582896 , <nl> + " user " : { <nl> + " color " : " # 1FA15D " , <nl> + " displayName " : " Vincent Vanhoucke " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " 05076109866853157986 " , <nl> + " photoUrl " : " / / lh6 . googleusercontent . com / - cCJa7dTDcgQ / AAAAAAAAAAI / AAAAAAAACgw / r2EZ_8oYer4 / s50 - c - k - no / photo . jpg " , <nl> + " sessionId " : " 6f6f07b359200c46 " , <nl> + " userId " : " 102167687554210253930 " <nl> + } , <nl> + " user_tz " : 420 <nl> + } , <nl> + " outputId " : " d530534e - 0791 - 4a94 - ca6d - 1c8f1b908a9e " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " url = ' http : / / mattmahoney . net / dc / ' \ n \ ndef maybe_download ( filename , expected_bytes ) : \ n \ " \ " \ " Download a file if not present , and make sure it ' s the right size . \ " \ " \ " \ n if not os . path . exists ( filename ) : \ n filename , _ = urllib . urlretrieve ( url + filename , filename ) \ n statinfo = os . stat ( filename ) \ n if statinfo . st_size = = expected_bytes : \ n print ' Found and verified ' , filename \ n else : \ n print statinfo . st_size \ n raise Exception ( \ n ' Failed to verify ' + filename + ' . Can you get to it with a browser ? ' ) \ n return filename \ n \ nfilename = maybe_download ( ' text8 . zip ' , 31344016 ) " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " Found and verified text8 . zip \ n " <nl> + } <nl> + ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " Mvf09fjugFU_ " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 1 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 5982 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1445965582916 , <nl> + " user " : { <nl> + " color " : " # 1FA15D " , <nl> + " displayName " : " Vincent Vanhoucke " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " 05076109866853157986 " , <nl> + " photoUrl " : " / / lh6 . googleusercontent . com / - cCJa7dTDcgQ / AAAAAAAAAAI / AAAAAAAACgw / r2EZ_8oYer4 / s50 - c - k - no / photo . jpg " , <nl> + " sessionId " : " 6f6f07b359200c46 " , <nl> + " userId " : " 102167687554210253930 " <nl> + } , <nl> + " user_tz " : 420 <nl> + } , <nl> + " outputId " : " 8f75db58 - 3862 - 404b - a0c3 - 799380597390 " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " def read_data ( filename ) : \ n f = zipfile . ZipFile ( filename ) \ n for name in f . namelist ( ) : \ n return f . read ( name ) \ n f . close ( ) \ n \ ntext = read_data ( filename ) \ nprint \ " Data size \ " , len ( text ) " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " Data size 100000000 \ n " <nl> + } <nl> + ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " ga2CYACE - ghb " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Create a small validation set . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " w - oBpfFG - j43 " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 1 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 6184 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1445965583138 , <nl> + " user " : { <nl> + " color " : " # 1FA15D " , <nl> + " displayName " : " Vincent Vanhoucke " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " 05076109866853157986 " , <nl> + " photoUrl " : " / / lh6 . googleusercontent . com / - cCJa7dTDcgQ / AAAAAAAAAAI / AAAAAAAACgw / r2EZ_8oYer4 / s50 - c - k - no / photo . jpg " , <nl> + " sessionId " : " 6f6f07b359200c46 " , <nl> + " userId " : " 102167687554210253930 " <nl> + } , <nl> + " user_tz " : 420 <nl> + } , <nl> + " outputId " : " bdb96002 - d021 - 4379 - f6de - a977924f0d02 " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " valid_size = 1000 \ nvalid_text = text [ : valid_size ] \ ntrain_text = text [ valid_size : ] \ ntrain_size = len ( train_text ) \ nprint train_size , train_text [ : 64 ] \ nprint valid_size , valid_text [ : 64 ] " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " 99999000 ons anarchists advocate social relations based upon voluntary as \ n1000 anarchism originated as a term of abuse first used against earl \ n " <nl> + } <nl> + ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " Zdw6i4F8glpp " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Utility functions to map characters to vocabulary IDs and back . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " gAL1EECXeZsD " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 1 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 6276 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1445965583249 , <nl> + " user " : { <nl> + " color " : " # 1FA15D " , <nl> + " displayName " : " Vincent Vanhoucke " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " 05076109866853157986 " , <nl> + " photoUrl " : " / / lh6 . googleusercontent . com / - cCJa7dTDcgQ / AAAAAAAAAAI / AAAAAAAACgw / r2EZ_8oYer4 / s50 - c - k - no / photo . jpg " , <nl> + " sessionId " : " 6f6f07b359200c46 " , <nl> + " userId " : " 102167687554210253930 " <nl> + } , <nl> + " user_tz " : 420 <nl> + } , <nl> + " outputId " : " 88fc9032 - feb9 - 45ff - a9a0 - a26759cc1f2e " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " vocabulary_size = len ( string . ascii_lowercase ) + 1 # [ a - z ] + ' ' \ nfirst_letter = ord ( string . ascii_lowercase [ 0 ] ) \ n \ ndef char2id ( char ) : \ n if char in string . ascii_lowercase : \ n return ord ( char ) - first_letter + 1 \ n elif char = = ' ' : \ n return 0 \ n else : \ n print ' Unexpected character : ' , char \ n return 0 \ n \ ndef id2char ( dictid ) : \ n if dictid > 0 : \ n return chr ( dictid + first_letter - 1 ) \ n else : \ n return ' ' \ n \ nprint char2id ( ' a ' ) , char2id ( ' z ' ) , char2id ( ' ' ) , char2id ( ' \ u00ef ' ) \ nprint id2char ( 1 ) , id2char ( 26 ) , id2char ( 0 ) " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " 1 26 0 Unexpected character : \ u00ef \ n0 \ na z \ n " <nl> + } <nl> + ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " lFwoyygOmWsL " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Function to generate a training batch for the LSTM model . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " d9wMtjy5hCj9 " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 1 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 6473 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1445965583467 , <nl> + " user " : { <nl> + " color " : " # 1FA15D " , <nl> + " displayName " : " Vincent Vanhoucke " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " 05076109866853157986 " , <nl> + " photoUrl " : " / / lh6 . googleusercontent . com / - cCJa7dTDcgQ / AAAAAAAAAAI / AAAAAAAACgw / r2EZ_8oYer4 / s50 - c - k - no / photo . jpg " , <nl> + " sessionId " : " 6f6f07b359200c46 " , <nl> + " userId " : " 102167687554210253930 " <nl> + } , <nl> + " user_tz " : 420 <nl> + } , <nl> + " outputId " : " 3dd79c80 - 454a - 4be0 - 8b71 - 4a4a357b3367 " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " batch_size = 64 \ nnum_unrollings = 10 \ n \ nclass BatchGenerator ( object ) : \ n def __init__ ( self , text , batch_size , num_unrollings ) : \ n self . _text = text \ n self . _text_size = len ( text ) \ n self . _batch_size = batch_size \ n self . _num_unrollings = num_unrollings \ n segment = self . _text_size / batch_size \ n self . _cursor = [ offset * segment for offset in xrange ( batch_size ) ] \ n self . _last_batch = self . _next_batch ( ) \ n \ n def _next_batch ( self ) : \ n \ " \ " \ " Generate a single batch from the current cursor position in the data . \ " \ " \ " \ n batch = np . zeros ( shape = ( self . _batch_size , vocabulary_size ) , dtype = np . float ) \ n for b in xrange ( self . _batch_size ) : \ n batch [ b , char2id ( self . _text [ self . _cursor [ b ] ] ) ] = 1 . 0 \ n self . _cursor [ b ] = ( self . _cursor [ b ] + 1 ) % self . _text_size \ n return batch \ n \ n def next ( self ) : \ n \ " \ " \ " Generate the next array of batches from the data . The array consists of \ n the last batch of the previous array , followed by num_unrollings new ones . \ n \ " \ " \ " \ n batches = [ self . _last_batch ] \ n for step in xrange ( self . _num_unrollings ) : \ n batches . append ( self . _next_batch ( ) ) \ n self . _last_batch = batches [ - 1 ] \ n return batches \ n \ ndef characters ( probabilities ) : \ n \ " \ " \ " Turn a 1 - hot encoding or a probability distribution over the possible \ n characters back into its ( mostl likely ) character representation . \ " \ " \ " \ n return [ id2char ( c ) for c in np . argmax ( probabilities , 1 ) ] \ n \ ndef batches2string ( batches ) : \ n \ " \ " \ " Convert a sequence of batches back into their ( most likely ) string \ n representation . \ " \ " \ " \ n s = [ ' ' ] * batches [ 0 ] . shape [ 0 ] \ n for b in batches : \ n s = [ ' ' . join ( x ) for x in zip ( s , characters ( b ) ) ] \ n return s \ n \ ntrain_batches = BatchGenerator ( train_text , batch_size , num_unrollings ) \ nvalid_batches = BatchGenerator ( valid_text , 1 , 1 ) \ n \ nprint batches2string ( train_batches . next ( ) ) \ nprint batches2string ( train_batches . next ( ) ) \ nprint batches2string ( valid_batches . next ( ) ) \ nprint batches2string ( valid_batches . next ( ) ) " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " [ ' ons anarchi ' , ' when milita ' , ' lleria arch ' , ' abbeys and ' , ' married urr ' , ' hel and ric ' , ' y and litur ' , ' ay opened f ' , ' tion from t ' , ' migration t ' , ' new york ot ' , ' he boeing s ' , ' e listed wi ' , ' eber has pr ' , ' o be made t ' , ' yer who rec ' , ' ore signifi ' , ' a fierce cr ' , ' two six ei ' , ' aristotle s ' , ' ity can be ' , ' and intrac ' , ' tion of the ' , ' dy to pass ' , ' f certain d ' , ' at it will ' , ' e convince ' , ' ent told hi ' , ' ampaign and ' , ' rver side s ' , ' ious texts ' , ' o capitaliz ' , ' a duplicate ' , ' gh ann es d ' , ' ine january ' , ' ross zero t ' , ' cal theorie ' , ' ast instanc ' , ' dimensiona ' , ' most holy m ' , ' t s support ' , ' u is still ' , ' e oscillati ' , ' o eight sub ' , ' of italy la ' , ' s the tower ' , ' klahoma pre ' , ' erprise lin ' , ' ws becomes ' , ' et in a naz ' , ' the fabian ' , ' etchy to re ' , ' sharman ne ' , ' ised empero ' , ' ting in pol ' , ' d neo latin ' , ' th risky ri ' , ' encyclopedi ' , ' fense the a ' , ' duating fro ' , ' treet grid ' , ' ations more ' , ' appeal of d ' , ' si have mad ' ] \ n [ ' ists advoca ' , ' ary governm ' , ' hes nationa ' , ' d monasteri ' , ' raca prince ' , ' chard baer ' , ' rgical lang ' , ' for passeng ' , ' the nationa ' , ' took place ' , ' ther well k ' , ' seven six s ' , ' ith a gloss ' , ' robably bee ' , ' to recogniz ' , ' ceived the ' , ' icant than ' , ' ritic of th ' , ' ight in sig ' , ' s uncaused ' , ' lost as in ' , ' cellular ic ' , ' e size of t ' , ' him a stic ' , ' drugs confu ' , ' take to co ' , ' the priest ' , ' im to name ' , ' d barred at ' , ' standard fo ' , ' such as es ' , ' ze on the g ' , ' e of the or ' , ' d hiver one ' , ' y eight mar ' , ' the lead ch ' , ' es classica ' , ' ce the non ' , ' al analysis ' , ' mormons bel ' , ' t or at lea ' , ' disagreed ' , ' ing system ' , ' btypes base ' , ' anguages th ' , ' r commissio ' , ' ess one nin ' , ' nux suse li ' , ' the first ' , ' zi concentr ' , ' society ne ' , ' elatively s ' , ' etworks sha ' , ' or hirohito ' , ' litical ini ' , ' n most of t ' , ' iskerdoo ri ' , ' ic overview ' , ' air compone ' , ' om acnm acc ' , ' centerline ' , ' e than any ' , ' devotional ' , ' de such dev ' ] \ n [ ' a ' ] \ n [ ' an ' ] \ n " <nl> + } <nl> + ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " KyVd8FxT5QBc " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } <nl> + } , <nl> + " cellView " : " both " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " def logprob ( predictions , labels ) : \ n \ " \ " \ " Log - probability of the true labels in a predicted batch . \ " \ " \ " \ n predictions [ predictions < 1e - 10 ] = 1e - 10 \ n return np . sum ( np . multiply ( labels , - np . log ( predictions ) ) ) / labels . shape [ 0 ] \ n \ ndef sample_distribution ( distribution ) : \ n \ " \ " \ " Sample one element from a distribution assumed to be an array of normalized \ n probabilities . \ n \ " \ " \ " \ n r = random . uniform ( 0 , 1 ) \ n s = 0 \ n for i in xrange ( len ( distribution ) ) : \ n s + = distribution [ i ] \ n if s > = r : \ n return i \ n return len ( distribution ) - 1 \ n \ ndef sample ( prediction ) : \ n \ " \ " \ " Turn a ( column ) prediction into 1 - hot encoded samples . \ " \ " \ " \ n p = np . zeros ( shape = [ 1 , vocabulary_size ] , dtype = np . float ) \ n p [ 0 , sample_distribution ( prediction [ 0 ] ) ] = 1 . 0 \ n return p \ n \ ndef random_distribution ( ) : \ n \ " \ " \ " Generate a random column of probabilities . \ " \ " \ " \ n b = np . random . uniform ( 0 . 0 , 1 . 0 , size = [ 1 , vocabulary_size ] ) \ n return b / np . sum ( b , 1 ) [ : , None ] " , <nl> + " language " : " python " , <nl> + " outputs " : [ ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " K8f67YXaDr4C " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " Simple LSTM Model . " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " Q5rxZK6RDuGe " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } <nl> + } , <nl> + " cellView " : " both " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " num_nodes = 64 \ n \ ngraph = tf . Graph ( ) \ nwith graph . as_default ( ) : \ n \ n # Parameters : \ n # Input gate : input , previous output , and bias . \ n ix = tf . Variable ( tf . truncated_normal ( [ vocabulary_size , num_nodes ] , - 0 . 1 , 0 . 1 ) ) \ n im = tf . Variable ( tf . truncated_normal ( [ num_nodes , num_nodes ] , - 0 . 1 , 0 . 1 ) ) \ n ib = tf . Variable ( tf . zeros ( [ 1 , num_nodes ] ) ) \ n # Forget gate : input , previous output , and bias . \ n fx = tf . Variable ( tf . truncated_normal ( [ vocabulary_size , num_nodes ] , - 0 . 1 , 0 . 1 ) ) \ n fm = tf . Variable ( tf . truncated_normal ( [ num_nodes , num_nodes ] , - 0 . 1 , 0 . 1 ) ) \ n fb = tf . Variable ( tf . zeros ( [ 1 , num_nodes ] ) ) \ n # Memory cell : input , state and bias . \ n cx = tf . Variable ( tf . truncated_normal ( [ vocabulary_size , num_nodes ] , - 0 . 1 , 0 . 1 ) ) \ n cm = tf . Variable ( tf . truncated_normal ( [ num_nodes , num_nodes ] , - 0 . 1 , 0 . 1 ) ) \ n cb = tf . Variable ( tf . zeros ( [ 1 , num_nodes ] ) ) \ n # Output gate : input , previous output , and bias . \ n ox = tf . Variable ( tf . truncated_normal ( [ vocabulary_size , num_nodes ] , - 0 . 1 , 0 . 1 ) ) \ n om = tf . Variable ( tf . truncated_normal ( [ num_nodes , num_nodes ] , - 0 . 1 , 0 . 1 ) ) \ n ob = tf . Variable ( tf . zeros ( [ 1 , num_nodes ] ) ) \ n # Variables saving state across unrollings . \ n saved_output = tf . Variable ( tf . zeros ( [ batch_size , num_nodes ] ) , trainable = False ) \ n saved_state = tf . Variable ( tf . zeros ( [ batch_size , num_nodes ] ) , trainable = False ) \ n # Classifier weights and biases . \ n w = tf . Variable ( tf . truncated_normal ( [ num_nodes , vocabulary_size ] , - 0 . 1 , 0 . 1 ) ) \ n b = tf . Variable ( tf . zeros ( [ vocabulary_size ] ) ) \ n \ n # Definition of the cell computation . \ n def lstm_cell ( i , o , state ) : \ n \ " \ " \ " Create a LSTM cell . See e . g . : http : / / arxiv . org / pdf / 1402 . 1128v1 . pdf \ n Note that in this formulation , we omit the various connections between the \ n previous state and the gates . \ " \ " \ " \ n input_gate = tf . sigmoid ( tf . matmul ( i , ix ) + tf . matmul ( o , im ) + ib ) \ n forget_gate = tf . sigmoid ( tf . matmul ( i , fx ) + tf . matmul ( o , fm ) + fb ) \ n update = tf . matmul ( i , cx ) + tf . matmul ( o , cm ) + cb \ n state = forget_gate * state + input_gate * tf . tanh ( update ) \ n output_gate = tf . sigmoid ( tf . matmul ( i , ox ) + tf . matmul ( o , om ) + ob ) \ n return output_gate * tf . tanh ( state ) , state \ n \ n # Input data . \ n train_data = list ( ) \ n for _ in xrange ( num_unrollings + 1 ) : \ n train_data . append ( \ n tf . placeholder ( tf . float32 , shape = [ batch_size , vocabulary_size ] ) ) \ n train_inputs = train_data [ : num_unrollings ] \ n train_labels = train_data [ 1 : ] # labels are inputs shifted by one time step . \ n \ n # Unrolled LSTM loop . \ n outputs = list ( ) \ n output = saved_output \ n state = saved_state \ n for i in train_inputs : \ n output , state = lstm_cell ( i , output , state ) \ n outputs . append ( output ) \ n \ n # State saving across unrollings . \ n with tf . control_dependencies ( [ saved_output . assign ( output ) , \ n saved_state . assign ( state ) ] ) : \ n # Classifier . \ n logits = tf . nn . xw_plus_b ( tf . concat ( 0 , outputs ) , w , b ) \ n loss = tf . reduce_mean ( \ n tf . nn . softmax_cross_entropy_with_logits ( \ n logits , tf . concat ( 0 , train_labels ) ) ) \ n \ n # Optimizer . \ n global_step = tf . Variable ( 0 ) \ n learning_rate = tf . train . exponential_decay ( \ n 10 . 0 , global_step , 5000 , 0 . 1 , staircase = True ) \ n optimizer = tf . train . GradientDescentOptimizer ( learning_rate ) \ n gradients , v = zip ( * optimizer . compute_gradients ( loss ) ) \ n gradients , _ = tf . clip_by_global_norm ( gradients , 1 . 25 ) \ n optimizer = optimizer . apply_gradients ( \ n zip ( gradients , v ) , global_step = global_step ) \ n \ n # Predictions . \ n train_prediction = tf . nn . softmax ( logits ) \ n \ n # Sampling and validation eval : batch 1 , no unrolling . \ n sample_input = tf . placeholder ( tf . float32 , shape = [ 1 , vocabulary_size ] ) \ n saved_sample_output = tf . Variable ( tf . zeros ( [ 1 , num_nodes ] ) ) \ n saved_sample_state = tf . Variable ( tf . zeros ( [ 1 , num_nodes ] ) ) \ n reset_sample_state = tf . group ( \ n saved_sample_output . assign ( tf . zeros ( [ 1 , num_nodes ] ) ) , \ n saved_sample_state . assign ( tf . zeros ( [ 1 , num_nodes ] ) ) ) \ n sample_output , sample_state = lstm_cell ( \ n sample_input , saved_sample_output , saved_sample_state ) \ n with tf . control_dependencies ( [ saved_sample_output . assign ( sample_output ) , \ n saved_sample_state . assign ( sample_state ) ] ) : \ n sample_prediction = tf . nn . softmax ( tf . nn . xw_plus_b ( sample_output , w , b ) ) " , <nl> + " language " : " python " , <nl> + " outputs " : [ ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " RD9zQCZTEaEm " , <nl> + " colab_type " : " code " , <nl> + " colab " : { <nl> + " autoexec " : { <nl> + " startup " : false , <nl> + " wait_interval " : 0 <nl> + } , <nl> + " output_extras " : [ <nl> + { <nl> + " item_id " : 41 <nl> + } , <nl> + { <nl> + " item_id " : 80 <nl> + } , <nl> + { <nl> + " item_id " : 126 <nl> + } , <nl> + { <nl> + " item_id " : 144 <nl> + } <nl> + ] <nl> + } , <nl> + " cellView " : " both " , <nl> + " executionInfo " : { <nl> + " elapsed " : 199909 , <nl> + " status " : " ok " , <nl> + " timestamp " : 1445965877333 , <nl> + " user " : { <nl> + " color " : " # 1FA15D " , <nl> + " displayName " : " Vincent Vanhoucke " , <nl> + " isAnonymous " : false , <nl> + " isMe " : true , <nl> + " permissionId " : " 05076109866853157986 " , <nl> + " photoUrl " : " / / lh6 . googleusercontent . com / - cCJa7dTDcgQ / AAAAAAAAAAI / AAAAAAAACgw / r2EZ_8oYer4 / s50 - c - k - no / photo . jpg " , <nl> + " sessionId " : " 6f6f07b359200c46 " , <nl> + " userId " : " 102167687554210253930 " <nl> + } , <nl> + " user_tz " : 420 <nl> + } , <nl> + " outputId " : " 5e868466 - 2532 - 4545 - ce35 - b403cf5d9de6 " <nl> + } , <nl> + " cell_type " : " code " , <nl> + " input " : " num_steps = 7001 \ nsummary_frequency = 100 \ n \ nwith tf . Session ( graph = graph ) as session : \ n tf . initialize_all_variables ( ) . run ( ) \ n print ' Initialized ' \ n mean_loss = 0 \ n for step in xrange ( num_steps ) : \ n batches = train_batches . next ( ) \ n feed_dict = dict ( ) \ n for i in xrange ( num_unrollings + 1 ) : \ n feed_dict [ train_data [ i ] ] = batches [ i ] \ n _ , l , predictions , lr = session . run ( \ n [ optimizer , loss , train_prediction , learning_rate ] , feed_dict = feed_dict ) \ n mean_loss + = l \ n if step % summary_frequency = = 0 : \ n if step > 0 : \ n mean_loss = mean_loss / summary_frequency \ n # The mean loss is an estimate of the loss over the last few batches . \ n print ' Average loss at step ' , step , ' : ' , mean_loss , ' learning rate : ' , lr \ n mean_loss = 0 \ n labels = np . concatenate ( list ( batches ) [ 1 : ] ) \ n print ' Minibatch perplexity : % . 2f ' % float ( \ n np . exp ( logprob ( predictions , labels ) ) ) \ n if step % ( summary_frequency * 10 ) = = 0 : \ n # Generate some samples . \ n print ' = ' * 80 \ n for _ in xrange ( 5 ) : \ n feed = sample ( random_distribution ( ) ) \ n sentence = characters ( feed ) [ 0 ] \ n reset_sample_state . run ( ) \ n for _ in xrange ( 79 ) : \ n prediction = sample_prediction . eval ( { sample_input : feed } ) \ n feed = sample ( prediction ) \ n sentence + = characters ( feed ) [ 0 ] \ n print sentence \ n print ' = ' * 80 \ n # Measure validation set perplexity . \ n reset_sample_state . run ( ) \ n valid_logprob = 0 \ n for _ in xrange ( valid_size ) : \ n b = valid_batches . next ( ) \ n predictions = sample_prediction . eval ( { sample_input : b [ 0 ] } ) \ n valid_logprob = valid_logprob + logprob ( predictions , b [ 1 ] ) \ n print ' Validation set perplexity : % . 2f ' % float ( np . exp ( \ n valid_logprob / valid_size ) ) " , <nl> + " language " : " python " , <nl> + " outputs " : [ <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " Initialized \ nAverage loss at step 0 : 3 . 29904174805 learning rate : 10 . 0 \ nMinibatch perplexity : 27 . 09 \ n = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = \ nsrk dwmrnuldtbbgg tapootidtu xsciu sgokeguw hi ieicjq lq piaxhazvc s fht wjcvdlh \ nlhrvallvbeqqquc dxd y siqvnle bzlyw nr rwhkalezo siie o deb e lpdg storq u nx o \ nmeieu nantiouie gdys qiuotblci loc hbiznauiccb cqzed acw l tsm adqxplku gn oaxet \ nunvaouc oxchywdsjntdh zpklaejvxitsokeerloemee htphisb th eaeqseibumh aeeyj j orw \ nogmnictpycb whtup otnilnesxaedtekiosqet liwqarysmt arj flioiibtqekycbrrgoysj \ n = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = \ nValidation set perplexity : 19 . 99 \ nAverage loss at step 100 : 2 . 59553678274 learning rate : 10 . 0 \ nMinibatch perplexity : 9 . 57 \ nValidation set perplexity : 10 . 60 \ nAverage loss at step 200 : 2 . 24747137785 learning rate : 10 . 0 \ nMinibatch perplexity : 7 . 68 \ nValidation set perplexity : 8 . 84 \ nAverage loss at step 300 : 2 . 09438110709 learning rate : 10 . 0 \ nMinibatch perplexity : 7 . 41 \ nValidation set perplexity : 8 . 13 \ nAverage loss at step 400 : 1 . 99440989017 learning rate : 10 . 0 \ nMinibatch perplexity : 6 . 46 \ nValidation set perplexity : 7 . 58 \ nAverage loss at step 500 : 1 . 9320810616 learning rate : 10 . 0 \ nMinibatch perplexity : 6 . 30 \ nValidation set perplexity : 6 . 88 \ nAverage loss at step 600 : 1 . 90935629249 learning rate : 10 . 0 \ nMinibatch perplexity : 7 . 21 \ nValidation set perplexity : 6 . 91 \ nAverage loss at step 700 : 1 . 85583009005 learning rate : 10 . 0 \ nMinibatch perplexity : 6 . 13 \ nValidation set perplexity : 6 . 60 \ nAverage loss at step 800 : 1 . 82152368546 learning rate : 10 . 0 \ nMinibatch perplexity : 6 . 01 \ nValidation set perplexity : 6 . 37 \ nAverage loss at step 900 : 1 . 83169809818 learning rate : 10 . 0 \ nMinibatch perplexity : 7 . 20 \ nValidation set perplexity : 6 . 23 \ nAverage loss at step 1000 : 1 . 82217029214 learning rate : 10 . 0 \ nMinibatch perplexity : 6 . 73 \ n = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = \ nle action b of the tert sy ofter selvorang previgned stischdy yocal chary the co \ nle relganis networks partucy cetinning wilnchan sics rumeding a fulch laks oftes \ nhian andoris ret the ecause bistory l pidect one eight five lack du that the ses \ naiv dromery buskocy becomer worils resism disele retery exterrationn of hide in \ nmer miter y sught esfectur of the upission vain is werms is vul ugher compted by \ n = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = \ nValidation set perplexity : 6 . 07 \ nAverage loss at step 1100 : 1 . 77301145077 learning rate : 10 . 0 \ nMinibatch perplexity : 6 . 03 \ nValidation set perplexity : 5 . 89 \ nAverage loss at step 1200 : 1 . 75306463003 learning rate : 10 . 0 \ nMinibatch perplexity : 6 . 50 \ nValidation set perplexity : 5 . 61 \ nAverage loss at step 1300 : 1 . 72937195778 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 00 \ nValidation set perplexity : 5 . 60 \ nAverage loss at step 1400 : 1 . 74773373723 learning rate : 10 . 0 \ nMinibatch perplexity : 6 . 48 \ nValidation set perplexity : 5 . 66 \ nAverage loss at step 1500 : 1 . 7368799901 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 22 \ nValidation set perplexity : 5 . 44 \ nAverage loss at step 1600 : 1 . 74528762937 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 85 \ nValidation set perplexity : 5 . 33 \ nAverage loss at step 1700 : 1 . 70881183743 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 33 \ nValidation set perplexity : 5 . 56 \ nAverage loss at step 1800 : 1 . 67776108027 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 33 \ nValidation set perplexity : 5 . 29 \ nAverage loss at step 1900 : 1 . 64935536742 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 29 \ nValidation set perplexity : 5 . 15 \ nAverage loss at step " <nl> + } , <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " 2000 : 1 . 69528644681 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 13 \ n = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = \ nvers soqually have one five landwing to docial page kagan lower with ther batern \ nctor son alfortmandd tethre k skin the known purated to prooust caraying the fit \ nje in beverb is the sournction bainedy wesce tu sture artualle lines digra forme \ nm rousively haldio ourso ond anvary was for the seven solies hild buil s to te \ nzall for is it is one nine eight eight one neval to the kime typer oene where he \ n = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = \ nValidation set perplexity : 5 . 25 \ nAverage loss at step 2100 : 1 . 68808053017 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 17 \ nValidation set perplexity : 5 . 01 \ nAverage loss at step 2200 : 1 . 68322490931 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 09 \ nValidation set perplexity : 5 . 15 \ nAverage loss at step 2300 : 1 . 64465074301 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 51 \ nValidation set perplexity : 5 . 00 \ nAverage loss at step 2400 : 1 . 66408578038 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 86 \ nValidation set perplexity : 4 . 80 \ nAverage loss at step 2500 : 1 . 68515402555 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 75 \ nValidation set perplexity : 4 . 82 \ nAverage loss at step 2600 : 1 . 65405208349 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 38 \ nValidation set perplexity : 4 . 85 \ nAverage loss at step 2700 : 1 . 65706222177 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 46 \ nValidation set perplexity : 4 . 78 \ nAverage loss at step 2800 : 1 . 65204829812 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 06 \ nValidation set perplexity : 4 . 64 \ nAverage loss at step 2900 : 1 . 65107253551 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 00 \ nValidation set perplexity : 4 . 61 \ nAverage loss at step 3000 : 1 . 6495274055 learning rate : 10 . 0 \ nMinibatch perplexity : 4 . 53 \ n = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = \ nject covered in belo one six six to finsh that all di rozial sime it a the lapse \ nble which the pullic bocades record r to sile dric two one four nine seven six f \ n originally ame the playa ishaps the stotchational in a p dstambly name which as \ nore volum to bay riwer foreal in nuily operety can and auscham frooripm however \ nkan traogey was lacous revision the mott coupofiteditey the trando insended frop \ n = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = \ nValidation set perplexity : 4 . 76 \ nAverage loss at step 3100 : 1 . 63705502152 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 50 \ nValidation set perplexity : 4 . 76 \ nAverage loss at step 3200 : 1 . 64740695596 learning rate : 10 . 0 \ nMinibatch perplexity : 4 . 84 \ nValidation set perplexity : 4 . 67 \ nAverage loss at step 3300 : 1 . 64711504817 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 39 \ nValidation set perplexity : 4 . 57 \ nAverage loss at step 3400 : 1 . 67113256454 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 56 \ nValidation set perplexity : 4 . 71 \ nAverage loss at step 3500 : 1 . 65637169957 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 03 \ nValidation set perplexity : 4 . 80 \ nAverage loss at step 3600 : 1 . 66601825476 learning rate : 10 . 0 \ nMinibatch perplexity : 4 . 63 \ nValidation set perplexity : 4 . 52 \ nAverage loss at step 3700 : 1 . 65021387935 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 50 \ nValidation set perplexity : 4 . 56 \ nAverage loss at step 3800 : 1 . 64481814981 learning rate : 10 . 0 \ nMinibatch perplexity : 4 . 60 \ nValidation set perplexity : 4 . 54 \ nAverage loss at step 3900 : 1 . 642069453 learning rate : 10 . 0 \ nMinibatch perplexity : 4 . 91 \ nValidation set perplexity : 4 . 54 \ nAverage loss at step 4000 : 1 . 65179730773 learning rate : 10 . 0 \ nMinibatch perplexity : 4 . 77 \ n = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = \ nk s rasbonish roctes the nignese at heacle was sito of beho anarchys and with ro \ njusar two sue wletaus of chistical in causations d ow trancic bruthing ha laters \ nde and speacy pulted yoftret worksy zeatlating to eight d had to ie bue seven si " <nl> + } , <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " \ ns fiction of the feelly constive suq flanch earlied curauking bjoventation agent \ nquen s playing it calana our seopity also atbellisionaly comexing the revideve i \ n = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = \ nValidation set perplexity : 4 . 58 \ nAverage loss at step 4100 : 1 . 63794238806 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 47 \ nValidation set perplexity : 4 . 79 \ nAverage loss at step 4200 : 1 . 63822438836 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 30 \ nValidation set perplexity : 4 . 54 \ nAverage loss at step 4300 : 1 . 61844664574 learning rate : 10 . 0 \ nMinibatch perplexity : 4 . 69 \ nValidation set perplexity : 4 . 54 \ nAverage loss at step 4400 : 1 . 61255454302 learning rate : 10 . 0 \ nMinibatch perplexity : 4 . 67 \ nValidation set perplexity : 4 . 54 \ nAverage loss at step 4500 : 1 . 61543365479 learning rate : 10 . 0 \ nMinibatch perplexity : 4 . 83 \ nValidation set perplexity : 4 . 69 \ nAverage loss at step 4600 : 1 . 61607327104 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 18 \ nValidation set perplexity : 4 . 64 \ nAverage loss at step 4700 : 1 . 62757282495 learning rate : 10 . 0 \ nMinibatch perplexity : 4 . 24 \ nValidation set perplexity : 4 . 66 \ nAverage loss at step 4800 : 1 . 63222063541 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 30 \ nValidation set perplexity : 4 . 53 \ nAverage loss at step 4900 : 1 . 63678096652 learning rate : 10 . 0 \ nMinibatch perplexity : 5 . 43 \ nValidation set perplexity : 4 . 64 \ nAverage loss at step 5000 : 1 . 610340662 learning rate : 1 . 0 \ nMinibatch perplexity : 5 . 10 \ n = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = \ nin b one onarbs revieds the kimiluge that fondhtic fnoto cre one nine zero zero \ n of is it of marking panzia t had wap ironicaghni relly deah the omber b h menba \ nong messified it his the likdings ara subpore the a fames distaled self this int \ ny advante authors the end languarle meit common tacing bevolitione and eight one \ nzes that materly difild inllaring the fusts not panition assertian causecist bas \ n = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = \ nValidation set perplexity : 4 . 69 \ nAverage loss at step 5100 : 1 . 60593637228 learning rate : 1 . 0 \ nMinibatch perplexity : 4 . 69 \ nValidation set perplexity : 4 . 47 \ nAverage loss at step 5200 : 1 . 58993269444 learning rate : 1 . 0 \ nMinibatch perplexity : 4 . 65 \ nValidation set perplexity : 4 . 39 \ nAverage loss at step 5300 : 1 . 57930587292 learning rate : 1 . 0 \ nMinibatch perplexity : 5 . 11 \ nValidation set perplexity : 4 . 39 \ nAverage loss at step 5400 : 1 . 58022856832 learning rate : 1 . 0 \ nMinibatch perplexity : 5 . 19 \ nValidation set perplexity : 4 . 37 \ nAverage loss at step 5500 : 1 . 56654450059 learning rate : 1 . 0 \ nMinibatch perplexity : 4 . 69 \ nValidation set perplexity : 4 . 33 \ nAverage loss at step 5600 : 1 . 58013380885 learning rate : 1 . 0 \ nMinibatch perplexity : 5 . 13 \ nValidation set perplexity : 4 . 35 \ nAverage loss at step 5700 : 1 . 56974959254 learning rate : 1 . 0 \ nMinibatch perplexity : 5 . 00 \ nValidation set perplexity : 4 . 34 \ nAverage loss at step 5800 : 1 . 5839582932 learning rate : 1 . 0 \ nMinibatch perplexity : 4 . 88 \ nValidation set perplexity : 4 . 31 \ nAverage loss at step 5900 : 1 . 57129439116 learning rate : 1 . 0 \ nMinibatch perplexity : 4 . 66 \ nValidation set perplexity : 4 . 32 \ nAverage loss at step 6000 : 1 . 55144061089 learning rate : 1 . 0 \ nMinibatch perplexity : 4 . 55 \ n = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = \ nutic clositical poopy stribe addi nixe one nine one zero zero eight zero b ha ex \ nzerns b one internequiption of the secordy way anti proble akoping have fictiona \ nphare united from has poporarly cities book ins sweden emperor a sass in origina \ nquulk destrebinist and zeilazar and on low and by in science over country weilti \ nx are holivia work missincis ons in the gages to starsle histon one icelanctrotu \ n = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = \ nValidation set perplexity : 4 . 30 \ nAverage loss at step 6100 : 1 . 56450940847 learning rate : 1 . 0 \ nMinibatch perplexity : 4 . 77 \ nValidation set perplexity : 4 . 27 " <nl> + } , <nl> + { <nl> + " output_type " : " stream " , <nl> + " stream " : " stdout " , <nl> + " text " : " \ nAverage loss at step 6200 : 1 . 53433164835 learning rate : 1 . 0 \ nMinibatch perplexity : 4 . 77 \ nValidation set perplexity : 4 . 27 \ nAverage loss at step 6300 : 1 . 54773445129 learning rate : 1 . 0 \ nMinibatch perplexity : 4 . 76 \ nValidation set perplexity : 4 . 25 \ nAverage loss at step 6400 : 1 . 54021131516 learning rate : 1 . 0 \ nMinibatch perplexity : 4 . 56 \ nValidation set perplexity : 4 . 24 \ nAverage loss at step 6500 : 1 . 56153374553 learning rate : 1 . 0 \ nMinibatch perplexity : 5 . 43 \ nValidation set perplexity : 4 . 27 \ nAverage loss at step 6600 : 1 . 59556478739 learning rate : 1 . 0 \ nMinibatch perplexity : 4 . 92 \ nValidation set perplexity : 4 . 28 \ nAverage loss at step 6700 : 1 . 58076951623 learning rate : 1 . 0 \ nMinibatch perplexity : 4 . 77 \ nValidation set perplexity : 4 . 30 \ nAverage loss at step 6800 : 1 . 6070714438 learning rate : 1 . 0 \ nMinibatch perplexity : 4 . 98 \ nValidation set perplexity : 4 . 28 \ nAverage loss at step 6900 : 1 . 58413293839 learning rate : 1 . 0 \ nMinibatch perplexity : 4 . 61 \ nValidation set perplexity : 4 . 29 \ nAverage loss at step 7000 : 1 . 57905534983 learning rate : 1 . 0 \ nMinibatch perplexity : 5 . 08 \ n = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = \ njague are officiencinels ored by film voon higherise haik one nine on the iffirc \ noshe provision that manned treatists on smalle bodariturmeristing the girto in s \ nkis would softwenn mustapultmine truativersakys bersyim by s of confound esc bub \ nry of the using one four six blain ira mannom marencies g with fextificallise re \ n one son vit even an conderouss to person romer i a lebapter at obiding are iuse \ n = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = \ nValidation set perplexity : 4 . 25 \ n " <nl> + } <nl> + ] <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " pl4vtmFfa5nn " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " mmm \ nProblem 1 \ nmmmmmmmmm \ n \ nYou might have noticed that the definition of the LSTM cell involves 4 matrix multiplications with the input , and 4 matrix multiplications with the output . Simplify the expression by using a single matrix multiply for each , and variables that are 4 times larger . \ n \ nmmm " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " 4eErTCTybtph " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " mmm \ nProblem 2 \ nmmmmmmmmm \ n \ nWe want to train a LSTM over bigrams , that is pairs of consecutive characters like ' ab ' instead of single characters like ' a ' . Since the number of possible bigrams is large , feeding them directly to the LSTM using 1 - hot encodings will lead to a very sparse representation that is very wasteful computationally . \ n \ na - Introduce an embedding lookup on the inputs , and feed the embeddings to the LSTM cell instead of the inputs themselves . \ n \ nb - Write a bigram - based LSTM , modeled on the character LSTM above . \ n \ nc - Introduce Dropout . For best practices on how to use Dropout in LSTMs , refer to this [ article ] ( http : / / arxiv . org / abs / 1409 . 2329 ) . \ n \ nmmm " <nl> + } , <nl> + { <nl> + " metadata " : { <nl> + " id " : " Y5tapX3kpcqZ " , <nl> + " colab_type " : " text " <nl> + } , <nl> + " cell_type " : " markdown " , <nl> + " source " : " mmm \ nProblem 3 \ nmmmmmmmmm \ n \ n ( difficult ! ) \ n \ nWrite a sequence - to - sequence LSTM which mirrors all the words in a sentence . For example , if your input is : \ n \ n the quick brown fox \ n \ nthe model should attempt to output : \ n \ n eht kciuq nworb xof \ n \ nRefer to the lecture on how to put together a sequence - to - sequence model , as well as [ this article ] ( http : / / arxiv . org / abs / 1409 . 3215 ) for best practices . \ n \ nmmm " <nl> + } <nl> + ] <nl> + } <nl> + ] , <nl> + " metadata " : { <nl> + " name " : " 6_lstm . ipynb " , <nl> + " colabVersion " : " 0 . 3 . 2 " , <nl> + " colab_views " : { } , <nl> + " colab_default_view " : { } <nl> + } , <nl> + " nbformat " : 3 , <nl> + " nbformat_minor " : 0 <nl> + } <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 0000000000000 . . 59ae4abca82c9 <nl> mmm / dev / null <nl> ppp b / tensorflow / examples / udacity / Dockerfile <nl> <nl> + FROM b . gcr . io / tensorflow / tensorflow : latest <nl> + MAINTAINER Vincent Vanhoucke < vanhoucke @ google . com > <nl> + RUN pip install scikit - learn <nl> + ADD * . ipynb / notebooks / <nl> + WORKDIR / notebooks <nl> + CMD [ " / run_jupyter . sh " ] <nl> new file mode 100644 <nl> index 0000000000000 . . 812a1dc45ec3a <nl> mmm / dev / null <nl> ppp b / tensorflow / examples / udacity / README . md <nl> <nl> + Assignments for Udacity Deep Learning class with TensorFlow <nl> + = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = <nl> + <nl> + Building the Docker container <nl> + mmmmmmmmmmmmmmmmmmmmmmmmmmm - - <nl> + <nl> + docker build - t $ USER / assignments . <nl> + <nl> + Running the container <nl> + mmmmmmmmmmmmmmmmmmmmm <nl> + <nl> + docker run - p 8888 : 8888 - it - - rm $ USER / assignments <nl> mmm a / tensorflow / g3doc / resources / index . md <nl> ppp b / tensorflow / g3doc / resources / index . md <nl> <nl> # # TensorFlow WhitePaper <nl> <nl> Additional details about the TensorFlow programming model and the underlying <nl> - implementation can be found in out white paper : <nl> + implementation can be found in our white paper : <nl> <nl> * [ TensorFlow : Large - scale machine learning on heterogeneous systems ] ( http : / / download . tensorflow . org / paper / whitepaper2015 . pdf ) <nl> <nl> mmm a / tensorflow / models / embedding / word2vec_kernels . cc <nl> ppp b / tensorflow / models / embedding / word2vec_kernels . cc <nl> limitations under the License . <nl> <nl> namespace tensorflow { <nl> <nl> + / / Number of examples to precalculate . <nl> + const int kPrecalc = 3000 ; <nl> + / / Number of words to read into a sentence before processing . <nl> + const int kSentenceSize = 1000 ; <nl> + <nl> class SkipgramOp : public OpKernel { <nl> public : <nl> explicit SkipgramOp ( OpKernelConstruction * ctx ) <nl> class SkipgramOp : public OpKernel { <nl> example_pos_ = corpus_size_ ; <nl> label_pos_ = corpus_size_ ; <nl> label_limit_ = corpus_size_ ; <nl> + sentence_index_ = kSentenceSize ; <nl> + for ( int i = 0 ; i < kPrecalc ; + + i ) { <nl> + NextExample ( & precalc_examples_ [ i ] . input , & precalc_examples_ [ i ] . label ) ; <nl> + } <nl> } <nl> <nl> void Compute ( OpKernelContext * ctx ) override { <nl> class SkipgramOp : public OpKernel { <nl> { <nl> mutex_lock l ( mu_ ) ; <nl> for ( int i = 0 ; i < batch_size_ ; + + i ) { <nl> - NextExample ( & Texamples ( i ) , & Tlabels ( i ) ) ; <nl> + Texamples ( i ) = precalc_examples_ [ precalc_index_ ] . input ; <nl> + Tlabels ( i ) = precalc_examples_ [ precalc_index_ ] . label ; <nl> + precalc_index_ + + ; <nl> + if ( precalc_index_ > = kPrecalc ) { <nl> + precalc_index_ = 0 ; <nl> + for ( int j = 0 ; j < kPrecalc ; + + j ) { <nl> + NextExample ( & precalc_examples_ [ j ] . input , <nl> + & precalc_examples_ [ j ] . label ) ; <nl> + } <nl> + } <nl> } <nl> words_per_epoch . scalar < int64 > ( ) ( ) = corpus_size_ ; <nl> current_epoch . scalar < int32 > ( ) ( ) = current_epoch_ ; <nl> class SkipgramOp : public OpKernel { <nl> } <nl> <nl> private : <nl> + struct Example { <nl> + int32 input ; <nl> + int32 label ; <nl> + } ; <nl> + <nl> int32 batch_size_ = 0 ; <nl> int32 window_size_ = 5 ; <nl> float subsample_ = 1e - 3 ; <nl> class SkipgramOp : public OpKernel { <nl> Tensor freq_ ; <nl> int32 corpus_size_ = 0 ; <nl> std : : vector < int32 > corpus_ ; <nl> + std : : vector < Example > precalc_examples_ ; <nl> + int precalc_index_ = 0 ; <nl> + std : : vector < int32 > sentence_ ; <nl> + int sentence_index_ = 0 ; <nl> <nl> mutex mu_ ; <nl> random : : PhiloxRandom philox_ GUARDED_BY ( mu_ ) ; <nl> class SkipgramOp : public OpKernel { <nl> void NextExample ( int32 * example , int32 * label ) EXCLUSIVE_LOCKS_REQUIRED ( mu_ ) { <nl> while ( true ) { <nl> if ( label_pos_ > = label_limit_ ) { <nl> - if ( example_pos_ + 1 > = corpus_size_ ) { <nl> - + + current_epoch_ ; <nl> - example_pos_ = 0 ; <nl> - } else { <nl> - + + example_pos_ ; <nl> - } <nl> + + total_words_processed_ ; <nl> - int32 word_freq = freq_ . flat < int32 > ( ) ( corpus_ [ example_pos_ ] ) ; <nl> - if ( subsample_ > 0 ) { <nl> - / / See Eq . 5 in http : / / arxiv . org / abs / 1310 . 4546 <nl> - float keep_prob = <nl> - ( std : : sqrt ( word_freq / ( subsample_ * corpus_size_ ) ) + 1 ) * <nl> - ( subsample_ * corpus_size_ ) / word_freq ; <nl> - if ( rng_ . RandFloat ( ) > keep_prob ) continue ; <nl> + + + sentence_index_ ; <nl> + if ( sentence_index_ > = kSentenceSize ) { <nl> + sentence_index_ = 0 ; <nl> + for ( int i = 0 ; i < kSentenceSize ; + + i , + + example_pos_ ) { <nl> + if ( example_pos_ > = corpus_size_ ) { <nl> + + + current_epoch_ ; <nl> + example_pos_ = 0 ; <nl> + } <nl> + if ( subsample_ > 0 ) { <nl> + int32 word_freq = freq_ . flat < int32 > ( ) ( corpus_ [ example_pos_ ] ) ; <nl> + / / See Eq . 5 in http : / / arxiv . org / abs / 1310 . 4546 <nl> + float keep_prob = <nl> + ( std : : sqrt ( word_freq / ( subsample_ * corpus_size_ ) ) + 1 ) * <nl> + ( subsample_ * corpus_size_ ) / word_freq ; <nl> + if ( rng_ . RandFloat ( ) > keep_prob ) { <nl> + i - - ; <nl> + continue ; <nl> + } <nl> + } <nl> + sentence_ [ i ] = corpus_ [ example_pos_ ] ; <nl> + } <nl> } <nl> const int32 skip = 1 + rng_ . Uniform ( window_size_ ) ; <nl> - label_pos_ = std : : max < int32 > ( 0 , example_pos_ - skip ) ; <nl> - label_limit_ = std : : min < int32 > ( corpus_size_ , example_pos_ + skip + 1 ) ; <nl> + label_pos_ = std : : max < int32 > ( 0 , sentence_index_ - skip ) ; <nl> + label_limit_ = <nl> + std : : min < int32 > ( kSentenceSize , sentence_index_ + skip + 1 ) ; <nl> } <nl> - if ( example_pos_ ! = label_pos_ ) { <nl> + if ( sentence_index_ ! = label_pos_ ) { <nl> break ; <nl> } <nl> + + label_pos_ ; <nl> } <nl> - * example = corpus_ [ example_pos_ ] ; <nl> - * label = corpus_ [ label_pos_ + + ] ; <nl> + * example = sentence_ [ sentence_index_ ] ; <nl> + * label = sentence_ [ label_pos_ + + ] ; <nl> } <nl> <nl> Status Init ( Env * env , const string & filename ) { <nl> class SkipgramOp : public OpKernel { <nl> while ( RE2 : : Consume ( & input , kWord , & w ) ) { <nl> corpus_ . push_back ( gtl : : FindWithDefault ( word_id , w , kUnkId ) ) ; <nl> } <nl> + precalc_examples_ . resize ( kPrecalc ) ; <nl> + sentence_ . resize ( kSentenceSize ) ; <nl> return Status : : OK ( ) ; <nl> } <nl> } ; <nl> mmm a / tensorflow / python / ops / rnn . py <nl> ppp b / tensorflow / python / ops / rnn . py <nl> def bidirectional_rnn ( cell_fw , cell_bw , inputs , <nl> forward and backward cell must match . The initial state for both directions <nl> is zero by default ( but can be set optionally ) and no intermediate states are <nl> ever returned - - the network is fully unrolled for the given ( passed in ) <nl> - length ( s ) of the sequence ( s ) . <nl> + length ( s ) of the sequence ( s ) or completely unrolled if length ( s ) is not given . <nl> <nl> Args : <nl> cell_fw : An instance of RNNCell , to be used for forward direction . <nl> def bidirectional_rnn ( cell_fw , cell_bw , inputs , <nl> initial_state_bw : ( optional ) Same as for initial_state_fw . <nl> dtype : ( optional ) The data type for the initial state . Required if either <nl> of the initial states are not provided . <nl> - sequence_length : An int64 vector ( tensor ) of size [ batch_size ] , containing <nl> - the actual lengths for each of the sequences . <nl> + sequence_length : ( optional ) An int64 vector ( tensor ) of size [ batch_size ] , <nl> + containing the actual lengths for each of the sequences . <nl> scope : VariableScope for the created subgraph ; defaults to " BiRNN " <nl> <nl> Returns : <nl> def bidirectional_rnn ( cell_fw , cell_bw , inputs , <nl> Raises : <nl> TypeError : If " cell_fw " or " cell_bw " is not an instance of RNNCell . <nl> ValueError : If inputs is None or an empty list . <nl> - ValueError : If sequence_length is not defined . <nl> " " " <nl> <nl> if not isinstance ( cell_fw , rnn_cell . RNNCell ) : <nl> def bidirectional_rnn ( cell_fw , cell_bw , inputs , <nl> raise TypeError ( " cell_bw must be an instance of RNNCell " ) <nl> if not isinstance ( inputs , list ) : <nl> raise TypeError ( " inputs must be a list " ) <nl> - if not sequence_length : <nl> - raise ValueError ( " sequence_length has to be defined " ) <nl> if not inputs : <nl> raise ValueError ( " inputs must not be empty " ) <nl> <nl> deleted file mode 100644 <nl> index d63c480fd9115 . . 0000000000000 <nl> mmm a / tensorflow / tensorboard / components / imports / d3 . html <nl> ppp / dev / null <nl> @ @ - 1 + 0 , 0 @ @ <nl> - < script src = " . . / . . / bower_components / d3 / d3 . min . js " > < / script > <nl> deleted file mode 100644 <nl> index b75f137cb280f . . 0000000000000 <nl> mmm a / tensorflow / tensorboard / components / imports / dagre . html <nl> ppp / dev / null <nl> <nl> - < link rel = " import " href = " graphlib . html " > <nl> - < script src = " . . / . . / bower_components / dagre / dist / dagre . core . js " > < / script > <nl> deleted file mode 100644 <nl> index 189eff1720160 . . 0000000000000 <nl> mmm a / tensorflow / tensorboard / components / imports / graphlib . html <nl> ppp / dev / null <nl> @ @ - 1 + 0 , 0 @ @ <nl> - < script src = " . . / . . / bower_components / graphlib / dist / graphlib . core . js " > < / script > <nl> deleted file mode 100644 <nl> index 1e94d2c1c4c3b . . 0000000000000 <nl> mmm a / tensorflow / tensorboard / components / imports / lodash . html <nl> ppp / dev / null <nl> @ @ - 1 + 0 , 0 @ @ <nl> - < script src = " . . / . . / bower_components / lodash / lodash . min . js " > < / script > <nl> deleted file mode 100644 <nl> index 08e636886a03d . . 0000000000000 <nl> mmm a / tensorflow / tensorboard / components / imports / plottable . html <nl> ppp / dev / null <nl> <nl> - < link rel = " import " href = " d3 . html " > <nl> - < script src = " . . / . . / bower_components / plottable / plottable . min . js " > < / script > <nl> - < link rel = " stylesheet " type = " text / css " href = " . . / . . / bower_components / plottable / plottable . css " > <nl> mmm a / tensorflow / tensorboard / components / tf - categorizer / tf - categorizer . html <nl> ppp b / tensorflow / tensorboard / components / tf - categorizer / tf - categorizer . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - toggle - button / paper - toggle - button . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / paper - toggle - button / paper - toggle - button . html " > <nl> <nl> < link rel = " import " href = " . . / tf - regex - group / tf - regex - group . html " > <nl> < link rel = " import " href = " . . / tf - dashboard - common / tensorboard - color . html " > <nl> <nl> < tf - regex - group id = " regex - group " regexes = " { { regexes } } " > < / tf - regex - group > <nl> < / div > <nl> < div id = " underscore - categorization " > <nl> - < span > Split On Underscores : < / span > <nl> - < paper - toggle - button checked = " { { splitOnUnderscore } } " > < / paper - toggle - button > <nl> + < paper - checkbox <nl> + checked $ = " { { splitOnUnderscore } } " <nl> + > Split on underscores < / paper - checkbox > <nl> < / div > <nl> < style > <nl> : host { <nl> display : block ; <nl> - padding - bottom : 5px ; <nl> - padding - top : 5px ; <nl> + padding - bottom : 15px ; <nl> } <nl> - <nl> - . inputs { <nl> - padding - left : 5px ; <nl> - } <nl> - <nl> - paper - toggle - button { <nl> - - - paper - toggle - button - checked - button - color : var ( - - tb - orange - strong ) ; <nl> - - - paper - toggle - button - checked - bar - color : var ( - - tb - orange - weak ) ; <nl> + paper - checkbox { <nl> + - - paper - checkbox - checked - color : var ( - - paper - grey - 700 ) ; <nl> + - - paper - checkbox - unchecked - color : var ( - - paper - grey - 700 ) ; <nl> + font - size : 14px ; <nl> } <nl> # underscore - categorization { <nl> - padding - left : 94px ; <nl> color : var ( - - paper - grey - 700 ) ; <nl> - font - size : 14px ; <nl> } <nl> < / style > <nl> < / template > <nl> mmm a / tensorflow / tensorboard / components / tf - collapsable - pane / tf - collapsable - pane . html <nl> ppp b / tensorflow / tensorboard / components / tf - collapsable - pane / tf - collapsable - pane . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / iron - collapse / iron - collapse . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / iron - collapse / iron - collapse . html " > <nl> <nl> < dom - module id = " tf - collapsable - pane " > <nl> < template > <nl> mmm a / tensorflow / tensorboard / components / tf - dashboard - common / dashboard - style . html <nl> ppp b / tensorflow / tensorboard / components / tf - dashboard - common / dashboard - style . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - styles / paper - styles . html " > <nl> + < link rel = " import " href = " . . / paper - styles / paper - styles . html " > <nl> < link rel = " import " href = " . . / tf - dashboard - common / tensorboard - color . html " > <nl> <nl> < dom - module id = " dashboard - style " > <nl> <nl> flex - grow : 1 ; <nl> } <nl> <nl> - # download - option { <nl> - padding - left : 55px ; <nl> - color : var ( - - paper - grey - 700 ) ; <nl> - font - size : 14px ; <nl> + . sidebar - section { <nl> + border - top : solid 1px rgba ( 0 , 0 , 0 , 0 . 12 ) ; <nl> + padding : 20px 30px ; <nl> + } <nl> + <nl> + . sidebar - section : first - child { <nl> + border : none ; <nl> } <nl> <nl> - # download - option paper - toggle - button { <nl> - - - paper - toggle - button - checked - button - color : var ( - - tb - orange - strong ) ; <nl> - - - paper - toggle - button - checked - bar - color : var ( - - tb - orange - weak ) ; <nl> + . sidebar - section : last - child { <nl> + flex - grow : 1 ; <nl> + display : flex ; <nl> + } <nl> <nl> + paper - checkbox { <nl> + - - paper - checkbox - checked - color : var ( - - paper - grey - 700 ) ; <nl> + - - paper - checkbox - unchecked - color : var ( - - paper - grey - 700 ) ; <nl> + font - size : 14px ; <nl> } <nl> + <nl> < / style > <nl> < / template > <nl> < / dom - module > <nl> mmm a / tensorflow / tensorboard / components / tf - dashboard - common / run - color - style . html <nl> ppp b / tensorflow / tensorboard / components / tf - dashboard - common / run - color - style . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - styles / paper - styles . html " > <nl> + < link rel = " import " href = " . . / paper - styles / paper - styles . html " > <nl> <nl> < dom - module id = " run - color - style " > <nl> < template > <nl> mmm a / tensorflow / tensorboard / components / tf - dashboard - common / scrollbar - style . html <nl> ppp b / tensorflow / tensorboard / components / tf - dashboard - common / scrollbar - style . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - styles / paper - styles . html " > <nl> + < link rel = " import " href = " . . / paper - styles / paper - styles . html " > <nl> <nl> < dom - module id = " scrollbar - style " > <nl> < template > <nl> mmm a / tensorflow / tensorboard / components / tf - dashboard - common / tensorboard - color . html <nl> ppp b / tensorflow / tensorboard / components / tf - dashboard - common / tensorboard - color . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> < style is = " custom - style " > <nl> <nl> : root { <nl> mmm a / tensorflow / tensorboard / components / tf - dashboard - common / tf - dashboard - layout . html <nl> ppp b / tensorflow / tensorboard / components / tf - dashboard - common / tf - dashboard - layout . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> < link rel = " import " href = " scrollbar - style . html " > <nl> < link rel = " import " href = " tensorboard - color . html " > <nl> < ! - - <nl> <nl> background - color : var ( - - tb - grey - darker ) ; <nl> background - image : linear - gradient ( to right , var ( - - tb - grey - lighter ) , var ( - - tb - grey - lighter ) ) ; <nl> overflow : ellipsis ; <nl> - padding - left : 10px ; <nl> - padding - right : 10px ; <nl> flex - grow : 0 ; <nl> flex - shrink : 0 ; <nl> } <nl> mmm a / tensorflow / tensorboard / components / tf - dashboard - common / tf - downloader . html <nl> ppp b / tensorflow / tensorboard / components / tf - dashboard - common / tf - downloader . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - dropdown - menu / paper - dropdown - menu . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - menu / paper - menu . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - item / paper - item . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / paper - dropdown - menu / paper - dropdown - menu . html " > <nl> + < link rel = " import " href = " . . / paper - menu / paper - menu . html " > <nl> + < link rel = " import " href = " . . / paper - item / paper - item . html " > <nl> <nl> < dom - module id = " tf - downloader " > <nl> < template > <nl> mmm a / tensorflow / tensorboard / components / tf - dashboard - common / tf - run - generator . html <nl> ppp b / tensorflow / tensorboard / components / tf - dashboard - common / tf - run - generator . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / iron - ajax / iron - ajax . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / iron - ajax / iron - ajax . html " > <nl> < link rel = " import " href = " . . / tf - imports / lodash . html " > <nl> <nl> < ! - - <nl> mmm a / tensorflow / tensorboard / components / tf - dashboard - common / tf - url - generator . html <nl> ppp b / tensorflow / tensorboard / components / tf - dashboard - common / tf - url - generator . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> <nl> < ! - - tf - url - generator is a plumbing component that provides two upward bindable properties : <nl> outRunsUrl and outValuesUrlGenerator . These may be used by the rest of the application to communicate <nl> mmm a / tensorflow / tensorboard / components / tf - event - dashboard / tf - chart . html <nl> ppp b / tensorflow / tensorboard / components / tf - event - dashboard / tf - chart . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> < link rel = " import " href = " . . / tf - imports / plottable . html " > <nl> < link rel = " import " href = " . . / tf - imports / lodash . html " > <nl> <nl> mmm a / tensorflow / tensorboard / components / tf - event - dashboard / tf - color - scale . html <nl> ppp b / tensorflow / tensorboard / components / tf - event - dashboard / tf - color - scale . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> < link rel = " import " href = " . . / tf - imports / lodash . html " > <nl> < link rel = " import " href = " . . / tf - imports / plottable . html " > <nl> <nl> mmm a / tensorflow / tensorboard / components / tf - event - dashboard / tf - data - coordinator . html <nl> ppp b / tensorflow / tensorboard / components / tf - event - dashboard / tf - data - coordinator . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> < link rel = " import " href = " . . / tf - imports / plottable . html " > <nl> < link rel = " import " href = " . . / tf - imports / lodash . html " > <nl> <nl> mmm a / tensorflow / tensorboard / components / tf - event - dashboard / tf - event - dashboard . html <nl> ppp b / tensorflow / tensorboard / components / tf - event - dashboard / tf - event - dashboard . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> < link rel = " import " href = " tf - data - coordinator . html " > <nl> < link rel = " import " href = " tf - tooltip - coordinator . html " > <nl> < link rel = " import " href = " tf - run - selector . html " > <nl> <nl> < link rel = " import " href = " . . / tf - categorizer / tf - categorizer . html " > <nl> < link rel = " import " href = " tf - chart . html " > <nl> < link rel = " import " href = " . . / tf - collapsable - pane / tf - collapsable - pane . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / iron - collapse / iron - collapse . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - icon - button / paper - icon - button . html " > <nl> + < link rel = " import " href = " . . / iron - collapse / iron - collapse . html " > <nl> + < link rel = " import " href = " . . / paper - icon - button / paper - icon - button . html " > <nl> < link rel = " import " href = " . . / tf - imports / lodash . html " > <nl> < link rel = " import " href = " . . / tf - dashboard - common / warning - style . html " > <nl> <nl> <nl> <nl> < tf - dashboard - layout > <nl> < div class = " sidebar " > <nl> - < tf - categorizer <nl> - id = " categorizer " <nl> - tags = " [ [ _visibleTags ] ] " <nl> - categories = " { { categories } } " <nl> - > < / tf - categorizer > <nl> - < span id = " download - option " > <nl> - Show Data Download Links : <nl> - < paper - toggle - button checked = " { { _show_download_links } } " > < / paper - toggle - button > <nl> - < / span > <nl> - <nl> - < tf - x - type - selector <nl> - id = " xTypeSelector " <nl> - out - x - type = " { { xType } } " <nl> - > < / tf - x - type - selector > <nl> - <nl> - < tf - run - selector <nl> - id = " runSelector " <nl> - runs = " [ [ _runs ] ] " <nl> - class - scale = " [ [ classScale ] ] " <nl> - out - selected = " { { selectedRuns } } " <nl> - tooltips = " [ [ tooltipMap ] ] " <nl> - closest - run = " [ [ closestRun ] ] " <nl> - x - value = " [ [ tooltipXValue ] ] " <nl> - x - type = " [ [ xType ] ] " <nl> - > < / tf - run - selector > <nl> - <nl> + < div class = " sidebar - section " > <nl> + < tf - categorizer <nl> + id = " categorizer " <nl> + tags = " [ [ _visibleTags ] ] " <nl> + categories = " { { categories } } " <nl> + > < / tf - categorizer > <nl> + < paper - checkbox <nl> + id = " download - option " <nl> + checked $ = " { { _show_download_links } } " <nl> + > Data download links < / paper - checkbox > <nl> + < / div > <nl> + < div class = " sidebar - section " > <nl> + < tf - x - type - selector <nl> + id = " xTypeSelector " <nl> + out - x - type = " { { xType } } " <nl> + > < / tf - x - type - selector > <nl> + < / div > <nl> + < div class = " sidebar - section " > <nl> + < tf - run - selector <nl> + id = " runSelector " <nl> + runs = " [ [ _runs ] ] " <nl> + class - scale = " [ [ classScale ] ] " <nl> + out - selected = " { { selectedRuns } } " <nl> + tooltips = " [ [ tooltipMap ] ] " <nl> + closest - run = " [ [ closestRun ] ] " <nl> + x - value = " [ [ tooltipXValue ] ] " <nl> + x - type = " [ [ xType ] ] " <nl> + > < / tf - run - selector > <nl> + < / div > <nl> < / div > <nl> < div class = " center " > <nl> < template is = " dom - if " if = " [ [ ! categories . length ] ] " > <nl> mmm a / tensorflow / tensorboard / components / tf - event - dashboard / tf - run - selector . html <nl> ppp b / tensorflow / tensorboard / components / tf - event - dashboard / tf - run - selector . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - button / paper - button . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - checkbox / paper - checkbox . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / paper - button / paper - button . html " > <nl> + < link rel = " import " href = " . . / paper - checkbox / paper - checkbox . html " > <nl> < link rel = " import " href = " . . / tf - imports / lodash . html " > <nl> < link rel = " import " href = " . . / tf - dashboard - common / scrollbar - style . html " > <nl> < link rel = " import " href = " . . / tf - multi - checkbox / tf - multi - checkbox . html " > <nl> <nl> < / div > <nl> < / template > <nl> < template is = " dom - if " if = " [ [ ! xValue ] ] " > <nl> - < div id = " tooltip - help " class = " tooltip - container " > <nl> - Selected Runs : <nl> - < / div > <nl> + < h3 id = " tooltip - help " class = " tooltip - container " > <nl> + Selected Runs <nl> + < / h3 > <nl> < / template > <nl> < / div > <nl> < tf - multi - checkbox <nl> <nl> height : 0px ; / * hackhack So the flex - grow takes over and gives it space * / <nl> } <nl> . x - button { <nl> - width : calc ( 50 % - . 9em ) ; <nl> font - size : 14px ; <nl> background - color : var ( - - paper - grey - 500 ) ; <nl> margin - top : 5px ; <nl> <nl> . x - tooltip - value { <nl> align - self : flex - end ; <nl> } <nl> + # tooltip - help { <nl> + color : var ( - - paper - grey - 800 ) ; <nl> + margin : 0 ; <nl> + font - weight : normal ; <nl> + font - size : 14px ; <nl> + margin - bottom : 5px ; <nl> + } <nl> + paper - button { <nl> + margin - left : 0 ; <nl> + } <nl> < / style > <nl> < / template > <nl> < script > <nl> mmm a / tensorflow / tensorboard / components / tf - event - dashboard / tf - tooltip - coordinator . html <nl> ppp b / tensorflow / tensorboard / components / tf - event - dashboard / tf - tooltip - coordinator . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> <nl> < ! - - tf - tooltip - coordinator is a plumbing component that provides a TooltipUpdater , <nl> which is a function that allows modification of the values within the tooltip - coordinator <nl> mmm a / tensorflow / tensorboard / components / tf - event - dashboard / tf - x - type - selector . html <nl> ppp b / tensorflow / tensorboard / components / tf - event - dashboard / tf - x - type - selector . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - button / paper - button . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / paper - button / paper - button . html " > <nl> < link rel = " import " href = " . . / tf - dashboard - common / tensorboard - color . html " > <nl> <nl> < ! - - <nl> <nl> < dom - module id = " tf - x - type - selector " > <nl> < template > <nl> < div id = " buttons " > <nl> - < p > X Type : < / p > <nl> + < h3 > Horizontal Axis < / h3 > <nl> < paper - button <nl> class = " x - button selected " <nl> id = " step " <nl> <nl> < / div > <nl> < style > <nl> . x - button { <nl> - width : 29 % ; <nl> + width : 30 % ; <nl> font - size : 14px ; <nl> background - color : var ( - - paper - grey - 500 ) ; <nl> margin - top : 5px ; <nl> color : white ; <nl> } <nl> <nl> + . x - button : first - of - type { <nl> + margin - left : 0 ; <nl> + } <nl> + <nl> . x - button . selected { <nl> font - weight : bold ; <nl> background - color : var ( - - tb - orange - strong ) ! important ; <nl> } <nl> <nl> - # buttons p { <nl> + # buttons h3 { <nl> color : var ( - - paper - grey - 800 ) ; <nl> margin : 0 ; <nl> + font - weight : normal ; <nl> + font - size : 14px ; <nl> + margin - bottom : 5px ; <nl> } <nl> < / style > <nl> < / template > <nl> mmm a / tensorflow / tensorboard / components / tf - graph - board / tf - graph - board . html <nl> ppp b / tensorflow / tensorboard / components / tf - graph - board / tf - graph - board . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> < link rel = " import " href = " . . / tf - graph / tf - graph . html " > <nl> < link rel = " import " href = " . . / tf - graph - info / tf - graph - info . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - progress / paper - progress . html " > <nl> + < link rel = " import " href = " . . / paper - progress / paper - progress . html " > <nl> < ! - - Element for putting tf - graph and tf - graph - info side by side . <nl> <nl> Example <nl> mmm a / tensorflow / tensorboard / components / tf - graph - common / test / index . html <nl> ppp b / tensorflow / tensorboard / components / tf - graph - common / test / index . html <nl> <nl> < html > <nl> < head > <nl> < meta charset = " utf - 8 " > <nl> - < script src = " . . / . . / . . / bower_components / webcomponentsjs / webcomponents - lite . min . js " > < / script > <nl> + < script src = " . . / . . / webcomponentsjs / webcomponents - lite . min . js " > < / script > <nl> < script src = " . . / . . / web - component - tester / browser . js " > < / script > <nl> < link rel = " import " href = " . . / tf - graph - common . html " > <nl> < / head > <nl> mmm a / tensorflow / tensorboard / components / tf - graph - dashboard / tf - graph - dashboard . html <nl> ppp b / tensorflow / tensorboard / components / tf - graph - dashboard / tf - graph - dashboard . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> < link rel = " import " href = " . . / tf - graph - loader / tf - graph - loader . html " > <nl> < link rel = " import " href = " . . / tf - graph - board / tf - graph - board . html " > <nl> < link rel = " import " href = " . . / tf - graph / tf - graph - controls . html " > <nl> mmm a / tensorflow / tensorboard / components / tf - graph - info / tf - graph - info . html <nl> ppp b / tensorflow / tensorboard / components / tf - graph - info / tf - graph - info . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> < link rel = " import " href = " tf - node - info . html " > <nl> < dom - module id = " tf - graph - info " > <nl> < template > <nl> mmm a / tensorflow / tensorboard / components / tf - graph - info / tf - node - info . html <nl> ppp b / tensorflow / tensorboard / components / tf - graph - info / tf - node - info . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / iron - collapse / iron - collapse . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / iron - list / iron - list . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - icon - button / paper - icon - button . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - item / all - imports . html " > <nl> + < link rel = " import " href = " . . / iron - collapse / iron - collapse . html " > <nl> + < link rel = " import " href = " . . / iron - list / iron - list . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / paper - icon - button / paper - icon - button . html " > <nl> + < link rel = " import " href = " . . / paper - item / all - imports . html " > <nl> < link rel = " import " href = " . . / tf - graph - common / tf - graph - common . html " > <nl> < link rel = " import " href = " . . / tf - graph / tf - graph - icon . html " > <nl> < link rel = " import " href = " tf - node - list - item . html " > <nl> mmm a / tensorflow / tensorboard / components / tf - graph - info / tf - node - list - item . html <nl> ppp b / tensorflow / tensorboard / components / tf - graph - info / tf - node - list - item . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> < link rel = " import " href = " . . / tf - graph / tf - graph - icon . html " > <nl> <nl> < dom - module id = " tf - node - list - item " > <nl> mmm a / tensorflow / tensorboard / components / tf - graph - loader / test / index . html <nl> ppp b / tensorflow / tensorboard / components / tf - graph - loader / test / index . html <nl> <nl> < html > <nl> < head > <nl> < meta charset = " utf - 8 " > <nl> - < script src = " . . / . . / . . / bower_components / webcomponentsjs / webcomponents - lite . min . js " > < / script > <nl> + < script src = " . . / . . / webcomponentsjs / webcomponents - lite . min . js " > < / script > <nl> < script src = " . . / . . / web - component - tester / browser . js " > < / script > <nl> < link rel = " import " href = " . . / tf - graph - loader . html " > <nl> < / head > <nl> mmm a / tensorflow / tensorboard / components / tf - graph - loader / tf - graph - loader . html <nl> ppp b / tensorflow / tensorboard / components / tf - graph - loader / tf - graph - loader . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> <nl> < ! - - <nl> An element which provides a filter parsing for pbtxt to graph output . <nl> mmm a / tensorflow / tensorboard / components / tf - graph / tf - graph - controls . html <nl> ppp b / tensorflow / tensorboard / components / tf - graph / tf - graph - controls . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - menu / paper - menu . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - dropdown - menu / paper - dropdown - menu . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / paper - menu / paper - menu . html " > <nl> + < link rel = " import " href = " . . / paper - dropdown - menu / paper - dropdown - menu . html " > <nl> <nl> < dom - module id = " tf - graph - controls " > <nl> < template > <nl> mmm a / tensorflow / tensorboard / components / tf - graph / tf - graph - icon . html <nl> ppp b / tensorflow / tensorboard / components / tf - graph / tf - graph - icon . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> <nl> < dom - module id = " tf - graph - icon " > <nl> < template > <nl> mmm a / tensorflow / tensorboard / components / tf - graph / tf - graph - minimap . html <nl> ppp b / tensorflow / tensorboard / components / tf - graph / tf - graph - minimap . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> < script src = " . . / tf - graph - common / lib / scene / minimap . js " > < / script > <nl> < dom - module id = " tf - graph - minimap " > <nl> < template > <nl> mmm a / tensorflow / tensorboard / components / tf - graph / tf - graph - params . html <nl> ppp b / tensorflow / tensorboard / components / tf - graph / tf - graph - params . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> < ! - - <nl> Module for adjusting render graph building parameter . <nl> - - > <nl> mmm a / tensorflow / tensorboard / components / tf - graph / tf - graph - scene . html <nl> ppp b / tensorflow / tensorboard / components / tf - graph / tf - graph - scene . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> < link rel = " import " href = " tf - graph - style . html " > <nl> < link rel = " import " href = " tf - graph - minimap . html " > <nl> <nl> mmm a / tensorflow / tensorboard / components / tf - graph / tf - graph . html <nl> ppp b / tensorflow / tensorboard / components / tf - graph / tf - graph . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / iron - flex - layout / iron - flex - layout . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / iron - icons / iron - icons . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - button / paper - button . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - input / paper - input . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - toggle - button / paper - toggle - button . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / iron - flex - layout / iron - flex - layout . html " > <nl> + < link rel = " import " href = " . . / iron - icons / iron - icons . html " > <nl> + < link rel = " import " href = " . . / paper - button / paper - button . html " > <nl> + < link rel = " import " href = " . . / paper - input / paper - input . html " > <nl> + < link rel = " import " href = " . . / paper - toggle - button / paper - toggle - button . html " > <nl> < link rel = " import " href = " . . / tf - graph - common / tf - graph - common . html " > <nl> < link rel = " import " href = " tf - graph - scene . html " > <nl> < link rel = " import " href = " tf - graph - params . html " > <nl> mmm a / tensorflow / tensorboard / components / tf - histogram - dashboard / tf - histogram - dashboard . html <nl> ppp b / tensorflow / tensorboard / components / tf - histogram - dashboard / tf - histogram - dashboard . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> < link rel = " import " href = " . . / tf - event - dashboard / tf - data - coordinator . html " > <nl> < link rel = " import " href = " . . / tf - event - dashboard / tf - tooltip - coordinator . html " > <nl> < link rel = " import " href = " . . / tf - event - dashboard / tf - run - selector . html " > <nl> <nl> < link rel = " import " href = " . . / tf - categorizer / tf - categorizer . html " > <nl> < link rel = " import " href = " . . / tf - event - dashboard / tf - chart . html " > <nl> < link rel = " import " href = " . . / tf - collapsable - pane / tf - collapsable - pane . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / iron - collapse / iron - collapse . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - icon - button / paper - icon - button . html " > <nl> + < link rel = " import " href = " . . / iron - collapse / iron - collapse . html " > <nl> + < link rel = " import " href = " . . / paper - icon - button / paper - icon - button . html " > <nl> < link rel = " import " href = " . . / tf - imports / lodash . html " > <nl> <nl> < ! - - <nl> <nl> <nl> < tf - dashboard - layout > <nl> < div class = " sidebar " > <nl> - <nl> - < tf - categorizer <nl> - id = " categorizer " <nl> - tags = " [ [ _visibleTags ] ] " <nl> - categories = " { { categories } } " <nl> - > < / tf - categorizer > <nl> - <nl> - < tf - x - type - selector <nl> - id = " xTypeSelector " <nl> - out - x - type = " { { xType } } " <nl> - > < / tf - x - type - selector > <nl> - <nl> - < tf - run - selector <nl> - id = " runSelector " <nl> - runs = " [ [ _runs ] ] " <nl> - class - scale = " [ [ classScale ] ] " <nl> - out - selected = " { { selectedRuns } } " <nl> - tooltips = " [ [ tooltipMap ] ] " <nl> - closest - run = " [ [ closestRun ] ] " <nl> - x - value = " [ [ tooltipXValue ] ] " <nl> - x - type = " [ [ xType ] ] " <nl> - > < / tf - run - selector > <nl> - <nl> + < div class = " sidebar - section " > <nl> + < tf - categorizer <nl> + id = " categorizer " <nl> + tags = " [ [ _visibleTags ] ] " <nl> + categories = " { { categories } } " <nl> + > < / tf - categorizer > <nl> + < / div > <nl> + < div class = " sidebar - section " > <nl> + < tf - x - type - selector <nl> + id = " xTypeSelector " <nl> + out - x - type = " { { xType } } " <nl> + > < / tf - x - type - selector > <nl> + < / div > <nl> + < div class = " sidebar - section " > <nl> + < tf - run - selector <nl> + id = " runSelector " <nl> + runs = " [ [ _runs ] ] " <nl> + class - scale = " [ [ classScale ] ] " <nl> + out - selected = " { { selectedRuns } } " <nl> + tooltips = " [ [ tooltipMap ] ] " <nl> + closest - run = " [ [ closestRun ] ] " <nl> + x - value = " [ [ tooltipXValue ] ] " <nl> + x - type = " [ [ xType ] ] " <nl> + > < / tf - run - selector > <nl> + < / div > <nl> < / div > <nl> <nl> < div class = " center " > <nl> mmm a / tensorflow / tensorboard / components / tf - image - dashboard / tf - image - dashboard . html <nl> ppp b / tensorflow / tensorboard / components / tf - image - dashboard / tf - image - dashboard . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> < link rel = " import " href = " . . / tf - dashboard - common / tf - run - generator . html " > <nl> < link rel = " import " href = " . . / tf - dashboard - common / tf - url - generator . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - icon - button / paper - icon - button . html " > <nl> + < link rel = " import " href = " . . / paper - icon - button / paper - icon - button . html " > <nl> < link rel = " import " href = " tf - image - grid . html " > <nl> < link rel = " import " href = " . . / tf - dashboard - common / warning - style . html " > <nl> <nl> mmm a / tensorflow / tensorboard / components / tf - image - dashboard / tf - image - grid . html <nl> ppp b / tensorflow / tensorboard / components / tf - image - dashboard / tf - image - grid . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - styles / paper - styles . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / paper - styles / paper - styles . html " > <nl> < link rel = " import " href = " tf - image - loader . html " > <nl> < link rel = " import " href = " . . / tf - imports / lodash . html " > <nl> < link rel = " import " href = " . . / tf - dashboard - common / scrollbar - style . html " > <nl> mmm a / tensorflow / tensorboard / components / tf - image - dashboard / tf - image - loader . html <nl> ppp b / tensorflow / tensorboard / components / tf - image - dashboard / tf - image - loader . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> < link rel = " import " href = " . . / tf - imports / lodash . html " > <nl> <nl> < ! - - <nl> mmm a / tensorflow / tensorboard / components / tf - imports / d3 . html <nl> ppp b / tensorflow / tensorboard / components / tf - imports / d3 . html <nl> @ @ - 1 + 1 @ @ <nl> - < script src = " . . / . . / bower_components / d3 / d3 . js " > < / script > <nl> + < script src = " . . / d3 / d3 . js " > < / script > <nl> mmm a / tensorflow / tensorboard / components / tf - imports / dagre . html <nl> ppp b / tensorflow / tensorboard / components / tf - imports / dagre . html <nl> <nl> HTML imports are non - blocking thus getting the depedency ' graphlib ' <nl> and ' lodash ' via script imports instead . <nl> - - > <nl> - < script src = " . . / . . / bower_components / lodash / lodash . min . js " > < / script > <nl> - < script src = " . . / . . / bower_components / graphlib / dist / graphlib . core . js " > < / script > <nl> - < script src = " . . / . . / bower_components / dagre / dist / dagre . core . js " > < / script > <nl> + < script src = " . . / lodash / lodash . min . js " > < / script > <nl> + < script src = " . . / graphlib / dist / graphlib . core . js " > < / script > <nl> + < script src = " . . / dagre / dist / dagre . core . js " > < / script > <nl> mmm a / tensorflow / tensorboard / components / tf - imports / google / d3 . html <nl> ppp b / tensorflow / tensorboard / components / tf - imports / google / d3 . html <nl> @ @ - 1 + 1 @ @ <nl> - < script src = " . . / . . / bower_components / d3 - library / d3 . js " > < / script > <nl> + < script src = " . . / d3 - library / d3 . js " > < / script > <nl> mmm a / tensorflow / tensorboard / components / tf - imports / google / dagre . html <nl> ppp b / tensorflow / tensorboard / components / tf - imports / google / dagre . html <nl> @ @ - 1 + 1 @ @ <nl> - < link rel = " import " href = " . . / . . / bower_components / dagre - library / dagre . html " > <nl> + < link rel = " import " href = " . . / dagre - library / dagre . html " > <nl> mmm a / tensorflow / tensorboard / components / tf - imports / google / graphlib . html <nl> ppp b / tensorflow / tensorboard / components / tf - imports / google / graphlib . html <nl> @ @ - 1 + 1 @ @ <nl> - < link rel = " import " href = " . . / . . / bower_components / graphlib - library / graphlib . html " > <nl> + < link rel = " import " href = " . . / graphlib - library / graphlib . html " > <nl> mmm a / tensorflow / tensorboard / components / tf - imports / google / lodash . html <nl> ppp b / tensorflow / tensorboard / components / tf - imports / google / lodash . html <nl> @ @ - 1 + 1 @ @ <nl> - < link rel = " import " href = " . . / . . / bower_components / lodash - library / lodash - library . html " > <nl> + < link rel = " import " href = " . . / lodash - library / lodash - library . html " > <nl> mmm a / tensorflow / tensorboard / components / tf - imports / google / plottable . html <nl> ppp b / tensorflow / tensorboard / components / tf - imports / google / plottable . html <nl> <nl> < link rel = " import " href = " d3 . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / plottable - library / plottable . html " > <nl> + < link rel = " import " href = " . . / plottable - library / plottable . html " > <nl> mmm a / tensorflow / tensorboard / components / tf - imports / graphlib . html <nl> ppp b / tensorflow / tensorboard / components / tf - imports / graphlib . html <nl> <nl> - < script src = " . . / . . / bower_components / lodash / lodash . min . js " > < / script > <nl> - < script src = " . . / . . / bower_components / graphlib / dist / graphlib . core . js " > < / script > <nl> + < script src = " . . / lodash / lodash . min . js " > < / script > <nl> + < script src = " . . / graphlib / dist / graphlib . core . js " > < / script > <nl> mmm a / tensorflow / tensorboard / components / tf - imports / lodash . html <nl> ppp b / tensorflow / tensorboard / components / tf - imports / lodash . html <nl> @ @ - 1 + 1 @ @ <nl> - < script src = " . . / . . / bower_components / lodash / lodash . min . js " > < / script > <nl> + < script src = " . . / lodash / lodash . min . js " > < / script > <nl> mmm a / tensorflow / tensorboard / components / tf - imports / plottable . html <nl> ppp b / tensorflow / tensorboard / components / tf - imports / plottable . html <nl> <nl> < link rel = " import " href = " d3 . html " > <nl> - < script src = " . . / . . / bower_components / plottable / plottable . js " > < / script > <nl> - < link rel = " stylesheet " type = " text / css " href = " . . / . . / bower_components / plottable / plottable . css " > <nl> + < script src = " . . / plottable / plottable . js " > < / script > <nl> + < link rel = " stylesheet " type = " text / css " href = " . . / plottable / plottable . css " > <nl> mmm a / tensorflow / tensorboard / components / tf - multi - checkbox / tf - multi - checkbox . html <nl> ppp b / tensorflow / tensorboard / components / tf - multi - checkbox / tf - multi - checkbox . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - checkbox / paper - checkbox . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / paper - checkbox / paper - checkbox . html " > <nl> < link rel = " import " href = " . . / tf - imports / lodash . html " > <nl> < link rel = " import " href = " . . / tf - dashboard - common / scrollbar - style . html " > <nl> < link rel = " import " href = " . . / tf - dashboard - common / run - color - style . html " > <nl> mmm a / tensorflow / tensorboard / components / tf - regex - group / tf - regex - group . html <nl> ppp b / tensorflow / tensorboard / components / tf - regex - group / tf - regex - group . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - icon - button / paper - icon - button . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / iron - icons / iron - icons . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - toggle - button / paper - toggle - button . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - input / paper - input . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / paper - icon - button / paper - icon - button . html " > <nl> + < link rel = " import " href = " . . / iron - icons / iron - icons . html " > <nl> + < link rel = " import " href = " . . / paper - toggle - button / paper - toggle - button . html " > <nl> + < link rel = " import " href = " . . / paper - input / paper - input . html " > <nl> <nl> < ! - - <nl> ` tf - regex - group ` provides an input component for a group of regular expressions . <nl> <nl> < div class = " regex - list " > <nl> < template is = " dom - repeat " items = " { { rawRegexes } } " > <nl> < div class = " regex - line " > <nl> + < paper - checkbox <nl> + class = " active - button " <nl> + checked = " { { item . active } } " <nl> + disabled = " [ [ ! item . valid ] ] " <nl> + > < / paper - checkbox > <nl> < paper - input <nl> id = " text - input " <nl> class = " regex - input " <nl> - label = " input new regex " <nl> + label = " Regex filter " <nl> no - label - float <nl> bind - value = " { { item . regex } } " <nl> invalid = " [ [ ! item . valid ] ] " <nl> on - keyup = " moveFocus " <nl> > < / paper - input > <nl> - < paper - toggle - button <nl> - class = " active - button " <nl> - checked = " { { item . active } } " <nl> - disabled = " [ [ ! item . valid ] ] " <nl> - > < / paper - toggle - button > <nl> - <nl> < paper - icon - button <nl> - icon = " delete " <nl> + icon = " close " <nl> class = " delete - button " <nl> aria - label = " Delete Regex " <nl> tabindex = " 0 " <nl> <nl> < / div > <nl> < style > <nl> . regex - input { <nl> - width : 210px ; <nl> + width : 230px ; <nl> display : inline - block ; <nl> - padding - left : 8px ; <nl> - padding - right : 5px ; <nl> + margin - left : - 3px ; <nl> } <nl> <nl> - . active - button { <nl> - - - paper - toggle - button - checked - button - color : var ( - - tb - orange - strong ) ; <nl> - - - paper - toggle - button - checked - bar - color : var ( - - tb - orange - weak ) ; <nl> - border : none ; <nl> + paper - checkbox { <nl> + - - paper - checkbox - checked - color : var ( - - paper - grey - 700 ) ; <nl> + - - paper - checkbox - unchecked - color : var ( - - paper - grey - 700 ) ; <nl> } <nl> <nl> . delete - button { <nl> - color : var ( - - paper - pink - 900 ) ; <nl> - width : 24px ; <nl> - height : 24px ; <nl> + color : var ( - - paper - grey - 700 ) ; <nl> + width : 40px ; <nl> + height : 40px ; <nl> + margin - right : - 10px ; <nl> } <nl> + <nl> . regex - list { <nl> margin - bottom : 10px ; <nl> } <nl> + <nl> paper - input { <nl> - - paper - input - container - focus - color : var ( - - tb - orange - strong ) ; <nl> } <nl> mmm a / tensorflow / tensorboard / components / tf - tensorboard / tf - tensorboard . html <nl> ppp b / tensorflow / tensorboard / components / tf - tensorboard / tf - tensorboard . html <nl> <nl> - < link rel = " import " href = " . . / . . / bower_components / polymer / polymer . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - tabs / paper - tabs . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - toolbar / paper - toolbar . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - button / paper - button . html " > <nl> - < link rel = " import " href = " . . / . . / bower_components / paper - header - panel / paper - header - panel . html " > <nl> + < link rel = " import " href = " . . / polymer / polymer . html " > <nl> + < link rel = " import " href = " . . / paper - tabs / paper - tabs . html " > <nl> + < link rel = " import " href = " . . / paper - toolbar / paper - toolbar . html " > <nl> + < link rel = " import " href = " . . / paper - button / paper - button . html " > <nl> + < link rel = " import " href = " . . / paper - header - panel / paper - header - panel . html " > <nl> < link rel = " import " href = " . . / tf - event - dashboard / tf - event - dashboard . html " > <nl> < link rel = " import " href = " . . / tf - histogram - dashboard / tf - histogram - dashboard . html " > <nl> < link rel = " import " href = " . . / tf - image - dashboard / tf - image - dashboard . html " > <nl> <nl> } <nl> . toolbar - title { <nl> font - size : 20px ; <nl> - margin - left : 6px ; <nl> + margin - left : 10px ; <nl> text - rendering : optimizeLegibility ; <nl> letter - spacing : - 0 . 025em ; <nl> } <nl> <nl> text - transform : uppercase ; <nl> height : 100 % ; <nl> } <nl> + paper - tabs { <nl> + - - paper - tabs - selection - bar - color : white ; <nl> + } <nl> : host { <nl> height : 100 % ; <nl> display : block ; <nl> mmm a / tensorflow / tensorboard / gulpfile . js <nl> ppp b / tensorflow / tensorboard / gulpfile . js <nl> var typescript = require ( ' typescript ' ) ; <nl> var gutil = require ( ' gulp - util ' ) ; <nl> var tslint = require ( ' gulp - tslint ' ) ; <nl> var server = require ( ' gulp - server - livereload ' ) ; <nl> - var concat = require ( ' gulp - concat ' ) ; <nl> var merge = require ( ' merge2 ' ) ; <nl> var gulpFilter = require ( ' gulp - filter ' ) ; <nl> var vulcanize = require ( ' gulp - vulcanize ' ) ; <nl> - var rename = require ( ' gulp - rename ' ) ; <nl> var minimist = require ( ' minimist ' ) ; <nl> var replace = require ( ' gulp - replace ' ) ; <nl> var fs = require ( ' fs ' ) ; <nl> mmm a / tensorflow / tensorboard / package . json <nl> ppp b / tensorflow / tensorboard / package . json <nl> <nl> " gulp " : " ~ 3 . 9 . 0 " , <nl> " gulp - typescript " : " ~ 2 . 8 . 0 " , <nl> " tsd " : " ~ 0 . 6 . 3 " , <nl> - " chai " : " ~ 3 . 2 . 0 " , <nl> " typescript " : " ~ 1 . 5 . 3 " , <nl> " gulp - cli " : " ~ 0 . 3 . 0 " , <nl> " gulp - util " : " ~ 3 . 0 . 6 " , <nl> - " gulp - mocha - phantomjs " : " ~ 0 . 8 . 0 " , <nl> - " mocha " : " ~ 2 . 2 . 5 " , <nl> " gulp - tslint " : " ~ 3 . 1 . 1 - beta " , <nl> " gulp - server - livereload " : " ~ 1 . 4 . 0 " , <nl> - " gulp - concat " : " ~ 2 . 6 . 0 " , <nl> " merge2 " : " ~ 0 . 3 . 6 " , <nl> " gulp - filter " : " ~ 3 . 0 . 0 " , <nl> - " gulp - rename " : " ~ 1 . 2 . 2 " , <nl> " vulcanize " : " ~ 1 . 14 . 0 " , <nl> " gulp - vulcanize " : " ~ 6 . 0 . 1 " , <nl> " minimist " : " ~ 1 . 2 . 0 " , <nl> mmm a / tensorflow / tools / ci_build / builds / gpu_pip . sh <nl> ppp b / tensorflow / tools / ci_build / builds / gpu_pip . sh <nl> <nl> set - e <nl> <nl> bazel build - c opt - - config = cuda / / tensorflow / tools / pip_package : build_pip_package <nl> - rm - rf / root / . cache / tensorflow - pip <nl> - bazel - bin / tensorflow / tools / pip_package / build_pip_package / root / . cache / tensorflow - pip <nl> + rm - rf $ HOME / . cache / tensorflow - pip <nl> + bazel - bin / tensorflow / tools / pip_package / build_pip_package $ HOME / . cache / tensorflow - pip <nl>
Merge commit for internal changes
tensorflow/tensorflow
b1cabed4e60015602dacd66ea39d419db50c3e1b
2015-12-17T18:56:06Z
mmm a / tensorflow / contrib / learn / python / learn / estimators / head . py <nl> ppp b / tensorflow / contrib / learn / python / learn / estimators / head . py <nl> def _logits_to_predictions ( self , logits ) : <nl> key = prediction_key . PredictionKey . SCORES <nl> with ops . name_scope ( None , " predictions " , ( logits , ) ) : <nl> if self . logits_dimension = = 1 : <nl> - logits = array_ops . squeeze ( logits , squeeze_dims = ( 1 , ) , name = key ) <nl> + logits = array_ops . squeeze ( logits , axis = ( 1 , ) , name = key ) <nl> return { key : self . _link_fn ( logits ) } <nl> <nl> def _metrics ( self , eval_loss , predictions , labels , weights ) : <nl> def _softmax_cross_entropy_loss ( labels , logits , weights = None ) : <nl> is_squeezed_labels = False <nl> # TODO ( ptucker ) : This will break for dynamic shapes . <nl> if len ( labels . get_shape ( ) ) = = 2 : <nl> - labels = array_ops . squeeze ( labels , squeeze_dims = ( 1 , ) ) <nl> + labels = array_ops . squeeze ( labels , axis = ( 1 , ) ) <nl> is_squeezed_labels = True <nl> <nl> loss = nn . sparse_softmax_cross_entropy_with_logits ( <nl> mmm a / tensorflow / contrib / learn / python / learn / ops / losses_ops . py <nl> ppp b / tensorflow / contrib / learn / python / learn / ops / losses_ops . py <nl> def mean_squared_error_regressor ( tensor_in , labels , weights , biases , name = None ) : <nl> [ tensor_in , labels ] ) : <nl> predictions = nn . xw_plus_b ( tensor_in , weights , biases ) <nl> if len ( labels . get_shape ( ) ) = = 1 and len ( predictions . get_shape ( ) ) = = 2 : <nl> - predictions = array_ops_ . squeeze ( predictions , squeeze_dims = [ 1 ] ) <nl> + predictions = array_ops_ . squeeze ( predictions , axis = [ 1 ] ) <nl> return predictions , losses . mean_squared_error ( labels , predictions ) <nl> <nl> <nl>
Fix squeeze_dims warnings in tf . contrib . learn
tensorflow/tensorflow
685fec394235b409b58d7ef1c4a26655f9fedcfd
2018-04-22T17:55:35Z
mmm a / docker / build / installers / install_common_modules . sh <nl> ppp b / docker / build / installers / install_common_modules . sh <nl> bash / tmp / installers / install_osqp . sh <nl> info " Install qpOASES . . . " <nl> bash / tmp / installers / install_qp_oases . sh <nl> <nl> + apt - get - y update & & \ <nl> + apt - get - y install libsqlite3 - dev <nl> <nl> # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # <nl> <nl> bash / tmp / installers / install_tf2 . sh <nl> COMPONENT = " modules / prediction " <nl> info " Install support for [ $ { COMPONENT } ] . . . " <nl> # bash / tmp / installers / install_libtorch . sh <nl> - apt - get - y update & & \ <nl> - apt - get - y install \ <nl> - libopencv - core - dev \ <nl> - libopencv - imgproc - dev \ <nl> - libopencv - imgcodecs - dev \ <nl> - libopencv - highgui - dev \ <nl> - libboost - all - dev <nl> + bash / tmp / installers / install_opencv . sh <nl> <nl> # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # <nl> <nl> info " Install support for [ $ { COMPONENT } ] . . . " <nl> <nl> apt - get - y update & & \ <nl> apt - get - y install \ <nl> - libtinyxml2 - dev \ <nl> - libboost - all - dev <nl> + libtinyxml2 - dev <nl> + <nl> # CUDA & nlohmann / json <nl> <nl> # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # <nl> apt - get - y update & & \ <nl> <nl> # Modules that DON ' T need pre - installed dependencies <nl> # modules / v2x <nl> - # modules / third_party_perception <nl> # modules / storytelling <nl> # modules / routing <nl> <nl>
Docker : adjust installers for common modules
ApolloAuto/apollo
abfd9066c4ce793eb7ed926875566c43e51c8a69
2020-06-08T05:38:56Z
mmm a / bazel / cc_grpc_library . bzl <nl> ppp b / bazel / cc_grpc_library . bzl <nl> <nl> <nl> load ( " / / : bazel / generate_cc . bzl " , " generate_cc " ) <nl> <nl> - def cc_grpc_library ( name , srcs , deps , proto_only , use_external = False , * * kwargs ) : <nl> + def cc_grpc_library ( name , srcs , deps , proto_only , well_known_protos , use_external = False , * * kwargs ) : <nl> " " " Generates C + + grpc classes from a . proto file . <nl> <nl> Assumes the generated classes will be used in cc_api_version = 2 . <nl> def cc_grpc_library ( name , srcs , deps , proto_only , use_external = False , * * kwargs <nl> srcs : a single proto_library , which wraps the . proto files with services . <nl> deps : a list of C + + proto_library ( or cc_proto_library ) which provides <nl> the compiled code of any message that the services depend on . <nl> + well_known_protos : The target from protobuf library that exports well <nl> + known protos . Currently it will only work if the value is <nl> + " @ submodule_protobuf / / : well_known_protos " <nl> use_external : When True the grpc deps are prefixed with / / external . This <nl> allows grpc to be used as a dependency in other bazel projects . <nl> * * kwargs : rest of arguments , e . g . , compatible_with and visibility . <nl> def cc_grpc_library ( name , srcs , deps , proto_only , use_external = False , * * kwargs <nl> generate_cc ( <nl> name = codegen_target , <nl> srcs = [ proto_target ] , <nl> + well_known_protos = well_known_protos , <nl> * * kwargs <nl> ) <nl> <nl> def cc_grpc_library ( name , srcs , deps , proto_only , use_external = False , * * kwargs <nl> name = codegen_grpc_target , <nl> srcs = [ proto_target ] , <nl> plugin = plugin , <nl> + well_known_protos = well_known_protos , <nl> * * kwargs <nl> ) <nl> <nl> mmm a / bazel / generate_cc . bzl <nl> ppp b / bazel / generate_cc . bzl <nl> def generate_cc_impl ( ctx ) : <nl> arguments + = [ " - I { 0 } = { 0 } " . format ( include . path ) for include in includes ] <nl> arguments + = [ proto . path for proto in protos ] <nl> <nl> + # create a list of well known proto files if the argument is non - None <nl> + well_known_proto_files = [ ] <nl> + if ctx . attr . well_known_protos : <nl> + f = ctx . attr . well_known_protos . files . to_list ( ) [ 0 ] . dirname <nl> + if f ! = " external / submodule_protobuf / src / google / protobuf " : <nl> + print ( " Error : Only @ submodule_protobuf / / : well_known_protos is supported " ) <nl> + else : <nl> + # f points to " external / submodule_protobuf / src / google / protobuf " <nl> + # add - I argument to protoc so it knows where to look for the proto files . <nl> + arguments + = [ " - I { 0 } " . format ( f + " / . . / . . " ) ] <nl> + well_known_proto_files = [ f for f in ctx . attr . well_known_protos . files ] <nl> + <nl> ctx . action ( <nl> - inputs = protos + includes + additional_input , <nl> + inputs = protos + includes + additional_input + well_known_proto_files , <nl> outputs = out_files , <nl> executable = ctx . executable . _protoc , <nl> arguments = arguments , <nl> generate_cc = rule ( <nl> mandatory = False , <nl> allow_empty = True , <nl> ) , <nl> + " well_known_protos " : attr . label ( <nl> + mandatory = False , <nl> + ) , <nl> " _protoc " : attr . label ( <nl> default = Label ( " / / external : protocol_compiler " ) , <nl> executable = True , <nl> mmm a / bazel / grpc_build_system . bzl <nl> ppp b / bazel / grpc_build_system . bzl <nl> def grpc_proto_plugin ( name , srcs = [ ] , deps = [ ] ) : <nl> <nl> load ( " / / : bazel / cc_grpc_library . bzl " , " cc_grpc_library " ) <nl> <nl> - def grpc_proto_library ( name , srcs = [ ] , deps = [ ] , well_known_deps = [ ] , has_services = True , use_external = False ) : <nl> + def grpc_proto_library ( name , srcs = [ ] , deps = [ ] , well_known_protos = None , <nl> + has_services = True , use_external = False ) : <nl> cc_grpc_library ( <nl> name = name , <nl> srcs = srcs , <nl> deps = deps , <nl> + well_known_protos = well_known_protos , <nl> proto_only = not has_services , <nl> use_external = use_external , <nl> ) <nl>
changes for picking up well known protos
grpc/grpc
e3e3b2aec8fc7ac45f3b8f7d0adfdb7cdce2bd1f
2017-03-08T00:12:56Z
mmm a / . gitignore <nl> ppp b / . gitignore <nl> objs <nl> / basictests <nl> / benchfeatures <nl> / benchmark / parse <nl> + / benchmark / parse_stream <nl> / benchmark / perfdiff <nl> / benchmark / statisticalmodel <nl> + / fuzz / fuzz_dump <nl> + / fuzz / fuzz_parser <nl> / json2json <nl> / jsoncheck <nl> / jsoncheck_noavx <nl> objs <nl> / tests / integer_tests <nl> / tools / json2json <nl> / tools / jsonstats <nl> + / tests / jsonstream_test <nl> / tools / minify <nl> <nl> # Don ' t check in generated examples <nl> mmm a / Makefile <nl> ppp b / Makefile <nl> COMPARISONEXECUTABLES = minifiercompetition parsingcompetition parseandstatcompeti <nl> SUPPLEMENTARYEXECUTABLES = parse_noutf8validation parse_nonumberparsing parse_nostringparsing <nl> <nl> # Load headers and sources <nl> - LIBHEADERS = src / simdprune_tables . h src / arm64 / bitmanipulation . h src / haswell / bitmanipulation . h src / westmere / bitmanipulation . h src / simdprune_tables . h src / arm64 / numberparsing . h src / generic / numberparsing . h src / haswell / numberparsing . h src / westmere / numberparsing . h src / arm64 / intrinsics . h src / haswell / intrinsics . h src / westmere / intrinsics . h src / jsoncharutils . h src / arm64 / bitmask . h src / arm64 / simd . h src / arm64 / stage1_find_marks . h src / arm64 / stage2_build_tape . h src / arm64 / stringparsing . h src / generic / stage1_find_marks . h src / generic / stage2_build_tape . h src / generic / stringparsing . h src / haswell / bitmask . h src / haswell / simd . h src / generic / utf8_fastvalidate_algorithm . h src / generic / utf8_lookup_algorithm . h src / generic / utf8_range_algorithm . h src / generic / utf8_zwegner_algorithm . h src / haswell / stage1_find_marks . h src / haswell / stage2_build_tape . h src / haswell / stringparsing . h src / westmere / bitmask . h src / westmere / simd . h src / westmere / stage1_find_marks . h src / westmere / stage2_build_tape . h src / westmere / stringparsing . h src / generic / stage2_streaming_build_tape . h <nl> + LIBHEADERS_GENERIC = src / generic / numberparsing . h src / generic / stage1_find_marks . h src / generic / stage2_build_tape . h src / generic / stringparsing . h src / generic / stage2_streaming_build_tape . h src / generic / utf8_fastvalidate_algorithm . h src / generic / utf8_lookup_algorithm . h src / generic / utf8_lookup2_algorithm . h src / generic / utf8_range_algorithm . h src / generic / utf8_zwegner_algorithm . h <nl> + LIBHEADERS_ARM64 = src / arm64 / bitmanipulation . h src / arm64 / bitmask . h src / arm64 / intrinsics . h src / arm64 / numberparsing . h src / arm64 / simd . h src / arm64 / stage1_find_marks . h src / arm64 / stage2_build_tape . h src / arm64 / stringparsing . h <nl> + LIBHEADERS_HASWELL = src / haswell / bitmanipulation . h src / haswell / bitmask . h src / haswell / intrinsics . h src / haswell / numberparsing . h src / haswell / simd . h src / haswell / stage1_find_marks . h src / haswell / stage2_build_tape . h src / haswell / stringparsing . h <nl> + LIBHEADERS_WESTMERE = src / westmere / bitmanipulation . h src / westmere / bitmask . h src / westmere / intrinsics . h src / westmere / numberparsing . h src / westmere / simd . h src / westmere / stage1_find_marks . h src / westmere / stage2_build_tape . h src / westmere / stringparsing . h <nl> + LIBHEADERS = src / jsoncharutils . h src / simdprune_tables . h $ ( LIBHEADERS_GENERIC ) $ ( LIBHEADERS_ARM64 ) $ ( LIBHEADERS_HASWELL ) $ ( LIBHEADERS_WESTMERE ) <nl> + <nl> PUBHEADERS = include / simdjson / common_defs . h include / simdjson / isadetection . h include / simdjson / jsonformatutils . h include / simdjson / jsonioutil . h include / simdjson / jsonminifier . h include / simdjson / jsonparser . h include / simdjson / padded_string . h include / simdjson / parsedjson . h include / simdjson / parsedjsoniterator . h include / simdjson / portability . h include / simdjson / simdjson . h include / simdjson / simdjson_version . h include / simdjson / stage1_find_marks . h include / simdjson / stage2_build_tape . h <nl> HEADERS = $ ( PUBHEADERS ) $ ( LIBHEADERS ) <nl> <nl> new file mode 100644 <nl> index 000000000 . . e4a354ba5 <nl> mmm / dev / null <nl> ppp b / scripts / shootout . sh <nl> <nl> + function report_perf ( ) { <nl> + algorithm = $ 1 <nl> + architecture = $ 2 <nl> + iterations = $ 3 <nl> + for run in { 1 . . 2 } <nl> + do <nl> + echo - n " | $ architecture | $ algorithm " <nl> + for file in " $ { @ : 4 } " <nl> + do <nl> + . / parse - f $ EXTRAARGS - n $ iterations jsonexamples / $ file . json | grep " stage 1 instructions " | sed - E " s / ^ . * stage 1 instructions : \ s * ( [ 0 - 9 ] + ) \ s + cycles : \ s * ( [ 0 - 9 ] + ) . + mis . branches : \ s * ( [ 0 - 9 ] + ) . * / | \ 2 | \ 1 | \ 3 / " | tr - d " \ n " <nl> + done <nl> + echo " | " <nl> + done <nl> + } <nl> + echo - n " | Architecture | Algorithm " <nl> + for file in " $ { @ : 3 } " <nl> + do <nl> + echo - n " | $ file Cycles | $ file Instructions | $ file Missed Branches " <nl> + done <nl> + echo " | " <nl> + <nl> + git checkout jkeiser / lookup2_simpler_intel <nl> + make parse <nl> + report_perf lookup2 " $ @ " <nl> + <nl> + git checkout jkeiser / lookup2 <nl> + make parse <nl> + report_perf lookup2_old " $ @ " <nl> + <nl> + git checkout master <nl> + make parse <nl> + report_perf fastvalidate " $ @ " <nl> mmm a / src / CMakeLists . txt <nl> ppp b / src / CMakeLists . txt <nl> set ( SIMDJSON_SRC_HEADERS <nl> generic / numberparsing . h <nl> generic / utf8_fastvalidate_algorithm . h <nl> generic / utf8_lookup_algorithm . h <nl> + generic / utf8_lookup2_algorithm . h <nl> generic / utf8_range_algorithm . h <nl> generic / utf8_zwegner_algorithm . h <nl> haswell / bitmask . h <nl> mmm a / src / arm64 / simd . h <nl> ppp b / src / arm64 / simd . h <nl> namespace simdjson : : arm64 : : simd { <nl> really_inline simd8 < uint8_t > & operator - = ( const simd8 < uint8_t > other ) { * this = * this - other ; return * this ; } <nl> <nl> / / Order - specific operations <nl> + really_inline uint8_t max ( ) const { return vmaxvq_u8 ( * this ) ; } <nl> + really_inline uint8_t min ( ) const { return vminvq_u8 ( * this ) ; } <nl> really_inline simd8 < uint8_t > max ( const simd8 < uint8_t > other ) const { return vmaxq_u8 ( * this , other ) ; } <nl> really_inline simd8 < uint8_t > min ( const simd8 < uint8_t > other ) const { return vminq_u8 ( * this , other ) ; } <nl> really_inline simd8 < bool > operator < = ( const simd8 < uint8_t > other ) const { return vcleq_u8 ( * this , other ) ; } <nl> really_inline simd8 < bool > operator > = ( const simd8 < uint8_t > other ) const { return vcgeq_u8 ( * this , other ) ; } <nl> + really_inline simd8 < bool > operator < ( const simd8 < uint8_t > other ) const { return vcltq_u8 ( * this , other ) ; } <nl> really_inline simd8 < bool > operator > ( const simd8 < uint8_t > other ) const { return vcgtq_u8 ( * this , other ) ; } <nl> + / / Same as > , but instead of guaranteeing all 1 ' s = = true , false = 0 and true = nonzero . For ARM , returns all 1 ' s . <nl> + really_inline simd8 < uint8_t > gt_bits ( const simd8 < uint8_t > other ) const { return simd8 < uint8_t > ( * this > other ) ; } <nl> + / / Same as < , but instead of guaranteeing all 1 ' s = = true , false = 0 and true = nonzero . For ARM , returns all 1 ' s . <nl> + really_inline simd8 < uint8_t > lt_bits ( const simd8 < uint8_t > other ) const { return simd8 < uint8_t > ( * this < other ) ; } <nl> <nl> / / Bit - specific operations <nl> really_inline simd8 < bool > any_bits_set ( simd8 < uint8_t > bits ) const { return vtstq_u8 ( * this , bits ) ; } <nl> - really_inline bool any_bits_set_anywhere ( ) const { return vmaxvq_u8 ( * this ) ! = 0 ; } <nl> + really_inline bool any_bits_set_anywhere ( ) const { return this - > max ( ) ! = 0 ; } <nl> really_inline bool any_bits_set_anywhere ( simd8 < uint8_t > bits ) const { return ( * this & bits ) . any_bits_set_anywhere ( ) ; } <nl> template < int N > <nl> really_inline simd8 < uint8_t > shr ( ) const { return vshrq_n_u8 ( * this , N ) ; } <nl> namespace simdjson : : arm64 : : simd { <nl> really_inline simd8 < int8_t > max ( const simd8 < int8_t > other ) const { return vmaxq_s8 ( * this , other ) ; } <nl> really_inline simd8 < int8_t > min ( const simd8 < int8_t > other ) const { return vminq_s8 ( * this , other ) ; } <nl> really_inline simd8 < bool > operator > ( const simd8 < int8_t > other ) const { return vcgtq_s8 ( * this , other ) ; } <nl> + really_inline simd8 < bool > operator < ( const simd8 < int8_t > other ) const { return vcltq_s8 ( * this , other ) ; } <nl> really_inline simd8 < bool > operator = = ( const simd8 < int8_t > other ) const { return vceqq_s8 ( * this , other ) ; } <nl> <nl> template < int N = 1 > <nl> mmm a / src / arm64 / stage1_find_marks . h <nl> ppp b / src / arm64 / stage1_find_marks . h <nl> really_inline void find_whitespace_and_operators ( <nl> whitespace = v . map ( [ & ] ( simd8 < uint8_t > _v ) { return _v . any_bits_set ( 0x18 ) ; } ) . to_bitmask ( ) ; <nl> } <nl> <nl> - # include " generic / utf8_fastvalidate_algorithm . h " <nl> + really_inline bool is_ascii ( simd8x64 < uint8_t > input ) { <nl> + simd8 < uint8_t > bits = input . reduce ( [ & ] ( auto a , auto b ) { return a | b ; } ) ; <nl> + return bits . max ( ) < 0b10000000u ; <nl> + } <nl> + <nl> + really_inline simd8 < bool > must_be_continuation ( simd8 < uint8_t > prev1 , simd8 < uint8_t > prev2 , simd8 < uint8_t > prev3 ) { <nl> + simd8 < bool > is_second_byte = prev1 > = uint8_t ( 0b11000000u ) ; <nl> + simd8 < bool > is_third_byte = prev2 > = uint8_t ( 0b11100000u ) ; <nl> + simd8 < bool > is_fourth_byte = prev3 > = uint8_t ( 0b11110000u ) ; <nl> + / / Use ^ instead of | for is_ * _byte , because ^ is commutative , and the caller is using ^ as well . <nl> + / / This will work fine because we only have to report errors for cases with 0 - 1 lead bytes . <nl> + / / Multiple lead bytes implies 2 overlapping multibyte characters , and if that happens , there is <nl> + / / guaranteed to be at least * one * lead byte that is part of only 1 other multibyte character . <nl> + / / The error will be detected there . <nl> + return is_second_byte ^ is_third_byte ^ is_fourth_byte ; <nl> + } <nl> + <nl> + # include " generic / utf8_lookup2_algorithm . h " <nl> # include " generic / stage1_find_marks . h " <nl> <nl> } / / namespace simdjson : : arm64 <nl> new file mode 100644 <nl> index 000000000 . . 7ab3a18ff <nl> mmm / dev / null <nl> ppp b / src / generic / utf8_lookup2_algorithm . h <nl> <nl> + / / <nl> + / / Detect Unicode errors . <nl> + / / <nl> + / / UTF - 8 is designed to allow multiple bytes and be compatible with ASCII . It ' s a fairly basic <nl> + / / encoding that uses the first few bits on each byte to denote a " byte type " , and all other bits <nl> + / / are straight up concatenated into the final value . The first byte of a multibyte character is a <nl> + / / " leading byte " and starts with N 1 ' s , where N is the total number of bytes ( 110_____ = 2 byte <nl> + / / lead ) . The remaining bytes of a multibyte character all start with 10 . 1 - byte characters just <nl> + / / start with 0 , because that ' s what ASCII looks like . Here ' s what each size <nl> + / / <nl> + / / - ASCII ( 7 bits ) : 0_______ <nl> + / / - 2 byte character ( 11 bits ) : 110_____ 10______ <nl> + / / - 3 byte character ( 17 bits ) : 1110____ 10______ 10______ <nl> + / / - 4 byte character ( 23 bits ) : 11110___ 10______ 10______ 10______ <nl> + / / - 5 + byte character ( illegal ) : 11111___ < illegal > <nl> + / / <nl> + / / There are 5 classes of error that can happen in Unicode : <nl> + / / <nl> + / / - TOO_SHORT : when you have a multibyte character with too few bytes ( i . e . missing continuation ) . <nl> + / / We detect this by looking for new characters ( lead bytes ) inside the range of a multibyte <nl> + / / character . <nl> + / / <nl> + / / e . g . 11000000 01100001 ( 2 - byte character where second byte is ASCII ) <nl> + / / <nl> + / / - TOO_LONG : when there are more bytes in your character than you need ( i . e . extra continuation ) . <nl> + / / We detect this by requiring that the next byte after your multibyte character be a new <nl> + / / character - - so a continuation after your character is wrong . <nl> + / / <nl> + / / e . g . 11011111 10111111 10111111 ( 2 - byte character followed by * another * continuation byte ) <nl> + / / <nl> + / / - TOO_LARGE : Unicode only goes up to U + 10FFFF . These characters are too large . <nl> + / / <nl> + / / e . g . 11110111 10111111 10111111 10111111 ( bigger than 10FFFF ) . <nl> + / / <nl> + / / - OVERLONG : multibyte characters with a bunch of leading zeroes , where you could have <nl> + / / used fewer bytes to make the same character . Like encoding an ASCII character in 4 bytes is <nl> + / / technically possible , but UTF - 8 disallows it so that there is only one way to write an " a " . <nl> + / / <nl> + / / e . g . 11000001 10100001 ( 2 - byte encoding of " a " , which only requires 1 byte : 01100001 ) <nl> + / / <nl> + / / - SURROGATE : Unicode U + D800 - U + DFFF is a * surrogate * character , reserved for use in UCS - 2 and <nl> + / / WTF - 8 encodings for characters with > 2 bytes . These are illegal in pure UTF - 8 . <nl> + / / <nl> + / / e . g . 11101101 10100000 10000000 ( U + D800 ) <nl> + / / <nl> + / / - INVALID_5_BYTE : 5 - byte , 6 - byte , 7 - byte and 8 - byte characters are unsupported ; Unicode does not <nl> + / / support values with more than 23 bits ( which a 4 - byte character supports ) . <nl> + / / <nl> + / / e . g . 11111000 10100000 10000000 10000000 10000000 ( U + 800000 ) <nl> + / / <nl> + / / Legal utf - 8 byte sequences per http : / / www . unicode . org / versions / Unicode6 . 0 . 0 / ch03 . pdf - page 94 : <nl> + / / <nl> + / / Code Points 1st 2s 3s 4s <nl> + / / U + 0000 . . U + 007F 00 . . 7F <nl> + / / U + 0080 . . U + 07FF C2 . . DF 80 . . BF <nl> + / / U + 0800 . . U + 0FFF E0 A0 . . BF 80 . . BF <nl> + / / U + 1000 . . U + CFFF E1 . . EC 80 . . BF 80 . . BF <nl> + / / U + D000 . . U + D7FF ED 80 . . 9F 80 . . BF <nl> + / / U + E000 . . U + FFFF EE . . EF 80 . . BF 80 . . BF <nl> + / / U + 10000 . . U + 3FFFF F0 90 . . BF 80 . . BF 80 . . BF <nl> + / / U + 40000 . . U + FFFFF F1 . . F3 80 . . BF 80 . . BF 80 . . BF <nl> + / / U + 100000 . . U + 10FFFF F4 80 . . 8F 80 . . BF 80 . . BF <nl> + / / <nl> + using namespace simd ; <nl> + <nl> + namespace utf8_validation { <nl> + <nl> + / / <nl> + / / Find special case UTF - 8 errors where the character is technically readable ( has the right length ) <nl> + / / but the * value * is disallowed . <nl> + / / <nl> + / / This includes overlong encodings , surrogates and values too large for Unicode . <nl> + / / <nl> + / / It turns out the bad character ranges can all be detected by looking at the first 12 bits of the <nl> + / / UTF - 8 encoded character ( i . e . all of byte 1 , and the high 4 bits of byte 2 ) . This algorithm does a <nl> + / / 3 4 - bit table lookups , identifying which errors that 4 bits could match , and then & ' s them together . <nl> + / / If all 3 lookups detect the same error , it ' s an error . <nl> + / / <nl> + really_inline simd8 < uint8_t > check_special_cases ( const simd8 < uint8_t > input , const simd8 < uint8_t > prev1 ) { <nl> + / / <nl> + / / These are the errors we ' re going to match for bytes 1 - 2 , by looking at the first three <nl> + / / nibbles of the character : < high bits of byte 1 > > & < low bits of byte 1 > & < high bits of byte 2 > <nl> + / / <nl> + static const int OVERLONG_2 = 0x01 ; / / 1100000_ 10______ ( technically we match 10______ but we could match ________ , they both yield errors either way ) <nl> + static const int OVERLONG_3 = 0x02 ; / / 11100000 100_____ ________ <nl> + static const int OVERLONG_4 = 0x04 ; / / 11110000 1000____ ________ ________ <nl> + static const int SURROGATE = 0x08 ; / / 11101101 [ 101_ ] ____ <nl> + static const int TOO_LARGE = 0x10 ; / / 11110100 ( 1001 | 101_ ) ____ <nl> + static const int TOO_LARGE_2 = 0x20 ; / / 1111 ( 1___ | 011_ | 0101 ) 10______ <nl> + <nl> + / / After processing the rest of byte 1 ( the low bits ) , we ' re still not done - - we have to check <nl> + / / byte 2 to be sure which things are errors and which aren ' t . <nl> + / / Since high_bits is byte 5 , byte 2 is high_bits . prev < 3 > <nl> + static const int CARRY = OVERLONG_2 | TOO_LARGE_2 ; <nl> + const simd8 < uint8_t > byte_2_high = input . shr < 4 > ( ) . lookup_16 < uint8_t > ( <nl> + / / ASCII : ________ [ 0___ ] ____ <nl> + CARRY , CARRY , CARRY , CARRY , <nl> + / / ASCII : ________ [ 0___ ] ____ <nl> + CARRY , CARRY , CARRY , CARRY , <nl> + / / Continuations : ________ [ 10__ ] ____ <nl> + CARRY | OVERLONG_3 | OVERLONG_4 , / / ________ [ 1000 ] ____ <nl> + CARRY | OVERLONG_3 | TOO_LARGE , / / ________ [ 1001 ] ____ <nl> + CARRY | TOO_LARGE | SURROGATE , / / ________ [ 1010 ] ____ <nl> + CARRY | TOO_LARGE | SURROGATE , / / ________ [ 1011 ] ____ <nl> + / / Multibyte Leads : ________ [ 11__ ] ____ <nl> + CARRY , CARRY , CARRY , CARRY <nl> + ) ; <nl> + <nl> + const simd8 < uint8_t > byte_1_high = prev1 . shr < 4 > ( ) . lookup_16 < uint8_t > ( <nl> + / / [ 0___ ] ____ ( ASCII ) <nl> + 0 , 0 , 0 , 0 , <nl> + 0 , 0 , 0 , 0 , <nl> + / / [ 10__ ] ____ ( continuation ) <nl> + 0 , 0 , 0 , 0 , <nl> + / / [ 11__ ] ____ ( 2 + - byte leads ) <nl> + OVERLONG_2 , 0 , / / [ 110_ ] ____ ( 2 - byte lead ) <nl> + OVERLONG_3 | SURROGATE , / / [ 1110 ] ____ ( 3 - byte lead ) <nl> + OVERLONG_4 | TOO_LARGE | TOO_LARGE_2 / / [ 1111 ] ____ ( 4 + - byte lead ) <nl> + ) ; <nl> + <nl> + const simd8 < uint8_t > byte_1_low = ( prev1 & 0x0F ) . lookup_16 < uint8_t > ( <nl> + / / ____ [ 00__ ] ________ <nl> + OVERLONG_2 | OVERLONG_3 | OVERLONG_4 , / / ____ [ 0000 ] ________ <nl> + OVERLONG_2 , / / ____ [ 0001 ] ________ <nl> + 0 , 0 , <nl> + / / ____ [ 01__ ] ________ <nl> + TOO_LARGE , / / ____ [ 0100 ] ________ <nl> + TOO_LARGE_2 , <nl> + TOO_LARGE_2 , <nl> + TOO_LARGE_2 , <nl> + / / ____ [ 10__ ] ________ <nl> + TOO_LARGE_2 , TOO_LARGE_2 , TOO_LARGE_2 , TOO_LARGE_2 , <nl> + / / ____ [ 11__ ] ________ <nl> + TOO_LARGE_2 , <nl> + TOO_LARGE_2 | SURROGATE , / / ____ [ 1101 ] ________ <nl> + TOO_LARGE_2 , TOO_LARGE_2 <nl> + ) ; <nl> + <nl> + return byte_1_high & byte_1_low & byte_2_high ; <nl> + } <nl> + <nl> + / / <nl> + / / Validate the length of multibyte characters ( that each multibyte character has the right number <nl> + / / of continuation characters , and that all continuation characters are part of a multibyte <nl> + / / character ) . <nl> + / / <nl> + / / Algorithm <nl> + / / = = = = = = = = = <nl> + / / <nl> + / / This algorithm compares * expected * continuation characters with * actual * continuation bytes , <nl> + / / and emits an error anytime there is a mismatch . <nl> + / / <nl> + / / For example , in the string " 𝄞 ₿ ֏ ab " , which has a 4 - , 3 - , 2 - and 1 - byte <nl> + / / characters , the file will look like this : <nl> + / / <nl> + / / | Character | 𝄞 | | | | ₿ | | | ֏ | | a | b | <nl> + / / | mmmmmmmmmmmmmmmmmmmmm - - | mmm - | mmm - | mmm - | mmm - | mmm - | mmm - | mmm - | mmm - | mmm - | mmm - | mmm - | <nl> + / / | Character Length | 4 | | | | 3 | | | 2 | | 1 | 1 | <nl> + / / | Byte | F0 | 9D | 84 | 9E | E2 | 82 | BF | D6 | 8F | 61 | 62 | <nl> + / / | is_second_byte | | X | | | | X | | | X | | | <nl> + / / | is_third_byte | | | X | | | | X | | | | | <nl> + / / | is_fourth_byte | | | | X | | | | | | | | <nl> + / / | expected_continuation | | X | X | X | | X | X | | X | | | <nl> + / / | is_continuation | | X | X | X | | X | X | | X | | | <nl> + / / <nl> + / / The errors here are basically ( Second Byte OR Third Byte OR Fourth Byte = = Continuation ) : <nl> + / / <nl> + / / - * * Extra Continuations : * * Any continuation that is not a second , third or fourth byte is not <nl> + / / part of a valid 2 - , 3 - or 4 - byte character and is thus an error . It could be that it ' s just <nl> + / / floating around extra outside of any character , or that there is an illegal 5 - byte character , <nl> + / / or maybe it ' s at the beginning of the file before any characters have started ; but it ' s an <nl> + / / error in all these cases . <nl> + / / - * * Missing Continuations : * * Any second , third or fourth byte that * isn ' t * a continuation is an error , because that means <nl> + / / we started a new character before we were finished with the current one . <nl> + / / <nl> + / / Getting the Previous Bytes <nl> + / / mmmmmmmmmmmmmmmmmmmmmmmm - - <nl> + / / <nl> + / / Because we want to know if a byte is the * second * ( or third , or fourth ) byte of a multibyte <nl> + / / character , we need to " shift the bytes " to find that out . This is what they mean : <nl> + / / <nl> + / / - ` is_continuation ` : if the current byte is a continuation . <nl> + / / - ` is_second_byte ` : if 1 byte back is the start of a 2 - , 3 - or 4 - byte character . <nl> + / / - ` is_third_byte ` : if 2 bytes back is the start of a 3 - or 4 - byte character . <nl> + / / - ` is_fourth_byte ` : if 3 bytes back is the start of a 4 - byte character . <nl> + / / <nl> + / / We use shuffles to go n bytes back , selecting part of the current ` input ` and part of the <nl> + / / ` prev_input ` ( search for ` . prev < 1 > ` , ` . prev < 2 > ` , etc . ) . These are passed in by the caller <nl> + / / function , because the 1 - byte - back data is used by other checks as well . <nl> + / / <nl> + / / Getting the Continuation Mask <nl> + / / mmmmmmmmmmmmmmmmmmmmmmmmmmm - - <nl> + / / <nl> + / / Once we have the right bytes , we have to get the masks . To do this , we treat UTF - 8 bytes as <nl> + / / numbers , using signed ` < ` and ` > ` operations to check if they are continuations or leads . <nl> + / / In fact , we treat the numbers as * signed * , partly because it helps us , and partly because <nl> + / / Intel ' s SIMD presently only offers signed ` < ` and ` > ` operations ( not unsigned ones ) . <nl> + / / <nl> + / / In UTF - 8 , bytes that start with the bits 110 , 1110 and 11110 are 2 - , 3 - and 4 - byte " leads , " <nl> + / / respectively , meaning they expect to have 1 , 2 and 3 " continuation bytes " after them . <nl> + / / Continuation bytes start with 10 , and ASCII ( 1 - byte characters ) starts with 0 . <nl> + / / <nl> + / / When treated as signed numbers , they look like this : <nl> + / / <nl> + / / | Type | High Bits | Binary Range | Signed | <nl> + / / | mmmmmmmmmmmm - - | mmmmmmmmmmmm | mmmmmmmmmmmm - - | mmmmmm - - | <nl> + / / | ASCII | ` 0 ` | ` 01111111 ` | 127 | <nl> + / / | | | ` 00000000 ` | 0 | <nl> + / / | 4 + - Byte Lead | ` 1111 ` | ` 11111111 ` | - 1 | <nl> + / / | | | ` 11110000 | - 16 | <nl> + / / | 3 - Byte Lead | ` 1110 ` | ` 11101111 ` | - 17 | <nl> + / / | | | ` 11100000 | - 32 | <nl> + / / | 2 - Byte Lead | ` 110 ` | ` 11011111 ` | - 33 | <nl> + / / | | | ` 11000000 | - 64 | <nl> + / / | Continuation | ` 10 ` | ` 10111111 ` | - 65 | <nl> + / / | | | ` 10000000 | - 128 | <nl> + / / <nl> + / / This makes it pretty easy to get the continuation mask ! It ' s just a single comparison : <nl> + / / <nl> + / / ` ` ` <nl> + / / is_continuation = input < - 64 ` <nl> + / / ` ` ` <nl> + / / <nl> + / / We can do something similar for the others , but it takes two comparisons instead of one : " is <nl> + / / the start of a 4 - byte character " is ` < - 32 ` and ` > - 65 ` , for example . And 2 + bytes is ` < 0 ` and <nl> + / / ` > - 64 ` . Surely we can do better , they ' re right next to each other ! <nl> + / / <nl> + / / Getting the is_xxx Masks : Shifting the Range <nl> + / / mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - - <nl> + / / <nl> + / / Notice * why * continuations were a single comparison . The actual * range * would require two <nl> + / / comparisons - - ` < - 64 ` and ` > - 129 ` - - but all characters are always greater than - 128 , so we get <nl> + / / that for free . In fact , if we had * unsigned * comparisons , 2 + , 3 + and 4 + comparisons would be <nl> + / / just as easy : 4 + would be ` > 239 ` , 3 + would be ` > 223 ` , and 2 + would be ` > 191 ` . <nl> + / / <nl> + / / Instead , we add 128 to each byte , shifting the range up to make comparison easy . This wraps <nl> + / / ASCII down into the negative , and puts 4 + - Byte Lead at the top : <nl> + / / <nl> + / / | Type | High Bits | Binary Range | Signed | <nl> + / / | mmmmmmmmmmmmmmmmmmmmm - | mmmmmmmmmmmm | mmmmmmmmmmmm - - | mmmmmm - | <nl> + / / | 4 + - Byte Lead ( + 127 ) | ` 0111 ` | ` 01111111 ` | 127 | <nl> + / / | | | ` 01110000 | 112 | <nl> + / / | mmmmmmmmmmmmmmmmmmmmm - | mmmmmmmmmmmm | mmmmmmmmmmmm - - | mmmmmm - | <nl> + / / | 3 - Byte Lead ( + 127 ) | ` 0110 ` | ` 01101111 ` | 111 | <nl> + / / | | | ` 01100000 | 96 | <nl> + / / | mmmmmmmmmmmmmmmmmmmmm - | mmmmmmmmmmmm | mmmmmmmmmmmm - - | mmmmmm - | <nl> + / / | 2 - Byte Lead ( + 127 ) | ` 010 ` | ` 01011111 ` | 95 | <nl> + / / | | | ` 01000000 | 64 | <nl> + / / | mmmmmmmmmmmmmmmmmmmmm - | mmmmmmmmmmmm | mmmmmmmmmmmm - - | mmmmmm - | <nl> + / / | Continuation ( + 127 ) | ` 00 ` | ` 00111111 ` | 63 | <nl> + / / | | | ` 00000000 | 0 | <nl> + / / | mmmmmmmmmmmmmmmmmmmmm - | mmmmmmmmmmmm | mmmmmmmmmmmm - - | mmmmmm - | <nl> + / / | ASCII ( + 127 ) | ` 1 ` | ` 11111111 ` | - 1 | <nl> + / / | | | ` 10000000 ` | - 128 | <nl> + / / | mmmmmmmmmmmmmmmmmmmmm - | mmmmmmmmmmmm | mmmmmmmmmmmm - - | mmmmmm - | <nl> + / / <nl> + / / * Now * we can use signed ` > ` on all of them : <nl> + / / <nl> + / / ` ` ` <nl> + / / prev1 = input . prev < 1 > <nl> + / / prev2 = input . prev < 2 > <nl> + / / prev3 = input . prev < 3 > <nl> + / / prev1_flipped = input . prev < 1 > ( prev_input ) ^ 0x80 ; / / Same as ` + 128 ` <nl> + / / prev2_flipped = input . prev < 2 > ( prev_input ) ^ 0x80 ; / / Same as ` + 128 ` <nl> + / / prev3_flipped = input . prev < 3 > ( prev_input ) ^ 0x80 ; / / Same as ` + 128 ` <nl> + / / is_second_byte = prev1_flipped > 63 ; / / 2 + - byte lead <nl> + / / is_third_byte = prev2_flipped > 95 ; / / 3 + - byte lead <nl> + / / is_fourth_byte = prev3_flipped > 111 ; / / 4 + - byte lead <nl> + / / ` ` ` <nl> + / / <nl> + / / NOTE : we use ` ^ 0x80 ` instead of ` + 128 ` in the code , which accomplishes the same thing , and even takes the same number <nl> + / / of cycles as ` + ` , but on many Intel architectures can be parallelized better ( you can do 3 <nl> + / / ` ^ ` ' s at a time on Haswell , but only 2 ` + ` ' s ) . <nl> + / / <nl> + / / That doesn ' t look like it saved us any instructions , did it ? Well , because we ' re adding the <nl> + / / same number to all of them , we can save one of those ` + 128 ` operations by assembling <nl> + / / ` prev2_flipped ` out of prev 1 and prev 3 instead of assembling it from input and adding 128 <nl> + / / to it . One more instruction saved ! <nl> + / / <nl> + / / ` ` ` <nl> + / / prev1 = input . prev < 1 > <nl> + / / prev3 = input . prev < 3 > <nl> + / / prev1_flipped = prev1 ^ 0x80 ; / / Same as ` + 128 ` <nl> + / / prev3_flipped = prev3 ^ 0x80 ; / / Same as ` + 128 ` <nl> + / / prev2_flipped = prev1_flipped . concat < 2 > ( prev3_flipped ) : / / < shuffle : take the first 2 bytes from prev1 and the rest from prev3 <nl> + / / ` ` ` <nl> + / / <nl> + / / # # # Bringing It All Together : Detecting the Errors <nl> + / / <nl> + / / At this point , we have ` is_continuation ` , ` is_first_byte ` , ` is_second_byte ` and ` is_third_byte ` . <nl> + / / All we have left to do is check if they match ! <nl> + / / <nl> + / / ` ` ` <nl> + / / return ( is_second_byte | is_third_byte | is_fourth_byte ) ^ is_continuation ; <nl> + / / ` ` ` <nl> + / / <nl> + / / But wait - - there ' s more . The above statement is only 3 operations , but they * cannot be done in <nl> + / / parallel * . You have to do 2 ` | ` ' s and then 1 ` & ` . Haswell , at least , has 3 ports that can do <nl> + / / bitwise operations , and we ' re only using 1 ! <nl> + / / <nl> + / / Epilogue : Addition For Booleans <nl> + / / mmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - <nl> + / / <nl> + / / There is one big case the above code doesn ' t explicitly talk about - - what if is_second_byte <nl> + / / and is_third_byte are BOTH true ? That means there is a 3 - byte and 2 - byte character right next <nl> + / / to each other ( or any combination ) , and the continuation could be part of either of them ! <nl> + / / Our algorithm using ` & ` and ` | ` won ' t detect that the continuation byte is problematic . <nl> + / / <nl> + / / Never fear , though . If that situation occurs , we ' ll already have detected that the second <nl> + / / leading byte was an error , because it was supposed to be a part of the preceding multibyte <nl> + / / character , but it * wasn ' t a continuation * . <nl> + / / <nl> + / / We could stop here , but it turns out that we can fix it using ` + ` and ` - ` instead of ` | ` and <nl> + / / ` & ` , which is both interesting and possibly useful ( even though we ' re not using it here ) . It <nl> + / / exploits the fact that in SIMD , a * true * value is - 1 , and a * false * value is 0 . So those <nl> + / / comparisons were giving us numbers ! <nl> + / / <nl> + / / Given that , if you do ` is_second_byte + is_third_byte + is_fourth_byte ` , under normal <nl> + / / circumstances you will either get 0 ( 0 + 0 + 0 ) or - 1 ( - 1 + 0 + 0 , etc . ) . Thus , <nl> + / / ` ( is_second_byte + is_third_byte + is_fourth_byte ) - is_continuation ` will yield 0 only if <nl> + / / * both * or * neither * are 0 ( 0 - 0 or - 1 - - 1 ) . You ' ll get 1 or - 1 if they are different . Because <nl> + / / * any * nonzero value is treated as an error ( not just - 1 ) , we ' re just fine here : ) <nl> + / / <nl> + / / Further , if * more than one * multibyte character overlaps , <nl> + / / ` is_second_byte + is_third_byte + is_fourth_byte ` will be - 2 or - 3 ! Subtracting ` is_continuation ` <nl> + / / from * that * is guaranteed to give you a nonzero value ( - 1 , - 2 or - 3 ) . So it ' ll always be <nl> + / / considered an error . <nl> + / / <nl> + / / One reason you might want to do this is parallelism . ^ and | are not associative , so <nl> + / / ( A | B | C ) ^ D will always be three operations in a row : either you do A | B - > | C - > ^ D , or <nl> + / / you do B | C - > | A - > ^ D . But addition and subtraction * are * associative : ( A + B + C ) - D can <nl> + / / be written as ` ( A + B ) + ( C - D ) ` . This means you can do A + B and C - D at the same time , and <nl> + / / then adds the result together . Same number of operations , but if the processor can run <nl> + / / independent things in parallel ( which most can ) , it runs faster . <nl> + / / <nl> + / / This doesn ' t help us on Intel , but might help us elsewhere : on Haswell , at least , | and ^ have <nl> + / / a super nice advantage in that more of them can be run at the same time ( they can run on 3 <nl> + / / ports , while + and - can run on 2 ) ! This means that we can do A | B while we ' re still doing C , <nl> + / / saving us the cycle we would have earned by using + . Even more , using an instruction with a <nl> + / / wider array of ports can help * other * code run ahead , too , since these instructions can " get <nl> + / / out of the way , " running on a port other instructions can ' t . <nl> + / / <nl> + / / Epilogue II : One More Trick <nl> + / / mmmmmmmmmmmmmmmmmmmmmmmmmmm <nl> + / / <nl> + / / There ' s one more relevant trick up our sleeve , it turns out : it turns out on Intel we can " pay <nl> + / / for " the ( prev < 1 > + 128 ) instruction , because it can be used to save an instruction in <nl> + / / check_special_cases ( ) - - but we ' ll talk about that there : ) <nl> + / / <nl> + really_inline simd8 < uint8_t > check_multibyte_lengths ( simd8 < uint8_t > input , simd8 < uint8_t > prev_input , simd8 < uint8_t > prev1 ) { <nl> + simd8 < uint8_t > prev2 = input . prev < 2 > ( prev_input ) ; <nl> + simd8 < uint8_t > prev3 = input . prev < 3 > ( prev_input ) ; <nl> + <nl> + / / Cont is 10000000 - 101111111 ( - 65 . . . - 128 ) <nl> + simd8 < bool > is_continuation = simd8 < int8_t > ( input ) < int8_t ( - 64 ) ; <nl> + / / must_be_continuation is architecture - specific because Intel doesn ' t have unsigned comparisons <nl> + return simd8 < uint8_t > ( must_be_continuation ( prev1 , prev2 , prev3 ) ^ is_continuation ) ; <nl> + } <nl> + <nl> + / / <nl> + / / Return nonzero if there are incomplete multibyte characters at the end of the block : <nl> + / / e . g . if there is a 4 - byte character , but it ' s 3 bytes from the end . <nl> + / / <nl> + really_inline simd8 < uint8_t > is_incomplete ( simd8 < uint8_t > input ) { <nl> + / / If the previous input ' s last 3 bytes match this , they ' re too short ( they ended at EOF ) : <nl> + / / . . . 1111____ 111_____ 11______ <nl> + static const uint8_t max_array [ 32 ] = { <nl> + 255 , 255 , 255 , 255 , 255 , 255 , 255 , 255 , <nl> + 255 , 255 , 255 , 255 , 255 , 255 , 255 , 255 , <nl> + 255 , 255 , 255 , 255 , 255 , 255 , 255 , 255 , <nl> + 255 , 255 , 255 , 255 , 255 , 0b11110000u - 1 , 0b11100000u - 1 , 0b11000000u - 1 <nl> + } ; <nl> + const simd8 < uint8_t > max_value ( & max_array [ sizeof ( max_array ) - sizeof ( simd8 < uint8_t > ) ] ) ; <nl> + return input . gt_bits ( max_value ) ; <nl> + } <nl> + <nl> + struct utf8_checker { <nl> + / / If this is nonzero , there has been a UTF - 8 error . <nl> + simd8 < uint8_t > error ; <nl> + / / The last input we received <nl> + simd8 < uint8_t > prev_input_block ; <nl> + / / Whether the last input we received was incomplete ( used for ASCII fast path ) <nl> + simd8 < uint8_t > prev_incomplete ; <nl> + <nl> + / / <nl> + / / Check whether the current bytes are valid UTF - 8 . <nl> + / / <nl> + really_inline void check_utf8_bytes ( const simd8 < uint8_t > input , const simd8 < uint8_t > prev_input ) { <nl> + / / Flip prev1 . . . prev3 so we can easily determine if they are 2 + , 3 + or 4 + lead bytes <nl> + / / ( 2 , 3 , 4 - byte leads become large positive numbers instead of small negative numbers ) <nl> + simd8 < uint8_t > prev1 = input . prev < 1 > ( prev_input ) ; <nl> + this - > error | = check_special_cases ( input , prev1 ) ; <nl> + this - > error | = check_multibyte_lengths ( input , prev_input , prev1 ) ; <nl> + } <nl> + <nl> + / / The only problem that can happen at EOF is that a multibyte character is too short . <nl> + really_inline void check_eof ( ) { <nl> + / / If the previous block had incomplete UTF - 8 characters at the end , an ASCII block can ' t <nl> + / / possibly finish them . <nl> + this - > error | = this - > prev_incomplete ; <nl> + } <nl> + <nl> + really_inline void check_next_input ( simd8x64 < uint8_t > input ) { <nl> + if ( likely ( is_ascii ( input ) ) ) { <nl> + / / If the previous block had incomplete UTF - 8 characters at the end , an ASCII block can ' t <nl> + / / possibly finish them . <nl> + this - > error | = this - > prev_incomplete ; <nl> + } else { <nl> + this - > check_utf8_bytes ( input . chunks [ 0 ] , this - > prev_input_block ) ; <nl> + for ( int i = 1 ; i < simd8x64 < uint8_t > : : NUM_CHUNKS ; i + + ) { <nl> + this - > check_utf8_bytes ( input . chunks [ i ] , input . chunks [ i - 1 ] ) ; <nl> + } <nl> + this - > prev_incomplete = is_incomplete ( input . chunks [ simd8x64 < uint8_t > : : NUM_CHUNKS - 1 ] ) ; <nl> + this - > prev_input_block = input . chunks [ simd8x64 < uint8_t > : : NUM_CHUNKS - 1 ] ; <nl> + } <nl> + } <nl> + <nl> + really_inline ErrorValues errors ( ) { <nl> + return this - > error . any_bits_set_anywhere ( ) ? simdjson : : UTF8_ERROR : simdjson : : SUCCESS ; <nl> + } <nl> + <nl> + } ; / / struct utf8_checker <nl> + } <nl> + <nl> + using utf8_validation : : utf8_checker ; <nl> \ No newline at end of file <nl> mmm a / src / haswell / simd . h <nl> ppp b / src / haswell / simd . h <nl> namespace simdjson : : haswell : : simd { <nl> really_inline Child operator | ( const Child other ) const { return _mm256_or_si256 ( * this , other ) ; } <nl> really_inline Child operator & ( const Child other ) const { return _mm256_and_si256 ( * this , other ) ; } <nl> really_inline Child operator ^ ( const Child other ) const { return _mm256_xor_si256 ( * this , other ) ; } <nl> - really_inline Child bit_andnot ( const Child other ) const { return _mm256_andnot_si256 ( * this , other ) ; } <nl> + really_inline Child bit_andnot ( const Child other ) const { return _mm256_andnot_si256 ( other , * this ) ; } <nl> really_inline Child operator ~ ( ) const { return * this ^ 0xFFu ; } <nl> really_inline Child & operator | = ( const Child other ) { auto this_cast = ( Child * ) this ; * this_cast = * this_cast | other ; return * this_cast ; } <nl> really_inline Child & operator & = ( const Child other ) { auto this_cast = ( Child * ) this ; * this_cast = * this_cast & other ; return * this_cast ; } <nl> namespace simdjson : : haswell : : simd { <nl> really_inline base8_numeric ( const __m256i _value ) : base8 < T > ( _value ) { } <nl> <nl> / / Store to array <nl> - really_inline void store ( T dst [ 32 ] ) { return _mm256_storeu_si256 ( reinterpret_cast < __m256i * > ( dst ) , * this ) ; } <nl> + really_inline void store ( T dst [ 32 ] ) const { return _mm256_storeu_si256 ( reinterpret_cast < __m256i * > ( dst ) , * this ) ; } <nl> <nl> / / Addition / subtraction are the same for signed and unsigned <nl> really_inline simd8 < T > operator + ( const simd8 < T > other ) const { return _mm256_add_epi8 ( * this , other ) ; } <nl> namespace simdjson : : haswell : : simd { <nl> really_inline simd8 < int8_t > max ( const simd8 < int8_t > other ) const { return _mm256_max_epi8 ( * this , other ) ; } <nl> really_inline simd8 < int8_t > min ( const simd8 < int8_t > other ) const { return _mm256_min_epi8 ( * this , other ) ; } <nl> really_inline simd8 < bool > operator > ( const simd8 < int8_t > other ) const { return _mm256_cmpgt_epi8 ( * this , other ) ; } <nl> + really_inline simd8 < bool > operator < ( const simd8 < int8_t > other ) const { return _mm256_cmpgt_epi8 ( other , * this ) ; } <nl> } ; <nl> <nl> / / Unsigned bytes <nl> namespace simdjson : : haswell : : simd { <nl> <nl> / / Order - specific operations <nl> really_inline simd8 < uint8_t > max ( const simd8 < uint8_t > other ) const { return _mm256_max_epu8 ( * this , other ) ; } <nl> - really_inline simd8 < uint8_t > min ( const simd8 < uint8_t > other ) const { return _mm256_min_epu8 ( * this , other ) ; } <nl> + really_inline simd8 < uint8_t > min ( const simd8 < uint8_t > other ) const { return _mm256_min_epu8 ( other , * this ) ; } <nl> + / / Same as > , but only guarantees true is nonzero ( < guarantees true = - 1 ) <nl> + really_inline simd8 < uint8_t > gt_bits ( const simd8 < uint8_t > other ) const { return this - > saturating_sub ( other ) ; } <nl> + / / Same as < , but only guarantees true is nonzero ( < guarantees true = - 1 ) <nl> + really_inline simd8 < uint8_t > lt_bits ( const simd8 < uint8_t > other ) const { return other . saturating_sub ( * this ) ; } <nl> really_inline simd8 < bool > operator < = ( const simd8 < uint8_t > other ) const { return other . max ( * this ) = = other ; } <nl> really_inline simd8 < bool > operator > = ( const simd8 < uint8_t > other ) const { return other . min ( * this ) = = other ; } <nl> - really_inline simd8 < bool > operator > ( const simd8 < uint8_t > other ) const { return this - > saturating_sub ( other ) . any_bits_set ( ) ; } <nl> + really_inline simd8 < bool > operator > ( const simd8 < uint8_t > other ) const { return this - > gt_bits ( other ) . any_bits_set ( ) ; } <nl> + really_inline simd8 < bool > operator < ( const simd8 < uint8_t > other ) const { return this - > lt_bits ( other ) . any_bits_set ( ) ; } <nl> <nl> / / Bit - specific operations <nl> - really_inline simd8 < bool > any_bits_set ( ) const { return ~ ( * this = = uint8_t ( 0 ) ) ; } <nl> - really_inline simd8 < bool > any_bits_set ( simd8 < uint8_t > bits ) const { return ( * this & bits ) . any_bits_set ( ) ; } <nl> + really_inline simd8 < bool > bits_not_set ( ) const { return * this = = uint8_t ( 0 ) ; } <nl> + really_inline simd8 < bool > bits_not_set ( simd8 < uint8_t > bits ) const { return ( * this & bits ) . bits_not_set ( ) ; } <nl> + really_inline simd8 < bool > any_bits_set ( ) const { return ~ this - > bits_not_set ( ) ; } <nl> + really_inline simd8 < bool > any_bits_set ( simd8 < uint8_t > bits ) const { return ~ this - > bits_not_set ( bits ) ; } <nl> really_inline bool bits_not_set_anywhere ( ) const { return _mm256_testz_si256 ( * this , * this ) ; } <nl> really_inline bool any_bits_set_anywhere ( ) const { return ! bits_not_set_anywhere ( ) ; } <nl> really_inline bool bits_not_set_anywhere ( simd8 < uint8_t > bits ) const { return _mm256_testz_si256 ( * this , bits ) ; } <nl> namespace simdjson : : haswell : : simd { <nl> each ( 1 ) ; <nl> } <nl> <nl> - really_inline void store ( T ptr [ 64 ] ) { <nl> + really_inline void store ( T ptr [ 64 ] ) const { <nl> this - > chunks [ 0 ] . store ( ptr + sizeof ( simd8 < T > ) * 0 ) ; <nl> this - > chunks [ 1 ] . store ( ptr + sizeof ( simd8 < T > ) * 1 ) ; <nl> } <nl> mmm a / src / haswell / stage1_find_marks . h <nl> ppp b / src / haswell / stage1_find_marks . h <nl> namespace simdjson : : haswell { <nl> <nl> using namespace simd ; <nl> <nl> - really_inline void find_whitespace_and_operators ( <nl> - const simd : : simd8x64 < uint8_t > in , <nl> - uint64_t & whitespace , uint64_t & op ) { <nl> + really_inline void find_whitespace_and_operators ( simd8x64 < uint8_t > in , uint64_t & whitespace , uint64_t & op ) { <nl> <nl> / / These lookups rely on the fact that anything < 127 will match the lower 4 bits , which is why <nl> / / we can ' t use the generic lookup_16 . <nl> really_inline void find_whitespace_and_operators ( <nl> } ) . to_bitmask ( ) ; <nl> } <nl> <nl> - # include " generic / utf8_lookup_algorithm . h " <nl> + really_inline bool is_ascii ( simd8x64 < uint8_t > input ) { <nl> + simd8 < uint8_t > bits = input . reduce ( [ & ] ( auto a , auto b ) { return a | b ; } ) ; <nl> + return ! bits . any_bits_set_anywhere ( 0b10000000u ) ; <nl> + } <nl> + <nl> + really_inline simd8 < bool > must_be_continuation ( simd8 < uint8_t > prev1 , simd8 < uint8_t > prev2 , simd8 < uint8_t > prev3 ) { <nl> + simd8 < uint8_t > is_second_byte = prev1 . saturating_sub ( 0b11000000u - 1 ) ; / / Only 11______ will be > 0 <nl> + simd8 < uint8_t > is_third_byte = prev2 . saturating_sub ( 0b11100000u - 1 ) ; / / Only 111_____ will be > 0 <nl> + simd8 < uint8_t > is_fourth_byte = prev3 . saturating_sub ( 0b11110000u - 1 ) ; / / Only 1111____ will be > 0 <nl> + / / Caller requires a bool ( all 1 ' s ) . All values resulting from the subtraction will be < = 64 , so signed comparison is fine . <nl> + return simd8 < int8_t > ( is_second_byte | is_third_byte | is_fourth_byte ) > int8_t ( 0 ) ; <nl> + } <nl> + <nl> + # include " generic / utf8_lookup2_algorithm . h " <nl> # include " generic / stage1_find_marks . h " <nl> <nl> } / / namespace haswell <nl> mmm a / src / westmere / simd . h <nl> ppp b / src / westmere / simd . h <nl> namespace simdjson : : westmere : : simd { <nl> really_inline Child operator | ( const Child other ) const { return _mm_or_si128 ( * this , other ) ; } <nl> really_inline Child operator & ( const Child other ) const { return _mm_and_si128 ( * this , other ) ; } <nl> really_inline Child operator ^ ( const Child other ) const { return _mm_xor_si128 ( * this , other ) ; } <nl> - really_inline Child bit_andnot ( const Child other ) const { return _mm_andnot_si128 ( * this , other ) ; } <nl> + really_inline Child bit_andnot ( const Child other ) const { return _mm_andnot_si128 ( other , * this ) ; } <nl> really_inline Child operator ~ ( ) const { return * this ^ 0xFFu ; } <nl> really_inline Child & operator | = ( const Child other ) { auto this_cast = ( Child * ) this ; * this_cast = * this_cast | other ; return * this_cast ; } <nl> really_inline Child & operator & = ( const Child other ) { auto this_cast = ( Child * ) this ; * this_cast = * this_cast & other ; return * this_cast ; } <nl> namespace simdjson : : westmere : : simd { <nl> really_inline base8_numeric ( const __m128i _value ) : base8 < T > ( _value ) { } <nl> <nl> / / Store to array <nl> - really_inline void store ( T dst [ 16 ] ) { return _mm_storeu_si128 ( reinterpret_cast < __m128i * > ( dst ) , * this ) ; } <nl> + really_inline void store ( T dst [ 16 ] ) const { return _mm_storeu_si128 ( reinterpret_cast < __m128i * > ( dst ) , * this ) ; } <nl> <nl> / / Addition / subtraction are the same for signed and unsigned <nl> really_inline simd8 < T > operator + ( const simd8 < T > other ) const { return _mm_add_epi8 ( * this , other ) ; } <nl> namespace simdjson : : westmere : : simd { <nl> really_inline simd8 < int8_t > max ( const simd8 < int8_t > other ) const { return _mm_max_epi8 ( * this , other ) ; } <nl> really_inline simd8 < int8_t > min ( const simd8 < int8_t > other ) const { return _mm_min_epi8 ( * this , other ) ; } <nl> really_inline simd8 < bool > operator > ( const simd8 < int8_t > other ) const { return _mm_cmpgt_epi8 ( * this , other ) ; } <nl> + really_inline simd8 < bool > operator < ( const simd8 < int8_t > other ) const { return _mm_cmpgt_epi8 ( other , * this ) ; } <nl> } ; <nl> <nl> / / Unsigned bytes <nl> namespace simdjson : : westmere : : simd { <nl> / / Order - specific operations <nl> really_inline simd8 < uint8_t > max ( const simd8 < uint8_t > other ) const { return _mm_max_epu8 ( * this , other ) ; } <nl> really_inline simd8 < uint8_t > min ( const simd8 < uint8_t > other ) const { return _mm_min_epu8 ( * this , other ) ; } <nl> + / / Same as > , but only guarantees true is nonzero ( < guarantees true = - 1 ) <nl> + really_inline simd8 < uint8_t > gt_bits ( const simd8 < uint8_t > other ) const { return this - > saturating_sub ( other ) ; } <nl> + / / Same as < , but only guarantees true is nonzero ( < guarantees true = - 1 ) <nl> + really_inline simd8 < uint8_t > lt_bits ( const simd8 < uint8_t > other ) const { return other . saturating_sub ( * this ) ; } <nl> really_inline simd8 < bool > operator < = ( const simd8 < uint8_t > other ) const { return other . max ( * this ) = = other ; } <nl> really_inline simd8 < bool > operator > = ( const simd8 < uint8_t > other ) const { return other . min ( * this ) = = other ; } <nl> - really_inline simd8 < bool > operator > ( const simd8 < uint8_t > other ) const { return this - > saturating_sub ( other ) . any_bits_set ( ) ; } <nl> + really_inline simd8 < bool > operator > ( const simd8 < uint8_t > other ) const { return this - > gt_bits ( other ) . any_bits_set ( ) ; } <nl> + really_inline simd8 < bool > operator < ( const simd8 < uint8_t > other ) const { return this - > gt_bits ( other ) . any_bits_set ( ) ; } <nl> <nl> / / Bit - specific operations <nl> - really_inline simd8 < bool > any_bits_set ( simd8 < uint8_t > bits ) const { return ( * this & bits ) . any_bits_set ( ) ; } <nl> - really_inline simd8 < bool > any_bits_set ( ) const { return ~ ( * this = = uint8_t ( 0 ) ) ; } <nl> + really_inline simd8 < bool > bits_not_set ( ) const { return * this = = uint8_t ( 0 ) ; } <nl> + really_inline simd8 < bool > bits_not_set ( simd8 < uint8_t > bits ) const { return ( * this & bits ) . bits_not_set ( ) ; } <nl> + really_inline simd8 < bool > any_bits_set ( ) const { return ~ this - > bits_not_set ( ) ; } <nl> + really_inline simd8 < bool > any_bits_set ( simd8 < uint8_t > bits ) const { return ~ this - > bits_not_set ( bits ) ; } <nl> really_inline bool bits_not_set_anywhere ( ) const { return _mm_testz_si128 ( * this , * this ) ; } <nl> really_inline bool any_bits_set_anywhere ( ) const { return ! bits_not_set_anywhere ( ) ; } <nl> really_inline bool bits_not_set_anywhere ( simd8 < uint8_t > bits ) const { return _mm_testz_si128 ( * this , bits ) ; } <nl> namespace simdjson : : westmere : : simd { <nl> really_inline simd8x64 ( const simd8 < T > chunk0 , const simd8 < T > chunk1 , const simd8 < T > chunk2 , const simd8 < T > chunk3 ) : chunks { chunk0 , chunk1 , chunk2 , chunk3 } { } <nl> really_inline simd8x64 ( const T ptr [ 64 ] ) : chunks { simd8 < T > : : load ( ptr ) , simd8 < T > : : load ( ptr + 16 ) , simd8 < T > : : load ( ptr + 32 ) , simd8 < T > : : load ( ptr + 48 ) } { } <nl> <nl> - really_inline void store ( T ptr [ 64 ] ) { <nl> + really_inline void store ( T ptr [ 64 ] ) const { <nl> this - > chunks [ 0 ] . store ( ptr + sizeof ( simd8 < T > ) * 0 ) ; <nl> this - > chunks [ 1 ] . store ( ptr + sizeof ( simd8 < T > ) * 1 ) ; <nl> this - > chunks [ 2 ] . store ( ptr + sizeof ( simd8 < T > ) * 2 ) ; <nl> mmm a / src / westmere / stage1_find_marks . h <nl> ppp b / src / westmere / stage1_find_marks . h <nl> really_inline void find_whitespace_and_operators ( <nl> } ) . to_bitmask ( ) ; <nl> } <nl> <nl> - # include " generic / utf8_lookup_algorithm . h " <nl> + really_inline bool is_ascii ( simd8x64 < uint8_t > input ) { <nl> + simd8 < uint8_t > bits = input . reduce ( [ & ] ( auto a , auto b ) { return a | b ; } ) ; <nl> + return ! bits . any_bits_set_anywhere ( 0b10000000u ) ; <nl> + } <nl> + <nl> + really_inline simd8 < bool > must_be_continuation ( simd8 < uint8_t > prev1 , simd8 < uint8_t > prev2 , simd8 < uint8_t > prev3 ) { <nl> + simd8 < uint8_t > is_second_byte = prev1 . saturating_sub ( 0b11000000u - 1 ) ; / / Only 11______ will be > 0 <nl> + simd8 < uint8_t > is_third_byte = prev2 . saturating_sub ( 0b11100000u - 1 ) ; / / Only 111_____ will be > 0 <nl> + simd8 < uint8_t > is_fourth_byte = prev3 . saturating_sub ( 0b11110000u - 1 ) ; / / Only 1111____ will be > 0 <nl> + / / Caller requires a bool ( all 1 ' s ) . All values resulting from the subtraction will be < = 64 , so signed comparison is fine . <nl> + return simd8 < int8_t > ( is_second_byte | is_third_byte | is_fourth_byte ) > int8_t ( 0 ) ; <nl> + } <nl> + <nl> + # include " generic / utf8_lookup2_algorithm . h " <nl> # include " generic / stage1_find_marks . h " <nl> <nl> } / / namespace westmere <nl>
lookup + cont - check algorithm
simdjson/simdjson
d7c83397e415cc4f9faaa7208e08806362db4e97
2019-12-18T22:37:21Z
mmm a / Source / CNTK / CNTK . cpp <nl> ppp b / Source / CNTK / CNTK . cpp <nl> void PrintUsageInfo ( ) <nl> } <nl> <nl> void PrintGpuInfo ( ) <nl> - { <nl> + { <nl> std : : vector < GpuData > gpusData = GetGpusData ( ) ; <nl> <nl> if ( gpusData . empty ( ) ) <nl> void PrintGpuInfo ( ) <nl> LOGPRINTF ( stderr , " mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - \ n " ) ; <nl> LOGPRINTF ( stderr , " GPU info : \ n \ n " ) ; <nl> <nl> - for ( GpuData data : gpusData ) <nl> + for ( GpuData & data : gpusData ) <nl> { <nl> LOGPRINTF ( stderr , " \ t \ tDevice ID : % d \ n " , data . deviceId ) ; <nl> LOGPRINTF ( stderr , " \ t \ tCompute Capability : % d . % d \ n " , data . major , data . minor ) ; <nl> mmm a / Source / Common / BestGpu . cpp <nl> ppp b / Source / Common / BestGpu . cpp <nl> int bestGPUDummy = 42 ; / / put something into this CPP , as to avoid a linker warn <nl> # include < stdio . h > <nl> # include < string . h > <nl> # include < algorithm > <nl> + <nl> # include < memory > <nl> # include " CrossProcessMutex . h " <nl> <nl> mmm a / Tests / EndToEndTests / MetricsDriver . py <nl> ppp b / Tests / EndToEndTests / MetricsDriver . py <nl> <nl> # mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - <nl> # Copyright ( c ) Microsoft Corporation . All rights reserved . <nl> # mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm <nl> - # This is a test driver for running end - to - end CNTK tests <nl> + # Licensed under the MIT license . See LICENSE . md file in the project root for full license information . <nl> + # This script extracts information ( hardware used , final results ) contained in the baselines files <nl> + # and generates a markdown file ( wiki page ) <nl> <nl> import sys , os , csv , traceback , re <nl> <nl> def __init__ ( self , fullPath , opSystem , device , flavor , testResult = " " , trainRes <nl> self . opSystem = opSystem <nl> self . device = device <nl> self . flavor = flavor <nl> + self . cpuInfo = " " <nl> + self . gpuInfo = " " <nl> self . testResult = testResult <nl> self . trainResult = trainResult <nl> <nl> - def getOsDeviceFlavor ( self ) : <nl> - return " - " . join ( [ self . opSystem , self . device , self . flavor ] ) <nl> - <nl> def getResultsInfo ( self , baselineContent ) : <nl> trainResults = re . findall ( ' . * ( Finished Epoch \ [ [ ] * \ d + of \ d + \ ] \ : \ [ Training \ ] ) ( . * ) ' , baselineContent , re . MULTILINE ) <nl> if trainResults : <nl> def getResultsInfo ( self , baselineContent ) : <nl> if testResults : <nl> self . testResult = Baseline . getLastTestResult ( testResults [ - 1 ] ) [ 0 : - 2 ] <nl> <nl> + def getHardwareInfo ( self , baselineContent ) : <nl> + cpuInfo = re . search ( " . * Hardware info : \ s + " <nl> + " CPU Model ( Name : \ s * . * ) \ s + " <nl> + " CPU ( Cores : \ s * . * ) \ s + " <nl> + " ( Hardware threads : \ d + ) \ s + " <nl> + " Total ( Memory : \ s * . * ) \ s + " <nl> + " GPU Model ( Name : . * ) ? \ s + " <nl> + " GPU ( Memory : . * ) ? " , baselineContent ) <nl> + if cpuInfo is None : <nl> + return <nl> + self . cpuInfo = " \ n " . join ( cpuInfo . groups ( ) [ 0 : 4 ] ) <nl> + hwInfo = cpuInfo . groups ( ) [ 4 : len ( cpuInfo . groups ( ) ) ] <nl> + <nl> + gpuInfoIndex = baselineContent . find ( " GPU info : " ) <nl> + gpuInfo = re . findall ( " \ t \ t ( Device ID : \ d + ) \ s + " <nl> + " ( Compute Capability : \ d \ . \ d ) \ s + " <nl> + " ( CUDA cores : \ d + ) " , baselineContent [ gpuInfoIndex : gpuInfoIndex + 1500 ] ) # Taking just a portion of the file , in order to avoid wasting time searching it all <nl> + if not gpuInfo : <nl> + return <nl> + for index in range ( 0 , len ( gpuInfo ) ) : <nl> + hwInfo = hwInfo + gpuInfo [ index ] <nl> + self . gpuInfo = " \ n " . join ( hwInfo ) <nl> + <nl> @ staticmethod <nl> def getLastTestResult ( line ) : <nl> return line [ 0 ] + line [ 1 ] + " \ n " + line [ 2 ] . replace ( ' ; ' , ' \ n ' ) . replace ( ' ' , ' \ n ' ) <nl> def __init__ ( self , suite , name , testDir ) : <nl> self . baselineList = [ ] <nl> <nl> self . gitHash = " " <nl> - self . cpuInfo = " " <nl> - self . gpuInfo = " " <nl> <nl> @ staticmethod <nl> def discoverAllExamples ( ) : <nl> def findBaselineFilesList ( self ) : <nl> <nl> return baselineFilesList <nl> <nl> - def getCpuInfo ( self , baselineContent ) : <nl> - cpuInfo = re . search ( " . * Hardware info : \ s + " <nl> - " CPU Model ( Name : \ s * . * ) \ s + " <nl> - " CPU ( Cores : \ s * . * ) \ s + " <nl> - " ( Hardware threads : \ d + ) \ s + " <nl> - " Total ( Memory : \ s * . * ) \ s + " <nl> - " GPU Model ( Name : . * ) ? \ s + " <nl> - " GPU ( Memory : . * ) ? " , baselineContent ) <nl> - if cpuInfo is None : <nl> - return <nl> - self . cpuInfo = " \ n " . join ( cpuInfo . groups ( ) [ 0 : 4 ] ) <nl> - hwInfo = cpuInfo . groups ( ) [ 4 : len ( cpuInfo . groups ( ) ) ] <nl> - <nl> - gpuInfoIndex = baselineContent . find ( " GPU info : " ) <nl> - gpuInfo = re . findall ( " \ t \ t ( Device ID : \ d + ) \ s + " <nl> - " ( Compute Capability : \ d \ . \ d ) \ s + " <nl> - " ( CUDA cores : \ d + ) " , baselineContent [ gpuInfoIndex : gpuInfoIndex + 1500 ] ) # Taking just a portion of the file , in order to avoid wasting time searching it all <nl> - if not gpuInfo : <nl> - return <nl> - for index in range ( 0 , len ( gpuInfo ) ) : <nl> - hwInfo = hwInfo + gpuInfo [ index ] <nl> - self . gpuInfo = " \ n " . join ( hwInfo ) <nl> - <nl> - <nl> def getExamplesMetrics ( ) : <nl> Example . allExamplesIndexedByFullName = list ( sorted ( Example . allExamplesIndexedByFullName . values ( ) , key = lambda test : test . fullName ) ) <nl> <nl> def getExamplesMetrics ( ) : <nl> <nl> print ( " CNTK - Metrics collector " ) <nl> <nl> - for example in allExamples : <nl> + for example in allExamples : <nl> baselineListForExample = example . findBaselineFilesList ( ) <nl> six . print_ ( " Example : " + example . fullName ) <nl> for baseline in baselineListForExample : <nl> def getExamplesMetrics ( ) : <nl> if gitHash is None : <nl> continue <nl> example . gitHash = gitHash . group ( 1 ) <nl> - example . getCpuInfo ( baselineContent ) <nl> + baseline . getHardwareInfo ( baselineContent ) <nl> baseline . getResultsInfo ( baselineContent ) <nl> example . baselineList . append ( baseline ) <nl> <nl> - def writeMetricsToCsvFile ( ) : <nl> - metricsFile = open ( " metrics . csv " , ' wb ' ) <nl> - csvWriter = csv . writer ( metricsFile , dialect = ' excel ' , quoting = csv . QUOTE_ALL ) <nl> - tableHeader = [ ' Example ' , ' Git Hash ' , ' Hardware ' , ' GPU ' , ' Log file ' , ' OS - Device - Flavor ' , ' Train Result ' , ' Test Result ' ] <nl> - csvWriter . writerow ( tableHeader ) <nl> - <nl> - for example in Example . allExamplesIndexedByFullName : <nl> - firstBaseline = example . baselineList [ 0 ] <nl> - <nl> - csvWriter . writerow ( [ example . fullName , example . gitHash , example . cpuInfo , example . gpuInfo , firstBaseline . fullPath . split ( thisDir ) [ 1 ] [ 1 : ] , firstBaseline . getOsDeviceFlavor ( ) , firstBaseline . trainResult , firstBaseline . testResult ] ) <nl> - for baseline in example . baselineList [ 1 : ] : <nl> - csvWriter . writerow ( [ ' ' , ' ' , ' ' , ' ' , baseline . fullPath . split ( thisDir ) [ 1 ] [ 1 : ] , baseline . getOsDeviceFlavor ( ) , baseline . trainResult , baseline . testResult ] ) <nl> - <nl> - def createMarkdownExampleList ( file ) : <nl> + def createAsciidocExampleList ( file ) : <nl> for example in Example . allExamplesIndexedByFullName : <nl> if not example . baselineList : <nl> continue <nl> - file . write ( " " . join ( [ " * [ " , example . fullName , " ] ( # " , example . fullName , " ) \ n " ] ) ) <nl> + file . write ( " " . join ( [ " < < " , example . fullName . replace ( " / " , " " ) . lower ( ) , " , " , example . fullName , " > > + \ n " ] ) ) <nl> file . write ( " \ n " ) <nl> <nl> - def writeMetricsToMarkdown ( ) : <nl> - metricsFile = open ( " metrics . md " , ' wb ' ) <nl> + def writeMetricsToAsciidoc ( ) : <nl> + metricsFile = open ( " metrics . adoc " , ' wb ' ) <nl> + <nl> + createAsciidocExampleList ( metricsFile ) <nl> <nl> - createMarkdownExampleList ( metricsFile ) <nl> - <nl> for example in Example . allExamplesIndexedByFullName : <nl> if not example . baselineList : <nl> continue <nl> - <nl> - lineBreak = " \ n " <nl> - metricsFile . write ( " " . join ( [ " * * Example : * * " , " < a name = \ " " , example . fullName , " \ " > < / a > " , example . fullName , lineBreak ] ) ) <nl> - metricsFile . write ( " " . join ( [ " * * Git Hash : * * " , example . gitHash , lineBreak ] ) ) <nl> - metricsFile . write ( " " . join ( [ " * * CPU : * * " , example . cpuInfo . replace ( ' \ n ' , ' . ' ) , lineBreak ] ) ) <nl> - metricsFile . write ( " " . join ( [ " * * GPU : * * " , example . gpuInfo . replace ( ' \ n ' , ' . ' ) , lineBreak ] ) ) <nl> - <nl> - metricsFile . write ( ' \ n | Log file | OS - Device - Flavor | Train Result | Test Result | \ n ' ) <nl> - metricsFile . write ( ' | mmm | mmm | mmm | mmm | \ n ' ) <nl> + metricsFile . write ( " " . join ( [ " = = = = = " , example . fullName , " \ n " ] ) ) <nl> + metricsFile . write ( " " . join ( [ " * * Git Hash : * * " , example . gitHash , " \ n \ n " ] ) ) <nl> + metricsFile . write ( " [ cols = 3 , options = \ " header \ " ] \ n " ) <nl> + metricsFile . write ( " | = = = = \ n " ) <nl> + metricsFile . write ( " | Log file / Configuration | Train Result | Test Result \ n " ) <nl> for baseline in example . baselineList : <nl> - pipeChar = " | " <nl> - <nl> - metricsFile . write ( " " . join ( [ ' | [ ' , baseline . fullPath . split ( " / " ) [ - 1 ] , " ] ( . . / blob / master / Tests / EndToEndTests / " , <nl> - baseline . fullPath . split ( thisDir ) [ 1 ] [ 1 : ] , " ) | " , baseline . getOsDeviceFlavor ( ) , pipeChar , baseline . trainResult . replace ( " \ n " , " " ) , pipeChar , baseline . testResult . replace ( " \ n " , " " ) , pipeChar , " \ n " ] ) ) <nl> + metricsFile . write ( " " . join ( [ " | link : . . / blob / master / Tests / EndToEndTests / " , baseline . fullPath . split ( thisDir ) [ 1 ] [ 1 : ] , " [ " , <nl> + baseline . fullPath . split ( " / " ) [ - 1 ] , " ] . 2 + | " , baseline . trainResult . replace ( " \ n " , " " ) , " . 2 + | " , <nl> + baseline . testResult . replace ( " \ n " , " " ) , " | \ n " ] ) ) <nl> + metricsFile . write ( " " . join ( [ " CPU : " , re . sub ( " [ \ r ] ? \ n " , ' ' , baseline . cpuInfo ) , " GPU : " , re . sub ( " [ \ r ] ? \ n " , ' ' , baseline . gpuInfo ) ] ) ) <nl> <nl> - metricsFile . write ( " \ n " ) <nl> + metricsFile . write ( " \ n | = = = = \ n \ n " ) <nl> <nl> # = = = = = = = = = = = = = = = = = = = = = = = Entry point = = = = = = = = = = = = = = = = = = = = = = = <nl> six . print_ ( " = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = " ) <nl> def writeMetricsToMarkdown ( ) : <nl> <nl> getExamplesMetrics ( ) <nl> <nl> - # writeMetricsToCsvFile ( ) <nl> - <nl> - writeMetricsToMarkdown ( ) <nl> - <nl> + writeMetricsToAsciidoc ( ) <nl> mmm a / Tests / EndToEndTests / run - test - common <nl> ppp b / Tests / EndToEndTests / run - test - common <nl> DeleteModelsAfterTest = 1 <nl> <nl> printHardwareInfo ( ) <nl> { <nl> - cpuName = $ ( cat / proc / cpuinfo | grep - m 1 ' model name ' | cut - d " : " - f 2 | tr - s " " ) <nl> - cpuCores = $ ( cat / proc / cpuinfo | grep - m 1 ' cpu cores ' | cut - d " : " - f 2 | tr - s " " ) <nl> - totalMemory = $ ( cat / proc / meminfo | grep ' MemTotal ' | cut - d " : " - f 2 | tr - s " " ) <nl> - nproc = $ ( nproc ) <nl> - nvidiaSmiPath = " nvidia - smi " <nl> - <nl> - if [ " $ OS " = = " Windows_NT " ] ; then <nl> - nvidiaSmiPath = " / cygdrive / c / Program Files / NVIDIA Corporation / NVSMI / nvidia - smi " <nl> - fi <nl> - <nl> - if [ - f " $ nvidiaSmiPath " ] ; then <nl> - gpuName = $ ( " $ nvidiaSmiPath " - - query - gpu = gpu_name - - format = csv , noheader ) <nl> - gpuMem = $ ( " $ nvidiaSmiPath " - - query - gpu = memory . total - - format = csv , noheader ) <nl> - fi <nl> - <nl> - echo - e " Hardware info : <nl> - CPU Model Name : $ cpuName <nl> - CPU Cores : $ cpuCores <nl> - Hardware threads : $ nproc <nl> - Total Memory : $ totalMemory <nl> - GPU Model Name : $ gpuName <nl> - GPU Memory : $ gpuMem <nl> - " <nl> + cpuName = $ ( cat / proc / cpuinfo | grep - m 1 ' model name ' | cut - d " : " - f 2 | tr - s " " ) <nl> + cpuCores = $ ( cat / proc / cpuinfo | grep - m 1 ' cpu cores ' | cut - d " : " - f 2 | tr - s " " ) <nl> + totalMemory = $ ( cat / proc / meminfo | grep ' MemTotal ' | cut - d " : " - f 2 | tr - s " " ) <nl> + nproc = $ ( nproc ) <nl> + nvidiaSmiPath = " nvidia - smi " <nl> + <nl> + if [ " $ OS " = = " Windows_NT " ] ; then <nl> + nvidiaSmiPath = " / cygdrive / c / Program Files / NVIDIA Corporation / NVSMI / nvidia - smi " <nl> + fi <nl> + <nl> + if [ - f " $ nvidiaSmiPath " ] ; then <nl> + gpuName = $ ( " $ nvidiaSmiPath " - - query - gpu = gpu_name - - format = csv , noheader ) <nl> + gpuMem = $ ( " $ nvidiaSmiPath " - - query - gpu = memory . total - - format = csv , noheader ) <nl> + fi <nl> + <nl> + echo - e " Hardware info : <nl> + CPU Model Name : $ cpuName <nl> + CPU Cores : $ cpuCores <nl> + Hardware threads : $ nproc <nl> + Total Memory : $ totalMemory <nl> + GPU Model Name : $ gpuName <nl> + GPU Memory : $ gpuMem " <nl> } <nl> <nl> # Helper function to print and run a command <nl>
Fix script according to comments . Change format of wiki entry to asciidoc .
microsoft/CNTK
200a7f176de972a0fd1cce08c3b3da41709fb089
2016-06-14T12:35:53Z
mmm a / include / swift / AST / DiagnosticsFrontend . def <nl> ppp b / include / swift / AST / DiagnosticsFrontend . def <nl> ERROR ( cannot_open_serialized_file , frontend , none , <nl> " cannot open file ' % 0 ' for diagnostics emission ( % 1 ) " , ( StringRef , StringRef ) ) <nl> ERROR ( error_open_input_file , frontend , none , <nl> " error opening input file ' % 0 ' ( % 1 ) " , ( StringRef , StringRef ) ) <nl> - ERROR ( error_clang_importer_not_linked_in , frontend , none , <nl> - " clang importer not available " , ( ) ) <nl> ERROR ( error_clang_importer_create_fail , frontend , none , <nl> " clang importer creation failed " , ( ) ) <nl> ERROR ( error_missing_arg_value , frontend , none , <nl> mmm a / include / swift / AST / DiagnosticsParse . def <nl> ppp b / include / swift / AST / DiagnosticsParse . def <nl> ERROR ( decl_inner_scope , decl_parsing , none , <nl> ERROR ( decl_not_static , decl_parsing , none , <nl> " declaration cannot be marked % 0 " , ( StaticSpellingKind ) ) <nl> <nl> - ERROR ( ownership_not_attribute , decl_parsing , none , <nl> - " ' @ % 0 ' is not an attribute , use the ' % 0 ' keyword instead " , <nl> - ( StringRef ) ) <nl> - <nl> ERROR ( cskeyword_not_attribute , decl_parsing , none , <nl> " ' % 0 ' is a declaration modifier , not an attribute " , ( StringRef ) ) <nl> <nl> - ERROR ( convenience_invalid , sema_tcd , none , <nl> - " ' convenience ' is not valid on this declaration " , ( ) ) <nl> - <nl> ERROR ( decl_already_static , decl_parsing , none , <nl> " % 0 specified twice " , ( StaticSpellingKind ) ) <nl> <nl> ERROR ( static_func_decl_global_scope , decl_parsing , none , <nl> ( StaticSpellingKind ) ) <nl> ERROR ( func_decl_expected_arrow , decl_parsing , none , <nl> " expected ' - > ' after function parameter tuple " , ( ) ) <nl> - ERROR ( func_static_not_allowed , decl_parsing , none , <nl> - " static functions are not allowed in this context , " <nl> - " use ' class ' to declare a class method " , ( ) ) <nl> - ERROR ( func_conversion , decl_parsing , none , <nl> - " ' __conversion ' functions are no longer allowed " , ( ) ) <nl> <nl> / / Enum <nl> ERROR ( expected_lbrace_enum , decl_parsing , PointsToFirstBadToken , <nl> ERROR ( sil_integer_literal_not_integer_type , decl_parsing , none , <nl> " integer_literal instruction requires a ' Builtin . Int < n > ' type " , ( ) ) <nl> ERROR ( sil_float_literal_not_float_type , decl_parsing , none , <nl> " float_literal instruction requires a ' Builtin . FP < n > ' type " , ( ) ) <nl> - ERROR ( sil_apply_archetype_not_found , decl_parsing , none , <nl> - " archetype name not found in polymorphic function type of apply instruction " , ( ) ) <nl> ERROR ( sil_substitutions_on_non_polymorphic_type , decl_parsing , none , <nl> " apply of non - polymorphic function cannot have substitutions " , ( ) ) <nl> ERROR ( sil_witness_method_not_protocol , decl_parsing , none , <nl> ERROR ( sil_basicblock_arg_rparen , decl_parsing , none , <nl> " expected ' ) ' in basic block argument list " , ( ) ) <nl> <nl> / / SIL Functions <nl> - ERROR ( expected_sil_linkage_or_function , decl_parsing , none , <nl> - " expected SIL linkage type or function name " , ( ) ) <nl> ERROR ( expected_sil_function_name , decl_parsing , none , <nl> " expected SIL function name " , ( ) ) <nl> ERROR ( expected_sil_rbrace , decl_parsing , none , <nl> ERROR ( expected_type_function_result , type_parsing , PointsToFirstBadToken , <nl> " expected type for function result " , ( ) ) <nl> ERROR ( generic_non_function , type_parsing , PointsToFirstBadToken , <nl> " only syntactic function types can be generic " , ( ) ) <nl> - ERROR ( throwing_non_function , type_parsing , PointsToFirstBadToken , <nl> - " only function types may throw " , ( ) ) <nl> ERROR ( rethrowing_function_type , type_parsing , PointsToFirstBadToken , <nl> " only function declarations may be marked ' rethrows ' " , ( ) ) <nl> ERROR ( throws_after_function_result , type_parsing , none , <nl> ERROR ( expected_expr_conditional_letbinding , stmt_parsing , none , <nl> ERROR ( expected_expr_conditional_letbinding_bool_conditions , stmt_parsing , none , <nl> " expected ' let ' or ' var ' in conditional ; " <nl> " use ' & & ' to join boolean conditions " , ( ) ) <nl> - ERROR ( expected_simple_identifier_pattern , stmt_parsing , none , <nl> - " expected simple identifier pattern in optional binding condition " , ( ) ) <nl> ERROR ( expected_expr_conditional_var , stmt_parsing , PointsToFirstBadToken , <nl> " expected expression after ' = ' in conditional binding " , ( ) ) <nl> ERROR ( expected_expr_conditional_where , stmt_parsing , PointsToFirstBadToken , <nl> ERROR ( expected_while_after_repeat_body , stmt_parsing , PointsToFirstBadToken , <nl> " expected ' while ' after body of ' repeat ' statement " , ( ) ) <nl> ERROR ( expected_expr_repeat_while , stmt_parsing , PointsToFirstBadToken , <nl> " expected expression in ' repeat - while ' condition " , ( ) ) <nl> - ERROR ( missing_condition_after_repeat_while , stmt_parsing , none , <nl> - " missing condition in a ' repeat - while ' statement " , ( ) ) <nl> <nl> ERROR ( do_while_now_repeat_while , stmt_parsing , none , <nl> " ' do - while ' statement is not allowed ; use ' repeat - while ' instead " , ( ) ) <nl> ERROR ( attr_availability_renamed , attribute_parsing , none , <nl> ERROR ( attr_autoclosure_expected_r_paren , attribute_parsing , PointsToFirstBadToken , <nl> " expected ' ) ' in @ autoclosure " , ( ) ) <nl> <nl> - / / cc <nl> - ERROR ( cc_attribute_expected_lparen , attribute_parsing , none , <nl> - " expected ' ( ' after ' cc ' attribute " , ( ) ) <nl> - ERROR ( cc_attribute_expected_name , attribute_parsing , none , <nl> - " expected calling convention name identifier in ' cc ' attribute " , ( ) ) <nl> - ERROR ( cc_attribute_expected_rparen , attribute_parsing , none , <nl> - " expected ' ) ' after calling convention name for ' cc ' attribute " , ( ) ) <nl> - <nl> / / convention <nl> ERROR ( convention_attribute_expected_lparen , attribute_parsing , none , <nl> " expected ' ( ' after ' convention ' attribute " , ( ) ) <nl> WARNING ( unknown_build_config , parsing , none , <nl> / / mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm <nl> / / Availability query parsing diagnostics <nl> / / mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm <nl> - ERROR ( avail_query_not_enabled , parsing , Fatal , <nl> - " experimental availability checking not enabled " , ( ) ) <nl> - <nl> ERROR ( avail_query_expected_condition , parsing , PointsToFirstBadToken , <nl> " expected availability condition " , ( ) ) <nl> ERROR ( avail_query_expected_platform_name , parsing , PointsToFirstBadToken , <nl> mmm a / include / swift / AST / DiagnosticsSema . def <nl> ppp b / include / swift / AST / DiagnosticsSema . def <nl> ERROR ( serialization_target_too_new_repl , sema , none , <nl> " module file ' s minimum deployment target is % 0 v % 1 . % 2 % select { | . % 3 } 3 : % 4 " , <nl> ( StringRef , unsigned , unsigned , unsigned , StringRef ) ) <nl> <nl> - ERROR ( unknown_name_in_type , sema_nb , none , <nl> - " use of unknown scope % 0 in type reference " , ( Identifier ) ) <nl> - <nl> ERROR ( invalid_redecl , sema_nb , none , " invalid redeclaration of % 0 " , ( DeclName ) ) <nl> NOTE ( invalid_redecl_prev , sema_nb , none , <nl> " % 0 previously declared here " , ( DeclName ) ) <nl> ERROR ( downcast_same_type , sema_tcc , none , <nl> ( Type , Type , StringRef ) ) <nl> WARNING ( downcast_to_unrelated , sema_tcc , none , <nl> " cast from % 0 to unrelated type % 1 always fails " , ( Type , Type ) ) <nl> - ERROR ( downcast_from_existential_to_unrelated , sema_tcc , none , <nl> - " cannot cast from protocol type % 0 to non - conforming type % 1 " , <nl> - ( Type , Type ) ) <nl> ERROR ( downcast_to_more_optional , sema_tcc , none , <nl> " cannot downcast from % 0 to a more optional type % 1 " , <nl> ( Type , Type ) ) <nl> ERROR ( override_multiple_decls_base , sema_tcd , none , <nl> ERROR ( override_multiple_decls_arg_mismatch , sema_tcd , none , <nl> " declaration % 0 has different argument names from any potential " <nl> " overrides " , ( DeclName ) ) <nl> - ERROR ( override_multiple_decls_derived , sema_tcd , none , <nl> - " declaration cannot be overridden by more than one subclass " <nl> - " declaration " , ( ) ) <nl> NOTE ( overridden_near_match_here , sema_tcd , none , <nl> " potential overridden % select { method | initializer } 0 % 1 here " , <nl> ( bool , DeclName ) ) <nl> ERROR ( override_mutable_covariant_subscript , sema_tcd , none , <nl> ( Type , Type ) ) <nl> ERROR ( decl_already_final , sema_tcd , none , <nl> " static declarations are already final " , ( ) ) <nl> - ERROR ( decl_no_default_init , sema_tcd , none , <nl> - " cannot default - initialize variable of type % 0 " , ( Type ) ) <nl> - ERROR ( decl_no_default_init_ivar_hole , sema_tcd , none , <nl> - " cannot use initial value when one of the variables is ' _ ' " , ( ) ) <nl> NOTE ( decl_init_here , sema_tcd , none , <nl> " initial value is here " , ( ) ) <nl> <nl> ERROR ( override_rethrows_with_non_rethrows , sema_tcd , none , <nl> ERROR ( rethrows_without_throwing_parameter , sema_tcd , none , <nl> " ' rethrows ' function must take a throwing function argument " , ( ) ) <nl> <nl> - ERROR ( inconsistent_attribute_override , sema_tcd , none , <nl> - " @ % 0 must be consistent between a method and its override " , ( StringRef ) ) <nl> ERROR ( autoclosure_function_type , attribute_parsing , none , <nl> " @ autoclosure may only be applied to values of function type " , <nl> ( ) ) <nl> NOTE ( subscript_decl_here , sema_tca , none , <nl> " subscript operator declared here " , ( ) ) <nl> ERROR ( condition_broken_proto , sema_tce , none , <nl> " protocol ' BooleanType ' is broken " , ( ) ) <nl> - ERROR ( option_type_broken , sema_tce , none , <nl> - " type ' Optional ' is broken " , ( ) ) <nl> <nl> ERROR ( broken_bool , sema_tce , none , " type ' Bool ' is broken " , ( ) ) <nl> - ERROR ( binding_explicit_downcast , sema_tce , none , <nl> - " operand of postfix ' ? ' is a forced downcast to type % 0 ; use ' as ? ' to " <nl> - " perform a conditional downcast " , ( Type ) ) <nl> <nl> WARNING ( inject_forced_downcast , sema_tce , none , <nl> " treating a forced downcast to % 0 as optional will never produce ' nil ' " , <nl> ERROR ( migrate_from_allZeros , sema_tce , none , <nl> ERROR ( migrate_to_raw_to_raw_value , sema_tce , none , <nl> " method ' fromRaw ' has been replaced with a property ' rawValue ' " , ( ) ) <nl> <nl> - ERROR ( new_array_bound_zero , sema_tce , none , <nl> - " array type cannot have zero length " , ( ) ) <nl> - ERROR ( non_constant_array , type_parsing , none , <nl> - " array has non - constant size " , ( ) ) <nl> - <nl> ERROR ( interpolation_missing_proto , sema_tce , none , <nl> " string interpolation requires the protocol ' StringInterpolationConvertible ' to be defined " , <nl> ( ) ) <nl> ERROR ( transitive_capture_before_declaration , tce_sema , none , <nl> NOTE ( transitive_capture_through_here , tce_sema , none , <nl> " % 0 , declared here , captures % 1 " , <nl> ( Identifier , Identifier ) ) <nl> - ERROR ( unsupported_local_function_reference , tce_sema , none , <nl> - " cannot reference a local function with captures from another local " <nl> - " function " , ( ) ) <nl> - ERROR ( unsupported_recursive_local_function , tce_sema , none , <nl> - " local functions cannot reference themselves " , ( ) ) <nl> <nl> WARNING ( recursive_accessor_reference , tce_sema , none , <nl> " attempting to % select { access | modify } 1 % 0 within its own " <nl> ERROR ( tuple_pattern_label_mismatch , sema_tcp , none , <nl> " tuple pattern element label % 0 must be % 1 " , ( Identifier , Identifier ) ) <nl> ERROR ( enum_element_pattern_member_not_found , sema_tcp , none , <nl> " enum case ' % 0 ' not found in type % 1 " , ( StringRef , Type ) ) <nl> - ERROR ( enum_element_pattern_not_enum , sema_tcp , none , <nl> - " enum case pattern cannot match values of the non - enum type % 0 " , ( Type ) ) <nl> ERROR ( optional_element_pattern_not_valid_type , sema_tcp , none , <nl> " ' ? ' pattern cannot match values of type % 0 " , ( Type ) ) <nl> ERROR ( condition_optional_element_pattern_not_valid_type , sema_tcp , none , <nl> NOTE ( overridden_required_initializer_here , sema_tcd , none , <nl> / / Functions <nl> ERROR ( attribute_requires_function_type , attribute_parsing , none , <nl> " attribute only applies to syntactic function types " , ( ) ) <nl> - ERROR ( first_class_generic_function , type_parsing , PointsToFirstBadToken , <nl> - " generic types cannot be used as first - class types " , ( ) ) <nl> ERROR ( objc_block_cannot_be_thin , attribute_parsing , none , <nl> " @ objc_block function type cannot be @ thin " , ( ) ) <nl> ERROR ( attribute_not_supported , attribute_parsing , none , <nl> ERROR ( sil_function_multiple_results , type_parsing , PointsToFirstBadToken , <nl> " SIL function types cannot have multiple results " , ( ) ) <nl> ERROR ( sil_function_multiple_error_results , type_parsing , PointsToFirstBadToken , <nl> " SIL function types cannot have multiple @ error results " , ( ) ) <nl> - ERROR ( unsupported_cc_representation_combo , type_parsing , none , <nl> - " cc unsupported with this sil representation " , ( ) ) <nl> ERROR ( unsupported_sil_convention , type_parsing , none , <nl> " convention ' % 0 ' not supported in SIL " , ( StringRef ) ) <nl> ERROR ( sil_deprecated_convention_attribute , type_parsing , none , <nl>
Remove unused diagnostics .
apple/swift
43e51634810322e7c99070e7650e92a7ccabb3d7
2015-12-21T11:04:55Z
mmm a / xbmc / music / tags / TagLoaderTagLib . cpp <nl> ppp b / xbmc / music / tags / TagLoaderTagLib . cpp <nl> bool CTagLoaderTagLib : : ParseASF ( ASF : : Tag * asf , EmbeddedArt * art , CMusicInfoTag & <nl> if ( art ) <nl> art - > set ( ( const uint8_t * ) pic . picture ( ) . data ( ) , pic . picture ( ) . size ( ) , pic . mimeType ( ) . toCString ( ) ) ; <nl> } <nl> - else <nl> + else if ( g_advancedSettings . m_logLevel = = LOG_LEVEL_MAX ) <nl> CLog : : Log ( LOGDEBUG , " unrecognized ASF tag name : % s " , it - > first . toCString ( true ) ) ; <nl> } <nl> tag . SetLoaded ( true ) ; <nl> bool CTagLoaderTagLib : : ParseID3v2Tag ( ID3v2 : : Tag * id3v2 , EmbeddedArt * art , CMusic <nl> else if ( frame - > description ( ) = = " replaygain_album_gain " ) tag . SetReplayGainAlbumGain ( ( int ) ( atof ( stringList . front ( ) . toCString ( true ) ) * 100 + 0 . 5 ) ) ; <nl> else if ( frame - > description ( ) = = " replaygain_track_peak " ) tag . SetReplayGainTrackPeak ( ( float ) atof ( stringList . front ( ) . toCString ( true ) ) ) ; <nl> else if ( frame - > description ( ) = = " replaygain_album_peak " ) tag . SetReplayGainAlbumPeak ( ( float ) atof ( stringList . front ( ) . toCString ( true ) ) ) ; <nl> - else <nl> + else if ( g_advancedSettings . m_logLevel = = LOG_LEVEL_MAX ) <nl> CLog : : Log ( LOGDEBUG , " unrecognized user text tag detected : TXXX : % s " , frame - > description ( ) . toCString ( true ) ) ; <nl> } <nl> else if ( it - > first = = " UFID " ) <nl> bool CTagLoaderTagLib : : ParseID3v2Tag ( ID3v2 : : Tag * id3v2 , EmbeddedArt * art , CMusic <nl> tag . SetRating ( POPMtoXBMC ( popFrame - > rating ( ) ) ) ; <nl> } <nl> } <nl> - else <nl> + else if ( g_advancedSettings . m_logLevel = = LOG_LEVEL_MAX ) <nl> CLog : : Log ( LOGDEBUG , " unrecognized ID3 frame detected : % c % c % c % c " , it - > first [ 0 ] , it - > first [ 1 ] , it - > first [ 2 ] , it - > first [ 3 ] ) ; <nl> } / / for <nl> <nl> bool CTagLoaderTagLib : : ParseAPETag ( APE : : Tag * ape , EmbeddedArt * art , CMusicInfoTa <nl> else if ( it - > first = = " MUSICBRAINZ_ALBUMARTISTID " ) tag . SetMusicBrainzAlbumArtistID ( it - > second . toString ( ) . to8Bit ( true ) ) ; <nl> else if ( it - > first = = " MUSICBRAINZ_ALBUMID " ) tag . SetMusicBrainzAlbumID ( it - > second . toString ( ) . to8Bit ( true ) ) ; <nl> else if ( it - > first = = " MUSICBRAINZ_TRACKID " ) tag . SetMusicBrainzTrackID ( it - > second . toString ( ) . to8Bit ( true ) ) ; <nl> - else <nl> + else if ( g_advancedSettings . m_logLevel = = LOG_LEVEL_MAX ) <nl> CLog : : Log ( LOGDEBUG , " unrecognized APE tag : % s " , it - > first . toCString ( true ) ) ; <nl> } <nl> <nl> bool CTagLoaderTagLib : : ParseXiphComment ( Ogg : : XiphComment * xiph , EmbeddedArt * art <nl> if ( iRating > 0 & & iRating < = 100 ) <nl> tag . SetRating ( ( iRating / 20 ) + ' 0 ' ) ; <nl> } <nl> - else <nl> + else if ( g_advancedSettings . m_logLevel = = LOG_LEVEL_MAX ) <nl> CLog : : Log ( LOGDEBUG , " unrecognized XipComment name : % s " , it - > first . toCString ( true ) ) ; <nl> } <nl> <nl>
reduce the log spam from the taglib tag loaders - enable by setting loglevel to 3 in advancedsettings . xml
xbmc/xbmc
ed16a1e5f2ec3d8e4c0ec1b9b25e3664538b5b88
2012-10-27T04:51:12Z
mmm a / toolsrc / include / vcpkg / binarycaching . h <nl> ppp b / toolsrc / include / vcpkg / binarycaching . h <nl> namespace vcpkg <nl> { <nl> virtual ~ IBinaryProvider ( ) = default ; <nl> virtual void prefetch ( ) = 0 ; <nl> - virtual RestoreResult try_restore ( const VcpkgPaths & paths , <nl> - const PackageSpec & spec , <nl> - const Build : : AbiTagAndFile & abi_tag_and_file , <nl> - const Build : : BuildPackageOptions & build_options ) = 0 ; <nl> - virtual void push_success ( const VcpkgPaths & paths , <nl> - const Build : : AbiTagAndFile & abi_tag_and_file , <nl> - const Dependencies : : InstallPlanAction & action ) = 0 ; <nl> - virtual void push_failure ( const VcpkgPaths & paths , <nl> - const Build : : AbiTagAndFile & abi_tag_and_file , <nl> - const PackageSpec & spec ) = 0 ; <nl> + virtual RestoreResult try_restore ( const VcpkgPaths & paths , const Dependencies : : InstallPlanAction & action ) = 0 ; <nl> + virtual void push_success ( const VcpkgPaths & paths , const Dependencies : : InstallPlanAction & action ) = 0 ; <nl> + virtual void push_failure ( const VcpkgPaths & paths , const std : : string & abi_tag , const PackageSpec & spec ) = 0 ; <nl> + virtual RestoreResult precheck ( const VcpkgPaths & paths , <nl> + const Dependencies : : InstallPlanAction & action , <nl> + bool purge_tombstones ) = 0 ; <nl> } ; <nl> <nl> std : : unique_ptr < IBinaryProvider > create_archives_provider ( ) ; <nl> mmm a / toolsrc / include / vcpkg / build . h <nl> ppp b / toolsrc / include / vcpkg / build . h <nl> namespace vcpkg <nl> namespace vcpkg : : Dependencies <nl> { <nl> struct InstallPlanAction ; <nl> + struct ActionPlan ; <nl> } <nl> <nl> namespace vcpkg : : Build <nl> namespace vcpkg : : Build <nl> <nl> ExtendedBuildResult build_package ( const VcpkgPaths & paths , <nl> const Dependencies : : InstallPlanAction & config , <nl> - const CMakeVars : : CMakeVarProvider & var_provider , <nl> IBinaryProvider * binaries_provider , <nl> const StatusParagraphs & status_db ) ; <nl> <nl> namespace vcpkg : : Build <nl> fs : : path tag_file ; <nl> } ; <nl> <nl> + void compute_all_abis ( const VcpkgPaths & paths , <nl> + Dependencies : : ActionPlan & action_plan , <nl> + const CMakeVars : : CMakeVarProvider & var_provider , <nl> + const StatusParagraphs & status_db ) ; <nl> + <nl> Optional < AbiTagAndFile > compute_abi_tag ( const VcpkgPaths & paths , <nl> const Dependencies : : InstallPlanAction & config , <nl> - const PreBuildInfo & pre_build_info , <nl> Span < const AbiEntry > dependency_abis ) ; <nl> } <nl> mmm a / toolsrc / include / vcpkg / dependencies . h <nl> ppp b / toolsrc / include / vcpkg / dependencies . h <nl> namespace vcpkg : : Dependencies <nl> std : : unordered_map < std : : string , std : : vector < FeatureSpec > > & & dependencies ) ; <nl> <nl> std : : string displayname ( ) const ; <nl> + const std : : string & public_abi ( ) const ; <nl> <nl> PackageSpec spec ; <nl> <nl> namespace vcpkg : : Dependencies <nl> <nl> std : : unordered_map < std : : string , std : : vector < FeatureSpec > > feature_dependencies ; <nl> std : : vector < PackageSpec > package_dependencies ; <nl> - <nl> std : : vector < std : : string > feature_list ; <nl> + <nl> + Optional < std : : unique_ptr < Build : : PreBuildInfo > > pre_build_info ; <nl> + Optional < std : : string > package_abi ; <nl> + Optional < fs : : path > abi_tag_file ; <nl> } ; <nl> <nl> enum class RemovePlanType <nl> mmm a / toolsrc / src / vcpkg / binarycaching . cpp <nl> ppp b / toolsrc / src / vcpkg / binarycaching . cpp <nl> namespace <nl> # endif <nl> } <nl> <nl> - static void compress_archive ( const VcpkgPaths & paths , const PackageSpec & spec , const fs : : path & destination ) <nl> - { <nl> - compress_directory ( paths , paths . package_dir ( spec ) , destination ) ; <nl> - } <nl> - <nl> struct ArchivesBinaryProvider : IBinaryProvider <nl> { <nl> ~ ArchivesBinaryProvider ( ) = default ; <nl> void prefetch ( ) override { } <nl> - RestoreResult try_restore ( const VcpkgPaths & paths , <nl> - const PackageSpec & spec , <nl> - const Build : : AbiTagAndFile & abi_tag_and_file , <nl> - const Build : : BuildPackageOptions & build_options ) override <nl> + RestoreResult try_restore ( const VcpkgPaths & paths , const Dependencies : : InstallPlanAction & action ) override <nl> { <nl> + const auto & abi_tag = action . package_abi . value_or_exit ( VCPKG_LINE_INFO ) ; <nl> + auto & spec = action . spec ; <nl> auto & fs = paths . get_filesystem ( ) ; <nl> std : : error_code ec ; <nl> const fs : : path archives_root_dir = paths . root / " archives " ; <nl> - const std : : string archive_name = abi_tag_and_file . tag + " . zip " ; <nl> - const fs : : path archive_subpath = fs : : u8path ( abi_tag_and_file . tag . substr ( 0 , 2 ) ) / archive_name ; <nl> + const std : : string archive_name = abi_tag + " . zip " ; <nl> + const fs : : path archive_subpath = fs : : u8path ( abi_tag . substr ( 0 , 2 ) ) / archive_name ; <nl> const fs : : path archive_path = archives_root_dir / archive_subpath ; <nl> const fs : : path archive_tombstone_path = archives_root_dir / " fail " / archive_subpath ; <nl> - const fs : : path abi_package_dir = paths . package_dir ( spec ) / " share " / spec . name ( ) ; <nl> - const fs : : path abi_file_in_package = paths . package_dir ( spec ) / " share " / spec . name ( ) / " vcpkg_abi_info . txt " ; <nl> if ( fs . exists ( archive_path ) ) <nl> { <nl> System : : print2 ( " Using cached binary package : " , archive_path . u8string ( ) , " \ n " ) ; <nl> namespace <nl> if ( archive_result ! = 0 ) <nl> { <nl> System : : print2 ( " Failed to decompress archive package \ n " ) ; <nl> - if ( build_options . purge_decompress_failure = = Build : : PurgeDecompressFailure : : NO ) <nl> + if ( action . build_options . purge_decompress_failure = = Build : : PurgeDecompressFailure : : NO ) <nl> { <nl> return RestoreResult : : BUILD_FAILED ; <nl> } <nl> namespace <nl> <nl> if ( fs . exists ( archive_tombstone_path ) ) <nl> { <nl> - if ( build_options . fail_on_tombstone = = Build : : FailOnTombstone : : YES ) <nl> + if ( action . build_options . fail_on_tombstone = = Build : : FailOnTombstone : : YES ) <nl> { <nl> System : : print2 ( " Found failure tombstone : " , archive_tombstone_path . u8string ( ) , " \ n " ) ; <nl> return RestoreResult : : BUILD_FAILED ; <nl> namespace <nl> <nl> return RestoreResult : : MISSING ; <nl> } <nl> - void push_success ( const VcpkgPaths & paths , <nl> - const Build : : AbiTagAndFile & abi_tag_and_file , <nl> - const Dependencies : : InstallPlanAction & action ) override <nl> + void push_success ( const VcpkgPaths & paths , const Dependencies : : InstallPlanAction & action ) override <nl> { <nl> + const auto & abi_tag = action . package_abi . value_or_exit ( VCPKG_LINE_INFO ) ; <nl> auto & spec = action . spec ; <nl> auto & fs = paths . get_filesystem ( ) ; <nl> std : : error_code ec ; <nl> const fs : : path archives_root_dir = paths . root / " archives " ; <nl> - const std : : string archive_name = abi_tag_and_file . tag + " . zip " ; <nl> - const fs : : path archive_subpath = fs : : u8path ( abi_tag_and_file . tag . substr ( 0 , 2 ) ) / archive_name ; <nl> + const std : : string archive_name = abi_tag + " . zip " ; <nl> + const fs : : path archive_subpath = fs : : u8path ( abi_tag . substr ( 0 , 2 ) ) / archive_name ; <nl> const fs : : path archive_path = archives_root_dir / archive_subpath ; <nl> - const fs : : path archive_tombstone_path = archives_root_dir / " fail " / archive_subpath ; <nl> - const fs : : path abi_package_dir = paths . package_dir ( spec ) / " share " / spec . name ( ) ; <nl> - const fs : : path abi_file_in_package = paths . package_dir ( spec ) / " share " / spec . name ( ) / " vcpkg_abi_info . txt " ; <nl> <nl> const auto tmp_archive_path = paths . buildtrees / spec . name ( ) / ( spec . triplet ( ) . to_string ( ) + " . zip " ) ; <nl> <nl> - compress_archive ( paths , spec , tmp_archive_path ) ; <nl> + compress_directory ( paths , paths . package_dir ( spec ) , tmp_archive_path ) ; <nl> <nl> fs . create_directories ( archive_path . parent_path ( ) , ec ) ; <nl> fs . rename_or_copy ( tmp_archive_path , archive_path , " . tmp " , ec ) ; <nl> namespace <nl> else <nl> System : : printf ( " Stored binary cache : % s \ n " , archive_path . u8string ( ) ) ; <nl> } <nl> - void push_failure ( const VcpkgPaths & paths , <nl> - const Build : : AbiTagAndFile & abi_tag_and_file , <nl> - const PackageSpec & spec ) override <nl> + void push_failure ( const VcpkgPaths & paths , const std : : string & abi_tag , const PackageSpec & spec ) override <nl> { <nl> auto & fs = paths . get_filesystem ( ) ; <nl> std : : error_code ec ; <nl> const fs : : path archives_root_dir = paths . root / " archives " ; <nl> - const std : : string archive_name = abi_tag_and_file . tag + " . zip " ; <nl> - const fs : : path archive_subpath = fs : : u8path ( abi_tag_and_file . tag . substr ( 0 , 2 ) ) / archive_name ; <nl> + const std : : string archive_name = abi_tag + " . zip " ; <nl> + const fs : : path archive_subpath = fs : : u8path ( abi_tag . substr ( 0 , 2 ) ) / archive_name ; <nl> const fs : : path archive_path = archives_root_dir / archive_subpath ; <nl> const fs : : path archive_tombstone_path = archives_root_dir / " fail " / archive_subpath ; <nl> const fs : : path abi_package_dir = paths . package_dir ( spec ) / " share " / spec . name ( ) ; <nl> namespace <nl> fs . remove_all ( tmp_log_path , VCPKG_LINE_INFO ) ; <nl> } <nl> } <nl> + RestoreResult precheck ( const VcpkgPaths & paths , <nl> + const Dependencies : : InstallPlanAction & action , <nl> + bool purge_tombstones ) override <nl> + { <nl> + const auto & abi_tag = action . package_abi . value_or_exit ( VCPKG_LINE_INFO ) ; <nl> + auto & fs = paths . get_filesystem ( ) ; <nl> + std : : error_code ec ; <nl> + const fs : : path archives_root_dir = paths . root / " archives " ; <nl> + const std : : string archive_name = abi_tag + " . zip " ; <nl> + const fs : : path archive_subpath = fs : : u8path ( abi_tag . substr ( 0 , 2 ) ) / archive_name ; <nl> + const fs : : path archive_path = archives_root_dir / archive_subpath ; <nl> + const fs : : path archive_tombstone_path = archives_root_dir / " fail " / archive_subpath ; <nl> + <nl> + if ( fs . exists ( archive_path ) ) <nl> + { <nl> + return RestoreResult : : SUCCESS ; <nl> + } <nl> + <nl> + if ( purge_tombstones ) <nl> + { <nl> + fs . remove ( archive_tombstone_path , ec ) ; / / Ignore error <nl> + } <nl> + else if ( fs . exists ( archive_tombstone_path ) ) <nl> + { <nl> + if ( action . build_options . fail_on_tombstone = = Build : : FailOnTombstone : : YES ) <nl> + { <nl> + return RestoreResult : : BUILD_FAILED ; <nl> + } <nl> + } <nl> + <nl> + return RestoreResult : : MISSING ; <nl> + } <nl> } ; <nl> } <nl> <nl> mmm a / toolsrc / src / vcpkg / build . cpp <nl> ppp b / toolsrc / src / vcpkg / build . cpp <nl> namespace vcpkg : : Build : : Command <nl> action - > build_options = build_package_options ; <nl> <nl> const auto build_timer = Chrono : : ElapsedTimer : : create_started ( ) ; <nl> - const auto result = <nl> - Build : : build_package ( paths , * action , var_provider , create_archives_provider ( ) . get ( ) , status_db ) ; <nl> + const auto result = Build : : build_package ( paths , * action , create_archives_provider ( ) . get ( ) , status_db ) ; <nl> System : : print2 ( " Elapsed time for package " , spec , " : " , build_timer , ' \ n ' ) ; <nl> <nl> if ( result . code = = BuildResult : : CASCADED_DUE_TO_MISSING_DEPENDENCIES ) <nl> namespace vcpkg : : Build <nl> return hash ; <nl> } <nl> <nl> - static ExtendedBuildResult do_build_package ( const VcpkgPaths & paths , <nl> - const PreBuildInfo & pre_build_info , <nl> - const std : : string & abi_tag , <nl> - const Dependencies : : InstallPlanAction & action ) <nl> + static ExtendedBuildResult do_build_package ( const VcpkgPaths & paths , const Dependencies : : InstallPlanAction & action ) <nl> { <nl> + const auto & pre_build_info = * action . pre_build_info . value_or_exit ( VCPKG_LINE_INFO ) . get ( ) ; <nl> + <nl> auto & fs = paths . get_filesystem ( ) ; <nl> auto & & scfl = action . source_control_file_location . value_or_exit ( VCPKG_LINE_INFO ) ; <nl> <nl> namespace vcpkg : : Build <nl> auto find_itr = action . feature_dependencies . find ( " core " ) ; <nl> Checks : : check_exit ( VCPKG_LINE_INFO , find_itr ! = action . feature_dependencies . end ( ) ) ; <nl> <nl> - std : : unique_ptr < BinaryControlFile > bcf = create_binary_control_file ( <nl> - * scfl . source_control_file - > core_paragraph , triplet , build_info , abi_tag , std : : move ( find_itr - > second ) ) ; <nl> + std : : unique_ptr < BinaryControlFile > bcf = create_binary_control_file ( * scfl . source_control_file - > core_paragraph , <nl> + triplet , <nl> + build_info , <nl> + action . public_abi ( ) , <nl> + std : : move ( find_itr - > second ) ) ; <nl> <nl> if ( error_count ! = 0 ) <nl> { <nl> namespace vcpkg : : Build <nl> } <nl> <nl> static ExtendedBuildResult do_build_package_and_clean_buildtrees ( const VcpkgPaths & paths , <nl> - const PreBuildInfo & pre_build_info , <nl> - const std : : string & abi_tag , <nl> const Dependencies : : InstallPlanAction & action ) <nl> { <nl> - auto result = do_build_package ( paths , pre_build_info , abi_tag , action ) ; <nl> + auto result = do_build_package ( paths , action ) ; <nl> <nl> if ( action . build_options . clean_buildtrees = = CleanBuildtrees : : YES ) <nl> { <nl> namespace vcpkg : : Build <nl> <nl> Optional < AbiTagAndFile > compute_abi_tag ( const VcpkgPaths & paths , <nl> const Dependencies : : InstallPlanAction & action , <nl> - const PreBuildInfo & pre_build_info , <nl> Span < const AbiEntry > dependency_abis ) <nl> { <nl> auto & fs = paths . get_filesystem ( ) ; <nl> Triplet triplet = action . spec . triplet ( ) ; <nl> const std : : string & name = action . spec . name ( ) ; <nl> + const auto & pre_build_info = * action . pre_build_info . value_or_exit ( VCPKG_LINE_INFO ) ; <nl> <nl> std : : vector < AbiEntry > abi_tag_entries ( dependency_abis . begin ( ) , dependency_abis . end ( ) ) ; <nl> <nl> namespace vcpkg : : Build <nl> return nullopt ; <nl> } <nl> <nl> + void compute_all_abis ( const VcpkgPaths & paths , <nl> + Dependencies : : ActionPlan & action_plan , <nl> + const CMakeVars : : CMakeVarProvider & var_provider , <nl> + const StatusParagraphs & status_db ) <nl> + { <nl> + using Dependencies : : InstallPlanAction ; <nl> + for ( auto it = action_plan . install_actions . begin ( ) ; it ! = action_plan . install_actions . end ( ) ; + + it ) <nl> + { <nl> + auto & action = * it ; <nl> + std : : vector < AbiEntry > dependency_abis ; <nl> + if ( ! Util : : Enum : : to_bool ( action . build_options . only_downloads ) ) <nl> + { <nl> + for ( auto & & pspec : action . package_dependencies ) <nl> + { <nl> + if ( pspec = = action . spec ) continue ; <nl> + <nl> + auto pred = [ & ] ( const InstallPlanAction & ipa ) { return ipa . spec = = pspec ; } ; <nl> + auto it2 = std : : find_if ( action_plan . install_actions . begin ( ) , it , pred ) ; <nl> + if ( it2 = = it ) <nl> + { <nl> + / / Finally , look in current installed <nl> + auto status_it = status_db . find ( pspec ) ; <nl> + if ( status_it = = status_db . end ( ) ) <nl> + { <nl> + Checks : : exit_with_message ( <nl> + VCPKG_LINE_INFO , " Failed to find dependency abi for % s - > % s " , action . spec , pspec ) ; <nl> + } <nl> + else <nl> + { <nl> + dependency_abis . emplace_back ( AbiEntry { pspec . name ( ) , status_it - > get ( ) - > package . abi } ) ; <nl> + } <nl> + } <nl> + else <nl> + { <nl> + dependency_abis . emplace_back ( AbiEntry { pspec . name ( ) , it2 - > public_abi ( ) } ) ; <nl> + } <nl> + } <nl> + } <nl> + <nl> + action . pre_build_info = std : : make_unique < PreBuildInfo > ( <nl> + paths , action . spec . triplet ( ) , var_provider . get_tag_vars ( action . spec ) . value_or_exit ( VCPKG_LINE_INFO ) ) ; <nl> + auto maybe_abi_tag_and_file = compute_abi_tag ( paths , action , dependency_abis ) ; <nl> + if ( auto p = maybe_abi_tag_and_file . get ( ) ) <nl> + { <nl> + action . abi_tag_file = std : : move ( p - > tag_file ) ; <nl> + action . package_abi = std : : move ( p - > tag ) ; <nl> + } <nl> + else <nl> + { <nl> + action . package_abi = " " ; <nl> + } <nl> + } <nl> + } <nl> + <nl> ExtendedBuildResult build_package ( const VcpkgPaths & paths , <nl> const Dependencies : : InstallPlanAction & action , <nl> - const CMakeVars : : CMakeVarProvider & var_provider , <nl> IBinaryProvider * binaries_provider , <nl> const StatusParagraphs & status_db ) <nl> { <nl> namespace vcpkg : : Build <nl> <nl> auto & fs = paths . get_filesystem ( ) ; <nl> Triplet triplet = action . spec . triplet ( ) ; <nl> + auto & spec = action . spec ; <nl> const std : : string & name = action . source_control_file_location . value_or_exit ( VCPKG_LINE_INFO ) <nl> . source_control_file - > core_paragraph - > name ; <nl> <nl> std : : vector < FeatureSpec > missing_fspecs ; <nl> for ( const auto & kv : action . feature_dependencies ) <nl> { <nl> - for ( const FeatureSpec & spec : kv . second ) <nl> + for ( const FeatureSpec & fspec : kv . second ) <nl> { <nl> - if ( ! ( status_db . is_installed ( spec ) | | spec . name ( ) = = name ) ) <nl> + if ( ! ( status_db . is_installed ( fspec ) | | spec . name ( ) = = name ) ) <nl> { <nl> - missing_fspecs . emplace_back ( spec ) ; <nl> + missing_fspecs . emplace_back ( fspec ) ; <nl> } <nl> } <nl> } <nl> namespace vcpkg : : Build <nl> return { BuildResult : : CASCADED_DUE_TO_MISSING_DEPENDENCIES , std : : move ( missing_fspecs ) } ; <nl> } <nl> <nl> - const PackageSpec spec ( name , triplet ) ; <nl> - <nl> std : : vector < AbiEntry > dependency_abis ; <nl> for ( auto & & pspec : action . package_dependencies ) <nl> { <nl> namespace vcpkg : : Build <nl> AbiEntry { status_it - > get ( ) - > package . spec . name ( ) , status_it - > get ( ) - > package . abi } ) ; <nl> } <nl> <nl> - const std : : unordered_map < std : : string , std : : string > & cmake_vars = <nl> - var_provider . get_tag_vars ( spec ) . value_or_exit ( VCPKG_LINE_INFO ) ; <nl> - const PreBuildInfo pre_build_info ( paths , triplet , cmake_vars ) ; <nl> - <nl> - auto maybe_abi_tag_and_file = compute_abi_tag ( paths , action , pre_build_info , dependency_abis ) ; <nl> - if ( ! maybe_abi_tag_and_file ) <nl> + if ( ! action . abi_tag_file ) <nl> { <nl> - return do_build_package_and_clean_buildtrees ( <nl> - paths , pre_build_info , pre_build_info . public_abi_override . value_or ( AbiTagAndFile { } . tag ) , action ) ; <nl> + return do_build_package_and_clean_buildtrees ( paths , action ) ; <nl> } <nl> <nl> + auto & abi_file = * action . abi_tag_file . get ( ) ; <nl> + <nl> std : : error_code ec ; <nl> - const auto abi_tag_and_file = maybe_abi_tag_and_file . get ( ) ; <nl> const fs : : path abi_package_dir = paths . package_dir ( spec ) / " share " / spec . name ( ) ; <nl> const fs : : path abi_file_in_package = paths . package_dir ( spec ) / " share " / spec . name ( ) / " vcpkg_abi_info . txt " ; <nl> if ( binary_caching_enabled ) <nl> { <nl> - auto restore = binaries_provider - > try_restore ( paths , spec , * abi_tag_and_file , action . build_options ) ; <nl> + auto restore = binaries_provider - > try_restore ( paths , action ) ; <nl> if ( restore = = RestoreResult : : BUILD_FAILED ) <nl> return BuildResult : : BUILD_FAILED ; <nl> else if ( restore = = RestoreResult : : SUCCESS ) <nl> namespace vcpkg : : Build <nl> } <nl> } <nl> <nl> - ExtendedBuildResult result = do_build_package_and_clean_buildtrees ( <nl> - paths , pre_build_info , pre_build_info . public_abi_override . value_or ( abi_tag_and_file - > tag ) , action ) ; <nl> + ExtendedBuildResult result = do_build_package_and_clean_buildtrees ( paths , action ) ; <nl> <nl> fs . create_directories ( abi_package_dir , ec ) ; <nl> - fs . copy_file ( abi_tag_and_file - > tag_file , abi_file_in_package , fs : : stdfs : : copy_options : : none , ec ) ; <nl> + fs . copy_file ( abi_file , abi_file_in_package , fs : : stdfs : : copy_options : : none , ec ) ; <nl> Checks : : check_exit ( VCPKG_LINE_INFO , ! ec , " Could not copy into file : % s " , abi_file_in_package . u8string ( ) ) ; <nl> <nl> if ( binary_caching_enabled & & result . code = = BuildResult : : SUCCEEDED ) <nl> { <nl> - binaries_provider - > push_success ( paths , * abi_tag_and_file , action ) ; <nl> + binaries_provider - > push_success ( paths , action ) ; <nl> } <nl> else if ( binary_caching_enabled & & <nl> ( result . code = = BuildResult : : BUILD_FAILED | | result . code = = BuildResult : : POST_BUILD_CHECKS_FAILED ) ) <nl> { <nl> - binaries_provider - > push_failure ( paths , * abi_tag_and_file , spec ) ; <nl> + binaries_provider - > push_failure ( paths , action . package_abi . value_or_exit ( VCPKG_LINE_INFO ) , spec ) ; <nl> } <nl> <nl> return result ; <nl> mmm a / toolsrc / src / vcpkg / commands . ci . cpp <nl> ppp b / toolsrc / src / vcpkg / commands . ci . cpp <nl> <nl> # include < vcpkg / base / stringliteral . h > <nl> # include < vcpkg / base / system . h > <nl> # include < vcpkg / base / util . h > <nl> + # include < vcpkg / binarycaching . h > <nl> # include < vcpkg / build . h > <nl> # include < vcpkg / commands . h > <nl> # include < vcpkg / dependencies . h > <nl> namespace vcpkg : : Commands : : CI <nl> std : : map < PackageSpec , Build : : BuildResult > known ; <nl> std : : map < PackageSpec , std : : vector < std : : string > > features ; <nl> std : : unordered_map < std : : string , SourceControlFileLocation > default_feature_provider ; <nl> - std : : map < PackageSpec , std : : string > abi_tag_map ; <nl> } ; <nl> <nl> static bool supported_for_triplet ( const CMakeVars : : TripletCMakeVarProvider & var_provider , <nl> namespace vcpkg : : Commands : : CI <nl> { <nl> auto ret = std : : make_unique < UnknownCIPortsResults > ( ) ; <nl> <nl> - auto & fs = paths . get_filesystem ( ) ; <nl> - <nl> std : : set < PackageSpec > will_fail ; <nl> <nl> const Build : : BuildPackageOptions build_options = { <nl> namespace vcpkg : : Commands : : CI <nl> Checks : : check_exit ( VCPKG_LINE_INFO , <nl> action_plan . already_installed . empty ( ) , <nl> " Cannot use CI command with packages already installed . " ) ; <nl> + <nl> + Build : : compute_all_abis ( paths , action_plan , var_provider , { } ) ; <nl> + <nl> + auto binaryprovider = create_archives_provider ( ) ; <nl> + <nl> std : : string stdout_buffer ; <nl> for ( auto & & action : action_plan . install_actions ) <nl> { <nl> auto p = & action ; <nl> - / / determine abi tag <nl> - std : : string abi ; <nl> if ( auto scfl = p - > source_control_file_location . get ( ) ) <nl> { <nl> auto emp = ret - > default_feature_provider . emplace ( p - > spec . name ( ) , * scfl ) ; <nl> emp . first - > second . source_control_file - > core_paragraph - > default_features = p - > feature_list ; <nl> <nl> - auto triplet = p - > spec . triplet ( ) ; <nl> - <nl> p - > build_options = build_options ; <nl> - <nl> - auto dependency_abis = <nl> - Util : : fmap ( p - > package_dependencies , [ & ] ( const PackageSpec & spec ) - > Build : : AbiEntry { <nl> - auto it = ret - > abi_tag_map . find ( spec ) ; <nl> - <nl> - if ( it = = ret - > abi_tag_map . end ( ) ) <nl> - return { spec . name ( ) , " " } ; <nl> - else <nl> - return { spec . name ( ) , it - > second } ; <nl> - } ) ; <nl> - <nl> - const auto pre_build_info = Build : : PreBuildInfo ( <nl> - paths , triplet , var_provider . get_tag_vars ( p - > spec ) . value_or_exit ( VCPKG_LINE_INFO ) ) ; <nl> - <nl> - auto maybe_tag_and_file = Build : : compute_abi_tag ( paths , * p , pre_build_info , dependency_abis ) ; <nl> - if ( auto tag_and_file = maybe_tag_and_file . get ( ) ) <nl> - { <nl> - abi = tag_and_file - > tag ; <nl> - ret - > abi_tag_map . emplace ( p - > spec , abi ) ; <nl> - } <nl> - } <nl> - else if ( auto ipv = p - > installed_package . get ( ) ) <nl> - { <nl> - abi = ipv - > core - > package . abi ; <nl> - if ( ! abi . empty ( ) ) ret - > abi_tag_map . emplace ( p - > spec , abi ) ; <nl> - } <nl> - <nl> - auto archives_root_dir = paths . root / " archives " ; <nl> - auto archive_name = abi + " . zip " ; <nl> - auto archive_subpath = fs : : u8path ( abi . substr ( 0 , 2 ) ) / archive_name ; <nl> - auto archive_path = archives_root_dir / archive_subpath ; <nl> - auto archive_tombstone_path = archives_root_dir / " fail " / archive_subpath ; <nl> - <nl> - if ( purge_tombstones ) <nl> - { <nl> - std : : error_code ec ; <nl> - fs . remove ( archive_tombstone_path , ec ) ; / / Ignore error <nl> } <nl> <nl> + auto precheck_result = binaryprovider - > precheck ( paths , action , purge_tombstones ) ; <nl> bool b_will_build = false ; <nl> <nl> std : : string state ; <nl> namespace vcpkg : : Commands : : CI <nl> ret - > known . emplace ( p - > spec , BuildResult : : CASCADED_DUE_TO_MISSING_DEPENDENCIES ) ; <nl> will_fail . emplace ( p - > spec ) ; <nl> } <nl> - else if ( fs . exists ( archive_path ) ) <nl> + else if ( precheck_result = = RestoreResult : : SUCCESS ) <nl> { <nl> state = " pass " ; <nl> ret - > known . emplace ( p - > spec , BuildResult : : SUCCEEDED ) ; <nl> } <nl> - else if ( fs . exists ( archive_tombstone_path ) ) <nl> + else if ( precheck_result = = RestoreResult : : BUILD_FAILED ) <nl> { <nl> state = " fail " ; <nl> ret - > known . emplace ( p - > spec , BuildResult : : BUILD_FAILED ) ; <nl> namespace vcpkg : : Commands : : CI <nl> b_will_build = true ; <nl> } <nl> <nl> - Strings : : append ( stdout_buffer , <nl> - Strings : : format ( " % 40s : % 1s % 8s : % s \ n " , p - > spec , ( b_will_build ? " * " : " " ) , state , abi ) ) ; <nl> + Strings : : append ( <nl> + stdout_buffer , <nl> + Strings : : format ( <nl> + " % 40s : % 1s % 8s : % s \ n " , p - > spec , ( b_will_build ? " * " : " " ) , state , action . public_abi ( ) ) ) ; <nl> if ( stdout_buffer . size ( ) > 2048 ) <nl> { <nl> System : : print2 ( stdout_buffer ) ; <nl> namespace vcpkg : : Commands : : CI <nl> } ; <nl> <nl> std : : vector < std : : map < PackageSpec , BuildResult > > all_known_results ; <nl> - std : : map < PackageSpec , std : : string > abi_tag_map ; <nl> <nl> XunitTestResults xunitTestResults ; <nl> <nl> namespace vcpkg : : Commands : : CI <nl> { <nl> auto & port_features = split_specs - > features [ result . spec ] ; <nl> split_specs - > known . erase ( result . spec ) ; <nl> - xunitTestResults . add_test_results ( result . spec . to_string ( ) , <nl> - result . build_result . code , <nl> - result . timing , <nl> - split_specs - > abi_tag_map . at ( result . spec ) , <nl> - port_features ) ; <nl> + xunitTestResults . add_test_results ( <nl> + result . spec . to_string ( ) , result . build_result . code , result . timing , " " , port_features ) ; <nl> } <nl> <nl> / / Adding results for ports that were not built because they have known states <nl> for ( auto & & port : split_specs - > known ) <nl> { <nl> auto & port_features = split_specs - > features [ port . first ] ; <nl> - xunitTestResults . add_test_results ( port . first . to_string ( ) , <nl> - port . second , <nl> - Chrono : : ElapsedTime { } , <nl> - split_specs - > abi_tag_map . at ( port . first ) , <nl> - port_features ) ; <nl> + xunitTestResults . add_test_results ( <nl> + port . first . to_string ( ) , port . second , Chrono : : ElapsedTime { } , " " , port_features ) ; <nl> } <nl> <nl> all_known_results . emplace_back ( std : : move ( split_specs - > known ) ) ; <nl> - abi_tag_map . insert ( split_specs - > abi_tag_map . begin ( ) , split_specs - > abi_tag_map . end ( ) ) ; <nl> <nl> results . push_back ( { triplet , std : : move ( summary ) } ) ; <nl> <nl> mmm a / toolsrc / src / vcpkg / dependencies . cpp <nl> ppp b / toolsrc / src / vcpkg / dependencies . cpp <nl> namespace vcpkg : : Dependencies <nl> const std : : string features = Strings : : join ( " , " , feature_list ) ; <nl> return Strings : : format ( " % s [ % s ] : % s " , this - > spec . name ( ) , features , this - > spec . triplet ( ) ) ; <nl> } <nl> + const std : : string & InstallPlanAction : : public_abi ( ) const <nl> + { <nl> + if ( auto p = pre_build_info . get ( ) ) <nl> + { <nl> + if ( auto q = p - > get ( ) - > public_abi_override . get ( ) ) return * q ; <nl> + } <nl> + if ( auto p = installed_package . get ( ) ) return p - > core - > package . abi ; <nl> + return package_abi . value_or_exit ( VCPKG_LINE_INFO ) ; <nl> + } <nl> <nl> bool InstallPlanAction : : compare_by_name ( const InstallPlanAction * left , const InstallPlanAction * right ) <nl> { <nl> mmm a / toolsrc / src / vcpkg / install . cpp <nl> ppp b / toolsrc / src / vcpkg / install . cpp <nl> namespace vcpkg : : Install <nl> ExtendedBuildResult perform_install_plan_action ( const VcpkgPaths & paths , <nl> InstallPlanAction & action , <nl> StatusParagraphs & status_db , <nl> - IBinaryProvider * binaries_provider , <nl> - const CMakeVars : : CMakeVarProvider & var_provider ) <nl> + IBinaryProvider * binaries_provider ) <nl> { <nl> const InstallPlanType & plan_type = action . plan_type ; <nl> const std : : string display_name = action . spec . to_string ( ) ; <nl> namespace vcpkg : : Install <nl> else <nl> System : : printf ( " Building package % s . . . \ n " , display_name_with_features ) ; <nl> <nl> - auto result = Build : : build_package ( paths , action , var_provider , binaries_provider , status_db ) ; <nl> + auto result = Build : : build_package ( paths , action , binaries_provider , status_db ) ; <nl> <nl> if ( BuildResult : : DOWNLOADED = = result . code ) <nl> { <nl> namespace vcpkg : : Install <nl> for ( auto & & action : action_plan . already_installed ) <nl> { <nl> results . emplace_back ( action . spec , & action ) ; <nl> - results . back ( ) . build_result = perform_install_plan_action ( paths , action , status_db , nullptr , var_provider ) ; <nl> + results . back ( ) . build_result = perform_install_plan_action ( paths , action , status_db , nullptr ) ; <nl> } <nl> <nl> + Build : : compute_all_abis ( paths , action_plan , var_provider , status_db ) ; <nl> + <nl> auto binary_provider = create_archives_provider ( ) ; <nl> for ( auto & & action : action_plan . install_actions ) <nl> { <nl> with_tracking ( action . spec , [ & ] ( ) { <nl> - auto result = <nl> - perform_install_plan_action ( paths , action , status_db , binary_provider . get ( ) , var_provider ) ; <nl> + auto result = perform_install_plan_action ( paths , action , status_db , binary_provider . get ( ) ) ; <nl> <nl> if ( result . code ! = BuildResult : : SUCCEEDED & & keep_going = = KeepGoing : : NO ) <nl> { <nl>
[ vcpkg ] Compute all ABIs upfront instead of during build_package ( )
microsoft/vcpkg
3d841c9b6a67edf2126c68698a9f05b5d1b5fbcd
2020-02-12T07:52:56Z
mmm a / csharp / src / Google . Protobuf / ByteString . cs <nl> ppp b / csharp / src / Google . Protobuf / ByteString . cs <nl> public bool IsEmpty <nl> get { return Length = = 0 ; } <nl> } <nl> <nl> - # if GOOGLE_PROTOBUF_SUPPORT_SYSTEM_MEMORY <nl> / / / < summary > <nl> / / / Provides read - only access to the data of this < see cref = " ByteString " / > . <nl> / / / No data is copied so this is the most efficient way of accessing . <nl> public ReadOnlyMemory < byte > Memory <nl> return new ReadOnlyMemory < byte > ( bytes ) ; <nl> } <nl> } <nl> - # endif <nl> <nl> / / / < summary > <nl> / / / Converts this < see cref = " ByteString " / > into a byte array . <nl> public static ByteString CopyFrom ( byte [ ] bytes , int offset , int count ) <nl> return new ByteString ( portion ) ; <nl> } <nl> <nl> - # if GOOGLE_PROTOBUF_SUPPORT_SYSTEM_MEMORY <nl> / / / < summary > <nl> / / / Constructs a < see cref = " ByteString " / > from a read only span . The contents <nl> / / / are copied , so further modifications to the span will not <nl> public static ByteString CopyFrom ( ReadOnlySpan < byte > bytes ) <nl> { <nl> return new ByteString ( bytes . ToArray ( ) ) ; <nl> } <nl> - # endif <nl> <nl> / / / < summary > <nl> / / / Creates a new < see cref = " ByteString " / > by encoding the specified text with <nl> mmm a / csharp / src / Google . Protobuf / Google . Protobuf . csproj <nl> ppp b / csharp / src / Google . Protobuf / Google . Protobuf . csproj <nl> <nl> < PackageLicenseUrl > https : / / github . com / protocolbuffers / protobuf / blob / master / LICENSE < / PackageLicenseUrl > <nl> < RepositoryType > git < / RepositoryType > <nl> < RepositoryUrl > https : / / github . com / protocolbuffers / protobuf . git < / RepositoryUrl > <nl> - < DefineConstants > $ ( DefineConstants ) ; GOOGLE_PROTOBUF_SUPPORT_SYSTEM_MEMORY < / DefineConstants > <nl> < AllowUnsafeBlocks > True < / AllowUnsafeBlocks > <nl> < ! - - Include PDB in the built . nupkg - - > <nl> < AllowedOutputExtensionsInPackageBuildOutputFolder > $ ( AllowedOutputExtensionsInPackageBuildOutputFolder ) ; . pdb < / AllowedOutputExtensionsInPackageBuildOutputFolder > <nl> mmm a / csharp / src / Google . Protobuf / IBufferMessage . cs <nl> ppp b / csharp / src / Google . Protobuf / IBufferMessage . cs <nl> <nl> <nl> namespace Google . Protobuf <nl> { <nl> - # if GOOGLE_PROTOBUF_SUPPORT_SYSTEM_MEMORY <nl> / / / < summary > <nl> / / / Interface for a Protocol Buffers message , supporting <nl> / / / parsing from < see cref = " ParseContext " / > and writing to < see cref = " WriteContext " / > . <nl> public interface IBufferMessage : IMessage <nl> / / / < / summary > <nl> void InternalWriteTo ( ref WriteContext ctx ) ; <nl> } <nl> - # endif <nl> } <nl>
Remove GOOGLE_PROTOBUF_SUPPORT_SYSTEM_MEMORY
protocolbuffers/protobuf
52618472bc518b8b3e5f958b7b7186718d8e0777
2020-11-05T22:55:26Z
mmm a / Telegram / SourceFiles / chat_helpers / tabbed_panel . cpp <nl> ppp b / Telegram / SourceFiles / chat_helpers / tabbed_panel . cpp <nl> TabbedPanel : : TabbedPanel ( <nl> } <nl> <nl> void TabbedPanel : : moveBottomRight ( int bottom , int right ) { <nl> + const auto isNew = ( _bottom ! = bottom | | _right ! = right ) ; <nl> _bottom = bottom ; <nl> _right = right ; <nl> - updateContentHeight ( ) ; <nl> + / / If the panel is already shown , update the position . <nl> + if ( ! isHidden ( ) & & isNew ) { <nl> + moveByBottom ( ) ; <nl> + } else { <nl> + updateContentHeight ( ) ; <nl> + } <nl> } <nl> <nl> void TabbedPanel : : setDesiredHeightValues ( <nl>
Fixed position of already shown tabbed panel .
telegramdesktop/tdesktop
633084ed9cdfeb35ad2ceb5f1b2cb209e9f15d00
2019-07-18T10:09:53Z
mmm a / servers / visual / visual_server_canvas . cpp <nl> ppp b / servers / visual / visual_server_canvas . cpp <nl> void VisualServerCanvas : : _render_canvas_item_tree ( Item * p_canvas_item , const Tra <nl> } <nl> } <nl> <nl> + void _collect_ysort_children ( VisualServerCanvas : : Item * p_canvas_item , Transform2D p_transform , VisualServerCanvas : : Item * * r_items , Transform2D * r_extra_transforms , int & r_index ) { <nl> + int child_item_count = p_canvas_item - > child_items . size ( ) ; <nl> + VisualServerCanvas : : Item * * child_items = p_canvas_item - > child_items . ptrw ( ) ; <nl> + for ( int i = 0 ; i < child_item_count ; i + + ) { <nl> + if ( r_items ) { <nl> + r_items [ r_index ] = child_items [ i ] ; <nl> + child_items [ i ] - > ysort_xform = p_transform ; <nl> + child_items [ i ] - > ysort_pos = p_transform . xform ( child_items [ i ] - > xform . elements [ 2 ] ) ; <nl> + } <nl> + <nl> + r_index + + ; <nl> + <nl> + if ( child_items [ i ] - > sort_y ) <nl> + _collect_ysort_children ( child_items [ i ] , p_transform * child_items [ i ] - > xform , r_items , r_extra_transforms , r_index ) ; <nl> + } <nl> + } <nl> + <nl> void VisualServerCanvas : : _render_canvas_item ( Item * p_canvas_item , const Transform2D & p_transform , const Rect2 & p_clip_rect , const Color & p_modulate , int p_z , RasterizerCanvas : : Item * * z_list , RasterizerCanvas : : Item * * z_last_list , Item * p_canvas_clip , Item * p_material_owner ) { <nl> <nl> Item * ci = p_canvas_item ; <nl> void VisualServerCanvas : : _render_canvas_item ( Item * p_canvas_item , const Transfor <nl> if ( ! ci - > visible ) <nl> return ; <nl> <nl> - if ( p_canvas_item - > children_order_dirty ) { <nl> + if ( ci - > children_order_dirty ) { <nl> <nl> - p_canvas_item - > child_items . sort_custom < ItemIndexSort > ( ) ; <nl> - p_canvas_item - > children_order_dirty = false ; <nl> + ci - > child_items . sort_custom < ItemIndexSort > ( ) ; <nl> + ci - > children_order_dirty = false ; <nl> } <nl> <nl> Rect2 rect = ci - > get_rect ( ) ; <nl> void VisualServerCanvas : : _render_canvas_item ( Item * p_canvas_item , const Transfor <nl> return ; <nl> <nl> int child_item_count = ci - > child_items . size ( ) ; <nl> - Item * * child_items = ( Item * * ) alloca ( child_item_count * sizeof ( Item * ) ) ; <nl> - copymem ( child_items , ci - > child_items . ptr ( ) , child_item_count * sizeof ( Item * ) ) ; <nl> + Item * * child_items = ci - > child_items . ptrw ( ) ; <nl> + Transform2D * child_extra_transforms = NULL ; <nl> <nl> if ( ci - > clip ) { <nl> if ( p_canvas_clip ! = NULL ) { <nl> void VisualServerCanvas : : _render_canvas_item ( Item * p_canvas_item , const Transfor <nl> <nl> if ( ci - > sort_y ) { <nl> <nl> + if ( ci - > ysort_children_count = = - 1 ) { <nl> + ci - > ysort_children_count = 0 ; <nl> + _collect_ysort_children ( ci , Transform2D ( ) , NULL , NULL , ci - > ysort_children_count ) ; <nl> + } <nl> + <nl> + child_item_count = ci - > ysort_children_count ; <nl> + child_items = ( Item * * ) alloca ( child_item_count * sizeof ( Item * ) ) ; <nl> + <nl> + int i = 0 ; <nl> + _collect_ysort_children ( ci , Transform2D ( ) , child_items , child_extra_transforms , i ) ; <nl> + <nl> SortArray < Item * , ItemPtrSort > sorter ; <nl> sorter . sort ( child_items , child_item_count ) ; <nl> } <nl> void VisualServerCanvas : : _render_canvas_item ( Item * p_canvas_item , const Transfor <nl> <nl> for ( int i = 0 ; i < child_item_count ; i + + ) { <nl> <nl> - if ( ! child_items [ i ] - > behind ) <nl> + if ( ! child_items [ i ] - > behind | | ( ci - > sort_y & & child_items [ i ] - > sort_y ) ) <nl> continue ; <nl> - _render_canvas_item ( child_items [ i ] , xform , p_clip_rect , modulate , p_z , z_list , z_last_list , ( Item * ) ci - > final_clip_owner , p_material_owner ) ; <nl> + if ( ci - > sort_y ) { <nl> + _render_canvas_item ( child_items [ i ] , xform * child_items [ i ] - > ysort_xform , p_clip_rect , modulate , p_z , z_list , z_last_list , ( Item * ) ci - > final_clip_owner , p_material_owner ) ; <nl> + } else { <nl> + _render_canvas_item ( child_items [ i ] , xform , p_clip_rect , modulate , p_z , z_list , z_last_list , ( Item * ) ci - > final_clip_owner , p_material_owner ) ; <nl> + } <nl> } <nl> <nl> if ( ci - > copy_back_buffer ) { <nl> void VisualServerCanvas : : _render_canvas_item ( Item * p_canvas_item , const Transfor <nl> <nl> for ( int i = 0 ; i < child_item_count ; i + + ) { <nl> <nl> - if ( child_items [ i ] - > behind ) <nl> + if ( child_items [ i ] - > behind | | ( ci - > sort_y & & child_items [ i ] - > sort_y ) ) <nl> continue ; <nl> - _render_canvas_item ( child_items [ i ] , xform , p_clip_rect , modulate , p_z , z_list , z_last_list , ( Item * ) ci - > final_clip_owner , p_material_owner ) ; <nl> + if ( ci - > sort_y ) { <nl> + _render_canvas_item ( child_items [ i ] , xform * child_items [ i ] - > ysort_xform , p_clip_rect , modulate , p_z , z_list , z_last_list , ( Item * ) ci - > final_clip_owner , p_material_owner ) ; <nl> + } else { <nl> + _render_canvas_item ( child_items [ i ] , xform , p_clip_rect , modulate , p_z , z_list , z_last_list , ( Item * ) ci - > final_clip_owner , p_material_owner ) ; <nl> + } <nl> } <nl> } <nl> <nl> void VisualServerCanvas : : canvas_item_set_parent ( RID p_item , RID p_parent ) { <nl> <nl> Item * item_owner = canvas_item_owner . get ( canvas_item - > parent ) ; <nl> item_owner - > child_items . erase ( canvas_item ) ; <nl> + item_owner - > ysort_children_count = - 1 ; <nl> } <nl> <nl> canvas_item - > parent = RID ( ) ; <nl> void VisualServerCanvas : : canvas_item_set_parent ( RID p_item , RID p_parent ) { <nl> item_owner - > child_items . push_back ( canvas_item ) ; <nl> item_owner - > children_order_dirty = true ; <nl> <nl> + Item * ysort_owner = item_owner ; <nl> + while ( ysort_owner & & ysort_owner - > sort_y ) { <nl> + item_owner - > ysort_children_count = - 1 ; <nl> + ysort_owner = canvas_item_owner . getornull ( ysort_owner - > parent ) ; <nl> + } <nl> + <nl> } else { <nl> <nl> ERR_EXPLAIN ( " Invalid parent " ) ; <nl> void VisualServerCanvas : : canvas_item_set_sort_children_by_y ( RID p_item , bool p_e <nl> ERR_FAIL_COND ( ! canvas_item ) ; <nl> <nl> canvas_item - > sort_y = p_enable ; <nl> + canvas_item - > ysort_children_count = - 1 ; <nl> } <nl> void VisualServerCanvas : : canvas_item_set_z_index ( RID p_item , int p_z ) { <nl> <nl> mmm a / servers / visual / visual_server_canvas . h <nl> ppp b / servers / visual / visual_server_canvas . h <nl> class VisualServerCanvas { <nl> bool use_parent_material ; <nl> int index ; <nl> bool children_order_dirty ; <nl> + int ysort_children_count ; <nl> + Transform2D ysort_xform ; <nl> + Vector2 ysort_pos ; <nl> <nl> Vector < Item * > child_items ; <nl> <nl> class VisualServerCanvas { <nl> use_parent_material = false ; <nl> z_relative = true ; <nl> index = 0 ; <nl> + ysort_children_count = - 1 ; <nl> + ysort_xform = Transform2D ( ) ; <nl> + ysort_pos = Vector2 ( ) ; <nl> } <nl> } ; <nl> <nl> class VisualServerCanvas { <nl> <nl> _FORCE_INLINE_ bool operator ( ) ( const Item * p_left , const Item * p_right ) const { <nl> <nl> - if ( Math : : abs ( p_left - > xform . elements [ 2 ] . y - p_right - > xform . elements [ 2 ] . y ) < CMP_EPSILON ) <nl> - return p_left - > xform . elements [ 2 ] . x < p_right - > xform . elements [ 2 ] . x ; <nl> + if ( Math : : abs ( p_left - > ysort_pos . y - p_right - > ysort_pos . y ) < CMP_EPSILON ) <nl> + return p_left - > ysort_pos . x < p_right - > ysort_pos . x ; <nl> else <nl> - return p_left - > xform . elements [ 2 ] . y < p_right - > xform . elements [ 2 ] . y ; <nl> + return p_left - > ysort_pos . y < p_right - > ysort_pos . y ; <nl> } <nl> } ; <nl> <nl>
Y - Sort children together in nested YSorts
godotengine/godot
6b8d6e3b07c83da1c365f9ad79e84e5147ec26f7
2018-10-30T18:53:46Z
mmm a / Telegram / SourceFiles / boxes / local_storage_box . cpp <nl> ppp b / Telegram / SourceFiles / boxes / local_storage_box . cpp <nl> void LocalStorageBox : : save ( ) { <nl> update . totalSizeLimit = _sizeLimit ; <nl> update . totalTimeLimit = _timeLimit ; <nl> Local : : updateCacheSettings ( update ) ; <nl> + Local : : updateCacheBigFileSettings ( update ) ; <nl> Auth ( ) . data ( ) . cache ( ) . updateSettings ( update ) ; <nl> closeBox ( ) ; <nl> } <nl> mmm a / Telegram / SourceFiles / data / data_session . cpp <nl> ppp b / Telegram / SourceFiles / data / data_session . cpp <nl> Session : : Session ( not_null < AuthSession * > session ) <nl> , _cache ( Core : : App ( ) . databases ( ) . get ( <nl> Local : : cachePath ( ) , <nl> Local : : cacheSettings ( ) ) ) <nl> + , _bigFileCache ( Core : : App ( ) . databases ( ) . get ( <nl> + Local : : cacheBigFilePath ( ) , <nl> + Local : : cacheBigFileSettings ( ) ) ) <nl> , _selfDestructTimer ( [ = ] { checkSelfDestructItems ( ) ; } ) <nl> , _a_sendActions ( animation ( this , & Session : : step_typings ) ) <nl> , _groups ( this ) <nl> , _unmuteByFinishedTimer ( [ = ] { unmuteByFinished ( ) ; } ) { <nl> _cache - > open ( Local : : cacheKey ( ) ) ; <nl> + _bigFileCache - > open ( Local : : cacheBigFileKey ( ) ) ; <nl> <nl> setupContactViewsViewer ( ) ; <nl> setupChannelLeavingViewer ( ) ; <nl> Storage : : Cache : : Database & Session : : cache ( ) { <nl> return * _cache ; <nl> } <nl> <nl> + Storage : : Cache : : Database & Session : : cacheBigFile ( ) { <nl> + return * _bigFileCache ; <nl> + } <nl> + <nl> void Session : : startExport ( PeerData * peer ) { <nl> startExport ( peer ? peer - > input : MTP_inputPeerEmpty ( ) ) ; <nl> } <nl> mmm a / Telegram / SourceFiles / data / data_session . h <nl> ppp b / Telegram / SourceFiles / data / data_session . h <nl> class Session final { <nl> explicit Session ( not_null < AuthSession * > session ) ; <nl> ~ Session ( ) ; <nl> <nl> - AuthSession & session ( ) const { <nl> + [ [ nodiscard ] ] AuthSession & session ( ) const { <nl> return * _session ; <nl> } <nl> <nl> class Session final { <nl> void startExport ( const MTPInputPeer & singlePeer ) ; <nl> void suggestStartExport ( TimeId availableAt ) ; <nl> void clearExportSuggestion ( ) ; <nl> - rpl : : producer < Export : : View : : PanelController * > currentExportView ( ) const ; <nl> + [ [ nodiscard ] ] auto currentExportView ( ) const <nl> + - > rpl : : producer < Export : : View : : PanelController * > ; <nl> bool exportInProgress ( ) const ; <nl> void stopExportWithConfirmation ( FnMut < void ( ) > callback ) ; <nl> void stopExport ( ) ; <nl> <nl> - const Passport : : SavedCredentials * passportCredentials ( ) const ; <nl> + [ [ nodiscard ] ] auto passportCredentials ( ) const <nl> + - > const Passport : : SavedCredentials * ; <nl> void rememberPassportCredentials ( <nl> Passport : : SavedCredentials data , <nl> crl : : time rememberFor ) ; <nl> void forgetPassportCredentials ( ) ; <nl> <nl> - Storage : : Cache : : Database & cache ( ) ; <nl> + [ [ nodiscard ] ] Storage : : Cache : : Database & cache ( ) ; <nl> + [ [ nodiscard ] ] Storage : : Cache : : Database & cacheBigFile ( ) ; <nl> <nl> [ [ nodiscard ] ] not_null < PeerData * > peer ( PeerId id ) ; <nl> [ [ nodiscard ] ] not_null < PeerData * > peer ( UserId id ) = delete ; <nl> class Session final { <nl> not_null < AuthSession * > _session ; <nl> <nl> Storage : : DatabasePointer _cache ; <nl> + Storage : : DatabasePointer _bigFileCache ; <nl> <nl> std : : unique_ptr < Export : : Controller > _export ; <nl> std : : unique_ptr < Export : : View : : PanelController > _exportPanel ; <nl> mmm a / Telegram / SourceFiles / data / data_types . cpp <nl> ppp b / Telegram / SourceFiles / data / data_types . cpp <nl> Storage : : Cache : : Key StorageCacheKey ( const StorageImageLocation & location ) { <nl> <nl> Storage : : Cache : : Key WebDocumentCacheKey ( const WebFileLocation & location ) { <nl> const auto dcId = uint64 ( location . dc ( ) ) & 0xFFULL ; <nl> - const auto url = location . url ( ) ; <nl> + const auto & url = location . url ( ) ; <nl> const auto hash = openssl : : Sha256 ( bytes : : make_span ( url ) ) ; <nl> const auto bytes = bytes : : make_span ( hash ) ; <nl> const auto bytes1 = bytes . subspan ( 0 , sizeof ( uint32 ) ) ; <nl> mmm a / Telegram / SourceFiles / media / streaming / media_streaming_file . cpp <nl> ppp b / Telegram / SourceFiles / media / streaming / media_streaming_file . cpp <nl> int File : : Context : : read ( bytes : : span buffer ) { <nl> } else if ( ! amount ) { <nl> return amount ; <nl> } <nl> + <nl> buffer = buffer . subspan ( 0 , amount ) ; <nl> - while ( ! _reader - > fill ( buffer , _offset , & _semaphore ) ) { <nl> + while ( ! _reader - > fill ( _offset , buffer , & _semaphore ) ) { <nl> _delegate - > fileWaitingForData ( ) ; <nl> _semaphore . acquire ( ) ; <nl> if ( _interrupted ) { <nl> void File : : Context : : start ( crl : : time position ) { <nl> return ; <nl> } <nl> <nl> + _reader - > headerDone ( ) ; <nl> if ( video . codec | | audio . codec ) { <nl> seekToPosition ( video . codec ? video : audio , position ) ; <nl> } <nl> mmm a / Telegram / SourceFiles / media / streaming / media_streaming_loader . cpp <nl> ppp b / Telegram / SourceFiles / media / streaming / media_streaming_loader . cpp <nl> For license and copyright information please follow this link : <nl> namespace Media { <nl> namespace Streaming { <nl> <nl> + bool operator < ( <nl> + const PriorityQueue : : Entry & a , <nl> + const PriorityQueue : : Entry & b ) { <nl> + if ( a . priority > b . priority ) { <nl> + return true ; <nl> + } else if ( a . priority < b . priority ) { <nl> + return false ; <nl> + } else { <nl> + return a . value < b . value ; <nl> + } <nl> + } <nl> + <nl> + bool PriorityQueue : : add ( int value ) { <nl> + const auto i = ranges : : find ( _data , value , & Entry : : value ) ; <nl> + if ( i = = end ( _data ) ) { <nl> + _data . insert ( { value , _priority } ) ; <nl> + return true ; <nl> + } else if ( i - > priority ! = _priority ) { <nl> + _data . erase ( i ) ; <nl> + _data . insert ( { value , _priority } ) ; <nl> + return true ; <nl> + } <nl> + return false ; <nl> + } <nl> + <nl> + bool PriorityQueue : : remove ( int value ) { <nl> + const auto i = ranges : : find ( _data , value , & Entry : : value ) ; <nl> + if ( i = = end ( _data ) ) { <nl> + return false ; <nl> + } <nl> + _data . erase ( i ) ; <nl> + return true ; <nl> + } <nl> + <nl> + std : : optional < int > PriorityQueue : : front ( ) const { <nl> + return _data . empty ( ) <nl> + ? std : : nullopt <nl> + : std : : make_optional ( _data . front ( ) . value ) ; <nl> + } <nl> + <nl> + std : : optional < int > PriorityQueue : : take ( ) { <nl> + if ( _data . empty ( ) ) { <nl> + return std : : nullopt ; <nl> + } <nl> + const auto result = _data . front ( ) . value ; <nl> + _data . erase ( _data . begin ( ) ) ; <nl> + return result ; <nl> + } <nl> + <nl> + base : : flat_set < int > PriorityQueue : : takeInRange ( int from , int till ) { <nl> + auto result = base : : flat_set < int > ( ) ; <nl> + for ( auto i = _data . begin ( ) ; i ! = _data . end ( ) ; ) { <nl> + if ( i - > value > = from & & i - > value < till ) { <nl> + result . emplace ( i - > value ) ; <nl> + i = _data . erase ( i ) ; <nl> + } else { <nl> + + + i ; <nl> + } <nl> + } <nl> + return result ; <nl> + } <nl> + <nl> + void PriorityQueue : : clear ( ) { <nl> + _data . clear ( ) ; <nl> + } <nl> + <nl> + void PriorityQueue : : increasePriority ( ) { <nl> + + + _priority ; <nl> + } <nl> + <nl> } / / namespace Streaming <nl> } / / namespace Media <nl> mmm a / Telegram / SourceFiles / media / streaming / media_streaming_loader . h <nl> ppp b / Telegram / SourceFiles / media / streaming / media_streaming_loader . h <nl> class Loader { <nl> public : <nl> static constexpr auto kPartSize = 128 * 1024 ; <nl> <nl> - / / [ [ nodiscard ] ] virtual Storage : : Cache : : Key baseCacheKey ( ) const = 0 ; <nl> + [ [ nodiscard ] ] virtual auto baseCacheKey ( ) const <nl> + - > std : : optional < Storage : : Cache : : Key > = 0 ; <nl> [ [ nodiscard ] ] virtual int size ( ) const = 0 ; <nl> <nl> - virtual void load ( int offset , int till = - 1 ) = 0 ; <nl> + virtual void load ( int offset ) = 0 ; <nl> + virtual void cancel ( int offset ) = 0 ; <nl> + virtual void increasePriority ( ) = 0 ; <nl> virtual void stop ( ) = 0 ; <nl> <nl> / / Parts will be sent from the main thread . <nl> class Loader { <nl> <nl> } ; <nl> <nl> + class PriorityQueue { <nl> + public : <nl> + bool add ( int value ) ; <nl> + bool remove ( int value ) ; <nl> + void increasePriority ( ) ; <nl> + std : : optional < int > front ( ) const ; <nl> + std : : optional < int > take ( ) ; <nl> + base : : flat_set < int > takeInRange ( int from , int till ) ; <nl> + void clear ( ) ; <nl> + <nl> + private : <nl> + struct Entry { <nl> + int value = 0 ; <nl> + int priority = 0 ; <nl> + } ; <nl> + <nl> + friend bool operator < ( const Entry & a , const Entry & b ) ; <nl> + <nl> + base : : flat_set < Entry > _data ; <nl> + int _priority = 0 ; <nl> + <nl> + } ; <nl> + <nl> } / / namespace Streaming <nl> } / / namespace Media <nl> mmm a / Telegram / SourceFiles / media / streaming / media_streaming_loader_mtproto . cpp <nl> ppp b / Telegram / SourceFiles / media / streaming / media_streaming_loader_mtproto . cpp <nl> For license and copyright information please follow this link : <nl> # include " media / streaming / media_streaming_loader_mtproto . h " <nl> <nl> # include " apiwrap . h " <nl> + # include " storage / cache / storage_cache_types . h " <nl> <nl> namespace Media { <nl> namespace Streaming { <nl> namespace { <nl> <nl> constexpr auto kMaxConcurrentRequests = 2 ; <nl> + constexpr auto kDocumentBaseCacheTag = 0x0000000000010000ULL ; <nl> + constexpr auto kDocumentBaseCacheMask = 0x000000000000FF00ULL ; <nl> <nl> } / / namespace <nl> <nl> LoaderMtproto : : LoaderMtproto ( <nl> , _origin ( origin ) { <nl> } <nl> <nl> + std : : optional < Storage : : Cache : : Key > LoaderMtproto : : baseCacheKey ( ) const { <nl> + return _location . match ( [ & ] ( const MTPDinputDocumentFileLocation & data ) { <nl> + const auto id = data . vid . v ; <nl> + const auto high = kDocumentBaseCacheTag <nl> + | ( ( uint64 ( _dcId ) < < 16 ) & kDocumentBaseCacheMask ) <nl> + | ( id > > 48 ) ; <nl> + const auto low = ( id < < 16 ) ; <nl> + <nl> + Ensures ( ( low & 0xFFULL ) = = 0 ) ; <nl> + return Storage : : Cache : : Key { high , low } ; <nl> + } , [ ] ( auto & & ) - > Storage : : Cache : : Key { <nl> + Unexpected ( " Not implemented file location type . " ) ; <nl> + } ) ; <nl> + } <nl> + <nl> int LoaderMtproto : : size ( ) const { <nl> return _size ; <nl> } <nl> <nl> - void LoaderMtproto : : load ( int offset , int till ) { <nl> + void LoaderMtproto : : load ( int offset ) { <nl> + crl : : on_main ( this , [ = ] { <nl> + if ( _requests . contains ( offset ) ) { <nl> + return ; <nl> + } else if ( _requested . add ( offset ) ) { <nl> + sendNext ( ) ; <nl> + } <nl> + } ) ; <nl> + } <nl> + <nl> + void LoaderMtproto : : stop ( ) { <nl> + crl : : on_main ( this , [ = ] { <nl> + ranges : : for_each ( <nl> + base : : take ( _requests ) , <nl> + _sender . requestCanceller ( ) , <nl> + & base : : flat_map < int , mtpRequestId > : : value_type : : second ) ; <nl> + _requested . clear ( ) ; <nl> + } ) ; <nl> + } <nl> + <nl> + void LoaderMtproto : : cancel ( int offset ) { <nl> crl : : on_main ( this , [ = ] { <nl> - cancelRequestsBefore ( offset ) ; <nl> - _till = till ; <nl> - sendNext ( offset ) ; <nl> + if ( const auto requestId = _requests . take ( offset ) ) { <nl> + _sender . request ( * requestId ) . cancel ( ) ; <nl> + sendNext ( ) ; <nl> + } else { <nl> + _requested . remove ( offset ) ; <nl> + } <nl> } ) ; <nl> } <nl> <nl> - void LoaderMtproto : : sendNext ( int possibleOffset ) { <nl> - Expects ( ( possibleOffset % kPartSize ) = = 0 ) ; <nl> + void LoaderMtproto : : increasePriority ( ) { <nl> + crl : : on_main ( this , [ = ] { <nl> + _requested . increasePriority ( ) ; <nl> + } ) ; <nl> + } <nl> <nl> - const auto offset = _requests . empty ( ) <nl> - ? possibleOffset <nl> - : _requests . back ( ) . first + kPartSize ; <nl> - if ( ( _till > = 0 & & offset > = _till ) | | ( _size > 0 & & offset > = _size ) ) { <nl> + void LoaderMtproto : : sendNext ( ) { <nl> + if ( _requests . size ( ) > = kMaxConcurrentRequests ) { <nl> return ; <nl> - } else if ( _requests . size ( ) > = kMaxConcurrentRequests ) { <nl> + } <nl> + const auto offset = _requested . take ( ) . value_or ( - 1 ) ; <nl> + if ( offset < 0 ) { <nl> return ; <nl> } <nl> <nl> void LoaderMtproto : : sendNext ( int possibleOffset ) { <nl> ) . send ( ) ; <nl> _requests . emplace ( offset , id ) ; <nl> <nl> - sendNext ( offset + kPartSize ) ; <nl> + sendNext ( ) ; <nl> } <nl> <nl> void LoaderMtproto : : requestDone ( int offset , const MTPupload_File & result ) { <nl> result . match ( [ & ] ( const MTPDupload_file & data ) { <nl> _requests . erase ( offset ) ; <nl> - if ( data . vbytes . v . size ( ) = = kPartSize ) { <nl> - sendNext ( offset + kPartSize ) ; <nl> - } <nl> + sendNext ( ) ; <nl> _parts . fire ( { offset , data . vbytes . v } ) ; <nl> } , [ & ] ( const MTPDupload_fileCdnRedirect & data ) { <nl> changeCdnParams ( <nl> void LoaderMtproto : : requestFailed ( int offset , const RPCError & error ) { <nl> _api - > refreshFileReference ( _origin , crl : : guard ( this , callback ) ) ; <nl> } <nl> <nl> - void LoaderMtproto : : stop ( ) { <nl> - crl : : on_main ( this , [ = ] { <nl> - for ( const auto [ offset , requestId ] : base : : take ( _requests ) ) { <nl> - _sender . request ( requestId ) . cancel ( ) ; <nl> - } <nl> - } ) ; <nl> - } <nl> - <nl> rpl : : producer < LoadedPart > LoaderMtproto : : parts ( ) const { <nl> return _parts . events ( ) ; <nl> } <nl> <nl> LoaderMtproto : : ~ LoaderMtproto ( ) = default ; <nl> <nl> - void LoaderMtproto : : cancelRequestsBefore ( int offset ) { <nl> - const auto from = begin ( _requests ) ; <nl> - const auto till = ranges : : lower_bound ( <nl> - _requests , <nl> - offset , <nl> - ranges : : less ( ) , <nl> - [ ] ( auto pair ) { return pair . first ; } ) ; <nl> - ranges : : for_each ( <nl> - from , <nl> - till , <nl> - _sender . requestCanceller ( ) , <nl> - & base : : flat_map < int , mtpRequestId > : : value_type : : second ) ; <nl> - _requests . erase ( from , till ) ; <nl> - <nl> - if ( ! _requests . empty ( ) & & _requests . front ( ) . first > offset ) { <nl> - ranges : : for_each ( <nl> - base : : take ( _requests ) , <nl> - _sender . requestCanceller ( ) , <nl> - & base : : flat_map < int , mtpRequestId > : : value_type : : second ) ; <nl> - } <nl> - } <nl> - <nl> } / / namespace Streaming <nl> } / / namespace Media <nl> mmm a / Telegram / SourceFiles / media / streaming / media_streaming_loader_mtproto . h <nl> ppp b / Telegram / SourceFiles / media / streaming / media_streaming_loader_mtproto . h <nl> class LoaderMtproto : public Loader , public base : : has_weak_ptr { <nl> int size , <nl> Data : : FileOrigin origin ) ; <nl> <nl> - / / [ [ nodiscard ] ] Storage : : Cache : : Key baseCacheKey ( ) const override ; <nl> + [ [ nodiscard ] ] auto baseCacheKey ( ) const <nl> + - > std : : optional < Storage : : Cache : : Key > override ; <nl> [ [ nodiscard ] ] int size ( ) const override ; <nl> <nl> - void load ( int offset , int till = - 1 ) override ; <nl> + void load ( int offset ) override ; <nl> + void cancel ( int offset ) override ; <nl> + void increasePriority ( ) override ; <nl> void stop ( ) override ; <nl> <nl> / / Parts will be sent from the main thread . <nl> class LoaderMtproto : public Loader , public base : : has_weak_ptr { <nl> ~ LoaderMtproto ( ) ; <nl> <nl> private : <nl> - void cancelRequestsBefore ( int offset ) ; <nl> - void sendNext ( int possibleOffset ) ; <nl> + void sendNext ( ) ; <nl> <nl> void requestDone ( int offset , const MTPupload_File & result ) ; <nl> void requestFailed ( int offset , const RPCError & error ) ; <nl> class LoaderMtproto : public Loader , public base : : has_weak_ptr { <nl> const int _size = 0 ; <nl> const Data : : FileOrigin _origin ; <nl> <nl> - int _till = - 1 ; <nl> MTP : : Sender _sender ; <nl> <nl> + PriorityQueue _requested ; <nl> base : : flat_map < int , mtpRequestId > _requests ; <nl> rpl : : event_stream < LoadedPart > _parts ; <nl> <nl> mmm a / Telegram / SourceFiles / media / streaming / media_streaming_reader . cpp <nl> ppp b / Telegram / SourceFiles / media / streaming / media_streaming_reader . cpp <nl> namespace Media { <nl> namespace Streaming { <nl> namespace { <nl> <nl> + constexpr auto kPartSize = Loader : : kPartSize ; <nl> + constexpr auto kPartsInSlice = 64 ; <nl> + constexpr auto kInSlice = kPartsInSlice * kPartSize ; <nl> + constexpr auto kMaxPartsInHeader = 72 ; <nl> + constexpr auto kMaxInHeader = kMaxPartsInHeader * kPartSize ; <nl> + constexpr auto kMaxOnlyInHeader = 80 * kPartSize ; <nl> + <nl> + / / 1 MB of parts are requested from cloud ahead of reading demand . <nl> + constexpr auto kPreloadPartsAhead = 8 ; <nl> + <nl> template < typename Range > / / Range : : value_type is Pair < int , QByteArray > <nl> int FindNotLoadedStart ( Range & & parts , int offset ) { <nl> auto result = offset ; <nl> void CopyLoaded ( bytes : : span buffer , Range & & parts , int offset , int till ) { <nl> <nl> } / / namespace <nl> <nl> + template < int Size > <nl> + bool Reader : : StackIntVector < Size > : : add ( int value ) { <nl> + using namespace rpl : : mappers ; <nl> + <nl> + const auto i = ranges : : find_if ( _storage , _1 < 0 ) ; <nl> + if ( i = = end ( _storage ) ) { <nl> + return false ; <nl> + } <nl> + * i = value ; <nl> + const auto next = i + 1 ; <nl> + if ( next ! = end ( _storage ) ) { <nl> + * next = - 1 ; <nl> + } <nl> + return true ; <nl> + } <nl> + <nl> + template < int Size > <nl> + auto Reader : : StackIntVector < Size > : : values ( ) const { <nl> + using namespace rpl : : mappers ; <nl> + <nl> + return ranges : : view : : all ( _storage ) | ranges : : view : : take_while ( _1 > = 0 ) ; <nl> + } <nl> + <nl> + struct Reader : : CacheHelper { <nl> + explicit CacheHelper ( Storage : : Cache : : Key baseKey ) ; <nl> + <nl> + Storage : : Cache : : Key key ( int sliceNumber ) const ; <nl> + <nl> + const Storage : : Cache : : Key baseKey ; <nl> + <nl> + QMutex mutex ; <nl> + base : : flat_map < int , QByteArray > results ; <nl> + std : : atomic < crl : : semaphore * > waiting = nullptr ; <nl> + } ; <nl> + <nl> + Reader : : CacheHelper : : CacheHelper ( Storage : : Cache : : Key baseKey ) <nl> + : baseKey ( baseKey ) { <nl> + } <nl> + <nl> + Storage : : Cache : : Key Reader : : CacheHelper : : key ( int sliceNumber ) const { <nl> + return Storage : : Cache : : Key { baseKey . high , baseKey . low + sliceNumber } ; <nl> + } <nl> + <nl> + bool Reader : : Slice : : processCacheData ( QByteArray & & data , int maxSliceSize ) { <nl> + Expects ( ( flags & Flag : : LoadingFromCache ) ! = 0 ) ; <nl> + Expects ( ! ( flags & Flag : : LoadedFromCache ) ) ; <nl> + <nl> + const auto guard = gsl : : finally ( [ & ] { <nl> + flags | = Flag : : LoadedFromCache ; <nl> + flags & = ~ Flag : : LoadingFromCache ; <nl> + } ) ; <nl> + <nl> + const auto size = data . size ( ) ; <nl> + if ( ! ( size % kPartSize ) | | ( size = = maxSliceSize ) ) { <nl> + if ( size > maxSliceSize ) { <nl> + return false ; <nl> + } <nl> + for ( auto offset = 0 ; offset < size ; offset + = kPartSize ) { <nl> + parts . emplace ( offset , data . mid ( offset , kPartSize ) ) ; <nl> + } <nl> + return true ; <nl> + } <nl> + return processComplexCacheData ( <nl> + bytes : : make_span ( data ) , <nl> + maxSliceSize ) ; <nl> + } <nl> + <nl> + bool Reader : : Slice : : processComplexCacheData ( <nl> + bytes : : const_span data , <nl> + int maxSliceSize ) { <nl> + const auto takeInt = [ & ] ( ) - > std : : optional < int > { <nl> + if ( data . size ( ) < sizeof ( int32 ) ) { <nl> + return std : : nullopt ; <nl> + } <nl> + const auto bytes = data . data ( ) ; <nl> + const auto result = * reinterpret_cast < const int32 * > ( bytes ) ; <nl> + data = data . subspan ( sizeof ( int32 ) ) ; <nl> + return result ; <nl> + } ; <nl> + const auto takeBytes = [ & ] ( int count ) - > std : : optional < QByteArray > { <nl> + if ( count < = 0 | | data . size ( ) < count ) { <nl> + return std : : nullopt ; <nl> + } <nl> + auto result = QByteArray ( <nl> + reinterpret_cast < const char * > ( data . data ( ) ) , <nl> + count ) ; <nl> + data = data . subspan ( count ) ; <nl> + return result ; <nl> + } ; <nl> + const auto count = takeInt ( ) . value_or ( 0 ) ; <nl> + if ( count < = 0 ) { <nl> + return false ; <nl> + } <nl> + for ( auto i = 0 ; i ! = count ; + + i ) { <nl> + const auto offset = takeInt ( ) . value_or ( 0 ) ; <nl> + const auto size = takeInt ( ) . value_or ( 0 ) ; <nl> + auto bytes = takeBytes ( size ) . value_or ( QByteArray ( ) ) ; <nl> + if ( offset < 0 <nl> + | | offset > = maxSliceSize <nl> + | | size < = 0 <nl> + | | size > maxSliceSize <nl> + | | offset + size > maxSliceSize <nl> + | | bytes . size ( ) ! = size ) { <nl> + return false ; <nl> + } <nl> + parts . emplace ( offset , std : : move ( bytes ) ) ; <nl> + } <nl> + return true ; <nl> + } <nl> + <nl> + void Reader : : Slice : : addPart ( int offset , QByteArray bytes ) { <nl> + Expects ( ! parts . contains ( offset ) ) ; <nl> + <nl> + parts . emplace ( offset , std : : move ( bytes ) ) ; <nl> + if ( flags & Flag : : LoadedFromCache ) { <nl> + flags | = Flag : : ChangedSinceCache ; <nl> + } <nl> + } <nl> + <nl> + auto Reader : : Slice : : prepareFill ( int from , int till ) - > PrepareFillResult { <nl> + auto result = PrepareFillResult ( ) ; <nl> + <nl> + result . ready = false ; <nl> + const auto fromOffset = ( from / kPartSize ) * kPartSize ; <nl> + const auto tillPart = ( till + kPartSize - 1 ) / kPartSize ; <nl> + const auto preloadTillOffset = std : : min ( <nl> + ( tillPart + kPreloadPartsAhead ) * kPartSize , <nl> + kInSlice ) ; <nl> + <nl> + const auto after = ranges : : upper_bound ( <nl> + parts , <nl> + from , <nl> + ranges : : less ( ) , <nl> + & base : : flat_map < int , QByteArray > : : value_type : : first ) ; <nl> + if ( after = = begin ( parts ) ) { <nl> + result . offsetsFromLoader = offsetsFromLoader ( <nl> + fromOffset , <nl> + preloadTillOffset ) ; <nl> + return result ; <nl> + } <nl> + <nl> + const auto start = after - 1 ; <nl> + const auto finish = ranges : : lower_bound ( <nl> + start , <nl> + end ( parts ) , <nl> + till , <nl> + ranges : : less ( ) , <nl> + & base : : flat_map < int , QByteArray > : : value_type : : first ) ; <nl> + const auto haveTill = FindNotLoadedStart ( <nl> + ranges : : make_iterator_range ( start , finish ) , <nl> + fromOffset ) ; <nl> + if ( haveTill < till ) { <nl> + result . offsetsFromLoader = offsetsFromLoader ( <nl> + haveTill , <nl> + preloadTillOffset ) ; <nl> + return result ; <nl> + } <nl> + result . ready = true ; <nl> + result . start = start ; <nl> + result . finish = finish ; <nl> + result . offsetsFromLoader = offsetsFromLoader ( <nl> + tillPart * kPartSize , <nl> + preloadTillOffset ) ; <nl> + return result ; <nl> + } <nl> + <nl> + auto Reader : : Slice : : offsetsFromLoader ( int from , int till ) const <nl> + - > StackIntVector < Reader : : kLoadFromRemoteMax > { <nl> + auto result = StackIntVector < kLoadFromRemoteMax > ( ) ; <nl> + <nl> + const auto after = ranges : : upper_bound ( <nl> + parts , <nl> + from , <nl> + ranges : : less ( ) , <nl> + & base : : flat_map < int , QByteArray > : : value_type : : first ) ; <nl> + auto check = ( after = = begin ( parts ) ) ? after : ( after - 1 ) ; <nl> + const auto end = parts . end ( ) ; <nl> + for ( auto offset = from ; offset ! = till ; offset + = kPartSize ) { <nl> + while ( check ! = end & & check - > first < offset ) { <nl> + + + check ; <nl> + } <nl> + if ( check ! = end & & check - > first = = offset ) { <nl> + continue ; <nl> + } else if ( ! result . add ( offset ) ) { <nl> + break ; <nl> + } <nl> + } <nl> + return result ; <nl> + } <nl> + <nl> + Reader : : Slices : : Slices ( int size , bool useCache ) <nl> + : _size ( size ) { <nl> + Expects ( size > 0 ) ; <nl> + <nl> + _header . flags | = Slice : : Flag : : Header ; <nl> + if ( useCache ) { <nl> + _header . flags | = Slice : : Flag : : LoadingFromCache ; <nl> + / / # TODO streaming HeaderMode : : Full . <nl> + / / if ( _size < = kMaxOnlyInHeader ) { <nl> + / / _headerMode = HeaderMode : : Full ; <nl> + / / } <nl> + } else { <nl> + _headerMode = HeaderMode : : NoCache ; <nl> + } <nl> + <nl> + const auto count = ( ( _size + kInSlice - 1 ) / kInSlice ) ; <nl> + _data . resize ( count ) ; <nl> + } <nl> + <nl> + void Reader : : Slices : : headerDone ( bool fromCache ) { <nl> + if ( _headerMode ! = HeaderMode : : Unknown ) { <nl> + return ; <nl> + } <nl> + / / # TODO streaming HeaderMode : : Full . <nl> + _headerMode = HeaderMode : : Small ; <nl> + if ( ! fromCache ) { <nl> + for ( auto & slice : _data ) { <nl> + using Flag = Slice : : Flag ; <nl> + Assert ( ! ( slice . flags <nl> + & ( Flag : : LoadingFromCache | Flag : : LoadedFromCache ) ) ) ; <nl> + slice . flags | = Slice : : Flag : : LoadedFromCache ; <nl> + } <nl> + } <nl> + } <nl> + <nl> + void Reader : : Slices : : applyHeaderCacheData ( ) { <nl> + if ( _header . parts . empty ( ) ) { <nl> + return ; <nl> + } <nl> + for ( const auto & [ offset , part ] : _header . parts ) { <nl> + const auto index = offset / kInSlice ; <nl> + _data [ index ] . addPart ( <nl> + offset - index * kInSlice , <nl> + base : : duplicate ( part ) ) ; <nl> + } <nl> + headerDone ( true ) ; <nl> + } <nl> + <nl> + bool Reader : : Slices : : processCacheResult ( <nl> + int sliceNumber , <nl> + QByteArray & & result ) { <nl> + Expects ( sliceNumber > = 0 & & sliceNumber < = _data . size ( ) ) ; <nl> + <nl> + auto & slice = ( sliceNumber ? _data [ sliceNumber - 1 ] : _header ) ; <nl> + const auto success = slice . processCacheData ( <nl> + std : : move ( result ) , <nl> + maxSliceSize ( sliceNumber ) ) ; <nl> + if ( ! sliceNumber ) { <nl> + applyHeaderCacheData ( ) ; <nl> + } <nl> + return success ; <nl> + } <nl> + <nl> + bool Reader : : Slices : : processPart ( int offset , QByteArray & & bytes ) { <nl> + Expects ( offset / kInSlice < _data . size ( ) ) ; <nl> + <nl> + const auto index = offset / kInSlice ; <nl> + if ( _headerMode = = HeaderMode : : Unknown ) { <nl> + if ( _header . parts . contains ( offset ) ) { <nl> + return true ; <nl> + } else if ( _header . parts . size ( ) = = kMaxPartsInHeader ) { <nl> + / / # TODO streaming later unavailable , full load ? <nl> + return false ; <nl> + } <nl> + _header . addPart ( offset , bytes ) ; <nl> + } <nl> + _data [ index ] . addPart ( offset - index * kInSlice , std : : move ( bytes ) ) ; <nl> + return true ; <nl> + } <nl> + <nl> + auto Reader : : Slices : : fill ( int offset , bytes : : span buffer ) - > FillResult { <nl> + Expects ( ! buffer . empty ( ) ) ; <nl> + Expects ( offset > = 0 & & offset < _size ) ; <nl> + Expects ( offset + buffer . size ( ) < = _size ) ; <nl> + Expects ( buffer . size ( ) < = kInSlice ) ; <nl> + <nl> + if ( _headerMode ! = HeaderMode : : NoCache <nl> + & & ! ( _header . flags & Slice : : Flag : : LoadedFromCache ) ) { <nl> + / / Waiting for initial cache query . <nl> + return { } ; <nl> + } <nl> + <nl> + auto result = FillResult ( ) ; <nl> + const auto till = int ( offset + buffer . size ( ) ) ; <nl> + const auto fromSlice = offset / kInSlice ; <nl> + const auto tillSlice = ( till + kInSlice - 1 ) / kInSlice ; <nl> + Assert ( fromSlice > = 0 <nl> + & & ( fromSlice + 1 = = tillSlice | | fromSlice + 2 = = tillSlice ) <nl> + & & tillSlice < = _data . size ( ) ) ; <nl> + <nl> + const auto handlePrepareResult = [ & ] ( <nl> + int sliceIndex , <nl> + const Slice : : PrepareFillResult & prepared ) { <nl> + if ( sliceIndex = = _data . size ( ) ) { <nl> + return ; <nl> + } <nl> + using Flag = Slice : : Flag ; <nl> + if ( ! ( _data [ sliceIndex ] . flags & Flag : : LoadedFromCache ) <nl> + & & _headerMode ! = HeaderMode : : NoCache <nl> + & & _headerMode ! = HeaderMode : : Unknown ) { <nl> + if ( ! ( _data [ sliceIndex ] . flags & Flag : : LoadingFromCache ) ) { <nl> + _data [ sliceIndex ] . flags | = Slice : : Flag : : LoadingFromCache ; <nl> + result . sliceNumbersFromCache . add ( sliceIndex + 1 ) ; <nl> + } <nl> + return ; <nl> + } <nl> + for ( const auto offset : prepared . offsetsFromLoader . values ( ) ) { <nl> + const auto full = offset + sliceIndex * kInSlice ; <nl> + if ( sliceIndex + 1 ! = _data . size ( ) | | full < _size ) { <nl> + result . offsetsFromLoader . add ( full ) ; <nl> + } <nl> + } <nl> + } ; <nl> + <nl> + const auto firstFrom = offset - fromSlice * kInSlice ; <nl> + const auto firstTill = std : : min ( kInSlice , till - fromSlice * kInSlice ) ; <nl> + const auto secondFrom = 0 ; <nl> + const auto secondTill = till - ( fromSlice + 1 ) * kInSlice ; <nl> + const auto first = _data [ fromSlice ] . prepareFill ( firstFrom , firstTill ) ; <nl> + const auto second = ( fromSlice + 1 < tillSlice ) <nl> + ? _data [ fromSlice + 1 ] . prepareFill ( secondFrom , secondTill ) <nl> + : Slice : : PrepareFillResult ( ) ; <nl> + handlePrepareResult ( fromSlice , first ) ; <nl> + handlePrepareResult ( fromSlice + 1 , second ) ; <nl> + if ( first . ready & & second . ready ) { <nl> + CopyLoaded ( <nl> + buffer , <nl> + ranges : : make_iterator_range ( first . start , first . finish ) , <nl> + firstFrom , <nl> + firstTill ) ; <nl> + if ( fromSlice + 1 < tillSlice ) { <nl> + CopyLoaded ( <nl> + buffer . subspan ( firstTill - firstFrom ) , <nl> + ranges : : make_iterator_range ( second . start , second . finish ) , <nl> + secondFrom , <nl> + secondTill ) ; <nl> + } <nl> + result . filled = true ; <nl> + } <nl> + return result ; <nl> + } <nl> + <nl> + int Reader : : Slices : : maxSliceSize ( int sliceNumber ) const { <nl> + return ( sliceNumber = = _data . size ( ) ) <nl> + ? ( _size - ( sliceNumber - 1 ) * kInSlice ) <nl> + : ( sliceNumber > 0 ) <nl> + ? kInSlice <nl> + : _size ; <nl> + } <nl> + <nl> + Reader : : SerializedSlice Reader : : Slices : : serializeAndUnloadSlice ( <nl> + int sliceNumber , <nl> + Slice & slice ) const { <nl> + Expects ( ! slice . parts . empty ( ) ) ; <nl> + <nl> + const auto count = slice . parts . size ( ) ; <nl> + auto result = SerializedSlice ( ) ; <nl> + result . number = sliceNumber ; <nl> + const auto continuous = FindNotLoadedStart ( slice . parts , 0 ) ; <nl> + if ( continuous > slice . parts . back ( ) . first ) { <nl> + / / All data is continuous . <nl> + result . data . reserve ( count * kPartSize ) ; <nl> + for ( const auto & [ offset , part ] : slice . parts ) { <nl> + result . data . append ( part ) ; <nl> + } <nl> + } else { <nl> + const auto intSize = sizeof ( int32 ) ; <nl> + result . data . reserve ( count * kPartSize + 2 * intSize * ( count + 1 ) ) ; <nl> + const auto appendInt = [ & ] ( int value ) { <nl> + auto serialized = int32 ( value ) ; <nl> + result . data . append ( <nl> + reinterpret_cast < const char * > ( & serialized ) , <nl> + intSize ) ; <nl> + } ; <nl> + appendInt ( count ) ; <nl> + for ( const auto & [ offset , part ] : slice . parts ) { <nl> + appendInt ( offset ) ; <nl> + appendInt ( part . size ( ) ) ; <nl> + result . data . append ( part ) ; <nl> + } <nl> + if ( result . data . size ( ) = = maxSliceSize ( sliceNumber ) ) { <nl> + / / Make sure this data won ' t be taken for full continuous data . <nl> + appendInt ( 0 ) ; <nl> + } <nl> + } <nl> + slice = Slice ( ) ; <nl> + return result ; <nl> + } <nl> + <nl> + Reader : : SerializedSlice Reader : : Slices : : unloadToCache ( ) { <nl> + if ( _headerMode = = HeaderMode : : Unknown <nl> + | | _headerMode = = HeaderMode : : NoCache ) { <nl> + return { } ; <nl> + } <nl> + if ( _header . flags & Slice : : Flag : : ChangedSinceCache ) { <nl> + return serializeAndUnloadSlice ( 0 , _header ) ; <nl> + } <nl> + auto & & indexed = ranges : : view : : zip ( _data , ranges : : view : : ints ( 0 ) ) ; <nl> + for ( auto & & [ slice , index ] : indexed ) { <nl> + if ( slice . flags & Slice : : Flag : : ChangedSinceCache ) { <nl> + return serializeAndUnloadSlice ( index + 1 , slice ) ; <nl> + } <nl> + } <nl> + return { } ; <nl> + } <nl> + <nl> Reader : : Reader ( <nl> not_null < Data : : Session * > owner , <nl> std : : unique_ptr < Loader > loader ) <nl> : _owner ( owner ) <nl> - , _loader ( std : : move ( loader ) ) { <nl> + , _loader ( std : : move ( loader ) ) <nl> + , _cacheHelper ( InitCacheHelper ( _loader - > baseCacheKey ( ) ) ) <nl> + , _slices ( _loader - > size ( ) , _cacheHelper ! = nullptr ) { <nl> _loader - > parts ( <nl> ) | rpl : : start_with_next ( [ = ] ( LoadedPart & & part ) { <nl> QMutexLocker lock ( & _loadedPartsMutex ) ; <nl> Reader : : Reader ( <nl> waiting - > release ( ) ; <nl> } <nl> } , _lifetime ) ; <nl> + <nl> + if ( _cacheHelper ) { <nl> + readFromCache ( 0 ) ; <nl> + } <nl> + } <nl> + <nl> + std : : shared_ptr < Reader : : CacheHelper > Reader : : InitCacheHelper ( <nl> + std : : optional < Storage : : Cache : : Key > baseKey ) { <nl> + if ( ! baseKey ) { <nl> + return nullptr ; <nl> + } <nl> + return std : : make_shared < Reader : : CacheHelper > ( * baseKey ) ; <nl> + } <nl> + <nl> + / / 0 is for headerData , slice index = sliceNumber - 1 . <nl> + void Reader : : readFromCache ( int sliceNumber ) { <nl> + Expects ( _cacheHelper ! = nullptr ) ; <nl> + <nl> + const auto key = _cacheHelper - > key ( sliceNumber ) ; <nl> + const auto weak = std : : weak_ptr < CacheHelper > ( _cacheHelper ) ; <nl> + _owner - > cacheBigFile ( ) . get ( key , [ = ] ( QByteArray & & result ) { <nl> + if ( const auto strong = weak . lock ( ) ) { <nl> + QMutexLocker lock ( & strong - > mutex ) ; <nl> + strong - > results . emplace ( sliceNumber , std : : move ( result ) ) ; <nl> + if ( const auto waiting = strong - > waiting . load ( ) ) { <nl> + strong - > waiting = nullptr ; <nl> + waiting - > release ( ) ; <nl> + } <nl> + } <nl> + } ) ; <nl> + } <nl> + <nl> + void Reader : : putToCache ( SerializedSlice & & slice ) { <nl> + Expects ( _cacheHelper ! = nullptr ) ; <nl> + Expects ( slice . number > = 0 ) ; <nl> + <nl> + _owner - > cacheBigFile ( ) . put ( <nl> + _cacheHelper - > key ( slice . number ) , <nl> + std : : move ( slice . data ) ) ; <nl> } <nl> <nl> int Reader : : size ( ) const { <nl> bool Reader : : failed ( ) const { <nl> return _failed ; <nl> } <nl> <nl> + void Reader : : headerDone ( ) { <nl> + _slices . headerDone ( false ) ; <nl> + } <nl> + static auto fills = 0 ; <nl> + static auto several = 0 ; <nl> + static auto fulltime = 0 ; <nl> + static auto maxtime = 0 ; <nl> bool Reader : : fill ( <nl> - bytes : : span buffer , <nl> int offset , <nl> - crl : : semaphore * notify ) { <nl> + bytes : : span buffer , <nl> + not_null < crl : : semaphore * > notify ) { <nl> Expects ( offset + buffer . size ( ) < = size ( ) ) ; <nl> <nl> - const auto wait = [ & ] ( int offset ) { <nl> - _waiting = notify ; <nl> - loadFor ( offset ) ; <nl> - return false ; <nl> + const auto now = crl : : now ( ) ; <nl> + const auto guard = gsl : : finally ( [ & ] { <nl> + const auto time = int ( crl : : now ( ) - now ) ; <nl> + fulltime + = time ; <nl> + maxtime = std : : max ( maxtime , time ) ; <nl> + } ) ; <nl> + + + fills ; <nl> + <nl> + const auto startWaiting = [ & ] { <nl> + if ( _cacheHelper ) { <nl> + _cacheHelper - > waiting = notify . get ( ) ; <nl> + } <nl> + _waiting = notify . get ( ) ; <nl> } ; <nl> - const auto done = [ & ] { <nl> + const auto clearWaiting = [ & ] { <nl> _waiting = nullptr ; <nl> + if ( _cacheHelper ) { <nl> + _cacheHelper - > waiting = nullptr ; <nl> + } <nl> + } ; <nl> + const auto done = [ & ] { <nl> + clearWaiting ( ) ; <nl> return true ; <nl> } ; <nl> const auto failed = [ & ] { <nl> - _waiting = nullptr ; <nl> - if ( notify ) { <nl> - notify - > release ( ) ; <nl> - } <nl> + clearWaiting ( ) ; <nl> + notify - > release ( ) ; <nl> return false ; <nl> } ; <nl> <nl> + processCacheResults ( ) ; <nl> processLoadedParts ( ) ; <nl> if ( _failed ) { <nl> return failed ( ) ; <nl> } <nl> <nl> - const auto after = ranges : : upper_bound ( <nl> - _data , <nl> - offset , <nl> - ranges : : less ( ) , <nl> - & base : : flat_map < int , QByteArray > : : value_type : : first ) ; <nl> - if ( after = = begin ( _data ) ) { <nl> - return wait ( offset ) ; <nl> + do { <nl> + if ( fillFromSlices ( offset , buffer ) ) { <nl> + clearWaiting ( ) ; <nl> + return true ; <nl> + } <nl> + startWaiting ( ) ; <nl> + } while ( processCacheResults ( ) | | processLoadedParts ( ) ) ; <nl> + <nl> + return _failed ? failed ( ) : false ; <nl> + } <nl> + <nl> + bool Reader : : fillFromSlices ( int offset , bytes : : span buffer ) { <nl> + using namespace rpl : : mappers ; <nl> + <nl> + auto result = _slices . fill ( offset , buffer ) ; <nl> + <nl> + for ( const auto sliceNumber : result . sliceNumbersFromCache . values ( ) ) { <nl> + readFromCache ( sliceNumber ) ; <nl> } <nl> <nl> - const auto till = int ( offset + buffer . size ( ) ) ; <nl> - const auto start = after - 1 ; <nl> - const auto finish = ranges : : lower_bound ( <nl> - start , <nl> - end ( _data ) , <nl> - till , <nl> - ranges : : less ( ) , <nl> - & base : : flat_map < int , QByteArray > : : value_type : : first ) ; <nl> - const auto parts = ranges : : make_iterator_range ( start , finish ) ; <nl> + + + several ; <nl> <nl> - const auto haveTill = FindNotLoadedStart ( parts , offset ) ; <nl> - if ( haveTill < till ) { <nl> - return wait ( haveTill ) ; <nl> + if ( _cacheHelper & & result . toCache . number > 0 ) { <nl> + const auto index = result . toCache . number - 1 ; <nl> + cancelLoadInRange ( index * kInSlice , ( index + 1 ) * kInSlice ) ; <nl> + putToCache ( std : : move ( result . toCache ) ) ; <nl> } <nl> - CopyLoaded ( buffer , parts , offset , till ) ; <nl> - return done ( ) ; <nl> + auto checkPriority = true ; <nl> + for ( const auto offset : result . offsetsFromLoader . values ( ) ) { <nl> + if ( checkPriority ) { <nl> + checkLoadWillBeFirst ( offset ) ; <nl> + checkPriority = false ; <nl> + } <nl> + loadAtOffset ( offset ) ; <nl> + } <nl> + return result . filled ; <nl> } <nl> <nl> - void Reader : : processLoadedParts ( ) { <nl> - QMutexLocker lock ( & _loadedPartsMutex ) ; <nl> - auto loaded = std : : move ( _loadedParts ) ; <nl> + void Reader : : cancelLoadInRange ( int from , int till ) { <nl> + Expects ( from < till ) ; <nl> + <nl> + for ( const auto offset : _loadingOffsets . takeInRange ( from , till ) ) { <nl> + LOG ( ( " CANCEL LOAD : % 1 " ) . arg ( offset ) ) ; <nl> + _loader - > cancel ( offset ) ; <nl> + } <nl> + } <nl> + <nl> + void Reader : : checkLoadWillBeFirst ( int offset ) { <nl> + if ( _loadingOffsets . front ( ) . value_or ( offset ) ! = offset ) { <nl> + LOG ( ( " CHANGING PRIORITY , WAS : % 1 , NOW : % 2 " ) . arg ( _loadingOffsets . front ( ) . value_or ( offset ) ) . arg ( offset ) ) ; <nl> + _loadingOffsets . increasePriority ( ) ; <nl> + _loader - > increasePriority ( ) ; <nl> + } <nl> + } <nl> + <nl> + bool Reader : : processCacheResults ( ) { <nl> + if ( ! _cacheHelper ) { <nl> + return false ; <nl> + } else if ( _failed ) { <nl> + return false ; <nl> + } <nl> + <nl> + QMutexLocker lock ( & _cacheHelper - > mutex ) ; <nl> + auto loaded = base : : take ( _cacheHelper - > results ) ; <nl> lock . unlock ( ) ; <nl> <nl> + for ( auto & & part : loaded ) { <nl> + const auto sliceNumber = part . first ; <nl> + auto & serialized = part . second ; <nl> + _slices . processCacheResult ( sliceNumber , std : : move ( serialized ) ) ; <nl> + } <nl> + return ! loaded . empty ( ) ; <nl> + } <nl> + <nl> + bool Reader : : processLoadedParts ( ) { <nl> if ( _failed ) { <nl> - return ; <nl> + return false ; <nl> } <nl> + <nl> + QMutexLocker lock ( & _loadedPartsMutex ) ; <nl> + auto loaded = base : : take ( _loadedParts ) ; <nl> + lock . unlock ( ) ; <nl> + <nl> for ( auto & part : loaded ) { <nl> if ( part . offset = = LoadedPart : : kFailedOffset <nl> | | ( part . bytes . size ( ) ! = Loader : : kPartSize <nl> & & part . offset + part . bytes . size ( ) ! = size ( ) ) ) { <nl> _failed = true ; <nl> - return ; <nl> + return false ; <nl> + } else if ( ! _loadingOffsets . remove ( part . offset ) ) { <nl> + continue ; <nl> + } else if ( ! _slices . processPart ( <nl> + part . offset , <nl> + std : : move ( part . bytes ) ) ) { <nl> + _failed = true ; <nl> + return false ; <nl> } <nl> - _data . emplace ( part . offset , std : : move ( part . bytes ) ) ; <nl> + } <nl> + return ! loaded . empty ( ) ; <nl> + } <nl> + <nl> + static auto real = 0 ; <nl> + static auto skip = 0 ; <nl> + void Reader : : loadAtOffset ( int offset ) { <nl> + if ( offset = = 655360 ) { <nl> + int a = 0 ; <nl> + } <nl> + if ( _loadingOffsets . add ( offset ) ) { <nl> + LOG ( ( " START LOAD : % 1 " ) . arg ( offset ) ) ; <nl> + _loader - > load ( offset ) ; <nl> + + + real ; <nl> + } else { <nl> + + + skip ; <nl> } <nl> } <nl> <nl> - void Reader : : loadFor ( int offset ) { <nl> - const auto part = offset / Loader : : kPartSize ; <nl> - _loader - > load ( part * Loader : : kPartSize ) ; <nl> + void Reader : : finalizeCache ( ) { <nl> + if ( ! _cacheHelper ) { <nl> + return ; <nl> + } <nl> + if ( _cacheHelper - > waiting ! = nullptr ) { <nl> + QMutexLocker lock ( & _cacheHelper - > mutex ) ; <nl> + _cacheHelper - > waiting = nullptr ; <nl> + } <nl> + auto toCache = _slices . unloadToCache ( ) ; <nl> + while ( toCache . number > = 0 ) { <nl> + putToCache ( std : : move ( toCache ) ) ; <nl> + toCache = _slices . unloadToCache ( ) ; <nl> + } <nl> + _owner - > cacheBigFile ( ) . sync ( ) ; <nl> } <nl> <nl> - Reader : : ~ Reader ( ) = default ; <nl> + Reader : : ~ Reader ( ) { <nl> + const auto now = crl : : now ( ) ; <nl> + finalizeCache ( ) ; <nl> + LOG ( ( " PARTS : % 1 , REAL : % 2 , SKIP : % 3 , FILLS : % 4 , TIME : % 5 , MAX : % 6 , FINALIZE : % 7 , REPEATED : % 8 " ) . arg ( ( _loader - > size ( ) + kPartSize - 1 ) / kPartSize ) . arg ( real ) . arg ( skip ) . arg ( fills ) . arg ( fulltime / float64 ( fills ) ) . arg ( maxtime ) . arg ( crl : : now ( ) - now ) . arg ( several ) ) ; <nl> + } <nl> <nl> } / / namespace Streaming <nl> } / / namespace Media <nl> mmm a / Telegram / SourceFiles / media / streaming / media_streaming_reader . h <nl> ppp b / Telegram / SourceFiles / media / streaming / media_streaming_reader . h <nl> For license and copyright information please follow this link : <nl> * / <nl> # pragma once <nl> <nl> + # include " media / streaming / media_streaming_loader . h " <nl> # include " base / bytes . h " <nl> <nl> + namespace Storage { <nl> + namespace Cache { <nl> + struct Key ; <nl> + } / / namespace Cache <nl> + } / / namespace Storage <nl> + <nl> namespace Data { <nl> class Session ; <nl> } / / namespace Data <nl> class Reader final { <nl> <nl> int size ( ) const ; <nl> bool fill ( <nl> - bytes : : span buffer , <nl> int offset , <nl> - crl : : semaphore * notify = nullptr ) ; <nl> + bytes : : span buffer , <nl> + not_null < crl : : semaphore * > notify ) ; <nl> bool failed ( ) const ; <nl> <nl> + void headerDone ( ) ; <nl> + <nl> ~ Reader ( ) ; <nl> <nl> private : <nl> - void processLoadedParts ( ) ; <nl> - void loadFor ( int offset ) ; <nl> + static constexpr auto kLoadFromRemoteMax = 8 ; <nl> + <nl> + struct CacheHelper ; <nl> + <nl> + template < int Size > <nl> + class StackIntVector { <nl> + public : <nl> + bool add ( int value ) ; <nl> + auto values ( ) const ; <nl> + <nl> + private : <nl> + std : : array < int , Size > _storage = { - 1 } ; <nl> + <nl> + } ; <nl> + <nl> + struct SerializedSlice { <nl> + int number = - 1 ; <nl> + QByteArray data ; <nl> + } ; <nl> + struct FillResult { <nl> + static constexpr auto kReadFromCacheMax = 2 ; <nl> + <nl> + StackIntVector < kReadFromCacheMax > sliceNumbersFromCache ; <nl> + StackIntVector < kLoadFromRemoteMax > offsetsFromLoader ; <nl> + SerializedSlice toCache ; <nl> + bool filled = false ; <nl> + } ; <nl> + <nl> + struct Slice { <nl> + enum class Flag : uchar { <nl> + Header = 0x01 , <nl> + LoadingFromCache = 0x02 , <nl> + LoadedFromCache = 0x04 , <nl> + ChangedSinceCache = 0x08 , <nl> + } ; <nl> + friend constexpr inline bool is_flag_type ( Flag ) { return true ; } <nl> + using Flags = base : : flags < Flag > ; <nl> + <nl> + struct PrepareFillResult { <nl> + StackIntVector < kLoadFromRemoteMax > offsetsFromLoader ; <nl> + base : : flat_map < int , QByteArray > : : const_iterator start ; <nl> + base : : flat_map < int , QByteArray > : : const_iterator finish ; <nl> + bool ready = true ; <nl> + } ; <nl> + <nl> + bool processCacheData ( QByteArray & & data , int maxSliceSize ) ; <nl> + bool processComplexCacheData ( <nl> + bytes : : const_span data , <nl> + int maxSliceSize ) ; <nl> + void addPart ( int offset , QByteArray bytes ) ; <nl> + PrepareFillResult prepareFill ( int from , int till ) ; <nl> + <nl> + / / Get up to kLoadFromRemoteMax not loaded parts in from - till range . <nl> + StackIntVector < kLoadFromRemoteMax > offsetsFromLoader ( <nl> + int from , <nl> + int till ) const ; <nl> + <nl> + base : : flat_map < int , QByteArray > parts ; <nl> + Flags flags ; <nl> + <nl> + } ; <nl> + <nl> + class Slices { <nl> + public : <nl> + Slices ( int size , bool useCache ) ; <nl> + <nl> + void headerDone ( bool fromCache ) ; <nl> + <nl> + bool processCacheResult ( int sliceNumber , QByteArray & & result ) ; <nl> + bool processPart ( int offset , QByteArray & & bytes ) ; <nl> + <nl> + FillResult fill ( int offset , bytes : : span buffer ) ; <nl> + SerializedSlice unloadToCache ( ) ; <nl> + <nl> + private : <nl> + enum class HeaderMode { <nl> + Unknown , <nl> + Small , <nl> + / / Full , <nl> + NoCache , <nl> + } ; <nl> + <nl> + void applyHeaderCacheData ( ) ; <nl> + int maxSliceSize ( int sliceNumber ) const ; <nl> + SerializedSlice serializeAndUnloadSlice ( <nl> + int sliceNumber , <nl> + Slice & slice ) const ; <nl> + <nl> + std : : vector < Slice > _data ; <nl> + Slice _header ; <nl> + int _size = 0 ; <nl> + HeaderMode _headerMode = HeaderMode : : Unknown ; <nl> + <nl> + } ; <nl> + <nl> + / / 0 is for headerData , slice index = sliceNumber - 1 . <nl> + void readFromCache ( int sliceNumber ) ; <nl> + bool processCacheResults ( ) ; <nl> + void putToCache ( SerializedSlice & & data ) ; <nl> + <nl> + void cancelLoadInRange ( int from , int till ) ; <nl> + void loadAtOffset ( int offset ) ; <nl> + void checkLoadWillBeFirst ( int offset ) ; <nl> + bool processLoadedParts ( ) ; <nl> + <nl> + bool fillFromSlices ( int offset , bytes : : span buffer ) ; <nl> + <nl> + void finalizeCache ( ) ; <nl> + <nl> + static std : : shared_ptr < CacheHelper > InitCacheHelper ( <nl> + std : : optional < Storage : : Cache : : Key > baseKey ) ; <nl> <nl> const not_null < Data : : Session * > _owner ; <nl> const std : : unique_ptr < Loader > _loader ; <nl> + const std : : shared_ptr < CacheHelper > _cacheHelper ; <nl> <nl> QMutex _loadedPartsMutex ; <nl> std : : vector < LoadedPart > _loadedParts ; <nl> std : : atomic < crl : : semaphore * > _waiting = nullptr ; <nl> + PriorityQueue _loadingOffsets ; <nl> <nl> - / / # TODO streaming optimize <nl> - base : : flat_map < int , QByteArray > _data ; <nl> + Slices _slices ; <nl> bool _failed = false ; <nl> rpl : : lifetime _lifetime ; <nl> <nl> mmm a / Telegram / SourceFiles / storage / cache / storage_cache_database . cpp <nl> ppp b / Telegram / SourceFiles / storage / cache / storage_cache_database . cpp <nl> void Database : : clearByTag ( uint8 tag , FnMut < void ( Error ) > & & done ) { <nl> } ) ; <nl> } <nl> <nl> + void Database : : sync ( ) { <nl> + auto semaphore = crl : : semaphore ( ) ; <nl> + _wrapped . with ( [ & ] ( Implementation & ) { <nl> + semaphore . release ( ) ; <nl> + } ) ; <nl> + semaphore . acquire ( ) ; <nl> + } <nl> + <nl> Database : : ~ Database ( ) = default ; <nl> <nl> } / / namespace Cache <nl> mmm a / Telegram / SourceFiles / storage / cache / storage_cache_database . h <nl> ppp b / Telegram / SourceFiles / storage / cache / storage_cache_database . h <nl> class Database { <nl> void clearByTag ( uint8 tag , FnMut < void ( Error ) > & & done = nullptr ) ; <nl> void waitForCleaner ( FnMut < void ( ) > & & done = nullptr ) ; <nl> <nl> + void sync ( ) ; <nl> + <nl> ~ Database ( ) ; <nl> <nl> private : <nl> mmm a / Telegram / SourceFiles / storage / localstorage . cpp <nl> ppp b / Telegram / SourceFiles / storage / localstorage . cpp <nl> FileKey _recentHashtagsAndBotsKey = 0 ; <nl> bool _recentHashtagsAndBotsWereRead = false ; <nl> qint64 _cacheTotalSizeLimit = Database : : Settings ( ) . totalSizeLimit ; <nl> qint32 _cacheTotalTimeLimit = Database : : Settings ( ) . totalTimeLimit ; <nl> + qint64 _cacheBigFileTotalSizeLimit = Database : : Settings ( ) . totalSizeLimit ; <nl> + qint32 _cacheBigFileTotalTimeLimit = Database : : Settings ( ) . totalTimeLimit ; <nl> <nl> FileKey _exportSettingsKey = 0 ; <nl> <nl> bool _readSetting ( quint32 blockId , QDataStream & stream , int version , ReadSetting <nl> <nl> _cacheTotalSizeLimit = size ; <nl> _cacheTotalTimeLimit = time ; <nl> + _cacheBigFileTotalSizeLimit = size ; <nl> + _cacheBigFileTotalTimeLimit = size ; <nl> } break ; <nl> <nl> case dbiAnimationsDisabled : { <nl> void _writeUserSettings ( ) { <nl> data . stream < < quint32 ( dbiAutoPlay ) < < qint32 ( cAutoPlayGif ( ) ? 1 : 0 ) ; <nl> data . stream < < quint32 ( dbiUseExternalVideoPlayer ) < < qint32 ( cUseExternalVideoPlayer ( ) ) ; <nl> data . stream < < quint32 ( dbiCacheSettings ) < < qint64 ( _cacheTotalSizeLimit ) < < qint32 ( _cacheTotalTimeLimit ) ; <nl> + / / # TODO streaming save _cacheBigFileTotal limits ? . . <nl> if ( ! userData . isEmpty ( ) ) { <nl> data . stream < < quint32 ( dbiAuthSessionSettings ) < < userData ; <nl> } <nl> void reset ( ) { <nl> _oldMapVersion = _oldSettingsVersion = 0 ; <nl> _cacheTotalSizeLimit = Database : : Settings ( ) . totalSizeLimit ; <nl> _cacheTotalTimeLimit = Database : : Settings ( ) . totalTimeLimit ; <nl> + _cacheBigFileTotalSizeLimit = Database : : Settings ( ) . totalSizeLimit ; <nl> + _cacheBigFileTotalTimeLimit = Database : : Settings ( ) . totalTimeLimit ; <nl> StoredAuthSessionCache . reset ( ) ; <nl> _mapChanged = true ; <nl> _writeMap ( WriteMapWhen : : Now ) ; <nl> qint32 _storageAudioSize ( qint32 rawlen ) { <nl> return result ; <nl> } <nl> <nl> - QString cachePath ( ) { <nl> - Expects ( ! _userDbPath . isEmpty ( ) ) ; <nl> - <nl> - return _userDbPath + " cache " ; <nl> - } <nl> - <nl> Storage : : EncryptionKey cacheKey ( ) { <nl> Expects ( LocalKey ! = nullptr ) ; <nl> <nl> return Storage : : EncryptionKey ( bytes : : make_vector ( LocalKey - > data ( ) ) ) ; <nl> } <nl> <nl> + Storage : : EncryptionKey cacheBigFileKey ( ) { <nl> + return cacheKey ( ) ; <nl> + } <nl> + <nl> + QString cachePath ( ) { <nl> + Expects ( ! _userDbPath . isEmpty ( ) ) ; <nl> + <nl> + return _userDbPath + " cache " ; <nl> + } <nl> + <nl> Storage : : Cache : : Database : : Settings cacheSettings ( ) { <nl> auto result = Storage : : Cache : : Database : : Settings ( ) ; <nl> result . clearOnWrongKey = true ; <nl> void updateCacheSettings ( Storage : : Cache : : Database : : SettingsUpdate & update ) { <nl> _writeUserSettings ( ) ; <nl> } <nl> <nl> + QString cacheBigFilePath ( ) { <nl> + Expects ( ! _userDbPath . isEmpty ( ) ) ; <nl> + <nl> + return _userDbPath + " media_cache " ; <nl> + } <nl> + <nl> + Storage : : Cache : : Database : : Settings cacheBigFileSettings ( ) { <nl> + auto result = Storage : : Cache : : Database : : Settings ( ) ; <nl> + result . clearOnWrongKey = true ; <nl> + result . totalSizeLimit = _cacheBigFileTotalSizeLimit ; <nl> + result . totalTimeLimit = _cacheBigFileTotalTimeLimit ; <nl> + result . maxDataSize = Storage : : kMaxFileInMemory ; <nl> + return result ; <nl> + } <nl> + <nl> + void updateCacheBigFileSettings ( Storage : : Cache : : Database : : SettingsUpdate & update ) { <nl> + Expects ( update . totalSizeLimit > Database : : Settings ( ) . maxDataSize ) ; <nl> + Expects ( update . totalTimeLimit > = 0 ) ; <nl> + <nl> + if ( _cacheBigFileTotalSizeLimit = = update . totalSizeLimit <nl> + & & _cacheBigFileTotalTimeLimit = = update . totalTimeLimit ) { <nl> + return ; <nl> + } <nl> + _cacheBigFileTotalSizeLimit = update . totalSizeLimit ; <nl> + _cacheBigFileTotalTimeLimit = update . totalTimeLimit ; <nl> + / / _writeUserSettings ( ) ; / / # TODO streaming save those ? . . <nl> + } <nl> + <nl> class CountWaveformTask : public Task { <nl> public : <nl> CountWaveformTask ( DocumentData * doc ) <nl> mmm a / Telegram / SourceFiles / storage / localstorage . h <nl> ppp b / Telegram / SourceFiles / storage / localstorage . h <nl> bool hasDraft ( const PeerId & peer ) ; <nl> void writeFileLocation ( MediaKey location , const FileLocation & local ) ; <nl> FileLocation readFileLocation ( MediaKey location , bool check = true ) ; <nl> <nl> - QString cachePath ( ) ; <nl> Storage : : EncryptionKey cacheKey ( ) ; <nl> + QString cachePath ( ) ; <nl> Storage : : Cache : : Database : : Settings cacheSettings ( ) ; <nl> void updateCacheSettings ( Storage : : Cache : : Database : : SettingsUpdate & update ) ; <nl> <nl> + Storage : : EncryptionKey cacheBigFileKey ( ) ; <nl> + QString cacheBigFilePath ( ) ; <nl> + Storage : : Cache : : Database : : Settings cacheBigFileSettings ( ) ; <nl> + void updateCacheBigFileSettings ( Storage : : Cache : : Database : : SettingsUpdate & update ) ; <nl> + <nl> void countVoiceWaveform ( DocumentData * document ) ; <nl> <nl> void cancelTask ( TaskId id ) ; <nl>
First version of caching in media streaming .
telegramdesktop/tdesktop
220862105014de0c7e482a9b2356dcd495f78394
2019-03-11T07:49:54Z
mmm a / hphp / runtime / base / object - data . h <nl> ppp b / hphp / runtime / base / object - data . h <nl> typename std : : enable_if < <nl> std : : is_convertible < T * , ObjectData * > : : value , <nl> SmartPtr < T > <nl> > : : type makeSmartPtr ( Args & & . . . args ) { <nl> - return SmartPtr < T > ( newobj < T > ( std : : forward < Args > ( args ) . . . ) ) ; <nl> + using NonNull = typename SmartPtr < T > : : NonNull ; <nl> + return SmartPtr < T > ( newobj < T > ( std : : forward < Args > ( args ) . . . ) , NonNull { } ) ; <nl> } <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> mmm a / hphp / runtime / base / resource - data . h <nl> ppp b / hphp / runtime / base / resource - data . h <nl> typename std : : enable_if < <nl> std : : is_convertible < T * , ResourceData * > : : value , <nl> SmartPtr < T > <nl> > : : type makeSmartPtr ( Args & & . . . args ) { <nl> - return SmartPtr < T > ( newres < T > ( std : : forward < Args > ( args ) . . . ) ) ; <nl> + using NonNull = typename SmartPtr < T > : : NonNull ; <nl> + return SmartPtr < T > ( newres < T > ( std : : forward < Args > ( args ) . . . ) , NonNull { } ) ; <nl> } <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl>
No need to check for null when calling makeSmartPtr .
facebook/hhvm
c8b27132b12d35652b76bbcdc1706b5ab1805014
2015-03-23T17:31:00Z
mmm a / spec / api - app - spec . js <nl> ppp b / spec / api - app - spec . js <nl> const ChildProcess = require ( ' child_process ' ) <nl> const https = require ( ' https ' ) <nl> const fs = require ( ' fs ' ) <nl> const path = require ( ' path ' ) <nl> - const remote = require ( ' electron ' ) . remote <nl> + const { remote } = require ( ' electron ' ) <nl> <nl> - const app = remote . require ( ' electron ' ) . app <nl> - const BrowserWindow = remote . require ( ' electron ' ) . BrowserWindow <nl> + const { app , BrowserWindow , ipcMain } = remote <nl> const isCI = remote . getGlobal ( ' isCi ' ) <nl> <nl> describe ( ' electron module ' , function ( ) { <nl> describe ( ' electron module ' , function ( ) { <nl> require ( ' clipboard ' ) <nl> } , / Cannot find module ' clipboard ' / ) <nl> } ) <nl> + <nl> + describe ( ' require ( " electron " ) ' , function ( ) { <nl> + let window = null <nl> + <nl> + beforeEach ( function ( ) { <nl> + if ( window ! = null ) { <nl> + window . destroy ( ) <nl> + } <nl> + window = new BrowserWindow ( { <nl> + show : false , <nl> + width : 400 , <nl> + height : 400 <nl> + } ) <nl> + } ) <nl> + <nl> + afterEach ( function ( ) { <nl> + if ( window ! = null ) { <nl> + window . destroy ( ) <nl> + } <nl> + window = null <nl> + } ) <nl> + <nl> + it ( ' always returns the internal electron module ' , function ( done ) { <nl> + ipcMain . once ( ' answer ' , function ( ) { <nl> + done ( ) <nl> + } ) <nl> + window . loadURL ( ' file : / / ' + path . join ( __dirname , ' fixtures ' , ' api ' , ' electron - module - app ' , ' index . html ' ) ) <nl> + } ) <nl> + } ) <nl> + <nl> } ) <nl> <nl> describe ( ' app module ' , function ( ) { <nl> mmm a / spec / node - spec . js <nl> ppp b / spec / node - spec . js <nl> const fs = require ( ' fs ' ) <nl> const path = require ( ' path ' ) <nl> const os = require ( ' os ' ) <nl> const { remote } = require ( ' electron ' ) <nl> - const { BrowserWindow , ipcMain } = remote <nl> <nl> describe ( ' node feature ' , function ( ) { <nl> var fixtures = path . join ( __dirname , ' fixtures ' ) <nl> describe ( ' node feature ' , function ( ) { <nl> require ( ' vm ' ) . runInNewContext ( ' ' ) <nl> } ) <nl> } ) <nl> - <nl> - describe ( ' require ( " electron " ) ' , function ( ) { <nl> - let window = null <nl> - <nl> - beforeEach ( function ( ) { <nl> - if ( window ! = null ) { <nl> - window . destroy ( ) <nl> - } <nl> - window = new BrowserWindow ( { <nl> - show : false , <nl> - width : 400 , <nl> - height : 400 <nl> - } ) <nl> - } ) <nl> - <nl> - afterEach ( function ( ) { <nl> - if ( window ! = null ) { <nl> - window . destroy ( ) <nl> - } <nl> - window = null <nl> - } ) <nl> - <nl> - it ( ' always returns the internal electron module ' , function ( done ) { <nl> - ipcMain . once ( ' answer ' , function ( ) { <nl> - done ( ) <nl> - } ) <nl> - window . loadURL ( ' file : / / ' + path . join ( __dirname , ' fixtures ' , ' api ' , ' electron - module - app ' , ' index . html ' ) ) <nl> - } ) <nl> - } ) <nl> } ) <nl>
Move require spec to api - app - spec
electron/electron
5e2f36387f09e53b07e365a3baa47637704e22a5
2016-05-23T22:14:55Z
mmm a / dbms / src / Functions / FunctionsMiscellaneous . cpp <nl> ppp b / dbms / src / Functions / FunctionsMiscellaneous . cpp <nl> struct IsFiniteImpl <nl> & 0b0111111111110000000000000000000000000000000000000000000000000000 ) <nl> ! = 0b0111111111110000000000000000000000000000000000000000000000000000 ; <nl> else <nl> + { <nl> + ( void ) t ; <nl> return true ; <nl> + } <nl> } <nl> } ; <nl> <nl> struct IsInfiniteImpl <nl> & 0b0111111111111111111111111111111111111111111111111111111111111111 ) <nl> = = 0b0111111111110000000000000000000000000000000000000000000000000000 ; <nl> else <nl> + { <nl> + ( void ) t ; <nl> return false ; <nl> + } <nl> } <nl> } ; <nl> <nl>
Better [ # CLICKHOUSE - 2 ] .
ClickHouse/ClickHouse
3076b2c0eb08747fb247e9336088d20ca81122f5
2017-12-02T03:29:35Z
mmm a / bootstrap <nl> ppp b / bootstrap <nl> set - e <nl> autoreconf - vif <nl> autoreconf - vif lib / cpluff <nl> # we must autoreconf libass as we don ' t know till later if it ' s used . <nl> - autoreconf - vif lib / libass <nl> + [ - d lib / libass ] & & autoreconf - vif lib / libass <nl> # order matters with libbdnav and friends <nl> [ - d xbmc / cores / dvdplayer / Codecs / libdvd / libdvdcss ] & & \ <nl> autoreconf - vif xbmc / cores / dvdplayer / Codecs / libdvd / libdvdcss <nl>
bootstrap libass if directory is detected .
xbmc/xbmc
813e7ebb11f2f74d6a3ce9c46c7d08c7eff2530d
2010-08-01T02:48:26Z
mmm a / ports / gtk / CONTROL <nl> ppp b / ports / gtk / CONTROL <nl> <nl> Source : gtk <nl> - Version : 3 . 22 . 9 <nl> + Version : 3 . 22 . 11 <nl> Description : Portable library for creating graphical user interfaces . <nl> Build - Depends : glib , atk , gdk - pixbuf , pango , cairo , libepoxy , gettext <nl> mmm a / ports / gtk / portfile . cmake <nl> ppp b / ports / gtk / portfile . cmake <nl> <nl> <nl> include ( vcpkg_common_functions ) <nl> - set ( GTK_VERSION 3 . 22 . 9 ) <nl> + set ( GTK_VERSION 3 . 22 . 11 ) <nl> set ( SOURCE_PATH $ { CURRENT_BUILDTREES_DIR } / src / gtk + - $ { GTK_VERSION } ) <nl> vcpkg_download_distfile ( ARCHIVE <nl> URLS " https : / / ftp . gnome . org / pub / gnome / sources / gtk + / 3 . 22 / gtk + - $ { GTK_VERSION } . tar . xz " <nl> FILENAME " gtk + - $ { GTK_VERSION } . tar . xz " <nl> - SHA512 cfed67a6263172cdef5a8d5f1548017f2e241667779d810ed84aa14ecdd18b917b213b3e71ac97f8d7099ba97a6829b45322ab15c8540ff406247d1519a08550 ) <nl> + SHA512 0dd8c0b8cf01a687bd7b9548308a8719fda4a30e0b47139db049906333d23c1eee3867af130dc3ecd0fb4a1381c8065e9929ccd9cb4def376bbb0b136ec05a7e ) <nl> <nl> vcpkg_extract_source_archive ( $ { ARCHIVE } ) <nl> file ( COPY $ { CMAKE_CURRENT_LIST_DIR } / CMakeLists . txt DESTINATION $ { SOURCE_PATH } ) <nl>
Merge pull request from codicodi / bump - gtk
microsoft/vcpkg
75d304009ad5d44f72d35ee7ddbb8ce166b7069a
2017-03-20T20:53:08Z
mmm a / atom / browser / api / atom_api_cookies . cc <nl> ppp b / atom / browser / api / atom_api_cookies . cc <nl> struct Converter < net : : CanonicalCookie > { <nl> } ; <nl> <nl> template < > <nl> - struct Converter < AtomCookieDelegate : : ChangeCause > { <nl> + struct Converter < net : : CookieStore : : ChangeCause > { <nl> static v8 : : Local < v8 : : Value > ToV8 ( v8 : : Isolate * isolate , <nl> - const AtomCookieDelegate : : ChangeCause & val ) { <nl> + const net : : CookieStore : : ChangeCause & val ) { <nl> switch ( val ) { <nl> - case AtomCookieDelegate : : ChangeCause : : CHANGE_COOKIE_EXPLICIT : <nl> + case net : : CookieStore : : ChangeCause : : EXPLICIT : <nl> return mate : : StringToV8 ( isolate , " explicit " ) ; <nl> - case AtomCookieDelegate : : ChangeCause : : CHANGE_COOKIE_OVERWRITE : <nl> + case net : : CookieStore : : ChangeCause : : OVERWRITE : <nl> return mate : : StringToV8 ( isolate , " overwrite " ) ; <nl> - case AtomCookieDelegate : : ChangeCause : : CHANGE_COOKIE_EXPIRED : <nl> + case net : : CookieStore : : ChangeCause : : EXPIRED : <nl> return mate : : StringToV8 ( isolate , " expired " ) ; <nl> - case AtomCookieDelegate : : ChangeCause : : CHANGE_COOKIE_EVICTED : <nl> + case net : : CookieStore : : ChangeCause : : EVICTED : <nl> return mate : : StringToV8 ( isolate , " evicted " ) ; <nl> - case AtomCookieDelegate : : ChangeCause : : CHANGE_COOKIE_EXPIRED_OVERWRITE : <nl> + case net : : CookieStore : : ChangeCause : : EXPIRED_OVERWRITE : <nl> return mate : : StringToV8 ( isolate , " expired - overwrite " ) ; <nl> default : <nl> return mate : : StringToV8 ( isolate , " unknown " ) ; <nl> void Cookies : : Set ( const base : : DictionaryValue & details , <nl> <nl> void Cookies : : OnCookieChanged ( const net : : CanonicalCookie & cookie , <nl> bool removed , <nl> - AtomCookieDelegate : : ChangeCause cause ) { <nl> + net : : CookieStore : : ChangeCause cause ) { <nl> Emit ( " changed " , cookie , cause , removed ) ; <nl> } <nl> <nl> mmm a / atom / browser / api / atom_api_cookies . h <nl> ppp b / atom / browser / api / atom_api_cookies . h <nl> class Cookies : public mate : : TrackableObject < Cookies > , <nl> / / AtomCookieDelegate : : Observer : <nl> void OnCookieChanged ( const net : : CanonicalCookie & cookie , <nl> bool removed , <nl> - AtomCookieDelegate : : ChangeCause cause ) override ; <nl> + net : : CookieStore : : ChangeCause cause ) override ; <nl> <nl> private : <nl> net : : URLRequestContextGetter * request_context_getter_ ; <nl> mmm a / atom / browser / net / atom_cookie_delegate . cc <nl> ppp b / atom / browser / net / atom_cookie_delegate . cc <nl> void AtomCookieDelegate : : RemoveObserver ( Observer * observer ) { <nl> } <nl> <nl> void AtomCookieDelegate : : NotifyObservers ( <nl> - const net : : CanonicalCookie & cookie , bool removed , ChangeCause cause ) { <nl> + const net : : CanonicalCookie & cookie , <nl> + bool removed , <nl> + net : : CookieStore : : ChangeCause cause ) { <nl> FOR_EACH_OBSERVER ( Observer , <nl> observers_ , <nl> OnCookieChanged ( cookie , removed , cause ) ) ; <nl> } <nl> <nl> void AtomCookieDelegate : : OnCookieChanged ( <nl> - const net : : CanonicalCookie & cookie , bool removed , ChangeCause cause ) { <nl> + const net : : CanonicalCookie & cookie , <nl> + bool removed , <nl> + net : : CookieStore : : ChangeCause cause ) { <nl> content : : BrowserThread : : PostTask ( <nl> content : : BrowserThread : : UI , <nl> FROM_HERE , <nl> mmm a / atom / browser / net / atom_cookie_delegate . h <nl> ppp b / atom / browser / net / atom_cookie_delegate . h <nl> class AtomCookieDelegate : public net : : CookieMonsterDelegate { <nl> public : <nl> virtual void OnCookieChanged ( const net : : CanonicalCookie & cookie , <nl> bool removed , <nl> - ChangeCause cause ) { } <nl> + net : : CookieStore : : ChangeCause cause ) { } <nl> protected : <nl> virtual ~ Observer ( ) { } <nl> } ; <nl> class AtomCookieDelegate : public net : : CookieMonsterDelegate { <nl> / / net : : CookieMonsterDelegate : <nl> void OnCookieChanged ( const net : : CanonicalCookie & cookie , <nl> bool removed , <nl> - ChangeCause cause ) override ; <nl> + net : : CookieStore : : ChangeCause cause ) override ; <nl> <nl> <nl> private : <nl> class AtomCookieDelegate : public net : : CookieMonsterDelegate { <nl> <nl> void NotifyObservers ( const net : : CanonicalCookie & cookie , <nl> bool removed , <nl> - ChangeCause cause ) ; <nl> + net : : CookieStore : : ChangeCause cause ) ; <nl> <nl> DISALLOW_COPY_AND_ASSIGN ( AtomCookieDelegate ) ; <nl> } ; <nl>
Namespace of ChangeCause has changed
electron/electron
231173aa90ed5da6cc61a6c90234bba60c837ec6
2017-02-06T18:34:28Z
mmm a / src / common . build . post . props <nl> ppp b / src / common . build . post . props <nl> <nl> < PropertyGroup > <nl> < CAExcludePath > $ ( SolutionDir ) \ dep \ ; $ ( CAExcludePath ) < / CAExcludePath > <nl> < / PropertyGroup > <nl> + < Target Name = " CleanUpPrecompForSmallCIAgents " AfterTargets = " AfterBuild " Condition = " ' $ ( AGENT_ID ) ' ! = ' ' " > <nl> + < ItemGroup > <nl> + < FilesToClean Include = " $ ( IntDir ) \ * * \ * . pch " / > <nl> + < FilesToClean Include = " $ ( IntDir ) \ * * \ precomp . obj " / > <nl> + < / ItemGroup > <nl> + < Delete Files = " @ ( FilesToClean ) " / > <nl> + < Message Text = " PCH and Precomp objects have been deleted for $ ( ProjectName ) . " / > <nl> + < / Target > <nl> < / Project > <nl>
Attempt to clean up PCHs as we build to leave more Hosted Agent disk space ( )
microsoft/terminal
aae938fc337f3c31611d6c597a371912082af29a
2019-08-06T11:51:50Z
mmm a / src / gui / Src / BasicView / ShortcutEdit . cpp <nl> ppp b / src / gui / Src / BasicView / ShortcutEdit . cpp <nl> void ShortcutEdit : : keyPressEvent ( QKeyEvent * event ) <nl> } <nl> } <nl> <nl> + / / replace Backtab with Shift + Tab <nl> + if ( ( keyInt & Qt : : Key_Backtab ) = = Qt : : Key_Backtab ) <nl> + keyInt = ( keyInt & ~ Qt : : Key_Backtab ) | Qt : : SHIFT | Qt : : Key_Tab ; <nl> <nl> / / display key combination <nl> setText ( QKeySequence ( keyInt ) . toString ( QKeySequence : : NativeText ) ) ; <nl>
GUI : replace backtab with Shift + Tab in ShortcutEdit
x64dbg/x64dbg
233a2670d273e53286143095d594e856b371900e
2017-11-17T13:42:49Z
deleted file mode 100644 <nl> index 0f7e43b3ce15 . . 000000000000 <nl> mmm a / templates / lua - template - runtime / frameworks / runtime - src / proj . ios_mac / mac / NSAppSheetAdditions . h <nl> ppp / dev / null <nl> <nl> - <nl> - # import < Cocoa / Cocoa . h > <nl> - <nl> - @ interface NSApplication ( SheetAdditions ) <nl> - <nl> - - ( void ) beginSheet : ( NSWindow * ) sheet modalForWindow : ( NSWindow * ) docWindow didEndBlock : ( void ( ^ ) ( NSInteger returnCode ) ) block ; <nl> - <nl> - @ end <nl> deleted file mode 100644 <nl> index b5845bd7840d . . 000000000000 <nl> mmm a / templates / lua - template - runtime / frameworks / runtime - src / proj . ios_mac / mac / NSAppSheetAdditions . m <nl> ppp / dev / null <nl> <nl> - <nl> - # import " NSAppSheetAdditions . h " <nl> - <nl> - @ implementation NSApplication ( SheetAdditions ) <nl> - <nl> - - ( void ) beginSheet : ( NSWindow * ) sheet modalForWindow : ( NSWindow * ) docWindow didEndBlock : ( void ( ^ ) ( NSInteger returnCode ) ) block <nl> - { <nl> - [ self beginSheet : sheet <nl> - modalForWindow : docWindow <nl> - modalDelegate : self <nl> - didEndSelector : @ selector ( my_blockSheetDidEnd : returnCode : contextInfo : ) <nl> - contextInfo : Block_copy ( block ) ] ; <nl> - } <nl> - <nl> - - ( void ) my_blockSheetDidEnd : ( NSWindow * ) sheet returnCode : ( NSInteger ) returnCode contextInfo : ( void * ) contextInfo <nl> - { <nl> - void ( ^ block ) ( NSInteger returnCode ) = contextInfo ; <nl> - block ( returnCode ) ; <nl> - Block_release ( block ) ; <nl> - } <nl> - <nl> - @ end <nl> deleted file mode 100644 <nl> index 7ebed71aa1b2 . . 000000000000 <nl> mmm a / templates / lua - template - runtime / frameworks / runtime - src / proj . ios_mac / mac / WorkSpaceDialog . xib <nl> ppp / dev / null <nl> <nl> - < ? xml version = " 1 . 0 " encoding = " UTF - 8 " ? > <nl> - < archive type = " com . apple . InterfaceBuilder3 . Cocoa . XIB " version = " 8 . 00 " > <nl> - < data > <nl> - < int key = " IBDocument . SystemTarget " > 1070 < / int > <nl> - < string key = " IBDocument . SystemVersion " > 13C64 < / string > <nl> - < string key = " IBDocument . InterfaceBuilderVersion " > 5056 < / string > <nl> - < string key = " IBDocument . AppKitVersion " > 1265 . 19 < / string > <nl> - < string key = " IBDocument . HIToolboxVersion " > 697 . 40 < / string > <nl> - < object class = " NSMutableDictionary " key = " IBDocument . PluginVersions " > <nl> - < string key = " NS . key . 0 " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < string key = " NS . object . 0 " > 5056 < / string > <nl> - < / object > <nl> - < array key = " IBDocument . IntegratedClassDependencies " > <nl> - < string > IBNSLayoutConstraint < / string > <nl> - < string > NSButton < / string > <nl> - < string > NSButtonCell < / string > <nl> - < string > NSCustomObject < / string > <nl> - < string > NSTextField < / string > <nl> - < string > NSTextFieldCell < / string > <nl> - < string > NSView < / string > <nl> - < string > NSWindowTemplate < / string > <nl> - < / array > <nl> - < array key = " IBDocument . PluginDependencies " > <nl> - < string > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < / array > <nl> - < object class = " NSMutableDictionary " key = " IBDocument . Metadata " > <nl> - < string key = " NS . key . 0 " > PluginDependencyRecalculationVersion < / string > <nl> - < integer value = " 1 " key = " NS . object . 0 " / > <nl> - < / object > <nl> - < array class = " NSMutableArray " key = " IBDocument . RootObjects " id = " 172117012 " > <nl> - < object class = " NSCustomObject " id = " 544304869 " > <nl> - < string key = " NSClassName " > WorkSpaceDialogController < / string > <nl> - < / object > <nl> - < object class = " NSCustomObject " id = " 678778463 " > <nl> - < string key = " NSClassName " > FirstResponder < / string > <nl> - < / object > <nl> - < object class = " NSCustomObject " id = " 805545953 " > <nl> - < string key = " NSClassName " > NSApplication < / string > <nl> - < / object > <nl> - < object class = " NSWindowTemplate " id = " 417919685 " > <nl> - < int key = " NSWindowStyleMask " > 3 < / int > <nl> - < int key = " NSWindowBacking " > 2 < / int > <nl> - < string key = " NSWindowRect " > { { 196 , 240 } , { 650 , 150 } } < / string > <nl> - < int key = " NSWTFlags " > 544736256 < / int > <nl> - < string key = " NSWindowTitle " > Change Project < / string > <nl> - < string key = " NSWindowClass " > NSWindow < / string > <nl> - < nil key = " NSViewClass " / > <nl> - < nil key = " NSUserInterfaceItemIdentifier " / > <nl> - < object class = " NSView " key = " NSWindowView " id = " 773221745 " > <nl> - < reference key = " NSNextResponder " / > <nl> - < int key = " NSvFlags " > 256 < / int > <nl> - < array class = " NSMutableArray " key = " NSSubviews " > <nl> - < object class = " NSTextField " id = " 626749776 " > <nl> - < reference key = " NSNextResponder " ref = " 773221745 " / > <nl> - < int key = " NSvFlags " > 268 < / int > <nl> - < string key = " NSFrame " > { { 17 , 113 } , { 626 , 17 } } < / string > <nl> - < reference key = " NSSuperview " ref = " 773221745 " / > <nl> - < reference key = " NSWindow " / > <nl> - < bool key = " NSEnabled " > YES < / bool > <nl> - < object class = " NSTextFieldCell " key = " NSCell " id = " 419795268 " > <nl> - < int key = " NSCellFlags " > 68157504 < / int > <nl> - < int key = " NSCellFlags2 " > 272630784 < / int > <nl> - < string key = " NSContents " > Choose Project Directory : < / string > <nl> - < object class = " NSFont " key = " NSSupport " id = " 957026095 " > <nl> - < string key = " NSName " > . LucidaGrandeUI < / string > <nl> - < double key = " NSSize " > 13 < / double > <nl> - < int key = " NSfFlags " > 1044 < / int > <nl> - < / object > <nl> - < reference key = " NSControlView " ref = " 626749776 " / > <nl> - < object class = " NSColor " key = " NSBackgroundColor " > <nl> - < int key = " NSColorSpace " > 6 < / int > <nl> - < string key = " NSCatalogName " > System < / string > <nl> - < string key = " NSColorName " > controlColor < / string > <nl> - < object class = " NSColor " key = " NSColor " > <nl> - < int key = " NSColorSpace " > 3 < / int > <nl> - < bytes key = " NSWhite " > MC42NjY2NjY2NjY3AA < / bytes > <nl> - < / object > <nl> - < / object > <nl> - < object class = " NSColor " key = " NSTextColor " > <nl> - < int key = " NSColorSpace " > 6 < / int > <nl> - < string key = " NSCatalogName " > System < / string > <nl> - < string key = " NSColorName " > controlTextColor < / string > <nl> - < object class = " NSColor " key = " NSColor " id = " 349380676 " > <nl> - < int key = " NSColorSpace " > 3 < / int > <nl> - < bytes key = " NSWhite " > MAA < / bytes > <nl> - < / object > <nl> - < / object > <nl> - < / object > <nl> - < bool key = " NSAllowsLogicalLayoutDirection " > NO < / bool > <nl> - < int key = " NSTextFieldAlignmentRectInsetsVersion " > 1 < / int > <nl> - < / object > <nl> - < object class = " NSTextField " id = " 664907665 " > <nl> - < reference key = " NSNextResponder " ref = " 773221745 " / > <nl> - < int key = " NSvFlags " > 268 < / int > <nl> - < string key = " NSFrame " > { { 20 , 83 } , { 516 , 22 } } < / string > <nl> - < reference key = " NSSuperview " ref = " 773221745 " / > <nl> - < reference key = " NSWindow " / > <nl> - < bool key = " NSEnabled " > YES < / bool > <nl> - < object class = " NSTextFieldCell " key = " NSCell " id = " 582949244 " > <nl> - < int key = " NSCellFlags " > - 1804599231 < / int > <nl> - < int key = " NSCellFlags2 " > 272630848 < / int > <nl> - < string key = " NSContents " / > <nl> - < reference key = " NSSupport " ref = " 957026095 " / > <nl> - < reference key = " NSControlView " ref = " 664907665 " / > <nl> - < bool key = " NSDrawsBackground " > YES < / bool > <nl> - < object class = " NSColor " key = " NSBackgroundColor " > <nl> - < int key = " NSColorSpace " > 6 < / int > <nl> - < string key = " NSCatalogName " > System < / string > <nl> - < string key = " NSColorName " > textBackgroundColor < / string > <nl> - < object class = " NSColor " key = " NSColor " > <nl> - < int key = " NSColorSpace " > 3 < / int > <nl> - < bytes key = " NSWhite " > MQA < / bytes > <nl> - < / object > <nl> - < / object > <nl> - < object class = " NSColor " key = " NSTextColor " > <nl> - < int key = " NSColorSpace " > 6 < / int > <nl> - < string key = " NSCatalogName " > System < / string > <nl> - < string key = " NSColorName " > textColor < / string > <nl> - < reference key = " NSColor " ref = " 349380676 " / > <nl> - < / object > <nl> - < / object > <nl> - < bool key = " NSAllowsLogicalLayoutDirection " > NO < / bool > <nl> - < int key = " NSTextFieldAlignmentRectInsetsVersion " > 1 < / int > <nl> - < / object > <nl> - < object class = " NSButton " id = " 139131928 " > <nl> - < reference key = " NSNextResponder " ref = " 773221745 " / > <nl> - < int key = " NSvFlags " > 268 < / int > <nl> - < string key = " NSFrame " > { { 538 , 77 } , { 108 , 32 } } < / string > <nl> - < reference key = " NSSuperview " ref = " 773221745 " / > <nl> - < reference key = " NSWindow " / > <nl> - < string key = " NSHuggingPriority " > { 250 , 750 } < / string > <nl> - < bool key = " NSEnabled " > YES < / bool > <nl> - < object class = " NSButtonCell " key = " NSCell " id = " 570067231 " > <nl> - < int key = " NSCellFlags " > 67108864 < / int > <nl> - < int key = " NSCellFlags2 " > 134217728 < / int > <nl> - < string key = " NSContents " > Select . . . < / string > <nl> - < reference key = " NSSupport " ref = " 957026095 " / > <nl> - < reference key = " NSControlView " ref = " 139131928 " / > <nl> - < int key = " NSButtonFlags " > - 2038284288 < / int > <nl> - < int key = " NSButtonFlags2 " > 129 < / int > <nl> - < object class = " NSFont " key = " NSAlternateImage " id = " 360343385 " > <nl> - < string key = " NSName " > . LucidaGrandeUI < / string > <nl> - < double key = " NSSize " > 13 < / double > <nl> - < int key = " NSfFlags " > 16 < / int > <nl> - < / object > <nl> - < string key = " NSAlternateContents " / > <nl> - < string key = " NSKeyEquivalent " / > <nl> - < int key = " NSPeriodicDelay " > 400 < / int > <nl> - < int key = " NSPeriodicInterval " > 75 < / int > <nl> - < / object > <nl> - < bool key = " NSAllowsLogicalLayoutDirection " > NO < / bool > <nl> - < / object > <nl> - < object class = " NSButton " id = " 610415164 " > <nl> - < reference key = " NSNextResponder " ref = " 773221745 " / > <nl> - < int key = " NSvFlags " > 268 < / int > <nl> - < string key = " NSFrame " > { { 538 , 22 } , { 109 , 32 } } < / string > <nl> - < reference key = " NSSuperview " ref = " 773221745 " / > <nl> - < reference key = " NSWindow " / > <nl> - < string key = " NSHuggingPriority " > { 250 , 750 } < / string > <nl> - < bool key = " NSEnabled " > YES < / bool > <nl> - < object class = " NSButtonCell " key = " NSCell " id = " 266810869 " > <nl> - < int key = " NSCellFlags " > 67108864 < / int > <nl> - < int key = " NSCellFlags2 " > 134217728 < / int > <nl> - < string key = " NSContents " > Open Project < / string > <nl> - < reference key = " NSSupport " ref = " 957026095 " / > <nl> - < reference key = " NSControlView " ref = " 610415164 " / > <nl> - < int key = " NSButtonFlags " > - 2038284288 < / int > <nl> - < int key = " NSButtonFlags2 " > 129 < / int > <nl> - < reference key = " NSAlternateImage " ref = " 360343385 " / > <nl> - < string key = " NSAlternateContents " / > <nl> - < string key = " NSKeyEquivalent " / > <nl> - < int key = " NSPeriodicDelay " > 400 < / int > <nl> - < int key = " NSPeriodicInterval " > 75 < / int > <nl> - < / object > <nl> - < bool key = " NSAllowsLogicalLayoutDirection " > NO < / bool > <nl> - < / object > <nl> - < object class = " NSButton " id = " 183844150 " > <nl> - < reference key = " NSNextResponder " ref = " 773221745 " / > <nl> - < int key = " NSvFlags " > 268 < / int > <nl> - < string key = " NSFrame " > { { 13 , 32 } , { 82 , 32 } } < / string > <nl> - < reference key = " NSSuperview " ref = " 773221745 " / > <nl> - < reference key = " NSWindow " / > <nl> - < string key = " NSHuggingPriority " > { 250 , 750 } < / string > <nl> - < bool key = " NSEnabled " > YES < / bool > <nl> - < object class = " NSButtonCell " key = " NSCell " id = " 721886683 " > <nl> - < int key = " NSCellFlags " > 67108864 < / int > <nl> - < int key = " NSCellFlags2 " > 134217728 < / int > <nl> - < string key = " NSContents " > Cancel < / string > <nl> - < reference key = " NSSupport " ref = " 957026095 " / > <nl> - < reference key = " NSControlView " ref = " 183844150 " / > <nl> - < int key = " NSButtonFlags " > - 2038284288 < / int > <nl> - < int key = " NSButtonFlags2 " > 129 < / int > <nl> - < reference key = " NSAlternateImage " ref = " 360343385 " / > <nl> - < string key = " NSAlternateContents " / > <nl> - < string type = " base64 - UTF8 " key = " NSKeyEquivalent " > Gw < / string > <nl> - < int key = " NSPeriodicDelay " > 400 < / int > <nl> - < int key = " NSPeriodicInterval " > 75 < / int > <nl> - < / object > <nl> - < bool key = " NSAllowsLogicalLayoutDirection " > NO < / bool > <nl> - < / object > <nl> - < / array > <nl> - < string key = " NSFrameSize " > { 650 , 150 } < / string > <nl> - < reference key = " NSSuperview " / > <nl> - < reference key = " NSWindow " / > <nl> - < / object > <nl> - < string key = " NSScreenRect " > { { 0 , 0 } , { 1920 , 1058 } } < / string > <nl> - < string key = " NSMaxSize " > { 10000000000000 , 10000000000000 } < / string > <nl> - < bool key = " NSWindowIsRestorable " > NO < / bool > <nl> - < / object > <nl> - < / array > <nl> - < object class = " IBObjectContainer " key = " IBDocument . Objects " > <nl> - < bool key = " usesAutoincrementingIDs " > NO < / bool > <nl> - < array class = " NSMutableArray " key = " connectionRecords " > <nl> - < object class = " IBConnectionRecord " > <nl> - < object class = " IBOutletConnection " key = " connection " > <nl> - < string key = " label " > textFieldProjectDirectory < / string > <nl> - < reference key = " source " ref = " 544304869 " / > <nl> - < reference key = " destination " ref = " 664907665 " / > <nl> - < / object > <nl> - < string key = " id " > 307 < / string > <nl> - < / object > <nl> - < object class = " IBConnectionRecord " > <nl> - < object class = " IBOutletConnection " key = " connection " > <nl> - < string key = " label " > window < / string > <nl> - < reference key = " source " ref = " 544304869 " / > <nl> - < reference key = " destination " ref = " 417919685 " / > <nl> - < / object > <nl> - < string key = " id " > 308 < / string > <nl> - < / object > <nl> - < object class = " IBConnectionRecord " > <nl> - < object class = " IBActionConnection " key = " connection " > <nl> - < string key = " label " > browseProjectDirectory : < / string > <nl> - < reference key = " source " ref = " 544304869 " / > <nl> - < reference key = " destination " ref = " 139131928 " / > <nl> - < / object > <nl> - < string key = " id " > 315 < / string > <nl> - < / object > <nl> - < object class = " IBConnectionRecord " > <nl> - < object class = " IBActionConnection " key = " connection " > <nl> - < string key = " label " > onOpenProject : < / string > <nl> - < reference key = " source " ref = " 544304869 " / > <nl> - < reference key = " destination " ref = " 610415164 " / > <nl> - < / object > <nl> - < string key = " id " > OsS - 1W - RIl < / string > <nl> - < / object > <nl> - < object class = " IBConnectionRecord " > <nl> - < object class = " IBActionConnection " key = " connection " > <nl> - < string key = " label " > onCancel : < / string > <nl> - < reference key = " source " ref = " 544304869 " / > <nl> - < reference key = " destination " ref = " 183844150 " / > <nl> - < / object > <nl> - < string key = " id " > NeH - n8 - xBM < / string > <nl> - < / object > <nl> - < / array > <nl> - < object class = " IBMutableOrderedSet " key = " objectRecords " > <nl> - < array key = " orderedObjects " > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > 0 < / string > <nl> - < array key = " object " id = " 0 " / > <nl> - < reference key = " children " ref = " 172117012 " / > <nl> - < nil key = " parent " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > - 2 < / string > <nl> - < reference key = " object " ref = " 544304869 " / > <nl> - < reference key = " parent " ref = " 0 " / > <nl> - < string key = " objectName " > File ' s Owner < / string > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > - 1 < / string > <nl> - < reference key = " object " ref = " 678778463 " / > <nl> - < reference key = " parent " ref = " 0 " / > <nl> - < string key = " objectName " > First Responder < / string > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > - 3 < / string > <nl> - < reference key = " object " ref = " 805545953 " / > <nl> - < reference key = " parent " ref = " 0 " / > <nl> - < string key = " objectName " > Application < / string > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > 1 < / string > <nl> - < reference key = " object " ref = " 417919685 " / > <nl> - < array class = " NSMutableArray " key = " children " > <nl> - < reference ref = " 773221745 " / > <nl> - < / array > <nl> - < reference key = " parent " ref = " 0 " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > 2 < / string > <nl> - < reference key = " object " ref = " 773221745 " / > <nl> - < array class = " NSMutableArray " key = " children " > <nl> - < reference ref = " 626749776 " / > <nl> - < reference ref = " 664907665 " / > <nl> - < reference ref = " 139131928 " / > <nl> - < reference ref = " 610415164 " / > <nl> - < reference ref = " 183844150 " / > <nl> - < object class = " IBNSLayoutConstraint " id = " 512692197 " > <nl> - < reference key = " firstItem " ref = " 610415164 " / > <nl> - < int key = " firstAttribute " > 9 < / int > <nl> - < int key = " relation " > 0 < / int > <nl> - < reference key = " secondItem " ref = " 139131928 " / > <nl> - < int key = " secondAttribute " > 9 < / int > <nl> - < float key = " multiplier " > 1 < / float > <nl> - < string key = " multiplierString " > 1 < / string > <nl> - < object class = " IBLayoutConstant " key = " constant " > <nl> - < double key = " value " > 0 . 0 < / double > <nl> - < / object > <nl> - < float key = " priority " > 1000 < / float > <nl> - < reference key = " containingView " ref = " 773221745 " / > <nl> - < int key = " scoringType " > 6 < / int > <nl> - < float key = " scoringTypeFloat " > 24 < / float > <nl> - < int key = " contentType " > 2 < / int > <nl> - < bool key = " placeholder " > NO < / bool > <nl> - < / object > <nl> - < object class = " IBNSLayoutConstraint " id = " 243708327 " > <nl> - < reference key = " firstItem " ref = " 773221745 " / > <nl> - < int key = " firstAttribute " > 4 < / int > <nl> - < int key = " relation " > 0 < / int > <nl> - < reference key = " secondItem " ref = " 610415164 " / > <nl> - < int key = " secondAttribute " > 4 < / int > <nl> - < float key = " multiplier " > 1 < / float > <nl> - < string key = " multiplierString " > 1 < / string > <nl> - < object class = " IBLayoutConstant " key = " constant " > <nl> - < double key = " value " > 29 < / double > <nl> - < / object > <nl> - < float key = " priority " > 1000 < / float > <nl> - < reference key = " containingView " ref = " 773221745 " / > <nl> - < int key = " scoringType " > 3 < / int > <nl> - < float key = " scoringTypeFloat " > 9 < / float > <nl> - < int key = " contentType " > 3 < / int > <nl> - < bool key = " placeholder " > NO < / bool > <nl> - < / object > <nl> - < object class = " IBNSLayoutConstraint " id = " 412902897 " > <nl> - < reference key = " firstItem " ref = " 610415164 " / > <nl> - < int key = " firstAttribute " > 6 < / int > <nl> - < int key = " relation " > 0 < / int > <nl> - < reference key = " secondItem " ref = " 626749776 " / > <nl> - < int key = " secondAttribute " > 6 < / int > <nl> - < float key = " multiplier " > 1 < / float > <nl> - < string key = " multiplierString " > 1 < / string > <nl> - < object class = " IBLayoutConstant " key = " constant " > <nl> - < double key = " value " > 0 . 0 < / double > <nl> - < / object > <nl> - < float key = " priority " > 1000 < / float > <nl> - < reference key = " containingView " ref = " 773221745 " / > <nl> - < int key = " scoringType " > 6 < / int > <nl> - < float key = " scoringTypeFloat " > 24 < / float > <nl> - < int key = " contentType " > 2 < / int > <nl> - < bool key = " placeholder " > NO < / bool > <nl> - < / object > <nl> - < object class = " IBNSLayoutConstraint " id = " 822012404 " > <nl> - < reference key = " firstItem " ref = " 139131928 " / > <nl> - < int key = " firstAttribute " > 3 < / int > <nl> - < int key = " relation " > 0 < / int > <nl> - < reference key = " secondItem " ref = " 626749776 " / > <nl> - < int key = " secondAttribute " > 4 < / int > <nl> - < float key = " multiplier " > 1 < / float > <nl> - < string key = " multiplierString " > 1 < / string > <nl> - < object class = " IBNSLayoutSymbolicConstant " key = " constant " > <nl> - < double key = " value " > 8 < / double > <nl> - < / object > <nl> - < float key = " priority " > 1000 < / float > <nl> - < reference key = " containingView " ref = " 773221745 " / > <nl> - < int key = " scoringType " > 6 < / int > <nl> - < float key = " scoringTypeFloat " > 24 < / float > <nl> - < int key = " contentType " > 3 < / int > <nl> - < bool key = " placeholder " > NO < / bool > <nl> - < / object > <nl> - < object class = " IBNSLayoutConstraint " id = " 962361603 " > <nl> - < reference key = " firstItem " ref = " 139131928 " / > <nl> - < int key = " firstAttribute " > 5 < / int > <nl> - < int key = " relation " > 0 < / int > <nl> - < reference key = " secondItem " ref = " 610415164 " / > <nl> - < int key = " secondAttribute " > 5 < / int > <nl> - < float key = " multiplier " > 1 < / float > <nl> - < string key = " multiplierString " > 1 < / string > <nl> - < object class = " IBLayoutConstant " key = " constant " > <nl> - < double key = " value " > 0 . 0 < / double > <nl> - < / object > <nl> - < float key = " priority " > 1000 < / float > <nl> - < reference key = " containingView " ref = " 773221745 " / > <nl> - < int key = " scoringType " > 6 < / int > <nl> - < float key = " scoringTypeFloat " > 24 < / float > <nl> - < int key = " contentType " > 2 < / int > <nl> - < bool key = " placeholder " > NO < / bool > <nl> - < / object > <nl> - < object class = " IBNSLayoutConstraint " id = " 955240815 " > <nl> - < reference key = " firstItem " ref = " 139131928 " / > <nl> - < int key = " firstAttribute " > 5 < / int > <nl> - < int key = " relation " > 0 < / int > <nl> - < reference key = " secondItem " ref = " 664907665 " / > <nl> - < int key = " secondAttribute " > 6 < / int > <nl> - < float key = " multiplier " > 1 < / float > <nl> - < string key = " multiplierString " > 1 < / string > <nl> - < object class = " IBNSLayoutSymbolicConstant " key = " constant " > <nl> - < double key = " value " > 8 < / double > <nl> - < / object > <nl> - < float key = " priority " > 1000 < / float > <nl> - < reference key = " containingView " ref = " 773221745 " / > <nl> - < int key = " scoringType " > 6 < / int > <nl> - < float key = " scoringTypeFloat " > 24 < / float > <nl> - < int key = " contentType " > 3 < / int > <nl> - < bool key = " placeholder " > NO < / bool > <nl> - < / object > <nl> - < object class = " IBNSLayoutConstraint " id = " 898762975 " > <nl> - < reference key = " firstItem " ref = " 773221745 " / > <nl> - < int key = " firstAttribute " > 4 < / int > <nl> - < int key = " relation " > 0 < / int > <nl> - < reference key = " secondItem " ref = " 183844150 " / > <nl> - < int key = " secondAttribute " > 4 < / int > <nl> - < float key = " multiplier " > 1 < / float > <nl> - < string key = " multiplierString " > 1 < / string > <nl> - < object class = " IBLayoutConstant " key = " constant " > <nl> - < double key = " value " > 39 < / double > <nl> - < / object > <nl> - < float key = " priority " > 1000 < / float > <nl> - < reference key = " containingView " ref = " 773221745 " / > <nl> - < int key = " scoringType " > 3 < / int > <nl> - < float key = " scoringTypeFloat " > 9 < / float > <nl> - < int key = " contentType " > 3 < / int > <nl> - < bool key = " placeholder " > NO < / bool > <nl> - < / object > <nl> - < object class = " IBNSLayoutConstraint " id = " 870995293 " > <nl> - < reference key = " firstItem " ref = " 664907665 " / > <nl> - < int key = " firstAttribute " > 5 < / int > <nl> - < int key = " relation " > 0 < / int > <nl> - < reference key = " secondItem " ref = " 773221745 " / > <nl> - < int key = " secondAttribute " > 5 < / int > <nl> - < float key = " multiplier " > 1 < / float > <nl> - < string key = " multiplierString " > 1 < / string > <nl> - < object class = " IBNSLayoutSymbolicConstant " key = " constant " > <nl> - < double key = " value " > 20 < / double > <nl> - < / object > <nl> - < float key = " priority " > 1000 < / float > <nl> - < reference key = " containingView " ref = " 773221745 " / > <nl> - < int key = " scoringType " > 8 < / int > <nl> - < float key = " scoringTypeFloat " > 23 < / float > <nl> - < int key = " contentType " > 3 < / int > <nl> - < bool key = " placeholder " > NO < / bool > <nl> - < / object > <nl> - < object class = " IBNSLayoutConstraint " id = " 529242108 " > <nl> - < reference key = " firstItem " ref = " 664907665 " / > <nl> - < int key = " firstAttribute " > 3 < / int > <nl> - < int key = " relation " > 0 < / int > <nl> - < reference key = " secondItem " ref = " 626749776 " / > <nl> - < int key = " secondAttribute " > 4 < / int > <nl> - < float key = " multiplier " > 1 < / float > <nl> - < string key = " multiplierString " > 1 < / string > <nl> - < object class = " IBNSLayoutSymbolicConstant " key = " constant " > <nl> - < double key = " value " > 8 < / double > <nl> - < / object > <nl> - < float key = " priority " > 1000 < / float > <nl> - < reference key = " containingView " ref = " 773221745 " / > <nl> - < int key = " scoringType " > 6 < / int > <nl> - < float key = " scoringTypeFloat " > 24 < / float > <nl> - < int key = " contentType " > 3 < / int > <nl> - < bool key = " placeholder " > NO < / bool > <nl> - < / object > <nl> - < object class = " IBNSLayoutConstraint " id = " 780789773 " > <nl> - < reference key = " firstItem " ref = " 626749776 " / > <nl> - < int key = " firstAttribute " > 5 < / int > <nl> - < int key = " relation " > 0 < / int > <nl> - < reference key = " secondItem " ref = " 183844150 " / > <nl> - < int key = " secondAttribute " > 5 < / int > <nl> - < float key = " multiplier " > 1 < / float > <nl> - < string key = " multiplierString " > 1 < / string > <nl> - < object class = " IBLayoutConstant " key = " constant " > <nl> - < double key = " value " > 0 . 0 < / double > <nl> - < / object > <nl> - < float key = " priority " > 1000 < / float > <nl> - < reference key = " containingView " ref = " 773221745 " / > <nl> - < int key = " scoringType " > 6 < / int > <nl> - < float key = " scoringTypeFloat " > 24 < / float > <nl> - < int key = " contentType " > 2 < / int > <nl> - < bool key = " placeholder " > NO < / bool > <nl> - < / object > <nl> - < object class = " IBNSLayoutConstraint " id = " 544230405 " > <nl> - < reference key = " firstItem " ref = " 626749776 " / > <nl> - < int key = " firstAttribute " > 3 < / int > <nl> - < int key = " relation " > 0 < / int > <nl> - < reference key = " secondItem " ref = " 773221745 " / > <nl> - < int key = " secondAttribute " > 3 < / int > <nl> - < float key = " multiplier " > 1 < / float > <nl> - < string key = " multiplierString " > 1 < / string > <nl> - < object class = " IBNSLayoutSymbolicConstant " key = " constant " > <nl> - < double key = " value " > 20 < / double > <nl> - < / object > <nl> - < float key = " priority " > 1000 < / float > <nl> - < reference key = " containingView " ref = " 773221745 " / > <nl> - < int key = " scoringType " > 8 < / int > <nl> - < float key = " scoringTypeFloat " > 23 < / float > <nl> - < int key = " contentType " > 3 < / int > <nl> - < bool key = " placeholder " > NO < / bool > <nl> - < / object > <nl> - < / array > <nl> - < reference key = " parent " ref = " 417919685 " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > 3 < / string > <nl> - < reference key = " object " ref = " 626749776 " / > <nl> - < array class = " NSMutableArray " key = " children " > <nl> - < reference ref = " 419795268 " / > <nl> - < object class = " IBNSLayoutConstraint " id = " 301435117 " > <nl> - < reference key = " firstItem " ref = " 626749776 " / > <nl> - < int key = " firstAttribute " > 7 < / int > <nl> - < int key = " relation " > 0 < / int > <nl> - < nil key = " secondItem " / > <nl> - < int key = " secondAttribute " > 0 < / int > <nl> - < float key = " multiplier " > 1 < / float > <nl> - < string key = " multiplierString " > 1 < / string > <nl> - < object class = " IBLayoutConstant " key = " constant " > <nl> - < double key = " value " > 622 < / double > <nl> - < / object > <nl> - < float key = " priority " > 1000 < / float > <nl> - < reference key = " containingView " ref = " 626749776 " / > <nl> - < int key = " scoringType " > 3 < / int > <nl> - < float key = " scoringTypeFloat " > 9 < / float > <nl> - < int key = " contentType " > 1 < / int > <nl> - < bool key = " placeholder " > NO < / bool > <nl> - < / object > <nl> - < / array > <nl> - < reference key = " parent " ref = " 773221745 " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > 4 < / string > <nl> - < reference key = " object " ref = " 419795268 " / > <nl> - < reference key = " parent " ref = " 626749776 " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > 9 < / string > <nl> - < reference key = " object " ref = " 664907665 " / > <nl> - < array class = " NSMutableArray " key = " children " > <nl> - < reference ref = " 582949244 " / > <nl> - < object class = " IBNSLayoutConstraint " id = " 134641759 " > <nl> - < reference key = " firstItem " ref = " 664907665 " / > <nl> - < int key = " firstAttribute " > 7 < / int > <nl> - < int key = " relation " > 0 < / int > <nl> - < nil key = " secondItem " / > <nl> - < int key = " secondAttribute " > 0 < / int > <nl> - < float key = " multiplier " > 1 < / float > <nl> - < string key = " multiplierString " > 1 < / string > <nl> - < object class = " IBLayoutConstant " key = " constant " > <nl> - < double key = " value " > 516 < / double > <nl> - < / object > <nl> - < float key = " priority " > 1000 < / float > <nl> - < reference key = " containingView " ref = " 664907665 " / > <nl> - < int key = " scoringType " > 3 < / int > <nl> - < float key = " scoringTypeFloat " > 9 < / float > <nl> - < int key = " contentType " > 1 < / int > <nl> - < bool key = " placeholder " > NO < / bool > <nl> - < / object > <nl> - < / array > <nl> - < reference key = " parent " ref = " 773221745 " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > 10 < / string > <nl> - < reference key = " object " ref = " 582949244 " / > <nl> - < reference key = " parent " ref = " 664907665 " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > 15 < / string > <nl> - < reference key = " object " ref = " 139131928 " / > <nl> - < array class = " NSMutableArray " key = " children " > <nl> - < reference ref = " 570067231 " / > <nl> - < object class = " IBNSLayoutConstraint " id = " 65698150 " > <nl> - < reference key = " firstItem " ref = " 139131928 " / > <nl> - < int key = " firstAttribute " > 7 < / int > <nl> - < int key = " relation " > 0 < / int > <nl> - < nil key = " secondItem " / > <nl> - < int key = " secondAttribute " > 0 < / int > <nl> - < float key = " multiplier " > 1 < / float > <nl> - < string key = " multiplierString " > 1 < / string > <nl> - < object class = " IBLayoutConstant " key = " constant " > <nl> - < double key = " value " > 96 < / double > <nl> - < / object > <nl> - < float key = " priority " > 1000 < / float > <nl> - < reference key = " containingView " ref = " 139131928 " / > <nl> - < int key = " scoringType " > 3 < / int > <nl> - < float key = " scoringTypeFloat " > 9 < / float > <nl> - < int key = " contentType " > 1 < / int > <nl> - < bool key = " placeholder " > NO < / bool > <nl> - < / object > <nl> - < / array > <nl> - < reference key = " parent " ref = " 773221745 " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > 16 < / string > <nl> - < reference key = " object " ref = " 570067231 " / > <nl> - < reference key = " parent " ref = " 139131928 " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > 290 < / string > <nl> - < reference key = " object " ref = " 610415164 " / > <nl> - < array class = " NSMutableArray " key = " children " > <nl> - < reference ref = " 266810869 " / > <nl> - < / array > <nl> - < reference key = " parent " ref = " 773221745 " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > 291 < / string > <nl> - < reference key = " object " ref = " 266810869 " / > <nl> - < reference key = " parent " ref = " 610415164 " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > h9P - cE - Nn4 < / string > <nl> - < reference key = " object " ref = " 183844150 " / > <nl> - < array class = " NSMutableArray " key = " children " > <nl> - < reference ref = " 721886683 " / > <nl> - < / array > <nl> - < reference key = " parent " ref = " 773221745 " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > IHP - 6G - mVo < / string > <nl> - < reference key = " object " ref = " 721886683 " / > <nl> - < reference key = " parent " ref = " 183844150 " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > iMi - xo - eWy < / string > <nl> - < reference key = " object " ref = " 134641759 " / > <nl> - < reference key = " parent " ref = " 664907665 " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > YJ1 - Hw - Y6d < / string > <nl> - < reference key = " object " ref = " 301435117 " / > <nl> - < reference key = " parent " ref = " 626749776 " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > PG0 - hY - geV < / string > <nl> - < reference key = " object " ref = " 870995293 " / > <nl> - < reference key = " parent " ref = " 773221745 " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > i6K - RE - 2fe < / string > <nl> - < reference key = " object " ref = " 898762975 " / > <nl> - < reference key = " parent " ref = " 773221745 " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > gk1 - TV - YZn < / string > <nl> - < reference key = " object " ref = " 780789773 " / > <nl> - < reference key = " parent " ref = " 773221745 " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > pS2 - KY - JwZ < / string > <nl> - < reference key = " object " ref = " 962361603 " / > <nl> - < reference key = " parent " ref = " 773221745 " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > H3W - Ag - EM4 < / string > <nl> - < reference key = " object " ref = " 412902897 " / > <nl> - < reference key = " parent " ref = " 773221745 " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > uNq - ax - eLX < / string > <nl> - < reference key = " object " ref = " 822012404 " / > <nl> - < reference key = " parent " ref = " 773221745 " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > G4a - SP - Ne5 < / string > <nl> - < reference key = " object " ref = " 544230405 " / > <nl> - < reference key = " parent " ref = " 773221745 " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > V9F - 80 - 0WS < / string > <nl> - < reference key = " object " ref = " 955240815 " / > <nl> - < reference key = " parent " ref = " 773221745 " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > jJo - kq - 191 < / string > <nl> - < reference key = " object " ref = " 512692197 " / > <nl> - < reference key = " parent " ref = " 773221745 " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > LdE - 9Z - oWz < / string > <nl> - < reference key = " object " ref = " 243708327 " / > <nl> - < reference key = " parent " ref = " 773221745 " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > 88D - 6W - iEt < / string > <nl> - < reference key = " object " ref = " 529242108 " / > <nl> - < reference key = " parent " ref = " 773221745 " / > <nl> - < / object > <nl> - < object class = " IBObjectRecord " > <nl> - < string key = " id " > DKd - WY - ZYy < / string > <nl> - < reference key = " object " ref = " 65698150 " / > <nl> - < reference key = " parent " ref = " 139131928 " / > <nl> - < / object > <nl> - < / array > <nl> - < / object > <nl> - < dictionary class = " NSMutableDictionary " key = " flattenedProperties " > <nl> - < string key = " - 1 . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < boolean value = " NO " key = " - 1 . showNotes " / > <nl> - < string key = " - 2 . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < boolean value = " NO " key = " - 2 . showNotes " / > <nl> - < string key = " - 3 . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < boolean value = " NO " key = " - 3 . showNotes " / > <nl> - < boolean value = " NO " key = " 1 . IBNSWindowAutoPositionCentersHorizontal " / > <nl> - < boolean value = " NO " key = " 1 . IBNSWindowAutoPositionCentersVertical " / > <nl> - < string key = " 1 . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < boolean value = " NO " key = " 1 . showNotes " / > <nl> - < string key = " 10 . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < boolean value = " NO " key = " 10 . showNotes " / > <nl> - < boolean value = " NO " key = " 15 . IBNSControlSetsMaxLayoutWidthAtFirstLayoutMetadataKey " / > <nl> - < array key = " 15 . IBNSViewMetadataConstraints " > <nl> - < reference ref = " 65698150 " / > <nl> - < / array > <nl> - < boolean value = " NO " key = " 15 . IBNSViewMetadataTranslatesAutoresizingMaskIntoConstraints " / > <nl> - < string key = " 15 . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < reference key = " 15 . IBUserGuides " ref = " 0 " / > <nl> - < boolean value = " NO " key = " 15 . showNotes " / > <nl> - < string key = " 16 . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < boolean value = " NO " key = " 16 . showNotes " / > <nl> - < array key = " 2 . IBNSViewMetadataConstraints " > <nl> - < reference ref = " 544230405 " / > <nl> - < reference ref = " 780789773 " / > <nl> - < reference ref = " 529242108 " / > <nl> - < reference ref = " 870995293 " / > <nl> - < reference ref = " 898762975 " / > <nl> - < reference ref = " 955240815 " / > <nl> - < reference ref = " 962361603 " / > <nl> - < reference ref = " 822012404 " / > <nl> - < reference ref = " 412902897 " / > <nl> - < reference ref = " 243708327 " / > <nl> - < reference ref = " 512692197 " / > <nl> - < / array > <nl> - < string key = " 2 . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < reference key = " 2 . IBUserGuides " ref = " 0 " / > <nl> - < boolean value = " NO " key = " 2 . showNotes " / > <nl> - < boolean value = " NO " key = " 290 . IBNSControlSetsMaxLayoutWidthAtFirstLayoutMetadataKey " / > <nl> - < boolean value = " NO " key = " 290 . IBNSViewMetadataTranslatesAutoresizingMaskIntoConstraints " / > <nl> - < string key = " 290 . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < reference key = " 290 . IBUserGuides " ref = " 0 " / > <nl> - < boolean value = " NO " key = " 290 . showNotes " / > <nl> - < string key = " 291 . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < boolean value = " NO " key = " 291 . showNotes " / > <nl> - < boolean value = " NO " key = " 3 . IBNSControlSetsMaxLayoutWidthAtFirstLayoutMetadataKey " / > <nl> - < array key = " 3 . IBNSViewMetadataConstraints " > <nl> - < reference ref = " 301435117 " / > <nl> - < / array > <nl> - < boolean value = " NO " key = " 3 . IBNSViewMetadataTranslatesAutoresizingMaskIntoConstraints " / > <nl> - < string key = " 3 . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < reference key = " 3 . IBUserGuides " ref = " 0 " / > <nl> - < boolean value = " NO " key = " 3 . showNotes " / > <nl> - < string key = " 4 . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < boolean value = " NO " key = " 4 . showNotes " / > <nl> - < string key = " 88D - 6W - iEt . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < boolean value = " NO " key = " 9 . IBNSControlSetsMaxLayoutWidthAtFirstLayoutMetadataKey " / > <nl> - < array key = " 9 . IBNSViewMetadataConstraints " > <nl> - < reference ref = " 134641759 " / > <nl> - < / array > <nl> - < boolean value = " NO " key = " 9 . IBNSViewMetadataTranslatesAutoresizingMaskIntoConstraints " / > <nl> - < string key = " 9 . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < reference key = " 9 . IBUserGuides " ref = " 0 " / > <nl> - < boolean value = " NO " key = " 9 . showNotes " / > <nl> - < string key = " DKd - WY - ZYy . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < string key = " G4a - SP - Ne5 . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < string key = " H3W - Ag - EM4 . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < string key = " IHP - 6G - mVo . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < boolean value = " NO " key = " IHP - 6G - mVo . showNotes " / > <nl> - < string key = " LdE - 9Z - oWz . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < string key = " PG0 - hY - geV . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < string key = " V9F - 80 - 0WS . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < string key = " YJ1 - Hw - Y6d . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < string key = " gk1 - TV - YZn . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < boolean value = " NO " key = " h9P - cE - Nn4 . IBNSControlSetsMaxLayoutWidthAtFirstLayoutMetadataKey " / > <nl> - < boolean value = " NO " key = " h9P - cE - Nn4 . IBNSViewMetadataTranslatesAutoresizingMaskIntoConstraints " / > <nl> - < string key = " h9P - cE - Nn4 . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < reference key = " h9P - cE - Nn4 . IBUserGuides " ref = " 0 " / > <nl> - < boolean value = " NO " key = " h9P - cE - Nn4 . showNotes " / > <nl> - < string key = " i6K - RE - 2fe . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < string key = " iMi - xo - eWy . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < string key = " jJo - kq - 191 . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < string key = " pS2 - KY - JwZ . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < string key = " uNq - ax - eLX . IBPluginDependency " > com . apple . InterfaceBuilder . CocoaPlugin < / string > <nl> - < / dictionary > <nl> - < dictionary class = " NSMutableDictionary " key = " unlocalizedProperties " / > <nl> - < nil key = " activeLocalization " / > <nl> - < dictionary class = " NSMutableDictionary " key = " localizations " / > <nl> - < nil key = " sourceID " / > <nl> - < / object > <nl> - < object class = " IBClassDescriber " key = " IBDocument . Classes " > <nl> - < array class = " NSMutableArray " key = " referencedPartialClassDescriptions " > <nl> - < object class = " IBPartialClassDescription " > <nl> - < string key = " className " > WorkSpaceDialogController < / string > <nl> - < string key = " superclassName " > NSWindowController < / string > <nl> - < dictionary class = " NSMutableDictionary " key = " actions " > <nl> - < string key = " browseProjectDirectory : " > id < / string > <nl> - < string key = " onCancel : " > id < / string > <nl> - < string key = " onOpenProject : " > id < / string > <nl> - < / dictionary > <nl> - < dictionary class = " NSMutableDictionary " key = " actionInfosByName " > <nl> - < object class = " IBActionInfo " key = " browseProjectDirectory : " > <nl> - < string key = " name " > browseProjectDirectory : < / string > <nl> - < string key = " candidateClassName " > id < / string > <nl> - < / object > <nl> - < object class = " IBActionInfo " key = " onCancel : " > <nl> - < string key = " name " > onCancel : < / string > <nl> - < string key = " candidateClassName " > id < / string > <nl> - < / object > <nl> - < object class = " IBActionInfo " key = " onOpenProject : " > <nl> - < string key = " name " > onOpenProject : < / string > <nl> - < string key = " candidateClassName " > id < / string > <nl> - < / object > <nl> - < / dictionary > <nl> - < dictionary class = " NSMutableDictionary " key = " outlets " > <nl> - < string key = " buttonOpenProject " > NSButton < / string > <nl> - < string key = " textFieldProjectDirectory " > NSTextField < / string > <nl> - < string key = " textFieldScriptFile " > NSTextField < / string > <nl> - < / dictionary > <nl> - < dictionary class = " NSMutableDictionary " key = " toOneOutletInfosByName " > <nl> - < object class = " IBToOneOutletInfo " key = " buttonOpenProject " > <nl> - < string key = " name " > buttonOpenProject < / string > <nl> - < string key = " candidateClassName " > NSButton < / string > <nl> - < / object > <nl> - < object class = " IBToOneOutletInfo " key = " textFieldProjectDirectory " > <nl> - < string key = " name " > textFieldProjectDirectory < / string > <nl> - < string key = " candidateClassName " > NSTextField < / string > <nl> - < / object > <nl> - < object class = " IBToOneOutletInfo " key = " textFieldScriptFile " > <nl> - < string key = " name " > textFieldScriptFile < / string > <nl> - < string key = " candidateClassName " > NSTextField < / string > <nl> - < / object > <nl> - < / dictionary > <nl> - < object class = " IBClassDescriptionSource " key = " sourceIdentifier " > <nl> - < string key = " majorKey " > IBProjectSource < / string > <nl> - < string key = " minorKey " > . / Classes / WorkSpaceDialogController . h < / string > <nl> - < / object > <nl> - < / object > <nl> - < / array > <nl> - < / object > <nl> - < int key = " IBDocument . localizationMode " > 0 < / int > <nl> - < string key = " IBDocument . TargetRuntimeIdentifier " > IBCocoaFramework < / string > <nl> - < bool key = " IBDocument . previouslyAttemptedUpgradeToXcode5 " > YES < / bool > <nl> - < object class = " NSMutableDictionary " key = " IBDocument . PluginDeclaredDependencyDefaults " > <nl> - < string key = " NS . key . 0 " > com . apple . InterfaceBuilder . CocoaPlugin . macosx < / string > <nl> - < real value = " 1070 " key = " NS . object . 0 " / > <nl> - < / object > <nl> - < object class = " NSMutableDictionary " key = " IBDocument . PluginDeclaredDevelopmentDependencies " > <nl> - < string key = " NS . key . 0 " > com . apple . InterfaceBuilder . CocoaPlugin . InterfaceBuilder3 < / string > <nl> - < integer value = " 4600 " key = " NS . object . 0 " / > <nl> - < / object > <nl> - < bool key = " IBDocument . PluginDeclaredDependenciesTrackSystemTargetVersion " > YES < / bool > <nl> - < int key = " IBDocument . defaultPropertyAccessControl " > 3 < / int > <nl> - < bool key = " IBDocument . UseAutolayout " > YES < / bool > <nl> - < / data > <nl> - < / archive > <nl> deleted file mode 100644 <nl> index 2b9cddbd158e . . 000000000000 <nl> mmm a / templates / lua - template - runtime / frameworks / runtime - src / proj . ios_mac / mac / WorkSpaceDialogController . h <nl> ppp / dev / null <nl> <nl> - <nl> - # import < Cocoa / Cocoa . h > <nl> - <nl> - @ interface WorkSpaceDialogController : NSWindowController <nl> - { <nl> - <nl> - NSTextField * textFieldProjectDirectory ; <nl> - NSTextField * textFieldScriptFile ; <nl> - NSButton * buttonOpenProject ; <nl> - } <nl> - <nl> - @ property ( nonatomic , assign ) IBOutlet NSTextField * textFieldProjectDirectory ; <nl> - @ property ( nonatomic , assign ) IBOutlet NSTextField * textFieldScriptFile ; <nl> - <nl> - @ property ( nonatomic , assign ) IBOutlet NSButton * buttonOpenProject ; <nl> - <nl> - - ( IBAction ) browseProjectDirectory : ( id ) sender ; <nl> - <nl> - - ( IBAction ) onCancel : ( id ) sender ; <nl> - - ( IBAction ) onOpenProject : ( id ) sender ; <nl> - <nl> - @ end <nl> deleted file mode 100644 <nl> index 223803e55ef7 . . 000000000000 <nl> mmm a / templates / lua - template - runtime / frameworks / runtime - src / proj . ios_mac / mac / WorkSpaceDialogController . mm <nl> ppp / dev / null <nl> <nl> - <nl> - # import " WorkSpaceDialogController . h " <nl> - <nl> - # pragma mark - <nl> - <nl> - @ implementation WorkSpaceDialogController <nl> - <nl> - @ synthesize textFieldProjectDirectory ; <nl> - @ synthesize textFieldScriptFile ; <nl> - @ synthesize buttonOpenProject ; <nl> - <nl> - NSString * projectPath = nil ; <nl> - - ( id ) initWithWindow : ( NSWindow * ) window <nl> - { <nl> - self = [ super initWithWindow : window ] ; <nl> - if ( self ) { <nl> - / / Initialization code here . <nl> - } <nl> - <nl> - return self ; <nl> - } <nl> - <nl> - - ( void ) dealloc <nl> - { <nl> - [ super dealloc ] ; <nl> - NSLog ( @ " [ WorkSpaceDialogController dealloc ] " ) ; <nl> - } <nl> - <nl> - - ( void ) windowDidLoad <nl> - { <nl> - [ super windowDidLoad ] ; <nl> - <nl> - / / Implement this method to handle any initialization after your window controller ' s window has been loaded from its nib file . <nl> - [ self . window makeFirstResponder : textFieldProjectDirectory ] ; <nl> - if ( nil ! = projectPath & & 0 ! = projectPath . length ) <nl> - { <nl> - [ textFieldProjectDirectory setStringValue : projectPath ] ; <nl> - } <nl> - } <nl> - <nl> - # pragma mark - <nl> - # pragma mark functions <nl> - <nl> - - ( NSString * ) browseFolder : ( NSString * ) title <nl> - { <nl> - NSOpenPanel * openDlg = [ NSOpenPanel openPanel ] ; <nl> - [ openDlg setTitle : title ] ; <nl> - [ openDlg setCanChooseDirectories : YES ] ; <nl> - [ openDlg setCanChooseFiles : NO ] ; <nl> - [ openDlg setCanHide : YES ] ; <nl> - [ openDlg setCanCreateDirectories : NO ] ; <nl> - [ openDlg setCanSelectHiddenExtension : NO ] ; <nl> - [ openDlg setAllowsMultipleSelection : NO ] ; <nl> - <nl> - if ( [ openDlg runModal ] = = NSFileHandlingPanelOKButton ) <nl> - { <nl> - NSURL * url = [ openDlg . URLs objectAtIndex : 0 ] ; <nl> - return [ url path ] ; <nl> - } <nl> - return nil ; <nl> - } <nl> - <nl> - # pragma mark - <nl> - # pragma mark outlet <nl> - <nl> - - ( IBAction ) browseProjectDirectory : ( id ) sender <nl> - { <nl> - NSString * path = [ self browseFolder : @ " Choose Project Directory " ] ; <nl> - if ( path ) <nl> - { <nl> - [ textFieldProjectDirectory setStringValue : path ] ; <nl> - } <nl> - } <nl> - <nl> - <nl> - - ( IBAction ) onCancel : ( id ) sender <nl> - { <nl> - [ self close ] ; <nl> - [ NSApp endSheet : self . window returnCode : NSRunAbortedResponse ] ; <nl> - } <nl> - <nl> - - ( IBAction ) onOpenProject : ( id ) sender <nl> - { <nl> - if ( [ [ textFieldProjectDirectory stringValue ] isEqualToString : @ " " ] ) <nl> - { <nl> - NSRunAlertPanel ( @ " Waring " , <nl> - @ " Project path empty ! " , <nl> - @ " OK " , NULL , NULL ) ; <nl> - return ; <nl> - } <nl> - projectPath = [ textFieldProjectDirectory stringValue ] ; <nl> - [ self close ] ; <nl> - [ NSApp endSheet : self . window returnCode : NSRunAbortedResponse ] ; <nl> - } <nl> - <nl> - <nl> - @ end <nl>
remove change project fecture
cocos2d/cocos2d-x
a4c4c14c3cd5a9285a381c7d533f39224653c6f5
2014-07-15T02:31:32Z
mmm a / modules / core / include / opencv2 / core / cuda_devptrs . hpp <nl> ppp b / modules / core / include / opencv2 / core / cuda_devptrs . hpp <nl> namespace cv <nl> / / # undef __CV_GPU_DEPR_BEFORE__ <nl> / / # undef __CV_GPU_DEPR_AFTER__ <nl> <nl> + namespace device <nl> + { <nl> + using cv : : gpu : : PtrSz ; <nl> + using cv : : gpu : : PtrStep ; <nl> + using cv : : gpu : : PtrStepSz ; <nl> + <nl> + using cv : : gpu : : PtrStepSzb ; <nl> + using cv : : gpu : : PtrStepSzf ; <nl> + using cv : : gpu : : PtrStepSzi ; <nl> + <nl> + using cv : : gpu : : PtrStepb ; <nl> + using cv : : gpu : : PtrStepf ; <nl> + using cv : : gpu : : PtrStepi ; <nl> + } <nl> } <nl> } <nl> <nl> mmm a / modules / core / src / gpumat . cpp <nl> ppp b / modules / core / src / gpumat . cpp <nl> void cv : : gpu : : DeviceInfo : : queryMemory ( size_t & free_memory , size_t & total_memory ) <nl> <nl> namespace <nl> { <nl> - template < class T > void getCudaAttribute ( T * attribute , CUdevice_attribute device_attribute , int device ) <nl> - { <nl> - * attribute = T ( ) ; <nl> - / / CUresult error = CUDA_SUCCESS ; / / = cuDeviceGetAttribute ( attribute , device_attribute , device ) ; why link erros under ubuntu ? ? <nl> - CUresult error = cuDeviceGetAttribute ( attribute , device_attribute , device ) ; <nl> - if ( CUDA_SUCCESS = = error ) <nl> - return ; <nl> - <nl> - printf ( " Driver API error = % 04d \ n " , error ) ; <nl> - cv : : gpu : : error ( " driver API error " , __FILE__ , __LINE__ ) ; <nl> - } <nl> - <nl> int convertSMVer2Cores ( int major , int minor ) <nl> { <nl> / / Defines for GPU Architecture types ( using the SM version to determine the # of cores per SM <nl> namespace <nl> int Cores ; <nl> } SMtoCores ; <nl> <nl> - SMtoCores gpuArchCoresPerSM [ ] = { { 0x10 , 8 } , { 0x11 , 8 } , { 0x12 , 8 } , { 0x13 , 8 } , { 0x20 , 32 } , { 0x21 , 48 } , { 0x30 , 192 } , { - 1 , - 1 } } ; <nl> + SMtoCores gpuArchCoresPerSM [ ] = { { 0x10 , 8 } , { 0x11 , 8 } , { 0x12 , 8 } , { 0x13 , 8 } , { 0x20 , 32 } , { 0x21 , 48 } , { 0x30 , 192 } , { 0x35 , 192 } , { - 1 , - 1 } } ; <nl> <nl> int index = 0 ; <nl> while ( gpuArchCoresPerSM [ index ] . SM ! = - 1 ) <nl> namespace <nl> return gpuArchCoresPerSM [ index ] . Cores ; <nl> index + + ; <nl> } <nl> - printf ( " MapSMtoCores undefined SMversion % d . % d ! \ n " , major , minor ) ; <nl> + <nl> return - 1 ; <nl> } <nl> } <nl> void cv : : gpu : : printCudaDeviceInfo ( int device ) <nl> printf ( " CUDA Driver Version / Runtime Version % d . % d / % d . % d \ n " , driverVersion / 1000 , driverVersion % 100 , runtimeVersion / 1000 , runtimeVersion % 100 ) ; <nl> printf ( " CUDA Capability Major / Minor version number : % d . % d \ n " , prop . major , prop . minor ) ; <nl> printf ( " Total amount of global memory : % . 0f MBytes ( % llu bytes ) \ n " , ( float ) prop . totalGlobalMem / 1048576 . 0f , ( unsigned long long ) prop . totalGlobalMem ) ; <nl> - printf ( " ( % 2d ) Multiprocessors x ( % 2d ) CUDA Cores / MP : % d CUDA Cores \ n " , <nl> - prop . multiProcessorCount , convertSMVer2Cores ( prop . major , prop . minor ) , <nl> - convertSMVer2Cores ( prop . major , prop . minor ) * prop . multiProcessorCount ) ; <nl> - printf ( " GPU Clock Speed : % . 2f GHz \ n " , prop . clockRate * 1e - 6f ) ; <nl> <nl> - / / This is not available in the CUDA Runtime API , so we make the necessary calls the driver API to support this for output <nl> - int memoryClock , memBusWidth , L2CacheSize ; <nl> - getCudaAttribute < int > ( & memoryClock , CU_DEVICE_ATTRIBUTE_MEMORY_CLOCK_RATE , dev ) ; <nl> - getCudaAttribute < int > ( & memBusWidth , CU_DEVICE_ATTRIBUTE_GLOBAL_MEMORY_BUS_WIDTH , dev ) ; <nl> - getCudaAttribute < int > ( & L2CacheSize , CU_DEVICE_ATTRIBUTE_L2_CACHE_SIZE , dev ) ; <nl> + int cores = convertSMVer2Cores ( prop . major , prop . minor ) ; <nl> + if ( cores > 0 ) <nl> + printf ( " ( % 2d ) Multiprocessors x ( % 2d ) CUDA Cores / MP : % d CUDA Cores \ n " , prop . multiProcessorCount , cores , cores * prop . multiProcessorCount ) ; <nl> <nl> - printf ( " Memory Clock rate : % . 2f Mhz \ n " , memoryClock * 1e - 3f ) ; <nl> - printf ( " Memory Bus Width : % d - bit \ n " , memBusWidth ) ; <nl> - if ( L2CacheSize ) <nl> - printf ( " L2 Cache Size : % d bytes \ n " , L2CacheSize ) ; <nl> + printf ( " GPU Clock Speed : % . 2f GHz \ n " , prop . clockRate * 1e - 6f ) ; <nl> <nl> printf ( " Max Texture Dimension Size ( x , y , z ) 1D = ( % d ) , 2D = ( % d , % d ) , 3D = ( % d , % d , % d ) \ n " , <nl> prop . maxTexture1D , prop . maxTexture2D [ 0 ] , prop . maxTexture2D [ 1 ] , <nl> void cv : : gpu : : printShortCudaDeviceInfo ( int device ) <nl> <nl> const char * arch_str = prop . major < 2 ? " ( not Fermi ) " : " " ; <nl> printf ( " Device % d : \ " % s \ " % . 0fMb " , dev , prop . name , ( float ) prop . totalGlobalMem / 1048576 . 0f ) ; <nl> - printf ( " , sm_ % d % d % s , % d cores " , prop . major , prop . minor , arch_str , convertSMVer2Cores ( prop . major , prop . minor ) * prop . multiProcessorCount ) ; <nl> + printf ( " , sm_ % d % d % s " , prop . major , prop . minor , arch_str ) ; <nl> + <nl> + int cores = convertSMVer2Cores ( prop . major , prop . minor ) ; <nl> + if ( cores > 0 ) <nl> + printf ( " , % d cores " , cores * prop . multiProcessorCount ) ; <nl> + <nl> printf ( " , Driver / Runtime ver . % d . % d / % d . % d \ n " , driverVersion / 1000 , driverVersion % 100 , runtimeVersion / 1000 , runtimeVersion % 100 ) ; <nl> } <nl> fflush ( stdout ) ; <nl> mmm a / modules / gpu / CMakeLists . txt <nl> ppp b / modules / gpu / CMakeLists . txt <nl> if ( HAVE_CUDA ) <nl> set ( cuda_link_libs $ { CUDA_LIBRARIES } $ { CUDA_npp_LIBRARY } ) <nl> <nl> if ( NOT APPLE ) <nl> - unset ( CUDA_nvcuvid_LIBRARY CACHE ) <nl> find_cuda_helper_libs ( nvcuvid ) <nl> set ( cuda_link_libs $ { cuda_link_libs } $ { CUDA_nvcuvid_LIBRARY } ) <nl> endif ( ) <nl> <nl> if ( WIN32 ) <nl> - unset ( CUDA_nvcuvenc_LIBRARY CACHE ) <nl> find_cuda_helper_libs ( nvcuvenc ) <nl> set ( cuda_link_libs $ { cuda_link_libs } $ { CUDA_nvcuvenc_LIBRARY } ) <nl> endif ( ) <nl> mmm a / modules / gpu / doc / matrix_reductions . rst <nl> ppp b / modules / gpu / doc / matrix_reductions . rst <nl> Reduces a matrix to a vector . <nl> * * * CV_REDUCE_MIN * * The output is the minimum ( column / row - wise ) of all rows / columns of the matrix . <nl> <nl> : param dtype : When it is negative , the destination vector will have the same type as the source matrix . Otherwise , its type will be ` ` CV_MAKE_TYPE ( CV_MAT_DEPTH ( dtype ) , mtx . channels ( ) ) ` ` . <nl> - <nl> + <nl> The function ` ` reduce ` ` reduces the matrix to a vector by treating the matrix rows / columns as a set of 1D vectors and performing the specified operation on the vectors until a single row / column is obtained . For example , the function can be used to compute horizontal and vertical projections of a raster image . In case of ` ` CV_REDUCE_SUM ` ` and ` ` CV_REDUCE_AVG ` ` , the output may have a larger element bit - depth to preserve accuracy . And multi - channel arrays are also supported in these two reduction modes . <nl> <nl> . . seealso : : : ocv : func : ` reduce ` <nl> similarity index 100 % <nl> rename from modules / gpu / src / opencv2 / gpu / device / block . hpp <nl> rename to modules / gpu / include / opencv2 / gpu / device / block . hpp <nl> mmm a / modules / gpu / include / opencv2 / gpu / device / common . hpp <nl> ppp b / modules / gpu / include / opencv2 / gpu / device / common . hpp <nl> static inline void ___cudaSafeCall ( cudaError_t err , const char * file , const int <nl> cv : : gpu : : error ( cudaGetErrorString ( err ) , file , line , func ) ; <nl> } <nl> <nl> - # ifdef __CUDACC__ <nl> - <nl> namespace cv { namespace gpu <nl> { <nl> __host__ __device__ __forceinline__ int divUp ( int total , int grain ) <nl> namespace cv { namespace gpu <nl> <nl> namespace device <nl> { <nl> + using cv : : gpu : : divUp ; <nl> + <nl> + # ifdef __CUDACC__ <nl> typedef unsigned char uchar ; <nl> typedef unsigned short ushort ; <nl> typedef signed char schar ; <nl> - typedef unsigned int uint ; <nl> + # ifdef _WIN32 <nl> + typedef unsigned int uint ; <nl> + # endif <nl> <nl> template < class T > inline void bindTexture ( const textureReference * tex , const PtrStepSz < T > & img ) <nl> { <nl> cudaChannelFormatDesc desc = cudaCreateChannelDesc < T > ( ) ; <nl> cudaSafeCall ( cudaBindTexture2D ( 0 , tex , img . ptr ( ) , & desc , img . cols , img . rows , img . step ) ) ; <nl> } <nl> + # endif / / __CUDACC__ <nl> } <nl> } } <nl> <nl> - # endif / / __CUDACC__ <nl> + <nl> <nl> # endif / / __OPENCV_GPU_COMMON_HPP__ <nl> mmm a / modules / gpu / include / opencv2 / gpu / device / emulation . hpp <nl> ppp b / modules / gpu / include / opencv2 / gpu / device / emulation . hpp <nl> <nl> # define OPENCV_GPU_EMULATION_HPP_ <nl> <nl> # include " warp_reduce . hpp " <nl> - # include < stdio . h > <nl> <nl> namespace cv { namespace gpu { namespace device <nl> { <nl> mmm a / modules / gpu / include / opencv2 / gpu / device / functional . hpp <nl> ppp b / modules / gpu / include / opencv2 / gpu / device / functional . hpp <nl> namespace cv { namespace gpu { namespace device <nl> template < > struct name < type > : binary_function < type , type , type > \ <nl> { \ <nl> __device__ __forceinline__ type operator ( ) ( type lhs , type rhs ) const { return op ( lhs , rhs ) ; } \ <nl> - __device__ __forceinline__ name ( const name & other ) : binary_function < type , type , type > ( ) { } \ <nl> - __device__ __forceinline__ name ( ) : binary_function < type , type , type > ( ) { } \ <nl> + __device__ __forceinline__ name ( ) { } \ <nl> + __device__ __forceinline__ name ( const name & ) { } \ <nl> } ; <nl> <nl> template < typename T > struct maximum : binary_function < T , T , T > <nl> { <nl> __device__ __forceinline__ T operator ( ) ( typename TypeTraits < T > : : ParameterType lhs , typename TypeTraits < T > : : ParameterType rhs ) const <nl> { <nl> - return lhs < rhs ? rhs : lhs ; <nl> + return max ( lhs , rhs ) ; <nl> } <nl> - __device__ __forceinline__ maximum ( const maximum & other ) : binary_function < T , T , T > ( ) { } <nl> - __device__ __forceinline__ maximum ( ) : binary_function < T , T , T > ( ) { } <nl> + __device__ __forceinline__ maximum ( ) { } <nl> + __device__ __forceinline__ maximum ( const maximum & ) { } <nl> } ; <nl> <nl> OPENCV_GPU_IMPLEMENT_MINMAX ( maximum , uchar , : : max ) <nl> namespace cv { namespace gpu { namespace device <nl> { <nl> __device__ __forceinline__ T operator ( ) ( typename TypeTraits < T > : : ParameterType lhs , typename TypeTraits < T > : : ParameterType rhs ) const <nl> { <nl> - return lhs < rhs ? lhs : rhs ; <nl> + return min ( lhs , rhs ) ; <nl> } <nl> - __device__ __forceinline__ minimum ( const minimum & other ) : binary_function < T , T , T > ( ) { } <nl> - __device__ __forceinline__ minimum ( ) : binary_function < T , T , T > ( ) { } <nl> + __device__ __forceinline__ minimum ( ) { } <nl> + __device__ __forceinline__ minimum ( const minimum & ) { } <nl> } ; <nl> <nl> OPENCV_GPU_IMPLEMENT_MINMAX ( minimum , uchar , : : min ) <nl> namespace cv { namespace gpu { namespace device <nl> <nl> / / Math functions <nl> / / / bound = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = <nl> + <nl> + template < typename T > struct abs_func : unary_function < T , T > <nl> + { <nl> + __device__ __forceinline__ T operator ( ) ( typename TypeTraits < T > : : ParameterType x ) const <nl> + { <nl> + return abs ( x ) ; <nl> + } <nl> + <nl> + __device__ __forceinline__ abs_func ( ) { } <nl> + __device__ __forceinline__ abs_func ( const abs_func & ) { } <nl> + } ; <nl> + template < > struct abs_func < unsigned char > : unary_function < unsigned char , unsigned char > <nl> + { <nl> + __device__ __forceinline__ unsigned char operator ( ) ( unsigned char x ) const <nl> + { <nl> + return x ; <nl> + } <nl> + <nl> + __device__ __forceinline__ abs_func ( ) { } <nl> + __device__ __forceinline__ abs_func ( const abs_func & ) { } <nl> + } ; <nl> + template < > struct abs_func < signed char > : unary_function < signed char , signed char > <nl> + { <nl> + __device__ __forceinline__ signed char operator ( ) ( signed char x ) const <nl> + { <nl> + return : : abs ( ( int ) x ) ; <nl> + } <nl> + <nl> + __device__ __forceinline__ abs_func ( ) { } <nl> + __device__ __forceinline__ abs_func ( const abs_func & ) { } <nl> + } ; <nl> + template < > struct abs_func < char > : unary_function < char , char > <nl> + { <nl> + __device__ __forceinline__ char operator ( ) ( char x ) const <nl> + { <nl> + return : : abs ( ( int ) x ) ; <nl> + } <nl> + <nl> + __device__ __forceinline__ abs_func ( ) { } <nl> + __device__ __forceinline__ abs_func ( const abs_func & ) { } <nl> + } ; <nl> + template < > struct abs_func < unsigned short > : unary_function < unsigned short , unsigned short > <nl> + { <nl> + __device__ __forceinline__ unsigned short operator ( ) ( unsigned short x ) const <nl> + { <nl> + return x ; <nl> + } <nl> + <nl> + __device__ __forceinline__ abs_func ( ) { } <nl> + __device__ __forceinline__ abs_func ( const abs_func & ) { } <nl> + } ; <nl> + template < > struct abs_func < short > : unary_function < short , short > <nl> + { <nl> + __device__ __forceinline__ short operator ( ) ( short x ) const <nl> + { <nl> + return : : abs ( ( int ) x ) ; <nl> + } <nl> + <nl> + __device__ __forceinline__ abs_func ( ) { } <nl> + __device__ __forceinline__ abs_func ( const abs_func & ) { } <nl> + } ; <nl> + template < > struct abs_func < unsigned int > : unary_function < unsigned int , unsigned int > <nl> + { <nl> + __device__ __forceinline__ unsigned int operator ( ) ( unsigned int x ) const <nl> + { <nl> + return x ; <nl> + } <nl> + <nl> + __device__ __forceinline__ abs_func ( ) { } <nl> + __device__ __forceinline__ abs_func ( const abs_func & ) { } <nl> + } ; <nl> + template < > struct abs_func < int > : unary_function < int , int > <nl> + { <nl> + __device__ __forceinline__ int operator ( ) ( int x ) const <nl> + { <nl> + return : : abs ( x ) ; <nl> + } <nl> + <nl> + __device__ __forceinline__ abs_func ( ) { } <nl> + __device__ __forceinline__ abs_func ( const abs_func & ) { } <nl> + } ; <nl> + template < > struct abs_func < float > : unary_function < float , float > <nl> + { <nl> + __device__ __forceinline__ float operator ( ) ( float x ) const <nl> + { <nl> + return : : fabsf ( x ) ; <nl> + } <nl> + <nl> + __device__ __forceinline__ abs_func ( ) { } <nl> + __device__ __forceinline__ abs_func ( const abs_func & ) { } <nl> + } ; <nl> + template < > struct abs_func < double > : unary_function < double , double > <nl> + { <nl> + __device__ __forceinline__ double operator ( ) ( double x ) const <nl> + { <nl> + return : : fabs ( x ) ; <nl> + } <nl> + <nl> + __device__ __forceinline__ abs_func ( ) { } <nl> + __device__ __forceinline__ abs_func ( const abs_func & ) { } <nl> + } ; <nl> + <nl> # define OPENCV_GPU_IMPLEMENT_UN_FUNCTOR ( name , func ) \ <nl> template < typename T > struct name # # _func : unary_function < T , float > \ <nl> { \ <nl> namespace cv { namespace gpu { namespace device <nl> { \ <nl> return func # # f ( v ) ; \ <nl> } \ <nl> + __device__ __forceinline__ name # # _func ( ) { } \ <nl> + __device__ __forceinline__ name # # _func ( const name # # _func & ) { } \ <nl> } ; \ <nl> template < > struct name # # _func < double > : unary_function < double , double > \ <nl> { \ <nl> namespace cv { namespace gpu { namespace device <nl> { \ <nl> return func ( v ) ; \ <nl> } \ <nl> + __device__ __forceinline__ name # # _func ( ) { } \ <nl> + __device__ __forceinline__ name # # _func ( const name # # _func & ) { } \ <nl> } ; <nl> <nl> # define OPENCV_GPU_IMPLEMENT_BIN_FUNCTOR ( name , func ) \ <nl> namespace cv { namespace gpu { namespace device <nl> } \ <nl> } ; <nl> <nl> - OPENCV_GPU_IMPLEMENT_UN_FUNCTOR ( fabs , : : fabs ) <nl> OPENCV_GPU_IMPLEMENT_UN_FUNCTOR ( sqrt , : : sqrt ) <nl> OPENCV_GPU_IMPLEMENT_UN_FUNCTOR ( exp , : : exp ) <nl> OPENCV_GPU_IMPLEMENT_UN_FUNCTOR ( exp2 , : : exp2 ) <nl> mmm a / modules / gpu / include / opencv2 / gpu / device / vec_math . hpp <nl> ppp b / modules / gpu / include / opencv2 / gpu / device / vec_math . hpp <nl> namespace cv { namespace gpu { namespace device <nl> OPENCV_GPU_IMPLEMENT_VEC_UNOP ( type , operator ! , logical_not ) \ <nl> OPENCV_GPU_IMPLEMENT_VEC_BINOP ( type , max , maximum ) \ <nl> OPENCV_GPU_IMPLEMENT_VEC_BINOP ( type , min , minimum ) \ <nl> - OPENCV_GPU_IMPLEMENT_VEC_UNOP ( type , fabs , fabs_func ) \ <nl> + OPENCV_GPU_IMPLEMENT_VEC_UNOP ( type , abs , abs_func ) \ <nl> OPENCV_GPU_IMPLEMENT_VEC_UNOP ( type , sqrt , sqrt_func ) \ <nl> OPENCV_GPU_IMPLEMENT_VEC_UNOP ( type , exp , exp_func ) \ <nl> OPENCV_GPU_IMPLEMENT_VEC_UNOP ( type , exp2 , exp2_func ) \ <nl> namespace cv { namespace gpu { namespace device <nl> # undef OPENCV_GPU_IMPLEMENT_VEC_INT_OP <nl> } } } / / namespace cv { namespace gpu { namespace device <nl> <nl> - # endif / / __OPENCV_GPU_VECMATH_HPP__ <nl> \ No newline at end of file <nl> + # endif / / __OPENCV_GPU_VECMATH_HPP__ <nl> mmm a / modules / gpu / src / brute_force_matcher . cpp <nl> ppp b / modules / gpu / src / brute_force_matcher . cpp <nl> void cv : : gpu : : BruteForceMatcher_GPU_base : : matchConvert ( const Mat & trainIdx , cons <nl> const float * distance_ptr = distance . ptr < float > ( ) ; <nl> for ( int queryIdx = 0 ; queryIdx < nQuery ; + + queryIdx , + + trainIdx_ptr , + + distance_ptr ) <nl> { <nl> - int _trainIdx = * trainIdx_ptr ; <nl> + int train_idx = * trainIdx_ptr ; <nl> <nl> - if ( _trainIdx = = - 1 ) <nl> + if ( train_idx = = - 1 ) <nl> continue ; <nl> <nl> - float _distance = * distance_ptr ; <nl> + float distance_local = * distance_ptr ; <nl> <nl> - DMatch m ( queryIdx , _trainIdx , 0 , _distance ) ; <nl> + DMatch m ( queryIdx , train_idx , 0 , distance_local ) ; <nl> <nl> matches . push_back ( m ) ; <nl> } <nl> void cv : : gpu : : BruteForceMatcher_GPU_base : : matchConvert ( const Mat & trainIdx , cons <nl> const float * distance_ptr = distance . ptr < float > ( ) ; <nl> for ( int queryIdx = 0 ; queryIdx < nQuery ; + + queryIdx , + + trainIdx_ptr , + + imgIdx_ptr , + + distance_ptr ) <nl> { <nl> - int trainIdx = * trainIdx_ptr ; <nl> + int _trainIdx = * trainIdx_ptr ; <nl> <nl> - if ( trainIdx = = - 1 ) <nl> + if ( _trainIdx = = - 1 ) <nl> continue ; <nl> <nl> - int imgIdx = * imgIdx_ptr ; <nl> + int _imgIdx = * imgIdx_ptr ; <nl> <nl> - float distance = * distance_ptr ; <nl> + float _distance = * distance_ptr ; <nl> <nl> - DMatch m ( queryIdx , trainIdx , imgIdx , distance ) ; <nl> + DMatch m ( queryIdx , _trainIdx , _imgIdx , _distance ) ; <nl> <nl> matches . push_back ( m ) ; <nl> } <nl> void cv : : gpu : : BruteForceMatcher_GPU_base : : knnMatchConvert ( const Mat & trainIdx , c <nl> <nl> for ( int i = 0 ; i < k ; + + i , + + trainIdx_ptr , + + distance_ptr ) <nl> { <nl> - int trainIdx = * trainIdx_ptr ; <nl> + int _trainIdx = * trainIdx_ptr ; <nl> <nl> - if ( trainIdx ! = - 1 ) <nl> + if ( _trainIdx ! = - 1 ) <nl> { <nl> - float distance = * distance_ptr ; <nl> + float _distance = * distance_ptr ; <nl> <nl> - DMatch m ( queryIdx , trainIdx , 0 , distance ) ; <nl> + DMatch m ( queryIdx , _trainIdx , 0 , _distance ) ; <nl> <nl> curMatches . push_back ( m ) ; <nl> } <nl> void cv : : gpu : : BruteForceMatcher_GPU_base : : knnMatch2Convert ( const Mat & trainIdx , <nl> <nl> for ( int i = 0 ; i < 2 ; + + i , + + trainIdx_ptr , + + imgIdx_ptr , + + distance_ptr ) <nl> { <nl> - int trainIdx = * trainIdx_ptr ; <nl> + int _trainIdx = * trainIdx_ptr ; <nl> <nl> - if ( trainIdx ! = - 1 ) <nl> + if ( _trainIdx ! = - 1 ) <nl> { <nl> - int imgIdx = * imgIdx_ptr ; <nl> + int _imgIdx = * imgIdx_ptr ; <nl> <nl> - float distance = * distance_ptr ; <nl> + float _distance = * distance_ptr ; <nl> <nl> - DMatch m ( queryIdx , trainIdx , imgIdx , distance ) ; <nl> + DMatch m ( queryIdx , _trainIdx , _imgIdx , _distance ) ; <nl> <nl> curMatches . push_back ( m ) ; <nl> } <nl> void cv : : gpu : : BruteForceMatcher_GPU_base : : radiusMatchConvert ( const Mat & trainIdx <nl> const int * trainIdx_ptr = trainIdx . ptr < int > ( queryIdx ) ; <nl> const float * distance_ptr = distance . ptr < float > ( queryIdx ) ; <nl> <nl> - const int nMatches = std : : min ( nMatches_ptr [ queryIdx ] , trainIdx . cols ) ; <nl> + const int nMatched = std : : min ( nMatches_ptr [ queryIdx ] , trainIdx . cols ) ; <nl> <nl> - if ( nMatches = = 0 ) <nl> + if ( nMatched = = 0 ) <nl> { <nl> if ( ! compactResult ) <nl> matches . push_back ( vector < DMatch > ( ) ) ; <nl> continue ; <nl> } <nl> <nl> - matches . push_back ( vector < DMatch > ( nMatches ) ) ; <nl> + matches . push_back ( vector < DMatch > ( nMatched ) ) ; <nl> vector < DMatch > & curMatches = matches . back ( ) ; <nl> <nl> - for ( int i = 0 ; i < nMatches ; + + i , + + trainIdx_ptr , + + distance_ptr ) <nl> + for ( int i = 0 ; i < nMatched ; + + i , + + trainIdx_ptr , + + distance_ptr ) <nl> { <nl> - int trainIdx = * trainIdx_ptr ; <nl> + int _trainIdx = * trainIdx_ptr ; <nl> <nl> - float distance = * distance_ptr ; <nl> + float _distance = * distance_ptr ; <nl> <nl> - DMatch m ( queryIdx , trainIdx , 0 , distance ) ; <nl> + DMatch m ( queryIdx , _trainIdx , 0 , _distance ) ; <nl> <nl> curMatches [ i ] = m ; <nl> } <nl> void cv : : gpu : : BruteForceMatcher_GPU_base : : radiusMatchConvert ( const Mat & trainIdx <nl> const int * imgIdx_ptr = imgIdx . ptr < int > ( queryIdx ) ; <nl> const float * distance_ptr = distance . ptr < float > ( queryIdx ) ; <nl> <nl> - const int nMatches = std : : min ( nMatches_ptr [ queryIdx ] , trainIdx . cols ) ; <nl> + const int nMatched = std : : min ( nMatches_ptr [ queryIdx ] , trainIdx . cols ) ; <nl> <nl> - if ( nMatches = = 0 ) <nl> + if ( nMatched = = 0 ) <nl> { <nl> if ( ! compactResult ) <nl> matches . push_back ( vector < DMatch > ( ) ) ; <nl> void cv : : gpu : : BruteForceMatcher_GPU_base : : radiusMatchConvert ( const Mat & trainIdx <nl> <nl> matches . push_back ( vector < DMatch > ( ) ) ; <nl> vector < DMatch > & curMatches = matches . back ( ) ; <nl> - curMatches . reserve ( nMatches ) ; <nl> + curMatches . reserve ( nMatched ) ; <nl> <nl> - for ( int i = 0 ; i < nMatches ; + + i , + + trainIdx_ptr , + + imgIdx_ptr , + + distance_ptr ) <nl> + for ( int i = 0 ; i < nMatched ; + + i , + + trainIdx_ptr , + + imgIdx_ptr , + + distance_ptr ) <nl> { <nl> int _trainIdx = * trainIdx_ptr ; <nl> int _imgIdx = * imgIdx_ptr ; <nl> mmm a / modules / gpu / src / cascadeclassifier . cpp <nl> ppp b / modules / gpu / src / cascadeclassifier . cpp <nl> struct cv : : gpu : : CascadeClassifier_GPU : : LbpCascade : cv : : gpu : : CascadeClassifier_G <nl> } <nl> <nl> / / copy data structures on gpu <nl> - stage_mat . upload ( cv : : Mat ( 1 , stages . size ( ) * sizeof ( Stage ) , CV_8UC1 , ( uchar * ) & ( stages [ 0 ] ) ) ) ; <nl> + stage_mat . upload ( cv : : Mat ( 1 , ( int ) ( stages . size ( ) * sizeof ( Stage ) ) , CV_8UC1 , ( uchar * ) & ( stages [ 0 ] ) ) ) ; <nl> trees_mat . upload ( cv : : Mat ( cl_trees ) . reshape ( 1 , 1 ) ) ; <nl> nodes_mat . upload ( cv : : Mat ( cl_nodes ) . reshape ( 1 , 1 ) ) ; <nl> leaves_mat . upload ( cv : : Mat ( cl_leaves ) . reshape ( 1 , 1 ) ) ; <nl> mmm a / modules / gpu / src / cuda / ccomponetns . cu <nl> ppp b / modules / gpu / src / cuda / ccomponetns . cu <nl> namespace cv { namespace gpu { namespace device <nl> <nl> void labelComponents ( const PtrStepSzb & edges , PtrStepSzi comps , int flags , cudaStream_t stream ) <nl> { <nl> + ( void ) flags ; <nl> dim3 block ( CTA_SIZE_X , CTA_SIZE_Y ) ; <nl> dim3 grid ( divUp ( edges . cols , TILE_COLS ) , divUp ( edges . rows , TILE_ROWS ) ) ; <nl> <nl> namespace cv { namespace gpu { namespace device <nl> } <nl> } } } <nl> <nl> - # endif / * CUDA_DISABLER * / <nl> \ No newline at end of file <nl> + # endif / * CUDA_DISABLER * / <nl> mmm a / modules / gpu / src / cuda / gftt . cu <nl> ppp b / modules / gpu / src / cuda / gftt . cu <nl> <nl> <nl> # if ! defined CUDA_DISABLER <nl> <nl> + # include < thrust / device_ptr . h > <nl> # include < thrust / sort . h > <nl> <nl> # include " opencv2 / gpu / device / common . hpp " <nl> namespace cv { namespace gpu { namespace device <nl> } } } <nl> <nl> <nl> - # endif / * CUDA_DISABLER * / <nl> \ No newline at end of file <nl> + # endif / * CUDA_DISABLER * / <nl> mmm a / modules / gpu / src / cuda / hough . cu <nl> ppp b / modules / gpu / src / cuda / hough . cu <nl> <nl> <nl> # if ! defined CUDA_DISABLER <nl> <nl> + # include < thrust / device_ptr . h > <nl> # include < thrust / sort . h > <nl> + <nl> # include " opencv2 / gpu / device / common . hpp " <nl> # include " opencv2 / gpu / device / emulation . hpp " <nl> # include " opencv2 / gpu / device / vec_math . hpp " <nl> namespace cv { namespace gpu { namespace device <nl> } } } <nl> <nl> <nl> - # endif / * CUDA_DISABLER * / <nl> \ No newline at end of file <nl> + # endif / * CUDA_DISABLER * / <nl> mmm a / modules / gpu / src / cuda / lbp . cu <nl> ppp b / modules / gpu / src / cuda / lbp . cu <nl> namespace cv { namespace gpu { namespace device <nl> int grid = divUp ( workAmount , block ) ; <nl> cudaFuncSetCacheConfig ( lbp_cascade , cudaFuncCachePreferL1 ) ; <nl> Cascade cascade ( ( Stage * ) mstages . ptr ( ) , nstages , ( ClNode * ) mnodes . ptr ( ) , mleaves . ptr ( ) , msubsets . ptr ( ) , ( uchar4 * ) mfeatures . ptr ( ) , subsetSize ) ; <nl> - lbp_cascade < < < grid , block > > > ( cascade , frameW , frameH , windowW , windowH , initialScale , factor , workAmount , integral . ptr ( ) , integral . step / sizeof ( int ) , objects , classified ) ; <nl> + lbp_cascade < < < grid , block > > > ( cascade , frameW , frameH , windowW , windowH , initialScale , factor , workAmount , integral . ptr ( ) , ( int ) integral . step / sizeof ( int ) , objects , classified ) ; <nl> } <nl> } <nl> } } } <nl> mmm a / modules / gpu / src / cuda / mathfunc . cu <nl> ppp b / modules / gpu / src / cuda / mathfunc . cu <nl> namespace cv { namespace gpu { namespace device <nl> static __device__ __forceinline__ void calc ( int x , int y , float x_data , float y_data , float * dst , size_t dst_step , float scale ) <nl> { <nl> float angle = : : atan2f ( y_data , x_data ) ; <nl> - angle + = ( angle < 0 ) * 2 . 0 * CV_PI ; <nl> + angle + = ( angle < 0 ) * 2 . 0f * CV_PI_F ; <nl> dst [ y * dst_step + x ] = scale * angle ; <nl> } <nl> } ; <nl> namespace cv { namespace gpu { namespace device <nl> grid . x = divUp ( x . cols , threads . x ) ; <nl> grid . y = divUp ( x . rows , threads . y ) ; <nl> <nl> - const float scale = angleInDegrees ? ( float ) ( 180 . 0f / CV_PI ) : 1 . f ; <nl> + const float scale = angleInDegrees ? ( 180 . 0f / CV_PI_F ) : 1 . f ; <nl> <nl> cartToPolar < Mag , Angle > < < < grid , threads , 0 , stream > > > ( <nl> x . data , x . step / x . elemSize ( ) , y . data , y . step / y . elemSize ( ) , <nl> namespace cv { namespace gpu { namespace device <nl> grid . x = divUp ( mag . cols , threads . x ) ; <nl> grid . y = divUp ( mag . rows , threads . y ) ; <nl> <nl> - const float scale = angleInDegrees ? ( float ) ( CV_PI / 180 . 0f ) : 1 . 0f ; <nl> + const float scale = angleInDegrees ? ( CV_PI_F / 180 . 0f ) : 1 . 0f ; <nl> <nl> polarToCart < Mag > < < < grid , threads , 0 , stream > > > ( mag . data , mag . step / mag . elemSize ( ) , <nl> angle . data , angle . step / angle . elemSize ( ) , scale , x . data , x . step / x . elemSize ( ) , y . data , y . step / y . elemSize ( ) , mag . cols , mag . rows ) ; <nl> namespace cv { namespace gpu { namespace device <nl> } / / namespace mathfunc <nl> } } } / / namespace cv { namespace gpu { namespace device <nl> <nl> - # endif / * CUDA_DISABLER * / <nl> \ No newline at end of file <nl> + # endif / * CUDA_DISABLER * / <nl> mmm a / modules / gpu / src / cuda / optical_flow . cu <nl> ppp b / modules / gpu / src / cuda / optical_flow . cu <nl> namespace cv { namespace gpu { namespace device <nl> <nl> r = : : fmin ( r , 2 . 5f ) ; <nl> <nl> - v [ 1 ] . x = arrow_x + r * : : cosf ( theta - CV_PI / 2 . 0f ) ; <nl> - v [ 1 ] . y = arrow_y + r * : : sinf ( theta - CV_PI / 2 . 0f ) ; <nl> + v [ 1 ] . x = arrow_x + r * : : cosf ( theta - CV_PI_F / 2 . 0f ) ; <nl> + v [ 1 ] . y = arrow_y + r * : : sinf ( theta - CV_PI_F / 2 . 0f ) ; <nl> <nl> - v [ 4 ] . x = arrow_x + r * : : cosf ( theta + CV_PI / 2 . 0f ) ; <nl> - v [ 4 ] . y = arrow_y + r * : : sinf ( theta + CV_PI / 2 . 0f ) ; <nl> + v [ 4 ] . x = arrow_x + r * : : cosf ( theta + CV_PI_F / 2 . 0f ) ; <nl> + v [ 4 ] . y = arrow_y + r * : : sinf ( theta + CV_PI_F / 2 . 0f ) ; <nl> <nl> int indx = ( y * u_avg . cols + x ) * NUM_VERTS_PER_ARROW * 3 ; <nl> <nl> - color_data [ indx ] = ( theta - CV_PI ) / CV_PI * 180 . 0f ; <nl> + color_data [ indx ] = ( theta - CV_PI_F ) / CV_PI_F * 180 . 0f ; <nl> vertex_data [ indx + + ] = v [ 0 ] . x * xscale ; <nl> vertex_data [ indx + + ] = v [ 0 ] . y * yscale ; <nl> vertex_data [ indx + + ] = v [ 0 ] . z ; <nl> <nl> - color_data [ indx ] = ( theta - CV_PI ) / CV_PI * 180 . 0f ; <nl> + color_data [ indx ] = ( theta - CV_PI_F ) / CV_PI_F * 180 . 0f ; <nl> vertex_data [ indx + + ] = v [ 1 ] . x * xscale ; <nl> vertex_data [ indx + + ] = v [ 1 ] . y * yscale ; <nl> vertex_data [ indx + + ] = v [ 1 ] . z ; <nl> <nl> - color_data [ indx ] = ( theta - CV_PI ) / CV_PI * 180 . 0f ; <nl> + color_data [ indx ] = ( theta - CV_PI_F ) / CV_PI_F * 180 . 0f ; <nl> vertex_data [ indx + + ] = v [ 2 ] . x * xscale ; <nl> vertex_data [ indx + + ] = v [ 2 ] . y * yscale ; <nl> vertex_data [ indx + + ] = v [ 2 ] . z ; <nl> <nl> - color_data [ indx ] = ( theta - CV_PI ) / CV_PI * 180 . 0f ; <nl> + color_data [ indx ] = ( theta - CV_PI_F ) / CV_PI_F * 180 . 0f ; <nl> vertex_data [ indx + + ] = v [ 3 ] . x * xscale ; <nl> vertex_data [ indx + + ] = v [ 3 ] . y * yscale ; <nl> vertex_data [ indx + + ] = v [ 3 ] . z ; <nl> <nl> - color_data [ indx ] = ( theta - CV_PI ) / CV_PI * 180 . 0f ; <nl> + color_data [ indx ] = ( theta - CV_PI_F ) / CV_PI_F * 180 . 0f ; <nl> vertex_data [ indx + + ] = v [ 4 ] . x * xscale ; <nl> vertex_data [ indx + + ] = v [ 4 ] . y * yscale ; <nl> vertex_data [ indx + + ] = v [ 4 ] . z ; <nl> <nl> - color_data [ indx ] = ( theta - CV_PI ) / CV_PI * 180 . 0f ; <nl> + color_data [ indx ] = ( theta - CV_PI_F ) / CV_PI_F * 180 . 0f ; <nl> vertex_data [ indx + + ] = v [ 5 ] . x * xscale ; <nl> vertex_data [ indx + + ] = v [ 5 ] . y * yscale ; <nl> vertex_data [ indx + + ] = v [ 5 ] . z ; <nl> namespace cv { namespace gpu { namespace device <nl> } <nl> } } } <nl> <nl> - # endif / * CUDA_DISABLER * / <nl> \ No newline at end of file <nl> + # endif / * CUDA_DISABLER * / <nl> mmm a / modules / gpu / src / cuda / optical_flow_farneback . cu <nl> ppp b / modules / gpu / src / cuda / optical_flow_farneback . cu <nl> <nl> <nl> # if ! defined CUDA_DISABLER <nl> <nl> - # include < stdio . h > <nl> # include " internal_shared . hpp " <nl> # include " opencv2 / gpu / device / common . hpp " <nl> # include " opencv2 / gpu / device / border_interpolate . hpp " <nl> <nl> # define BORDER_SIZE 5 <nl> # define MAX_KSIZE_HALF 100 <nl> <nl> - using namespace std ; <nl> - <nl> namespace cv { namespace gpu { namespace device { namespace optflow_farneback <nl> { <nl> __constant__ float c_g [ 8 ] ; <nl> mmm a / modules / gpu / src / cuda / pyrlk . cu <nl> ppp b / modules / gpu / src / cuda / pyrlk . cu <nl> namespace cv { namespace gpu { namespace device <nl> } <nl> __device__ __forceinline__ float4 abs_ ( const float4 & a ) <nl> { <nl> - return fabs ( a ) ; <nl> + return abs ( a ) ; <nl> } <nl> <nl> template < int cn , int PATCH_X , int PATCH_Y , bool calcErr > <nl> namespace cv { namespace gpu { namespace device <nl> } <nl> } } } <nl> <nl> - # endif / * CUDA_DISABLER * / <nl> \ No newline at end of file <nl> + # endif / * CUDA_DISABLER * / <nl> mmm a / modules / gpu / src / cuda / split_merge . cu <nl> ppp b / modules / gpu / src / cuda / split_merge . cu <nl> namespace cv { namespace gpu { namespace device <nl> } } } / / namespace cv { namespace gpu { namespace device <nl> <nl> <nl> - # endif / * CUDA_DISABLER * / <nl> \ No newline at end of file <nl> + # endif / * CUDA_DISABLER * / <nl> mmm a / modules / gpu / src / cuda / stereobp . cu <nl> ppp b / modules / gpu / src / cuda / stereobp . cu <nl> namespace cv { namespace gpu { namespace device <nl> grid . x = divUp ( cols , threads . x < < 1 ) ; <nl> grid . y = divUp ( rows , threads . y ) ; <nl> <nl> - int elem_step = u . step / sizeof ( T ) ; <nl> + int elem_step = ( int ) ( u . step / sizeof ( T ) ) ; <nl> <nl> for ( int t = 0 ; t < iters ; + + t ) <nl> { <nl> mmm a / modules / gpu / src / cuda / surf . cu <nl> ppp b / modules / gpu / src / cuda / surf . cu <nl> namespace cv { namespace gpu { namespace device <nl> kp_dir * = 180 . 0f / CV_PI_F ; <nl> <nl> kp_dir = 360 . 0f - kp_dir ; <nl> - if ( abs ( kp_dir - 360 . f ) < FLT_EPSILON ) <nl> + if ( : : fabsf ( kp_dir - 360 . f ) < FLT_EPSILON ) <nl> kp_dir = 0 . f ; <nl> <nl> featureDir [ blockIdx . x ] = kp_dir ; <nl> namespace cv { namespace gpu { namespace device <nl> } } } / / namespace cv { namespace gpu { namespace device <nl> <nl> <nl> - # endif / * CUDA_DISABLER * / <nl> \ No newline at end of file <nl> + # endif / * CUDA_DISABLER * / <nl> mmm a / modules / gpu / src / cuda / texture_binder . hpp <nl> ppp b / modules / gpu / src / cuda / texture_binder . hpp <nl> namespace cv <nl> <nl> namespace device <nl> { <nl> - using pcl : : gpu : : TextureBinder ; <nl> + using cv : : gpu : : TextureBinder ; <nl> } <nl> } <nl> <nl> mmm a / modules / gpu / src / fast . cpp <nl> ppp b / modules / gpu / src / fast . cpp <nl> int cv : : gpu : : FAST_GPU : : calcKeyPointsLocation ( const GpuMat & img , const GpuMat & ma <nl> CV_Assert ( img . type ( ) = = CV_8UC1 ) ; <nl> CV_Assert ( mask . empty ( ) | | ( mask . type ( ) = = CV_8UC1 & & mask . size ( ) = = img . size ( ) ) ) ; <nl> <nl> - if ( ! TargetArchs : : builtWith ( GLOBAL_ATOMICS ) | | ! DeviceInfo ( ) . supports ( GLOBAL_ATOMICS ) ) <nl> - CV_Error ( CV_StsNotImplemented , " The device doesn ' t support global atomics " ) ; <nl> - <nl> int maxKeypoints = static_cast < int > ( keypointsRatio * img . size ( ) . area ( ) ) ; <nl> <nl> ensureSizeIsEnough ( 1 , maxKeypoints , CV_16SC2 , kpLoc_ ) ; <nl> int cv : : gpu : : FAST_GPU : : getKeyPoints ( GpuMat & keypoints ) <nl> { <nl> using namespace cv : : gpu : : device : : fast ; <nl> <nl> - if ( ! TargetArchs : : builtWith ( GLOBAL_ATOMICS ) | | ! DeviceInfo ( ) . supports ( GLOBAL_ATOMICS ) ) <nl> - CV_Error ( CV_StsNotImplemented , " The device doesn ' t support global atomics " ) ; <nl> - <nl> if ( count_ = = 0 ) <nl> return 0 ; <nl> <nl> mmm a / modules / gpu / src / gftt . cpp <nl> ppp b / modules / gpu / src / gftt . cpp <nl> void cv : : gpu : : GoodFeaturesToTrackDetector_GPU : : operator ( ) ( const GpuMat & image , <nl> CV_Assert ( qualityLevel > 0 & & minDistance > = 0 & & maxCorners > = 0 ) ; <nl> CV_Assert ( mask . empty ( ) | | ( mask . type ( ) = = CV_8UC1 & & mask . size ( ) = = image . size ( ) ) ) ; <nl> <nl> - if ( ! TargetArchs : : builtWith ( GLOBAL_ATOMICS ) | | ! DeviceInfo ( ) . supports ( GLOBAL_ATOMICS ) ) <nl> - CV_Error ( CV_StsNotImplemented , " The device doesn ' t support global atomics " ) ; <nl> - <nl> ensureSizeIsEnough ( image . size ( ) , CV_32F , eig_ ) ; <nl> <nl> if ( useHarrisDetector ) <nl> mmm a / modules / gpu / src / nvidia / core / NCV . cu <nl> ppp b / modules / gpu / src / nvidia / core / NCV . cu <nl> <nl> # include < vector > <nl> # include " NCV . hpp " <nl> <nl> - using namespace std ; <nl> - <nl> <nl> / / = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = <nl> / / <nl> using namespace std ; <nl> / / = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = <nl> <nl> <nl> - static void stdDebugOutput ( const string & msg ) <nl> + static void stdDebugOutput ( const std : : string & msg ) <nl> { <nl> - cout < < msg ; <nl> + std : : cout < < msg ; <nl> } <nl> <nl> <nl> static NCVDebugOutputHandler * debugOutputHandler = stdDebugOutput ; <nl> <nl> <nl> - void ncvDebugOutput ( const string & msg ) <nl> + void ncvDebugOutput ( const std : : string & msg ) <nl> { <nl> debugOutputHandler ( msg ) ; <nl> } <nl> mmm a / modules / gpu / src / nvidia / core / NCV . hpp <nl> ppp b / modules / gpu / src / nvidia / core / NCV . hpp <nl> NCV_EXPORTS void ncvSetDebugOutputHandler ( NCVDebugOutputHandler * func ) ; <nl> do \ <nl> { \ <nl> cudaError_t res = cudacall ; \ <nl> - ncvAssertPrintReturn ( cudaSuccess = = res , " cudaError_t = " < < res , errCode ) ; \ <nl> + ncvAssertPrintReturn ( cudaSuccess = = res , " cudaError_t = " < < ( int ) res , errCode ) ; \ <nl> } while ( 0 ) <nl> <nl> <nl> NCV_EXPORTS void ncvSetDebugOutputHandler ( NCVDebugOutputHandler * func ) ; <nl> do \ <nl> { \ <nl> cudaError_t res = cudaGetLastError ( ) ; \ <nl> - ncvAssertPrintReturn ( cudaSuccess = = res , " cudaError_t = " < < res , errCode ) ; \ <nl> + ncvAssertPrintReturn ( cudaSuccess = = res , " cudaError_t = " < < ( int ) res , errCode ) ; \ <nl> } while ( 0 ) <nl> <nl> <nl> mmm a / samples / gpu / cascadeclassifier_nvidia_api . cpp <nl> ppp b / samples / gpu / cascadeclassifier_nvidia_api . cpp <nl> const Size2i preferredVideoFrameSize ( 640 , 480 ) ; <nl> const string wndTitle = " NVIDIA Computer Vision : : Haar Classifiers Cascade " ; <nl> <nl> <nl> - void matPrint ( Mat & img , int lineOffsY , Scalar fontColor , const string & ss ) <nl> + static void matPrint ( Mat & img , int lineOffsY , Scalar fontColor , const string & ss ) <nl> { <nl> int fontFace = FONT_HERSHEY_DUPLEX ; <nl> double fontScale = 0 . 8 ; <nl> void matPrint ( Mat & img , int lineOffsY , Scalar fontColor , const string & ss ) <nl> } <nl> <nl> <nl> - void displayState ( Mat & canvas , bool bHelp , bool bGpu , bool bLargestFace , bool bFilter , double fps ) <nl> + static void displayState ( Mat & canvas , bool bHelp , bool bGpu , bool bLargestFace , bool bFilter , double fps ) <nl> { <nl> Scalar fontColorRed = CV_RGB ( 255 , 0 , 0 ) ; <nl> Scalar fontColorNV = CV_RGB ( 118 , 185 , 0 ) ; <nl> void displayState ( Mat & canvas , bool bHelp , bool bGpu , bool bLargestFace , bool bF <nl> } <nl> <nl> <nl> - NCVStatus process ( Mat * srcdst , <nl> + static NCVStatus process ( Mat * srcdst , <nl> Ncv32u width , Ncv32u height , <nl> NcvBool bFilterRects , NcvBool bLargestFace , <nl> HaarClassifierCascadeDescriptor & haar , <nl> int main ( int argc , const char * * argv ) <nl> / / = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = <nl> <nl> namedWindow ( wndTitle , 1 ) ; <nl> - Mat gray , frameDisp ; <nl> + Mat frameDisp ; <nl> <nl> do <nl> { <nl> mmm a / samples / gpu / driver_api_multi . cpp <nl> ppp b / samples / gpu / driver_api_multi . cpp <nl> inline void safeCall_ ( int code , const char * expr , const char * file , int line ) <nl> / / Each GPU is associated with its own context <nl> CUcontext contexts [ 2 ] ; <nl> <nl> - int main ( int argc , char * * argv ) <nl> + int main ( ) <nl> { <nl> - if ( argc > 1 ) <nl> - { <nl> - cout < < " CUDA driver API sample \ n " ; <nl> - return - 1 ; <nl> - } <nl> - <nl> int num_devices = getCudaEnabledDeviceCount ( ) ; <nl> if ( num_devices < 2 ) <nl> { <nl> mmm a / samples / gpu / driver_api_stereo_multi . cpp <nl> ppp b / samples / gpu / driver_api_stereo_multi . cpp <nl> GpuMat d_result [ 2 ] ; <nl> / / CPU result <nl> Mat result ; <nl> <nl> - void printHelp ( ) <nl> + static void printHelp ( ) <nl> { <nl> std : : cout < < " Usage : driver_api_stereo_multi_gpu - - left < left_image > - - right < right_image > \ n " ; <nl> } <nl> mmm a / samples / gpu / opticalflow_nvidia_api . cpp <nl> ppp b / samples / gpu / opticalflow_nvidia_api . cpp <nl> class RgbToMonochrome <nl> class RgbToR <nl> { <nl> public : <nl> - float operator ( ) ( unsigned char b , unsigned char g , unsigned char r ) <nl> + float operator ( ) ( unsigned char / * b * / , unsigned char / * g * / , unsigned char r ) <nl> { <nl> return static_cast < float > ( r ) / 255 . 0f ; <nl> } <nl> class RgbToR <nl> class RgbToG <nl> { <nl> public : <nl> - float operator ( ) ( unsigned char b , unsigned char g , unsigned char r ) <nl> + float operator ( ) ( unsigned char / * b * / , unsigned char g , unsigned char / * r * / ) <nl> { <nl> return static_cast < float > ( g ) / 255 . 0f ; <nl> } <nl> class RgbToG <nl> class RgbToB <nl> { <nl> public : <nl> - float operator ( ) ( unsigned char b , unsigned char g , unsigned char r ) <nl> + float operator ( ) ( unsigned char b , unsigned char / * g * / , unsigned char / * r * / ) <nl> { <nl> return static_cast < float > ( b ) / 255 . 0f ; <nl> } <nl> NCVStatus CopyData ( const IplImage * image , const NCVMatrixAlloc < Ncv32f > & dst ) <nl> return NCV_SUCCESS ; <nl> } <nl> <nl> - NCVStatus LoadImages ( const char * frame0Name , <nl> + static NCVStatus LoadImages ( const char * frame0Name , <nl> const char * frame1Name , <nl> int & width , <nl> int & height , <nl> inline T MapValue ( T x , T a , T b , T c , T d ) <nl> return c + ( d - c ) * ( x - a ) / ( b - a ) ; <nl> } <nl> <nl> - NCVStatus ShowFlow ( NCVMatrixAlloc < Ncv32f > & u , NCVMatrixAlloc < Ncv32f > & v , const char * name ) <nl> + static NCVStatus ShowFlow ( NCVMatrixAlloc < Ncv32f > & u , NCVMatrixAlloc < Ncv32f > & v , const char * name ) <nl> { <nl> IplImage * flowField ; <nl> <nl> NCVStatus ShowFlow ( NCVMatrixAlloc < Ncv32f > & u , NCVMatrixAlloc < Ncv32f > & v , const <nl> return NCV_SUCCESS ; <nl> } <nl> <nl> - IplImage * CreateImage ( NCVMatrixAlloc < Ncv32f > & h_r , NCVMatrixAlloc < Ncv32f > & h_g , NCVMatrixAlloc < Ncv32f > & h_b ) <nl> + static IplImage * CreateImage ( NCVMatrixAlloc < Ncv32f > & h_r , NCVMatrixAlloc < Ncv32f > & h_g , NCVMatrixAlloc < Ncv32f > & h_b ) <nl> { <nl> CvSize imageSize = cvSize ( h_r . width ( ) , h_r . height ( ) ) ; <nl> IplImage * image = cvCreateImage ( imageSize , IPL_DEPTH_8U , 4 ) ; <nl> IplImage * CreateImage ( NCVMatrixAlloc < Ncv32f > & h_r , NCVMatrixAlloc < Ncv32f > & h_g , <nl> return image ; <nl> } <nl> <nl> - void PrintHelp ( ) <nl> + static void PrintHelp ( ) <nl> { <nl> std : : cout < < " Usage help : \ n " ; <nl> std : : cout < < std : : setiosflags ( std : : ios : : left ) ; <nl> void PrintHelp ( ) <nl> std : : cout < < " \ t " < < std : : setw ( 15 ) < < PARAM_HELP < < " - display this help message \ n " ; <nl> } <nl> <nl> - int ProcessCommandLine ( int argc , char * * argv , <nl> + static int ProcessCommandLine ( int argc , char * * argv , <nl> Ncv32f & timeStep , <nl> char * & frame0Name , <nl> char * & frame1Name , <nl> mmm a / samples / gpu / stereo_multi . cpp <nl> ppp b / samples / gpu / stereo_multi . cpp <nl> GpuMat d_result [ 2 ] ; <nl> / / CPU result <nl> Mat result ; <nl> <nl> - void printHelp ( ) <nl> + static void printHelp ( ) <nl> { <nl> std : : cout < < " Usage : stereo_multi_gpu - - left < image > - - right < image > \ n " ; <nl> } <nl>
fixes for gpu module :
opencv/opencv
ae6266e101871796526748950d3ef149319acf3d
2013-01-23T17:05:06Z
mmm a / src / lang / qbittorrent_uk . ts <nl> ppp b / src / lang / qbittorrent_uk . ts <nl> <nl> - < ? xml version = " 1 . 0 " encoding = " utf - 8 " ? > <nl> - < ! DOCTYPE TS > <nl> - < TS version = " 2 . 0 " language = " uk_UA " > <nl> + < ? xml version = " 1 . 0 " ? > < ! DOCTYPE TS > < TS language = " uk " version = " 2 . 0 " > <nl> < context > <nl> < name > AboutDlg < / name > <nl> < message > <nl> + < location filename = " . . / about . ui " line = " 21 " / > <nl> < source > About qBittorrent < / source > <nl> < translation > Про qBittorrent < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / about . ui " line = " 83 " / > <nl> < source > About < / source > <nl> < translation > Про програму < / translation > <nl> < / message > <nl> + < message utf8 = " true " > <nl> + < location filename = " . . / about . ui " line = " 105 " / > <nl> + < source > & lt ; ! DOCTYPE HTML PUBLIC & quot ; - / / W3C / / DTD HTML 4 . 0 / / EN & quot ; & quot ; http : / / www . w3 . org / TR / REC - html40 / strict . dtd & quot ; & gt ; <nl> + & lt ; html & gt ; & lt ; head & gt ; & lt ; meta name = & quot ; qrichtext & quot ; content = & quot ; 1 & quot ; / & gt ; & lt ; style type = & quot ; text / css & quot ; & gt ; <nl> + p , li { white - space : pre - wrap ; } <nl> + & lt ; / style & gt ; & lt ; / head & gt ; & lt ; body style = & quot ; font - family : ' Lucida Grande ' ; font - size : 13pt ; font - weight : 400 ; font - style : normal ; & quot ; & gt ; <nl> + & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; An advanced BitTorrent client programmed in C + + , based on Qt4 toolkit and libtorrent - rasterbar . & lt ; br / & gt ; & lt ; br / & gt ; Copyright Β © 2006 - 2013 The qBittorrent project & lt ; br / & gt ; & lt ; br / & gt ; Home Page : & lt ; a href = & quot ; http : / / www . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; text - decoration : underline ; color : # 0000ff ; & quot ; & gt ; http : / / www . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; / p & gt ; <nl> + & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; Bug Tracker : & lt ; a href = & quot ; http : / / bugs . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; text - decoration : underline ; color : # 0000ff ; & quot ; & gt ; http : / / bugs . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; br / & gt ; Forum : & lt ; a href = & quot ; http : / / forum . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; text - decoration : underline ; color : # 0000ff ; & quot ; & gt ; http : / / forum . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; / p & gt ; <nl> + & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; IRC : # qbittorrent on Freenode & lt ; / p & gt ; & lt ; / body & gt ; & lt ; / html & gt ; < / source > <nl> + < translation type = " unfinished " / > <nl> + < / message > <nl> < message > <nl> + < location filename = " . . / about . ui " line = " 134 " / > <nl> < source > Author < / source > <nl> < translation > Автор < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / about . ui " line = " 222 " / > <nl> + < location filename = " . . / about . ui " line = " 299 " / > <nl> < source > Name : < / source > <nl> < translation > Ім & apos ; я : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / about . ui " line = " 246 " / > <nl> + < location filename = " . . / about . ui " line = " 287 " / > <nl> < source > Country : < / source > <nl> < translation > Країна : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / about . ui " line = " 234 " / > <nl> + < location filename = " . . / about . ui " line = " 318 " / > <nl> < source > E - mail : < / source > <nl> < translation > E - mail : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Christophe Dumez < / source > <nl> - < translation type = " obsolete " > Крістоф Думез < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > France < / source > <nl> - < translation > Франція < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Translation < / source > <nl> - < translation > Переклад < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > License < / source > <nl> - < translation > Ліцензія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > & lt ; h3 & gt ; & lt ; b & gt ; qBittorrent & lt ; / b & gt ; & lt ; / h3 & gt ; < / source > <nl> - < translation type = " obsolete " > & lt ; h3 & gt ; & lt ; b & gt ; qBittorrent & lt ; / b & gt ; & lt ; / h3 & gt ; < / translation > <nl> + < location filename = " . . / about . ui " line = " 268 " / > <nl> + < source > Greece < / source > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < message > <nl> - < source > chris @ qbittorrent . org < / source > <nl> - < translation type = " obsolete " > chris @ qbittorrent . org < / translation > <nl> + < location filename = " . . / about . ui " line = " 347 " / > <nl> + < source > Current maintainer < / source > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < message > <nl> - < source > Thanks to < / source > <nl> - < translation > Подяки < / translation > <nl> - < / message > <nl> - < message utf8 = " true " > <nl> - < source > & lt ; ! DOCTYPE HTML PUBLIC & quot ; - / / W3C / / DTD HTML 4 . 0 / / EN & quot ; & quot ; http : / / www . w3 . org / TR / REC - html40 / strict . dtd & quot ; & gt ; <nl> - & lt ; html & gt ; & lt ; head & gt ; & lt ; meta name = & quot ; qrichtext & quot ; content = & quot ; 1 & quot ; / & gt ; & lt ; style type = & quot ; text / css & quot ; & gt ; <nl> - p , li { white - space : pre - wrap ; } <nl> - & lt ; / style & gt ; & lt ; / head & gt ; & lt ; body style = & quot ; font - family : & apos ; Sans & apos ; ; font - size : 10pt ; font - weight : 400 ; font - style : normal ; & quot ; & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; & quot ; & gt ; A Bittorrent client programmed in C + + , based on Qt4 toolkit & lt ; / span & gt ; & lt ; / p & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; & quot ; & gt ; and libtorrent - rasterbar . & lt ; br / & gt ; & lt ; br / & gt ; Copyright © 2006 - 2010 Christophe Dumez & lt ; br / & gt ; & lt ; br / & gt ; & lt ; / span & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; text - decoration : underline ; & quot ; & gt ; Home Page : & lt ; / span & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; & quot ; & gt ; & lt ; / span & gt ; & lt ; a href = & quot ; http : / / www . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; text - decoration : underline ; color : # 0000ff ; & quot ; & gt ; http : / / www . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; & quot ; & gt ; & lt ; br / & gt ; & lt ; / span & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; text - decoration : underline ; & quot ; & gt ; Forum : & lt ; / span & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; & quot ; & gt ; & lt ; / span & gt ; & lt ; a href = & quot ; http : / / forum . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; text - decoration : underline ; color : # 0000ff ; & quot ; & gt ; http : / / forum . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; / p & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; text - decoration : underline ; & quot ; & gt ; IRC : & lt ; / span & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; & quot ; & gt ; # qbittorrent on Freenode & lt ; / span & gt ; & lt ; / p & gt ; & lt ; / body & gt ; & lt ; / html & gt ; < / source > <nl> - < translation type = " obsolete " > & lt ; ! DOCTYPE HTML PUBLIC & quot ; - / / W3C / / DTD HTML 4 . 0 / / EN & quot ; & quot ; http : / / www . w3 . org / TR / REC - html40 / strict . dtd & quot ; & gt ; <nl> - & lt ; html & gt ; & lt ; head & gt ; & lt ; meta name = & quot ; qrichtext & quot ; content = & quot ; 1 & quot ; / & gt ; & lt ; style type = & quot ; text / css & quot ; & gt ; <nl> - p , li { white - space : pre - wrap ; } <nl> - & lt ; / style & gt ; & lt ; / head & gt ; & lt ; body style = & quot ; font - family : & apos ; Sans & apos ; ; font - size : 10pt ; font - weight : 400 ; font - style : normal ; & quot ; & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; & quot ; & gt ; Bittorrent - клієнт , написаний на C + + , на базі Qt4 & lt ; / span & gt ; & lt ; / p & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; & quot ; & gt ; та libtorrent - rasterbar . & lt ; br / & gt ; & lt ; br / & gt ; Захищено авторським правом © 2006 - 2009 Крістоф Думез & lt ; br / & gt ; & lt ; br / & gt ; & lt ; / span & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; text - decoration : underline ; & quot ; & gt ; Домашня сторінка : & lt ; / span & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; & quot ; & gt ; & lt ; / span & gt ; & lt ; a href = & quot ; http : / / www . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; text - decoration : underline ; color : # 0000ff ; & quot ; & gt ; http : / / www . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; & quot ; & gt ; & lt ; br / & gt ; & lt ; / span & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; text - decoration : underline ; & quot ; & gt ; Форум : & lt ; / span & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; & quot ; & gt ; & lt ; / span & gt ; & lt ; a href = & quot ; http : / / forum . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; text - decoration : underline ; color : # 0000ff ; & quot ; & gt ; http : / / forum . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; / p & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; text - decoration : underline ; & quot ; & gt ; IRC : & lt ; / span & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; & quot ; & gt ; # qbittorrent на Freenode & lt ; / span & gt ; & lt ; / p & gt ; & lt ; / body & gt ; & lt ; / html & gt ; < / translation > <nl> - < / message > <nl> - < message utf8 = " true " > <nl> - < source > & lt ; ! DOCTYPE HTML PUBLIC & quot ; - / / W3C / / DTD HTML 4 . 0 / / EN & quot ; & quot ; http : / / www . w3 . org / TR / REC - html40 / strict . dtd & quot ; & gt ; <nl> - & lt ; html & gt ; & lt ; head & gt ; & lt ; meta name = & quot ; qrichtext & quot ; content = & quot ; 1 & quot ; / & gt ; & lt ; style type = & quot ; text / css & quot ; & gt ; <nl> - p , li { white - space : pre - wrap ; } <nl> - & lt ; / style & gt ; & lt ; / head & gt ; & lt ; body style = & quot ; font - family : & apos ; Ubuntu & apos ; ; font - size : 10pt ; font - weight : 400 ; font - style : normal ; & quot ; & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; & quot ; & gt ; An advanced BitTorrent client programmed in C + + , based on Qt4 toolkit and libtorrent - rasterbar . & lt ; br / & gt ; & lt ; br / & gt ; Copyright © 2006 - 2011 Christophe Dumez & lt ; br / & gt ; & lt ; br / & gt ; & lt ; / span & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; text - decoration : underline ; & quot ; & gt ; Home Page : & lt ; / span & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; & quot ; & gt ; & lt ; / span & gt ; & lt ; a href = & quot ; http : / / www . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; font - family : & apos ; Sans & apos ; ; text - decoration : underline ; color : # 0057ae ; & quot ; & gt ; http : / / www . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; / p & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; text - decoration : underline ; & quot ; & gt ; Bug Tracker : & lt ; / span & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; & quot ; & gt ; & lt ; / span & gt ; & lt ; a href = & quot ; http : / / bugs . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; text - decoration : underline ; color : # 0057ae ; & quot ; & gt ; http : / / bugs . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; & quot ; & gt ; & lt ; br / & gt ; & lt ; / span & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; text - decoration : underline ; & quot ; & gt ; Forum : & lt ; / span & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; & quot ; & gt ; & lt ; / span & gt ; & lt ; a href = & quot ; http : / / forum . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; font - family : & apos ; Sans & apos ; ; text - decoration : underline ; color : # 0057ae ; & quot ; & gt ; http : / / forum . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; / p & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; text - decoration : underline ; & quot ; & gt ; IRC : & lt ; / span & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; & quot ; & gt ; # qbittorrent on Freenode & lt ; / span & gt ; & lt ; / p & gt ; & lt ; / body & gt ; & lt ; / html & gt ; < / source > <nl> - < translation type = " obsolete " > & lt ; ! DOCTYPE HTML PUBLIC & quot ; - / / W3C / / DTD HTML 4 . 0 / / EN & quot ; & quot ; http : / / www . w3 . org / TR / REC - html40 / strict . dtd & quot ; & gt ; <nl> - & lt ; html & gt ; & lt ; head & gt ; & lt ; meta name = & quot ; qrichtext & quot ; content = & quot ; 1 & quot ; / & gt ; & lt ; style type = & quot ; text / css & quot ; & gt ; <nl> - p , li { white - space : pre - wrap ; } <nl> - & lt ; / style & gt ; & lt ; / head & gt ; & lt ; body style = & quot ; font - family : & apos ; Ubuntu & apos ; ; font - size : 10pt ; font - weight : 400 ; font - style : normal ; & quot ; & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; & quot ; & gt ; Клієнт BitTorrent , запрограмований на C + + , на базі Qt4 та libtorrent - rasterbar . & lt ; br / & gt ; & lt ; br / & gt ; Захищено авторським правом © 2006 - 2011 Крістоф Думез & lt ; br / & gt ; & lt ; br / & gt ; & lt ; / span & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; text - decoration : underline ; & quot ; & gt ; Домашня сторінка : & lt ; / span & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; & quot ; & gt ; & lt ; / span & gt ; & lt ; a href = & quot ; http : / / www . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; font - family : & apos ; Sans & apos ; ; text - decoration : underline ; color : # 0057ae ; & quot ; & gt ; http : / / www . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; / p & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; text - decoration : underline ; & quot ; & gt ; Повідомити про помилку : & lt ; / span & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; & quot ; & gt ; & lt ; / span & gt ; & lt ; a href = & quot ; http : / / bugs . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; text - decoration : underline ; color : # 0057ae ; & quot ; & gt ; http : / / bugs . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; & quot ; & gt ; & lt ; br / & gt ; & lt ; / span & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; text - decoration : underline ; & quot ; & gt ; Форум : & lt ; / span & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; & quot ; & gt ; & lt ; / span & gt ; & lt ; a href = & quot ; http : / / forum . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; font - family : & apos ; Sans & apos ; ; text - decoration : underline ; color : # 0057ae ; & quot ; & gt ; http : / / forum . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; / p & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; text - decoration : underline ; & quot ; & gt ; IRC : & lt ; / span & gt ; & lt ; span style = & quot ; font - family : & apos ; DejaVu Sans & apos ; ; & quot ; & gt ; # qbittorrent на Freenode & lt ; / span & gt ; & lt ; / p & gt ; & lt ; / body & gt ; & lt ; / html & gt ; < / translation > <nl> + < location filename = " . . / about . ui " line = " 360 " / > <nl> + < source > Original author < / source > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / about . ui " line = " 414 " / > <nl> < source > Libraries < / source > <nl> < translation > Бібліотеки < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / about . ui " line = " 426 " / > <nl> < source > This version of qBittorrent was built against the following libraries : < / source > <nl> < translation > Дану версію qBittorrent було збудовано з наступними бібліотеками : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Qt : < / source > <nl> - < translation type = " obsolete " > Qt : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Boost : < / source > <nl> - < translation type = " obsolete " > Boost : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Libtorrent : < / source > <nl> - < translation type = " obsolete " > Libtorrent : < / translation > <nl> - < / message > <nl> - < message utf8 = " true " > <nl> - < source > & lt ; ! DOCTYPE HTML PUBLIC & quot ; - / / W3C / / DTD HTML 4 . 0 / / EN & quot ; & quot ; http : / / www . w3 . org / TR / REC - html40 / strict . dtd & quot ; & gt ; <nl> - & lt ; html & gt ; & lt ; head & gt ; & lt ; meta name = & quot ; qrichtext & quot ; content = & quot ; 1 & quot ; / & gt ; & lt ; style type = & quot ; text / css & quot ; & gt ; <nl> - p , li { white - space : pre - wrap ; } <nl> - & lt ; / style & gt ; & lt ; / head & gt ; & lt ; body style = & quot ; font - family : & apos ; Lucida Grande & apos ; ; font - size : 13pt ; font - weight : 400 ; font - style : normal ; & quot ; & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; An advanced BitTorrent client programmed in C + + , based on Qt4 toolkit and libtorrent - rasterbar . & lt ; br / & gt ; & lt ; br / & gt ; Copyright © 2006 - 2012 Christophe Dumez & lt ; br / & gt ; & lt ; br / & gt ; Home Page : & lt ; a href = & quot ; http : / / www . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; text - decoration : underline ; color : # 0000ff ; & quot ; & gt ; http : / / www . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; / p & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; Bug Tracker : & lt ; a href = & quot ; http : / / bugs . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; text - decoration : underline ; color : # 0000ff ; & quot ; & gt ; http : / / bugs . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; br / & gt ; Forum : & lt ; a href = & quot ; http : / / forum . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; text - decoration : underline ; color : # 0000ff ; & quot ; & gt ; http : / / forum . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; / p & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; IRC : # qbittorrent on Freenode & lt ; / p & gt ; & lt ; / body & gt ; & lt ; / html & gt ; < / source > <nl> - < translation type = " obsolete " > & lt ; ! DOCTYPE HTML PUBLIC & quot ; - / / W3C / / DTD HTML 4 . 0 / / EN & quot ; & quot ; http : / / www . w3 . org / TR / REC - html40 / strict . dtd & quot ; & gt ; <nl> - & lt ; html & gt ; & lt ; head & gt ; & lt ; meta name = & quot ; qrichtext & quot ; content = & quot ; 1 & quot ; / & gt ; & lt ; style type = & quot ; text / css & quot ; & gt ; <nl> - p , li { white - space : pre - wrap ; } <nl> - & lt ; / style & gt ; & lt ; / head & gt ; & lt ; body style = & quot ; font - family : & apos ; Lucida Grande & apos ; ; font - size : 13pt ; font - weight : 400 ; font - style : normal ; & quot ; & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; Клієнт BitTorrent , запрограмований на C + + , на основі Qt4 та libtorrent - rasterbar . & lt ; br / & gt ; & lt ; br / & gt ; Захищено авторським правом © 2006 - 2012 Крістоф Думез & lt ; br / & gt ; & lt ; br / & gt ; Домашня сторінка : & lt ; a href = & quot ; http : / / www . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; text - decoration : underline ; color : # 0000ff ; & quot ; & gt ; http : / / www . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; / p & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; Повідомити про помилку : & lt ; a href = & quot ; http : / / bugs . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; text - decoration : underline ; color : # 0000ff ; & quot ; & gt ; http : / / bugs . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; br / & gt ; Форум : & lt ; a href = & quot ; http : / / forum . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; text - decoration : underline ; color : # 0000ff ; & quot ; & gt ; http : / / forum . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; / p & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; IRC : # qbittorrent на Freenode & lt ; / p & gt ; & lt ; / body & gt ; & lt ; / html & gt ; < / translation > <nl> - < / message > <nl> - < message utf8 = " true " > <nl> - < source > & lt ; ! DOCTYPE HTML PUBLIC & quot ; - / / W3C / / DTD HTML 4 . 0 / / EN & quot ; & quot ; http : / / www . w3 . org / TR / REC - html40 / strict . dtd & quot ; & gt ; <nl> - & lt ; html & gt ; & lt ; head & gt ; & lt ; meta name = & quot ; qrichtext & quot ; content = & quot ; 1 & quot ; / & gt ; & lt ; style type = & quot ; text / css & quot ; & gt ; <nl> - p , li { white - space : pre - wrap ; } <nl> - & lt ; / style & gt ; & lt ; / head & gt ; & lt ; body style = & quot ; font - family : & apos ; Lucida Grande & apos ; ; font - size : 13pt ; font - weight : 400 ; font - style : normal ; & quot ; & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; An advanced BitTorrent client programmed in C + + , based on Qt4 toolkit and libtorrent - rasterbar . & lt ; br / & gt ; & lt ; br / & gt ; Copyright © 2006 - 2013 Christophe Dumez & lt ; br / & gt ; & lt ; br / & gt ; Home Page : & lt ; a href = & quot ; http : / / www . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; text - decoration : underline ; color : # 0000ff ; & quot ; & gt ; http : / / www . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; / p & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; Bug Tracker : & lt ; a href = & quot ; http : / / bugs . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; text - decoration : underline ; color : # 0000ff ; & quot ; & gt ; http : / / bugs . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; br / & gt ; Forum : & lt ; a href = & quot ; http : / / forum . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; text - decoration : underline ; color : # 0000ff ; & quot ; & gt ; http : / / forum . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; / p & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; IRC : # qbittorrent on Freenode & lt ; / p & gt ; & lt ; / body & gt ; & lt ; / html & gt ; < / source > <nl> - < translation type = " obsolete " > & lt ; ! DOCTYPE HTML PUBLIC & quot ; - / / W3C / / DTD HTML 4 . 0 / / EN & quot ; & quot ; http : / / www . w3 . org / TR / REC - html40 / strict . dtd & quot ; & gt ; <nl> - & lt ; html & gt ; & lt ; head & gt ; & lt ; meta name = & quot ; qrichtext & quot ; content = & quot ; 1 & quot ; / & gt ; & lt ; style type = & quot ; text / css & quot ; & gt ; <nl> - p , li { white - space : pre - wrap ; } <nl> - & lt ; / style & gt ; & lt ; / head & gt ; & lt ; body style = & quot ; font - family : & apos ; Lucida Grande & apos ; ; font - size : 13pt ; font - weight : 400 ; font - style : normal ; & quot ; & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; Клієнт BitTorrent , запрограмований на C + + , на основі Qt4 та libtorrent - rasterbar . & lt ; br / & gt ; & lt ; br / & gt ; Захищено авторським правом © 2006 - 2012 Крістоф Думез & lt ; br / & gt ; & lt ; br / & gt ; Домашня сторінка : & lt ; a href = & quot ; http : / / www . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; text - decoration : underline ; color : # 0000ff ; & quot ; & gt ; http : / / www . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; / p & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; Повідомити про помилку : & lt ; a href = & quot ; http : / / bugs . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; text - decoration : underline ; color : # 0000ff ; & quot ; & gt ; http : / / bugs . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; br / & gt ; Форум : & lt ; a href = & quot ; http : / / forum . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; text - decoration : underline ; color : # 0000ff ; & quot ; & gt ; http : / / forum . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; / p & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; IRC : # qbittorrent на Freenode & lt ; / p & gt ; & lt ; / body & gt ; & lt ; / html & gt ; { 3C ? } { 4 . 0 / ? } { 3 . ? } { 40 / ? } { 1 & quot ; ? } { 13p ? } { 400 ; ? } { 0p ? } { 0p ? } { 0p ? } { 0p ? } { 0 ; ? } { 0p ? } { 4 ? } { 2006 - 2013 ? } { 0000f ? } { 0p ? } { 0p ? } { 0p ? } { 0p ? } { 0 ; ? } { 0p ? } { 0000f ? } { 0000f ? } { 0p ? } { 0p ? } { 0p ? } { 0p ? } { 0 ; ? } { 0p ? } < / translation > <nl> + < location filename = " . . / about . ui " line = " 190 " / > <nl> + < source > France < / source > <nl> + < translation > Франція < / translation > <nl> < / message > <nl> < message > <nl> - < source > Greece < / source > <nl> - < translation type = " unfinished " > Греція < / translation > <nl> + < location filename = " . . / about . ui " line = " 384 " / > <nl> + < source > Translation < / source > <nl> + < translation > Переклад < / translation > <nl> < / message > <nl> < message > <nl> - < source > Current maintainer < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < location filename = " . . / about . ui " line = " 401 " / > <nl> + < source > License < / source > <nl> + < translation > Ліцензія < / translation > <nl> < / message > <nl> < message > <nl> - < source > Original author < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> - < / message > <nl> - < message utf8 = " true " > <nl> - < source > & lt ; ! DOCTYPE HTML PUBLIC & quot ; - / / W3C / / DTD HTML 4 . 0 / / EN & quot ; & quot ; http : / / www . w3 . org / TR / REC - html40 / strict . dtd & quot ; & gt ; <nl> - & lt ; html & gt ; & lt ; head & gt ; & lt ; meta name = & quot ; qrichtext & quot ; content = & quot ; 1 & quot ; / & gt ; & lt ; style type = & quot ; text / css & quot ; & gt ; <nl> - p , li { white - space : pre - wrap ; } <nl> - & lt ; / style & gt ; & lt ; / head & gt ; & lt ; body style = & quot ; font - family : & apos ; Lucida Grande & apos ; ; font - size : 13pt ; font - weight : 400 ; font - style : normal ; & quot ; & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; An advanced BitTorrent client programmed in C + + , based on Qt4 toolkit and libtorrent - rasterbar . & lt ; br / & gt ; & lt ; br / & gt ; Copyright Β © 2006 - 2013 The qBittorrent project & lt ; br / & gt ; & lt ; br / & gt ; Home Page : & lt ; a href = & quot ; http : / / www . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; text - decoration : underline ; color : # 0000ff ; & quot ; & gt ; http : / / www . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; / p & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; Bug Tracker : & lt ; a href = & quot ; http : / / bugs . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; text - decoration : underline ; color : # 0000ff ; & quot ; & gt ; http : / / bugs . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; br / & gt ; Forum : & lt ; a href = & quot ; http : / / forum . qbittorrent . org & quot ; & gt ; & lt ; span style = & quot ; text - decoration : underline ; color : # 0000ff ; & quot ; & gt ; http : / / forum . qbittorrent . org & lt ; / span & gt ; & lt ; / a & gt ; & lt ; / p & gt ; <nl> - & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; IRC : # qbittorrent on Freenode & lt ; / p & gt ; & lt ; / body & gt ; & lt ; / html & gt ; < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < location filename = " . . / about . ui " line = " 371 " / > <nl> + < source > Thanks to < / source > <nl> + < translation > Подяки < / translation > <nl> < / message > <nl> < / context > <nl> < context > <nl> < name > AddNewTorrentDialog < / name > <nl> < message > <nl> - < source > Dialog < / source > <nl> - < translation type = " obsolete " > Діалогове вікно < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / addnewtorrentdialog . ui " line = " 29 " / > <nl> < source > Save as < / source > <nl> < translation > Зберегти як < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . ui " line = " 45 " / > <nl> < source > Set as default save path < / source > <nl> < translation > Зробити стандартним шляхом збереження < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . ui " line = " 55 " / > <nl> < source > Never show again < / source > <nl> < translation > Більше ніколи не показувати < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . ui " line = " 72 " / > <nl> < source > Torrent settings < / source > <nl> < translation > Налаштування торрента < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . ui " line = " 78 " / > <nl> < source > Start torrent < / source > <nl> < translation > Запустити торрент < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . ui " line = " 90 " / > <nl> < source > Label : < / source > <nl> < translation > Мітка : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . ui " line = " 109 " / > <nl> < source > Skip hash check < / source > <nl> < translation > Пропустити перевірку хешу < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . ui " line = " 119 " / > <nl> < source > Torrent Information < / source > <nl> < translation > Інформація про торрент < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . ui " line = " 127 " / > <nl> < source > Size : < / source > <nl> < translation > Розмір : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . ui " line = " 141 " / > <nl> < source > Comment : < / source > <nl> < translation > Коментар : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . ui " line = " 155 " / > <nl> < source > Date : < / source > <nl> < translation > Дата : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . ui " line = " 217 " / > <nl> < source > Normal < / source > <nl> < translation > Нормальний < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . ui " line = " 222 " / > <nl> < source > High < / source > <nl> < translation > Високий < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . ui " line = " 227 " / > <nl> < source > Maximum < / source > <nl> < translation > Максимальний < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . ui " line = " 232 " / > <nl> < source > Do not download < / source > <nl> < translation > Не завантажувати < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . cpp " line = " 71 " / > <nl> < source > Other . . . < / source > <nl> < comment > Other save path . . . < / comment > <nl> < translation > Інший . . . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . cpp " line = " 169 " / > <nl> < source > I / O Error < / source > <nl> < translation > Помилка вводу / виводу < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . cpp " line = " 169 " / > <nl> < source > The torrent file does not exist . < / source > <nl> < translation > Цей файл торрента не існує . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . cpp " line = " 177 " / > <nl> < source > Invalid torrent < / source > <nl> < translation > Некоректний торрент < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . cpp " line = " 177 " / > <nl> + < source > Failed to load the torrent : % 1 < / source > <nl> + < translation > Не вдалось завантажити торрент : % 1 < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / addnewtorrentdialog . cpp " line = " 187 " / > <nl> < source > Not available < / source > <nl> < translation > Недоступно < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . cpp " line = " 246 " / > <nl> < source > Invalid magnet link < / source > <nl> < translation > Неправильне магнітне посилання < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . cpp " line = " 246 " / > <nl> < source > This magnet link was not recognized < / source > <nl> < translation > Це магнітне посилання не було розпізнано < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . cpp " line = " 252 " / > <nl> < source > Magnet link < / source > <nl> < translation > Магнітне посилання < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . cpp " line = " 318 " / > <nl> < source > Disk space : % 1 < / source > <nl> < translation > Місця на диску : % 1 < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . cpp " line = " 336 " / > <nl> + < location filename = " . . / addnewtorrentdialog . cpp " line = " 343 " / > <nl> + < location filename = " . . / addnewtorrentdialog . cpp " line = " 345 " / > <nl> < source > Choose save path < / source > <nl> < translation > Виберіть шлях збереження < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . cpp " line = " 397 " / > <nl> < source > Rename the file < / source > <nl> < translation > Перейменувати файл < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . cpp " line = " 398 " / > <nl> < source > New name : < / source > <nl> < translation > Нова назва : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . cpp " line = " 402 " / > <nl> + < location filename = " . . / addnewtorrentdialog . cpp " line = " 428 " / > <nl> < source > The file could not be renamed < / source > <nl> < translation > Файл не вдалося перейменувати < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . cpp " line = " 403 " / > <nl> < source > This file name contains forbidden characters , please choose a different one . < / source > <nl> < translation > Ця назва файлу містить заборонені символи . Будь ласка , виберіть іншу . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . cpp " line = " 429 " / > <nl> + < location filename = " . . / addnewtorrentdialog . cpp " line = " 464 " / > <nl> < source > This name is already in use in this folder . Please use a different name . < / source > <nl> < translation > Ця назва вже використовується в даній папці . Будь ласка , виберіть іншу . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . cpp " line = " 463 " / > <nl> < source > The folder could not be renamed < / source > <nl> < translation > Цю папку не вдалося перейменувати < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . cpp " line = " 522 " / > <nl> < source > Rename . . . < / source > <nl> < translation > Перейменувати . . . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / addnewtorrentdialog . cpp " line = " 526 " / > <nl> < source > Priority < / source > <nl> < translation > Пріоритет < / translation > <nl> < / message > <nl> - < message > <nl> - < source > Failed to load the torrent : % 1 < / source > <nl> - < translation > Не вдалось завантажити торрент : % 1 < / translation > <nl> - < / message > <nl> < / context > <nl> < context > <nl> < name > AdvancedSettings < / name > <nl> < message > <nl> - < source > Property < / source > <nl> - < translation type = " obsolete " > Властивість < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Value < / source > <nl> - < translation type = " obsolete " > Значення < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 184 " / > <nl> < source > Disk write cache size < / source > <nl> < translation > Розмір дискового кешу < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 173 " / > <nl> < source > MiB < / source > <nl> < translation > МіБ < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 197 " / > <nl> < source > Outgoing ports ( Min ) [ 0 : Disabled ] < / source > <nl> < translation > Вихідні порти ( нижня межа ) [ 0 : Вимкнено ] < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 202 " / > <nl> < source > Outgoing ports ( Max ) [ 0 : Disabled ] < / source > <nl> < translation > Вихідні порти ( верхня межа ) [ 0 : Вимкнено ] < / translation > <nl> < / message > <nl> < message > <nl> - < source > Ignore transfer limits on local network < / source > <nl> - < translation > Ігнорувати обмеження швидкості для локальної мережі < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Include TCP / IP overhead in transfer limits < / source > <nl> - < translation type = " obsolete " > Включати заголовки протоколу в ліміти швидкості < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 208 " / > <nl> < source > Recheck torrents on completion < / source > <nl> < translation > Перепровіряти торренти після завантаження < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 214 " / > <nl> < source > Transfer list refresh interval < / source > <nl> < translation > Інтервал оновлення списку завантажень < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 213 " / > <nl> < source > ms < / source > <nl> < comment > milliseconds < / comment > <nl> < translation > мс < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 59 " / > <nl> + < source > Setting < / source > <nl> + < translation > Налаштування < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 59 " / > <nl> + < source > Value < / source > <nl> + < comment > Value set for this setting < / comment > <nl> + < translation > Значення < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 171 " / > <nl> + < source > ( auto ) < / source > <nl> + < translation type = " unfinished " / > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 190 " / > <nl> + < source > s < / source > <nl> + < comment > seconds < / comment > <nl> + < translation type = " unfinished " / > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 191 " / > <nl> + < source > Disk cache expiry interval < / source > <nl> + < translation type = " unfinished " / > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 217 " / > <nl> < source > Resolve peer countries ( GeoIP ) < / source > <nl> < translation > Дізнаватись країну сервера ( GeoIP ) < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 220 " / > <nl> < source > Resolve peer host names < / source > <nl> < translation > Дізнаватись адресу сервера < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 225 " / > <nl> < source > Maximum number of half - open connections [ 0 : Disabled ] < / source > <nl> < translation > Максимальна кількість напіввідкритих з & apos ; єднань [ 0 : Вимкнено ] < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 228 " / > <nl> < source > Strict super seeding < / source > <nl> < translation > Строге супер - сідування < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 248 " / > <nl> < source > Network Interface ( requires restart ) < / source > <nl> < translation > Мережевий інтерфейс ( потребує перезапуску ) < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 276 " / > <nl> + < source > Exchange trackers with other peers < / source > <nl> + < translation > Обмінюватись трекерами з іншими пірами < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 279 " / > <nl> + < source > Always announce to all trackers < / source > <nl> + < translation > Отримувати пірів з усіх трекерів < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 230 " / > <nl> < source > Any interface < / source > <nl> < comment > i . e . Any network interface < / comment > <nl> < translation > Будь - який інтерфейс < / translation > <nl> < / message > <nl> < message > <nl> - < source > Display program notification baloons < / source > <nl> - < translation type = " obsolete " > Відображати сповіщення програми < / translation > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 251 " / > <nl> + < source > IP Address to report to trackers ( requires restart ) < / source > <nl> + < translation > IP адреса , що повідомляється трекерам ( потребує перезапуску ) < / translation > <nl> < / message > <nl> < message > <nl> - < source > Display program notification balloons < / source > <nl> - < translation type = " obsolete " > Відображати сповіщення програми < / translation > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 254 " / > <nl> + < source > Display program on - screen notifications < / source > <nl> + < translation > Відображати сповіщення програми на екрані < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 257 " / > <nl> < source > Enable embedded tracker < / source > <nl> < translation > Увімкнути вбудований трекер < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 262 " / > <nl> < source > Embedded tracker port < / source > <nl> < translation > Порт вбудованого трекера < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 265 " / > <nl> < source > Check for software updates < / source > <nl> < translation > Перевірити оновлення програмного забезпечення < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 269 " / > <nl> < source > Use system icon theme < / source > <nl> < translation > Використовувати системну тему іконок < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 273 " / > <nl> < source > Confirm torrent deletion < / source > <nl> < translation > Підтверджувати видалення торрентів < / translation > <nl> < / message > <nl> < message > <nl> - < source > IP Address to report to trackers ( requires restart ) < / source > <nl> - < translation > IP адреса , що повідомляється трекерам ( потребує перезапуску ) < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Display program on - screen notifications < / source > <nl> - < translation > Відображати сповіщення програми на екрані < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Setting < / source > <nl> - < translation > Налаштування < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Value < / source > <nl> - < comment > Value set for this setting < / comment > <nl> - < translation > Значення < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Exchange trackers with other peers < / source > <nl> - < translation > Обмінюватись трекерами з іншими пірами < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Always announce to all trackers < / source > <nl> - < translation > Отримувати пірів з усіх трекерів < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > ( auto ) < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > s < / source > <nl> - < comment > seconds < / comment > <nl> - < translation type = " unfinished " > < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Disk cache expiry interval < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < location filename = " . . / preferences / advancedsettings . h " line = " 205 " / > <nl> + < source > Ignore transfer limits on local network < / source > <nl> + < translation > Ігнорувати обмеження швидкості для локальної мережі < / translation > <nl> < / message > <nl> < / context > <nl> < context > <nl> < name > AutomatedRssDownloader < / name > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . ui " line = " 14 " / > <nl> < source > Automated RSS Downloader < / source > <nl> < translation > Автоматичний завантажувач RSS < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . ui " line = " 26 " / > <nl> < source > Enable the automated RSS downloader < / source > <nl> < translation > Увімкнути автоматичний завантажувач RSS < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . ui " line = " 48 " / > <nl> < source > Download rules < / source > <nl> < translation > Правила завантаження < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . ui " line = " 123 " / > <nl> < source > Rule definition < / source > <nl> < translation > Означення правила < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . ui " line = " 138 " / > <nl> < source > Must contain : < / source > <nl> < translation > Повинно містити : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . ui " line = " 180 " / > <nl> < source > Must not contain : < / source > <nl> < translation > Не може містити : < / translation > <nl> < / message > <nl> < message > <nl> - < source > . . . < / source > <nl> - < translation type = " obsolete " > . . . < / translation > <nl> + < location filename = " . . / rss / automatedrssdownloader . ui " line = " 129 " / > <nl> + < source > Use regular expressions < / source > <nl> + < translation > Використовувати регулярні вирази < / translation > <nl> < / message > <nl> < message > <nl> - < source > Assign label : < / source > <nl> - < translation > Призначити мітку : < / translation > <nl> + < location filename = " . . / rss / automatedrssdownloader . ui " line = " 355 " / > <nl> + < source > Import . . . < / source > <nl> + < translation > Імпорт . . . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Apply rule to feeds : < / source > <nl> - < translation > Застосувати правило до подач : < / translation > <nl> + < location filename = " . . / rss / automatedrssdownloader . ui " line = " 362 " / > <nl> + < source > Export . . . < / source > <nl> + < translation > Експорт . . . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Matching RSS articles < / source > <nl> - < translation > Підходящі RSS - статті < / translation > <nl> + < location filename = " . . / rss / automatedrssdownloader . ui " line = " 233 " / > <nl> + < source > Assign label : < / source > <nl> + < translation > Призначити мітку : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . ui " line = " 252 " / > <nl> < source > Save to a different directory < / source > <nl> < translation > Зберегти в іншу папку < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . ui " line = " 264 " / > <nl> < source > Save to : < / source > <nl> < translation > Зберегти у : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Import . . . < / source > <nl> - < translation > Імпорт . . . < / translation > <nl> + < location filename = " . . / rss / automatedrssdownloader . ui " line = " 308 " / > <nl> + < source > Apply rule to feeds : < / source > <nl> + < translation > Застосувати правило до подач : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Export . . . < / source > <nl> - < translation > Експорт . . . < / translation > <nl> + < location filename = " . . / rss / automatedrssdownloader . ui " line = " 330 " / > <nl> + < source > Matching RSS articles < / source > <nl> + < translation > Підходящі RSS - статті < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 312 " / > <nl> < source > New rule name < / source > <nl> < translation > Нова назва правила < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 312 " / > <nl> < source > Please type the name of the new download rule . < / source > <nl> < translation > Будь ласка , введіть назву нового правила завантаження . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 316 " / > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 431 " / > <nl> < source > Rule name conflict < / source > <nl> < translation > Конфлікт назв правил < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 316 " / > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 431 " / > <nl> < source > A rule with this name already exists , please choose another name . < / source > <nl> < translation > Правило з цією назвою вже існує , будь ласка , оберіть іншу назву . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 334 " / > <nl> < source > Are you sure you want to remove the download rule named % 1 ? < / source > <nl> < translation > Ви випевнені , що хочете видалити правило & quot ; % 1 & quot ; ? < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 336 " / > <nl> < source > Are you sure you want to remove the selected download rules ? < / source > <nl> < translation > Ви дійсно хочете видалити вибрані правила завантаження ? < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 337 " / > <nl> < source > Rule deletion confirmation < / source > <nl> < translation > Підтвердження видалення правила < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 353 " / > <nl> < source > Destination directory < / source > <nl> < translation > Папка призначення < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 361 " / > <nl> < source > Invalid action < / source > <nl> < translation > Неправильна дія < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 361 " / > <nl> < source > The list is empty , there is nothing to export . < / source > <nl> < translation > Список пустий , нічого експортувати . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 365 " / > <nl> < source > Where would you like to save the list ? < / source > <nl> < translation > Де б ви хотіли зберегти список ? < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 365 " / > <nl> < source > Rules list ( * . rssrules ) < / source > <nl> < translation > Список правил ( * . rssrules ) < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 370 " / > <nl> < source > I / O Error < / source > <nl> < translation > Помилка вводу / виводу < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 370 " / > <nl> < source > Failed to create the destination file < / source > <nl> < translation > Не вдалося створити папку призначення < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 378 " / > <nl> < source > Please point to the RSS download rules file < / source > <nl> < translation > Будь ласка , вкажіть файл правил завантаження RSS < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 378 " / > <nl> < source > Rules list ( * . rssrules * . filters ) < / source > <nl> < translation > Список правил ( * . rssrules * . filters ) < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 382 " / > <nl> < source > Import Error < / source > <nl> < translation > Помилка імпорту < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 382 " / > <nl> < source > Failed to import the selected rules file < / source > <nl> < translation > Не вдалось імпортувати вибраний файл правил < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 393 " / > <nl> < source > Add new rule . . . < / source > <nl> < translation > Додати нове правило . . . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 399 " / > <nl> < source > Delete rule < / source > <nl> < translation > Видалити правило < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 401 " / > <nl> < source > Rename rule . . . < / source > <nl> < translation > Перейменувати правило . . . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 403 " / > <nl> < source > Delete selected rules < / source > <nl> < translation > Видалити позначені правила < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 427 " / > <nl> < source > Rule renaming < / source > <nl> < translation > Перейменування правила < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 427 " / > <nl> < source > Please type the new rule name < / source > <nl> < translation > Будь ласка , введіть нову назву правила < / translation > <nl> < / message > <nl> < message > <nl> - < source > Use regular expressions < / source > <nl> - < translation > Використовувати регулярні вирази < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 531 " / > <nl> < source > Regex mode : use Perl - like regular expressions < / source > <nl> < translation > Режим рег . виразів : Perl - подібні < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 535 " / > <nl> < source > Wildcard mode : you can use & lt ; ul & gt ; & lt ; li & gt ; ? to match any single character & lt ; / li & gt ; & lt ; li & gt ; * to match zero or more of any characters & lt ; / li & gt ; & lt ; li & gt ; Whitespaces count as AND operators & lt ; / li & gt ; & lt ; / ul & gt ; < / source > <nl> < translation > Режим шаблонів : можна використовувати & lt ; ul & gt ; & lt ; li & gt ; ? для позначення будь - якого символа & lt ; / li & gt ; & lt ; li & gt ; * для позначення 0 або більше символів & lt ; / li & gt ; & lt ; li & gt ; Пробіли вважаються операторами AND ( і ) & lt ; / li & gt ; & lt ; / ul & gt ; < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / automatedrssdownloader . cpp " line = " 537 " / > <nl> < source > Wildcard mode : you can use & lt ; ul & gt ; & lt ; li & gt ; ? to match any single character & lt ; / li & gt ; & lt ; li & gt ; * to match zero or more of any characters & lt ; / li & gt ; & lt ; li & gt ; | is used as OR operator & lt ; / li & gt ; & lt ; / ul & gt ; < / source > <nl> < translation > Режим шаблонів : можна використовувати & lt ; ul & gt ; & lt ; li & gt ; ? для позначення будь - якого символа & lt ; / li & gt ; & lt ; li & gt ; * для позначення 0 або більше символів & lt ; / li & gt ; & lt ; li & gt ; | використовується як оператор OR ( або ) & lt ; / li & gt ; & lt ; / ul & gt ; < / translation > <nl> < / message > <nl> < / context > <nl> < context > <nl> - < name > Bittorrent < / name > <nl> + < name > CookiesDlg < / name > <nl> < message > <nl> - < source > % 1 reached the maximum ratio you set . < / source > <nl> - < translation type = " obsolete " > % 1 досяг максимального коефіцієнта , налаштованого вами . < / translation > <nl> + < location filename = " . . / rss / cookiesdlg . ui " line = " 14 " / > <nl> + < source > Cookies management < / source > <nl> + < translation > Керування Cookies < / translation > <nl> < / message > <nl> < message > <nl> - < source > qBittorrent is bound to port : TCP / % 1 < / source > <nl> - < comment > e . g : qBittorrent is bound to port : 6881 < / comment > <nl> - < translation type = " obsolete " > qBittorrent використовує порт : % 1 < / translation > <nl> + < location filename = " . . / rss / cookiesdlg . ui " line = " 36 " / > <nl> + < source > Key < / source > <nl> + < extracomment > As in Key / Value pair < / extracomment > <nl> + < translation > Ключ < / translation > <nl> < / message > <nl> < message > <nl> - < source > UPnP support [ ON ] < / source > <nl> - < translation type = " obsolete " > Підтримка UNnP [ Увімкнено ] < / translation > <nl> + < location filename = " . . / rss / cookiesdlg . ui " line = " 41 " / > <nl> + < source > Value < / source > <nl> + < extracomment > As in Key / Value pair < / extracomment > <nl> + < translation > Значення < / translation > <nl> < / message > <nl> < message > <nl> - < source > UPnP support [ OFF ] < / source > <nl> - < translation type = " obsolete " > Підтримка UPnP [ Вимкнено ] < / translation > <nl> + < location filename = " . . / rss / cookiesdlg . cpp " line = " 48 " / > <nl> + < source > Common keys for cookies are : ' % 1 ' , ' % 2 ' . <nl> + You should get this information from your Web browser preferences . < / source > <nl> + < translation > Звичайні ключі для cookies : & apos ; % 1 & apos ; , & apos ; % 2 & apos ; . <nl> + Цю інформацію можна отримати з налаштувань веб - браузера . < / translation > <nl> < / message > <nl> + < / context > <nl> + < context > <nl> + < name > DNSUpdater < / name > <nl> < message > <nl> - < source > NAT - PMP support [ ON ] < / source > <nl> - < translation type = " obsolete " > Підтримка NAT - PMP [ Увімкнено ] < / translation > <nl> + < location filename = " . . / dnsupdater . cpp " line = " 178 " / > <nl> + < source > Your dynamic DNS was successfully updated . < / source > <nl> + < translation > Ваш динамічний DNS було успішно оновлено . < / translation > <nl> < / message > <nl> < message > <nl> - < source > NAT - PMP support [ OFF ] < / source > <nl> - < translation type = " obsolete " > Підтримка NAT - PMP [ Вимкнено ] < / translation > <nl> + < location filename = " . . / dnsupdater . cpp " line = " 182 " / > <nl> + < source > Dynamic DNS error : The service is temporarily unavailable , it will be retried in 30 minutes . < / source > <nl> + < translation > Помилка динамічного DNS : Сервіс тимчасово недоступний ; повторна спроба за 30 хвилин . < / translation > <nl> < / message > <nl> < message > <nl> - < source > DHT support [ ON ] , port : UDP / % 1 < / source > <nl> - < translation type = " obsolete " > Підтримка DHT [ Увімкнено ] , порт : UDP / % 1 < / translation > <nl> + < location filename = " . . / dnsupdater . cpp " line = " 192 " / > <nl> + < source > Dynamic DNS error : hostname supplied does not exist under specified account . < / source > <nl> + < translation > Помилка динамічного DNS : наданий домен не існує в зазначеному обліковому записі . < / translation > <nl> < / message > <nl> < message > <nl> - < source > DHT support [ OFF ] < / source > <nl> - < translation type = " obsolete " > Підтримка DHT [ Вимкнено ] < / translation > <nl> + < location filename = " . . / dnsupdater . cpp " line = " 198 " / > <nl> + < source > Dynamic DNS error : Invalid username / password . < / source > <nl> + < translation > Помилка динамічного DNS : Неправильний логін або пароль . < / translation > <nl> < / message > <nl> < message > <nl> - < source > PeX support [ ON ] < / source > <nl> - < translation type = " obsolete " > Підтримка PeX [ Увімкнено ] < / translation > <nl> + < location filename = " . . / dnsupdater . cpp " line = " 203 " / > <nl> + < source > Dynamic DNS error : qBittorrent was blacklisted by the service , please report a bug at http : / / bugs . qbittorrent . org . < / source > <nl> + < translation > Помилка динамічного DNS : qBittorrent додано в чорний список сервісу ; будь ласка , повідомте про це на http : / / bugs . qbittorrent . org . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Local Peer Discovery [ ON ] < / source > <nl> - < translation type = " obsolete " > Пошук Локальних Пірів [ Увімкнено ] < / translation > <nl> + < location filename = " . . / dnsupdater . cpp " line = " 209 " / > <nl> + < source > Dynamic DNS error : % 1 was returned by the service , please report a bug at http : / / bugs . qbittorrent . org . < / source > <nl> + < translation > Помилка динамічного DNS : Сервіс повернув % 1 ; будь ласка , повідомте про помилку на http : / / bugs . qbittorrent . org . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Local Peer Discovery support [ OFF ] < / source > <nl> - < translation type = " obsolete " > Пошук Локальних Пірів [ Вимкнено ] < / translation > <nl> + < location filename = " . . / dnsupdater . cpp " line = " 215 " / > <nl> + < source > Dynamic DNS error : Your username was blocked due to abuse . < / source > <nl> + < translation > Помилка динамічного DNS : Ваш логін заблоковано через зловживання . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Encryption support [ ON ] < / source > <nl> - < translation type = " obsolete " > Підтримка шифрування [ Увімкнено ] < / translation > <nl> + < location filename = " . . / dnsupdater . cpp " line = " 236 " / > <nl> + < source > Dynamic DNS error : supplied domain name is invalid . < / source > <nl> + < translation > Помилка динамічного DNS : наданий домен неправильний . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Encryption support [ FORCED ] < / source > <nl> - < translation type = " obsolete " > Підтримка шифрування [ Примусова ] < / translation > <nl> + < location filename = " . . / dnsupdater . cpp " line = " 248 " / > <nl> + < source > Dynamic DNS error : supplied username is too short . < / source > <nl> + < translation > Помилка динамічного DNS : наданий логін закороткий . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Encryption support [ OFF ] < / source > <nl> - < translation type = " obsolete " > Підтримка шифрування [ Вимкнено ] < / translation > <nl> + < location filename = " . . / dnsupdater . cpp " line = " 260 " / > <nl> + < source > Dynamic DNS error : supplied password is too short . < / source > <nl> + < translation > Помилка динамічного DNS : наданий пароль закороткий . < / translation > <nl> < / message > <nl> + < / context > <nl> + < context > <nl> + < name > DownloadThread < / name > <nl> < message > <nl> - < source > Web User Interface Error - Unable to bind Web UI to port % 1 < / source > <nl> - < translation type = " obsolete " > Помилка Веб - інтерфейсу - Не можу приєднати Веб - інтерфейс до порту % 1 < / translation > <nl> + < location filename = " . . / downloadthread . cpp " line = " 157 " / > <nl> + < location filename = " . . / downloadthread . cpp " line = " 161 " / > <nl> + < source > I / O Error < / source > <nl> + < translation > Помилка вводу / виводу < / translation > <nl> < / message > <nl> < message > <nl> - < source > & apos ; % 1 & apos ; was removed from transfer list and hard disk . < / source > <nl> - < comment > & apos ; xxx . avi & apos ; was removed . . . < / comment > <nl> - < translation type = " obsolete " > & apos ; % 1 & apos ; було видалено із списку завантажень і жорсткого диску . < / translation > <nl> + < location filename = " . . / downloadthread . cpp " line = " 252 " / > <nl> + < source > The remote host name was not found ( invalid hostname ) < / source > <nl> + < translation > Віддалений сервер не знайдено ( неправильна адреса ) < / translation > <nl> < / message > <nl> < message > <nl> - < source > & apos ; % 1 & apos ; was removed from transfer list . < / source > <nl> - < comment > & apos ; xxx . avi & apos ; was removed . . . < / comment > <nl> - < translation type = " obsolete " > & apos ; % 1 & apos ; було видалено із списку завантажень . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > & apos ; % 1 & apos ; is not a valid magnet URI . < / source > <nl> - < translation type = " obsolete " > & apos ; % 1 & apos ; не є правильним магнітним посиланням . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > & apos ; % 1 & apos ; is already in download list . < / source > <nl> - < comment > e . g : & apos ; xxx . avi & apos ; is already in download list . < / comment > <nl> - < translation type = " obsolete " > & apos ; % 1 & apos ; вже є у списку завантажень . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > & apos ; % 1 & apos ; resumed . ( fast resume ) < / source > <nl> - < comment > & apos ; / home / y / xxx . torrent & apos ; was resumed . ( fast resume ) < / comment > <nl> - < translation type = " obsolete " > & apos ; % 1 & apos ; відновлено . ( швидке відновлення ) < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > & apos ; % 1 & apos ; added to download list . < / source > <nl> - < comment > & apos ; / home / y / xxx . torrent & apos ; was added to download list . < / comment > <nl> - < translation type = " obsolete " > & apos ; % 1 & apos ; додано до списку завантажень . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Unable to decode torrent file : & apos ; % 1 & apos ; < / source > <nl> - < comment > e . g : Unable to decode torrent file : & apos ; / home / y / xxx . torrent & apos ; < / comment > <nl> - < translation type = " obsolete " > Не вдалося розкодувати торрент - файл : & apos ; % 1 & apos ; < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > This file is either corrupted or this isn & apos ; t a torrent . < / source > <nl> - < translation type = " obsolete " > Цей файл або пошкоджений , або не є торрент - файлом . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > & lt ; font color = & apos ; red & apos ; & gt ; % 1 & lt ; / font & gt ; & lt ; i & gt ; was blocked due to your IP filter & lt ; / i & gt ; < / source > <nl> - < comment > x . y . z . w was blocked < / comment > <nl> - < translation type = " obsolete " > & lt ; font color = & apos ; red & apos ; & gt ; % 1 & lt ; / font & gt ; & lt ; i & gt ; було заблоковано згідно з вашим IP - фільтром & lt ; / i & gt ; < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > & lt ; font color = & apos ; red & apos ; & gt ; % 1 & lt ; / font & gt ; & lt ; i & gt ; was banned due to corrupt pieces & lt ; / i & gt ; < / source > <nl> - < comment > x . y . z . w was banned < / comment > <nl> - < translation type = " obsolete " > & lt ; font color = & apos ; red & apos ; & gt ; % 1 & lt ; / font & gt ; & lt ; i & gt ; було заблоковано через пошкоджені частини & lt ; / i & gt ; < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Recursive download of file % 1 embedded in torrent % 2 < / source > <nl> - < comment > Recursive download of test . torrent embedded in torrent test2 < / comment > <nl> - < translation type = " obsolete " > Рекурсивне завантаження файлу % 1 в торренті % 2 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Unable to decode % 1 torrent file . < / source > <nl> - < translation type = " obsolete " > Не можу розкодувати % 1 торрент - файл . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > UPnP / NAT - PMP : Port mapping failure , message : % 1 < / source > <nl> - < translation type = " obsolete " > UPnP / NAT - PMP : Не можу приєднати порт , повідомлення : % 1 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > UPnP / NAT - PMP : Port mapping successful , message : % 1 < / source > <nl> - < translation type = " obsolete " > UPnP / NAT - PMP : Успішне приєднання порта , повідомлення : % 1 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Fast resume data was rejected for torrent % 1 , checking again . . . < / source > <nl> - < translation type = " obsolete " > Було відмовлено у швидкому відновленні данних для torrent & apos ; у % 1 , перевіряю знову . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Url seed lookup failed for url : % 1 , message : % 2 < / source > <nl> - < translation type = " obsolete " > Пошук url роздачі невдалий для url : % 1 , повідомлення : % 2 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Downloading & apos ; % 1 & apos ; , please wait . . . < / source > <nl> - < comment > e . g : Downloading & apos ; xxx . torrent & apos ; , please wait . . . < / comment > <nl> - < translation type = " obsolete " > Завантажую & apos ; % 1 & apos ; , зачекайте . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Using a disk cache size of % 1 MiB < / source > <nl> - < translation type = " obsolete " > Використовую дисковий кеш розміром % 1 MiB < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > PeX support [ OFF ] < / source > <nl> - < translation type = " obsolete " > Підтримка PeX [ Вимкнено ] < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Restart is required to toggle PeX support < / source > <nl> - < translation type = " obsolete " > Щоб перемкнути підтримку PeX , потрібно перезавантажити програму < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > The Web UI is listening on port % 1 < / source > <nl> - < translation type = " obsolete " > Веб - інтерфейс приєднано до порту % 1 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > HTTP user agent is % 1 < / source > <nl> - < translation type = " obsolete " > Браузер користувача : % 1 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Reason : % 1 < / source > <nl> - < translation type = " obsolete " > Причина : % 1 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Note : new trackers were added to the existing torrent . < / source > <nl> - < translation type = " obsolete " > Нові трекери було додано до існуючого торрента . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Note : new URL seeds were added to the existing torrent . < / source > <nl> - < translation type = " obsolete " > Нові URL - сіди було додано до існуючого торрента . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > An I / O error occurred , & apos ; % 1 & apos ; paused . < / source > <nl> - < translation type = " obsolete " > Сталася помилка вводу / виводу , & apos ; % 1 & apos ; зупинено . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Removing torrent % 1 . . . < / source > <nl> - < translation type = " obsolete " > Видаляю торрент % 1 . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Pausing torrent % 1 . . . < / source > <nl> - < translation type = " obsolete " > Зупиняю торрент % 1 . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Error : The torrent % 1 does not contain any file . < / source > <nl> - < translation type = " obsolete " > Помилка : Торрент % 1 не містить жодного файла . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > File sizes mismatch for torrent % 1 , pausing it . < / source > <nl> - < translation type = " obsolete " > Розміри файлів не збігаються для торрента % 1 , зупиняю його . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Torrent name : % 1 < / source > <nl> - < translation type = " obsolete " > Назва торрента : % 1 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Torrent size : % 1 < / source > <nl> - < translation type = " obsolete " > Розмір торрента : % 1 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Save path : % 1 < / source > <nl> - < translation type = " obsolete " > Шлях збереження : % 1 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > The torrent was downloaded in % 1 . < / source > <nl> - < comment > The torrent was downloaded in 1 hour and 20 seconds < / comment > <nl> - < translation type = " obsolete " > Торрент було завантажено за % 1 . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Thank you for using qBittorrent . < / source > <nl> - < translation type = " obsolete " > Дякуємо , що ви користуєтесь qBittorrent . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > [ qBittorrent ] % 1 has finished downloading < / source > <nl> - < translation type = " obsolete " > [ qBittorrent ] Завантаження & quot ; % 1 & quot ; завершено < / translation > <nl> - < / message > <nl> - < / context > <nl> - < context > <nl> - < name > ConsoleDlg < / name > <nl> - < message > <nl> - < source > General < / source > <nl> - < translation type = " obsolete " > Загальні < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Blocked IPs < / source > <nl> - < translation type = " obsolete " > Заблоковані IP < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > qBittorrent log viewer < / source > <nl> - < translation type = " obsolete " > Журнал подій qBittorrent < / translation > <nl> - < / message > <nl> - < / context > <nl> - < context > <nl> - < name > CookiesDlg < / name > <nl> - < message > <nl> - < source > Cookies management < / source > <nl> - < translation > Керування Cookies < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Key < / source > <nl> - < extracomment > As in Key / Value pair < / extracomment > <nl> - < translation > Ключ < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Value < / source > <nl> - < extracomment > As in Key / Value pair < / extracomment > <nl> - < translation > Значення < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Common keys for cookies are : & apos ; % 1 & apos ; , & apos ; % 2 & apos ; . <nl> - You should get this information from your Web browser preferences . < / source > <nl> - < translation > Звичайні ключі для cookies : & apos ; % 1 & apos ; , & apos ; % 2 & apos ; . <nl> - Цю інформацію можна отримати з налаштувань веб - браузера . < / translation > <nl> - < / message > <nl> - < / context > <nl> - < context > <nl> - < name > DNSUpdater < / name > <nl> - < message > <nl> - < source > Your dynamic DNS was successfuly updated . < / source > <nl> - < translation type = " obsolete " > Ваш динамічний DNS був успішно оновлений . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Dynamic DNS error : The service is temporarily unavailable , it will be retried in 30 minutes . < / source > <nl> - < translation > Помилка динамічного DNS : Сервіс тимчасово недоступний ; повторна спроба за 30 хвилин . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Dynamic DNS error : hostname supplied does not exist under specified account . < / source > <nl> - < translation > Помилка динамічного DNS : наданий домен не існує в зазначеному обліковому записі . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Dynamic DNS error : Invalid username / password . < / source > <nl> - < translation > Помилка динамічного DNS : Неправильний логін або пароль . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Dynamic DNS error : qBittorrent was blacklisted by the service , please report a bug at http : / / bugs . qbittorrent . org . < / source > <nl> - < translation > Помилка динамічного DNS : qBittorrent додано в чорний список сервісу ; будь ласка , повідомте про це на http : / / bugs . qbittorrent . org . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Dynamic DNS error : % 1 was returned by the service , please report a bug at http : / / bugs . qbittorrent . org . < / source > <nl> - < translation > Помилка динамічного DNS : Сервіс повернув % 1 ; будь ласка , повідомте про помилку на http : / / bugs . qbittorrent . org . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Dynamic DNS error : Your username was blocked due to abuse . < / source > <nl> - < translation > Помилка динамічного DNS : Ваш логін заблоковано через зловживання . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Dynamic DNS error : supplied domain name is invalid . < / source > <nl> - < translation > Помилка динамічного DNS : наданий домен неправильний . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Dynamic DNS error : supplied username is too short . < / source > <nl> - < translation > Помилка динамічного DNS : наданий логін закороткий . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Dynamic DNS error : supplied password is too short . < / source > <nl> - < translation > Помилка динамічного DNS : наданий пароль закороткий . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Your dynamic DNS was successfully updated . < / source > <nl> - < translation > Ваш динамічний DNS було успішно оновлено . < / translation > <nl> - < / message > <nl> - < / context > <nl> - < context > <nl> - < name > DownloadThread < / name > <nl> - < message > <nl> - < source > I / O Error < / source > <nl> - < translation > Помилка вводу / виводу < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > The remote host name was not found ( invalid hostname ) < / source > <nl> - < translation > Віддалений сервер не знайдено ( неправильна адреса ) < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > The operation was canceled < / source > <nl> - < translation > Операцію скасовано < / translation > <nl> + < location filename = " . . / downloadthread . cpp " line = " 254 " / > <nl> + < source > The operation was canceled < / source > <nl> + < translation > Операцію скасовано < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / downloadthread . cpp " line = " 256 " / > <nl> < source > The remote server closed the connection prematurely , before the entire reply was received and processed < / source > <nl> < translation > Віддалений сервер закрив з & apos ; єднання зарано , перед тим , як було отримано і оброблено відповідь < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / downloadthread . cpp " line = " 258 " / > <nl> < source > The connection to the remote server timed out < / source > <nl> < translation > Вичерпано час на з & apos ; єднання з віддаленим сервером < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / downloadthread . cpp " line = " 260 " / > <nl> < source > SSL / TLS handshake failed < / source > <nl> < translation > Помилка SSL / TLS < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / downloadthread . cpp " line = " 262 " / > <nl> < source > The remote server refused the connection < / source > <nl> < translation > Віддалений сервер відмовив у з & apos ; єднанні < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / downloadthread . cpp " line = " 264 " / > <nl> < source > The connection to the proxy server was refused < / source > <nl> < translation > Відмовлено у з & apos ; єднанні з проксі - сервером < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / downloadthread . cpp " line = " 266 " / > <nl> < source > The proxy server closed the connection prematurely < / source > <nl> < translation > Проксі - сервер закрив з & apos ; єднання < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / downloadthread . cpp " line = " 268 " / > <nl> < source > The proxy host name was not found < / source > <nl> < translation > Не знайдено проксі - сервер < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / downloadthread . cpp " line = " 270 " / > <nl> < source > The connection to the proxy timed out or the proxy did not reply in time to the request sent < / source > <nl> < translation > Вичерпано час на з & apos ; єднання з проксі < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / downloadthread . cpp " line = " 272 " / > <nl> < source > The proxy requires authentication in order to honour the request but did not accept any credentials offered < / source > <nl> < translation > Проксі потребує автентифікації , але не прийняв автентифікаційних даних < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / downloadthread . cpp " line = " 274 " / > <nl> < source > The access to the remote content was denied ( 401 ) < / source > <nl> < translation > Відмовлено у доступі до віддалених даних ( 401 ) < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / downloadthread . cpp " line = " 276 " / > <nl> < source > The operation requested on the remote content is not permitted < / source > <nl> < translation > Операція щодо віддаленого контенту не дозволена < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / downloadthread . cpp " line = " 278 " / > <nl> < source > The remote content was not found at the server ( 404 ) < / source > <nl> < translation > Віддалені дані не знайдено на сервері ( 404 ) < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / downloadthread . cpp " line = " 280 " / > <nl> < source > The remote server requires authentication to serve the content but the credentials provided were not accepted < / source > <nl> < translation > Віддалений сервер потребує автентифікації , але не прийняв автентифікаційних даних < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / downloadthread . cpp " line = " 282 " / > <nl> < source > The Network Access API cannot honor the request because the protocol is not known < / source > <nl> < translation > Невідомий протокол < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / downloadthread . cpp " line = " 284 " / > <nl> < source > The requested operation is invalid for this protocol < / source > <nl> < translation > Операція неправильна для цього протоколу < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / downloadthread . cpp " line = " 286 " / > <nl> < source > An unknown network - related error was detected < / source > <nl> < translation > Невідома помилка , пов & apos ; язана з мережею < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / downloadthread . cpp " line = " 288 " / > <nl> < source > An unknown proxy - related error was detected < / source > <nl> < translation > Невідома помилка , пов & apos ; язана з проксі < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / downloadthread . cpp " line = " 290 " / > <nl> < source > An unknown error related to the remote content was detected < / source > <nl> < translation > Невідома помилка , пов & apos ; язана з віддаленим контентом < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / downloadthread . cpp " line = " 292 " / > <nl> < source > A breakdown in protocol was detected < / source > <nl> < translation > Поломка в протоколі < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / downloadthread . cpp " line = " 294 " / > <nl> < source > Unknown error < / source > <nl> < translation > Невідома помилка < / translation > <nl> < / message > <nl> < / context > <nl> < context > <nl> - < name > EventManager < / name > <nl> + < name > ExecutionLog < / name > <nl> < message > <nl> - < source > % 1 / s < / source > <nl> - < comment > e . g . 120 KiB / s < / comment > <nl> - < translation type = " obsolete " > % 1 / с < / translation > <nl> + < location filename = " . . / executionlog . ui " line = " 27 " / > <nl> + < source > General < / source > <nl> + < translation > Загальні < / translation > <nl> < / message > <nl> < message > <nl> - < source > Working < / source > <nl> - < translation type = " obsolete " > Працюю < / translation > <nl> + < location filename = " . . / executionlog . ui " line = " 33 " / > <nl> + < source > Blocked IPs < / source > <nl> + < translation > Заблоковані IP < / translation > <nl> < / message > <nl> + < / context > <nl> + < context > <nl> + < name > FeedListWidget < / name > <nl> < message > <nl> - < source > Updating . . . < / source > <nl> - < translation type = " obsolete " > Оновлюю . . . < / translation > <nl> + < location filename = " . . / rss / feedlistwidget . cpp " line = " 41 " / > <nl> + < source > RSS feeds < / source > <nl> + < translation > RSS - подачі < / translation > <nl> < / message > <nl> < message > <nl> - < source > Not working < / source > <nl> - < translation type = " obsolete " > Не працюю < / translation > <nl> + < location filename = " . . / rss / feedlistwidget . cpp " line = " 43 " / > <nl> + < source > Unread < / source > <nl> + < translation > Непрочитані < / translation > <nl> < / message > <nl> + < / context > <nl> + < context > <nl> + < name > HeadlessLoader < / name > <nl> < message > <nl> - < source > Not contacted yet < / source > <nl> - < translation type = " obsolete " > Ще не було зв & apos ; язку з трекером < / translation > <nl> + < location filename = " . . / headlessloader . h " line = " 54 " / > <nl> + < source > Information < / source > <nl> + < translation > Інформація < / translation > <nl> < / message > <nl> < message > <nl> - < source > this session < / source > <nl> - < translation type = " obsolete " > Поточна сесія < / translation > <nl> + < location filename = " . . / headlessloader . h " line = " 55 " / > <nl> + < source > To control qBittorrent , access the Web UI at http : / / localhost : % 1 < / source > <nl> + < translation > Щоб керувати qBittorrent & apos ; ом , перейдіть за адресою http : / / localhost : % 1 < / translation > <nl> < / message > <nl> < message > <nl> - < source > / s < / source > <nl> - < comment > / second ( i . e . per second ) < / comment > <nl> - < translation type = " obsolete " > / с < / translation > <nl> + < location filename = " . . / headlessloader . h " line = " 56 " / > <nl> + < source > The Web UI administrator user name is : % 1 < / source > <nl> + < translation > Ім & apos ; я користувача - адміністратора в Веб - інтерфейсі : % 1 < / translation > <nl> < / message > <nl> < message > <nl> - < source > Seeded for % 1 < / source > <nl> - < comment > e . g . Seeded for 3m10s < / comment > <nl> - < translation type = " obsolete " > Роздавав % 1 < / translation > <nl> + < location filename = " . . / headlessloader . h " line = " 59 " / > <nl> + < source > The Web UI administrator password is still the default one : % 1 < / source > <nl> + < translation > Пароль адміністратора в Веб - інтерфейсі все ще стандартний : % 1 < / translation > <nl> < / message > <nl> < message > <nl> - < source > % 1 max < / source > <nl> - < comment > e . g . 10 max < / comment > <nl> - < translation type = " obsolete " > максимально % 1 < / translation > <nl> + < location filename = " . . / headlessloader . h " line = " 60 " / > <nl> + < source > This is a security risk , please consider changing your password from program preferences . < / source > <nl> + < translation > Це ризик безпеки , будь ласка , змініть пароль в налаштуваннях програми . < / translation > <nl> < / message > <nl> < / context > <nl> < context > <nl> - < name > ExecutionLog < / name > <nl> - < message > <nl> - < source > Form < / source > <nl> - < translation type = " obsolete " > Форма < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > General < / source > <nl> - < translation > Загальні < / translation > <nl> - < / message > <nl> + < name > HttpConnection < / name > <nl> < message > <nl> - < source > Blocked IPs < / source > <nl> - < translation > Заблоковані IP < / translation > <nl> + < location filename = " . . / webui / httpconnection . cpp " line = " 190 " / > <nl> + < source > Your IP address has been banned after too many failed authentication attempts . < / source > <nl> + < translation > Вашу IP - адресу було заблоковано через те , що було здійснено забагато спроб автентифікації . < / translation > <nl> < / message > <nl> < / context > <nl> < context > <nl> - < name > FeedDownloader < / name > <nl> - < message > <nl> - < source > RSS Feed downloader < / source > <nl> - < translation type = " obsolete " > Завантажувач подач RSS < / translation > <nl> - < / message > <nl> + < name > HttpServer < / name > <nl> < message > <nl> - < source > RSS feed : < / source > <nl> - < translation type = " obsolete " > RSS - подача : < / translation > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 110 " / > <nl> + < source > File < / source > <nl> + < translation > Файл < / translation > <nl> < / message > <nl> < message > <nl> - < source > Feed name < / source > <nl> - < translation type = " obsolete " > Назва подачі < / translation > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 111 " / > <nl> + < source > Edit < / source > <nl> + < translation > Редагувати < / translation > <nl> < / message > <nl> < message > <nl> - < source > Automatically download torrents from this feed < / source > <nl> - < translation type = " obsolete " > Автоматично завантажувати торренти з цієї подачі < / translation > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 112 " / > <nl> + < source > Help < / source > <nl> + < translation > Допомога < / translation > <nl> < / message > <nl> < message > <nl> - < source > Download filters < / source > <nl> - < translation type = " obsolete " > Фільтри завантажень < / translation > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 113 " / > <nl> + < source > Download Torrents from their URL or Magnet link < / source > <nl> + < translation > Завантажити торренти з іх URL або Магнітного посилання < / translation > <nl> < / message > <nl> < message > <nl> - < source > Filters : < / source > <nl> - < translation type = " obsolete " > Фільтри : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Filter settings < / source > <nl> - < translation type = " obsolete " > Налаштування фільтрів < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Matches : < / source > <nl> - < translation type = " obsolete " > Результати : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Does not match : < / source > <nl> - < translation type = " obsolete " > Не підходить : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Destination folder : < / source > <nl> - < translation type = " obsolete " > Папка призначення : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > . . . < / source > <nl> - < translation type = " obsolete " > . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Filter testing < / source > <nl> - < translation type = " obsolete " > Тестування фільтру < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Torrent title : < / source > <nl> - < translation type = " obsolete " > Заголовок торренту : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Result : < / source > <nl> - < translation type = " obsolete " > Результат : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Test < / source > <nl> - < translation type = " obsolete " > Тест < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Import . . . < / source > <nl> - < translation type = " obsolete " > Імпорт . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Export . . . < / source > <nl> - < translation type = " obsolete " > Експорт . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Rename filter < / source > <nl> - < translation type = " obsolete " > Перейменувати фільтр < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Remove filter < / source > <nl> - < translation type = " obsolete " > Видалити фільтр < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Add filter < / source > <nl> - < translation type = " obsolete " > Додати фільтр < / translation > <nl> - < / message > <nl> - < / context > <nl> - < context > <nl> - < name > FeedDownloaderDlg < / name > <nl> - < message > <nl> - < source > New filter < / source > <nl> - < translation type = " obsolete " > Новий фільтр < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Please choose a name for this filter < / source > <nl> - < translation type = " obsolete " > Будь ласка , виберіть назву для цього фільтру < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Filter name : < / source > <nl> - < translation type = " obsolete " > Назва фільтру : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Invalid filter name < / source > <nl> - < translation type = " obsolete " > Неправильна назва фільтру < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > The filter name cannot be left empty . < / source > <nl> - < translation type = " obsolete " > Назва фільтру не може бути порожньою . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > This filter name is already in use . < / source > <nl> - < translation type = " obsolete " > Ця назва вже використана . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Filter testing error < / source > <nl> - < translation type = " obsolete " > Помилка тестування фільтру < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Please specify a test torrent name . < / source > <nl> - < translation type = " obsolete " > Будь ласка , вкажіть ім & apos ; я торренту . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > matches < / source > <nl> - < translation type = " obsolete " > результати < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > does not match < / source > <nl> - < translation type = " obsolete " > не підходить < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Select file to import < / source > <nl> - < translation type = " obsolete " > Виберіть файл для імпорту < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Filters Files < / source > <nl> - < translation type = " obsolete " > Файли фільтрів < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Import successful < / source > <nl> - < translation type = " obsolete " > Успішно імпортовано < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Filters import was successful . < / source > <nl> - < translation type = " obsolete " > Імпорт фільтрів успішний . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Import failure < / source > <nl> - < translation type = " obsolete " > Невдалий імпорт < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Filters could not be imported due to an I / O error . < / source > <nl> - < translation type = " obsolete " > Фільтри не були імпортовані через помилку вводу / виводу . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Select destination file < / source > <nl> - < translation type = " obsolete " > Виберіть цільовий файл < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Export successful < / source > <nl> - < translation type = " obsolete " > Успішно експортовано < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Filters export was successful . < / source > <nl> - < translation type = " obsolete " > Експорт фільтрів успішний . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Export failure < / source > <nl> - < translation type = " obsolete " > Невдалий експорт < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Filters could not be exported due to an I / O error . < / source > <nl> - < translation type = " obsolete " > Фільтри не були експортовані через помилку вводу / виводу . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Choose save path < / source > <nl> - < translation type = " obsolete " > Виберіть шлях збереження < / translation > <nl> - < / message > <nl> - < / context > <nl> - < context > <nl> - < name > FeedList < / name > <nl> - < message > <nl> - < source > Unread < / source > <nl> - < translation type = " obsolete " > Непрочитані < / translation > <nl> - < / message > <nl> - < / context > <nl> - < context > <nl> - < name > FeedListWidget < / name > <nl> - < message > <nl> - < source > RSS feeds < / source > <nl> - < translation > RSS - подачі < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Unread < / source > <nl> - < translation > Непрочитані < / translation > <nl> - < / message > <nl> - < / context > <nl> - < context > <nl> - < name > GUI < / name > <nl> - < message > <nl> - < source > Open Torrent Files < / source > <nl> - < translation type = " obsolete " > Відкрити Torrent - файли < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Torrent Files < / source > <nl> - < translation type = " obsolete " > Torrent - файли < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > qBittorrent < / source > <nl> - < translation type = " obsolete " > qBittorrent < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Transfers < / source > <nl> - < translation type = " obsolete " > Завантаження < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > qBittorrent % 1 < / source > <nl> - < comment > e . g : qBittorrent v0 . x < / comment > <nl> - < translation type = " obsolete " > qBittorrent % 1 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > DL speed : % 1 KiB / s < / source > <nl> - < comment > e . g : Download speed : 10 KiB / s < / comment > <nl> - < translation type = " obsolete " > Швидкість прийому : % 1 КіБ / с < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > UP speed : % 1 KiB / s < / source > <nl> - < comment > e . g : Upload speed : 10 KiB / s < / comment > <nl> - < translation type = " obsolete " > Швидкість віддачі : % 1 КіБ / с < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > % 1 has finished downloading . < / source > <nl> - < comment > e . g : xxx . avi has finished downloading . < / comment > <nl> - < translation type = " obsolete " > Завантаження & apos ; % 1 & apos ; закінчилось . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > I / O Error < / source > <nl> - < comment > i . e : Input / Output Error < / comment > <nl> - < translation type = " obsolete " > Помилка вводу / виводу < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Search < / source > <nl> - < translation type = " obsolete " > Пошук < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > RSS < / source > <nl> - < translation type = " obsolete " > RSS < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > An I / O error occurred for torrent % 1 . <nl> - Reason : % 2 < / source > <nl> - < comment > e . g : An error occurred for torrent xxx . avi . <nl> - Reason : disk is full . < / comment > <nl> - < translation type = " obsolete " > Сталася помилка вводу / виводу для торрента % 1 . Причина : % 2 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Alt + 1 < / source > <nl> - < comment > shortcut to switch to first tab < / comment > <nl> - < translation type = " obsolete " > Alt + 1 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Url download error < / source > <nl> - < translation type = " obsolete " > Помилка завантаження url < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Couldn & apos ; t download file at url : % 1 , reason : % 2 . < / source > <nl> - < translation type = " obsolete " > Не вдалося завантажити файл з URL : % 1 , причина : % 2 . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Options were saved successfully . < / source > <nl> - < translation type = " obsolete " > Налаштування були успішно збережені . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Download completion < / source > <nl> - < translation type = " obsolete " > Завантажено < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Some files are currently transferring . <nl> - Are you sure you want to quit qBittorrent ? < / source > <nl> - < translation type = " obsolete " > Не всі завантаження завершені . Ви впевнені , що хочете вийти ? < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Alt + 2 < / source > <nl> - < comment > shortcut to switch to third tab < / comment > <nl> - < translation type = " obsolete " > Alt + 2 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Alt + 3 < / source > <nl> - < comment > shortcut to switch to fourth tab < / comment > <nl> - < translation type = " obsolete " > Alt + 3 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Global Upload Speed Limit < / source > <nl> - < translation type = " obsolete " > Глобальний ліміт вивантаження < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Global Download Speed Limit < / source > <nl> - < translation type = " obsolete " > Глобальний ліміт завантаження < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > qBittorrent % 1 ( Down : % 2 / s , Up : % 3 / s ) < / source > <nl> - < comment > % 1 is qBittorrent version < / comment > <nl> - < translation type = " obsolete " > qBittorrent % 1 ( Зав . : % 2 / с , Вив . : % 3 / с ) < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Recursive download confirmation < / source > <nl> - < translation type = " obsolete " > Підтвердження рекурсивного завантаження < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > The torrent % 1 contains torrent files , do you want to proceed with their download ? < / source > <nl> - < translation type = " obsolete " > Торрент % 1 містить інші торренти . Завантажувати і їх ? < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Torrent file association < / source > <nl> - < translation type = " obsolete " > Відкривання torrent - файлів < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > qBittorrent is not the default application to open torrent files or Magnet links . <nl> - Do you want to associate qBittorrent to torrent files and Magnet links ? < / source > <nl> - < translation type = " obsolete " > qBittorrent не є програмою за замовчуванням для відкривання торрентів та Магнітних посилань . <nl> - Встановити qBittorrent як програму для відкривання torrent - файлів та Магнітних посилань ? < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Transfers ( % 1 ) < / source > <nl> - < translation type = " obsolete " > Завантаження ( % 1 ) < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Yes < / source > <nl> - < translation type = " obsolete " > Так < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > No < / source > <nl> - < translation type = " obsolete " > Ні < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Never < / source > <nl> - < translation type = " obsolete " > Ніколи < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Always < / source > <nl> - < translation type = " obsolete " > Завжди < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Exiting qBittorrent < / source > <nl> - < translation type = " obsolete " > Вихід із qBittorrent < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Set the password . . . < / source > <nl> - < translation type = " obsolete " > Встановити пароль . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Password update < / source > <nl> - < translation type = " obsolete " > Оновити пароль < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > The UI lock password has been successfully updated < / source > <nl> - < translation type = " obsolete " > Пароль блокування інтерфейсу був успішно оновлений < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > UI lock password < / source > <nl> - < translation type = " obsolete " > <nl> - < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Please type the UI lock password : < / source > <nl> - < translation type = " obsolete " > Будь ласка , введіть пароль блокування інтерфейсу : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Invalid password < / source > <nl> - < translation type = " obsolete " > Неправильний пароль < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > The password is invalid < / source > <nl> - < translation type = " obsolete " > Пароль неправильний < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > A newer version is available < / source > <nl> - < translation type = " obsolete " > Доступна новіше версія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > A newer version of qBittorrent is available on Sourceforge . <nl> - Would you like to update qBittorrent to version % 1 ? < / source > <nl> - < translation type = " obsolete " > Нова версія qBittorrent доступна на SourceForge . <nl> - Чи хочете ви оновити qBittorrent до версії % 1 ? < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Impossible to update qBittorrent < / source > <nl> - < translation type = " obsolete " > Неможливо оновити qBittorrent < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > qBittorrent failed to update , reason : % 1 < / source > <nl> - < translation type = " obsolete " > qBittorrent не вдалося оновити . Причина : % 1 < / translation > <nl> - < / message > <nl> - < / context > <nl> - < context > <nl> - < name > GeoIP < / name > <nl> - < message > <nl> - < source > Australia < / source > <nl> - < translation type = " obsolete " > Австралія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Argentina < / source > <nl> - < translation type = " obsolete " > Аргентина < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Austria < / source > <nl> - < translation type = " obsolete " > Австрія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > United Arab Emirates < / source > <nl> - < translation type = " obsolete " > Об & apos ; єднані Арабські Емірати < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Brazil < / source > <nl> - < translation type = " obsolete " > Бразилія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Bulgaria < / source > <nl> - < translation type = " obsolete " > Болгарія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Belarus < / source > <nl> - < translation type = " obsolete " > Білорусь < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Belgium < / source > <nl> - < translation type = " obsolete " > Бельгія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Bosnia < / source > <nl> - < translation type = " obsolete " > Боснія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Canada < / source > <nl> - < translation type = " obsolete " > Канада < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Czech Republic < / source > <nl> - < translation type = " obsolete " > Чехія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > China < / source > <nl> - < translation type = " obsolete " > Китай < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Costa Rica < / source > <nl> - < translation type = " obsolete " > Коста Ріка < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Switzerland < / source > <nl> - < translation type = " obsolete " > Швейцарія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Germany < / source > <nl> - < translation type = " obsolete " > Німеччина < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Denmark < / source > <nl> - < translation type = " obsolete " > Данія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Algeria < / source > <nl> - < translation type = " obsolete " > Алжир < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Spain < / source > <nl> - < translation type = " obsolete " > Іспанія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Egypt < / source > <nl> - < translation type = " obsolete " > Єгипет < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Finland < / source > <nl> - < translation type = " obsolete " > Фінляндія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > France < / source > <nl> - < translation type = " obsolete " > Франція < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Greece < / source > <nl> - < translation type = " obsolete " > Греція < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Georgia < / source > <nl> - < translation type = " obsolete " > Грузія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Hungary < / source > <nl> - < translation type = " obsolete " > Угорщина < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Croatia < / source > <nl> - < translation type = " obsolete " > Хорватія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Italy < / source > <nl> - < translation type = " obsolete " > Італія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > India < / source > <nl> - < translation type = " obsolete " > Індія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Israel < / source > <nl> - < translation type = " obsolete " > Ізраїль < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Ireland < / source > <nl> - < translation type = " obsolete " > Ірландія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Iceland < / source > <nl> - < translation type = " obsolete " > Ісландія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Indonesia < / source > <nl> - < translation type = " obsolete " > Індонезія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Japan < / source > <nl> - < translation type = " obsolete " > Японія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > South Korea < / source > <nl> - < translation type = " obsolete " > Південна Корея < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Luxembourg < / source > <nl> - < translation type = " obsolete " > Люксембург < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Malaysia < / source > <nl> - < translation type = " obsolete " > Малайзія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Mexico < / source > <nl> - < translation type = " obsolete " > Мексика < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Serbia < / source > <nl> - < translation type = " obsolete " > Сербія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Morocco < / source > <nl> - < translation type = " obsolete " > Марокко < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Netherlands < / source > <nl> - < translation type = " obsolete " > Нідерланди < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Norway < / source > <nl> - < translation type = " obsolete " > Норвегія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > New Zealand < / source > <nl> - < translation type = " obsolete " > Нова Зеландія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Portugal < / source > <nl> - < translation type = " obsolete " > Португалія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Poland < / source > <nl> - < translation type = " obsolete " > Польща < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Pakistan < / source > <nl> - < translation type = " obsolete " > Пакистан < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Philippines < / source > <nl> - < translation type = " obsolete " > Філіппіни < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Russia < / source > <nl> - < translation type = " obsolete " > Росія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Romania < / source > <nl> - < translation type = " obsolete " > Румунія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > France ( Reunion Island ) < / source > <nl> - < translation type = " obsolete " > Франція ( острів Реюньйон ) < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Sweden < / source > <nl> - < translation type = " obsolete " > Швеція < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Slovakia < / source > <nl> - < translation type = " obsolete " > Словаччина < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Singapore < / source > <nl> - < translation type = " obsolete " > Сінгапур < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Slovenia < / source > <nl> - < translation type = " obsolete " > Словенія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Taiwan < / source > <nl> - < translation type = " obsolete " > Тайвань < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Turkey < / source > <nl> - < translation type = " obsolete " > Туреччина < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Thailand < / source > <nl> - < translation type = " obsolete " > Таїланд < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > USA < / source > <nl> - < translation type = " obsolete " > США < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Ukraine < / source > <nl> - < translation type = " obsolete " > Україна < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > South Africa < / source > <nl> - < translation type = " obsolete " > Південна Африка < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Saudi Arabia < / source > <nl> - < translation type = " obsolete " > Саудівська Аравія < / translation > <nl> - < / message > <nl> - < / context > <nl> - < context > <nl> - < name > HeadlessLoader < / name > <nl> - < message > <nl> - < source > Information < / source > <nl> - < translation > Інформація < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > To control qBittorrent , access the Web UI at http : / / localhost : % 1 < / source > <nl> - < translation > Щоб керувати qBittorrent & apos ; ом , перейдіть за адресою http : / / localhost : % 1 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > The Web UI administrator user name is : % 1 < / source > <nl> - < translation > Ім & apos ; я користувача - адміністратора в Веб - інтерфейсі : % 1 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > The Web UI administrator password is still the default one : % 1 < / source > <nl> - < translation > Пароль адміністратора в Веб - інтерфейсі все ще стандартний : % 1 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > This is a security risk , please consider changing your password from program preferences . < / source > <nl> - < translation > Це ризик безпеки , будь ласка , змініть пароль в налаштуваннях програми . < / translation > <nl> - < / message > <nl> - < / context > <nl> - < context > <nl> - < name > HttpConnection < / name > <nl> - < message > <nl> - < source > Your IP address has been banned after too many failed authentication attempts . < / source > <nl> - < translation > Вашу IP - адресу було заблоковано через те , що було здійснено забагато спроб автентифікації . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > D : % 1 / s - T : % 2 < / source > <nl> - < comment > Download speed : x KiB / s - Transferred : x MiB < / comment > <nl> - < translation type = " obsolete " > Зав . : % 1 / с ( % 2 ) < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > U : % 1 / s - T : % 2 < / source > <nl> - < comment > Upload speed : x KiB / s - Transferred : x MiB < / comment > <nl> - < translation type = " obsolete " > Вив . : % 1 / с ( % 2 ) < / translation > <nl> - < / message > <nl> - < / context > <nl> - < context > <nl> - < name > HttpServer < / name > <nl> - < message > <nl> - < source > File < / source > <nl> - < translation > Файл < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Edit < / source > <nl> - < translation > Редагувати < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Help < / source > <nl> - < translation > Допомога < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Delete from HD < / source > <nl> - < translation type = " obsolete " > Видалити з жорсткого диска < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Download Torrents from their URL or Magnet link < / source > <nl> - < translation > Завантажити торренти з іх URL або Магнітного посилання < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Only one link per line < / source > <nl> - < translation > Одне посилання на рядок < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Download < / source > <nl> - < translation > Завантажити < / translation > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 114 " / > <nl> + < source > Only one link per line < / source > <nl> + < translation > Одне посилання на рядок < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 115 " / > <nl> < source > Download local torrent < / source > <nl> < translation > Завантажити локальний торрент < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 116 " / > <nl> < source > Torrent files were correctly added to download list . < / source > <nl> < translation > Торрент - файли були успішно додані до списку завантажень . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 117 " / > <nl> < source > Point to torrent file < / source > <nl> < translation > Вказати торрент - файл < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 118 " / > <nl> + < source > Download < / source > <nl> + < translation > Завантажити < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 119 " / > <nl> < source > Are you sure you want to delete the selected torrents from the transfer list and hard disk ? < / source > <nl> < translation > Ви впевнені , що хочете видалити вибрані торренти зі списку завантажень і жорсткого диска ? < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 120 " / > <nl> < source > Download rate limit must be greater than 0 or disabled . < / source > <nl> < translation > Ліміт швидкості завантаження повинен бути більшим від 0 або відсутнім . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 121 " / > <nl> < source > Upload rate limit must be greater than 0 or disabled . < / source > <nl> < translation > Ліміт швидкості вивантаження повинен бути більшим від 0 або відсутнім . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 122 " / > <nl> < source > Maximum number of connections limit must be greater than 0 or disabled . < / source > <nl> < translation > Максимальна кількість з & apos ; єднань повинна бути більша за 0 або відсутня . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 123 " / > <nl> < source > Maximum number of connections per torrent limit must be greater than 0 or disabled . < / source > <nl> < translation > Максимальна кількість з & apos ; єднань на торрент повинна бути більша за 0 або відсутня . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 124 " / > <nl> < source > Maximum number of upload slots per torrent limit must be greater than 0 or disabled . < / source > <nl> < translation > Максимальна кількість з & apos ; єднань для вивантаження на торрент повинна бути більша за 0 або відсутня . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 125 " / > <nl> < source > Unable to save program preferences , qBittorrent is probably unreachable . < / source > <nl> < translation > Не вдалося зберегти налаштування програми . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 126 " / > <nl> < source > Language < / source > <nl> < translation > Мова < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 127 " / > <nl> + < source > Downloaded < / source > <nl> + < comment > Is the file downloaded or not ? < / comment > <nl> + < translation > Завантажено < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 128 " / > <nl> < source > The port used for incoming connections must be greater than 1024 and less than 65535 . < / source > <nl> < translation > Порт , який використовується для вхідних підключень , повинен бути між 1024 і 65535 . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 129 " / > <nl> < source > The port used for the Web UI must be greater than 1024 and less than 65535 . < / source > <nl> < translation > Порт , який використовується для Веб - інтерфейсу повинен бути між 1024 і 65535 . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 130 " / > <nl> < source > The Web UI username must be at least 3 characters long . < / source > <nl> < translation > Ім & apos ; я користувача Веб - інтерфейсу повинне містити хоча б 3 символи . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 131 " / > <nl> < source > The Web UI password must be at least 3 characters long . < / source > <nl> < translation > Пароль від Веб - інтерфейсу повинен містити хоча б 3 символи . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Downloaded < / source > <nl> - < comment > Is the file downloaded or not ? < / comment > <nl> - < translation > Завантажено < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 132 " / > <nl> < source > Save < / source > <nl> < translation > Зберегти < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 133 " / > <nl> < source > qBittorrent client is not reachable < / source > <nl> < translation > Клієнт qBittorrent недосяжний < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 134 " / > <nl> < source > HTTP Server < / source > <nl> < translation > Сервер HTTP < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 135 " / > <nl> + < source > The following parameters are supported : < / source > <nl> + < translation > Підтримуються наступні параметри : < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 136 " / > <nl> < source > Torrent path < / source > <nl> < translation > Шлях до торрента < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 137 " / > <nl> < source > Torrent name < / source > <nl> < translation > Назва торрента < / translation > <nl> < / message > <nl> < message > <nl> - < source > The following parameters are supported : < / source > <nl> - < translation > Підтримуються наступні параметри : < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / webui / httpserver . cpp " line = " 138 " / > <nl> < source > qBittorrent has been shutdown . < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < / context > <nl> < context > <nl> < name > LegalNotice < / name > <nl> < message > <nl> + < location filename = " . . / main . cpp " line = " 105 " / > <nl> < source > Legal Notice < / source > <nl> < translation > Примітка < / translation > <nl> < / message > <nl> < message > <nl> - < source > Legal notice < / source > <nl> - < translation > Примітка < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Cancel < / source > <nl> - < translation > Скасувати < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > I Agree < / source > <nl> - < translation > Я погоджуюсь < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / main . cpp " line = " 106 " / > <nl> + < location filename = " . . / main . cpp " line = " 117 " / > <nl> < source > qBittorrent is a file sharing program . When you run a torrent , its data will be made available to others by means of upload . Any content you share is your sole responsibility . <nl> <nl> No further notices will be issued . < / source > <nl> No further notices will be issued . < / source > <nl> Ця замітка більше не з & apos ; являтиметься . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / main . cpp " line = " 107 " / > <nl> < source > Press % 1 key to accept and continue . . . < / source > <nl> < translation > Натисніть % 1 , щоб погодитись і продовжити . . . < / translation > <nl> < / message > <nl> + < message > <nl> + < location filename = " . . / main . cpp " line = " 118 " / > <nl> + < source > Legal notice < / source > <nl> + < translation > Примітка < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / main . cpp " line = " 119 " / > <nl> + < source > Cancel < / source > <nl> + < translation > Скасувати < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / main . cpp " line = " 120 " / > <nl> + < source > I Agree < / source > <nl> + < translation > Я погоджуюсь < / translation > <nl> + < / message > <nl> < / context > <nl> < context > <nl> < name > LineEdit < / name > <nl> < message > <nl> + < location filename = " . . / lineedit / src / lineedit . cpp " line = " 30 " / > <nl> < source > Clear the text < / source > <nl> < translation > Очистити текст < / translation > <nl> < / message > <nl> No further notices will be issued . < / source > <nl> < context > <nl> < name > LogListWidget < / name > <nl> < message > <nl> + < location filename = " . . / loglistwidget . cpp " line = " 47 " / > <nl> < source > Copy < / source > <nl> < translation > Копіювати < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / loglistwidget . cpp " line = " 48 " / > <nl> < source > Clear < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < / context > <nl> < context > <nl> < name > MainWindow < / name > <nl> < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 37 " / > <nl> < source > & amp ; Edit < / source > <nl> < translation > & amp ; Торренти < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 60 " / > <nl> + < source > & amp ; Tools < / source > <nl> + < translation > & amp ; Інструменти < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 79 " / > <nl> < source > & amp ; File < / source > <nl> < translation > & amp ; Файл < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 50 " / > <nl> < source > & amp ; Help < / source > <nl> < translation > & amp ; Допомога < / translation > <nl> < / message > <nl> < message > <nl> - < source > Preview file < / source > <nl> - < translation type = " obsolete " > Файл перегляду < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Clear log < / source > <nl> - < translation type = " obsolete " > Очистити лог < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Decrease priority < / source > <nl> - < translation > Зменшити пріоритет < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Increase priority < / source > <nl> - < translation > Збільшити пріоритет < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > & amp ; Tools < / source > <nl> - < translation > & amp ; Інструменти < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 88 " / > <nl> < source > & amp ; View < / source > <nl> < translation > & amp ; Показати < / translation > <nl> < / message > <nl> < message > <nl> - < source > & amp ; Add File . . . < / source > <nl> - < translation type = " obsolete " > & amp ; Додати файл . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > E & amp ; xit < / source > <nl> - < translation type = " obsolete " > Ви & amp ; хід < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 151 " / > <nl> < source > & amp ; Options . . . < / source > <nl> < translation > & amp ; Налаштування . . . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Add & amp ; URL . . . < / source > <nl> - < translation type = " obsolete " > Д & amp ; одати URL . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Torrent & amp ; creator < / source > <nl> - < translation > & amp ; Створення торрентів < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Set upload limit . . . < / source > <nl> - < translation > Встановити обмеження вивантаження . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Set download limit . . . < / source > <nl> - < translation > Встановити обмеження завантаження . . . < / translation > <nl> + < location filename = " . . / mainwindow . ui " line = " 161 " / > <nl> + < source > & amp ; Resume < / source > <nl> + < translation > & amp ; Продовжити < / translation > <nl> < / message > <nl> < message > <nl> - < source > Set global download limit . . . < / source > <nl> - < translation > Встановити глобальний ліміт завантаження . . . < / translation > <nl> + < location filename = " . . / mainwindow . ui " line = " 317 " / > <nl> + < source > R & amp ; esume All < / source > <nl> + < translation > П & amp ; родовжити всі < / translation > <nl> < / message > <nl> < message > <nl> - < source > Set global upload limit . . . < / source > <nl> - < translation > Встановити глобальний ліміт вивантаження . . . < / translation > <nl> + < location filename = " . . / mainwindow . ui " line = " 190 " / > <nl> + < source > Torrent & amp ; creator < / source > <nl> + < translation > & amp ; Створення торрентів < / translation > <nl> < / message > <nl> < message > <nl> - < source > & amp ; Log viewer . . . < / source > <nl> - < translation type = " obsolete " > Показати & amp ; журнал подій . . . < / translation > <nl> + < location filename = " . . / mainwindow . ui " line = " 244 " / > <nl> + < location filename = " . . / mainwindow . ui " line = " 247 " / > <nl> + < source > Alternative speed limits < / source > <nl> + < translation > Альтернативні обмеження швидкості < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 255 " / > <nl> < source > Top & amp ; tool bar < / source > <nl> < translation > Верхню & amp ; панель < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 258 " / > <nl> < source > Display top tool bar < / source > <nl> < translation > Показувати верхню панель < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 266 " / > <nl> < source > & amp ; Speed in title bar < / source > <nl> < translation > & amp ; Швидкість у заголовку < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 269 " / > <nl> < source > Show transfer speed in title bar < / source > <nl> < translation > Показувати швидкість завантаження і вивантаження у заголовку < / translation > <nl> < / message > <nl> < message > <nl> - < source > Alternative speed limits < / source > <nl> - < translation > Альтернативні обмеження швидкості < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 156 " / > <nl> < source > & amp ; About < / source > <nl> < translation > & amp ; Про програму < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 138 " / > <nl> + < source > & amp ; Add torrent file . . . < / source > <nl> + < translation > & amp ; Додати торрент - файл . . . < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 143 " / > <nl> + < location filename = " . . / mainwindow . ui " line = " 146 " / > <nl> + < source > Exit < / source > <nl> + < translation > Вийти < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 166 " / > <nl> < source > & amp ; Pause < / source > <nl> < translation > При & amp ; зупинити < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 171 " / > <nl> < source > & amp ; Delete < / source > <nl> < translation > & amp ; Видалити < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 322 " / > <nl> < source > P & amp ; ause All < / source > <nl> < translation > З & amp ; упинити всі < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 180 " / > <nl> < source > Visit & amp ; Website < / source > <nl> < translation > Відвідати веб & amp ; сайт < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 64 " / > <nl> + < source > Auto - Shutdown on downloads completion < / source > <nl> + < translation > Автоматичне вимкнення після завершення завантажень < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 185 " / > <nl> + < source > Add & amp ; link to torrent . . . < / source > <nl> + < translation > Додати & amp ; посилання на торрент . . . < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 195 " / > <nl> < source > Report a & amp ; bug < / source > <nl> < translation > Повідомити про & amp ; помилку < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 200 " / > <nl> + < source > Set upload limit . . . < / source > <nl> + < translation > Встановити обмеження вивантаження . . . < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 205 " / > <nl> + < source > Set download limit . . . < / source > <nl> + < translation > Встановити обмеження завантаження . . . < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 210 " / > <nl> < source > & amp ; Documentation < / source > <nl> < translation > & amp ; Документація < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 215 " / > <nl> + < source > Set global download limit . . . < / source > <nl> + < translation > Встановити глобальний ліміт завантаження . . . < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 220 " / > <nl> + < source > Set global upload limit . . . < / source > <nl> + < translation > Встановити глобальний ліміт вивантаження . . . < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 277 " / > <nl> < source > & amp ; RSS reader < / source > <nl> < translation > & amp ; Читач RSS < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 285 " / > <nl> < source > Search & amp ; engine < / source > <nl> < translation > & amp ; Пошуковик < / translation > <nl> < / message > <nl> < message > <nl> - < source > Log viewer < / source > <nl> - < translation type = " obsolete " > Журнал подій < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Lock qBittorrent < / source > <nl> - < translation > Заблокувати qBittorrent < / translation > <nl> + < location filename = " . . / mainwindow . ui " line = " 341 " / > <nl> + < source > Exit qBittorrent < / source > <nl> + < translation > Вийти із qBittorrent < / translation > <nl> < / message > <nl> < message > <nl> - < source > Ctrl + L < / source > <nl> - < translation type = " obsolete " > Ctrl + L < / translation > <nl> + < location filename = " . . / mainwindow . ui " line = " 349 " / > <nl> + < source > Suspend system < / source > <nl> + < translation > Призупинити систему < / translation > <nl> < / message > <nl> < message > <nl> - < source > Shutdown computer when downloads complete < / source > <nl> - < translation type = " obsolete " > Вимкнути комп & apos ; ютер , коли завершаться завантаження < / translation > <nl> + < location filename = " . . / mainwindow . ui " line = " 357 " / > <nl> + < source > Shutdown system < / source > <nl> + < translation > Вимкнути систему < / translation > <nl> < / message > <nl> < message > <nl> - < source > & amp ; Resume < / source > <nl> - < translation > & amp ; Продовжити < / translation > <nl> + < location filename = " . . / mainwindow . ui " line = " 365 " / > <nl> + < source > Disabled < / source > <nl> + < translation > Вимкнено < / translation > <nl> < / message > <nl> < message > <nl> - < source > R & amp ; esume All < / source > <nl> - < translation > П & amp ; родовжити всі < / translation > <nl> + < location filename = " . . / mainwindow . ui " line = " 370 " / > <nl> + < location filename = " . . / mainwindow . cpp " line = " 1230 " / > <nl> + < source > Show < / source > <nl> + < translation > Показати < / translation > <nl> < / message > <nl> < message > <nl> - < source > Shutdown qBittorrent when downloads complete < / source > <nl> - < translation type = " obsolete " > Вимкнути qBittorrent після завершення завантажень < / translation > <nl> + < location filename = " . . / mainwindow . ui " line = " 290 " / > <nl> + < location filename = " . . / mainwindow . ui " line = " 293 " / > <nl> + < source > Lock qBittorrent < / source > <nl> + < translation > Заблокувати qBittorrent < / translation > <nl> < / message > <nl> < message > <nl> - < source > Exit < / source > <nl> - < translation > Вийти < / translation > <nl> + < location filename = " . . / mainwindow . ui " line = " 301 " / > <nl> + < source > Import existing torrent . . . < / source > <nl> + < translation > Імпортувати існуючий торрент . . . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 304 " / > <nl> < source > Import torrent . . . < / source > <nl> < translation > Імпортувати торрент . . . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 309 " / > <nl> < source > Donate money < / source > <nl> < translation > Пожертвувати гроші < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 312 " / > <nl> < source > If you like qBittorrent , please donate ! < / source > <nl> < translation > Якщо вам подобається qBittorrent , будь ласка , пожертвуйте кошти ! < / translation > <nl> < / message > <nl> < message > <nl> - < source > qBittorrent % 1 < / source > <nl> - < comment > e . g : qBittorrent v0 . x < / comment > <nl> - < translation type = " obsolete " > qBittorrent % 1 < / translation > <nl> + < location filename = " . . / mainwindow . ui " line = " 330 " / > <nl> + < source > Execution & amp ; Log < / source > <nl> + < translation > & amp ; Журнал виконання < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 333 " / > <nl> + < location filename = " . . / mainwindow . cpp " line = " 1375 " / > <nl> + < source > Execution Log < / source > <nl> + < translation > Журнал виконання < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 225 " / > <nl> + < source > Decrease priority < / source > <nl> + < translation > Зменшити пріоритет < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / mainwindow . ui " line = " 233 " / > <nl> + < source > Increase priority < / source > <nl> + < translation > Збільшити пріоритет < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 146 " / > <nl> < source > Set the password . . . < / source > <nl> < translation > Встановити пароль . . . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 181 " / > <nl> < source > Transfers < / source > <nl> < translation > Завантаження < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 300 " / > <nl> < source > Torrent file association < / source > <nl> < translation > Асоціації torrent - файлів < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 301 " / > <nl> < source > qBittorrent is not the default application to open torrent files or Magnet links . <nl> Do you want to associate qBittorrent to torrent files and Magnet links ? < / source > <nl> < translation > qBittorrent не є програмою за замовчуванням для відкривання торрентів . <nl> Встановити qBittorrent як програму для відкривання torrent - файлів та Магнітних посилань ? < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 400 " / > <nl> + < location filename = " . . / mainwindow . cpp " line = " 420 " / > <nl> + < location filename = " . . / mainwindow . cpp " line = " 690 " / > <nl> < source > UI lock password < / source > <nl> < translation > Пароль блокування інтерфейсу < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 400 " / > <nl> + < location filename = " . . / mainwindow . cpp " line = " 420 " / > <nl> + < location filename = " . . / mainwindow . cpp " line = " 690 " / > <nl> < source > Please type the UI lock password : < / source > <nl> < translation > Будь ласка , введіть пароль блокування інтерфейсу : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 404 " / > <nl> + < source > The password should contain at least 3 characters < / source > <nl> + < translation > Пароль повинен містити щонайменше 3 символи < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 410 " / > <nl> < source > Password update < / source > <nl> < translation > Оновити пароль < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 410 " / > <nl> < source > The UI lock password has been successfully updated < / source > <nl> < translation > Пароль блокування інтерфейсу був успішно оновлений < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 436 " / > <nl> < source > RSS < / source > <nl> < translation > RSS < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 451 " / > <nl> < source > Search < / source > <nl> < translation > Пошук < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 461 " / > <nl> < source > Transfers ( % 1 ) < / source > <nl> < translation > Завантаження ( % 1 ) < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 537 " / > <nl> < source > Download completion < / source > <nl> < translation > Завантажено < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 537 " / > <nl> < source > % 1 has finished downloading . < / source > <nl> < comment > e . g : xxx . avi has finished downloading . < / comment > <nl> < translation > Завантаження & apos ; % 1 & apos ; закінчилось . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 543 " / > <nl> < source > I / O Error < / source > <nl> < comment > i . e : Input / Output Error < / comment > <nl> < translation > Помилка вводу / виводу < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 543 " / > <nl> < source > An I / O error occurred for torrent % 1 . <nl> Reason : % 2 < / source > <nl> < comment > e . g : An error occurred for torrent xxx . avi . <nl> Do you want to associate qBittorrent to torrent files and Magnet links ? < / source > <nl> Причина : % 2 < / translation > <nl> < / message > <nl> < message > <nl> - < source > Alt + 1 < / source > <nl> - < comment > shortcut to switch to first tab < / comment > <nl> - < translation type = " obsolete " > Alt + 1 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Alt + 2 < / source > <nl> - < comment > shortcut to switch to third tab < / comment > <nl> - < translation type = " obsolete " > Alt + 2 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Ctrl + F < / source > <nl> - < comment > shortcut to switch to search tab < / comment > <nl> - < translation type = " obsolete " > Ctrl + F < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Alt + 3 < / source > <nl> - < comment > shortcut to switch to fourth tab < / comment > <nl> - < translation type = " obsolete " > Alt + 3 < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 604 " / > <nl> < source > Recursive download confirmation < / source > <nl> < translation > Підтвердження рекурсивного завантаження < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 604 " / > <nl> < source > The torrent % 1 contains torrent files , do you want to proceed with their download ? < / source > <nl> < translation > Торрент % 1 містить інші торренти . Завантажувати і їх ? < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 605 " / > <nl> + < location filename = " . . / mainwindow . cpp " line = " 779 " / > <nl> < source > Yes < / source > <nl> < translation > Так < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 606 " / > <nl> + < location filename = " . . / mainwindow . cpp " line = " 778 " / > <nl> < source > No < / source > <nl> < translation > Ні < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 607 " / > <nl> < source > Never < / source > <nl> < translation > Ніколи < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 621 " / > <nl> < source > Url download error < / source > <nl> < translation > Помилка завантаження URL < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 621 " / > <nl> < source > Couldn & apos ; t download file at url : % 1 , reason : % 2 . < / source > <nl> < translation > Не вдалося завантажити файл з URL : % 1 , причина : % 2 . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 632 " / > <nl> < source > Global Upload Speed Limit < / source > <nl> < translation > Глобальний ліміт вивантаження < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 651 " / > <nl> < source > Global Download Speed Limit < / source > <nl> < translation > Глобальний ліміт завантаження < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 1147 " / > <nl> + < source > [ D : % 1 / s , U : % 2 / s ] qBittorrent % 3 < / source > <nl> + < comment > D = Download ; U = Upload ; % 3 is qBittorrent version < / comment > <nl> + < translation > [ З : % 1 / s , В : % 2 / s ] qBittorrent % 3 < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 404 " / > <nl> + < location filename = " . . / mainwindow . cpp " line = " 703 " / > <nl> < source > Invalid password < / source > <nl> < translation > Неправильний пароль < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 703 " / > <nl> < source > The password is invalid < / source > <nl> < translation > Пароль неправильний < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 1230 " / > <nl> + < source > Hide < / source > <nl> + < translation > Сховати < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 775 " / > <nl> < source > Exiting qBittorrent < / source > <nl> < translation > Вихід із qBittorrent < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 776 " / > <nl> < source > Some files are currently transferring . <nl> Are you sure you want to quit qBittorrent ? < / source > <nl> < translation > Не всі завантаження завершені . <nl> Ви впевнені , що хочете вийти з програми ? < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / mainwindow . cpp " line = " 780 " / > <nl> < source > Always < / source > <nl> < translation > Завжди < / translation > <nl> < / message > <nl> < message > <nl> - < source > Open Torrent Files < / source > <nl> - < translation > Відкрити torrent - файли < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Torrent Files < / source > <nl> - < translation > Torrent - файли < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Options were saved successfully . < / source > <nl> - < translation > Налаштування були успішно збережені . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > qBittorrent < / source > <nl> - < translation type = " obsolete " > qBittorrent < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > DL speed : % 1 KiB / s < / source > <nl> - < comment > e . g : Download speed : 10 KiB / s < / comment > <nl> - < translation > Швидкість прийому : % 1 КіБ / с < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > UP speed : % 1 KiB / s < / source > <nl> - < comment > e . g : Upload speed : 10 KiB / s < / comment > <nl> - < translation > Швидкість віддачі : % 1 КіБ / с < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > qBittorrent % 1 ( Down : % 2 / s , Up : % 3 / s ) < / source > <nl> - < comment > % 1 is qBittorrent version < / comment > <nl> - < translation type = " obsolete " > qBittorrent % 1 ( Зав . : % 2 / с , Вив . : % 3 / с ) < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > A newer version is available < / source > <nl> - < translation > Доступна новіша версія < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > A newer version of qBittorrent is available on Sourceforge . <nl> - Would you like to update qBittorrent to version % 1 ? < / source > <nl> - < translation > Нова версія qBittorrent доступна на SourceForge . <nl> - Чи хочете ви оновити qBittorrent до версії % 1 ? < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Impossible to update qBittorrent < / source > <nl> - < translation > Неможливо оновити qBittorrent < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > qBittorrent failed to update , reason : % 1 < / source > <nl> - < translation > qBittorrent не вдалося оновити . Причина : % 1 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > & amp ; Add torrent file . . . < / source > <nl> - < translation > & amp ; Додати торрент - файл . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Add & amp ; link to torrent . . . < / source > <nl> - < translation > Додати & amp ; посилання на торрент . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Import existing torrent . . . < / source > <nl> - < translation > Імпортувати існуючий торрент . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Execution & amp ; Log < / source > <nl> - < translation > & amp ; Журнал виконання < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Execution Log < / source > <nl> - < translation > Журнал виконання < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Auto - Shutdown on downloads completion < / source > <nl> - < translation > Автоматичне вимкнення після завершення завантажень < / translation > <nl> + < location filename = " . . / mainwindow . cpp " line = " 932 " / > <nl> + < source > Open Torrent Files < / source > <nl> + < translation > Відкрити torrent - файли < / translation > <nl> < / message > <nl> < message > <nl> - < source > Exit qBittorrent < / source > <nl> - < translation > Вийти із qBittorrent < / translation > <nl> + < location filename = " . . / mainwindow . cpp " line = " 933 " / > <nl> + < source > Torrent Files < / source > <nl> + < translation > Torrent - файли < / translation > <nl> < / message > <nl> < message > <nl> - < source > Suspend system < / source > <nl> - < translation > Призупинити систему < / translation > <nl> + < location filename = " . . / mainwindow . cpp " line = " 1021 " / > <nl> + < source > Options were saved successfully . < / source > <nl> + < translation > Налаштування були успішно збережені . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Shutdown system < / source > <nl> - < translation > Вимкнути систему < / translation > <nl> + < location filename = " . . / mainwindow . cpp " line = " 1133 " / > <nl> + < location filename = " . . / mainwindow . cpp " line = " 1140 " / > <nl> + < source > DL speed : % 1 KiB / s < / source > <nl> + < comment > e . g : Download speed : 10 KiB / s < / comment > <nl> + < translation > Швидкість прийому : % 1 КіБ / с < / translation > <nl> < / message > <nl> < message > <nl> - < source > Disabled < / source > <nl> - < translation > Вимкнено < / translation > <nl> + < location filename = " . . / mainwindow . cpp " line = " 1136 " / > <nl> + < location filename = " . . / mainwindow . cpp " line = " 1142 " / > <nl> + < source > UP speed : % 1 KiB / s < / source > <nl> + < comment > e . g : Upload speed : 10 KiB / s < / comment > <nl> + < translation > Швидкість віддачі : % 1 КіБ / с < / translation > <nl> < / message > <nl> < message > <nl> - < source > The password should contain at least 3 characters < / source > <nl> - < translation > Пароль повинен містити щонайменше 3 символи < / translation > <nl> + < location filename = " . . / mainwindow . cpp " line = " 1332 " / > <nl> + < source > A newer version is available < / source > <nl> + < translation > Доступна новіша версія < / translation > <nl> < / message > <nl> < message > <nl> - < source > Show < / source > <nl> - < translation > Показати < / translation > <nl> + < location filename = " . . / mainwindow . cpp " line = " 1333 " / > <nl> + < source > A newer version of qBittorrent is available on Sourceforge . <nl> + Would you like to update qBittorrent to version % 1 ? < / source > <nl> + < translation > Нова версія qBittorrent доступна на SourceForge . <nl> + Чи хочете ви оновити qBittorrent до версії % 1 ? < / translation > <nl> < / message > <nl> < message > <nl> - < source > Hide < / source > <nl> - < translation > Сховати < / translation > <nl> + < location filename = " . . / mainwindow . cpp " line = " 1348 " / > <nl> + < source > Impossible to update qBittorrent < / source > <nl> + < translation > Неможливо оновити qBittorrent < / translation > <nl> < / message > <nl> < message > <nl> - < source > [ D : % 1 / s , U : % 2 / s ] qBittorrent % 3 < / source > <nl> - < comment > D = Download ; U = Upload ; % 3 is qBittorrent version < / comment > <nl> - < translation > [ З : % 1 / s , В : % 2 / s ] qBittorrent % 3 < / translation > <nl> + < location filename = " . . / mainwindow . cpp " line = " 1348 " / > <nl> + < source > qBittorrent failed to update , reason : % 1 < / source > <nl> + < translation > qBittorrent не вдалося оновити . Причина : % 1 < / translation > <nl> < / message > <nl> < / context > <nl> < context > <nl> < name > PeerAdditionDlg < / name > <nl> < message > <nl> + < location filename = " . . / properties / peeraddition . h " line = " 94 " / > <nl> < source > Invalid IP < / source > <nl> < translation > Неправильна IP < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / peeraddition . h " line = " 95 " / > <nl> < source > The IP you provided is invalid . < / source > <nl> < translation > Вказана IP - адреса неправильна . < / translation > <nl> < / message > <nl> Would you like to update qBittorrent to version % 1 ? < / source > <nl> < context > <nl> < name > PeerListDelegate < / name > <nl> < message > <nl> + < location filename = " . . / properties / peerlistdelegate . h " line = " 64 " / > <nl> < source > / s < / source > <nl> < comment > / second ( i . e . per second ) < / comment > <nl> < translation > / с < / translation > <nl> Would you like to update qBittorrent to version % 1 ? < / source > <nl> < context > <nl> < name > PeerListWidget < / name > <nl> < message > <nl> + < location filename = " . . / properties / peerlistwidget . cpp " line = " 65 " / > <nl> < source > IP < / source > <nl> < translation > IP < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / peerlistwidget . cpp " line = " 66 " / > <nl> + < source > Flags < / source > <nl> + < translation type = " unfinished " / > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / properties / peerlistwidget . cpp " line = " 67 " / > <nl> + < source > Connection < / source > <nl> + < translation > З & apos ; єднання < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / properties / peerlistwidget . cpp " line = " 68 " / > <nl> < source > Client < / source > <nl> < comment > i . e . : Client application < / comment > <nl> < translation > Клієнт < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / peerlistwidget . cpp " line = " 69 " / > <nl> < source > Progress < / source > <nl> < comment > i . e : % downloaded < / comment > <nl> < translation > Прогрес < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / peerlistwidget . cpp " line = " 70 " / > <nl> < source > Down Speed < / source > <nl> < comment > i . e : Download speed < / comment > <nl> < translation > Шв . завант . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / peerlistwidget . cpp " line = " 71 " / > <nl> < source > Up Speed < / source > <nl> < comment > i . e : Upload speed < / comment > <nl> < translation > Шв . вивант . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / peerlistwidget . cpp " line = " 72 " / > <nl> < source > Downloaded < / source > <nl> < comment > i . e : total data downloaded < / comment > <nl> < translation > Завантажено < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / peerlistwidget . cpp " line = " 73 " / > <nl> < source > Uploaded < / source > <nl> < comment > i . e : total data uploaded < / comment > <nl> < translation > Вивантажено < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / peerlistwidget . cpp " line = " 157 " / > <nl> + < source > Add a new peer . . . < / source > <nl> + < translation > Додати нового піра . . . < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / properties / peerlistwidget . cpp " line = " 166 " / > <nl> + < source > Copy IP < / source > <nl> + < translation > Копіювати IP - адресу < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / properties / peerlistwidget . cpp " line = " 168 " / > <nl> + < source > Limit download rate . . . < / source > <nl> + < translation > Обмежити швидкість завантаження . . . < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / properties / peerlistwidget . cpp " line = " 169 " / > <nl> + < source > Limit upload rate . . . < / source > <nl> + < translation > Обмежити швидкість вивантаження . . . < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / properties / peerlistwidget . cpp " line = " 171 " / > <nl> < source > Ban peer permanently < / source > <nl> < translation > Заблокувати піра < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / peerlistwidget . cpp " line = " 182 " / > <nl> + < location filename = " . . / properties / peerlistwidget . cpp " line = " 184 " / > <nl> < source > Peer addition < / source > <nl> < translation > Додавання піра < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / peerlistwidget . cpp " line = " 182 " / > <nl> < source > The peer was added to this torrent . < / source > <nl> < translation > Піра додано до цього торрента . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / peerlistwidget . cpp " line = " 184 " / > <nl> < source > The peer could not be added to this torrent . < / source > <nl> < translation > Не вдалося додати піра до цього торрента . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / peerlistwidget . cpp " line = " 215 " / > <nl> < source > Are you sure ? - - qBittorrent < / source > <nl> < translation > Ви впевнені ? - - qBittorrent < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / peerlistwidget . cpp " line = " 215 " / > <nl> < source > Are you sure you want to ban permanently the selected peers ? < / source > <nl> < translation > Ви впевнені , що хочете назовсім заблокувати вибраних пірів ? < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / peerlistwidget . cpp " line = " 216 " / > <nl> < source > & amp ; Yes < / source > <nl> < translation > & amp ; Так < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / peerlistwidget . cpp " line = " 216 " / > <nl> < source > & amp ; No < / source > <nl> < translation > & amp ; Ні < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / peerlistwidget . cpp " line = " 223 " / > <nl> < source > Manually banning peer % 1 . . . < / source > <nl> < translation > Заблоковано піра % 1 . . . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / peerlistwidget . cpp " line = " 247 " / > <nl> < source > Upload rate limiting < / source > <nl> < translation > Обмеження швидкості вивантаження < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / peerlistwidget . cpp " line = " 281 " / > <nl> < source > Download rate limiting < / source > <nl> < translation > Обмеження швидкості завантаження < / translation > <nl> < / message > <nl> - < message > <nl> - < source > Add a new peer . . . < / source > <nl> - < translation > Додати нового піра . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Limit download rate . . . < / source > <nl> - < translation > Обмежити швидкість завантаження . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Limit upload rate . . . < / source > <nl> - < translation > Обмежити швидкість вивантаження . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Copy IP < / source > <nl> - < translation > Копіювати IP - адресу < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Connection < / source > <nl> - < translation > З & apos ; єднання < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Flags < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> - < / message > <nl> < / context > <nl> < context > <nl> < name > Preferences < / name > <nl> < message > <nl> - < source > UI < / source > <nl> - < extracomment > User Interface < / extracomment > <nl> - < translation type = " obsolete " > Інтерфейс < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / preferences / options . ui " line = " 93 " / > <nl> < source > Downloads < / source > <nl> < translation > Завантаження < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / options . ui " line = " 104 " / > <nl> < source > Connection < / source > <nl> < translation > З & apos ; єднання < / translation > <nl> < / message > <nl> < message > <nl> - < source > Bittorrent < / source > <nl> - < translation type = " obsolete " > Bittorrent < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Proxy < / source > <nl> - < translation type = " obsolete " > Проксі < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 115 " / > <nl> + < source > Speed < / source > <nl> + < translation > Швидкість < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / options . ui " line = " 137 " / > <nl> < source > Web UI < / source > <nl> < translation > Веб - інтерфейс < / translation > <nl> < / message > <nl> < message > <nl> - < source > Language : < / source > <nl> - < translation type = " obsolete " > Мова : < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 148 " / > <nl> + < source > Advanced < / source > <nl> + < translation > Додатково < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / options . ui " line = " 224 " / > <nl> < source > ( Requires restart ) < / source > <nl> < translation > ( Потребує перезавантаження програми ) < / translation > <nl> < / message > <nl> < message > <nl> - < source > Visual style : < / source > <nl> - < translation type = " obsolete " > Візуальний стиль : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Transfer list < / source > <nl> - < translation type = " obsolete " > Список завантажень < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / preferences / options . ui " line = " 258 " / > <nl> < source > Use alternating row colors < / source > <nl> < extracomment > In transfer list , one every two rows will have grey background . < / extracomment > <nl> < translation > Кожен другий рядок виділений кольором < / translation > <nl> < / message > <nl> < message > <nl> - < source > File system < / source > <nl> - < translation type = " obsolete " > Файлова система < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Torrent queueing < / source > <nl> - < translation type = " obsolete " > Черга торрентів < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Maximum active downloads : < / source > <nl> - < translation > Макс . активних завантажень : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Maximum active uploads : < / source > <nl> - < translation > Макс . активних вивантажень : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Maximum active torrents : < / source > <nl> - < translation > Макс . активних торрентів : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > When adding a torrent < / source > <nl> - < translation > При додаванні торрента < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Display torrent content and some options < / source > <nl> - < translation > Відображати вміст торрента і деякі налаштування < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Listening port < / source > <nl> - < translation type = " obsolete " > Порт < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Port used for incoming connections : < / source > <nl> - < translation > Порт для вхідних з & apos ; єднань : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Random < / source > <nl> - < translation > Випадковий < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Enable UPnP port mapping < / source > <nl> - < translation type = " obsolete " > Увімкнути UPnP < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Enable NAT - PMP port mapping < / source > <nl> - < translation type = " obsolete " > Увімкнути NAT - PMP < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Connections limit < / source > <nl> - < translation type = " obsolete " > Ліміт з & apos ; єднань < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Global maximum number of connections : < / source > <nl> - < translation > Максимальна кількість з & apos ; єднань : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Maximum number of connections per torrent : < / source > <nl> - < translation > Максимальна кількість з & apos ; єднань на торрент : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Maximum number of upload slots per torrent : < / source > <nl> - < translation > Макс . з & apos ; єднань для вивантаження на торрент : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Upload : < / source > <nl> - < translation > Вивантаження : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Download : < / source > <nl> - < translation > Завантаження : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > KiB / s < / source > <nl> - < translation > КіБ / с < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Bittorrent features < / source > <nl> - < translation type = " obsolete " > Можливості Bittorrent < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Enable DHT network ( decentralized ) < / source > <nl> - < translation type = " obsolete " > Увімкнути мережу DHT ( децентралізована ) < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Use a different port for DHT and Bittorrent < / source > <nl> - < translation type = " obsolete " > Використовувати різні порти для DHT та Bittorrent < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > DHT port : < / source > <nl> - < translation > Порт DHT : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Enable Peer Exchange / PeX ( requires restart ) < / source > <nl> - < translation type = " obsolete " > Увімкнути обмін пірами / PeX ( потребує перезавантаження ) < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Enable Local Peer Discovery < / source > <nl> - < translation type = " obsolete " > Увімкнути локальний пошук пірів < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Enabled < / source > <nl> - < translation type = " obsolete " > Увімкнено < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Forced < / source > <nl> - < translation type = " obsolete " > Примусове < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Disabled < / source > <nl> - < translation type = " obsolete " > Вимкнено < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Type : < / source > <nl> - < translation > Тип : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > ( None ) < / source > <nl> - < translation > ( Немає ) < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > HTTP < / source > <nl> - < translation > HTTP < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Port : < / source > <nl> - < translation > Порт : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Authentication < / source > <nl> - < translation > Автентифікація < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Username : < / source > <nl> - < translation > Ім & apos ; я користувача : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Password : < / source > <nl> - < translation > Пароль : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > SOCKS5 < / source > <nl> - < translation > SOCKS5 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > HTTP Server < / source > <nl> - < translation type = " obsolete " > HTTP сервер < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Filter path ( . dat , . p2p , . p2b ) : < / source > <nl> - < translation > Шлях до фільтра ( . dat , . p2p , . p2b ) : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > HTTP Communications ( trackers , Web seeds , search engine ) < / source > <nl> - < translation type = " obsolete " > HTTP - спілкування ( трекери , веб - сіди , пошуковики ) < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Host : < / source > <nl> - < translation > Сервер : < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 300 " / > <nl> + < location filename = " . . / preferences / options . ui " line = " 326 " / > <nl> + < source > Start / Stop Torrent < / source > <nl> + < translation > Запустити або зупинити торрент < / translation > <nl> < / message > <nl> < message > <nl> - < source > Peer Communications < / source > <nl> - < translation type = " obsolete " > Спілкування пірів < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 310 " / > <nl> + < location filename = " . . / preferences / options . ui " line = " 336 " / > <nl> + < source > No action < / source > <nl> + < translation > Нічого не робити < / translation > <nl> < / message > <nl> < message > <nl> - < source > SOCKS4 < / source > <nl> - < translation > SOCKS4 < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 685 " / > <nl> + < source > Append . ! qB extension to incomplete files < / source > <nl> + < translation > Додавати розширення . ! qB до незавершених файлів < / translation > <nl> < / message > <nl> < message > <nl> - < source > Speed < / source > <nl> - < translation > Швидкість < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 788 " / > <nl> + < source > Copy . torrent files to : < / source > <nl> + < translation > Копіювати torrent - файли до : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Advanced < / source > <nl> - < translation > Додатково < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 993 " / > <nl> + < source > The following parameters are supported : <nl> + & lt ; ul & gt ; <nl> + & lt ; li & gt ; % f : Torrent path & lt ; / li & gt ; <nl> + & lt ; li & gt ; % n : Torrent name & lt ; / li & gt ; <nl> + & lt ; / ul & gt ; < / source > <nl> + < translation > Підтримуються наступні параметри : <nl> + & lt ; ul & gt ; <nl> + & lt ; li & gt ; % f : Шлях до торрента & lt ; / li & gt ; <nl> + & lt ; li & gt ; % n : Назва торрента & lt ; / li & gt ; <nl> + & lt ; / ul & gt ; < / translation > <nl> < / message > <nl> < message > <nl> - < source > Copy . torrent files to : < / source > <nl> - < translation > Копіювати torrent - файли до : < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1107 " / > <nl> + < source > Connections Limits < / source > <nl> + < translation > Обмеження з & apos ; єднань < / translation > <nl> < / message > <nl> < message > <nl> - < source > Global speed limits < / source > <nl> - < translation type = " obsolete " > Глобальні обмеження швидкості < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1260 " / > <nl> + < source > Proxy Server < / source > <nl> + < translation > Проксі - сервер < / translation > <nl> < / message > <nl> < message > <nl> - < source > Alternative global speed limits < / source > <nl> - < translation type = " obsolete " > Альтернативні глобальні обмеження швидкості < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1517 " / > <nl> + < source > Global Rate Limits < / source > <nl> + < translation > Глобальні обмеження швидкості < / translation > <nl> < / message > <nl> < message > <nl> - < source > to < / source > <nl> - < extracomment > time1 to time2 < / extracomment > <nl> - < translation > - < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1635 " / > <nl> + < source > Apply rate limit to uTP connections < / source > <nl> + < translation > Застосовувати обмеження до з & apos ; єднань uTP < / translation > <nl> < / message > <nl> < message > <nl> - < source > Every day < / source > <nl> - < translation > Щодня < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1642 " / > <nl> + < source > Apply rate limit to transport overhead < / source > <nl> + < translation > Застосовувати обмеження до протоколу передачі < / translation > <nl> < / message > <nl> < message > <nl> - < source > Week days < / source > <nl> - < translation > Дні тижня < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1655 " / > <nl> + < source > Alternative Global Rate Limits < / source > <nl> + < translation > Альтернативні глобальні обмеження швидкості < / translation > <nl> < / message > <nl> < message > <nl> - < source > Week ends < / source > <nl> - < translation > Вихідні < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1761 " / > <nl> + < source > Schedule the use of alternative rate limits < / source > <nl> + < translation > Використання альтернативних обмежень швидкості за розкладом < / translation > <nl> < / message > <nl> < message > <nl> - < source > Remove folder < / source > <nl> - < translation > Вилучити папку < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 2021 " / > <nl> + < source > Enable Local Peer Discovery to find more peers < / source > <nl> + < translation > Увімкнути локальний пошук пірів , щоб знаходити більше пірів < / translation > <nl> < / message > <nl> < message > <nl> - < source > No action < / source > <nl> - < translation > Нічого не робити < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 2033 " / > <nl> + < source > Encryption mode : < / source > <nl> + < translation > Режим шифрування : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Options < / source > <nl> - < translation > Налаштування < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 2041 " / > <nl> + < source > Prefer encryption < / source > <nl> + < translation > Надавати перевагу шифруванню < / translation > <nl> < / message > <nl> < message > <nl> - < source > Visual Appearance < / source > <nl> - < translation type = " obsolete " > Вигляд < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 2046 " / > <nl> + < source > Require encryption < / source > <nl> + < translation > Вимагати шифрування < / translation > <nl> < / message > <nl> < message > <nl> - < source > Action on double - click < / source > <nl> - < translation > Дія при подвійному клацанні на торрент < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 2051 " / > <nl> + < source > Disable encryption < / source > <nl> + < translation > Вимкнути шифрування < / translation > <nl> < / message > <nl> < message > <nl> - < source > Downloading torrents : < / source > <nl> - < translation > Якщо завантажується : < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 2083 " / > <nl> + < source > ( & lt ; a href = & quot ; http : / / github . com / qbittorrent / qBittorrent / wiki / Anonymous - Mode & quot ; & gt ; More information & lt ; / a & gt ; ) < / source > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < message > <nl> - < source > Start / Stop < / source > <nl> - < translation type = " obsolete " > Почати / Зупинити < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 2126 " / > <nl> + < source > Maximum active downloads : < / source > <nl> + < translation > Макс . активних завантажень : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Open destination folder < / source > <nl> - < translation > Відкрити папку призначення < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 2146 " / > <nl> + < source > Maximum active uploads : < / source > <nl> + < translation > Макс . активних вивантажень : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Completed torrents : < / source > <nl> - < translation > Завершені торренти : < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 2166 " / > <nl> + < source > Maximum active torrents : < / source > <nl> + < translation > Макс . активних торрентів : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Desktop < / source > <nl> - < translation > Робочий стіл < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 533 " / > <nl> + < source > When adding a torrent < / source > <nl> + < translation > При додаванні торрента < / translation > <nl> < / message > <nl> < message > <nl> - < source > Show splash screen on start up < / source > <nl> - < translation > Показувати логотип при завантаженні програми < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 79 " / > <nl> + < location filename = " . . / preferences / options . ui " line = " 82 " / > <nl> + < source > Behavior < / source > <nl> + < translation > Поведінка < / translation > <nl> < / message > <nl> < message > <nl> - < source > Start qBittorrent minimized < / source > <nl> - < translation > Запускати qBittorrent згорнутим < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 188 " / > <nl> + < source > Language < / source > <nl> + < translation > Мова < / translation > <nl> < / message > <nl> < message > <nl> - < source > Show qBittorrent icon in notification area < / source > <nl> - < translation type = " obsolete " > Показувати qBittorrent у зоні сповіщень < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 542 " / > <nl> + < source > Display torrent content and some options < / source > <nl> + < translation > Відображати вміст торрента і деякі налаштування < / translation > <nl> < / message > <nl> < message > <nl> - < source > Minimize qBittorrent to notification area < / source > <nl> - < translation > Згортати qBittorrent у зону сповіщень < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1043 " / > <nl> + < source > Port used for incoming connections : < / source > <nl> + < translation > Порт для вхідних з & apos ; єднань : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Close qBittorrent to notification area < / source > <nl> - < comment > i . e : The systray tray icon will still be visible when closing the main window . < / comment > <nl> - < translation > Закривати qBittorrent у зону сповіщень < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1063 " / > <nl> + < source > Random < / source > <nl> + < translation > Випадковий < / translation > <nl> < / message > <nl> < message > <nl> - < source > Do not start the download automatically < / source > <nl> - < comment > The torrent will be added to download list in pause state < / comment > <nl> - < translation > Не починати завантаження автоматично < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1113 " / > <nl> + < source > Global maximum number of connections : < / source > <nl> + < translation > Максимальна кількість з & apos ; єднань : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Save files to location : < / source > <nl> - < translation > Зберігати файли до : < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1139 " / > <nl> + < source > Maximum number of connections per torrent : < / source > <nl> + < translation > Максимальна кількість з & apos ; єднань на торрент : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Append the label of the torrent to the save path < / source > <nl> - < translation > Додавати мітку торрента до шляху збереження < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1162 " / > <nl> + < source > Maximum number of upload slots per torrent : < / source > <nl> + < translation > Макс . з & apos ; єднань для вивантаження на торрент : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Pre - allocate disk space for all files < / source > <nl> - < translation > Попередньо виділяти місце для всіх файлів < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1535 " / > <nl> + < location filename = " . . / preferences / options . ui " line = " 1690 " / > <nl> + < source > Upload : < / source > <nl> + < translation > Вивантаження : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Keep incomplete torrents in : < / source > <nl> - < translation > Тримати незавершені торренти у : < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1571 " / > <nl> + < location filename = " . . / preferences / options . ui " line = " 1717 " / > <nl> + < source > Download : < / source > <nl> + < translation > Завантаження : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Append . ! qB extension to incomplete files & apos ; names < / source > <nl> - < translation type = " obsolete " > Додавати розширення . ! qB до незавершених файлів < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1564 " / > <nl> + < location filename = " . . / preferences / options . ui " line = " 1597 " / > <nl> + < location filename = " . . / preferences / options . ui " line = " 1710 " / > <nl> + < location filename = " . . / preferences / options . ui " line = " 1737 " / > <nl> + < source > KiB / s < / source > <nl> + < translation > КіБ / с < / translation > <nl> < / message > <nl> < message > <nl> - < source > Automatically add torrents from : < / source > <nl> - < translation > Автоматично додавати торренти із : < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 755 " / > <nl> + < source > Remove folder < / source > <nl> + < translation > Вилучити папку < / translation > <nl> < / message > <nl> < message > <nl> - < source > Add folder . . . < / source > <nl> - < translation > Додати папку . . . < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1802 " / > <nl> + < source > to < / source > <nl> + < extracomment > time1 to time2 < / extracomment > <nl> + < translation > - < / translation > <nl> < / message > <nl> < message > <nl> - < source > IP Filtering < / source > <nl> - < translation > IP - фільтр < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1854 " / > <nl> + < source > Every day < / source > <nl> + < translation > Щодня < / translation > <nl> < / message > <nl> < message > <nl> - < source > Schedule the use of alternative speed limits < / source > <nl> - < translation type = " obsolete " > Розклад використання альтернативних обмежень швидкості < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1859 " / > <nl> + < source > Week days < / source > <nl> + < translation > Дні тижня < / translation > <nl> < / message > <nl> < message > <nl> - < source > from < / source > <nl> - < extracomment > from ( time1 to time2 ) < / extracomment > <nl> - < translation > з < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1864 " / > <nl> + < source > Week ends < / source > <nl> + < translation > Вихідні < / translation > <nl> < / message > <nl> < message > <nl> - < source > When : < / source > <nl> - < translation > Коли : < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1964 " / > <nl> + < source > DHT port : < / source > <nl> + < translation > Порт DHT : < / translation > <nl> < / message > <nl> - < message > <nl> - < source > Look for peers on your local network < / source > <nl> - < translation > Шукати пірів у локальній мережі < / translation > <nl> + < message utf8 = " true " > <nl> + < location filename = " . . / preferences / options . ui " line = " 2005 " / > <nl> + < source > Exchange peers with compatible Bittorrent clients ( µTorrent , Vuze , . . . ) < / source > <nl> + < translation > Обмін пірами із сумісними Bittorrent - клієнтами ( µTorrent , Vuze , . . . ) < / translation > <nl> < / message > <nl> < message > <nl> - < source > Protocol encryption : < / source > <nl> - < translation type = " obsolete " > Шифрування протоколу : < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1302 " / > <nl> + < source > Host : < / source > <nl> + < translation > Сервер : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Enable Web User Interface ( Remote control ) < / source > <nl> - < translation > Увімкнути Веб - інтерфейс ( дистанційне керування ) < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1281 " / > <nl> + < source > SOCKS4 < / source > <nl> + < translation > SOCKS4 < / translation > <nl> < / message > <nl> < message > <nl> - < source > Share ratio limiting < / source > <nl> - < translation type = " obsolete " > Обмеження коефіцієнта роздачі < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1268 " / > <nl> + < source > Type : < / source > <nl> + < translation > Тип : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Seed torrents until their ratio reaches < / source > <nl> - < translation > Сідувати торренти , доки їх коефіцієнт не досягне < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 20 " / > <nl> + < location filename = " . . / preferences / options . ui " line = " 1619 " / > <nl> + < source > Options < / source > <nl> + < translation > Налаштування < / translation > <nl> < / message > <nl> < message > <nl> - < source > then < / source > <nl> - < translation > а тоді < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 274 " / > <nl> + < source > Action on double - click < / source > <nl> + < translation > Дія при подвійному клацанні на торрент < / translation > <nl> < / message > <nl> < message > <nl> - < source > Pause them < / source > <nl> - < translation > Призупинити їх < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 283 " / > <nl> + < source > Downloading torrents : < / source > <nl> + < translation > Якщо завантажується : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Remove them < / source > <nl> - < translation > Видалити їх < / translation > <nl> - < / message > <nl> - < message utf8 = " true " > <nl> - < source > Exchange peers with compatible Bittorrent clients ( µTorrent , Vuze , . . . ) < / source > <nl> - < translation > Обмін пірами із сумісними Bittorrent - клієнтами ( µTorrent , Vuze , . . . ) < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 305 " / > <nl> + < location filename = " . . / preferences / options . ui " line = " 331 " / > <nl> + < source > Open destination folder < / source > <nl> + < translation > Відкрити папку призначення < / translation > <nl> < / message > <nl> < message > <nl> - < source > Email notification upon download completion < / source > <nl> - < translation > Сповіщення через e - mail при завершенні завантажень < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 318 " / > <nl> + < source > Completed torrents : < / source > <nl> + < translation > Завершені торренти : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Destination email : < / source > <nl> - < translation > E - mail призначення : < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 350 " / > <nl> + < source > Desktop < / source > <nl> + < translation > Робочий стіл < / translation > <nl> < / message > <nl> < message > <nl> - < source > SMTP server : < / source > <nl> - < translation > SMTP сервер : < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 363 " / > <nl> + < source > Show splash screen on start up < / source > <nl> + < translation > Показувати логотип при завантаженні програми < / translation > <nl> < / message > <nl> < message > <nl> - < source > Run an external program on torrent completion < / source > <nl> - < translation > Запустити зовнішню програму при завершенні торрента < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 373 " / > <nl> + < source > Start qBittorrent minimized < / source > <nl> + < translation > Запускати qBittorrent згорнутим < / translation > <nl> < / message > <nl> < message > <nl> - < source > Use % f to pass the torrent path in parameters < / source > <nl> - < translation type = " obsolete " > Використовуйте % f , щоб передати шлях торрента як параметр < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 399 " / > <nl> + < source > Minimize qBittorrent to notification area < / source > <nl> + < translation > Згортати qBittorrent у зону сповіщень < / translation > <nl> < / message > <nl> < message > <nl> - < source > Proxy server < / source > <nl> - < translation type = " obsolete " > Проксі сервер < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 409 " / > <nl> + < source > Close qBittorrent to notification area < / source > <nl> + < comment > i . e : The systray tray icon will still be visible when closing the main window . < / comment > <nl> + < translation > Закривати qBittorrent у зону сповіщень < / translation > <nl> < / message > <nl> < message > <nl> - < source > BitTorrent < / source > <nl> - < translation > BitTorrent < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 418 " / > <nl> + < source > Tray icon style : < / source > <nl> + < translation > Стиль значка в системному лотку : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Start / Stop Torrent < / source > <nl> - < translation > Запустити або зупинити торрент < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 426 " / > <nl> + < source > Normal < / source > <nl> + < translation > Звичайний < / translation > <nl> < / message > <nl> < message > <nl> - < source > Use UPnP / NAT - PMP port forwarding from my router < / source > <nl> - < translation > Використовувати UPnP / NAT - PMP з мого роутера < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 431 " / > <nl> + < source > Monochrome ( Dark theme ) < / source > <nl> + < translation > Монохромний ( Темна тема ) < / translation > <nl> < / message > <nl> < message > <nl> - < source > Privacy < / source > <nl> - < translation > Конфіденційність < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 436 " / > <nl> + < source > Monochrome ( Light theme ) < / source > <nl> + < translation > Монохромний ( Світла тема ) < / translation > <nl> < / message > <nl> < message > <nl> - < source > Enable DHT ( decentralized network ) to find more peers < / source > <nl> - < translation > Увімкнути DHT ( децентралізовану мережу ) , щоб знаходити більше пірів < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 380 " / > <nl> + < source > Ask for program exit confirmation < / source > <nl> + < translation > Вимагати підтвердження виходу з програми < / translation > <nl> < / message > <nl> < message > <nl> - < source > Use a different port for DHT and BitTorrent < / source > <nl> - < translation > Використовувати різні порти для DHT та BitTorrent < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 196 " / > <nl> + < source > User Interface Language : < / source > <nl> + < translation > Мова інтерфейсу : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Enable Peer Exchange ( PeX ) to find more peers < / source > <nl> - < translation > Увімкнути обмін пірами ( PeX ) , щоб знаходити більше пірів < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 252 " / > <nl> + < source > Transfer List < / source > <nl> + < translation > Список завантажень < / translation > <nl> < / message > <nl> < message > <nl> - < source > Enable Local Peer Discovery to find more peers < / source > <nl> - < translation > Увімкнути локальний пошук пірів , щоб знаходити більше пірів < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 356 " / > <nl> + < source > Start qBittorrent on Windows start up < / source > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < message > <nl> - < source > Encryption mode : < / source > <nl> - < translation > Режим шифрування : < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 390 " / > <nl> + < source > Show qBittorrent in notification area < / source > <nl> + < translation > Показувати qBittorrent в області сповіщень < / translation > <nl> < / message > <nl> < message > <nl> - < source > Prefer encryption < / source > <nl> - < translation > Надавати перевагу шифруванню < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 449 " / > <nl> + < source > File association < / source > <nl> + < translation > Прив & apos ; язка файлів < / translation > <nl> < / message > <nl> < message > <nl> - < source > Require encryption < / source > <nl> - < translation > Вимагати шифрування < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 455 " / > <nl> + < source > Use qBittorrent for . torrent files < / source > <nl> + < translation > Використовувати qBittorrent для файлів . torrent < / translation > <nl> < / message > <nl> < message > <nl> - < source > Disable encryption < / source > <nl> - < translation > Вимкнути шифрування < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 462 " / > <nl> + < source > Use qBittorrent for magnet links < / source > <nl> + < translation > Використовувати qBittorrent для магнітних посилань < / translation > <nl> < / message > <nl> < message > <nl> - < source > User Interface < / source > <nl> - < translation type = " obsolete " > Інтерфейс користувача < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 475 " / > <nl> + < source > Power Management < / source > <nl> + < translation > Керування енергоспоживанням < / translation > <nl> < / message > <nl> < message > <nl> - < source > Reload the filter < / source > <nl> - < translation > Перезавантажити фільтр < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 481 " / > <nl> + < source > Inhibit system sleep when torrents are active < / source > <nl> + < translation > Не дозволяти призупинення системи , коли є активні торренти < / translation > <nl> < / message > <nl> < message > <nl> - < source > Behavior < / source > <nl> - < translation > Поведінка < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 552 " / > <nl> + < source > Do not start the download automatically < / source > <nl> + < comment > The torrent will be added to download list in pause state < / comment > <nl> + < translation > Не починати завантаження автоматично < / translation > <nl> < / message > <nl> < message > <nl> - < source > Language < / source > <nl> - < translation > Мова < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 568 " / > <nl> + < source > Hard Disk < / source > <nl> + < translation > Жорсткий диск < / translation > <nl> < / message > <nl> < message > <nl> - < source > Power Management < / source > <nl> - < translation > Керування енергоспоживанням < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 574 " / > <nl> + < source > Save files to location : < / source > <nl> + < translation > Зберігати файли до : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Inhibit system sleep when torrents are active < / source > <nl> - < translation > Не дозволяти призупинення системи , коли є активні торренти < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 622 " / > <nl> + < source > Append the label of the torrent to the save path < / source > <nl> + < translation > Додавати мітку торрента до шляху збереження < / translation > <nl> < / message > <nl> < message > <nl> - < source > Bypass authentication for localhost < / source > <nl> - < translation > Уникати автентифікації для localhost < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 632 " / > <nl> + < source > Pre - allocate disk space for all files < / source > <nl> + < translation > Попередньо виділяти місце для всіх файлів < / translation > <nl> < / message > <nl> < message > <nl> - < source > Ask for program exit confirmation < / source > <nl> - < translation > Вимагати підтвердження виходу з програми < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 639 " / > <nl> + < source > Keep incomplete torrents in : < / source > <nl> + < translation > Тримати незавершені торренти у : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Use monochrome system tray icon ( requires restart ) < / source > <nl> - < translation type = " obsolete " > Використовувати монохромний логотип системного лотка ( вимагає перезапуску ) < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 692 " / > <nl> + < source > Automatically add torrents from : < / source > <nl> + < translation > Автоматично додавати торренти із : < / translation > <nl> < / message > <nl> < message > <nl> - < source > The following parameters are supported : <nl> - & lt ; ul & gt ; <nl> - & lt ; li & gt ; % f : Torrent path & lt ; / li & gt ; <nl> - & lt ; li & gt ; % n : Torrent name & lt ; / li & gt ; <nl> - & lt ; / ul & gt ; < / source > <nl> - < translation > Підтримуються наступні параметри : <nl> - & lt ; ul & gt ; <nl> - & lt ; li & gt ; % f : Шлях до торрента & lt ; / li & gt ; <nl> - & lt ; li & gt ; % n : Назва торрента & lt ; / li & gt ; <nl> - & lt ; / ul & gt ; < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 745 " / > <nl> + < source > Add folder . . . < / source > <nl> + < translation > Додати папку . . . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Tray icon style : < / source > <nl> - < translation > Стиль значка в системному лотку : < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 837 " / > <nl> + < source > Copy . torrent files for finished downloads to : < / source > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < message > <nl> - < source > Normal < / source > <nl> - < translation > Звичайний < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 893 " / > <nl> + < source > Email notification upon download completion < / source > <nl> + < translation > Сповіщення через e - mail при завершенні завантажень < / translation > <nl> < / message > <nl> < message > <nl> - < source > Monochrome ( Dark theme ) < / source > <nl> - < translation > Монохромний ( Темна тема ) < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 907 " / > <nl> + < source > Destination email : < / source > <nl> + < translation > E - mail призначення : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Monochrome ( Light theme ) < / source > <nl> - < translation > Монохромний ( Світла тема ) < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 917 " / > <nl> + < source > SMTP server : < / source > <nl> + < translation > SMTP сервер : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / options . ui " line = " 966 " / > <nl> < source > This server requires a secure connection ( SSL ) < / source > <nl> < translation > Цей сервер вимагає безпечного з & apos ; єднання ( SSL ) < / translation > <nl> < / message > <nl> < message > <nl> - < source > User Interface Language : < / source > <nl> - < translation > Мова інтерфейсу : < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 978 " / > <nl> + < source > Run an external program on torrent completion < / source > <nl> + < translation > Запустити зовнішню програму при завершенні торрента < / translation > <nl> < / message > <nl> < message > <nl> - < source > Transfer List < / source > <nl> - < translation > Список завантажень < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1035 " / > <nl> + < source > Listening Port < / source > <nl> + < translation > Порт для вхідних з & apos ; єднань < / translation > <nl> < / message > <nl> < message > <nl> - < source > Show qBittorrent in notification area < / source > <nl> - < translation > Показувати qBittorrent в області сповіщень < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1085 " / > <nl> + < source > Use UPnP / NAT - PMP port forwarding from my router < / source > <nl> + < translation > Використовувати UPnP / NAT - PMP з мого роутера < / translation > <nl> < / message > <nl> < message > <nl> - < source > Hard Disk < / source > <nl> - < translation > Жорсткий диск < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1095 " / > <nl> + < source > Use different port on each startup < / source > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < message > <nl> - < source > Listening Port < / source > <nl> - < translation > Порт для вхідних з & apos ; єднань < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1221 " / > <nl> + < source > Global maximum number of upload slots : < / source > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < message > <nl> - < source > Connections Limits < / source > <nl> - < translation > Обмеження з & apos ; єднань < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1356 " / > <nl> + < source > Otherwise , the proxy server is only used for tracker connections < / source > <nl> + < translation > В іншому випадку , проксі - сервер використовується лише для з & apos ; єднань з трекером < / translation > <nl> < / message > <nl> < message > <nl> - < source > Proxy Server < / source > <nl> - < translation > Проксі - сервер < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1359 " / > <nl> + < source > Use proxy for peer connections < / source > <nl> + < translation > Використовувати проксі для з & apos ; єднання з пірами < / translation > <nl> < / message > <nl> < message > <nl> - < source > Torrent Queueing < / source > <nl> - < translation > Черга торрентів < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1431 " / > <nl> + < source > IP Filtering < / source > <nl> + < translation > IP - фільтр < / translation > <nl> < / message > <nl> < message > <nl> - < source > Share Ratio Limiting < / source > <nl> - < translation > Обмеження вивантаження < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1472 " / > <nl> + < source > Reload the filter < / source > <nl> + < translation > Перезавантажити фільтр < / translation > <nl> < / message > <nl> < message > <nl> - < source > Use UPnP / NAT - PMP to forward the port from my router < / source > <nl> - < translation > Використовувати UPnP / NAT - PMP , щоб направити порт в роутері < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1625 " / > <nl> + < source > Enable bandwidth management ( uTP ) < / source > <nl> + < translation > Увімкнути керування пропускною здатністю ( uTP ) < / translation > <nl> < / message > <nl> < message > <nl> - < source > Update my dynamic domain name < / source > <nl> - < translation > Оновити мій динамічний домен < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1778 " / > <nl> + < source > from < / source > <nl> + < extracomment > from ( time1 to time2 ) < / extracomment > <nl> + < translation > з < / translation > <nl> < / message > <nl> < message > <nl> - < source > Service : < / source > <nl> - < translation > Сервіс : < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1846 " / > <nl> + < source > When : < / source > <nl> + < translation > Коли : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Register < / source > <nl> - < translation > Зареєструватись < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1929 " / > <nl> + < source > Privacy < / source > <nl> + < translation > Конфіденційність < / translation > <nl> < / message > <nl> < message > <nl> - < source > Domain name : < / source > <nl> - < translation > Домен : < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1935 " / > <nl> + < source > Enable DHT ( decentralized network ) to find more peers < / source > <nl> + < translation > Увімкнути DHT ( децентралізовану мережу ) , щоб знаходити більше пірів < / translation > <nl> < / message > <nl> < message > <nl> - < source > Global Rate Limits < / source > <nl> - < translation > Глобальні обмеження швидкості < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1944 " / > <nl> + < source > Use a different port for DHT and BitTorrent < / source > <nl> + < translation > Використовувати різні порти для DHT та BitTorrent < / translation > <nl> < / message > <nl> < message > <nl> - < source > Apply rate limit to uTP connections < / source > <nl> - < translation > Застосовувати обмеження до з & apos ; єднань uTP < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 2008 " / > <nl> + < source > Enable Peer Exchange ( PeX ) to find more peers < / source > <nl> + < translation > Увімкнути обмін пірами ( PeX ) , щоб знаходити більше пірів < / translation > <nl> < / message > <nl> < message > <nl> - < source > Apply rate limit to transport overhead < / source > <nl> - < translation > Застосовувати обмеження до протоколу передачі < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 2018 " / > <nl> + < source > Look for peers on your local network < / source > <nl> + < translation > Шукати пірів у локальній мережі < / translation > <nl> < / message > <nl> < message > <nl> - < source > Alternative Global Rate Limits < / source > <nl> - < translation > Альтернативні глобальні обмеження швидкості < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 2076 " / > <nl> + < source > Enable anonymous mode < / source > <nl> + < translation > Увімкнути анонімний режим < / translation > <nl> < / message > <nl> < message > <nl> - < source > Schedule the use of alternative rate limits < / source > <nl> - < translation > Використання альтернативних обмежень швидкості за розкладом < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 2225 " / > <nl> + < source > Do not count slow torrents in these limits < / source > <nl> + < translation > Не враховувати повільні торренти до цих обмежень < / translation > <nl> < / message > <nl> < message > <nl> - < source > Enable bandwidth management ( uTP ) < / source > <nl> - < translation > Увімкнути керування пропускною здатністю ( uTP ) < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 2246 " / > <nl> + < source > Seed torrents until their ratio reaches < / source > <nl> + < translation > Сідувати торренти , доки їх коефіцієнт не досягне < / translation > <nl> < / message > <nl> < message > <nl> - < source > Otherwise , the proxy server is only used for tracker connections < / source > <nl> - < translation > В іншому випадку , проксі - сервер використовується лише для з & apos ; єднань з трекером < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 2278 " / > <nl> + < source > then < / source > <nl> + < translation > а тоді < / translation > <nl> < / message > <nl> < message > <nl> - < source > Use proxy for peer connections < / source > <nl> - < translation > Використовувати проксі для з & apos ; єднання з пірами < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 2289 " / > <nl> + < source > Pause them < / source > <nl> + < translation > Призупинити їх < / translation > <nl> < / message > <nl> < message > <nl> - < source > Append . ! qB extension to incomplete files < / source > <nl> - < translation > Додавати розширення . ! qB до незавершених файлів < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 2294 " / > <nl> + < source > Remove them < / source > <nl> + < translation > Видалити їх < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / preferences / options . ui " line = " 2392 " / > <nl> + < source > Use UPnP / NAT - PMP to forward the port from my router < / source > <nl> + < translation > Використовувати UPnP / NAT - PMP , щоб направити порт в роутері < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / options . ui " line = " 2402 " / > <nl> < source > Use HTTPS instead of HTTP < / source > <nl> < translation > Використовувати HTTPS замість HTTP < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / options . ui " line = " 2445 " / > <nl> < source > Import SSL Certificate < / source > <nl> < translation > Імпортувати сертифікат SSL < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / options . ui " line = " 2498 " / > <nl> < source > Import SSL Key < / source > <nl> < translation > Імпортувати ключ SSL < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / options . ui " line = " 2433 " / > <nl> < source > Certificate : < / source > <nl> < translation > Сертифікат : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / options . ui " line = " 2486 " / > <nl> < source > Key : < / source > <nl> < translation > Ключ : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / options . ui " line = " 2520 " / > <nl> < source > & lt ; a href = http : / / httpd . apache . org / docs / 2 . 2 / ssl / ssl_faq . html # aboutcerts & gt ; Information about certificates & lt ; / a & gt ; < / source > <nl> < translation > & lt ; a href = http : / / httpd . apache . org / docs / 2 . 2 / ssl / ssl_faq . html # aboutcerts & gt ; Інформація про сертифікати & lt ; / a & gt ; < / translation > <nl> < / message > <nl> < message > <nl> - < source > File association < / source > <nl> - < translation > Прив & apos ; язка файлів < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 2565 " / > <nl> + < source > Bypass authentication for localhost < / source > <nl> + < translation > Уникати автентифікації для localhost < / translation > <nl> < / message > <nl> < message > <nl> - < source > Use qBittorrent for . torrent files < / source > <nl> - < translation > Використовувати qBittorrent для файлів . torrent < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 2589 " / > <nl> + < source > Update my dynamic domain name < / source > <nl> + < translation > Оновити мій динамічний домен < / translation > <nl> < / message > <nl> < message > <nl> - < source > Use qBittorrent for magnet links < / source > <nl> - < translation > Використовувати qBittorrent для магнітних посилань < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 2601 " / > <nl> + < source > Service : < / source > <nl> + < translation > Сервіс : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Do not count slow torrents in these limits < / source > <nl> - < translation > Не враховувати повільні торренти до цих обмежень < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 2624 " / > <nl> + < source > Register < / source > <nl> + < translation > Зареєструватись < / translation > <nl> < / message > <nl> < message > <nl> - < source > Enable anonymous mode < / source > <nl> - < translation > Увімкнути анонімний режим < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 2633 " / > <nl> + < source > Domain name : < / source > <nl> + < translation > Домен : < / translation > <nl> < / message > <nl> < message > <nl> - < source > ( & lt ; a href = & quot ; http : / / sourceforge . net / apps / mediawiki / qbittorrent / index . php ? title = Anonymous_mode & quot ; & gt ; More information & lt ; / a & gt ; ) < / source > <nl> - < translation type = " obsolete " > ( & lt ; a href = & quot ; http : / / sourceforge . net / apps / mediawiki / qbittorrent / index . php ? title = Anonymous_mode & quot ; & gt ; Більше інформації & lt ; / a & gt ; ) < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1276 " / > <nl> + < source > ( None ) < / source > <nl> + < translation > ( Немає ) < / translation > <nl> < / message > <nl> < message > <nl> - < source > ( & lt ; a href = & quot ; http : / / github . com / qbittorrent / qBittorrent / wiki / Anonymous - Mode & quot ; & gt ; More information & lt ; / a & gt ; ) < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 126 " / > <nl> + < source > BitTorrent < / source > <nl> + < translation > BitTorrent < / translation > <nl> < / message > <nl> < message > <nl> - < source > Copy . torrent files for finished downloads to : < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1291 " / > <nl> + < source > HTTP < / source > <nl> + < translation > HTTP < / translation > <nl> < / message > <nl> < message > <nl> - < source > Start qBittorrent on Windows start up < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 1328 " / > <nl> + < location filename = " . . / preferences / options . ui " line = " 2357 " / > <nl> + < source > Port : < / source > <nl> + < translation > Порт : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Use different port on each startup < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 927 " / > <nl> + < location filename = " . . / preferences / options . ui " line = " 1369 " / > <nl> + < location filename = " . . / preferences / options . ui " line = " 2533 " / > <nl> + < source > Authentication < / source > <nl> + < translation > Автентифікація < / translation > <nl> < / message > <nl> < message > <nl> - < source > Global maximum number of upload slots : < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < location filename = " . . / preferences / options . ui " line = " 939 " / > <nl> + < location filename = " . . / preferences / options . ui " line = " 1383 " / > <nl> + < location filename = " . . / preferences / options . ui " line = " 2572 " / > <nl> + < location filename = " . . / preferences / options . ui " line = " 2647 " / > <nl> + < source > Username : < / source > <nl> + < translation > Ім & apos ; я користувача : < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / preferences / options . ui " line = " 949 " / > <nl> + < location filename = " . . / preferences / options . ui " line = " 1403 " / > <nl> + < location filename = " . . / preferences / options . ui " line = " 2579 " / > <nl> + < location filename = " . . / preferences / options . ui " line = " 2661 " / > <nl> + < source > Password : < / source > <nl> + < translation > Пароль : < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / preferences / options . ui " line = " 2111 " / > <nl> + < source > Torrent Queueing < / source > <nl> + < translation > Черга торрентів < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / preferences / options . ui " line = " 2235 " / > <nl> + < source > Share Ratio Limiting < / source > <nl> + < translation > Обмеження вивантаження < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / preferences / options . ui " line = " 2343 " / > <nl> + < source > Enable Web User Interface ( Remote control ) < / source > <nl> + < translation > Увімкнути Веб - інтерфейс ( дистанційне керування ) < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / preferences / options . ui " line = " 1286 " / > <nl> + < source > SOCKS5 < / source > <nl> + < translation > SOCKS5 < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / preferences / options . ui " line = " 1443 " / > <nl> + < source > Filter path ( . dat , . p2p , . p2b ) : < / source > <nl> + < translation > Шлях до фільтра ( . dat , . p2p , . p2b ) : < / translation > <nl> < / message > <nl> < / context > <nl> < context > <nl> < name > PreviewSelect < / name > <nl> < message > <nl> + < location filename = " . . / previewselect . cpp " line = " 49 " / > <nl> < source > Name < / source > <nl> < translation > Назва < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / previewselect . cpp " line = " 50 " / > <nl> < source > Size < / source > <nl> < translation > Розмір < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / previewselect . cpp " line = " 51 " / > <nl> < source > Progress < / source > <nl> < translation > Прогрес < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / previewselect . cpp " line = " 78 " / > <nl> + < location filename = " . . / previewselect . cpp " line = " 113 " / > <nl> + < location filename = " . . / previewselect . cpp " line = " 119 " / > <nl> < source > Preview impossible < / source > <nl> < translation > Перегляд неможливий < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / previewselect . cpp " line = " 78 " / > <nl> + < location filename = " . . / previewselect . cpp " line = " 113 " / > <nl> + < location filename = " . . / previewselect . cpp " line = " 119 " / > <nl> < source > Sorry , we can & apos ; t preview this file < / source > <nl> < translation > Пробачте , неможливо переглянути цей файл < / translation > <nl> < / message > <nl> < / context > <nl> < context > <nl> - < name > ProgramUpdater < / name > <nl> - < message > <nl> - < source > Could not create the file % 1 < / source > <nl> - < translation type = " obsolete " > Не вдалося створити файл % 1 < / translation > <nl> - < / message > <nl> + < name > PropListDelegate < / name > <nl> < message > <nl> - < source > Failed to download the update at % 1 < / source > <nl> - < comment > % 1 is an URL < / comment > <nl> - < translation type = " obsolete " > Не вдалося завантажити оновлення із % 1 < / translation > <nl> + < location filename = " . . / properties / proplistdelegate . h " line = " 112 " / > <nl> + < source > Not downloaded < / source > <nl> + < translation > Не завантажується < / translation > <nl> < / message > <nl> - < / context > <nl> - < context > <nl> - < name > PropListDelegate < / name > <nl> < message > <nl> + < location filename = " . . / properties / proplistdelegate . h " line = " 121 " / > <nl> + < location filename = " . . / properties / proplistdelegate . h " line = " 176 " / > <nl> < source > Normal < / source > <nl> < comment > Normal ( priority ) < / comment > <nl> < translation > Нормальний < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / proplistdelegate . h " line = " 115 " / > <nl> + < location filename = " . . / properties / proplistdelegate . h " line = " 177 " / > <nl> < source > High < / source > <nl> < comment > High ( priority ) < / comment > <nl> < translation > Високий < / translation > <nl> < / message > <nl> < message > <nl> - < source > Maximum < / source > <nl> - < comment > Maximum ( priority ) < / comment > <nl> - < translation > Максимальний < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Not downloaded < / source > <nl> - < translation > Не завантажується < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / properties / proplistdelegate . h " line = " 109 " / > <nl> < source > Mixed < / source > <nl> < comment > Mixed ( priorities < / comment > <nl> < translation > Змішані < / translation > <nl> < / message > <nl> + < message > <nl> + < location filename = " . . / properties / proplistdelegate . h " line = " 118 " / > <nl> + < location filename = " . . / properties / proplistdelegate . h " line = " 178 " / > <nl> + < source > Maximum < / source > <nl> + < comment > Maximum ( priority ) < / comment > <nl> + < translation > Максимальний < / translation > <nl> + < / message > <nl> < / context > <nl> < context > <nl> < name > PropTabBar < / name > <nl> < message > <nl> + < location filename = " . . / properties / proptabbar . cpp " line = " 45 " / > <nl> < source > General < / source > <nl> < translation > Загальні < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / proptabbar . cpp " line = " 50 " / > <nl> < source > Trackers < / source > <nl> < translation > Трекери < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / proptabbar . cpp " line = " 54 " / > <nl> < source > Peers < / source > <nl> < translation > Піри < / translation > <nl> < / message > <nl> < message > <nl> - < source > URL Seeds < / source > <nl> - < translation type = " obsolete " > URL - сіди < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Files < / source > <nl> - < translation type = " obsolete " > Файли < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / properties / proptabbar . cpp " line = " 58 " / > <nl> < source > HTTP Sources < / source > <nl> < translation > Джерела HTTP < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / proptabbar . cpp " line = " 62 " / > <nl> < source > Content < / source > <nl> < translation > Вміст < / translation > <nl> < / message > <nl> Would you like to update qBittorrent to version % 1 ? < / source > <nl> < context > <nl> < name > PropertiesWidget < / name > <nl> < message > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 346 " / > <nl> < source > Save path : < / source > <nl> < translation > Шлях збереження : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 438 " / > <nl> < source > Torrent hash : < / source > <nl> < translation > Хеш : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Comment : < / source > <nl> - < translation > Коментар : < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 206 " / > <nl> < source > Share ratio : < / source > <nl> < translation > Коефіцієнт роздачі : < / translation > <nl> < / message > <nl> < message > <nl> - < source > General < / source > <nl> - < translation type = " obsolete " > Загальні < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Trackers < / source > <nl> - < translation type = " obsolete " > Трекери < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > URL seeds < / source > <nl> - < translation type = " obsolete " > URL - сіди < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Files < / source > <nl> - < translation type = " obsolete " > Файли < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Priority < / source > <nl> - < translation > Пріоритет < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > New url seed < / source > <nl> - < comment > New HTTP source < / comment > <nl> - < translation > Нова URL - роздача < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > New url seed : < / source > <nl> - < translation > Нова URL - роздача : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > qBittorrent < / source > <nl> - < translation > qBittorrent < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > This url seed is already in the list . < / source > <nl> - < translation > Ця URL - роздача вже є в списку . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Choose save path < / source > <nl> - < translation type = " obsolete " > Виберіть шлях збереження < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Save path creation error < / source > <nl> - < translation type = " obsolete " > Помилка при створенні шляху збереження < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Could not create the save path < / source > <nl> - < translation type = " obsolete " > Не вдалося створити шлях збереження < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 77 " / > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 223 " / > <nl> < source > Downloaded : < / source > <nl> < translation > Завантажено : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 131 " / > <nl> + < source > Availability : < / source > <nl> + < translation > Доступно : < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 166 " / > <nl> < source > Transfer < / source > <nl> < translation > Передача < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 172 " / > <nl> < source > Uploaded : < / source > <nl> < translation > Вивантажено : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 274 " / > <nl> < source > Wasted : < / source > <nl> < translation > Змарновано : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 189 " / > <nl> < source > UP limit : < / source > <nl> < translation > Ліміт вивантаження : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 240 " / > <nl> < source > DL limit : < / source > <nl> < translation > Ліміт завантаження : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Time elapsed : < / source > <nl> - < translation type = " obsolete " > Минуло часу : < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 257 " / > <nl> < source > Connections : < / source > <nl> < translation > З & apos ; єднання : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 291 " / > <nl> + < source > Time active : < / source > <nl> + < extracomment > Time ( duration ) the torrent is active ( not paused ) < / extracomment > <nl> + < translation > Активний протягом : < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 308 " / > <nl> + < source > Reannounce in : < / source > <nl> + < translation > Переанонсувати в : < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 334 " / > <nl> < source > Information < / source > <nl> < translation > Інформація < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 392 " / > <nl> < source > Created on : < / source > <nl> < translation > Створено : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Peers < / source > <nl> - < translation type = " obsolete " > Піри < / translation > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 481 " / > <nl> + < source > Pieces size : < / source > <nl> + < translation > Розмір частин : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Maximum < / source > <nl> - < translation > Максимальний < / translation > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 524 " / > <nl> + < source > Comment : < / source > <nl> + < translation > Коментар : < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 668 " / > <nl> + < source > Torrent content : < / source > <nl> + < translation > Вміст торрента : < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 721 " / > <nl> + < source > Select All < / source > <nl> + < translation > Вибрати все < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 728 " / > <nl> + < source > Select None < / source > <nl> + < translation > Зняти виділення < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 761 " / > <nl> + < source > Normal < / source > <nl> + < translation > Нормальний < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 766 " / > <nl> < source > High < / source > <nl> < translation > Високий < / translation > <nl> < / message > <nl> < message > <nl> - < source > this session < / source > <nl> - < translation > цієї сесії < / translation > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 771 " / > <nl> + < source > Maximum < / source > <nl> + < translation > Максимальний < / translation > <nl> < / message > <nl> < message > <nl> - < source > % 1 max < / source > <nl> - < comment > e . g . 10 max < / comment > <nl> - < translation > макс . % 1 < / translation > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 776 " / > <nl> + < location filename = " . . / properties / propertieswidget . ui " line = " 779 " / > <nl> + < source > Do not download < / source > <nl> + < translation > Не завантажувати < / translation > <nl> < / message > <nl> < message > <nl> - < source > Availability : < / source > <nl> - < translation > Доступно : < / translation > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 308 " / > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 309 " / > <nl> + < source > this session < / source > <nl> + < translation > цієї сесії < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 313 " / > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 317 " / > <nl> < source > / s < / source > <nl> < comment > / second ( i . e . per second ) < / comment > <nl> < translation > / с < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 320 " / > <nl> < source > Seeded for % 1 < / source > <nl> < comment > e . g . Seeded for 3m10s < / comment > <nl> < translation > Роздавав % 1 < / translation > <nl> < / message > <nl> < message > <nl> - < source > Rename . . . < / source > <nl> - < translation > Перейменувати . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > New name : < / source > <nl> - < translation > Нова назва : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > The file could not be renamed < / source > <nl> - < translation > Файл не вдалося перейменувати < / translation > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 324 " / > <nl> + < source > % 1 max < / source > <nl> + < comment > e . g . 10 max < / comment > <nl> + < translation > макс . % 1 < / translation > <nl> < / message > <nl> < message > <nl> - < source > This name is already in use in this folder . Please use a different name . < / source > <nl> - < translation > Ця назва файлу використовується в даній папці . Будь ласка , виберіть іншу назву . < / translation > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 417 " / > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 437 " / > <nl> + < source > I / O Error < / source > <nl> + < translation > Помилка вводу / виводу < / translation > <nl> < / message > <nl> < message > <nl> - < source > The folder could not be renamed < / source > <nl> - < translation > Не вдалося перейменувати цю папку < / translation > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 417 " / > <nl> + < source > This file does not exist yet . < / source > <nl> + < translation > Цей файл ще не існує . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Rename the file < / source > <nl> - < translation > Перейменувати файл < / translation > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 437 " / > <nl> + < source > This folder does not exist yet . < / source > <nl> + < translation > Ця папка ще не існує . < / translation > <nl> < / message > <nl> < message > <nl> - < source > This file name contains forbidden characters , please choose a different one . < / source > <nl> - < translation > Ця назва файлу містить заборонені символи . Будь ласка , виберіть іншу . < / translation > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 447 " / > <nl> + < source > Rename . . . < / source > <nl> + < translation > Перейменувати . . . < / translation > <nl> < / message > <nl> < message > <nl> - < source > I / O Error < / source > <nl> - < translation > Помилка вводу / виводу < / translation > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 456 " / > <nl> + < source > Priority < / source > <nl> + < translation > Пріоритет < / translation > <nl> < / message > <nl> < message > <nl> - < source > This file does not exist yet . < / source > <nl> - < translation > Цей файл ще не існує . < / translation > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 495 " / > <nl> + < source > New Web seed < / source > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < message > <nl> - < source > This folder does not exist yet . < / source > <nl> - < translation > Ця папка ще не існує . < / translation > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 501 " / > <nl> + < source > Remove Web seed < / source > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < message > <nl> - < source > Normal < / source > <nl> - < translation > Нормальний < / translation > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 503 " / > <nl> + < source > Copy Web seed URL < / source > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < message > <nl> - < source > Reannounce in : < / source > <nl> - < translation > Переанонсувати в : < / translation > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 504 " / > <nl> + < source > Edit Web seed URL < / source > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < message > <nl> - < source > Select All < / source > <nl> - < translation > Вибрати все < / translation > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 526 " / > <nl> + < source > Rename the file < / source > <nl> + < translation > Перейменувати файл < / translation > <nl> < / message > <nl> < message > <nl> - < source > Select None < / source > <nl> - < translation > Зняти виділення < / translation > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 527 " / > <nl> + < source > New name : < / source > <nl> + < translation > Нова назва : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Do not download < / source > <nl> - < translation > Не завантажувати < / translation > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 531 " / > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 562 " / > <nl> + < source > The file could not be renamed < / source > <nl> + < translation > Файл не вдалося перейменувати < / translation > <nl> < / message > <nl> < message > <nl> - < source > Pieces size : < / source > <nl> - < translation > Розмір частин : < / translation > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 532 " / > <nl> + < source > This file name contains forbidden characters , please choose a different one . < / source > <nl> + < translation > Ця назва файлу містить заборонені символи . Будь ласка , виберіть іншу . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Time active : < / source > <nl> - < extracomment > Time ( duration ) the torrent is active ( not paused ) < / extracomment > <nl> - < translation > Активний протягом : < / translation > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 563 " / > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 601 " / > <nl> + < source > This name is already in use in this folder . Please use a different name . < / source > <nl> + < translation > Ця назва файлу використовується в даній папці . Будь ласка , виберіть іншу назву . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Torrent content : < / source > <nl> - < translation > Вміст торрента : < / translation > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 600 " / > <nl> + < source > The folder could not be renamed < / source > <nl> + < translation > Не вдалося перейменувати цю папку < / translation > <nl> < / message > <nl> < message > <nl> - < source > New Web seed < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 639 " / > <nl> + < source > New url seed < / source > <nl> + < comment > New HTTP source < / comment > <nl> + < translation > Нова URL - роздача < / translation > <nl> < / message > <nl> < message > <nl> - < source > Remove Web seed < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 640 " / > <nl> + < source > New url seed : < / source > <nl> + < translation > Нова URL - роздача : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Copy Web seed URL < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 699 " / > <nl> + < source > qBittorrent < / source > <nl> + < translation > qBittorrent < / translation > <nl> < / message > <nl> < message > <nl> - < source > Edit Web seed URL < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 646 " / > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 700 " / > <nl> + < source > This url seed is already in the list . < / source > <nl> + < translation > Ця URL - роздача вже є в списку . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 692 " / > <nl> < source > Web seed editing < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / propertieswidget . cpp " line = " 693 " / > <nl> < source > Web seed URL : < / source > <nl> - < translation type = " unfinished " > URL web - роздачі : < / translation > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < / context > <nl> < context > <nl> < name > QBtSession < / name > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 237 " / > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 243 " / > <nl> < source > % 1 reached the maximum ratio you set . < / source > <nl> < translation > % 1 досяг максимального коефіцієнта , налаштованого вами . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 238 " / > <nl> < source > Removing torrent % 1 . . . < / source > <nl> < translation > Видаляю торрент % 1 . . . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 244 " / > <nl> < source > Pausing torrent % 1 . . . < / source > <nl> < translation > Зупиняю торрент % 1 . . . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 295 " / > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 304 " / > <nl> < source > qBittorrent is bound to port : TCP / % 1 < / source > <nl> < comment > e . g : qBittorrent is bound to port : 6881 < / comment > <nl> < translation > qBittorrent використовує порт : % 1 < / translation > <nl> < / message > <nl> < message > <nl> - < source > UPnP support [ ON ] < / source > <nl> - < translation type = " obsolete " > Підтримка UNnP [ Увімкнено ] < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > UPnP support [ OFF ] < / source > <nl> - < translation type = " obsolete " > Підтримка UPnP [ Вимкнено ] < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > NAT - PMP support [ ON ] < / source > <nl> - < translation type = " obsolete " > Підтримка NAT - PMP [ Увімкнено ] < / translation > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 405 " / > <nl> + < source > HTTP user agent is % 1 < / source > <nl> + < translation > Назва програми ( HTTP ) : % 1 < / translation > <nl> < / message > <nl> < message > <nl> - < source > NAT - PMP support [ OFF ] < / source > <nl> - < translation type = " obsolete " > Підтримка NAT - PMP [ Вимкнено ] < / translation > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 432 " / > <nl> + < source > Anonymous mode [ ON ] < / source > <nl> + < translation > Анонімний режим [ Увімкнено ] < / translation > <nl> < / message > <nl> < message > <nl> - < source > HTTP user agent is % 1 < / source > <nl> - < translation > Назва програми ( HTTP ) : % 1 < / translation > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 434 " / > <nl> + < source > Anonymous mode [ OFF ] < / source > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < message > <nl> - < source > Using a disk cache size of % 1 MiB < / source > <nl> - < translation type = " obsolete " > Використовую дисковий кеш розміром % 1 MiB < / translation > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 466 " / > <nl> + < source > Reporting IP address % 1 to trackers . . . < / source > <nl> + < translation > Повідомляю IP адресу % 1 трекерам . . . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 518 " / > <nl> < source > DHT support [ ON ] , port : UDP / % 1 < / source > <nl> < translation > Підтримка DHT [ Увімкнено ] , порт : UDP / % 1 < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 520 " / > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 524 " / > <nl> < source > DHT support [ OFF ] < / source > <nl> < translation > Підтримка DHT [ Вимкнено ] < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 528 " / > <nl> < source > PeX support [ ON ] < / source > <nl> < translation > Підтримка PeX [ Увімкнено ] < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 530 " / > <nl> < source > PeX support [ OFF ] < / source > <nl> < translation > Підтримка PeX [ Вимкнено ] < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 533 " / > <nl> < source > Restart is required to toggle PeX support < / source > <nl> < translation > Щоб перемкнути підтримку PeX , потрібно перезавантажити програму < / translation > <nl> < / message > <nl> < message > <nl> - < source > Local Peer Discovery [ ON ] < / source > <nl> - < translation type = " obsolete " > Пошук Локальних Пірів [ Увімкнено ] < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 541 " / > <nl> < source > Local Peer Discovery support [ OFF ] < / source > <nl> < translation > Пошук Локальних Пірів [ Вимкнено ] < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 553 " / > <nl> < source > Encryption support [ ON ] < / source > <nl> < translation > Підтримка шифрування [ Увімкнено ] < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 558 " / > <nl> < source > Encryption support [ FORCED ] < / source > <nl> < translation > Підтримка шифрування [ Примусова ] < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 563 " / > <nl> < source > Encryption support [ OFF ] < / source > <nl> < translation > Підтримка шифрування [ Вимкнено ] < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 625 " / > <nl> < source > Embedded Tracker [ ON ] < / source > <nl> < translation > Вбудований трекер [ Увімкнено ] < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 627 " / > <nl> < source > Failed to start the embedded tracker ! < / source > <nl> < translation > Не вдалося запустити вбудований трекер ! < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 630 " / > <nl> < source > Embedded Tracker [ OFF ] < / source > <nl> < translation > Вбудований трекер [ Вимкнено ] < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 684 " / > <nl> < source > The Web UI is listening on port % 1 < / source > <nl> < translation > Веб - інтерфейс приєднано до порту % 1 < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 686 " / > <nl> < source > Web User Interface Error - Unable to bind Web UI to port % 1 < / source > <nl> < translation > Помилка Веб - інтерфейсу - Не можу приєднати Веб - інтерфейс до порту % 1 < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 827 " / > <nl> < source > & apos ; % 1 & apos ; was removed from transfer list and hard disk . < / source > <nl> - < comment > & apos ; xxx . avi & apos ; was removed . . . < / comment > <nl> + < comment > ' xxx . avi ' was removed . . . < / comment > <nl> < translation > & apos ; % 1 & apos ; було видалено із списку завантажень і жорсткого диску . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 829 " / > <nl> < source > & apos ; % 1 & apos ; was removed from transfer list . < / source > <nl> - < comment > & apos ; xxx . avi & apos ; was removed . . . < / comment > <nl> + < comment > ' xxx . avi ' was removed . . . < / comment > <nl> < translation > & apos ; % 1 & apos ; було видалено із списку завантажень . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 924 " / > <nl> < source > & apos ; % 1 & apos ; is not a valid magnet URI . < / source > <nl> < translation > & apos ; % 1 & apos ; не є правильним магнітним посиланням . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 940 " / > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 1073 " / > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 1078 " / > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 1080 " / > <nl> < source > & apos ; % 1 & apos ; is already in download list . < / source > <nl> - < comment > e . g : & apos ; xxx . avi & apos ; is already in download list . < / comment > <nl> + < comment > e . g : ' xxx . avi ' is already in download list . < / comment > <nl> < translation > & apos ; % 1 & apos ; вже є у списку завантажень . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 1205 " / > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 1210 " / > <nl> < source > & apos ; % 1 & apos ; resumed . ( fast resume ) < / source > <nl> - < comment > & apos ; / home / y / xxx . torrent & apos ; was resumed . ( fast resume ) < / comment > <nl> + < comment > ' / home / y / xxx . torrent ' was resumed . ( fast resume ) < / comment > <nl> < translation > & apos ; % 1 & apos ; продовжено . ( швидке відновлення ) < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 2290 " / > <nl> + < source > The computer will now go to sleep mode unless you cancel within the next 15 seconds . . . < / source > <nl> + < translation > Зараз комп & apos ; ютер перемкнеться в режим сну , якщо ви не відміните це протягом наступних 15 секунд . . . < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 2292 " / > <nl> + < source > The computer will now be switched off unless you cancel within the next 15 seconds . . . < / source > <nl> + < translation > Зараз комп & apos ; ютер вимкнеться , якщо ви не відміните це протягом наступних 15 секунд . . . < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 2294 " / > <nl> + < source > qBittorrent will now exit unless you cancel within the next 15 seconds . . . < / source > <nl> + < translation > Програма qBittorrent зараз закриється , якщо ви не відміните це протягом наступних 15 секунд . . . < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 2840 " / > <nl> + < source > Successfully parsed the provided IP filter : % 1 rules were applied . < / source > <nl> + < comment > % 1 is a number < / comment > <nl> + < translation > Успішно оброблено наданий фільтр IP : застосовано % 1 правил . < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 2846 " / > <nl> + < source > Error : Failed to parse the provided IP filter . < / source > <nl> + < translation > Помилка : Не вдалося розібрати даний фільтр IP . < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 1005 " / > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 1207 " / > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 1212 " / > <nl> < source > & apos ; % 1 & apos ; added to download list . < / source > <nl> - < comment > & apos ; / home / y / xxx . torrent & apos ; was added to download list . < / comment > <nl> + < comment > ' / home / y / xxx . torrent ' was added to download list . < / comment > <nl> < translation > & apos ; % 1 & apos ; додано до списку завантажень . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 396 " / > <nl> + < source > UPnP / NAT - PMP support [ ON ] < / source > <nl> + < translation > Підтримка UPnP / NAT - PMP [ Увімкнено ] < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 399 " / > <nl> + < source > UPnP / NAT - PMP support [ OFF ] < / source > <nl> + < translation > Підтримка UPnP / NAT - PMP [ Вимкнено ] < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 538 " / > <nl> + < source > Local Peer Discovery support [ ON ] < / source > <nl> + < translation > Підтримка локального пошуку пірів [ Увімкнено ] < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 1041 " / > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 1049 " / > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 1051 " / > <nl> < source > Unable to decode torrent file : & apos ; % 1 & apos ; < / source > <nl> - < comment > e . g : Unable to decode torrent file : & apos ; / home / y / xxx . torrent & apos ; < / comment > <nl> + < comment > e . g : Unable to decode torrent file : ' / home / y / xxx . torrent ' < / comment > <nl> < translation > Не вдалося розкодувати торрент - файл : & apos ; % 1 & apos ; < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 1055 " / > <nl> < source > This file is either corrupted or this isn & apos ; t a torrent . < / source > <nl> < translation > Цей файл або пошкоджений , або не є торрент - файлом . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 1096 " / > <nl> < source > Error : The torrent % 1 does not contain any file . < / source > <nl> < translation > Помилка : Торрент % 1 не містить жодного файла . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 1337 " / > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 1365 " / > <nl> < source > Note : new trackers were added to the existing torrent . < / source > <nl> < translation > Нові трекери було додано до існуючого торрента . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 1395 " / > <nl> < source > Note : new URL seeds were added to the existing torrent . < / source > <nl> < translation > Нові URL - сіди було додано до існуючого торрента . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 1737 " / > <nl> < source > & lt ; font color = & apos ; red & apos ; & gt ; % 1 & lt ; / font & gt ; & lt ; i & gt ; was blocked due to your IP filter & lt ; / i & gt ; < / source > <nl> < comment > x . y . z . w was blocked < / comment > <nl> < translation > & lt ; font color = & apos ; red & apos ; & gt ; % 1 & lt ; / font & gt ; & lt ; i & gt ; було заблоковано згідно з вашим IP - фільтром & lt ; / i & gt ; < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 1739 " / > <nl> < source > & lt ; font color = & apos ; red & apos ; & gt ; % 1 & lt ; / font & gt ; & lt ; i & gt ; was banned due to corrupt pieces & lt ; / i & gt ; < / source > <nl> < comment > x . y . z . w was banned < / comment > <nl> < translation > & lt ; font color = & apos ; red & apos ; & gt ; % 1 & lt ; / font & gt ; & lt ; i & gt ; було заблоковано через пошкоджені частини & lt ; / i & gt ; < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 1938 " / > <nl> + < source > The network interface defined is invalid : % 1 < / source > <nl> + < translation > Зазначений мережевий інтерфейс неправильний : % 1 < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 1956 " / > <nl> + < source > Listening on IP address % 1 on network interface % 2 . . . < / source > <nl> + < translation > Чекаю підключень на IP % 1 та мережевому інтерфейсі % 2 . . . < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 1959 " / > <nl> + < source > Failed to listen on network interface % 1 < / source > <nl> + < translation > Не вдалося запуститись не мережевому інтерфейсі % 1 < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 2140 " / > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 2142 " / > <nl> < source > Recursive download of file % 1 embedded in torrent % 2 < / source > <nl> < comment > Recursive download of test . torrent embedded in torrent test2 < / comment > <nl> < translation > Рекурсивне завантаження файлу % 1 в торренті % 2 < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 2237 " / > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 2239 " / > <nl> < source > Unable to decode % 1 torrent file . < / source > <nl> < translation > Не можу розкодувати % 1 торрент - файл . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 2187 " / > <nl> < source > Torrent name : % 1 < / source > <nl> < translation > Назва торрента : % 1 < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 2188 " / > <nl> < source > Torrent size : % 1 < / source > <nl> < translation > Розмір торрента : % 1 < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 2189 " / > <nl> < source > Save path : % 1 < / source > <nl> < translation > Шлях збереження : % 1 < / translation > <nl> < / message > <nl> - < message > <nl> - < source > The torrent was downloaded in % 1 . < / source > <nl> - < comment > The torrent was downloaded in 1 hour and 20 seconds < / comment > <nl> - < translation > Торрент було завантажено за % 1 . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Thank you for using qBittorrent . < / source > <nl> - < translation > Дякуємо , що ви користуєтесь qBittorrent . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > [ qBittorrent ] % 1 has finished downloading < / source > <nl> - < translation > [ qBittorrent ] Завантаження & quot ; % 1 & quot ; завершено < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > An I / O error occurred , & apos ; % 1 & apos ; paused . < / source > <nl> - < translation > Сталася помилка вводу / виводу , & apos ; % 1 & apos ; зупинено . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Reason : % 1 < / source > <nl> - < translation > Причина : % 1 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > UPnP / NAT - PMP : Port mapping failure , message : % 1 < / source > <nl> - < translation > UPnP / NAT - PMP : Не можу приєднати порт , повідомлення : % 1 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > UPnP / NAT - PMP : Port mapping successful , message : % 1 < / source > <nl> - < translation > UPnP / NAT - PMP : Успішне приєднання порта , повідомлення : % 1 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > File sizes mismatch for torrent % 1 , pausing it . < / source > <nl> - < translation > Розміри файлів не збігаються для торрента % 1 , зупиняю його . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Fast resume data was rejected for torrent % 1 , checking again . . . < / source > <nl> - < translation > Було відмовлено у швидкому відновленні данних для torrent & apos ; у % 1 , перевіряю знову . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Url seed lookup failed for url : % 1 , message : % 2 < / source > <nl> - < translation > Пошук url роздачі невдалий для url : % 1 , повідомлення : % 2 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Downloading & apos ; % 1 & apos ; , please wait . . . < / source > <nl> - < comment > e . g : Downloading & apos ; xxx . torrent & apos ; , please wait . . . < / comment > <nl> - < translation > Завантажую & apos ; % 1 & apos ; , зачекайте . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > The network interface defined is invalid : % 1 < / source > <nl> - < translation > Зазначений мережевий інтерфейс неправильний : % 1 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Trying any other network interface available instead . < / source > <nl> - < translation type = " obsolete " > Пробую на інших доступних мережевих інтерфейсах . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Listening on IP address % 1 on network interface % 2 . . . < / source > <nl> - < translation > Чекаю підключень на IP % 1 та мережевому інтерфейсі % 2 . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Failed to listen on network interface % 1 < / source > <nl> - < translation > Не вдалося запуститись не мережевому інтерфейсі % 1 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > UPnP / NAT - PMP support [ ON ] < / source > <nl> - < translation > Підтримка UPnP / NAT - PMP [ Увімкнено ] < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > UPnP / NAT - PMP support [ OFF ] < / source > <nl> - < translation > Підтримка UPnP / NAT - PMP [ Вимкнено ] < / translation > <nl> + < message > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 2190 " / > <nl> + < source > The torrent was downloaded in % 1 . < / source > <nl> + < comment > The torrent was downloaded in 1 hour and 20 seconds < / comment > <nl> + < translation > Торрент було завантажено за % 1 . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Local Peer Discovery support [ ON ] < / source > <nl> - < translation > Підтримка локального пошуку пірів [ Увімкнено ] < / translation > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 2191 " / > <nl> + < source > Thank you for using qBittorrent . < / source > <nl> + < translation > Дякуємо , що ви користуєтесь qBittorrent . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Successfuly parsed the provided IP filter : % 1 rules were applied . < / source > <nl> - < comment > % 1 is a number < / comment > <nl> - < translation type = " obsolete " > Успішно розібрано даний фільтр IP : було застосовано % 1 правил . < / translation > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 2194 " / > <nl> + < source > [ qBittorrent ] % 1 has finished downloading < / source > <nl> + < translation > [ qBittorrent ] Завантаження & quot ; % 1 & quot ; завершено < / translation > <nl> < / message > <nl> < message > <nl> - < source > Error : Failed to parse the provided IP filter . < / source > <nl> - < translation > Помилка : Не вдалося розібрати даний фільтр IP . < / translation > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 2429 " / > <nl> + < source > An I / O error occurred , & apos ; % 1 & apos ; paused . < / source > <nl> + < translation > Сталася помилка вводу / виводу , & apos ; % 1 & apos ; зупинено . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Reporting IP address % 1 to trackers . . . < / source > <nl> - < translation > Повідомляю IP адресу % 1 трекерам . . . < / translation > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 2430 " / > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 2541 " / > <nl> + < source > Reason : % 1 < / source > <nl> + < translation > Причина : % 1 < / translation > <nl> < / message > <nl> < message > <nl> - < source > The computer will now go to sleep mode unless you cancel within the next 15 seconds . . . < / source > <nl> - < translation > Зараз комп & apos ; ютер перемкнеться в режим сну , якщо ви не відміните це протягом наступних 15 секунд . . . < / translation > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 2505 " / > <nl> + < source > UPnP / NAT - PMP : Port mapping failure , message : % 1 < / source > <nl> + < translation > UPnP / NAT - PMP : Не можу приєднати порт , повідомлення : % 1 < / translation > <nl> < / message > <nl> < message > <nl> - < source > The computer will now be switched off unless you cancel within the next 15 seconds . . . < / source > <nl> - < translation > Зараз комп & apos ; ютер вимкнеться , якщо ви не відміните це протягом наступних 15 секунд . . . < / translation > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 2510 " / > <nl> + < source > UPnP / NAT - PMP : Port mapping successful , message : % 1 < / source > <nl> + < translation > UPnP / NAT - PMP : Успішне приєднання порта , повідомлення : % 1 < / translation > <nl> < / message > <nl> < message > <nl> - < source > qBittorrent will now exit unless you cancel within the next 15 seconds . . . < / source > <nl> - < translation > Програма qBittorrent зараз закриється , якщо ви не відміните це протягом наступних 15 секунд . . . < / translation > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 2536 " / > <nl> + < source > File sizes mismatch for torrent % 1 , pausing it . < / source > <nl> + < translation > Розміри файлів не збігаються для торрента % 1 , зупиняю його . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Anonymous mode [ ON ] < / source > <nl> - < translation > Анонімний режим [ Увімкнено ] < / translation > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 2540 " / > <nl> + < source > Fast resume data was rejected for torrent % 1 , checking again . . . < / source > <nl> + < translation > Було відмовлено у швидкому відновленні данних для torrent & apos ; у % 1 , перевіряю знову . . . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Successfully parsed the provided IP filter : % 1 rules were applied . < / source > <nl> - < comment > % 1 is a number < / comment > <nl> - < translation > Успішно оброблено наданий фільтр IP : застосовано % 1 правил . < / translation > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 2546 " / > <nl> + < source > Url seed lookup failed for url : % 1 , message : % 2 < / source > <nl> + < translation > Пошук url роздачі невдалий для url : % 1 , повідомлення : % 2 < / translation > <nl> < / message > <nl> < message > <nl> - < source > Anonymous mode [ OFF ] < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < location filename = " . . / qtlibtorrent / qbtsession . cpp " line = " 2669 " / > <nl> + < source > Downloading & apos ; % 1 & apos ; , please wait . . . < / source > <nl> + < comment > e . g : Downloading ' xxx . torrent ' , please wait . . . < / comment > <nl> + < translation > Завантажую & apos ; % 1 & apos ; , зачекайте . . . < / translation > <nl> < / message > <nl> < / context > <nl> < context > <nl> < name > RSS < / name > <nl> < message > <nl> + < location filename = " . . / rss / rss . ui " line = " 17 " / > <nl> < source > Search < / source > <nl> < translation > Пошук < / translation > <nl> < / message > <nl> < message > <nl> - < source > Delete < / source > <nl> - < translation > Видалити < / translation > <nl> + < location filename = " . . / rss / rss . ui " line = " 31 " / > <nl> + < source > New subscription < / source > <nl> + < translation > Нова підписка < / translation > <nl> < / message > <nl> < message > <nl> - < source > Rename < / source > <nl> - < translation > Перейменувати < / translation > <nl> + < location filename = " . . / rss / rss . ui " line = " 47 " / > <nl> + < location filename = " . . / rss / rss . ui " line = " 195 " / > <nl> + < location filename = " . . / rss / rss . ui " line = " 198 " / > <nl> + < source > Mark items read < / source > <nl> + < translation > Позначити як прочитане < / translation > <nl> < / message > <nl> < message > <nl> - < source > Refresh RSS streams < / source > <nl> - < translation > Обновити потоки RSS < / translation > <nl> + < location filename = " . . / rss / rss . ui " line = " 66 " / > <nl> + < source > Update all < / source > <nl> + < translation > Оновити всі < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / rss / rss . ui " line = " 95 " / > <nl> + < source > RSS Downloader . . . < / source > <nl> + < translation > Завантажувач RSS . . . < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / rss / rss . ui " line = " 102 " / > <nl> + < source > Settings . . . < / source > <nl> + < translation > Налаштування . . . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / rss . ui " line = " 124 " / > <nl> < source > & lt ; ! DOCTYPE HTML PUBLIC & quot ; - / / W3C / / DTD HTML 4 . 0 / / EN & quot ; & quot ; http : / / www . w3 . org / TR / REC - html40 / strict . dtd & quot ; & gt ; <nl> & lt ; html & gt ; & lt ; head & gt ; & lt ; meta name = & quot ; qrichtext & quot ; content = & quot ; 1 & quot ; / & gt ; & lt ; style type = & quot ; text / css & quot ; & gt ; <nl> p , li { white - space : pre - wrap ; } <nl> - & lt ; / style & gt ; & lt ; / head & gt ; & lt ; body style = & quot ; font - family : & apos ; Sans & apos ; ; font - size : 10pt ; font - weight : 400 ; font - style : normal ; & quot ; & gt ; <nl> + & lt ; / style & gt ; & lt ; / head & gt ; & lt ; body style = & quot ; font - family : ' Sans ' ; font - size : 10pt ; font - weight : 400 ; font - style : normal ; & quot ; & gt ; <nl> & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; & lt ; span style = & quot ; font - weight : 600 ; & quot ; & gt ; Torrents : & lt ; / span & gt ; & lt ; span style = & quot ; font - style : italic ; & quot ; & gt ; ( double - click to download ) & lt ; / span & gt ; & lt ; / p & gt ; & lt ; / body & gt ; & lt ; / html & gt ; < / source > <nl> < translation > & lt ; ! DOCTYPE HTML PUBLIC & quot ; - / / W3C / / DTD HTML 4 . 0 / / EN & quot ; & quot ; http : / / www . w3 . org / TR / REC - html40 / strict . dtd & quot ; & gt ; <nl> & lt ; html & gt ; & lt ; head & gt ; & lt ; meta name = & quot ; qrichtext & quot ; content = & quot ; 1 & quot ; / & gt ; & lt ; style type = & quot ; text / css & quot ; & gt ; <nl> p , li { white - space : pre - wrap ; } <nl> & lt ; p style = & quot ; margin - top : 0px ; margin - bottom : 0px ; margin - left : 0px ; margin - right : 0px ; - qt - block - indent : 0 ; text - indent : 0px ; & quot ; & gt ; & lt ; span style = & quot ; font - weight : 600 ; & quot ; & gt ; Торренти : & lt ; / span & gt ; & lt ; span style = & quot ; font - style : italic ; & quot ; & gt ; ( двічі клацніть , щоб завантажити ) & lt ; / span & gt ; & lt ; / p & gt ; & lt ; / body & gt ; & lt ; / html & gt ; < / translation > <nl> < / message > <nl> < message > <nl> - < source > Download torrent < / source > <nl> - < translation > Завантажити торрент < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Open news URL < / source > <nl> - < translation > Відкрити URL новини < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Copy feed URL < / source > <nl> - < translation > Копіювати URL подачі < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > New subscription < / source > <nl> - < translation > Нова підписка < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Mark items read < / source > <nl> - < translation > Позначити як прочитане < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Update all < / source > <nl> - < translation > Оновити всі < / translation > <nl> + < location filename = " . . / rss / rss . ui " line = " 158 " / > <nl> + < location filename = " . . / rss / rss . ui " line = " 161 " / > <nl> + < source > Delete < / source > <nl> + < translation > Видалити < / translation > <nl> < / message > <nl> < message > <nl> - < source > Update all feeds < / source > <nl> - < translation > Оновити всі подачі < / translation > <nl> + < location filename = " . . / rss / rss . ui " line = " 166 " / > <nl> + < source > Rename . . . < / source > <nl> + < translation > Перейменувати . . . < / translation > <nl> < / message > <nl> < message > <nl> - < source > RSS feeds < / source > <nl> - < translation type = " obsolete " > RSS - подачі < / translation > <nl> + < location filename = " . . / rss / rss . ui " line = " 169 " / > <nl> + < source > Rename < / source > <nl> + < translation > Перейменувати < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / rss . ui " line = " 174 " / > <nl> + < location filename = " . . / rss / rss . ui " line = " 177 " / > <nl> < source > Update < / source > <nl> < translation > Оновити < / translation > <nl> < / message > <nl> < message > <nl> - < source > Feed URL < / source > <nl> - < translation type = " obsolete " > URL подачі < / translation > <nl> + < location filename = " . . / rss / rss . ui " line = " 182 " / > <nl> + < source > New subscription . . . < / source > <nl> + < translation > Нова підписка . . . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Article title < / source > <nl> - < translation type = " obsolete " > Заголовок < / translation > <nl> + < location filename = " . . / rss / rss . ui " line = " 187 " / > <nl> + < location filename = " . . / rss / rss . ui " line = " 190 " / > <nl> + < source > Update all feeds < / source > <nl> + < translation > Оновити всі подачі < / translation > <nl> < / message > <nl> < message > <nl> - < source > Rename . . . < / source > <nl> - < translation > Перейменувати . . . < / translation > <nl> + < location filename = " . . / rss / rss . ui " line = " 203 " / > <nl> + < source > Download torrent < / source > <nl> + < translation > Завантажити торрент < / translation > <nl> < / message > <nl> < message > <nl> - < source > New subscription . . . < / source > <nl> - < translation > Нова підписка . . . < / translation > <nl> + < location filename = " . . / rss / rss . ui " line = " 208 " / > <nl> + < source > Open news URL < / source > <nl> + < translation > Відкрити URL новини < / translation > <nl> < / message > <nl> < message > <nl> - < source > RSS feed downloader . . . < / source > <nl> - < translation type = " obsolete " > Завантажувач RSS - подач . . . < / translation > <nl> + < location filename = " . . / rss / rss . ui " line = " 213 " / > <nl> + < source > Copy feed URL < / source > <nl> + < translation > Копіювати URL подачі < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / rss . ui " line = " 218 " / > <nl> < source > New folder . . . < / source > <nl> < translation > Нова папка . . . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / rss . ui " line = " 223 " / > <nl> < source > Manage cookies . . . < / source > <nl> < translation > Керування Cookies . . . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Settings . . . < / source > <nl> - < translation > Налаштування . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > RSS Downloader . . . < / source > <nl> - < translation > Завантажувач RSS . . . < / translation > <nl> + < location filename = " . . / rss / rss . ui " line = " 63 " / > <nl> + < source > Refresh RSS streams < / source > <nl> + < translation > Обновити потоки RSS < / translation > <nl> < / message > <nl> < / context > <nl> < context > <nl> < name > RSSImp < / name > <nl> < message > <nl> + < location filename = " . . / rss / rss_imp . cpp " line = " 200 " / > <nl> < source > Please type a rss stream url < / source > <nl> < translation > Будь - ласка , введіть URL потоку RSS < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / rss_imp . cpp " line = " 200 " / > <nl> < source > Stream URL : < / source > <nl> < translation > URL потоку : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / rss_imp . cpp " line = " 237 " / > <nl> + < location filename = " . . / rss / rss_imp . cpp " line = " 241 " / > <nl> < source > Are you sure ? - - qBittorrent < / source > <nl> < translation > Ви впевнені ? - - qBittorrent < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / rss_imp . cpp " line = " 238 " / > <nl> + < location filename = " . . / rss / rss_imp . cpp " line = " 242 " / > <nl> < source > & amp ; Yes < / source > <nl> < translation > & amp ; Так < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / rss_imp . cpp " line = " 238 " / > <nl> + < location filename = " . . / rss / rss_imp . cpp " line = " 242 " / > <nl> < source > & amp ; No < / source > <nl> < translation > & amp ; Ні < / translation > <nl> < / message > <nl> < message > <nl> - < source > qBittorrent < / source > <nl> - < translation type = " obsolete " > qBittorrent < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > This rss feed is already in the list . < / source > <nl> - < translation > Ця подача RSS вже є в списку . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Date : < / source > <nl> - < translation > Дата : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Author : < / source > <nl> - < translation > Автор : < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / rss / rss_imp . cpp " line = " 153 " / > <nl> < source > Please choose a folder name < / source > <nl> < translation > Будь ласка , виберіть назву папки < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / rss_imp . cpp " line = " 153 " / > <nl> < source > Folder name : < / source > <nl> < translation > Назва папки : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / rss_imp . cpp " line = " 153 " / > <nl> < source > New folder < / source > <nl> < translation > Нова папка < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / rss_imp . cpp " line = " 210 " / > <nl> + < source > This rss feed is already in the list . < / source > <nl> + < translation > Ця подача RSS вже є в списку . < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / rss / rss_imp . cpp " line = " 237 " / > <nl> < source > Are you sure you want to delete these elements from the list ? < / source > <nl> < translation > Ви впевнені , що хочете видалити ці елементи зі списку ? < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / rss_imp . cpp " line = " 241 " / > <nl> < source > Are you sure you want to delete this element from the list ? < / source > <nl> < translation > Ви впевнені , що хочете видалити цей елемент зі списку ? < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / rss_imp . cpp " line = " 375 " / > <nl> < source > Please choose a new name for this RSS feed < / source > <nl> < translation > Будь ласка , виберіть нову назву для цієї RSS - подачі < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / rss_imp . cpp " line = " 375 " / > <nl> < source > New feed name : < / source > <nl> < translation > Нова назва подачі : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / rss_imp . cpp " line = " 379 " / > <nl> < source > Name already in use < / source > <nl> < translation > Назва вже використовується < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / rss_imp . cpp " line = " 379 " / > <nl> < source > This name is already used by another item , please choose another one . < / source > <nl> < translation > Ця назва вже використовується . Будь ласка , виберіть іншу . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Overwrite attempt < / source > <nl> - < translation type = " obsolete " > Спроба перезапису < / translation > <nl> + < location filename = " . . / rss / rss_imp . cpp " line = " 555 " / > <nl> + < source > Date : < / source > <nl> + < translation > Дата : < / translation > <nl> < / message > <nl> < message > <nl> - < source > You cannot overwrite % 1 item . < / source > <nl> - < comment > You cannot overwrite myFolder item . < / comment > <nl> - < translation type = " obsolete " > Ви не можете замінити & quot ; % 1 & quot ; . < / translation > <nl> + < location filename = " . . / rss / rss_imp . cpp " line = " 558 " / > <nl> + < source > Author : < / source > <nl> + < translation > Автор : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / rss_imp . cpp " line = " 607 " / > <nl> < source > Unread < / source > <nl> < translation > Непрочитані < / translation > <nl> < / message > <nl> < / context > <nl> - < context > <nl> - < name > RssArticle < / name > <nl> - < message > <nl> - < source > No description available < / source > <nl> - < translation type = " obsolete " > Опис відсутній < / translation > <nl> - < / message > <nl> - < / context > <nl> < context > <nl> < name > RssFeed < / name > <nl> < message > <nl> + < location filename = " . . / rss / rssfeed . cpp " line = " 357 " / > <nl> < source > Automatically downloading % 1 torrent from % 2 RSS feed . . . < / source > <nl> < translation > Автоматично завантажую торрент % 1 з RSS - подачі % 2 . . . < / translation > <nl> < / message > <nl> < / context > <nl> - < context > <nl> - < name > RssItem < / name > <nl> - < message > <nl> - < source > No description available < / source > <nl> - < translation type = " obsolete " > Опис відсутній < / translation > <nl> - < / message > <nl> - < / context > <nl> < context > <nl> < name > RssParser < / name > <nl> < message > <nl> + < location filename = " . . / rss / rssparser . cpp " line = " 457 " / > <nl> < source > Failed to open downloaded RSS file . < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / rssparser . cpp " line = " 494 " / > <nl> < source > Invalid RSS feed at % 1 . < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> - < / message > <nl> - < / context > <nl> - < context > <nl> - < name > RssSettings < / name > <nl> - < message > <nl> - < source > RSS Reader Settings < / source > <nl> - < translation type = " obsolete " > Налаштування Читача RSS < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > RSS feeds refresh interval : < / source > <nl> - < translation type = " obsolete " > Інтервал оновлення RSS - подач : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > minutes < / source > <nl> - < translation type = " obsolete " > хвилин < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Maximum number of articles per feed : < / source > <nl> - < translation type = " obsolete " > Максимальна кількість новин в подачі : < / translation > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < / context > <nl> < context > <nl> < name > RssSettingsDlg < / name > <nl> < message > <nl> + < location filename = " . . / rss / rsssettingsdlg . ui " line = " 14 " / > <nl> < source > RSS Reader Settings < / source > <nl> < translation > Налаштування Читача RSS < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / rsssettingsdlg . ui " line = " 47 " / > <nl> < source > RSS feeds refresh interval : < / source > <nl> < translation > Інтервал оновлення RSS - подач : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / rsssettingsdlg . ui " line = " 70 " / > <nl> < source > minutes < / source > <nl> < translation > хвилин < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / rss / rsssettingsdlg . ui " line = " 77 " / > <nl> < source > Maximum number of articles per feed : < / source > <nl> < translation > Максимальна кількість новин в подачі : < / translation > <nl> < / message > <nl> < / context > <nl> - < context > <nl> - < name > RssStream < / name > <nl> - < message > <nl> - < source > Automatically downloading % 1 torrent from % 2 RSS feed . . . < / source > <nl> - < translation type = " obsolete " > Автоматично завантажую торрент % 1 з RSS - подачі % 2 . . . < / translation > <nl> - < / message > <nl> - < / context > <nl> < context > <nl> < name > ScanFoldersModel < / name > <nl> < message > <nl> + < location filename = " . . / scannedfoldersmodel . cpp " line = " 102 " / > <nl> < source > Watched Folder < / source > <nl> < translation > Папка спостерігання < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / scannedfoldersmodel . cpp " line = " 103 " / > <nl> < source > Download here < / source > <nl> < translation > Завантажувати до < / translation > <nl> < / message > <nl> p , li { white - space : pre - wrap ; } <nl> < context > <nl> < name > SearchCategories < / name > <nl> < message > <nl> + < location filename = " . . / searchengine / supportedengines . h " line = " 52 " / > <nl> < source > All categories < / source > <nl> < translation > Всі категорії < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / supportedengines . h " line = " 53 " / > <nl> < source > Movies < / source > <nl> < translation > Фільми < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / supportedengines . h " line = " 54 " / > <nl> < source > TV shows < / source > <nl> < translation > Телешоу < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / supportedengines . h " line = " 55 " / > <nl> < source > Music < / source > <nl> < translation > Музика < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / supportedengines . h " line = " 56 " / > <nl> < source > Games < / source > <nl> < translation > Ігри < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / supportedengines . h " line = " 57 " / > <nl> < source > Anime < / source > <nl> < translation > Аніме < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / supportedengines . h " line = " 58 " / > <nl> < source > Software < / source > <nl> < translation > Програми < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / supportedengines . h " line = " 59 " / > <nl> < source > Pictures < / source > <nl> < translation > Зображення < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / supportedengines . h " line = " 60 " / > <nl> < source > Books < / source > <nl> < translation > Книги < / translation > <nl> < / message > <nl> p , li { white - space : pre - wrap ; } <nl> < context > <nl> < name > SearchEngine < / name > <nl> < message > <nl> + < location filename = " . . / searchengine / searchengine . cpp " line = " 221 " / > <nl> + < location filename = " . . / searchengine / searchengine . cpp " line = " 251 " / > <nl> + < location filename = " . . / searchengine / searchengine . cpp " line = " 252 " / > <nl> + < source > Search < / source > <nl> + < translation > Пошук < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / searchengine / searchengine . cpp " line = " 232 " / > <nl> + < source > Missing Python Interpreter < / source > <nl> + < translation > Не вистачає інтерпретатора Python < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / searchengine / searchengine . cpp " line = " 233 " / > <nl> + < source > Python 2 . x is required to use the search engine but it does not seem to be installed . <nl> + Do you want to install it now ? < / source > <nl> + < translation > Для використання Пошуковика потрібен Python 2 . x , але , здається , він не встановлений . <nl> + Встановити його зараз ? < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / searchengine / searchengine . cpp " line = " 263 " / > <nl> < source > Empty search pattern < / source > <nl> < translation > Пустий шаблон пошуку < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / searchengine . cpp " line = " 263 " / > <nl> < source > Please type a search pattern first < / source > <nl> < translation > Будь ласка , спочатку введіть шаблон пошуку < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / searchengine . cpp " line = " 288 " / > <nl> + < location filename = " . . / searchengine / searchengine . cpp " line = " 377 " / > <nl> < source > Results < / source > <nl> < translation > Результати < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / searchengine . cpp " line = " 356 " / > <nl> < source > Searching . . . < / source > <nl> < translation > Шукаю . . . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Cut < / source > <nl> - < translation type = " obsolete " > Вирізати < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Copy < / source > <nl> - < translation type = " obsolete " > Копіювати < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Paste < / source > <nl> - < translation type = " obsolete " > Вставити < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Clear field < / source > <nl> - < translation type = " obsolete " > Очистити поле < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Clear completion history < / source > <nl> - < translation type = " obsolete " > Очистити історію автозавершення < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / searchengine / searchengine . cpp " line = " 492 " / > <nl> < source > Search Engine < / source > <nl> < translation > Пошуковик < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / searchengine . cpp " line = " 492 " / > <nl> + < location filename = " . . / searchengine / searchengine . cpp " line = " 507 " / > <nl> < source > Search has finished < / source > <nl> < translation > Пошук закінчено < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / searchengine . cpp " line = " 498 " / > <nl> < source > An error occurred during search . . . < / source > <nl> < translation > Під час пошуку сталася помилка . . . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / searchengine . cpp " line = " 496 " / > <nl> + < location filename = " . . / searchengine / searchengine . cpp " line = " 502 " / > <nl> < source > Search aborted < / source > <nl> < translation > Пошук скасовано < / translation > <nl> < / message > <nl> < message > <nl> - < source > Search returned no results < / source > <nl> - < translation > Пошук не дав результів < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Results < / source > <nl> - < comment > i . e : Search results < / comment > <nl> - < translation > Результати < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Unknown < / source > <nl> - < translation > Невідомо < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Search < / source > <nl> - < translation > Пошук < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / searchengine / searchengine . cpp " line = " 172 " / > <nl> < source > Download error < / source > <nl> < translation > Помилка завантаження < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / searchengine . cpp " line = " 172 " / > <nl> < source > Python setup could not be downloaded , reason : % 1 . <nl> Please install it manually . < / source > <nl> < translation > Не вдалося завантажити програму інсталяції Python . Причина : % 1 . <nl> Будь ласка , встановіть Python самостійно . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Missing Python Interpreter < / source > <nl> - < translation > Не вистачає інтерпретатора Python < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Python 2 . x is required to use the search engine but it does not seem to be installed . <nl> - Do you want to install it now ? < / source > <nl> - < translation > Для використання Пошуковика потрібен Python 2 . x , але , здається , він не встановлений . <nl> - Встановити його зараз ? < / translation > <nl> + < location filename = " . . / searchengine / searchengine . cpp " line = " 505 " / > <nl> + < source > Search returned no results < / source > <nl> + < translation > Пошук не дав результів < / translation > <nl> < / message > <nl> < message > <nl> - < source > Confirmation < / source > <nl> - < translation type = " obsolete " > Підтвердження < / translation > <nl> + < location filename = " . . / searchengine / searchengine . cpp " line = " 512 " / > <nl> + < source > Results < / source > <nl> + < comment > i . e : Search results < / comment > <nl> + < translation > Результати < / translation > <nl> < / message > <nl> < message > <nl> - < source > Are you sure you want to clear the history ? < / source > <nl> - < translation type = " obsolete " > Ви впевнені , що хочете очистити історію ? < / translation > <nl> + < location filename = " . . / searchengine / searchengine . cpp " line = " 548 " / > <nl> + < location filename = " . . / searchengine / searchengine . cpp " line = " 554 " / > <nl> + < source > Unknown < / source > <nl> + < translation > Невідомо < / translation > <nl> < / message > <nl> < / context > <nl> < context > <nl> < name > SearchTab < / name > <nl> < message > <nl> + < location filename = " . . / searchengine / searchtab . cpp " line = " 55 " / > <nl> < source > Name < / source > <nl> < comment > i . e : file name < / comment > <nl> < translation > Назва < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / searchtab . cpp " line = " 56 " / > <nl> < source > Size < / source > <nl> < comment > i . e : file size < / comment > <nl> < translation > Розмір < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / searchtab . cpp " line = " 57 " / > <nl> < source > Seeders < / source > <nl> < comment > i . e : Number of full sources < / comment > <nl> < translation > Сідери < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / searchtab . cpp " line = " 58 " / > <nl> < source > Leechers < / source > <nl> < comment > i . e : Number of partial sources < / comment > <nl> < translation > Лічери < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / searchtab . cpp " line = " 59 " / > <nl> < source > Search engine < / source > <nl> < translation > Пошуковик < / translation > <nl> < / message > <nl> Do you want to install it now ? < / source > <nl> < context > <nl> < name > ShutdownConfirmDlg < / name > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / shutdownconfirm . h " line = " 44 " / > <nl> < source > Shutdown confirmation < / source > <nl> < translation > Підтвердження вимкнення < / translation > <nl> < / message > <nl> Do you want to install it now ? < / source > <nl> < context > <nl> < name > SpeedLimitDialog < / name > <nl> < message > <nl> + < location filename = " . . / speedlimitdlg . h " line = " 84 " / > <nl> < source > KiB / s < / source > <nl> < translation > КіБ / с < / translation > <nl> < / message > <nl> Do you want to install it now ? < / source > <nl> < context > <nl> < name > StatusBar < / name > <nl> < message > <nl> + < location filename = " . . / statusbar . h " line = " 67 " / > <nl> + < location filename = " . . / statusbar . h " line = " 180 " / > <nl> < source > Connection status : < / source > <nl> < translation > Статус з & apos ; єднання : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / statusbar . h " line = " 67 " / > <nl> + < location filename = " . . / statusbar . h " line = " 180 " / > <nl> < source > No direct connections . This may indicate network configuration problems . < / source > <nl> < translation > Немає прямих з & apos ; єднань . Це може означати , що є проблеми з мережею . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / statusbar . h " line = " 95 " / > <nl> + < location filename = " . . / statusbar . h " line = " 187 " / > <nl> < source > DHT : % 1 nodes < / source > <nl> < translation > DHT : % 1 < / translation > <nl> < / message > <nl> < message > <nl> - < source > Connection Status : < / source > <nl> - < translation > Статус з & apos ; єднання : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Online < / source > <nl> - < translation > В мережі < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Global Download Speed Limit < / source > <nl> - < translation > Глобальний ліміт завантаження < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Global Upload Speed Limit < / source > <nl> - < translation > Глобальний ліміт вивантаження < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > D : % 1 / s - T : % 2 < / source > <nl> - < comment > Download speed : x KiB / s - Transferred : x MiB < / comment > <nl> - < translation type = " obsolete " > Зав . : % 1 / с ( % 2 ) < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > U : % 1 / s - T : % 2 < / source > <nl> - < comment > Upload speed : x KiB / s - Transferred : x MiB < / comment > <nl> - < translation type = " obsolete " > Вив . : % 1 / с ( % 2 ) < / translation > <nl> + < location filename = " . . / statusbar . h " line = " 150 " / > <nl> + < source > qBittorrent needs to be restarted < / source > <nl> + < translation > Потрібно перезапустити qBittorrent < / translation > <nl> < / message > <nl> < message > <nl> - < source > D : % 1 B / s - T : % 2 < / source > <nl> - < comment > Download speed : x B / s - Transferred : x MiB < / comment > <nl> - < translation type = " obsolete " > Зав . : % 1 Б / с ( % 2 ) < / translation > <nl> + < location filename = " . . / statusbar . h " line = " 160 " / > <nl> + < source > qBittorrent was just updated and needs to be restarted for the changes to be effective . < / source > <nl> + < translation > qBittorrent було щойно оновлено , і тепер потрібно його перезапустити , щоб застосувати зміни . < / translation > <nl> < / message > <nl> < message > <nl> - < source > U : % 1 B / s - T : % 2 < / source > <nl> - < comment > Upload speed : x B / s - Transferred : x MiB < / comment > <nl> - < translation type = " obsolete " > Вив . : % 1 Б / с ( % 2 ) < / translation > <nl> + < location filename = " . . / statusbar . h " line = " 172 " / > <nl> + < location filename = " . . / statusbar . h " line = " 177 " / > <nl> + < source > Connection Status : < / source > <nl> + < translation > Статус з & apos ; єднання : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / statusbar . h " line = " 172 " / > <nl> < source > Offline . This usually means that qBittorrent failed to listen on the selected port for incoming connections . < / source > <nl> < translation > Не в мережі . Зазвичай це означає , що qBittorrent не зміг приєднатись до вибраного порту і очікувати вхідні з & apos ; єднання . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Click to disable alternative speed limits < / source > <nl> - < translation type = " obsolete " > Клацніть , щоб вимкнути альтернативні обмеження швидкості < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Click to enable alternative speed limits < / source > <nl> - < translation type = " obsolete " > Клацніть , щоб увімкнути альтернативні обмеження швидкості < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > qBittorrent needs to be restarted < / source > <nl> - < translation > Потрібно перезапустити qBittorrent < / translation > <nl> + < location filename = " . . / statusbar . h " line = " 177 " / > <nl> + < source > Online < / source > <nl> + < translation > В мережі < / translation > <nl> < / message > <nl> < message > <nl> - < source > qBittorrent was just updated and needs to be restarted for the changes to be effective . < / source > <nl> - < translation > qBittorrent було щойно оновлено , і тепер потрібно його перезапустити , щоб застосувати зміни . < / translation > <nl> + < location filename = " . . / statusbar . h " line = " 193 " / > <nl> + < location filename = " . . / statusbar . h " line = " 194 " / > <nl> + < source > % 1 / s < / source > <nl> + < comment > Per second < / comment > <nl> + < translation > % 1 / с < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / statusbar . h " line = " 204 " / > <nl> < source > Click to switch to alternative speed limits < / source > <nl> < translation > Клацніть , щоб перемкнутись на альтернативні обмеження швидкості < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / statusbar . h " line = " 200 " / > <nl> < source > Click to switch to regular speed limits < / source > <nl> < translation > Клацніть , щоб перемкнутись на звичайні обмеження швидкості < / translation > <nl> < / message > <nl> < message > <nl> - < source > % 1 / s < / source > <nl> - < comment > Per second < / comment > <nl> - < translation > % 1 / с < / translation > <nl> + < location filename = " . . / statusbar . h " line = " 220 " / > <nl> + < source > Global Download Speed Limit < / source > <nl> + < translation > Глобальний ліміт завантаження < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / statusbar . h " line = " 245 " / > <nl> + < source > Global Upload Speed Limit < / source > <nl> + < translation > Глобальний ліміт вивантаження < / translation > <nl> < / message > <nl> < / context > <nl> < context > <nl> < name > TorrentContentModel < / name > <nl> < message > <nl> + < location filename = " . . / torrentcontentmodel . cpp " line = " 41 " / > <nl> < source > Name < / source > <nl> < translation > Назва < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentcontentmodel . cpp " line = " 41 " / > <nl> < source > Size < / source > <nl> < translation > Розмір < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentcontentmodel . cpp " line = " 42 " / > <nl> < source > Progress < / source > <nl> < translation > Прогрес < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentcontentmodel . cpp " line = " 42 " / > <nl> < source > Priority < / source > <nl> < translation > Пріоритет < / translation > <nl> < / message > <nl> Do you want to install it now ? < / source > <nl> < context > <nl> < name > TorrentCreatorDlg < / name > <nl> < message > <nl> + < location filename = " . . / torrentcreator / torrentcreatordlg . cpp " line = " 74 " / > <nl> < source > Select a folder to add to the torrent < / source > <nl> < translation > Виберіть папку для додавання в torrent < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentcreator / torrentcreatordlg . cpp " line = " 90 " / > <nl> < source > Select a file to add to the torrent < / source > <nl> < translation > Виберіть файл для додавання в торрент < / translation > <nl> < / message > <nl> < message > <nl> - < source > Please type an announce URL < / source > <nl> - < translation type = " obsolete " > Будь ласка , введіть URL анонсу < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Announce URL : < / source > <nl> - < comment > Tracker URL < / comment > <nl> - < translation type = " obsolete " > URL анонсу : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Please type a web seed url < / source > <nl> - < translation type = " obsolete " > Будь ласка , введіть URL web - роздачі < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Web seed URL : < / source > <nl> - < translation type = " obsolete " > URL web - роздачі : < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / torrentcreator / torrentcreatordlg . cpp " line = " 113 " / > <nl> < source > No input path set < / source > <nl> < translation > Не задано вхідний шлях < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentcreator / torrentcreatordlg . cpp " line = " 113 " / > <nl> < source > Please type an input path first < / source > <nl> < translation > Будь ласка , спочатку введіть вхідний шлях < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentcreator / torrentcreatordlg . cpp " line = " 123 " / > <nl> < source > Select destination torrent file < / source > <nl> < translation > Виберіть цільовий torrent - файл < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentcreator / torrentcreatordlg . cpp " line = " 123 " / > <nl> < source > Torrent Files < / source > <nl> < translation > Торрент - файли < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentcreator / torrentcreatordlg . cpp " line = " 150 " / > <nl> + < location filename = " . . / torrentcreator / torrentcreatordlg . cpp " line = " 164 " / > <nl> + < location filename = " . . / torrentcreator / torrentcreatordlg . cpp " line = " 174 " / > <nl> < source > Torrent creation < / source > <nl> < translation > Створення торрента < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentcreator / torrentcreatordlg . cpp " line = " 150 " / > <nl> < source > Torrent creation was unsuccessful , reason : % 1 < / source > <nl> < translation > Створення torrent & apos ; у було невдалим , причина : % 1 < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentcreator / torrentcreatordlg . cpp " line = " 164 " / > <nl> < source > Created torrent file is invalid . It won & apos ; t be added to download list . < / source > <nl> < translation > Створений торрент - файл неправильний . Його не буде додано до списку завантажень . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentcreator / torrentcreatordlg . cpp " line = " 174 " / > <nl> < source > Torrent was created successfully : < / source > <nl> < translation > Торрент було успішно створено : < / translation > <nl> < / message > <nl> < / context > <nl> - < context > <nl> - < name > TorrentFilesModel < / name > <nl> - < message > <nl> - < source > Name < / source > <nl> - < translation type = " obsolete " > Ім & apos ; я < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Size < / source > <nl> - < translation type = " obsolete " > Розмір < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Progress < / source > <nl> - < translation type = " obsolete " > Прогрес < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Priority < / source > <nl> - < translation type = " obsolete " > Пріоритет < / translation > <nl> - < / message > <nl> - < / context > <nl> < context > <nl> < name > TorrentImportDlg < / name > <nl> < message > <nl> + < location filename = " . . / torrentimportdlg . ui " line = " 14 " / > <nl> < source > Torrent Import < / source > <nl> < translation > Імпорт торрента < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentimportdlg . ui " line = " 53 " / > <nl> < source > This assistant will help you share with qBittorrent a torrent that you have already downloaded . < / source > <nl> < translation > Цей майстер допоможе вам поділитись з qBittorrent торрентом , який ви вже завантажили . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentimportdlg . ui " line = " 65 " / > <nl> < source > Torrent file to import : < / source > <nl> < translation > Торрент - файл , що імпортується : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentimportdlg . ui " line = " 109 " / > <nl> < source > . . . < / source > <nl> < translation > . . . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentimportdlg . ui " line = " 90 " / > <nl> < source > Content location : < / source > <nl> < translation > Розташування вмісту : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentimportdlg . ui " line = " 121 " / > <nl> < source > Skip the data checking stage and start seeding immediately < / source > <nl> < translation > Пропустити перевірку даних та почати сідування негайно < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentimportdlg . ui " line = " 131 " / > <nl> < source > Import < / source > <nl> < translation > Імпорт < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentimportdlg . cpp " line = " 68 " / > <nl> < source > Torrent file to import < / source > <nl> < translation > Торрент - файл , що імпортується < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentimportdlg . cpp " line = " 68 " / > <nl> < source > Torrent files ( * . torrent ) < / source > <nl> < translation > Torrent - файли ( * . torrent ) < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentimportdlg . cpp " line = " 93 " / > <nl> < source > % 1 Files < / source > <nl> < comment > % 1 is a file extension ( e . g . PDF ) < / comment > <nl> < translation > Файли % 1 < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentimportdlg . cpp " line = " 95 " / > <nl> < source > Please provide the location of % 1 < / source > <nl> < comment > % 1 is a file name < / comment > <nl> < translation > Будь ласка , вкажіть розташування % 1 < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentimportdlg . cpp " line = " 130 " / > <nl> < source > Please point to the location of the torrent : % 1 < / source > <nl> < translation > Будь ласка , вкажіть на розташування торрента : % 1 < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentimportdlg . cpp " line = " 235 " / > <nl> < source > Invalid torrent file < / source > <nl> < translation > Неправильний torrent - файл < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentimportdlg . cpp " line = " 235 " / > <nl> < source > This is not a valid torrent file . < / source > <nl> < translation > Цей файл не є правильним torrent - файлом . < / translation > <nl> < / message > <nl> Do you want to install it now ? < / source > <nl> < context > <nl> < name > TorrentModel < / name > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / torrentmodel . cpp " line = " 250 " / > <nl> < source > Name < / source > <nl> < comment > i . e : torrent name < / comment > <nl> < translation > Назва < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / torrentmodel . cpp " line = " 252 " / > <nl> < source > Size < / source > <nl> < comment > i . e : torrent size < / comment > <nl> < translation > Розмір < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / torrentmodel . cpp " line = " 253 " / > <nl> < source > Done < / source > <nl> < comment > % Done < / comment > <nl> < translation > Зроблено < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / torrentmodel . cpp " line = " 254 " / > <nl> < source > Status < / source > <nl> < comment > Torrent status ( e . g . downloading , seeding , paused ) < / comment > <nl> < translation > Статус < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / torrentmodel . cpp " line = " 255 " / > <nl> < source > Seeds < / source > <nl> < comment > i . e . full sources ( often untranslated ) < / comment > <nl> < translation > Сіди < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / torrentmodel . cpp " line = " 256 " / > <nl> < source > Peers < / source > <nl> < comment > i . e . partial sources ( often untranslated ) < / comment > <nl> < translation > Піри < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / torrentmodel . cpp " line = " 257 " / > <nl> < source > Down Speed < / source > <nl> < comment > i . e : Download speed < / comment > <nl> < translation > Шв . завант . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / torrentmodel . cpp " line = " 258 " / > <nl> < source > Up Speed < / source > <nl> < comment > i . e : Upload speed < / comment > <nl> < translation > Шв . вивант . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / torrentmodel . cpp " line = " 259 " / > <nl> < source > Ratio < / source > <nl> < comment > Share ratio < / comment > <nl> < translation > Коефіцієнт < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / torrentmodel . cpp " line = " 260 " / > <nl> < source > ETA < / source > <nl> < comment > i . e : Estimated Time of Arrival / Time left < / comment > <nl> < translation > Залишилось < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / torrentmodel . cpp " line = " 261 " / > <nl> < source > Label < / source > <nl> < translation > Мітка < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / torrentmodel . cpp " line = " 262 " / > <nl> < source > Added On < / source > <nl> < comment > Torrent was added to transfer list on 01 / 01 / 2010 08 : 00 < / comment > <nl> < translation > Додано < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / torrentmodel . cpp " line = " 263 " / > <nl> < source > Completed On < / source > <nl> < comment > Torrent was completed on 01 / 01 / 2010 08 : 00 < / comment > <nl> < translation > Завершено < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / torrentmodel . cpp " line = " 264 " / > <nl> < source > Tracker < / source > <nl> < translation > Трекер < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / torrentmodel . cpp " line = " 265 " / > <nl> < source > Down Limit < / source > <nl> < comment > i . e : Download limit < / comment > <nl> < translation > Ліміт завант . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / torrentmodel . cpp " line = " 266 " / > <nl> < source > Up Limit < / source > <nl> < comment > i . e : Upload limit < / comment > <nl> < translation > Ліміт вивант . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / torrentmodel . cpp " line = " 267 " / > <nl> < source > Amount downloaded < / source > <nl> < comment > Amount of data downloaded ( e . g . in MB ) < / comment > <nl> < translation > Завантажено < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / torrentmodel . cpp " line = " 268 " / > <nl> + < source > Amount uploaded < / source > <nl> + < comment > Amount of data uploaded ( e . g . in MB ) < / comment > <nl> + < translation type = " unfinished " / > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / qtlibtorrent / torrentmodel . cpp " line = " 269 " / > <nl> < source > Amount left < / source > <nl> < comment > Amount of data left to download ( e . g . in MB ) < / comment > <nl> < translation > Залишилось < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / qtlibtorrent / torrentmodel . cpp " line = " 270 " / > <nl> < source > Time Active < / source > <nl> < comment > Time ( duration ) the torrent is active ( not paused ) < / comment > <nl> < translation > Активний протягом < / translation > <nl> < / message > <nl> < message > <nl> - < source > Amount uploaded < / source > <nl> - < comment > Amount of data uploaded ( e . g . in MB ) < / comment > <nl> - < translation type = " unfinished " > < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / qtlibtorrent / torrentmodel . cpp " line = " 271 " / > <nl> < source > Save path < / source > <nl> < comment > Torrent save path < / comment > <nl> - < translation type = " unfinished " > < / translation > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < / context > <nl> < context > <nl> < name > TrackerList < / name > <nl> < message > <nl> + < location filename = " . . / properties / trackerlist . cpp " line = " 64 " / > <nl> < source > URL < / source > <nl> < translation > URL < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / trackerlist . cpp " line = " 65 " / > <nl> < source > Status < / source > <nl> < translation > Статус < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / trackerlist . cpp " line = " 66 " / > <nl> < source > Peers < / source > <nl> < translation > Піри < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / trackerlist . cpp " line = " 67 " / > <nl> < source > Message < / source > <nl> < translation > Повідомлення < / translation > <nl> < / message > <nl> < message > <nl> - < source > [ DHT ] < / source > <nl> - < translation type = " obsolete " > [ DHT ] < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / properties / trackerlist . cpp " line = " 194 " / > <nl> + < location filename = " . . / properties / trackerlist . cpp " line = " 204 " / > <nl> + < location filename = " . . / properties / trackerlist . cpp " line = " 210 " / > <nl> + < location filename = " . . / properties / trackerlist . cpp " line = " 260 " / > <nl> < source > Working < / source > <nl> < translation > Працює < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / trackerlist . cpp " line = " 196 " / > <nl> + < location filename = " . . / properties / trackerlist . cpp " line = " 206 " / > <nl> + < location filename = " . . / properties / trackerlist . cpp " line = " 212 " / > <nl> < source > Disabled < / source > <nl> < translation > Вимкнений < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / trackerlist . cpp " line = " 199 " / > <nl> < source > This torrent is private < / source > <nl> < translation > Цей торрент приватний < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / trackerlist . cpp " line = " 264 " / > <nl> < source > Updating . . . < / source > <nl> < translation > Оновлюю . . . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / trackerlist . cpp " line = " 268 " / > <nl> < source > Not working < / source > <nl> < translation > Не працює < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / trackerlist . cpp " line = " 271 " / > <nl> < source > Not contacted yet < / source > <nl> < translation > Ще не зв & apos ; язувався < / translation > <nl> < / message > <nl> < message > <nl> - < source > [ PeX ] < / source > <nl> - < translation type = " obsolete " > [ PeX ] < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > [ LSD ] < / source > <nl> - < translation type = " obsolete " > [ LSD ] < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Add a new tracker . . . < / source > <nl> - < translation > Додати новий трекер . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Remove tracker < / source > <nl> - < translation > Видалити трекер < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Force reannounce < / source > <nl> - < translation type = " obsolete " > Примусово переанонсувати < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Copy tracker url < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / properties / trackerlist . cpp " line = " 360 " / > <nl> < source > Tracker URL : < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / trackerlist . cpp " line = " 361 " / > <nl> < source > Tracker editing < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / trackerlist . cpp " line = " 372 " / > <nl> + < location filename = " . . / properties / trackerlist . cpp " line = " 385 " / > <nl> < source > Tracker editing failed < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / trackerlist . cpp " line = " 372 " / > <nl> < source > The tracker URL entered is invalid . < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / trackerlist . cpp " line = " 385 " / > <nl> < source > The tracker URL already exists . < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < translation type = " unfinished " / > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / properties / trackerlist . cpp " line = " 413 " / > <nl> + < source > Add a new tracker . . . < / source > <nl> + < translation > Додати новий трекер . . . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / trackerlist . cpp " line = " 419 " / > <nl> + < source > Copy tracker url < / source > <nl> + < translation type = " unfinished " / > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / properties / trackerlist . cpp " line = " 420 " / > <nl> < source > Edit selected tracker URL < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < translation type = " unfinished " / > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / properties / trackerlist . cpp " line = " 418 " / > <nl> + < source > Remove tracker < / source > <nl> + < translation > Видалити трекер < / translation > <nl> < / message > <nl> < / context > <nl> < context > <nl> < name > TrackersAdditionDlg < / name > <nl> < message > <nl> + < location filename = " . . / properties / trackersadditiondlg . ui " line = " 14 " / > <nl> < source > Trackers addition dialog < / source > <nl> < translation > Додавання трекеру < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / trackersadditiondlg . ui " line = " 20 " / > <nl> < source > List of trackers to add ( one per line ) : < / source > <nl> < translation > Список трекерів , які ви хочете додати ( один на рядок ) : < / translation > <nl> < / message > <nl> < message utf8 = " true " > <nl> + < location filename = " . . / properties / trackersadditiondlg . ui " line = " 44 " / > <nl> < source > µTorrent compatible list URL : < / source > <nl> < translation > URL списку , сумісного з µTorrent : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / trackersadditiondlg . h " line = " 78 " / > <nl> < source > I / O Error < / source > <nl> < translation > Помилка вводу / виводу < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / trackersadditiondlg . h " line = " 78 " / > <nl> < source > Error while trying to open the downloaded file . < / source > <nl> < translation > Не вдалося відкрити завантажений файл . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / trackersadditiondlg . h " line = " 122 " / > <nl> < source > No change < / source > <nl> < translation > Без змін < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / trackersadditiondlg . h " line = " 122 " / > <nl> < source > No additional trackers were found . < / source > <nl> < translation > Не знайдено додаткових трекерів . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / trackersadditiondlg . h " line = " 131 " / > <nl> < source > Download error < / source > <nl> < translation > Помилка завантаження < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / trackersadditiondlg . h " line = " 131 " / > <nl> < source > The trackers list could not be downloaded , reason : % 1 < / source > <nl> < translation > Не вдалося завантажити список трекерів , причина : % 1 < / translation > <nl> < / message > <nl> Do you want to install it now ? < / source > <nl> < context > <nl> < name > TransferListDelegate < / name > <nl> < message > <nl> + < location filename = " . . / transferlistdelegate . h " line = " 95 " / > <nl> < source > Downloading < / source > <nl> < translation > Завантажую < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistdelegate . h " line = " 99 " / > <nl> < source > Paused < / source > <nl> < translation > Зупинені < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistdelegate . h " line = " 103 " / > <nl> < source > Queued < / source > <nl> < comment > i . e . torrent is queued < / comment > <nl> < translation > В черзі < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistdelegate . h " line = " 107 " / > <nl> < source > Seeding < / source > <nl> < comment > Torrent is complete and in upload - only mode < / comment > <nl> < translation > Роздаю < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistdelegate . h " line = " 110 " / > <nl> < source > Stalled < / source > <nl> < comment > Torrent is waiting for download to begin < / comment > <nl> < translation > Заглохло < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistdelegate . h " line = " 114 " / > <nl> < source > Checking < / source > <nl> < comment > Torrent local data is being checked < / comment > <nl> < translation > Перевіряю < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistdelegate . h " line = " 128 " / > <nl> < source > / s < / source > <nl> < comment > / second ( . i . e per second ) < / comment > <nl> < translation > / с < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistdelegate . h " line = " 137 " / > <nl> < source > KiB / s < / source > <nl> < comment > KiB / second ( . i . e per second ) < / comment > <nl> < translation > КіБ / с < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistdelegate . h " line = " 147 " / > <nl> < source > Seeded for % 1 < / source > <nl> < comment > e . g . Seeded for 3m10s < / comment > <nl> < translation > Роздавав % 1 < / translation > <nl> Do you want to install it now ? < / source > <nl> < context > <nl> < name > TransferListFiltersWidget < / name > <nl> < message > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 206 " / > <nl> + < source > Torrents < / source > <nl> + < translation > Торренти < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 212 " / > <nl> + < source > Labels < / source > <nl> + < translation > Мітки < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 226 " / > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 308 " / > <nl> < source > All < / source > <nl> < translation > Всі < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 229 " / > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 309 " / > <nl> < source > Downloading < / source > <nl> < translation > Завантажуються < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 232 " / > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 310 " / > <nl> < source > Completed < / source > <nl> < translation > Завершені < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 235 " / > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 311 " / > <nl> + < source > Paused < / source > <nl> + < translation > Зупинено < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 238 " / > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 312 " / > <nl> < source > Active < / source > <nl> < translation > Активні < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 241 " / > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 313 " / > <nl> < source > Inactive < / source > <nl> < translation > Неактивні < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 255 " / > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 492 " / > <nl> < source > All labels < / source > <nl> < translation > Всі мітки < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 258 " / > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 493 " / > <nl> < source > Unlabeled < / source > <nl> < translation > Без мітки < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 340 " / > <nl> < source > Remove label < / source > <nl> < translation > Видалити мітку < / translation > <nl> < / message > <nl> < message > <nl> - < source > New Label < / source > <nl> - < translation > Нова мітка < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Label : < / source > <nl> - < translation > Мітка : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Invalid label name < / source > <nl> - < translation > Неправильна назва мітки < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Please don & apos ; t use any special characters in the label name . < / source > <nl> - < translation > Будь ласка , не використовуйте особливі символи в назві мітки . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Paused < / source > <nl> - < translation > Зупинено < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 341 " / > <nl> < source > Add label . . . < / source > <nl> < translation > Додати мітку . . . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 343 " / > <nl> < source > Resume torrents < / source > <nl> < translation > Відновити завантаження < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 344 " / > <nl> < source > Pause torrents < / source > <nl> < translation > Призупинити завантаження < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 345 " / > <nl> < source > Delete torrents < / source > <nl> < translation > Видалити торренти < / translation > <nl> < / message > <nl> < message > <nl> - < source > Torrents < / source > <nl> - < translation > Торренти < / translation > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 371 " / > <nl> + < source > New Label < / source > <nl> + < translation > Нова мітка < / translation > <nl> < / message > <nl> < message > <nl> - < source > Labels < / source > <nl> - < translation > Мітки < / translation > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 371 " / > <nl> + < source > Label : < / source > <nl> + < translation > Мітка : < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 376 " / > <nl> + < source > Invalid label name < / source > <nl> + < translation > Неправильна назва мітки < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / transferlistfilterswidget . h " line = " 376 " / > <nl> + < source > Please don & apos ; t use any special characters in the label name . < / source > <nl> + < translation > Будь ласка , не використовуйте особливі символи в назві мітки . < / translation > <nl> < / message > <nl> < / context > <nl> < context > <nl> < name > TransferListWidget < / name > <nl> < message > <nl> - < source > ETA < / source > <nl> - < comment > i . e : Estimated Time of Arrival / Time left < / comment > <nl> - < translation type = " obsolete " > Залишилось < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 542 " / > <nl> < source > Column visibility < / source > <nl> < translation > Видимість колонок < / translation > <nl> < / message > <nl> < message > <nl> - < source > Open destination folder < / source > <nl> - < translation > Відкрити папку призначення < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Force recheck < / source > <nl> - < translation > Примусова перевірка < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Copy magnet link < / source > <nl> - < translation > Копіювати Магнітне посилання < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Down Speed < / source > <nl> - < comment > i . e : Download speed < / comment > <nl> - < translation type = " obsolete " > Шв . завантаження < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Up Speed < / source > <nl> - < comment > i . e : Upload speed < / comment > <nl> - < translation type = " obsolete " > Шв . вивантаження < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Name < / source > <nl> - < comment > i . e : torrent name < / comment > <nl> - < translation type = " obsolete " > Назва < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Size < / source > <nl> - < comment > i . e : torrent size < / comment > <nl> - < translation type = " obsolete " > Розмір < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Done < / source > <nl> - < comment > % Done < / comment > <nl> - < translation type = " obsolete " > Зроблено < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Status < / source > <nl> - < comment > Torrent status ( e . g . downloading , seeding , paused ) < / comment > <nl> - < translation type = " obsolete " > Статус < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Seeds < / source > <nl> - < comment > i . e . full sources ( often untranslated ) < / comment > <nl> - < translation type = " obsolete " > Сіди < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Peers < / source > <nl> - < comment > i . e . partial sources ( often untranslated ) < / comment > <nl> - < translation type = " obsolete " > Піри < / translation > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 778 " / > <nl> + < source > Label < / source > <nl> + < translation > Мітка < / translation > <nl> < / message > <nl> < message > <nl> - < source > Ratio < / source > <nl> - < comment > Share ratio < / comment > <nl> - < translation type = " obsolete " > Коефіцієнт < / translation > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 242 " / > <nl> + < source > Choose save path < / source > <nl> + < translation > Виберіть шлях збереження < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 464 " / > <nl> < source > Torrent Download Speed Limiting < / source > <nl> < translation > Обмеження швидкості завантаження торрента < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 497 " / > <nl> < source > Torrent Upload Speed Limiting < / source > <nl> < translation > Обмеження швидкості вивантаження торрента < / translation > <nl> < / message > <nl> < message > <nl> - < source > Super seeding mode < / source > <nl> - < translation > Режим супер - сідування < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Download in sequential order < / source > <nl> - < translation > Завантажувати послідовно < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Download first and last piece first < / source > <nl> - < translation > Спочатку завантажувати першу і останню частину < / translation > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 530 " / > <nl> + < source > Recheck confirmation < / source > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < message > <nl> - < source > Label < / source > <nl> - < translation > Мітка < / translation > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 530 " / > <nl> + < source > Are you sure you want to recheck the selected torrent ( s ) ? < / source > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 605 " / > <nl> < source > New Label < / source > <nl> < translation > Нова мітка < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 605 " / > <nl> < source > Label : < / source > <nl> < translation > Мітка : < / translation > <nl> < / message > <nl> < message > <nl> - < source > New . . . < / source > <nl> - < comment > New label . . . < / comment > <nl> - < translation > Нова . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Reset < / source > <nl> - < comment > Reset label < / comment > <nl> - < translation > Забрати мітку < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Rename < / source > <nl> - < translation > Перейменувати < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > New name : < / source > <nl> - < translation > Нова назва : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Rename . . . < / source > <nl> - < translation > Перейменувати . . . < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 610 " / > <nl> < source > Invalid label name < / source > <nl> < translation > Неправильна назва мітки < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 610 " / > <nl> < source > Please don & apos ; t use any special characters in the label name . < / source > <nl> < translation > Будь ласка , не використовуйте особливі символи в назві мітки . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Added On < / source > <nl> - < comment > Torrent was added to transfer list on 01 / 01 / 2010 08 : 00 < / comment > <nl> - < translation type = " obsolete " > Додано < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Completed On < / source > <nl> - < comment > Torrent was completed on 01 / 01 / 2010 08 : 00 < / comment > <nl> - < translation type = " obsolete " > Завершено < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Down Limit < / source > <nl> - < comment > i . e : Download limit < / comment > <nl> - < translation type = " obsolete " > Ліміт завантаження < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Up Limit < / source > <nl> - < comment > i . e : Upload limit < / comment > <nl> - < translation type = " obsolete " > Ліміт вивантаження < / translation > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 627 " / > <nl> + < source > Rename < / source > <nl> + < translation > Перейменувати < / translation > <nl> < / message > <nl> < message > <nl> - < source > Choose save path < / source > <nl> - < translation > Виберіть шлях збереження < / translation > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 627 " / > <nl> + < source > New name : < / source > <nl> + < translation > Нова назва : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Save path creation error < / source > <nl> - < translation type = " obsolete " > Помилка при створенні шляху збереження < / translation > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 662 " / > <nl> + < source > Resume < / source > <nl> + < comment > Resume / start the torrent < / comment > <nl> + < translation > Продовжити < / translation > <nl> < / message > <nl> < message > <nl> - < source > Could not create the save path < / source > <nl> - < translation type = " obsolete " > Не вдалося створити шлях збереження < / translation > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 664 " / > <nl> + < source > Pause < / source > <nl> + < comment > Pause the torrent < / comment > <nl> + < translation > Призупинити < / translation > <nl> < / message > <nl> < message > <nl> - < source > Set location . . . < / source > <nl> - < translation > Встановити місце . . . < / translation > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 666 " / > <nl> + < source > Delete < / source > <nl> + < comment > Delete the torrent < / comment > <nl> + < translation > Видалити < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 668 " / > <nl> < source > Preview file . . . < / source > <nl> < translation > Переглянути файл . . . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 670 " / > <nl> + < source > Limit share ratio . . . < / source > <nl> + < translation > Обмежити коефіцієнт роздачі . . . < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 672 " / > <nl> < source > Limit upload rate . . . < / source > <nl> < translation > Обмежити швидкість вивантаження . . . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 674 " / > <nl> < source > Limit download rate . . . < / source > <nl> < translation > Обмежити швидкість завантаження . . . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 676 " / > <nl> + < source > Open destination folder < / source > <nl> + < translation > Відкрити папку призначення < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 678 " / > <nl> < source > Move up < / source > <nl> < comment > i . e . move up in the queue < / comment > <nl> < translation > Посунути вгору < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 680 " / > <nl> < source > Move down < / source > <nl> < comment > i . e . Move down in the queue < / comment > <nl> < translation > Посунути вниз < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 682 " / > <nl> < source > Move to top < / source > <nl> < comment > i . e . Move to top of the queue < / comment > <nl> < translation > Розмістити зверху < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 684 " / > <nl> < source > Move to bottom < / source > <nl> < comment > i . e . Move to bottom of the queue < / comment > <nl> < translation > Розмістити знизу < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 686 " / > <nl> + < source > Set location . . . < / source > <nl> + < translation > Встановити місце . . . < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 821 " / > <nl> < source > Priority < / source > <nl> < translation > Пріоритет < / translation > <nl> < / message > <nl> < message > <nl> - < source > Resume < / source > <nl> - < comment > Resume / start the torrent < / comment > <nl> - < translation > Продовжити < / translation > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 688 " / > <nl> + < source > Force recheck < / source > <nl> + < translation > Примусова перевірка < / translation > <nl> < / message > <nl> < message > <nl> - < source > Pause < / source > <nl> - < comment > Pause the torrent < / comment > <nl> - < translation > Призупинити < / translation > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 690 " / > <nl> + < source > Copy magnet link < / source > <nl> + < translation > Копіювати Магнітне посилання < / translation > <nl> < / message > <nl> < message > <nl> - < source > Delete < / source > <nl> - < comment > Delete the torrent < / comment > <nl> - < translation > Видалити < / translation > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 692 " / > <nl> + < source > Super seeding mode < / source > <nl> + < translation > Режим супер - сідування < / translation > <nl> < / message > <nl> < message > <nl> - < source > Limit share ratio . . . < / source > <nl> - < translation > Обмежити коефіцієнт роздачі . . . < / translation > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 695 " / > <nl> + < source > Rename . . . < / source > <nl> + < translation > Перейменувати . . . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Recheck confirmation < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 697 " / > <nl> + < source > Download in sequential order < / source > <nl> + < translation > Завантажувати послідовно < / translation > <nl> < / message > <nl> < message > <nl> - < source > Are you sure you want to recheck the selected torrent ( s ) ? < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 700 " / > <nl> + < source > Download first and last piece first < / source > <nl> + < translation > Спочатку завантажувати першу і останню частину < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 779 " / > <nl> + < source > New . . . < / source > <nl> + < comment > New label . . . < / comment > <nl> + < translation > Нова . . . < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / transferlistwidget . cpp " line = " 780 " / > <nl> + < source > Reset < / source > <nl> + < comment > Reset label < / comment > <nl> + < translation > Забрати мітку < / translation > <nl> < / message > <nl> < / context > <nl> < context > <nl> < name > UpDownRatioDlg < / name > <nl> < message > <nl> + < location filename = " . . / updownratiodlg . ui " line = " 14 " / > <nl> < source > Torrent Upload / Download Ratio Limiting < / source > <nl> < translation > Обмеження коефіцієнта & quot ; вивантаження / завантаження & quot ; торрента < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / updownratiodlg . ui " line = " 20 " / > <nl> < source > Use global ratio limit < / source > <nl> < translation > Використовувати глобальні обмеження < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / updownratiodlg . ui " line = " 23 " / > <nl> + < location filename = " . . / updownratiodlg . ui " line = " 33 " / > <nl> + < location filename = " . . / updownratiodlg . ui " line = " 45 " / > <nl> < source > buttonGroup < / source > <nl> < translation > Група кнопок < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / updownratiodlg . ui " line = " 30 " / > <nl> < source > Set no ratio limit < / source > <nl> < translation > Не використовувати обмеження коефіцієнта < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / updownratiodlg . ui " line = " 42 " / > <nl> < source > Set ratio limit to < / source > <nl> < translation > Встановити обмеження коефіцієнта на < / translation > <nl> < / message > <nl> Do you want to install it now ? < / source > <nl> < context > <nl> < name > UsageDisplay < / name > <nl> < message > <nl> + < location filename = " . . / main . cpp " line = " 83 " / > <nl> < source > Usage : < / source > <nl> < translation > Використання : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / main . cpp " line = " 84 " / > <nl> < source > displays program version < / source > <nl> < translation > показує версію програми < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / main . cpp " line = " 86 " / > <nl> < source > disable splash screen < / source > <nl> < translation > вимкнути початкову заставку < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / main . cpp " line = " 88 " / > <nl> + < source > run in daemon - mode ( background ) < / source > <nl> + < translation type = " unfinished " / > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / main . cpp " line = " 90 " / > <nl> < source > displays this help message < / source > <nl> < translation > показує це повідомлення < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / main . cpp " line = " 91 " / > <nl> < source > changes the webui port ( current : % 1 ) < / source > <nl> < translation > змінює порт Веб - інтерфейсу ( поточний : % 1 ) < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / main . cpp " line = " 92 " / > <nl> < source > [ files or urls ] : downloads the torrents passed by the user ( optional ) < / source > <nl> < translation > [ файли або URL & apos ; и ] : завантажує торренти , вказані користувачем ( необов & apos ; язково ) < / translation > <nl> < / message > <nl> - < message > <nl> - < source > run in daemon - mode ( background ) < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> - < / message > <nl> < / context > <nl> < context > <nl> < name > about < / name > <nl> < message > <nl> - < source > qBittorrent < / source > <nl> - < translation type = " obsolete " > qBittorrent < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / about_imp . h " line = " 64 " / > <nl> < source > I would like to thank the following people who volunteered to translate qBittorrent : < / source > <nl> < translation > Я хотів би подякувати наступним людям , які переклали qBittorrent на власні мови : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / about_imp . h " line = " 100 " / > <nl> < source > Please contact me if you would like to translate qBittorrent into your own language . < / source > <nl> < translation > Будь - ласка зв & apos ; яжіться зі мною , якщо ви бажаєте перекласти qBittorrent на вашу мову . < / translation > <nl> < / message > <nl> Do you want to install it now ? < / source > <nl> < context > <nl> < name > addPeerDialog < / name > <nl> < message > <nl> + < location filename = " . . / properties / peer . ui " line = " 20 " / > <nl> < source > Peer addition < / source > <nl> < translation > Додавання піра < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / peer . ui " line = " 36 " / > <nl> < source > IP < / source > <nl> < translation > IP < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / properties / peer . ui " line = " 59 " / > <nl> < source > Port < / source > <nl> < translation > Порт < / translation > <nl> < / message > <nl> < / context > <nl> - < context > <nl> - < name > addTorrentDialog < / name > <nl> - < message > <nl> - < source > Torrent addition dialog < / source > <nl> - < translation type = " obsolete " > Діалог додавання торренту < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Save path : < / source > <nl> - < translation type = " obsolete " > Шлях збереження : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > . . . < / source > <nl> - < translation type = " obsolete " > . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Torrent content : < / source > <nl> - < translation type = " obsolete " > Вміст торренту : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Add to download list in paused state < / source > <nl> - < translation type = " obsolete " > Додати до списку завантажень у призупиненому стані < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Add < / source > <nl> - < translation type = " obsolete " > Додати < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Cancel < / source > <nl> - < translation type = " obsolete " > Відміна < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Normal < / source > <nl> - < translation type = " obsolete " > Нормальний < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > High < / source > <nl> - < translation type = " obsolete " > Високий < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Maximum < / source > <nl> - < translation type = " obsolete " > Максимальний < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Torrent size : < / source > <nl> - < translation type = " obsolete " > Розмір торрента : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Unknown < / source > <nl> - < translation type = " obsolete " > Невідомо < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Free disk space : < / source > <nl> - < translation type = " obsolete " > Вільне місце на диску : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Download in sequential order ( slower but good for previewing ) < / source > <nl> - < translation type = " obsolete " > Завантажувати по порядку ( повільніше , але краще для перегляду ) < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Skip file checking and start seeding immediately < / source > <nl> - < translation type = " obsolete " > Пропустити перевірку файлів і почати сідування негайно < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Label : < / source > <nl> - < translation type = " obsolete " > Мітка : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Select All < / source > <nl> - < translation type = " obsolete " > Вибрати все < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Select None < / source > <nl> - < translation type = " obsolete " > Зняти виділення < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Do not download < / source > <nl> - < translation type = " obsolete " > Не завантажувати < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Set as default save path < / source > <nl> - < translation type = " obsolete " > Зробити стандартним шляхом збереження < / translation > <nl> - < / message > <nl> - < / context > <nl> < context > <nl> < name > authentication < / name > <nl> < message > <nl> + < location filename = " . . / login . ui " line = " 14 " / > <nl> + < location filename = " . . / login . ui " line = " 47 " / > <nl> < source > Tracker authentication < / source > <nl> < translation > Аутентификация на трекере < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / login . ui " line = " 64 " / > <nl> < source > Tracker : < / source > <nl> < translation > Трекер : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / login . ui " line = " 86 " / > <nl> < source > Login < / source > <nl> < translation > Логін < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / login . ui " line = " 94 " / > <nl> < source > Username : < / source > <nl> < translation > Ім & apos ; я користувача : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / login . ui " line = " 117 " / > <nl> < source > Password : < / source > <nl> < translation > Пароль : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / login . ui " line = " 154 " / > <nl> < source > Log in < / source > <nl> < translation > Увійти < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / login . ui " line = " 161 " / > <nl> < source > Cancel < / source > <nl> < translation > Відміна < / translation > <nl> < / message > <nl> Do you want to install it now ? < / source > <nl> < context > <nl> < name > confirmDeletionDlg < / name > <nl> < message > <nl> + < location filename = " . . / confirmdeletiondlg . ui " line = " 20 " / > <nl> < source > Deletion confirmation - qBittorrent < / source > <nl> < translation > Підтвердження видалення - qBittorrent < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / confirmdeletiondlg . ui " line = " 47 " / > <nl> < source > Are you sure you want to delete the selected torrents from the transfer list ? < / source > <nl> < translation > Ви впевнені , що хочете видалити вибрані торренти зі списку завантажень ? < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / confirmdeletiondlg . ui " line = " 67 " / > <nl> < source > Remember choice < / source > <nl> < translation > Запам & apos ; ятати вибір < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / confirmdeletiondlg . ui " line = " 94 " / > <nl> < source > Also delete the files on the hard disk < / source > <nl> < translation > Також видалити файли на жорсткому диску < / translation > <nl> < / message > <nl> Do you want to install it now ? < / source > <nl> < context > <nl> < name > createTorrentDialog < / name > <nl> < message > <nl> + < location filename = " . . / torrentcreator / createtorrent . ui " line = " 283 " / > <nl> < source > Cancel < / source > <nl> < translation > Відміна < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentcreator / createtorrent . ui " line = " 14 " / > <nl> < source > Torrent Creation Tool < / source > <nl> < translation > Інструмент для створення Torrent & apos ; ів < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentcreator / createtorrent . ui " line = " 38 " / > <nl> < source > Torrent file creation < / source > <nl> < translation > Створення torrent - файлу < / translation > <nl> < / message > <nl> < message > <nl> - < source > Announce urls ( trackers ) : < / source > <nl> - < translation type = " obsolete " > urls анонсу ( трекери ) : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Comment ( optional ) : < / source > <nl> - < translation type = " obsolete " > Коментарій ( необов & apos ; язково ) : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Web seeds urls ( optional ) : < / source > <nl> - < translation type = " obsolete " > Urls web - роздачі ( необов & apos ; язково ) : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > File or folder to add to the torrent : < / source > <nl> - < translation > Файл або папка для додавання в торрент : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Piece size : < / source > <nl> - < translation > Розмір частини : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > 32 KiB < / source > <nl> - < translation > 32 КіБ < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > 64 KiB < / source > <nl> - < translation > 64 КіБ < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > 128 KiB < / source > <nl> - < translation > 128 КіБ < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > 256 KiB < / source > <nl> - < translation > 256 КіБ < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > 512 KiB < / source > <nl> - < translation > 512 КіБ < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > 1 MiB < / source > <nl> - < translation > 1 МіБ < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > 2 MiB < / source > <nl> - < translation > 2 МіБ < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > 4 MiB < / source > <nl> - < translation > 4 МіБ < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Private ( won & apos ; t be distributed on DHT network if enabled ) < / source > <nl> - < translation > Приватно ( не буде передаватись через мережу DHT , якщо увімкнено ) < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Start seeding after creation < / source > <nl> - < translation > Почати роздачу одразу після створення < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Create and save . . . < / source > <nl> - < translation > Створити і зберегти . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Progress : < / source > <nl> - < translation > Прогрес : < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / torrentcreator / createtorrent . ui " line = " 60 " / > <nl> < source > Add file < / source > <nl> < translation > Додати файл < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentcreator / createtorrent . ui " line = " 67 " / > <nl> < source > Add folder < / source > <nl> < translation > Додати папку < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentcreator / createtorrent . ui " line = " 48 " / > <nl> + < source > File or folder to add to the torrent : < / source > <nl> + < translation > Файл або папка для додавання в торрент : < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / torrentcreator / createtorrent . ui " line = " 78 " / > <nl> < source > Tracker URLs : < / source > <nl> < translation > URL трекерів : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentcreator / createtorrent . ui " line = " 88 " / > <nl> < source > Web seeds urls : < / source > <nl> < translation > URL веб - сідів : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / torrentcreator / createtorrent . ui " line = " 98 " / > <nl> < source > Comment : < / source > <nl> < translation > Коментар : < / translation > <nl> < / message > <nl> < message > <nl> - < source > Auto < / source > <nl> - < translation > Автоматично < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / torrentcreator / createtorrent . ui " line = " 127 " / > <nl> < source > You can separate tracker tiers / groups with an empty line . < / source > <nl> - < comment > A tracker tier is a group of trackers , consisting of a main tracker and its mirrors . < / comment > <nl> - < translation type = " unfinished " > < / translation > <nl> - < / message > <nl> - < / context > <nl> - < context > <nl> - < name > createtorrent < / name > <nl> - < message > <nl> - < source > Select destination torrent file < / source > <nl> - < translation type = " obsolete " > Виберіть цільовий torrent - файл < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Torrent Files < / source > <nl> - < translation type = " obsolete " > Torrent файли < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > No input path set < / source > <nl> - < translation type = " obsolete " > Не задано вхідний шлях < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Please type an input path first < / source > <nl> - < translation type = " obsolete " > Будь ласка , спочатку введіть вхідний шлях < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Torrent creation < / source > <nl> - < translation type = " obsolete " > Створення торренту < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Torrent was created successfully : < / source > <nl> - < translation type = " obsolete " > Торрент було успішно створено : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Select a folder to add to the torrent < / source > <nl> - < translation type = " obsolete " > Виберіть папку для додавання в torrent < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Please type an announce URL < / source > <nl> - < translation type = " obsolete " > Будь ласка , введіть URL анонсу < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Torrent creation was unsuccessful , reason : % 1 < / source > <nl> - < translation type = " obsolete " > Створення torrent & apos ; у було невдалим , причина : % 1 < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Announce URL : < / source > <nl> - < comment > Tracker URL < / comment > <nl> - < translation type = " obsolete " > URL анонсу : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Please type a web seed url < / source > <nl> - < translation type = " obsolete " > Будь ласка , введіть URL web - роздачі < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Web seed URL : < / source > <nl> - < translation type = " obsolete " > URL web - роздачі : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Select a file to add to the torrent < / source > <nl> - < translation type = " obsolete " > Виберіть файл для додавання в торрент < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Created torrent file is invalid . It won & apos ; t be added to download list . < / source > <nl> - < translation type = " obsolete " > Створений торрент - файл неправильний . Він не буде доданий до списку завантажень . < / translation > <nl> - < / message > <nl> - < / context > <nl> - < context > <nl> - < name > downloadFromURL < / name > <nl> - < message > <nl> - < source > Download Torrents from URLs < / source > <nl> - < translation type = " obsolete " > Завантажити торренти з URL - ів < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Only one URL per line < / source > <nl> - < translation type = " obsolete " > Лише один URL на лінію < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Download < / source > <nl> - < translation > Завантажити < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Cancel < / source > <nl> - < translation > Відміна < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Download from urls < / source > <nl> - < translation > Завантажити з URL & apos ; ів < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > No URL entered < / source > <nl> - < translation > Не введено URL < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Please type at least one URL . < / source > <nl> - < translation > Будь ласка , введіть хоча б один URL . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Add torrent links < / source > <nl> - < translation > Додати посилання на торрент < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Both HTTP and Magnet links are supported < / source > <nl> - < translation > І HTTP , і магнітні посилання підтримуються < / translation > <nl> - < / message > <nl> - < / context > <nl> - < context > <nl> - < name > downloadThread < / name > <nl> - < message > <nl> - < source > I / O Error < / source > <nl> - < translation type = " obsolete " > Помилка вводу / виводу < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > The remote host name was not found ( invalid hostname ) < / source > <nl> - < translation type = " obsolete " > Віддалений сервер не знайдено ( неправильна адреса ) < / translation > <nl> + < comment > A tracker tier is a group of trackers , consisting of a main tracker and its mirrors . < / comment > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < message > <nl> - < source > The operation was canceled < / source > <nl> - < translation type = " obsolete " > Операцію скасовано < / translation > <nl> + < location filename = " . . / torrentcreator / createtorrent . ui " line = " 148 " / > <nl> + < source > Piece size : < / source > <nl> + < translation > Розмір частини : < / translation > <nl> < / message > <nl> < message > <nl> - < source > The remote server closed the connection prematurely , before the entire reply was received and processed < / source > <nl> - < translation type = " obsolete " > Віддалений сервер закрив з & apos ; єднання зарано , перед тим , як було отримано і оброблено відповідь < / translation > <nl> + < location filename = " . . / torrentcreator / createtorrent . ui " line = " 165 " / > <nl> + < source > 32 KiB < / source > <nl> + < translation > 32 КіБ < / translation > <nl> < / message > <nl> < message > <nl> - < source > The connection to the remote server timed out < / source > <nl> - < translation type = " obsolete " > Вичерпано час на з & apos ; єднання з віддаленим сервером < / translation > <nl> + < location filename = " . . / torrentcreator / createtorrent . ui " line = " 170 " / > <nl> + < source > 64 KiB < / source > <nl> + < translation > 64 КіБ < / translation > <nl> < / message > <nl> < message > <nl> - < source > SSL / TLS handshake failed < / source > <nl> - < translation type = " obsolete " > Помилка SSL / TLS < / translation > <nl> + < location filename = " . . / torrentcreator / createtorrent . ui " line = " 175 " / > <nl> + < source > 128 KiB < / source > <nl> + < translation > 128 КіБ < / translation > <nl> < / message > <nl> < message > <nl> - < source > The remote server refused the connection < / source > <nl> - < translation type = " obsolete " > Віддалений сервер відмовив у з & apos ; єднанні < / translation > <nl> + < location filename = " . . / torrentcreator / createtorrent . ui " line = " 180 " / > <nl> + < source > 256 KiB < / source > <nl> + < translation > 256 КіБ < / translation > <nl> < / message > <nl> < message > <nl> - < source > The connection to the proxy server was refused < / source > <nl> - < translation type = " obsolete " > Відмовлено у з & apos ; єднанні з проксі - сервером < / translation > <nl> + < location filename = " . . / torrentcreator / createtorrent . ui " line = " 185 " / > <nl> + < source > 512 KiB < / source > <nl> + < translation > 512 КіБ < / translation > <nl> < / message > <nl> < message > <nl> - < source > The proxy server closed the connection prematurely < / source > <nl> - < translation type = " obsolete " > Проксі - сервер закрив з & apos ; єднання < / translation > <nl> + < location filename = " . . / torrentcreator / createtorrent . ui " line = " 190 " / > <nl> + < source > 1 MiB < / source > <nl> + < translation > 1 МіБ < / translation > <nl> < / message > <nl> < message > <nl> - < source > The proxy host name was not found < / source > <nl> - < translation type = " obsolete " > Не знайдено проксі - сервер < / translation > <nl> + < location filename = " . . / torrentcreator / createtorrent . ui " line = " 195 " / > <nl> + < source > 2 MiB < / source > <nl> + < translation > 2 МіБ < / translation > <nl> < / message > <nl> < message > <nl> - < source > The connection to the proxy timed out or the proxy did not reply in time to the request sent < / source > <nl> - < translation type = " obsolete " > Вичерпано час на з & apos ; єднання з проксі < / translation > <nl> + < location filename = " . . / torrentcreator / createtorrent . ui " line = " 200 " / > <nl> + < source > 4 MiB < / source > <nl> + < translation > 4 МіБ < / translation > <nl> < / message > <nl> < message > <nl> - < source > The proxy requires authentication in order to honour the request but did not accept any credentials offered < / source > <nl> - < translation type = " obsolete " > Проксі потребує автентифікації , але не прийняв автентифікаційних даних < / translation > <nl> + < location filename = " . . / torrentcreator / createtorrent . ui " line = " 208 " / > <nl> + < source > Auto < / source > <nl> + < translation > Автоматично < / translation > <nl> < / message > <nl> < message > <nl> - < source > The access to the remote content was denied ( 401 ) < / source > <nl> - < translation type = " obsolete " > Відмовлено у доступі до віддалених даних ( 401 ) < / translation > <nl> + < location filename = " . . / torrentcreator / createtorrent . ui " line = " 233 " / > <nl> + < source > Private ( won & apos ; t be distributed on DHT network if enabled ) < / source > <nl> + < translation > Приватно ( не буде передаватись через мережу DHT , якщо увімкнено ) < / translation > <nl> < / message > <nl> < message > <nl> - < source > The operation requested on the remote content is not permitted < / source > <nl> - < translation type = " obsolete " > Операція щодо віддаленого контенту не дозволена < / translation > <nl> + < location filename = " . . / torrentcreator / createtorrent . ui " line = " 240 " / > <nl> + < source > Start seeding after creation < / source > <nl> + < translation > Почати роздачу одразу після створення < / translation > <nl> < / message > <nl> < message > <nl> - < source > The remote content was not found at the server ( 404 ) < / source > <nl> - < translation type = " obsolete " > Віддалені дані не знайдено на сервері ( 404 ) < / translation > <nl> + < location filename = " . . / torrentcreator / createtorrent . ui " line = " 276 " / > <nl> + < source > Create and save . . . < / source > <nl> + < translation > Створити і зберегти . . . < / translation > <nl> < / message > <nl> < message > <nl> - < source > The remote server requires authentication to serve the content but the credentials provided were not accepted < / source > <nl> - < translation type = " obsolete " > Віддалений сервер потребує автентифікації , але не прийняв автентифікаційних даних < / translation > <nl> + < location filename = " . . / torrentcreator / createtorrent . ui " line = " 247 " / > <nl> + < source > Progress : < / source > <nl> + < translation > Прогрес : < / translation > <nl> < / message > <nl> + < / context > <nl> + < context > <nl> + < name > downloadFromURL < / name > <nl> < message > <nl> - < source > The Network Access API cannot honor the request because the protocol is not known < / source > <nl> - < translation type = " obsolete " > Невідомий протокол < / translation > <nl> + < location filename = " . . / downloadfromurldlg . ui " line = " 28 " / > <nl> + < source > Add torrent links < / source > <nl> + < translation > Додати посилання на торрент < / translation > <nl> < / message > <nl> < message > <nl> - < source > The requested operation is invalid for this protocol < / source > <nl> - < translation type = " obsolete " > Операція неправильна для цього протоколу < / translation > <nl> + < location filename = " . . / downloadfromurldlg . ui " line = " 55 " / > <nl> + < source > Both HTTP and Magnet links are supported < / source > <nl> + < translation > І HTTP , і магнітні посилання підтримуються < / translation > <nl> < / message > <nl> < message > <nl> - < source > An unknown network - related error was detected < / source > <nl> - < translation type = " obsolete " > Невідома помилка , пов & apos ; язана з мережею < / translation > <nl> + < location filename = " . . / downloadfromurldlg . ui " line = " 77 " / > <nl> + < source > Download < / source > <nl> + < translation > Завантажити < / translation > <nl> < / message > <nl> < message > <nl> - < source > An unknown proxy - related error was detected < / source > <nl> - < translation type = " obsolete " > Невідома помилка , пов & apos ; язана з проксі < / translation > <nl> + < location filename = " . . / downloadfromurldlg . ui " line = " 84 " / > <nl> + < source > Cancel < / source > <nl> + < translation > Відміна < / translation > <nl> < / message > <nl> < message > <nl> - < source > An unknown error related to the remote content was detected < / source > <nl> - < translation type = " obsolete " > Невідома помилка , пов & apos ; язана з віддаленим контентом < / translation > <nl> + < location filename = " . . / downloadfromurldlg . ui " line = " 14 " / > <nl> + < source > Download from urls < / source > <nl> + < translation > Завантажити з URL & apos ; ів < / translation > <nl> < / message > <nl> < message > <nl> - < source > A breakdown in protocol was detected < / source > <nl> - < translation type = " obsolete " > Поломка в протоколі < / translation > <nl> + < location filename = " . . / downloadfromurldlg . h " line = " 78 " / > <nl> + < source > No URL entered < / source > <nl> + < translation > Не введено URL < / translation > <nl> < / message > <nl> < message > <nl> - < source > Unknown error < / source > <nl> - < translation type = " obsolete " > Невідома помилка < / translation > <nl> + < location filename = " . . / downloadfromurldlg . h " line = " 78 " / > <nl> + < source > Please type at least one URL . < / source > <nl> + < translation > Будь ласка , введіть хоча б один URL . < / translation > <nl> < / message > <nl> < / context > <nl> < context > <nl> < name > engineSelect < / name > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselect . ui " line = " 17 " / > <nl> < source > Search plugins < / source > <nl> < translation > Пошукові плагіни < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselect . ui " line = " 30 " / > <nl> < source > Installed search engines : < / source > <nl> < translation > Встановлені пошуковики : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselect . ui " line = " 50 " / > <nl> < source > Name < / source > <nl> < translation > Назва < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselect . ui " line = " 55 " / > <nl> < source > Url < / source > <nl> < translation > Url < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselect . ui " line = " 60 " / > <nl> + < location filename = " . . / searchengine / engineselect . ui " line = " 119 " / > <nl> < source > Enabled < / source > <nl> < translation > Увімкнено < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselect . ui " line = " 78 " / > <nl> + < source > You can get new search engine plugins here : & lt ; a href = & quot ; http : / / plugins . qbittorrent . org & quot ; & gt ; http : / / plugins . qbittorrent . org & lt ; / a & gt ; < / source > <nl> + < translation > Ви можете отримати нові пошукові плагіни тут : & lt ; a href = & quot ; http : / / plugins . qbittorrent . org & quot ; & gt ; http : / / plugins . qbittorrent . org & lt ; / a & gt ; < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / searchengine / engineselect . ui " line = " 93 " / > <nl> < source > Install a new one < / source > <nl> < translation > Встановити новий < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselect . ui " line = " 100 " / > <nl> < source > Check for updates < / source > <nl> < translation > Перевірити оновлення < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselect . ui " line = " 107 " / > <nl> < source > Close < / source > <nl> < translation > Закрити < / translation > <nl> < / message > <nl> < message > <nl> - < source > Enable < / source > <nl> - < translation type = " obsolete " > Дозволити < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Disable < / source > <nl> - < translation type = " obsolete " > Заборонити < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / searchengine / engineselect . ui " line = " 124 " / > <nl> < source > Uninstall < / source > <nl> < translation > Видалити < / translation > <nl> < / message > <nl> - < message > <nl> - < source > You can get new search engine plugins here : & lt ; a href = & quot ; http : / / plugins . qbittorrent . org & quot ; & gt ; http : / / plugins . qbittorrent . org & lt ; / a & gt ; < / source > <nl> - < translation > Ви можете отримати нові пошукові плагіни тут : & lt ; a href = & quot ; http : / / plugins . qbittorrent . org & quot ; & gt ; http : / / plugins . qbittorrent . org & lt ; / a & gt ; < / translation > <nl> - < / message > <nl> < / context > <nl> < context > <nl> < name > engineSelectDlg < / name > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 175 " / > <nl> < source > Uninstall warning < / source > <nl> < translation > Попередження про видалення < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 175 " / > <nl> < source > Some plugins could not be uninstalled because they are included in qBittorrent . <nl> Only the ones you added yourself can be uninstalled . <nl> However , those plugins were disabled . < / source > <nl> However , those plugins were disabled . < / source > <nl> Тим не менше , ці плагіни вимкнено . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 177 " / > <nl> < source > Uninstall success < / source > <nl> < translation > Видалення успішне < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 341 " / > <nl> < source > Select search plugins < / source > <nl> < translation > Вибрати пошукові плагіни < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 342 " / > <nl> < source > qBittorrent search plugins < / source > <nl> < translation > Пошукові плагіни qBittorrent < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 238 " / > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 263 " / > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 268 " / > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 277 " / > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 280 " / > <nl> < source > Search plugin install < / source > <nl> < translation > Встановити пошуковий плагін < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 118 " / > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 189 " / > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 300 " / > <nl> + < source > Yes < / source > <nl> + < translation > Так < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 121 " / > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 155 " / > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 192 " / > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 303 " / > <nl> + < source > No < / source > <nl> + < translation > Ні < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 263 " / > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 268 " / > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 277 " / > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 280 " / > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 394 " / > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 427 " / > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 448 " / > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 455 " / > <nl> < source > qBittorrent < / source > <nl> < translation > qBittorrent < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 238 " / > <nl> < source > A more recent version of % 1 search engine plugin is already installed . < / source > <nl> < comment > % 1 is the name of the search engine < / comment > <nl> < translation > Новіша версія пошукового плагіну % 1 вже є встановлена . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 394 " / > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 427 " / > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 448 " / > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 455 " / > <nl> < source > Search plugin update < / source > <nl> < translation > Оновити пошуковий плагін < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 427 " / > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 448 " / > <nl> < source > Sorry , update server is temporarily unavailable . < / source > <nl> < translation > Пробачте , сервер оновлень тимчасово недоступний . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 394 " / > <nl> < source > All your plugins are already up to date . < / source > <nl> < translation > Всі ваші плагіни мають останню версію . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 263 " / > <nl> < source > % 1 search engine plugin could not be updated , keeping old version . < / source > <nl> < comment > % 1 is the name of the search engine < / comment > <nl> < translation > Пошуковий плагін % 1 не вдалося оновити , залишено стару версію . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 268 " / > <nl> < source > % 1 search engine plugin could not be installed . < / source > <nl> < comment > % 1 is the name of the search engine < / comment > <nl> < translation > Не вдалося встановити пошуковий плагін % 1 . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 177 " / > <nl> < source > All selected plugins were uninstalled successfully < / source > <nl> < translation > Всі вибрані пошукові плагіни було успішно видалено < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 277 " / > <nl> < source > % 1 search engine plugin was successfully updated . < / source > <nl> < comment > % 1 is the name of the search engine < / comment > <nl> < translation > Пошуковий плагін % 1 було успішно оновлено . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 280 " / > <nl> < source > % 1 search engine plugin was successfully installed . < / source > <nl> < comment > % 1 is the name of the search engine < / comment > <nl> < translation > Пошуковий плагін % 1 було успішно встановлено . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 455 " / > <nl> < source > Sorry , % 1 search plugin install failed . < / source > <nl> < comment > % 1 is the name of the search engine < / comment > <nl> < translation > Вибачте , встановлення пошукового плагіну % 1 невдале . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 330 " / > <nl> < source > New search engine plugin URL < / source > <nl> < translation > Новий URL пошукового плагіну < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / engineselectdlg . cpp " line = " 331 " / > <nl> < source > URL : < / source > <nl> < translation > URL : < / translation > <nl> < / message > <nl> - < message > <nl> - < source > Yes < / source > <nl> - < translation > Так < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > No < / source > <nl> - < translation > Ні < / translation > <nl> - < / message > <nl> < / context > <nl> < context > <nl> < name > errorDialog < / name > <nl> < message > <nl> + < location filename = " . . / stacktrace_win_dlg . ui " line = " 14 " / > <nl> < source > Crash info < / source > <nl> - < translation type = " unfinished " > < / translation > <nl> + < translation type = " unfinished " / > <nl> < / message > <nl> < / context > <nl> < context > <nl> < name > fsutils < / name > <nl> < message > <nl> + < location filename = " . . / fs_utils . cpp " line = " 430 " / > <nl> + < location filename = " . . / fs_utils . cpp " line = " 461 " / > <nl> + < location filename = " . . / fs_utils . cpp " line = " 473 " / > <nl> < source > Downloads < / source > <nl> < translation > Завантаження < / translation > <nl> < / message > <nl> However , those plugins were disabled . < / source > <nl> < context > <nl> < name > misc < / name > <nl> < message > <nl> + < location filename = " . . / misc . cpp " line = " 73 " / > <nl> < source > B < / source > <nl> < comment > bytes < / comment > <nl> < translation > Б < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / misc . cpp " line = " 74 " / > <nl> < source > KiB < / source > <nl> < comment > kibibytes ( 1024 bytes ) < / comment > <nl> < translation > КіБ < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / misc . cpp " line = " 75 " / > <nl> < source > MiB < / source > <nl> < comment > mebibytes ( 1024 kibibytes ) < / comment > <nl> < translation > МіБ < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / misc . cpp " line = " 76 " / > <nl> < source > GiB < / source > <nl> < comment > gibibytes ( 1024 mibibytes ) < / comment > <nl> < translation > ГіБ < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / misc . cpp " line = " 77 " / > <nl> < source > TiB < / source > <nl> < comment > tebibytes ( 1024 gibibytes ) < / comment > <nl> < translation > ТіБ < / translation > <nl> < / message > <nl> < message > <nl> - < source > Unknown < / source > <nl> - < translation type = " obsolete " > Невідомо < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Unknown < / source > <nl> - < comment > Unknown ( size ) < / comment > <nl> - < translation > Невідомо < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > & lt ; 1m < / source > <nl> - < comment > & lt ; 1 minute < / comment > <nl> - < translation > & lt ; 1хв < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > % 1m < / source > <nl> - < comment > e . g : 10minutes < / comment > <nl> - < translation > % 1хв < / translation > <nl> + < location filename = " . . / misc . cpp " line = " 246 " / > <nl> + < source > / s < / source > <nl> + < comment > per second < / comment > <nl> + < translation > / с < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / misc . cpp " line = " 391 " / > <nl> < source > % 1h % 2m < / source > <nl> < comment > e . g : 3hours 5minutes < / comment > <nl> < translation > % 1г % 2хв < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / misc . cpp " line = " 396 " / > <nl> < source > % 1d % 2h < / source > <nl> < comment > e . g : 2days 10hours < / comment > <nl> < translation > % 1д % 2г < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / misc . cpp " line = " 236 " / > <nl> + < source > Unknown < / source > <nl> + < comment > Unknown ( size ) < / comment > <nl> + < translation > Невідомо < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / misc . cpp " line = " 178 " / > <nl> < source > qBittorrent will shutdown the computer now because all downloads are complete . < / source > <nl> < translation > Зараз qBittorrent вимкне комп & apos ; ютер , бо всі завантаження завершено . < / translation > <nl> < / message > <nl> < message > <nl> - < source > Downloads < / source > <nl> - < translation type = " obsolete " > Завантаження < / translation > <nl> + < location filename = " . . / misc . cpp " line = " 382 " / > <nl> + < source > & lt ; 1m < / source > <nl> + < comment > & lt ; 1 minute < / comment > <nl> + < translation > & lt ; 1хв < / translation > <nl> < / message > <nl> < message > <nl> - < source > / s < / source > <nl> - < comment > per second < / comment > <nl> - < translation > / с < / translation > <nl> + < location filename = " . . / misc . cpp " line = " 386 " / > <nl> + < source > % 1m < / source > <nl> + < comment > e . g : 10minutes < / comment > <nl> + < translation > % 1хв < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / btjson . cpp " line = " 241 " / > <nl> < source > Working < / source > <nl> < translation > Працює < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / btjson . cpp " line = " 244 " / > <nl> < source > Updating . . . < / source > <nl> < translation > Оновлюю . . . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / btjson . cpp " line = " 246 " / > <nl> < source > Not working < / source > <nl> < translation > Не працює < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / btjson . cpp " line = " 246 " / > <nl> < source > Not contacted yet < / source > <nl> < translation > Ще не зв ’ язувався < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / btjson . cpp " line = " 298 " / > <nl> + < location filename = " . . / webui / btjson . cpp " line = " 299 " / > <nl> < source > this session < / source > <nl> < translation > цієї сесії < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / btjson . cpp " line = " 310 " / > <nl> < source > Seeded for % 1 < / source > <nl> < comment > e . g . Seeded for 3m10s < / comment > <nl> < translation > Роздавав % 1 < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / btjson . cpp " line = " 312 " / > <nl> < source > % 1 max < / source > <nl> < comment > e . g . 10 max < / comment > <nl> < translation > Максимум % 1 < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / btjson . cpp " line = " 380 " / > <nl> < source > D : % 1 / s - T : % 2 < / source > <nl> < comment > Download speed : x KiB / s - Transferred : x MiB < / comment > <nl> < translation > Зав . : % 1 / с ( % 2 ) < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / webui / btjson . cpp " line = " 381 " / > <nl> < source > U : % 1 / s - T : % 2 < / source > <nl> < comment > Upload speed : x KiB / s - Transferred : x MiB < / comment > <nl> < translation > Вив . : % 1 / с ( % 2 ) < / translation > <nl> However , those plugins were disabled . < / source > <nl> < context > <nl> < name > options_imp < / name > <nl> < message > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1144 " / > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1146 " / > <nl> + < source > Choose export directory < / source > <nl> + < translation > Виберіть папку для експорту < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1186 " / > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1188 " / > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1203 " / > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1205 " / > <nl> < source > Choose a save directory < / source > <nl> < translation > Виберіть папку для збереження < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1168 " / > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1170 " / > <nl> < source > Choose an ip filter file < / source > <nl> < translation > Виберіть файл IP - фільтру < / translation > <nl> < / message > <nl> < message > <nl> - < source > Filters < / source > <nl> - < translation > Фільтри < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Choose export directory < / source > <nl> - < translation > Виберіть папку для експорту < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1101 " / > <nl> < source > Add directory to scan < / source > <nl> < translation > Додати папку спостерігання < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1107 " / > <nl> < source > Folder is already being watched . < / source > <nl> < translation > За папкою вже ведеться стеження . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1110 " / > <nl> < source > Folder does not exist . < / source > <nl> < translation > Папка не існує . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1113 " / > <nl> < source > Folder is not readable . < / source > <nl> < translation > Папку неможливо прочитати . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1121 " / > <nl> < source > Failure < / source > <nl> < translation > Провал < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1121 " / > <nl> < source > Failed to add Scan Folder & apos ; % 1 & apos ; : % 2 < / source > <nl> < translation > Не вдалося просканувати папку & apos ; % 1 & apos ; : % 2 < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1168 " / > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1170 " / > <nl> + < source > Filters < / source > <nl> + < translation > Фільтри < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1248 " / > <nl> + < source > SSL Certificate ( * . crt * . pem ) < / source > <nl> + < translation > Сертифікат SSL ( * . crt * . pem ) < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1259 " / > <nl> + < source > SSL Key ( * . key * . pem ) < / source > <nl> + < translation > Ключ SSL ( * . key * . pem ) < / translation > <nl> + < / message > <nl> + < message > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1290 " / > <nl> < source > Parsing error < / source > <nl> < translation > Помилка розбору < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1290 " / > <nl> < source > Failed to parse the provided IP filter < / source > <nl> < translation > Не вдалося розібрати даний фільтр IP < / translation > <nl> < / message > <nl> < message > <nl> - < source > Succesfully refreshed < / source > <nl> - < translation type = " obsolete " > Успішно оновлено < / translation > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1292 " / > <nl> + < source > Successfully refreshed < / source > <nl> + < translation > Успішно оновлено < / translation > <nl> < / message > <nl> < message > <nl> - < source > Successfuly parsed the provided IP filter : % 1 rules were applied . < / source > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1292 " / > <nl> + < source > Successfully parsed the provided IP filter : % 1 rules were applied . < / source > <nl> < comment > % 1 is a number < / comment > <nl> - < translation type = " obsolete " > Успішно розібрано даний фільтр IP : було застосовано % 1 правил . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Successfully refreshed < / source > <nl> - < translation > Успішно оновлено < / translation > <nl> + < translation > Успішно оброблено наданий фільтр IP : застосовано % 1 правил . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1363 " / > <nl> < source > Invalid key < / source > <nl> < translation > Неправильний ключ < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1363 " / > <nl> < source > This is not a valid SSL key . < / source > <nl> < translation > Це не є правильний ключ SSL . < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1378 " / > <nl> < source > Invalid certificate < / source > <nl> < translation > Неправильний сертифікат < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preferences / options_imp . cpp " line = " 1378 " / > <nl> < source > This is not a valid SSL certificate . < / source > <nl> < translation > Це не є правильний сертифікат SSL . < / translation > <nl> < / message > <nl> - < message > <nl> - < source > SSL Certificate ( * . crt * . pem ) < / source > <nl> - < translation > Сертифікат SSL ( * . crt * . pem ) < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > SSL Key ( * . key * . pem ) < / source > <nl> - < translation > Ключ SSL ( * . key * . pem ) < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Successfully parsed the provided IP filter : % 1 rules were applied . < / source > <nl> - < comment > % 1 is a number < / comment > <nl> - < translation > Успішно оброблено наданий фільтр IP : застосовано % 1 правил . < / translation > <nl> - < / message > <nl> < / context > <nl> < context > <nl> < name > pluginSourceDlg < / name > <nl> < message > <nl> + < location filename = " . . / searchengine / pluginsource . ui " line = " 13 " / > <nl> < source > Plugin source < / source > <nl> < translation > Джерело плагіну < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / pluginsource . ui " line = " 26 " / > <nl> < source > Search plugin source : < / source > <nl> < translation > Джерело пошукового плагіну : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / pluginsource . ui " line = " 35 " / > <nl> < source > Local file < / source > <nl> < translation > Локальний файл < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / pluginsource . ui " line = " 42 " / > <nl> < source > Web link < / source > <nl> < translation > Веб - посилання < / translation > <nl> < / message > <nl> However , those plugins were disabled . < / source > <nl> < context > <nl> < name > preview < / name > <nl> < message > <nl> + < location filename = " . . / preview . ui " line = " 14 " / > <nl> < source > Preview selection < / source > <nl> < translation > Вибір перегляду < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preview . ui " line = " 38 " / > <nl> < source > File preview < / source > <nl> < translation > Перегляд файлу < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preview . ui " line = " 54 " / > <nl> < source > The following files support previewing , & lt ; br & gt ; please select one of them : < / source > <nl> < translation > Наступні файли підтримують перегляд , & lt ; br & gt ; будь - ласка , виберіть один з них : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preview . ui " line = " 82 " / > <nl> < source > Preview < / source > <nl> < translation > Перегляд < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / preview . ui " line = " 89 " / > <nl> < source > Cancel < / source > <nl> < translation > Відміна < / translation > <nl> < / message > <nl> < / context > <nl> - < context > <nl> - < name > previewSelect < / name > <nl> - < message > <nl> - < source > Preview impossible < / source > <nl> - < translation type = " obsolete " > Перегляд неможливий < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Sorry , we can & apos ; t preview this file < / source > <nl> - < translation type = " obsolete " > Пробачте , неможливо переглянути цей файл < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Name < / source > <nl> - < translation type = " obsolete " > Ім & apos ; я < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Size < / source > <nl> - < translation type = " obsolete " > Розмір < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Progress < / source > <nl> - < translation type = " obsolete " > Прогрес < / translation > <nl> - < / message > <nl> - < / context > <nl> < context > <nl> < name > search_engine < / name > <nl> < message > <nl> + < location filename = " . . / searchengine / search . ui " line = " 14 " / > <nl> + < location filename = " . . / searchengine / search . ui " line = " 31 " / > <nl> < source > Search < / source > <nl> < translation > Пошук < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / search . ui " line = " 54 " / > <nl> < source > Status : < / source > <nl> < translation > Статус : < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / search . ui " line = " 78 " / > <nl> < source > Stopped < / source > <nl> < translation > Зупинено < / translation > <nl> < / message > <nl> < message > <nl> + < location filename = " . . / searchengine / search . ui " line = " 110 " / > <nl> < source > Download < / source > <nl> < translation > Завантажити < / translation > <nl> < / message > <nl> < message > <nl> - < source > Search engines . . . < / source > <nl> - < translation > Пошуковики . . . < / translation > <nl> - < / message > <nl> - < message > <nl> + < location filename = " . . / searchengine / search . ui " line = " 120 " / > <nl> < source > Go to description page < / source > <nl> < translation > Сторінка опису < / translation > <nl> < / message > <nl> - < / context > <nl> - < context > <nl> - < name > torrentAdditionDialog < / name > <nl> - < message > <nl> - < source > Unable to decode torrent file : < / source > <nl> - < translation type = " obsolete " > Не вдалося розкодувати torrent - файл : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Choose save path < / source > <nl> - < translation type = " obsolete " > Виберіть шлях збереження < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Empty save path < / source > <nl> - < translation type = " obsolete " > Пустий шлях збереження < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Please enter a save path < / source > <nl> - < translation type = " obsolete " > Будь - ласка , введіть шлях збереження < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Save path creation error < / source > <nl> - < translation type = " obsolete " > Помилка при створенні шляху збереження < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Could not create the save path < / source > <nl> - < translation type = " obsolete " > Не вдалося створити шлях збереження < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Invalid file selection < / source > <nl> - < translation type = " obsolete " > Неправильно вибрано файл < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > You must select at least one file in the torrent < / source > <nl> - < translation type = " obsolete " > Ви повинні вибрати хоча б один файл в торренті < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Priority < / source > <nl> - < translation type = " obsolete " > Пріоритет < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > ( % 1 left after torrent download ) < / source > <nl> - < comment > e . g . ( 100MiB left after torrent download ) < / comment > <nl> - < translation type = " obsolete " > ( % 1 залишиться після завантаження ) < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > ( % 1 more are required to download ) < / source > <nl> - < comment > e . g . ( 100MiB more are required to download ) < / comment > <nl> - < translation type = " obsolete " > ( потрібно ще % 1 вільного місця ) < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Seeding mode error < / source > <nl> - < translation type = " obsolete " > Помилка режиму сідування < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > You chose to skip file checking . However , local files do not seem to exist in the current destionation folder . Please disable this feature or update the save path . < / source > <nl> - < translation type = " obsolete " > Ви вирішили пропустити перевірку файлів . Але , здається , локальні файли не існують в заданій папці . Будь ласка , вимкніть цю можливіть або змініть шлях збереження . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Rename . . . < / source > <nl> - < translation type = " obsolete " > Перейменувати . . . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > New name : < / source > <nl> - < translation type = " obsolete " > Нове ім & apos ; я : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > The file could not be renamed < / source > <nl> - < translation type = " obsolete " > Файл не вдалося перейменувати < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > This name is already in use in this folder . Please use a different name . < / source > <nl> - < translation type = " obsolete " > Це ім & apos ; я вже використовується в цій папці . Виберіть інше ім & apos ; я . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > The folder could not be renamed < / source > <nl> - < translation type = " obsolete " > Папку не вдалося перейменувати < / translation > <nl> - < / message > <nl> < message > <nl> - < source > Rename the file < / source > <nl> - < translation type = " obsolete " > Перейменувати файл < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Unable to decode magnet link : < / source > <nl> - < translation type = " obsolete " > Не вдалося розкодувати магнітне посилання : < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Magnet Link < / source > <nl> - < translation type = " obsolete " > Магнітне посилання < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Invalid label name < / source > <nl> - < translation type = " obsolete " > Неправильна назва мітки < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > Please don & apos ; t use any special characters in the label name . < / source > <nl> - < translation type = " obsolete " > Будь ласка , не використовуйте спеціальних символів в назві мітки . < / translation > <nl> - < / message > <nl> - < message > <nl> - < source > This file name contains forbidden characters , please choose a different one . < / source > <nl> - < translation type = " obsolete " > Це ім & apos ; я файла містить заборонені символи . Будь ласка , виберіть інше . < / translation > <nl> + < location filename = " . . / searchengine / search . ui " line = " 140 " / > <nl> + < source > Search engines . . . < / source > <nl> + < translation > Пошуковики . . . < / translation > <nl> < / message > <nl> < / context > <nl> - < / TS > <nl> + < / TS > <nl> \ No newline at end of file <nl>
Updated Ukrainian translation from Transifex .
qbittorrent/qBittorrent
75ff773068e1607e42b68aa175de6fc0969925da
2013-08-03T13:04:28Z
mmm a / modules / control / controller / mpc_controller . cc <nl> ppp b / modules / control / controller / mpc_controller . cc <nl> Status MPCController : : Init ( const ControlConf * control_conf ) { <nl> matrix_a_ ( 2 , 3 ) = 1 . 0 ; <nl> matrix_a_ ( 3 , 2 ) = ( lf_ * cf_ - lr_ * cr_ ) / iz_ ; <nl> matrix_a_ ( 4 , 4 ) = 1 . 0 ; <nl> - matrix_a_ ( 5 , 5 ) = 1 . 0 ; / / TODO : change to add delays <nl> + matrix_a_ ( 5 , 5 ) = 0 . 0 ; / / TODO : change to add delays <nl> <nl> matrix_a_coeff_ = Matrix : : Zero ( matrix_size , matrix_size ) ; <nl> matrix_a_coeff_ ( 1 , 1 ) = - ( cf_ + cr_ ) / mass_ ; <nl> Status MPCController : : Init ( const ControlConf * control_conf ) { <nl> matrix_bd_ = Matrix : : Zero ( basic_state_size_ , controls_ ) ; <nl> matrix_b_ ( 1 , 0 ) = cf_ / mass_ ; <nl> matrix_b_ ( 3 , 0 ) = lf_ * cf_ / iz_ ; <nl> - matrix_b_ ( 4 , 1 ) = 1 . 0 ; <nl> - matrix_b_ ( 5 , 1 ) = 1 . 0 ; <nl> + matrix_b_ ( 4 , 1 ) = 0 . 0 ; <nl> + matrix_b_ ( 5 , 1 ) = - 1 . 0 ; <nl> matrix_bd_ = matrix_b_ * ts_ ; <nl> <nl> matrix_state_ = Matrix : : Zero ( matrix_size , 1 ) ; <nl> Status MPCController : : ComputeControlCommand ( <nl> <nl> if ( : : apollo : : common : : math : : SolveLinearMPC ( <nl> matrix_ad_ , matrix_bd_ , C , matrix_q_ , matrix_r_ , lower_bound , <nl> - upper_bound , initial_state , reference , lqr_eps_ , lqr_max_iteration_ , <nl> + upper_bound , matrix_state_ , reference , lqr_eps_ , lqr_max_iteration_ , <nl> & control ) ! = true ) { <nl> AERROR < < " MPC failed " ; <nl> } <nl>
Control : Fix MPC bug
ApolloAuto/apollo
be47082eabdacab19e135e1a944d9dff4cd95995
2017-11-14T01:39:28Z
mmm a / modules / dnn / src / dnn . cpp <nl> ppp b / modules / dnn / src / dnn . cpp <nl> void Net : : setHalideScheduler ( const String & scheduler ) <nl> int64 Net : : getPerfProfile ( std : : vector < double > & timings ) <nl> { <nl> timings = std : : vector < double > ( impl - > layersTimings . begin ( ) + 1 , impl - > layersTimings . end ( ) ) ; <nl> - int64 total = std : : accumulate ( timings . begin ( ) , timings . end ( ) , 0 ) ; <nl> + int64 total = ( int64 ) std : : accumulate ( timings . begin ( ) , timings . end ( ) , 0 . 0 ) ; <nl> return total ; <nl> } <nl> <nl>
Fix integer overflow when accumulating timing values .
opencv/opencv
eebf0dd7c99a962a33f653c7b38c27025bc3ac86
2018-11-07T12:04:48Z
mmm a / . gitignore <nl> ppp b / . gitignore <nl> lib / cpluff / stamp - h1 <nl> <nl> # / xbmc / platform / darwin / osx / <nl> / xbmc / platform / darwin / osx / Info . plist <nl> + / xbmc / platform / darwin / osx / Makefile <nl> <nl> # / xbmc / platform / darwin / ios / <nl> / xbmc / platform / darwin / osx / ios / IOS - Info . plist <nl> lib / cpluff / stamp - h1 <nl> / xbmc / cores / dvdplayer / DVDDemuxers / Makefile <nl> / xbmc / cores / dvdplayer / DVDSubtitles / Makefile <nl> / xbmc / cores / dvdplayer / VideoRenderers / Makefile <nl> - / xbmc / cores / VideoRenderers / Makefile <nl> \ No newline at end of file <nl> + / xbmc / cores / VideoRenderers / Makefile <nl>
[ osx ] Ignore Makefile after platform shuffle
xbmc/xbmc
fa0b2513a11b1668734e9c46bc3b11e6b730e565
2015-12-23T00:26:05Z
mmm a / Makefile <nl> ppp b / Makefile <nl> buildtests : buildtests_c buildtests_cxx buildtests_zookeeper <nl> <nl> buildtests_c : privatelibs_c $ ( BINDIR ) / $ ( CONFIG ) / alarm_heap_test $ ( BINDIR ) / $ ( CONFIG ) / alarm_list_test $ ( BINDIR ) / $ ( CONFIG ) / alarm_test $ ( BINDIR ) / $ ( CONFIG ) / alpn_test $ ( BINDIR ) / $ ( CONFIG ) / bin_encoder_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_status_conversion_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_stream_encoder_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_stream_map_test $ ( BINDIR ) / $ ( CONFIG ) / dualstack_socket_test $ ( BINDIR ) / $ ( CONFIG ) / fd_conservation_posix_test $ ( BINDIR ) / $ ( CONFIG ) / fd_posix_test $ ( BINDIR ) / $ ( CONFIG ) / fling_client $ ( BINDIR ) / $ ( CONFIG ) / fling_server $ ( BINDIR ) / $ ( CONFIG ) / fling_stream_test $ ( BINDIR ) / $ ( CONFIG ) / fling_test $ ( BINDIR ) / $ ( CONFIG ) / gpr_cancellable_test $ ( BINDIR ) / $ ( CONFIG ) / gpr_cmdline_test $ ( BINDIR ) / $ ( CONFIG ) / gpr_env_test $ ( BINDIR ) / $ ( CONFIG ) / gpr_file_test $ ( BINDIR ) / $ ( CONFIG ) / gpr_histogram_test $ ( BINDIR ) / $ ( CONFIG ) / gpr_host_port_test $ ( BINDIR ) / $ ( CONFIG ) / gpr_log_test $ ( BINDIR ) / $ ( CONFIG ) / gpr_slice_buffer_test $ ( BINDIR ) / $ ( CONFIG ) / gpr_slice_test $ ( BINDIR ) / $ ( CONFIG ) / gpr_stack_lockfree_test $ ( BINDIR ) / $ ( CONFIG ) / gpr_string_test $ ( BINDIR ) / $ ( CONFIG ) / gpr_sync_test $ ( BINDIR ) / $ ( CONFIG ) / gpr_thd_test $ ( BINDIR ) / $ ( CONFIG ) / gpr_time_test $ ( BINDIR ) / $ ( CONFIG ) / gpr_tls_test $ ( BINDIR ) / $ ( CONFIG ) / gpr_useful_test $ ( BINDIR ) / $ ( CONFIG ) / grpc_auth_context_test $ ( BINDIR ) / $ ( CONFIG ) / grpc_base64_test $ ( BINDIR ) / $ ( CONFIG ) / grpc_byte_buffer_reader_test $ ( BINDIR ) / $ ( CONFIG ) / grpc_channel_stack_test $ ( BINDIR ) / $ ( CONFIG ) / grpc_completion_queue_test $ ( BINDIR ) / $ ( CONFIG ) / grpc_credentials_test $ ( BINDIR ) / $ ( CONFIG ) / grpc_json_token_test $ ( BINDIR ) / $ ( CONFIG ) / grpc_jwt_verifier_test $ ( BINDIR ) / $ ( CONFIG ) / grpc_security_connector_test $ ( BINDIR ) / $ ( CONFIG ) / grpc_stream_op_test $ ( BINDIR ) / $ ( CONFIG ) / hpack_parser_test $ ( BINDIR ) / $ ( CONFIG ) / hpack_table_test $ ( BINDIR ) / $ ( CONFIG ) / httpcli_format_request_test $ ( BINDIR ) / $ ( CONFIG ) / httpcli_parser_test $ ( BINDIR ) / $ ( CONFIG ) / httpcli_test $ ( BINDIR ) / $ ( CONFIG ) / json_rewrite $ ( BINDIR ) / $ ( CONFIG ) / json_rewrite_test $ ( BINDIR ) / $ ( CONFIG ) / json_test $ ( BINDIR ) / $ ( CONFIG ) / lame_client_test $ ( BINDIR ) / $ ( CONFIG ) / message_compress_test $ ( BINDIR ) / $ ( CONFIG ) / multi_init_test $ ( BINDIR ) / $ ( CONFIG ) / multiple_server_queues_test $ ( BINDIR ) / $ ( CONFIG ) / murmur_hash_test $ ( BINDIR ) / $ ( CONFIG ) / no_server_test $ ( BINDIR ) / $ ( CONFIG ) / poll_kick_posix_test $ ( BINDIR ) / $ ( CONFIG ) / resolve_address_test $ ( BINDIR ) / $ ( CONFIG ) / secure_endpoint_test $ ( BINDIR ) / $ ( CONFIG ) / sockaddr_utils_test $ ( BINDIR ) / $ ( CONFIG ) / tcp_client_posix_test $ ( BINDIR ) / $ ( CONFIG ) / tcp_posix_test $ ( BINDIR ) / $ ( CONFIG ) / tcp_server_posix_test $ ( BINDIR ) / $ ( CONFIG ) / time_averaged_stats_test $ ( BINDIR ) / $ ( CONFIG ) / timeout_encoding_test $ ( BINDIR ) / $ ( CONFIG ) / timers_test $ ( BINDIR ) / $ ( CONFIG ) / transport_metadata_test $ ( BINDIR ) / $ ( CONFIG ) / transport_security_test $ ( BINDIR ) / $ ( CONFIG ) / uri_parser_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_bad_hostname_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_cancel_after_accept_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_cancel_after_accept_and_writes_closed_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_cancel_after_invoke_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_cancel_before_invoke_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_cancel_in_a_vacuum_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_census_simple_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_channel_connectivity_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_default_host_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_disappearing_server_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_early_server_shutdown_finishes_tags_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_empty_batch_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_graceful_server_shutdown_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_invoke_large_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_max_concurrent_streams_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_max_message_length_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_no_op_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_ping_pong_streaming_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_registered_call_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_request_response_with_binary_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_request_response_with_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_request_response_with_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_request_response_with_payload_and_call_creds_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_request_with_compressed_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_request_with_flags_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_request_with_large_metadata_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_request_with_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_server_finishes_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_simple_delayed_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_simple_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fake_security_simple_request_with_high_initial_sequence_number_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_bad_hostname_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_cancel_after_accept_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_cancel_after_accept_and_writes_closed_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_cancel_after_invoke_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_cancel_before_invoke_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_cancel_in_a_vacuum_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_census_simple_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_channel_connectivity_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_default_host_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_disappearing_server_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_early_server_shutdown_finishes_tags_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_empty_batch_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_graceful_server_shutdown_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_invoke_large_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_max_concurrent_streams_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_max_message_length_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_no_op_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_ping_pong_streaming_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_registered_call_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_request_response_with_binary_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_request_response_with_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_request_response_with_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_request_response_with_payload_and_call_creds_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_request_with_compressed_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_request_with_flags_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_request_with_large_metadata_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_request_with_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_server_finishes_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_simple_delayed_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_simple_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_simple_request_with_high_initial_sequence_number_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_bad_hostname_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_cancel_after_accept_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_cancel_after_accept_and_writes_closed_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_cancel_after_invoke_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_cancel_before_invoke_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_cancel_in_a_vacuum_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_census_simple_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_channel_connectivity_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_default_host_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_disappearing_server_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_early_server_shutdown_finishes_inflight_calls_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_early_server_shutdown_finishes_tags_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_empty_batch_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_graceful_server_shutdown_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_invoke_large_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_max_concurrent_streams_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_max_message_length_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_no_op_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_ping_pong_streaming_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_registered_call_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_request_response_with_binary_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_request_response_with_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_request_response_with_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_request_response_with_payload_and_call_creds_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_request_response_with_trailing_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_request_with_compressed_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_request_with_flags_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_request_with_large_metadata_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_request_with_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_server_finishes_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_simple_delayed_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_simple_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_simple_request_with_high_initial_sequence_number_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_bad_hostname_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_cancel_after_accept_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_cancel_after_accept_and_writes_closed_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_cancel_after_invoke_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_cancel_before_invoke_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_cancel_in_a_vacuum_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_census_simple_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_channel_connectivity_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_disappearing_server_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_early_server_shutdown_finishes_inflight_calls_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_early_server_shutdown_finishes_tags_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_empty_batch_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_graceful_server_shutdown_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_invoke_large_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_max_concurrent_streams_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_max_message_length_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_no_op_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_ping_pong_streaming_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_registered_call_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_request_response_with_binary_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_request_response_with_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_request_response_with_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_request_response_with_payload_and_call_creds_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_request_response_with_trailing_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_request_with_compressed_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_request_with_flags_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_request_with_large_metadata_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_request_with_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_server_finishes_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_simple_delayed_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_simple_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_simple_request_with_high_initial_sequence_number_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_bad_hostname_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_cancel_after_accept_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_cancel_after_accept_and_writes_closed_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_cancel_after_invoke_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_cancel_before_invoke_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_cancel_in_a_vacuum_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_census_simple_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_channel_connectivity_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_disappearing_server_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_early_server_shutdown_finishes_inflight_calls_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_early_server_shutdown_finishes_tags_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_empty_batch_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_graceful_server_shutdown_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_invoke_large_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_max_concurrent_streams_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_max_message_length_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_no_op_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_ping_pong_streaming_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_registered_call_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_request_response_with_binary_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_request_response_with_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_request_response_with_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_request_response_with_payload_and_call_creds_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_request_response_with_trailing_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_request_with_compressed_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_request_with_flags_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_request_with_large_metadata_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_request_with_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_server_finishes_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_simple_delayed_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_simple_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_simple_request_with_high_initial_sequence_number_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_bad_hostname_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_cancel_after_accept_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_cancel_after_accept_and_writes_closed_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_cancel_after_invoke_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_cancel_before_invoke_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_cancel_in_a_vacuum_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_census_simple_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_channel_connectivity_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_default_host_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_disappearing_server_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_early_server_shutdown_finishes_inflight_calls_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_early_server_shutdown_finishes_tags_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_empty_batch_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_graceful_server_shutdown_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_invoke_large_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_max_concurrent_streams_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_max_message_length_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_no_op_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_ping_pong_streaming_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_registered_call_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_request_response_with_binary_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_request_response_with_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_request_response_with_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_request_response_with_payload_and_call_creds_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_request_response_with_trailing_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_request_with_compressed_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_request_with_flags_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_request_with_large_metadata_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_request_with_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_server_finishes_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_simple_delayed_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_simple_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_simple_request_with_high_initial_sequence_number_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_bad_hostname_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_cancel_after_accept_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_cancel_after_invoke_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_cancel_before_invoke_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_census_simple_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_channel_connectivity_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_default_host_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_disappearing_server_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_empty_batch_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_graceful_server_shutdown_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_invoke_large_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_max_concurrent_streams_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_max_message_length_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_no_op_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_ping_pong_streaming_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_registered_call_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_request_response_with_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_request_response_with_payload_and_call_creds_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_request_with_compressed_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_request_with_flags_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_request_with_large_metadata_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_request_with_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_server_finishes_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_simple_delayed_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_simple_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_simple_request_with_high_initial_sequence_number_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_bad_hostname_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_cancel_after_accept_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_cancel_after_accept_and_writes_closed_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_cancel_after_invoke_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_cancel_before_invoke_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_cancel_in_a_vacuum_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_census_simple_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_channel_connectivity_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_default_host_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_disappearing_server_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_early_server_shutdown_finishes_inflight_calls_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_early_server_shutdown_finishes_tags_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_empty_batch_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_graceful_server_shutdown_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_invoke_large_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_max_concurrent_streams_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_max_message_length_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_no_op_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_ping_pong_streaming_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_registered_call_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_request_response_with_binary_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_request_response_with_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_request_response_with_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_request_response_with_payload_and_call_creds_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_request_response_with_trailing_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_request_with_compressed_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_request_with_flags_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_request_with_large_metadata_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_request_with_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_server_finishes_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_simple_delayed_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_simple_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_fullstack_with_poll_simple_request_with_high_initial_sequence_number_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_bad_hostname_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_census_simple_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_channel_connectivity_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_default_host_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_empty_batch_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_graceful_server_shutdown_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_max_message_length_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_no_op_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_registered_call_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_and_call_creds_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_request_with_compressed_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_request_with_flags_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_request_with_large_metadata_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_request_with_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_server_finishes_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_simple_ssl_with_oauth2_fullstack_simple_request_with_high_initial_sequence_number_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_bad_hostname_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_cancel_after_accept_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_cancel_after_accept_and_writes_closed_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_cancel_after_invoke_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_cancel_before_invoke_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_cancel_in_a_vacuum_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_census_simple_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_early_server_shutdown_finishes_tags_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_empty_batch_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_graceful_server_shutdown_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_invoke_large_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_max_concurrent_streams_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_max_message_length_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_no_op_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_ping_pong_streaming_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_registered_call_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_request_response_with_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_request_response_with_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_request_response_with_payload_and_call_creds_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_request_with_compressed_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_request_with_flags_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_request_with_large_metadata_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_request_with_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_server_finishes_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_simple_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_simple_request_with_high_initial_sequence_number_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_bad_hostname_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_census_simple_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_empty_batch_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_graceful_server_shutdown_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_max_message_length_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_no_op_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_registered_call_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_and_call_creds_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_request_with_compressed_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_request_with_flags_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_request_with_large_metadata_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_request_with_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_server_finishes_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_simple_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_simple_request_with_high_initial_sequence_number_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_bad_hostname_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_cancel_after_accept_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_cancel_after_accept_and_writes_closed_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_cancel_after_invoke_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_cancel_before_invoke_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_cancel_in_a_vacuum_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_census_simple_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_early_server_shutdown_finishes_inflight_calls_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_early_server_shutdown_finishes_tags_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_empty_batch_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_graceful_server_shutdown_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_invoke_large_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_max_concurrent_streams_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_max_message_length_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_no_op_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_ping_pong_streaming_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_registered_call_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_request_response_with_binary_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_request_response_with_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_request_response_with_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_request_response_with_payload_and_call_creds_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_request_response_with_trailing_metadata_and_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_request_with_compressed_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_request_with_flags_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_request_with_large_metadata_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_request_with_payload_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_server_finishes_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_simple_request_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_simple_request_with_high_initial_sequence_number_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_bad_hostname_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_cancel_after_accept_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_cancel_after_accept_and_writes_closed_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_cancel_after_invoke_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_cancel_before_invoke_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_cancel_in_a_vacuum_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_census_simple_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_channel_connectivity_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_default_host_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_disappearing_server_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_early_server_shutdown_finishes_tags_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_empty_batch_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_graceful_server_shutdown_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_invoke_large_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_max_concurrent_streams_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_max_message_length_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_no_op_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_ping_pong_streaming_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_registered_call_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_request_response_with_binary_metadata_and_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_request_response_with_metadata_and_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_request_response_with_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_request_response_with_trailing_metadata_and_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_request_with_compressed_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_request_with_flags_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_request_with_large_metadata_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_request_with_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_server_finishes_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_simple_delayed_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_simple_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_simple_request_with_high_initial_sequence_number_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_bad_hostname_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_cancel_after_accept_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_cancel_after_accept_and_writes_closed_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_cancel_after_invoke_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_cancel_before_invoke_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_cancel_in_a_vacuum_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_census_simple_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_channel_connectivity_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_default_host_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_disappearing_server_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_early_server_shutdown_finishes_inflight_calls_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_early_server_shutdown_finishes_tags_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_empty_batch_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_graceful_server_shutdown_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_invoke_large_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_max_concurrent_streams_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_max_message_length_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_no_op_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_ping_pong_streaming_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_registered_call_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_request_response_with_binary_metadata_and_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_request_response_with_metadata_and_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_request_response_with_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_request_response_with_trailing_metadata_and_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_request_with_compressed_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_request_with_flags_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_request_with_large_metadata_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_request_with_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_server_finishes_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_simple_delayed_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_simple_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_compression_simple_request_with_high_initial_sequence_number_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_bad_hostname_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_cancel_after_accept_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_cancel_after_accept_and_writes_closed_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_cancel_after_invoke_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_cancel_before_invoke_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_cancel_in_a_vacuum_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_census_simple_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_channel_connectivity_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_disappearing_server_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_early_server_shutdown_finishes_inflight_calls_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_early_server_shutdown_finishes_tags_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_empty_batch_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_graceful_server_shutdown_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_invoke_large_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_max_concurrent_streams_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_max_message_length_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_no_op_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_ping_pong_streaming_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_registered_call_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_request_response_with_binary_metadata_and_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_request_response_with_metadata_and_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_request_response_with_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_request_response_with_trailing_metadata_and_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_request_with_compressed_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_request_with_flags_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_request_with_large_metadata_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_request_with_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_server_finishes_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_simple_delayed_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_simple_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_simple_request_with_high_initial_sequence_number_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_bad_hostname_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_cancel_after_accept_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_cancel_after_accept_and_writes_closed_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_cancel_after_invoke_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_cancel_before_invoke_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_cancel_in_a_vacuum_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_census_simple_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_channel_connectivity_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_disappearing_server_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_early_server_shutdown_finishes_inflight_calls_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_early_server_shutdown_finishes_tags_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_empty_batch_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_graceful_server_shutdown_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_invoke_large_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_max_concurrent_streams_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_max_message_length_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_no_op_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_ping_pong_streaming_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_registered_call_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_request_response_with_binary_metadata_and_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_request_response_with_metadata_and_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_request_response_with_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_request_response_with_trailing_metadata_and_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_request_with_compressed_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_request_with_flags_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_request_with_large_metadata_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_request_with_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_server_finishes_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_simple_delayed_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_simple_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_uds_posix_with_poll_simple_request_with_high_initial_sequence_number_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_bad_hostname_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_cancel_after_accept_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_cancel_after_accept_and_writes_closed_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_cancel_after_invoke_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_cancel_before_invoke_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_cancel_in_a_vacuum_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_census_simple_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_channel_connectivity_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_default_host_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_disappearing_server_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_early_server_shutdown_finishes_inflight_calls_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_early_server_shutdown_finishes_tags_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_empty_batch_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_graceful_server_shutdown_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_invoke_large_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_max_concurrent_streams_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_max_message_length_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_no_op_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_ping_pong_streaming_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_registered_call_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_request_response_with_binary_metadata_and_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_request_response_with_metadata_and_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_request_response_with_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_request_response_with_trailing_metadata_and_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_request_with_compressed_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_request_with_flags_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_request_with_large_metadata_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_request_with_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_server_finishes_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_simple_delayed_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_simple_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_fullstack_with_poll_simple_request_with_high_initial_sequence_number_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_bad_hostname_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_cancel_after_accept_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_cancel_after_accept_and_writes_closed_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_cancel_after_invoke_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_cancel_before_invoke_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_cancel_in_a_vacuum_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_census_simple_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_early_server_shutdown_finishes_tags_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_empty_batch_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_graceful_server_shutdown_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_invoke_large_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_max_concurrent_streams_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_max_message_length_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_no_op_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_ping_pong_streaming_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_registered_call_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_request_response_with_binary_metadata_and_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_request_response_with_metadata_and_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_request_response_with_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_request_with_compressed_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_request_with_flags_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_request_with_large_metadata_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_request_with_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_server_finishes_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_simple_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_simple_request_with_high_initial_sequence_number_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_bad_hostname_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_census_simple_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_empty_batch_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_graceful_server_shutdown_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_max_message_length_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_no_op_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_registered_call_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_request_with_compressed_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_request_with_flags_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_request_with_large_metadata_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_request_with_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_server_finishes_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_simple_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_one_byte_at_a_time_simple_request_with_high_initial_sequence_number_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_bad_hostname_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_cancel_after_accept_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_cancel_after_accept_and_writes_closed_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_cancel_after_invoke_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_cancel_before_invoke_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_cancel_in_a_vacuum_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_census_simple_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_early_server_shutdown_finishes_inflight_calls_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_early_server_shutdown_finishes_tags_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_empty_batch_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_graceful_server_shutdown_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_invoke_large_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_max_concurrent_streams_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_max_message_length_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_no_op_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_ping_pong_streaming_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_registered_call_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_request_response_with_binary_metadata_and_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_request_response_with_metadata_and_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_request_response_with_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_request_response_with_trailing_metadata_and_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_request_with_compressed_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_request_with_flags_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_request_with_large_metadata_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_request_with_payload_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_server_finishes_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_simple_request_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / chttp2_socket_pair_with_grpc_trace_simple_request_with_high_initial_sequence_number_unsecure_test $ ( BINDIR ) / $ ( CONFIG ) / connection_prefix_bad_client_test $ ( BINDIR ) / $ ( CONFIG ) / initial_settings_frame_bad_client_test <nl> <nl> - buildtests_cxx : privatelibs_cxx $ ( BINDIR ) / $ ( CONFIG ) / async_end2end_test $ ( BINDIR ) / $ ( CONFIG ) / async_streaming_ping_pong_test $ ( BINDIR ) / $ ( CONFIG ) / async_unary_ping_pong_test $ ( BINDIR ) / $ ( CONFIG ) / auth_property_iterator_test $ ( BINDIR ) / $ ( CONFIG ) / channel_arguments_test $ ( BINDIR ) / $ ( CONFIG ) / cli_call_test $ ( BINDIR ) / $ ( CONFIG ) / client_crash_test $ ( BINDIR ) / $ ( CONFIG ) / client_crash_test_server $ ( BINDIR ) / $ ( CONFIG ) / credentials_test $ ( BINDIR ) / $ ( CONFIG ) / cxx_byte_buffer_test $ ( BINDIR ) / $ ( CONFIG ) / cxx_slice_test $ ( BINDIR ) / $ ( CONFIG ) / cxx_time_test $ ( BINDIR ) / $ ( CONFIG ) / dynamic_thread_pool_test $ ( BINDIR ) / $ ( CONFIG ) / end2end_test $ ( BINDIR ) / $ ( CONFIG ) / fixed_size_thread_pool_test $ ( BINDIR ) / $ ( CONFIG ) / generic_end2end_test $ ( BINDIR ) / $ ( CONFIG ) / grpc_cli $ ( BINDIR ) / $ ( CONFIG ) / interop_client $ ( BINDIR ) / $ ( CONFIG ) / interop_server $ ( BINDIR ) / $ ( CONFIG ) / interop_test $ ( BINDIR ) / $ ( CONFIG ) / mock_test $ ( BINDIR ) / $ ( CONFIG ) / qps_interarrival_test $ ( BINDIR ) / $ ( CONFIG ) / qps_openloop_test $ ( BINDIR ) / $ ( CONFIG ) / qps_test $ ( BINDIR ) / $ ( CONFIG ) / secure_auth_context_test $ ( BINDIR ) / $ ( CONFIG ) / server_crash_test $ ( BINDIR ) / $ ( CONFIG ) / server_crash_test_client $ ( BINDIR ) / $ ( CONFIG ) / status_test $ ( BINDIR ) / $ ( CONFIG ) / sync_streaming_ping_pong_test $ ( BINDIR ) / $ ( CONFIG ) / sync_unary_ping_pong_test $ ( BINDIR ) / $ ( CONFIG ) / thread_stress_test <nl> + buildtests_cxx : buildtests_zookeeper privatelibs_cxx $ ( BINDIR ) / $ ( CONFIG ) / async_end2end_test $ ( BINDIR ) / $ ( CONFIG ) / async_streaming_ping_pong_test $ ( BINDIR ) / $ ( CONFIG ) / async_unary_ping_pong_test $ ( BINDIR ) / $ ( CONFIG ) / auth_property_iterator_test $ ( BINDIR ) / $ ( CONFIG ) / channel_arguments_test $ ( BINDIR ) / $ ( CONFIG ) / cli_call_test $ ( BINDIR ) / $ ( CONFIG ) / client_crash_test $ ( BINDIR ) / $ ( CONFIG ) / client_crash_test_server $ ( BINDIR ) / $ ( CONFIG ) / credentials_test $ ( BINDIR ) / $ ( CONFIG ) / cxx_byte_buffer_test $ ( BINDIR ) / $ ( CONFIG ) / cxx_slice_test $ ( BINDIR ) / $ ( CONFIG ) / cxx_time_test $ ( BINDIR ) / $ ( CONFIG ) / dynamic_thread_pool_test $ ( BINDIR ) / $ ( CONFIG ) / end2end_test $ ( BINDIR ) / $ ( CONFIG ) / fixed_size_thread_pool_test $ ( BINDIR ) / $ ( CONFIG ) / generic_end2end_test $ ( BINDIR ) / $ ( CONFIG ) / grpc_cli $ ( BINDIR ) / $ ( CONFIG ) / interop_client $ ( BINDIR ) / $ ( CONFIG ) / interop_server $ ( BINDIR ) / $ ( CONFIG ) / interop_test $ ( BINDIR ) / $ ( CONFIG ) / mock_test $ ( BINDIR ) / $ ( CONFIG ) / qps_interarrival_test $ ( BINDIR ) / $ ( CONFIG ) / qps_openloop_test $ ( BINDIR ) / $ ( CONFIG ) / qps_test $ ( BINDIR ) / $ ( CONFIG ) / secure_auth_context_test $ ( BINDIR ) / $ ( CONFIG ) / server_crash_test $ ( BINDIR ) / $ ( CONFIG ) / server_crash_test_client $ ( BINDIR ) / $ ( CONFIG ) / status_test $ ( BINDIR ) / $ ( CONFIG ) / sync_streaming_ping_pong_test $ ( BINDIR ) / $ ( CONFIG ) / sync_unary_ping_pong_test $ ( BINDIR ) / $ ( CONFIG ) / thread_stress_test <nl> <nl> ifeq ( $ ( HAS_ZOOKEEPER ) , true ) <nl> buildtests_zookeeper : privatelibs_zookeeper $ ( BINDIR ) / $ ( CONFIG ) / zookeeper_test <nl> test_c : buildtests_c <nl> flaky_test_c : buildtests_c <nl> <nl> <nl> - test_cxx : buildtests_cxx <nl> + test_cxx : test_zookeeper buildtests_cxx <nl> $ ( E ) " [ RUN ] Testing async_end2end_test " <nl> $ ( Q ) $ ( BINDIR ) / $ ( CONFIG ) / async_end2end_test | | ( echo test async_end2end_test failed ; exit 1 ) <nl> $ ( E ) " [ RUN ] Testing async_streaming_ping_pong_test " <nl> mmm a / templates / Makefile . template <nl> ppp b / templates / Makefile . template <nl> buildtests_c : privatelibs_c \ <nl> % endfor <nl> <nl> <nl> - buildtests_cxx : privatelibs_cxx \ <nl> + buildtests_cxx : buildtests_zookeeper privatelibs_cxx \ <nl> % for tgt in targets : <nl> % if tgt . build = = ' test ' and tgt . language = = ' c + + ' and not tgt . get ( ' external_deps ' , None ) : <nl> $ ( BINDIR ) / $ ( CONFIG ) / $ { tgt . name } \ <nl> flaky_test_c : buildtests_c <nl> % endfor <nl> <nl> <nl> - test_cxx : buildtests_cxx <nl> + test_cxx : test_zookeeper buildtests_cxx <nl> % for tgt in targets : <nl> % if tgt . build = = ' test ' and tgt . get ( ' run ' , True ) and tgt . language = = ' c + + ' and not tgt . get ( ' flaky ' , False ) and not tgt . get ( ' external_deps ' , None ) : <nl> $ ( E ) " [ RUN ] Testing $ { tgt . name } " <nl>
Add zookeeper test in Makefile
grpc/grpc
5c9bbfbf19abb0d4c8553834649e5c599e3e8563
2015-08-04T21:11:42Z
mmm a / db / repl / rs_optime . h <nl> ppp b / db / repl / rs_optime . h <nl> <nl> - / / @ file rs_optime . h <nl> - <nl> - / * <nl> - * Copyright ( C ) 2010 10gen Inc . <nl> - * <nl> - * This program is free software : you can redistribute it and / or modify <nl> - * it under the terms of the GNU Affero General Public License , version 3 , <nl> - * as published by the Free Software Foundation . <nl> - * <nl> - * This program is distributed in the hope that it will be useful , <nl> - * but WITHOUT ANY WARRANTY ; without even the implied warranty of <nl> - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the <nl> - * GNU Affero General Public License for more details . <nl> - * <nl> - * You should have received a copy of the GNU Affero General Public License <nl> - * along with this program . If not , see < http : / / www . gnu . org / licenses / > . <nl> - * / <nl> - <nl> - # pragma once <nl> - <nl> - # include " . . / . . / util / optime . h " <nl> - <nl> - namespace mongo { <nl> - <nl> + / / @ file rs_optime . h <nl> + <nl> + / * <nl> + * Copyright ( C ) 2010 10gen Inc . <nl> + * <nl> + * This program is free software : you can redistribute it and / or modify <nl> + * it under the terms of the GNU Affero General Public License , version 3 , <nl> + * as published by the Free Software Foundation . <nl> + * <nl> + * This program is distributed in the hope that it will be useful , <nl> + * but WITHOUT ANY WARRANTY ; without even the implied warranty of <nl> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the <nl> + * GNU Affero General Public License for more details . <nl> + * <nl> + * You should have received a copy of the GNU Affero General Public License <nl> + * along with this program . If not , see < http : / / www . gnu . org / licenses / > . <nl> + * / <nl> + <nl> + # pragma once <nl> + <nl> + # include " . . / . . / util / optime . h " <nl> + <nl> + namespace mongo { <nl> + <nl> const char rsoplog [ ] = " local . oplog . rs " ; <nl> - <nl> - / * <nl> - class RSOpTime : public OpTime { <nl> - public : <nl> - bool initiated ( ) const { return getSecs ( ) ! = 0 ; } <nl> - } ; * / <nl> - <nl> - / * struct RSOpTime { <nl> - unsigned long long ord ; <nl> - <nl> - RSOpTime ( ) : ord ( 0 ) { } <nl> - <nl> - bool initiated ( ) const { return ord > 0 ; } <nl> - <nl> - void initiate ( ) { <nl> - assert ( ! initiated ( ) ) ; <nl> - ord = 1000000 ; <nl> - } <nl> - <nl> - ReplTime inc ( ) { <nl> - DEV assertInWriteLock ( ) ; <nl> - return + + ord ; <nl> - } <nl> - <nl> - string toString ( ) const { return str : : stream ( ) < < ord ; } <nl> - <nl> - / / query the oplog and set the highest value herein . acquires a db read lock . throws . <nl> - void load ( ) ; <nl> - } ; <nl> - <nl> - extern RSOpTime rsOpTime ; * / <nl> - <nl> - } <nl> + <nl> + / * <nl> + class RSOpTime : public OpTime { <nl> + public : <nl> + bool initiated ( ) const { return getSecs ( ) ! = 0 ; } <nl> + } ; * / <nl> + <nl> + / * struct RSOpTime { <nl> + unsigned long long ord ; <nl> + <nl> + RSOpTime ( ) : ord ( 0 ) { } <nl> + <nl> + bool initiated ( ) const { return ord > 0 ; } <nl> + <nl> + void initiate ( ) { <nl> + assert ( ! initiated ( ) ) ; <nl> + ord = 1000000 ; <nl> + } <nl> + <nl> + ReplTime inc ( ) { <nl> + DEV assertInWriteLock ( ) ; <nl> + return + + ord ; <nl> + } <nl> + <nl> + string toString ( ) const { return str : : stream ( ) < < ord ; } <nl> + <nl> + / / query the oplog and set the highest value herein . acquires a db read lock . throws . <nl> + void load ( ) ; <nl> + } ; <nl> + <nl> + extern RSOpTime rsOpTime ; * / <nl> + <nl> + } <nl> mmm a / dbtests / test . vcxproj . filters <nl> ppp b / dbtests / test . vcxproj . filters <nl> <nl> < ClCompile Include = " . . \ db \ restapi . cpp " > <nl> < Filter > db \ cpp < / Filter > <nl> < / ClCompile > <nl> + < ClCompile Include = " . . \ util \ concurrency \ spin_lock . cpp " > <nl> + < Filter > db \ cpp < / Filter > <nl> + < / ClCompile > <nl> < / ItemGroup > <nl> < ItemGroup > <nl> < None Include = " . . \ SConstruct " > <nl>
crlf
mongodb/mongo
8864cfafffefdb73c2cc317c42a458cf347e5b07
2010-08-28T22:27:50Z
mmm a / tests / CMakeLists . txt <nl> ppp b / tests / CMakeLists . txt <nl> add_test ( NAME db_modes_test COMMAND tests / db_modes_test . sh WORKING_DIRECTORY $ { C <nl> # Long running tests <nl> add_test ( NAME nodeos_sanity_lr_test COMMAND tests / nodeos_run_test . py - v - - sanity - test - - clean - run - - dump - error - detail WORKING_DIRECTORY $ { CMAKE_BINARY_DIR } ) <nl> set_property ( TEST nodeos_sanity_lr_test PROPERTY LABELS long_running_tests ) <nl> - add_test ( NAME nodeos_sanity_bnet_lr_test COMMAND tests / nodeos_run_test . py - v - - sanity - test - - p2p - plugin bnet - - clean - run - - dump - error - detail WORKING_DIRECTORY $ { CMAKE_BINARY_DIR } ) <nl> - set_property ( TEST nodeos_sanity_bnet_lr_test PROPERTY LABELS long_running_tests ) <nl> add_test ( NAME nodeos_run_check_lr_test COMMAND tests / nodeos_run_test . py - v - - clean - run - - dump - error - detail WORKING_DIRECTORY $ { CMAKE_BINARY_DIR } ) <nl> set_property ( TEST nodeos_run_check_lr_test PROPERTY LABELS long_running_tests ) <nl> add_test ( NAME nodeos_remote_lr_test COMMAND tests / nodeos_run_remote_test . py - v - - clean - run - - dump - error - detail WORKING_DIRECTORY $ { CMAKE_BINARY_DIR } ) <nl> set_property ( TEST nodeos_forked_chain_lr_test PROPERTY LABELS long_running_tests <nl> add_test ( NAME nodeos_voting_lr_test COMMAND tests / nodeos_voting_test . py - v - - wallet - port 9902 - - clean - run - - dump - error - detail WORKING_DIRECTORY $ { CMAKE_BINARY_DIR } ) <nl> set_property ( TEST nodeos_voting_lr_test PROPERTY LABELS long_running_tests ) <nl> <nl> - add_test ( NAME nodeos_voting_bnet_lr_test COMMAND tests / nodeos_voting_test . py - v - - wallet - port 9903 - - p2p - plugin bnet - - clean - run - - dump - error - detail WORKING_DIRECTORY $ { CMAKE_BINARY_DIR } ) <nl> - set_property ( TEST nodeos_voting_bnet_lr_test PROPERTY LABELS long_running_tests ) <nl> - <nl> add_test ( NAME nodeos_under_min_avail_ram_lr_test COMMAND tests / nodeos_under_min_avail_ram . py - v - - wallet - port 9904 - - clean - run - - dump - error - detail WORKING_DIRECTORY $ { CMAKE_BINARY_DIR } ) <nl> set_property ( TEST nodeos_under_min_avail_ram_lr_test PROPERTY LABELS long_running_tests ) <nl> <nl>
Merge pull request from brianjohnson5972 / turn - off - bnet - long - running - tests
EOSIO/eos
68f5cc6fe3924f96ff0766a63521c5913ab6ac66
2019-04-01T21:33:20Z
mmm a / yoga / YGNode . cpp <nl> ppp b / yoga / YGNode . cpp <nl> <nl> using namespace facebook ; <nl> using facebook : : yoga : : detail : : CompactValue ; <nl> <nl> - void YGNode : : print ( ) { <nl> - if ( print_ ! = nullptr ) { <nl> - print_ ( this ) ; <nl> + void YGNode : : print ( void * printContext ) { <nl> + if ( print_ . noContext ! = nullptr ) { <nl> + if ( printUsesContext_ ) { <nl> + print_ . withContext ( this , printContext ) ; <nl> + } else { <nl> + print_ . noContext ( this ) ; <nl> + } <nl> } <nl> } <nl> <nl> YGNode & YGNode : : operator = ( const YGNode & node ) { <nl> } <nl> <nl> context_ = node . getContext ( ) ; <nl> - print_ = node . print_ ; <nl> hasNewLayout_ = node . getHasNewLayout ( ) ; <nl> nodeType_ = node . getNodeType ( ) ; <nl> measureUsesContext_ = node . measureUsesContext_ ; <nl> baselineUsesContext_ = node . baselineUsesContext_ ; <nl> + printUsesContext_ = node . printUsesContext_ ; <nl> measure_ = node . measure_ ; <nl> baseline_ = node . baseline_ ; <nl> + print_ = node . print_ ; <nl> dirtied_ = node . getDirtied ( ) ; <nl> style_ = node . style_ ; <nl> layout_ = node . layout_ ; <nl> mmm a / yoga / YGNode . h <nl> ppp b / yoga / YGNode . h <nl> struct YGNode { <nl> using MeasureWithContextFn = <nl> YGSize ( * ) ( YGNode * , float , YGMeasureMode , float , YGMeasureMode , void * ) ; <nl> using BaselineWithContextFn = float ( * ) ( YGNode * , float , float , void * ) ; <nl> + using PrintWithContextFn = void ( * ) ( YGNode * , void * ) ; <nl> <nl> private : <nl> void * context_ = nullptr ; <nl> - YGPrintFunc print_ = nullptr ; <nl> bool hasNewLayout_ : 1 ; <nl> bool isReferenceBaseline_ : 1 ; <nl> bool isDirty_ : 1 ; <nl> YGNodeType nodeType_ : 1 ; <nl> bool measureUsesContext_ : 1 ; <nl> bool baselineUsesContext_ : 1 ; <nl> + bool printUsesContext_ : 1 ; <nl> union { <nl> YGMeasureFunc noContext ; <nl> MeasureWithContextFn withContext ; <nl> struct YGNode { <nl> YGBaselineFunc noContext ; <nl> BaselineWithContextFn withContext ; <nl> } baseline_ = { nullptr } ; <nl> + union { <nl> + YGPrintFunc noContext ; <nl> + PrintWithContextFn withContext ; <nl> + } print_ = { nullptr } ; <nl> YGDirtiedFunc dirtied_ = nullptr ; <nl> YGStyle style_ = { } ; <nl> YGLayout layout_ = { } ; <nl> struct YGNode { <nl> isDirty_ { false } , <nl> nodeType_ { YGNodeTypeDefault } , <nl> measureUsesContext_ { false } , <nl> - baselineUsesContext_ { false } { } <nl> + baselineUsesContext_ { false } , <nl> + printUsesContext_ { false } { } <nl> ~ YGNode ( ) = default ; / / cleanup of owner / children relationships in YGNodeFree <nl> explicit YGNode ( const YGConfigRef newConfig ) : config_ ( newConfig ) { } ; <nl> YGNode ( const YGNode & node ) = default ; <nl> struct YGNode { <nl> return context_ ; <nl> } <nl> <nl> - void print ( ) ; <nl> + void print ( void * ) ; <nl> <nl> bool getHasNewLayout ( ) const { <nl> return hasNewLayout_ ; <nl> struct YGNode { <nl> } <nl> <nl> void setPrintFunc ( YGPrintFunc printFunc ) { <nl> - print_ = printFunc ; <nl> + print_ . noContext = printFunc ; <nl> + printUsesContext_ = false ; <nl> + } <nl> + void setPrintFunc ( PrintWithContextFn printFunc ) { <nl> + print_ . withContext = printFunc ; <nl> + printUsesContext_ = true ; <nl> + } <nl> + void setPrintFunc ( std : : nullptr_t ) { <nl> + setPrintFunc ( YGPrintFunc { nullptr } ) ; <nl> } <nl> <nl> void setHasNewLayout ( bool hasNewLayout ) { <nl> mmm a / yoga / YGNodePrint . cpp <nl> ppp b / yoga / YGNodePrint . cpp <nl> void YGNodeToString ( <nl> uint32_t level ) { <nl> indent ( str , level ) ; <nl> appendFormatedString ( str , " < div " ) ; <nl> - node - > print ( ) ; <nl> <nl> if ( options & YGPrintOptionsLayout ) { <nl> appendFormatedString ( str , " layout = \ " " ) ; <nl> mmm a / yoga / Yoga . cpp <nl> ppp b / yoga / Yoga . cpp <nl> bool YGLayoutNodeInternal ( <nl> " % s % d . { [ skipped ] " , <nl> YGSpacer ( gDepth ) , <nl> gDepth ) ; <nl> - node - > print ( ) ; <nl> + node - > print ( layoutContext ) ; <nl> Log : : log ( <nl> node , <nl> YGLogLevelVerbose , <nl> bool YGLayoutNodeInternal ( <nl> YGSpacer ( gDepth ) , <nl> gDepth , <nl> needToVisitNode ? " * " : " " ) ; <nl> - node - > print ( ) ; <nl> + node - > print ( layoutContext ) ; <nl> Log : : log ( <nl> node , <nl> YGLogLevelVerbose , <nl> bool YGLayoutNodeInternal ( <nl> YGSpacer ( gDepth ) , <nl> gDepth , <nl> needToVisitNode ? " * " : " " ) ; <nl> - node - > print ( ) ; <nl> + node - > print ( layoutContext ) ; <nl> Log : : log ( <nl> node , <nl> YGLogLevelVerbose , <nl>
Add support for context - aware print functions
facebook/yoga
cbcf07f08a7328866e6469ebdbc678e9843150bd
2019-02-19T17:58:43Z
mmm a / projects / SelfTest / Baselines / console . std . approved . txt <nl> ppp b / projects / SelfTest / Baselines / console . std . approved . txt <nl> Matchers . tests . cpp : < line number > <nl> . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( testStringForMatching ( ) , Contains ( " not there " , Catch : : CaseSensitive : : No ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , Contains ( " not there " , Catch : : CaseSensitive : : No ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " contains : " not there " ( case <nl> insensitive ) <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( testStringForMatching ( ) , Contains ( " STRING " ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , Contains ( " STRING " ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " contains : " STRING " <nl> <nl> Matchers . tests . cpp : < line number > <nl> . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( testStringForMatching ( ) , EndsWith ( " Substring " ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , EndsWith ( " Substring " ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " ends with : " Substring " <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( testStringForMatching ( ) , EndsWith ( " this " , Catch : : CaseSensitive : : No ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , EndsWith ( " this " , Catch : : CaseSensitive : : No ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " ends with : " this " ( case <nl> insensitive ) <nl> Matchers . tests . cpp : < line number > <nl> . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( testStringForMatching ( ) , Equals ( " this string contains ' ABC ' as a substring " ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , Equals ( " this string contains ' ABC ' as a substring " ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " equals : " this string contains <nl> ' ABC ' as a substring " <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( testStringForMatching ( ) , Equals ( " something else " , Catch : : CaseSensitive : : No ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , Equals ( " something else " , Catch : : CaseSensitive : : No ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " equals : " something else " ( case <nl> insensitive ) <nl> Matchers . tests . cpp : < line number > <nl> . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THROWS_MATCHES ( doesNotThrow ( ) , SpecialException , ExceptionMatcher { 1 } ) <nl> + CHECK_THROWS_MATCHES ( doesNotThrow ( ) , SpecialException , ExceptionMatcher { 1 } ) <nl> because no exception was thrown where one was expected : <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - REQUIRE_THROWS_MATCHES ( doesNotThrow ( ) , SpecialException , ExceptionMatcher { 1 } ) <nl> + REQUIRE_THROWS_MATCHES ( doesNotThrow ( ) , SpecialException , ExceptionMatcher { 1 } ) <nl> because no exception was thrown where one was expected : <nl> <nl> mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - <nl> Matchers . tests . cpp : < line number > <nl> . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THROWS_MATCHES ( throwsAsInt ( 1 ) , SpecialException , ExceptionMatcher { 1 } ) <nl> + CHECK_THROWS_MATCHES ( throwsAsInt ( 1 ) , SpecialException , ExceptionMatcher { 1 } ) <nl> due to unexpected exception with message : <nl> Unknown exception <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - REQUIRE_THROWS_MATCHES ( throwsAsInt ( 1 ) , SpecialException , ExceptionMatcher { 1 } ) <nl> + REQUIRE_THROWS_MATCHES ( throwsAsInt ( 1 ) , SpecialException , ExceptionMatcher { 1 } ) <nl> due to unexpected exception with message : <nl> Unknown exception <nl> <nl> Matchers . tests . cpp : < line number > <nl> . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THROWS_MATCHES ( throws ( 3 ) , SpecialException , ExceptionMatcher { 1 } ) <nl> + CHECK_THROWS_MATCHES ( throws ( 3 ) , SpecialException , ExceptionMatcher { 1 } ) <nl> with expansion : <nl> { ? } special exception has value of 1 <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - REQUIRE_THROWS_MATCHES ( throws ( 4 ) , SpecialException , ExceptionMatcher { 1 } ) <nl> + REQUIRE_THROWS_MATCHES ( throws ( 4 ) , SpecialException , ExceptionMatcher { 1 } ) <nl> with expansion : <nl> { ? } special exception has value of 1 <nl> <nl> Matchers . tests . cpp : < line number > <nl> . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( testStringForMatching ( ) , ( Contains ( " string " ) | | Contains ( " different " ) ) & & Contains ( " random " ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , ( Contains ( " string " ) | | Contains ( " different " ) ) & & Contains ( " random " ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " ( ( contains : " string " or <nl> contains : " different " ) and contains : " random " ) <nl> Matchers . tests . cpp : < line number > <nl> . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( testStringForMatching ( ) , ! Contains ( " substring " ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , ! Contains ( " substring " ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " not contains : " substring " <nl> <nl> Matchers . tests . cpp : < line number > <nl> . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( testStringForMatching ( ) , StartsWith ( " This String " ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , StartsWith ( " This String " ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " starts with : " This String " <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( testStringForMatching ( ) , StartsWith ( " string " , Catch : : CaseSensitive : : No ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , StartsWith ( " string " , Catch : : CaseSensitive : : No ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " starts with : " string " ( case <nl> insensitive ) <nl> Matchers . tests . cpp : < line number > <nl> . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( v , VectorContains ( - 1 ) ) <nl> + CHECK_THAT ( v , VectorContains ( - 1 ) ) <nl> with expansion : <nl> { 1 , 2 , 3 } Contains : - 1 <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( empty , VectorContains ( 1 ) ) <nl> + CHECK_THAT ( empty , VectorContains ( 1 ) ) <nl> with expansion : <nl> { } Contains : 1 <nl> <nl> Matchers . tests . cpp : < line number > <nl> . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( empty , Contains ( v ) ) <nl> + CHECK_THAT ( empty , Contains ( v ) ) <nl> with expansion : <nl> { } Contains : { 1 , 2 , 3 } <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( v , Contains ( v2 ) ) <nl> + CHECK_THAT ( v , Contains ( v2 ) ) <nl> with expansion : <nl> { 1 , 2 , 3 } Contains : { 1 , 2 , 4 } <nl> <nl> Matchers . tests . cpp : < line number > <nl> . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( v , Equals ( v2 ) ) <nl> + CHECK_THAT ( v , Equals ( v2 ) ) <nl> with expansion : <nl> { 1 , 2 , 3 } Equals : { 1 , 2 } <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( v2 , Equals ( v ) ) <nl> + CHECK_THAT ( v2 , Equals ( v ) ) <nl> with expansion : <nl> { 1 , 2 } Equals : { 1 , 2 , 3 } <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( empty , Equals ( v ) ) <nl> + CHECK_THAT ( empty , Equals ( v ) ) <nl> with expansion : <nl> { } Equals : { 1 , 2 , 3 } <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( v , Equals ( empty ) ) <nl> + CHECK_THAT ( v , Equals ( empty ) ) <nl> with expansion : <nl> { 1 , 2 , 3 } Equals : { } <nl> <nl> mmm a / projects / SelfTest / Baselines / console . sw . approved . txt <nl> ppp b / projects / SelfTest / Baselines / console . sw . approved . txt <nl> Matchers . tests . cpp : < line number > <nl> . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( testStringForMatching ( ) , Contains ( " not there " , Catch : : CaseSensitive : : No ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , Contains ( " not there " , Catch : : CaseSensitive : : No ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " contains : " not there " ( case <nl> insensitive ) <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( testStringForMatching ( ) , Contains ( " STRING " ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , Contains ( " STRING " ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " contains : " STRING " <nl> <nl> Matchers . tests . cpp : < line number > <nl> . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( testStringForMatching ( ) , EndsWith ( " Substring " ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , EndsWith ( " Substring " ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " ends with : " Substring " <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( testStringForMatching ( ) , EndsWith ( " this " , Catch : : CaseSensitive : : No ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , EndsWith ( " this " , Catch : : CaseSensitive : : No ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " ends with : " this " ( case <nl> insensitive ) <nl> Matchers . tests . cpp : < line number > <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - CHECK_THAT ( testStringForMatching ( ) , Equals ( " this string contains ' abc ' as a substring " ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , Equals ( " this string contains ' abc ' as a substring " ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " equals : " this string contains <nl> ' abc ' as a substring " <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - CHECK_THAT ( testStringForMatching ( ) , Equals ( " this string contains ' ABC ' as a substring " , Catch : : CaseSensitive : : No ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , Equals ( " this string contains ' ABC ' as a substring " , Catch : : CaseSensitive : : No ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " equals : " this string contains <nl> ' abc ' as a substring " ( case insensitive ) <nl> Matchers . tests . cpp : < line number > <nl> . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( testStringForMatching ( ) , Equals ( " this string contains ' ABC ' as a substring " ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , Equals ( " this string contains ' ABC ' as a substring " ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " equals : " this string contains <nl> ' ABC ' as a substring " <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( testStringForMatching ( ) , Equals ( " something else " , Catch : : CaseSensitive : : No ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , Equals ( " something else " , Catch : : CaseSensitive : : No ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " equals : " something else " ( case <nl> insensitive ) <nl> Matchers . tests . cpp : < line number > <nl> . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THROWS_MATCHES ( doesNotThrow ( ) , SpecialException , ExceptionMatcher { 1 } ) <nl> + CHECK_THROWS_MATCHES ( doesNotThrow ( ) , SpecialException , ExceptionMatcher { 1 } ) <nl> because no exception was thrown where one was expected : <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - REQUIRE_THROWS_MATCHES ( doesNotThrow ( ) , SpecialException , ExceptionMatcher { 1 } ) <nl> + REQUIRE_THROWS_MATCHES ( doesNotThrow ( ) , SpecialException , ExceptionMatcher { 1 } ) <nl> because no exception was thrown where one was expected : <nl> <nl> mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - <nl> Matchers . tests . cpp : < line number > <nl> . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THROWS_MATCHES ( throwsAsInt ( 1 ) , SpecialException , ExceptionMatcher { 1 } ) <nl> + CHECK_THROWS_MATCHES ( throwsAsInt ( 1 ) , SpecialException , ExceptionMatcher { 1 } ) <nl> due to unexpected exception with message : <nl> Unknown exception <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - REQUIRE_THROWS_MATCHES ( throwsAsInt ( 1 ) , SpecialException , ExceptionMatcher { 1 } ) <nl> + REQUIRE_THROWS_MATCHES ( throwsAsInt ( 1 ) , SpecialException , ExceptionMatcher { 1 } ) <nl> due to unexpected exception with message : <nl> Unknown exception <nl> <nl> Matchers . tests . cpp : < line number > <nl> . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THROWS_MATCHES ( throws ( 3 ) , SpecialException , ExceptionMatcher { 1 } ) <nl> + CHECK_THROWS_MATCHES ( throws ( 3 ) , SpecialException , ExceptionMatcher { 1 } ) <nl> with expansion : <nl> { ? } special exception has value of 1 <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - REQUIRE_THROWS_MATCHES ( throws ( 4 ) , SpecialException , ExceptionMatcher { 1 } ) <nl> + REQUIRE_THROWS_MATCHES ( throws ( 4 ) , SpecialException , ExceptionMatcher { 1 } ) <nl> with expansion : <nl> { ? } special exception has value of 1 <nl> <nl> Matchers . tests . cpp : < line number > <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - CHECK_THROWS_MATCHES ( throws ( 1 ) , SpecialException , ExceptionMatcher { 1 } ) <nl> + CHECK_THROWS_MATCHES ( throws ( 1 ) , SpecialException , ExceptionMatcher { 1 } ) <nl> with expansion : <nl> { ? } special exception has value of 1 <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - REQUIRE_THROWS_MATCHES ( throws ( 2 ) , SpecialException , ExceptionMatcher { 2 } ) <nl> + REQUIRE_THROWS_MATCHES ( throws ( 2 ) , SpecialException , ExceptionMatcher { 2 } ) <nl> with expansion : <nl> { ? } special exception has value of 2 <nl> <nl> Matchers . tests . cpp : < line number > <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - CHECK_THAT ( testStringForMatching ( ) , Contains ( " string " ) & & Contains ( " abc " ) & & Contains ( " substring " ) & & Contains ( " contains " ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , Contains ( " string " ) & & Contains ( " abc " ) & & Contains ( " substring " ) & & Contains ( " contains " ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " ( contains : " string " and <nl> contains : " abc " and contains : " substring " and contains : " contains " ) <nl> Matchers . tests . cpp : < line number > <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - CHECK_THAT ( testStringForMatching ( ) , Contains ( " string " ) | | Contains ( " different " ) | | Contains ( " random " ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , Contains ( " string " ) | | Contains ( " different " ) | | Contains ( " random " ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " ( contains : " string " or contains : <nl> " different " or contains : " random " ) <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - CHECK_THAT ( testStringForMatching2 ( ) , Contains ( " string " ) | | Contains ( " different " ) | | Contains ( " random " ) ) <nl> + CHECK_THAT ( testStringForMatching2 ( ) , Contains ( " string " ) | | Contains ( " different " ) | | Contains ( " random " ) ) <nl> with expansion : <nl> " some completely different text that contains one common word " ( contains : <nl> " string " or contains : " different " or contains : " random " ) <nl> Matchers . tests . cpp : < line number > <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - CHECK_THAT ( testStringForMatching ( ) , ( Contains ( " string " ) | | Contains ( " different " ) ) & & Contains ( " substring " ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , ( Contains ( " string " ) | | Contains ( " different " ) ) & & Contains ( " substring " ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " ( ( contains : " string " or <nl> contains : " different " ) and contains : " substring " ) <nl> Matchers . tests . cpp : < line number > <nl> . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( testStringForMatching ( ) , ( Contains ( " string " ) | | Contains ( " different " ) ) & & Contains ( " random " ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , ( Contains ( " string " ) | | Contains ( " different " ) ) & & Contains ( " random " ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " ( ( contains : " string " or <nl> contains : " different " ) and contains : " random " ) <nl> Matchers . tests . cpp : < line number > <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - CHECK_THAT ( testStringForMatching ( ) , ! Contains ( " different " ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , ! Contains ( " different " ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " not contains : " different " <nl> <nl> Matchers . tests . cpp : < line number > <nl> . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( testStringForMatching ( ) , ! Contains ( " substring " ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , ! Contains ( " substring " ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " not contains : " substring " <nl> <nl> Matchers . tests . cpp : < line number > <nl> . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( testStringForMatching ( ) , StartsWith ( " This String " ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , StartsWith ( " This String " ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " starts with : " This String " <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( testStringForMatching ( ) , StartsWith ( " string " , Catch : : CaseSensitive : : No ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , StartsWith ( " string " , Catch : : CaseSensitive : : No ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " starts with : " string " ( case <nl> insensitive ) <nl> Matchers . tests . cpp : < line number > <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - REQUIRE_THAT ( testStringForMatching ( ) , Contains ( " string " ) ) <nl> + REQUIRE_THAT ( testStringForMatching ( ) , Contains ( " string " ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " contains : " string " <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - REQUIRE_THAT ( testStringForMatching ( ) , Contains ( " string " , Catch : : CaseSensitive : : No ) ) <nl> + REQUIRE_THAT ( testStringForMatching ( ) , Contains ( " string " , Catch : : CaseSensitive : : No ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " contains : " string " ( case <nl> insensitive ) <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - CHECK_THAT ( testStringForMatching ( ) , Contains ( " abc " ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , Contains ( " abc " ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " contains : " abc " <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - CHECK_THAT ( testStringForMatching ( ) , Contains ( " aBC " , Catch : : CaseSensitive : : No ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , Contains ( " aBC " , Catch : : CaseSensitive : : No ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " contains : " abc " ( case insensitive ) <nl> insensitive ) <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - CHECK_THAT ( testStringForMatching ( ) , StartsWith ( " this " ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , StartsWith ( " this " ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " starts with : " this " <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - CHECK_THAT ( testStringForMatching ( ) , StartsWith ( " THIS " , Catch : : CaseSensitive : : No ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , StartsWith ( " THIS " , Catch : : CaseSensitive : : No ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " starts with : " this " ( case <nl> insensitive ) <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - CHECK_THAT ( testStringForMatching ( ) , EndsWith ( " substring " ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , EndsWith ( " substring " ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " ends with : " substring " <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - CHECK_THAT ( testStringForMatching ( ) , EndsWith ( " SuBsTrInG " , Catch : : CaseSensitive : : No ) ) <nl> + CHECK_THAT ( testStringForMatching ( ) , EndsWith ( " SuBsTrInG " , Catch : : CaseSensitive : : No ) ) <nl> with expansion : <nl> " this string contains ' abc ' as a substring " ends with : " substring " ( case <nl> insensitive ) <nl> Matchers . tests . cpp : < line number > <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - CHECK_THAT ( v , VectorContains ( 1 ) ) <nl> + CHECK_THAT ( v , VectorContains ( 1 ) ) <nl> with expansion : <nl> { 1 , 2 , 3 } Contains : 1 <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - CHECK_THAT ( v , VectorContains ( 2 ) ) <nl> + CHECK_THAT ( v , VectorContains ( 2 ) ) <nl> with expansion : <nl> { 1 , 2 , 3 } Contains : 2 <nl> <nl> Matchers . tests . cpp : < line number > <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - CHECK_THAT ( v , Contains ( v2 ) ) <nl> + CHECK_THAT ( v , Contains ( v2 ) ) <nl> with expansion : <nl> { 1 , 2 , 3 } Contains : { 1 , 2 } <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - CHECK_THAT ( v , Contains ( v2 ) ) <nl> + CHECK_THAT ( v , Contains ( v2 ) ) <nl> with expansion : <nl> { 1 , 2 , 3 } Contains : { 1 , 2 , 3 } <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - CHECK_THAT ( v , Contains ( empty ) ) <nl> + CHECK_THAT ( v , Contains ( empty ) ) <nl> with expansion : <nl> { 1 , 2 , 3 } Contains : { } <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - CHECK_THAT ( empty , Contains ( empty ) ) <nl> + CHECK_THAT ( empty , Contains ( empty ) ) <nl> with expansion : <nl> { } Contains : { } <nl> <nl> Matchers . tests . cpp : < line number > <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - CHECK_THAT ( v , VectorContains ( 1 ) & & VectorContains ( 2 ) ) <nl> + CHECK_THAT ( v , VectorContains ( 1 ) & & VectorContains ( 2 ) ) <nl> with expansion : <nl> { 1 , 2 , 3 } ( Contains : 1 and Contains : 2 ) <nl> <nl> Matchers . tests . cpp : < line number > <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - CHECK_THAT ( v , Equals ( v ) ) <nl> + CHECK_THAT ( v , Equals ( v ) ) <nl> with expansion : <nl> { 1 , 2 , 3 } Equals : { 1 , 2 , 3 } <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - CHECK_THAT ( empty , Equals ( empty ) ) <nl> + CHECK_THAT ( empty , Equals ( empty ) ) <nl> with expansion : <nl> { } Equals : { } <nl> <nl> Matchers . tests . cpp : < line number > : <nl> PASSED : <nl> - CHECK_THAT ( v , Equals ( v2 ) ) <nl> + CHECK_THAT ( v , Equals ( v2 ) ) <nl> with expansion : <nl> { 1 , 2 , 3 } Equals : { 1 , 2 , 3 } <nl> <nl> Matchers . tests . cpp : < line number > <nl> . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( v , VectorContains ( - 1 ) ) <nl> + CHECK_THAT ( v , VectorContains ( - 1 ) ) <nl> with expansion : <nl> { 1 , 2 , 3 } Contains : - 1 <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( empty , VectorContains ( 1 ) ) <nl> + CHECK_THAT ( empty , VectorContains ( 1 ) ) <nl> with expansion : <nl> { } Contains : 1 <nl> <nl> Matchers . tests . cpp : < line number > <nl> . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( empty , Contains ( v ) ) <nl> + CHECK_THAT ( empty , Contains ( v ) ) <nl> with expansion : <nl> { } Contains : { 1 , 2 , 3 } <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( v , Contains ( v2 ) ) <nl> + CHECK_THAT ( v , Contains ( v2 ) ) <nl> with expansion : <nl> { 1 , 2 , 3 } Contains : { 1 , 2 , 4 } <nl> <nl> Matchers . tests . cpp : < line number > <nl> . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( v , Equals ( v2 ) ) <nl> + CHECK_THAT ( v , Equals ( v2 ) ) <nl> with expansion : <nl> { 1 , 2 , 3 } Equals : { 1 , 2 } <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( v2 , Equals ( v ) ) <nl> + CHECK_THAT ( v2 , Equals ( v ) ) <nl> with expansion : <nl> { 1 , 2 } Equals : { 1 , 2 , 3 } <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( empty , Equals ( v ) ) <nl> + CHECK_THAT ( empty , Equals ( v ) ) <nl> with expansion : <nl> { } Equals : { 1 , 2 , 3 } <nl> <nl> Matchers . tests . cpp : < line number > : FAILED : <nl> - CHECK_THAT ( v , Equals ( empty ) ) <nl> + CHECK_THAT ( v , Equals ( empty ) ) <nl> with expansion : <nl> { 1 , 2 , 3 } Equals : { } <nl> <nl> mmm a / projects / SelfTest / Baselines / junit . sw . approved . txt <nl> ppp b / projects / SelfTest / Baselines / junit . sw . approved . txt <nl> Matchers . tests . cpp : < line number > <nl> < / failure > <nl> < / testcase > <nl> < testcase classname = " < exe - name > . global " name = " Exception matchers that fail / No exception " time = " { duration } " > <nl> - < failure message = " doesNotThrow ( ) , SpecialException , ExceptionMatcher { 1 } " type = " CHECK_THROWS_MATCHES " > <nl> + < failure message = " doesNotThrow ( ) , SpecialException , ExceptionMatcher { 1 } " type = " CHECK_THROWS_MATCHES " > <nl> Matchers . tests . cpp : < line number > <nl> < / failure > <nl> - < failure message = " doesNotThrow ( ) , SpecialException , ExceptionMatcher { 1 } " type = " REQUIRE_THROWS_MATCHES " > <nl> + < failure message = " doesNotThrow ( ) , SpecialException , ExceptionMatcher { 1 } " type = " REQUIRE_THROWS_MATCHES " > <nl> Matchers . tests . cpp : < line number > <nl> < / failure > <nl> < / testcase > <nl> < testcase classname = " < exe - name > . global " name = " Exception matchers that fail / Type mismatch " time = " { duration } " > <nl> - < error message = " throwsAsInt ( 1 ) , SpecialException , ExceptionMatcher { 1 } " type = " CHECK_THROWS_MATCHES " > <nl> + < error message = " throwsAsInt ( 1 ) , SpecialException , ExceptionMatcher { 1 } " type = " CHECK_THROWS_MATCHES " > <nl> Unknown exception <nl> Matchers . tests . cpp : < line number > <nl> < / error > <nl> - < error message = " throwsAsInt ( 1 ) , SpecialException , ExceptionMatcher { 1 } " type = " REQUIRE_THROWS_MATCHES " > <nl> + < error message = " throwsAsInt ( 1 ) , SpecialException , ExceptionMatcher { 1 } " type = " REQUIRE_THROWS_MATCHES " > <nl> Unknown exception <nl> Matchers . tests . cpp : < line number > <nl> < / error > <nl> mmm a / projects / SelfTest / Baselines / xml . sw . approved . txt <nl> ppp b / projects / SelfTest / Baselines / xml . sw . approved . txt <nl> <nl> < TestCase name = " Contains string matcher " tags = " [ . ] [ failing ] [ matchers ] " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Expression success = " false " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - testStringForMatching ( ) , Contains ( " not there " , Catch : : CaseSensitive : : No ) <nl> + testStringForMatching ( ) , Contains ( " not there " , Catch : : CaseSensitive : : No ) <nl> < / Original > <nl> < Expanded > <nl> " this string contains ' abc ' as a substring " contains : " not there " ( case insensitive ) <nl> <nl> < / Expression > <nl> < Expression success = " false " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - testStringForMatching ( ) , Contains ( " STRING " ) <nl> + testStringForMatching ( ) , Contains ( " STRING " ) <nl> < / Original > <nl> < Expanded > <nl> " this string contains ' abc ' as a substring " contains : " STRING " <nl> <nl> < TestCase name = " EndsWith string matcher " tags = " [ . ] [ failing ] [ matchers ] " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Expression success = " false " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - testStringForMatching ( ) , EndsWith ( " Substring " ) <nl> + testStringForMatching ( ) , EndsWith ( " Substring " ) <nl> < / Original > <nl> < Expanded > <nl> " this string contains ' abc ' as a substring " ends with : " Substring " <nl> <nl> < / Expression > <nl> < Expression success = " false " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - testStringForMatching ( ) , EndsWith ( " this " , Catch : : CaseSensitive : : No ) <nl> + testStringForMatching ( ) , EndsWith ( " this " , Catch : : CaseSensitive : : No ) <nl> < / Original > <nl> < Expanded > <nl> " this string contains ' abc ' as a substring " ends with : " this " ( case insensitive ) <nl> <nl> < TestCase name = " Equals " tags = " [ matchers ] " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Expression success = " true " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - testStringForMatching ( ) , Equals ( " this string contains ' abc ' as a substring " ) <nl> + testStringForMatching ( ) , Equals ( " this string contains ' abc ' as a substring " ) <nl> < / Original > <nl> < Expanded > <nl> " this string contains ' abc ' as a substring " equals : " this string contains ' abc ' as a substring " <nl> <nl> < / Expression > <nl> < Expression success = " true " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - testStringForMatching ( ) , Equals ( " this string contains ' ABC ' as a substring " , Catch : : CaseSensitive : : No ) <nl> + testStringForMatching ( ) , Equals ( " this string contains ' ABC ' as a substring " , Catch : : CaseSensitive : : No ) <nl> < / Original > <nl> < Expanded > <nl> " this string contains ' abc ' as a substring " equals : " this string contains ' abc ' as a substring " ( case insensitive ) <nl> <nl> < TestCase name = " Equals string matcher " tags = " [ . ] [ failing ] [ matchers ] " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Expression success = " false " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - testStringForMatching ( ) , Equals ( " this string contains ' ABC ' as a substring " ) <nl> + testStringForMatching ( ) , Equals ( " this string contains ' ABC ' as a substring " ) <nl> < / Original > <nl> < Expanded > <nl> " this string contains ' abc ' as a substring " equals : " this string contains ' ABC ' as a substring " <nl> <nl> < / Expression > <nl> < Expression success = " false " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - testStringForMatching ( ) , Equals ( " something else " , Catch : : CaseSensitive : : No ) <nl> + testStringForMatching ( ) , Equals ( " something else " , Catch : : CaseSensitive : : No ) <nl> < / Original > <nl> < Expanded > <nl> " this string contains ' abc ' as a substring " equals : " something else " ( case insensitive ) <nl> <nl> < Section name = " No exception " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Expression success = " false " type = " CHECK_THROWS_MATCHES " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - doesNotThrow ( ) , SpecialException , ExceptionMatcher { 1 } <nl> + doesNotThrow ( ) , SpecialException , ExceptionMatcher { 1 } <nl> < / Original > <nl> < Expanded > <nl> - doesNotThrow ( ) , SpecialException , ExceptionMatcher { 1 } <nl> + doesNotThrow ( ) , SpecialException , ExceptionMatcher { 1 } <nl> < / Expanded > <nl> < / Expression > <nl> < Expression success = " false " type = " REQUIRE_THROWS_MATCHES " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - doesNotThrow ( ) , SpecialException , ExceptionMatcher { 1 } <nl> + doesNotThrow ( ) , SpecialException , ExceptionMatcher { 1 } <nl> < / Original > <nl> < Expanded > <nl> - doesNotThrow ( ) , SpecialException , ExceptionMatcher { 1 } <nl> + doesNotThrow ( ) , SpecialException , ExceptionMatcher { 1 } <nl> < / Expanded > <nl> < / Expression > <nl> < OverallResults successes = " 0 " failures = " 2 " expectedFailures = " 0 " / > <nl> <nl> < Section name = " Type mismatch " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Expression success = " false " type = " CHECK_THROWS_MATCHES " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - throwsAsInt ( 1 ) , SpecialException , ExceptionMatcher { 1 } <nl> + throwsAsInt ( 1 ) , SpecialException , ExceptionMatcher { 1 } <nl> < / Original > <nl> < Expanded > <nl> - throwsAsInt ( 1 ) , SpecialException , ExceptionMatcher { 1 } <nl> + throwsAsInt ( 1 ) , SpecialException , ExceptionMatcher { 1 } <nl> < / Expanded > <nl> < Exception filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> Unknown exception <nl> <nl> < / Expression > <nl> < Expression success = " false " type = " REQUIRE_THROWS_MATCHES " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - throwsAsInt ( 1 ) , SpecialException , ExceptionMatcher { 1 } <nl> + throwsAsInt ( 1 ) , SpecialException , ExceptionMatcher { 1 } <nl> < / Original > <nl> < Expanded > <nl> - throwsAsInt ( 1 ) , SpecialException , ExceptionMatcher { 1 } <nl> + throwsAsInt ( 1 ) , SpecialException , ExceptionMatcher { 1 } <nl> < / Expanded > <nl> < Exception filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> Unknown exception <nl> <nl> < Section name = " Contents are wrong " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Expression success = " false " type = " CHECK_THROWS_MATCHES " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - throws ( 3 ) , SpecialException , ExceptionMatcher { 1 } <nl> + throws ( 3 ) , SpecialException , ExceptionMatcher { 1 } <nl> < / Original > <nl> < Expanded > <nl> { ? } special exception has value of 1 <nl> <nl> < / Expression > <nl> < Expression success = " false " type = " REQUIRE_THROWS_MATCHES " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - throws ( 4 ) , SpecialException , ExceptionMatcher { 1 } <nl> + throws ( 4 ) , SpecialException , ExceptionMatcher { 1 } <nl> < / Original > <nl> < Expanded > <nl> { ? } special exception has value of 1 <nl> <nl> < TestCase name = " Exception matchers that succeed " tags = " [ ! throws ] [ exceptions ] [ matchers ] " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Expression success = " true " type = " CHECK_THROWS_MATCHES " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - throws ( 1 ) , SpecialException , ExceptionMatcher { 1 } <nl> + throws ( 1 ) , SpecialException , ExceptionMatcher { 1 } <nl> < / Original > <nl> < Expanded > <nl> { ? } special exception has value of 1 <nl> <nl> < / Expression > <nl> < Expression success = " true " type = " REQUIRE_THROWS_MATCHES " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - throws ( 2 ) , SpecialException , ExceptionMatcher { 2 } <nl> + throws ( 2 ) , SpecialException , ExceptionMatcher { 2 } <nl> < / Original > <nl> < Expanded > <nl> { ? } special exception has value of 2 <nl> <nl> < TestCase name = " Matchers can be ( AllOf ) composed with the & amp ; & amp ; operator " tags = " [ matchers ] [ operator & amp ; & amp ; ] [ operators ] " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Expression success = " true " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - testStringForMatching ( ) , Contains ( " string " ) & amp ; & amp ; Contains ( " abc " ) & amp ; & amp ; Contains ( " substring " ) & amp ; & amp ; Contains ( " contains " ) <nl> + testStringForMatching ( ) , Contains ( " string " ) & amp ; & amp ; Contains ( " abc " ) & amp ; & amp ; Contains ( " substring " ) & amp ; & amp ; Contains ( " contains " ) <nl> < / Original > <nl> < Expanded > <nl> " this string contains ' abc ' as a substring " ( contains : " string " and contains : " abc " and contains : " substring " and contains : " contains " ) <nl> <nl> < TestCase name = " Matchers can be ( AnyOf ) composed with the | | operator " tags = " [ matchers ] [ operators ] [ operator | | ] " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Expression success = " true " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - testStringForMatching ( ) , Contains ( " string " ) | | Contains ( " different " ) | | Contains ( " random " ) <nl> + testStringForMatching ( ) , Contains ( " string " ) | | Contains ( " different " ) | | Contains ( " random " ) <nl> < / Original > <nl> < Expanded > <nl> " this string contains ' abc ' as a substring " ( contains : " string " or contains : " different " or contains : " random " ) <nl> <nl> < / Expression > <nl> < Expression success = " true " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - testStringForMatching2 ( ) , Contains ( " string " ) | | Contains ( " different " ) | | Contains ( " random " ) <nl> + testStringForMatching2 ( ) , Contains ( " string " ) | | Contains ( " different " ) | | Contains ( " random " ) <nl> < / Original > <nl> < Expanded > <nl> " some completely different text that contains one common word " ( contains : " string " or contains : " different " or contains : " random " ) <nl> <nl> < TestCase name = " Matchers can be composed with both & amp ; & amp ; and | | " tags = " [ matchers ] [ operator & amp ; & amp ; ] [ operators ] [ operator | | ] " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Expression success = " true " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - testStringForMatching ( ) , ( Contains ( " string " ) | | Contains ( " different " ) ) & amp ; & amp ; Contains ( " substring " ) <nl> + testStringForMatching ( ) , ( Contains ( " string " ) | | Contains ( " different " ) ) & amp ; & amp ; Contains ( " substring " ) <nl> < / Original > <nl> < Expanded > <nl> " this string contains ' abc ' as a substring " ( ( contains : " string " or contains : " different " ) and contains : " substring " ) <nl> <nl> < TestCase name = " Matchers can be composed with both & amp ; & amp ; and | | - failing " tags = " [ . ] [ . failing ] [ matchers ] [ operator & amp ; & amp ; ] [ operators ] [ operator | | ] " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Expression success = " false " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - testStringForMatching ( ) , ( Contains ( " string " ) | | Contains ( " different " ) ) & amp ; & amp ; Contains ( " random " ) <nl> + testStringForMatching ( ) , ( Contains ( " string " ) | | Contains ( " different " ) ) & amp ; & amp ; Contains ( " random " ) <nl> < / Original > <nl> < Expanded > <nl> " this string contains ' abc ' as a substring " ( ( contains : " string " or contains : " different " ) and contains : " random " ) <nl> <nl> < TestCase name = " Matchers can be negated ( Not ) with the ! operator " tags = " [ matchers ] [ not ] [ operators ] " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Expression success = " true " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - testStringForMatching ( ) , ! Contains ( " different " ) <nl> + testStringForMatching ( ) , ! Contains ( " different " ) <nl> < / Original > <nl> < Expanded > <nl> " this string contains ' abc ' as a substring " not contains : " different " <nl> <nl> < TestCase name = " Matchers can be negated ( Not ) with the ! operator - failing " tags = " [ . ] [ . failing ] [ matchers ] [ not ] [ operators ] " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Expression success = " false " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - testStringForMatching ( ) , ! Contains ( " substring " ) <nl> + testStringForMatching ( ) , ! Contains ( " substring " ) <nl> < / Original > <nl> < Expanded > <nl> " this string contains ' abc ' as a substring " not contains : " substring " <nl> Message from section two <nl> < TestCase name = " StartsWith string matcher " tags = " [ . ] [ failing ] [ matchers ] " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Expression success = " false " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - testStringForMatching ( ) , StartsWith ( " This String " ) <nl> + testStringForMatching ( ) , StartsWith ( " This String " ) <nl> < / Original > <nl> < Expanded > <nl> " this string contains ' abc ' as a substring " starts with : " This String " <nl> Message from section two <nl> < / Expression > <nl> < Expression success = " false " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - testStringForMatching ( ) , StartsWith ( " string " , Catch : : CaseSensitive : : No ) <nl> + testStringForMatching ( ) , StartsWith ( " string " , Catch : : CaseSensitive : : No ) <nl> < / Original > <nl> < Expanded > <nl> " this string contains ' abc ' as a substring " starts with : " string " ( case insensitive ) <nl> Message from section two <nl> < TestCase name = " String matchers " tags = " [ matchers ] " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Expression success = " true " type = " REQUIRE_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - testStringForMatching ( ) , Contains ( " string " ) <nl> + testStringForMatching ( ) , Contains ( " string " ) <nl> < / Original > <nl> < Expanded > <nl> " this string contains ' abc ' as a substring " contains : " string " <nl> Message from section two <nl> < / Expression > <nl> < Expression success = " true " type = " REQUIRE_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - testStringForMatching ( ) , Contains ( " string " , Catch : : CaseSensitive : : No ) <nl> + testStringForMatching ( ) , Contains ( " string " , Catch : : CaseSensitive : : No ) <nl> < / Original > <nl> < Expanded > <nl> " this string contains ' abc ' as a substring " contains : " string " ( case insensitive ) <nl> Message from section two <nl> < / Expression > <nl> < Expression success = " true " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - testStringForMatching ( ) , Contains ( " abc " ) <nl> + testStringForMatching ( ) , Contains ( " abc " ) <nl> < / Original > <nl> < Expanded > <nl> " this string contains ' abc ' as a substring " contains : " abc " <nl> Message from section two <nl> < / Expression > <nl> < Expression success = " true " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - testStringForMatching ( ) , Contains ( " aBC " , Catch : : CaseSensitive : : No ) <nl> + testStringForMatching ( ) , Contains ( " aBC " , Catch : : CaseSensitive : : No ) <nl> < / Original > <nl> < Expanded > <nl> " this string contains ' abc ' as a substring " contains : " abc " ( case insensitive ) <nl> Message from section two <nl> < / Expression > <nl> < Expression success = " true " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - testStringForMatching ( ) , StartsWith ( " this " ) <nl> + testStringForMatching ( ) , StartsWith ( " this " ) <nl> < / Original > <nl> < Expanded > <nl> " this string contains ' abc ' as a substring " starts with : " this " <nl> Message from section two <nl> < / Expression > <nl> < Expression success = " true " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - testStringForMatching ( ) , StartsWith ( " THIS " , Catch : : CaseSensitive : : No ) <nl> + testStringForMatching ( ) , StartsWith ( " THIS " , Catch : : CaseSensitive : : No ) <nl> < / Original > <nl> < Expanded > <nl> " this string contains ' abc ' as a substring " starts with : " this " ( case insensitive ) <nl> Message from section two <nl> < / Expression > <nl> < Expression success = " true " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - testStringForMatching ( ) , EndsWith ( " substring " ) <nl> + testStringForMatching ( ) , EndsWith ( " substring " ) <nl> < / Original > <nl> < Expanded > <nl> " this string contains ' abc ' as a substring " ends with : " substring " <nl> Message from section two <nl> < / Expression > <nl> < Expression success = " true " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - testStringForMatching ( ) , EndsWith ( " SuBsTrInG " , Catch : : CaseSensitive : : No ) <nl> + testStringForMatching ( ) , EndsWith ( " SuBsTrInG " , Catch : : CaseSensitive : : No ) <nl> < / Original > <nl> < Expanded > <nl> " this string contains ' abc ' as a substring " ends with : " substring " ( case insensitive ) <nl> Message from section two <nl> < Section name = " Contains ( element ) " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Expression success = " true " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - v , VectorContains ( 1 ) <nl> + v , VectorContains ( 1 ) <nl> < / Original > <nl> < Expanded > <nl> { 1 , 2 , 3 } Contains : 1 <nl> Message from section two <nl> < / Expression > <nl> < Expression success = " true " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - v , VectorContains ( 2 ) <nl> + v , VectorContains ( 2 ) <nl> < / Original > <nl> < Expanded > <nl> { 1 , 2 , 3 } Contains : 2 <nl> Message from section two <nl> < Section name = " Contains ( vector ) " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Expression success = " true " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - v , Contains ( v2 ) <nl> + v , Contains ( v2 ) <nl> < / Original > <nl> < Expanded > <nl> { 1 , 2 , 3 } Contains : { 1 , 2 } <nl> Message from section two <nl> < / Expression > <nl> < Expression success = " true " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - v , Contains ( v2 ) <nl> + v , Contains ( v2 ) <nl> < / Original > <nl> < Expanded > <nl> { 1 , 2 , 3 } Contains : { 1 , 2 , 3 } <nl> Message from section two <nl> < / Expression > <nl> < Expression success = " true " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - v , Contains ( empty ) <nl> + v , Contains ( empty ) <nl> < / Original > <nl> < Expanded > <nl> { 1 , 2 , 3 } Contains : { } <nl> Message from section two <nl> < / Expression > <nl> < Expression success = " true " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - empty , Contains ( empty ) <nl> + empty , Contains ( empty ) <nl> < / Original > <nl> < Expanded > <nl> { } Contains : { } <nl> Message from section two <nl> < Section name = " Contains ( element ) , composed " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Expression success = " true " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - v , VectorContains ( 1 ) & amp ; & amp ; VectorContains ( 2 ) <nl> + v , VectorContains ( 1 ) & amp ; & amp ; VectorContains ( 2 ) <nl> < / Original > <nl> < Expanded > <nl> { 1 , 2 , 3 } ( Contains : 1 and Contains : 2 ) <nl> Message from section two <nl> < Section name = " Equals " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Expression success = " true " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - v , Equals ( v ) <nl> + v , Equals ( v ) <nl> < / Original > <nl> < Expanded > <nl> { 1 , 2 , 3 } Equals : { 1 , 2 , 3 } <nl> Message from section two <nl> < / Expression > <nl> < Expression success = " true " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - empty , Equals ( empty ) <nl> + empty , Equals ( empty ) <nl> < / Original > <nl> < Expanded > <nl> { } Equals : { } <nl> Message from section two <nl> < / Expression > <nl> < Expression success = " true " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - v , Equals ( v2 ) <nl> + v , Equals ( v2 ) <nl> < / Original > <nl> < Expanded > <nl> { 1 , 2 , 3 } Equals : { 1 , 2 , 3 } <nl> Message from section two <nl> < Section name = " Contains ( element ) " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Expression success = " false " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - v , VectorContains ( - 1 ) <nl> + v , VectorContains ( - 1 ) <nl> < / Original > <nl> < Expanded > <nl> { 1 , 2 , 3 } Contains : - 1 <nl> Message from section two <nl> < / Expression > <nl> < Expression success = " false " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - empty , VectorContains ( 1 ) <nl> + empty , VectorContains ( 1 ) <nl> < / Original > <nl> < Expanded > <nl> { } Contains : 1 <nl> Message from section two <nl> < Section name = " Contains ( vector ) " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Expression success = " false " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - empty , Contains ( v ) <nl> + empty , Contains ( v ) <nl> < / Original > <nl> < Expanded > <nl> { } Contains : { 1 , 2 , 3 } <nl> Message from section two <nl> < / Expression > <nl> < Expression success = " false " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - v , Contains ( v2 ) <nl> + v , Contains ( v2 ) <nl> < / Original > <nl> < Expanded > <nl> { 1 , 2 , 3 } Contains : { 1 , 2 , 4 } <nl> Message from section two <nl> < Section name = " Equals " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Expression success = " false " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - v , Equals ( v2 ) <nl> + v , Equals ( v2 ) <nl> < / Original > <nl> < Expanded > <nl> { 1 , 2 , 3 } Equals : { 1 , 2 } <nl> Message from section two <nl> < / Expression > <nl> < Expression success = " false " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - v2 , Equals ( v ) <nl> + v2 , Equals ( v ) <nl> < / Original > <nl> < Expanded > <nl> { 1 , 2 } Equals : { 1 , 2 , 3 } <nl> Message from section two <nl> < / Expression > <nl> < Expression success = " false " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - empty , Equals ( v ) <nl> + empty , Equals ( v ) <nl> < / Original > <nl> < Expanded > <nl> { } Equals : { 1 , 2 , 3 } <nl> Message from section two <nl> < / Expression > <nl> < Expression success = " false " type = " CHECK_THAT " filename = " projects / < exe - name > / UsageTests / Matchers . tests . cpp " > <nl> < Original > <nl> - v , Equals ( empty ) <nl> + v , Equals ( empty ) <nl> < / Original > <nl> < Expanded > <nl> { 1 , 2 , 3 } Equals : { } <nl>
Rebased due to whitespace changes
catchorg/Catch2
8da845810d144b63cf69a51c65aed691e2043b50
2017-11-17T15:46:57Z
mmm a / src / mongo / s / chunk_manager_tests . cpp <nl> ppp b / src / mongo / s / chunk_manager_tests . cpp <nl> TEST_F ( ChunkManagerTests , Basic ) { <nl> <nl> std : : vector < BSONObj > shards { <nl> BSON ( ShardType : : name ( ) < < _shardId < < ShardType : : host ( ) <nl> - < < ConnectionString ( HostAndPort ( " $ hostFooBar : 27017 " ) ) . toString ( ) ) } ; <nl> + < < ConnectionString ( HostAndPort ( " hostFooBar : 27017 " ) ) . toString ( ) ) } ; <nl> <nl> / / Generate and save a set of chunks with metadata using a temporary ChunkManager . <nl> <nl> mmm a / src / mongo / s / request_types / add_shard_request_type . cpp <nl> ppp b / src / mongo / s / request_types / add_shard_request_type . cpp <nl> StatusWith < AddShardRequest > AddShardRequest : : parseInternalFields ( const BSONObj & <nl> } <nl> ConnectionString connString = std : : move ( swConnString . getValue ( ) ) ; <nl> <nl> + if ( connString . type ( ) ! = ConnectionString : : MASTER & & <nl> + connString . type ( ) ! = ConnectionString : : SET ) { <nl> + return { ErrorCodes : : FailedToParse , <nl> + stream ( ) < < " Invalid connection string " < < connString . toString ( ) } ; <nl> + } <nl> + <nl> AddShardRequest request ( std : : move ( connString ) ) ; <nl> <nl> / / optional fields <nl> mmm a / src / mongo / s / sharding_test_fixture . cpp <nl> ppp b / src / mongo / s / sharding_test_fixture . cpp <nl> void ShardingTestFixture : : setUp ( ) { <nl> shardId , connStr , targeterFactoryPtr - > create ( connStr ) ) ; <nl> } ; <nl> <nl> - ShardFactory : : BuilderCallable customBuilder = <nl> - [ targeterFactoryPtr ] ( const ShardId & shardId , const ConnectionString & connStr ) { <nl> - return stdx : : make_unique < ShardRemote > ( <nl> - shardId , connStr , targeterFactoryPtr - > create ( connStr ) ) ; <nl> - } ; <nl> - <nl> ShardFactory : : BuildersMap buildersMap { <nl> { ConnectionString : : SET , std : : move ( setBuilder ) } , <nl> { ConnectionString : : MASTER , std : : move ( masterBuilder ) } , <nl> - { ConnectionString : : CUSTOM , std : : move ( customBuilder ) } , <nl> } ; <nl> <nl> auto shardFactory = <nl>
SERVER - 24734 Check for an invalid ConnectionString type when parsing an addShard request on mongos
mongodb/mongo
5a3023e9ebf218c2a9a4fa455e6d87d724197a35
2016-06-24T04:05:08Z
mmm a / . travis . yml <nl> ppp b / . travis . yml <nl> compiler : <nl> addons : <nl> apt : <nl> sources : <nl> - - extras - precise <nl> + - ubuntu - toolchain - r - test <nl> packages : <nl> - g + + - 4 . 9 <nl> - valgrind <nl>
wrong sources
nlohmann/json
a4671428ca8abbb05e881b8c4344aa0e60fd2095
2015-07-24T19:52:56Z
mmm a / include / grpc / impl / codegen / grpc_types . h <nl> ppp b / include / grpc / impl / codegen / grpc_types . h <nl> typedef enum grpc_call_error { <nl> # define GRPC_INITIAL_METADATA_WAIT_FOR_READY ( 0x00000020u ) <nl> / * * DEPRECATED : for backward compatibility * / <nl> # define GRPC_INITIAL_METADATA_IGNORE_CONNECTIVITY \ <nl> - GRPC_INITIAL_METADATA_WAIT_FOR_READY <nl> + GRPC_INITIAL_METADATA_WAIT_FOR_READY <nl> / * * Signal that the call is cacheable . GRPC is free to use GET verb * / <nl> # define GRPC_INITIAL_METADATA_CACHEABLE_REQUEST ( 0x00000040u ) <nl> / * * Signal that GRPC_INITIAL_METADATA_WAIT_FOR_READY was explicitly set <nl> typedef enum grpc_call_error { <nl> # define GRPC_INITIAL_METADATA_WAIT_FOR_READY_EXPLICITLY_SET ( 0x00000080u ) <nl> <nl> / * * Mask of all valid flags * / <nl> - # define GRPC_INITIAL_METADATA_USED_MASK \ <nl> - ( GRPC_INITIAL_METADATA_IDEMPOTENT_REQUEST | \ <nl> - GRPC_INITIAL_METADATA_WAIT_FOR_READY | \ <nl> - GRPC_INITIAL_METADATA_CACHEABLE_REQUEST | \ <nl> + # define GRPC_INITIAL_METADATA_USED_MASK \ <nl> + ( GRPC_INITIAL_METADATA_IDEMPOTENT_REQUEST | \ <nl> + GRPC_INITIAL_METADATA_WAIT_FOR_READY | \ <nl> + GRPC_INITIAL_METADATA_CACHEABLE_REQUEST | \ <nl> GRPC_INITIAL_METADATA_WAIT_FOR_READY_EXPLICITLY_SET ) <nl> <nl> / * * A single metadata element * / <nl> mmm a / src / core / ext / client_config / client_channel . c <nl> ppp b / src / core / ext / client_config / client_channel . c <nl> typedef struct client_channel_call_data { <nl> grpc_deadline_state deadline_state ; <nl> gpr_timespec deadline ; <nl> <nl> - enum { WAIT_FOR_READY_UNSET , WAIT_FOR_READY_FALSE , WAIT_FOR_READY_TRUE } <nl> - wait_for_ready_from_service_config ; <nl> + enum { <nl> + WAIT_FOR_READY_UNSET , <nl> + WAIT_FOR_READY_FALSE , <nl> + WAIT_FOR_READY_TRUE <nl> + } wait_for_ready_from_service_config ; <nl> <nl> / / Request path . <nl> grpc_mdstr * path ; <nl> static grpc_error * cc_init_call_elem ( grpc_exec_ctx * exec_ctx , <nl> : grpc_method_config_table_ref ( chand - > method_config_table ) ; <nl> gpr_mu_unlock ( & chand - > mu ) ; <nl> grpc_method_config * method_config = <nl> - method_config_table = = NULL <nl> - ? NULL <nl> - : grpc_method_config_table_get_method_config ( method_config_table , <nl> - args - > path ) ; <nl> + method_config_table = = NULL ? NULL <nl> + : grpc_method_config_table_get_method_config ( <nl> + method_config_table , args - > path ) ; <nl> grpc_deadline_state_init ( exec_ctx , elem , args , method_config ) ; <nl> calld - > wait_for_ready_from_service_config = WAIT_FOR_READY_UNSET ; <nl> if ( method_config ! = NULL ) { <nl> - bool * wait_for_ready = grpc_method_config_get_wait_for_ready ( method_config ) ; <nl> + bool * wait_for_ready = grpc_method_config_get_wait_for_ready ( method_config ) ; <nl> if ( wait_for_ready ! = NULL ) { <nl> calld - > wait_for_ready_from_service_config = <nl> * wait_for_ready ? WAIT_FOR_READY_TRUE : WAIT_FOR_READY_FALSE ; <nl> mmm a / src / core / ext / client_config / method_config . c <nl> ppp b / src / core / ext / client_config / method_config . c <nl> static int timespec_cmp ( void * v1 , void * v2 ) { <nl> return gpr_time_cmp ( * ( gpr_timespec * ) v1 , * ( gpr_timespec * ) v2 ) ; <nl> } <nl> <nl> - static grpc_hash_table_vtable timespec_vtable = { <nl> - gpr_free , timespec_copy , timespec_cmp } ; <nl> + static grpc_hash_table_vtable timespec_vtable = { gpr_free , timespec_copy , <nl> + timespec_cmp } ; <nl> <nl> / / int32 vtable <nl> <nl> static grpc_hash_table_vtable int32_vtable = { gpr_free , int32_copy , int32_cmp } ; <nl> <nl> / / Hash table keys . <nl> # define GRPC_METHOD_CONFIG_WAIT_FOR_READY " grpc . wait_for_ready " / / bool <nl> - # define GRPC_METHOD_CONFIG_TIMEOUT " grpc . timeout " / / gpr_timespec <nl> + # define GRPC_METHOD_CONFIG_TIMEOUT " grpc . timeout " / / gpr_timespec <nl> # define GRPC_METHOD_CONFIG_MAX_REQUEST_MESSAGE_BYTES \ <nl> - " grpc . max_request_message_bytes " / / int32 <nl> + " grpc . max_request_message_bytes " / / int32 <nl> # define GRPC_METHOD_CONFIG_MAX_RESPONSE_MESSAGE_BYTES \ <nl> - " grpc . max_response_message_bytes " / / int32 <nl> + " grpc . max_response_message_bytes " / / int32 <nl> <nl> struct grpc_method_config { <nl> grpc_hash_table * table ; <nl> grpc_method_config * grpc_method_config_table_get_method_config ( <nl> return method_config ; <nl> } <nl> <nl> - static void * copy_arg ( void * p ) { <nl> - return grpc_method_config_table_ref ( p ) ; <nl> - } <nl> + static void * copy_arg ( void * p ) { return grpc_method_config_table_ref ( p ) ; } <nl> <nl> - static void destroy_arg ( void * p ) { <nl> - grpc_method_config_table_unref ( p ) ; <nl> - } <nl> + static void destroy_arg ( void * p ) { grpc_method_config_table_unref ( p ) ; } <nl> <nl> static int cmp_arg ( void * p1 , void * p2 ) { <nl> return grpc_method_config_table_cmp ( p1 , p2 ) ; <nl> mmm a / src / core / ext / resolver / sockaddr / sockaddr_resolver . c <nl> ppp b / src / core / ext / resolver / sockaddr / sockaddr_resolver . c <nl> static void sockaddr_maybe_finish_next_locked ( grpc_exec_ctx * exec_ctx , <nl> r - > published = true ; <nl> grpc_channel_args * lb_policy_args = NULL ; <nl> if ( r - > method_config_table ! = NULL ) { <nl> - const grpc_arg arg = grpc_method_config_table_create_channel_arg ( <nl> - r - > method_config_table ) ; <nl> + const grpc_arg arg = <nl> + grpc_method_config_table_create_channel_arg ( r - > method_config_table ) ; <nl> lb_policy_args = grpc_channel_args_copy_and_add ( NULL / * src * / , & arg , 1 ) ; <nl> } <nl> * r - > target_result = grpc_resolver_result_create ( <nl> static grpc_resolver * sockaddr_create ( <nl> / / Anything other than " 0 " is interpreted as true . <nl> bool wait_for_ready = <nl> wait_for_ready_str ! = NULL & & strcmp ( " 0 " , wait_for_ready_str ) ! = 0 ; <nl> - const char * timeout_str = <nl> + const char * timeout_str = <nl> grpc_uri_get_query_arg ( args - > uri , " timeout_seconds " ) ; <nl> - gpr_timespec timeout = { <nl> - timeout_str = = NULL ? 0 : atoi ( timeout_str ) , 0 , GPR_CLOCK_MONOTONIC } ; <nl> - const char * max_request_message_bytes_str = <nl> + gpr_timespec timeout = { timeout_str = = NULL ? 0 : atoi ( timeout_str ) , 0 , <nl> + GPR_CLOCK_MONOTONIC } ; <nl> + const char * max_request_message_bytes_str = <nl> grpc_uri_get_query_arg ( args - > uri , " max_request_message_bytes " ) ; <nl> int32_t max_request_message_bytes = <nl> max_request_message_bytes_str = = NULL <nl> - ? 0 : atoi ( max_request_message_bytes_str ) ; <nl> - const char * max_response_message_bytes_str = <nl> + ? 0 <nl> + : atoi ( max_request_message_bytes_str ) ; <nl> + const char * max_response_message_bytes_str = <nl> grpc_uri_get_query_arg ( args - > uri , " max_response_message_bytes " ) ; <nl> int32_t max_response_message_bytes = <nl> max_response_message_bytes_str = = NULL <nl> - ? 0 : atoi ( max_response_message_bytes_str ) ; <nl> + ? 0 <nl> + : atoi ( max_response_message_bytes_str ) ; <nl> grpc_method_config * method_config = grpc_method_config_create ( <nl> wait_for_ready_str = = NULL ? NULL : & wait_for_ready , <nl> timeout_str = = NULL ? NULL : & timeout , <nl> - max_request_message_bytes_str = = NULL <nl> - ? NULL : & max_request_message_bytes , <nl> - max_response_message_bytes_str = = NULL <nl> - ? NULL : & max_response_message_bytes ) ; <nl> - grpc_method_config_table_entry entry = { <nl> - grpc_mdstr_from_string ( method_name ) , method_config } ; <nl> + max_request_message_bytes_str = = NULL ? NULL <nl> + : & max_request_message_bytes , <nl> + max_response_message_bytes_str = = NULL ? NULL <nl> + : & max_response_message_bytes ) ; <nl> + grpc_method_config_table_entry entry = { grpc_mdstr_from_string ( method_name ) , <nl> + method_config } ; <nl> r - > method_config_table = grpc_method_config_table_create ( 1 , & entry ) ; <nl> GRPC_MDSTR_UNREF ( entry . method_name ) ; <nl> grpc_method_config_unref ( method_config ) ; <nl> mmm a / src / core / lib / channel / message_size_filter . c <nl> ppp b / src / core / lib / channel / message_size_filter . c <nl> <nl> # include < grpc / support / log . h > <nl> # include < grpc / support / string_util . h > <nl> <nl> - # include " src / core / lib / channel / channel_args . h " <nl> # include " src / core / ext / client_config / method_config . h " <nl> + # include " src / core / lib / channel / channel_args . h " <nl> <nl> # define DEFAULT_MAX_SEND_MESSAGE_LENGTH - 1 / / Unlimited . <nl> / / The protobuf library will ( by default ) start warning at 100 megs . <nl> static void init_channel_elem ( grpc_exec_ctx * exec_ctx , <nl> } <nl> } <nl> / / Get method config table from channel args . <nl> - const grpc_arg * channel_arg = grpc_channel_args_find ( <nl> - args - > channel_args , GRPC_ARG_SERVICE_CONFIG ) ; <nl> + const grpc_arg * channel_arg = <nl> + grpc_channel_args_find ( args - > channel_args , GRPC_ARG_SERVICE_CONFIG ) ; <nl> if ( channel_arg ! = NULL ) { <nl> GPR_ASSERT ( channel_arg - > type = = GRPC_ARG_POINTER ) ; <nl> chand - > method_config_table = grpc_method_config_table_ref ( <nl> - ( grpc_method_config_table * ) channel_arg - > value . pointer . p ) ; <nl> + ( grpc_method_config_table * ) channel_arg - > value . pointer . p ) ; <nl> } <nl> } <nl> <nl> mmm a / src / core / lib / transport / hashtable . c <nl> ppp b / src / core / lib / transport / hashtable . c <nl> struct grpc_hash_table { <nl> <nl> / / Helper function for insert and get operations that performs quadratic <nl> / / probing ( https : / / en . wikipedia . org / wiki / Quadratic_probing ) . <nl> - static size_t grpc_hash_table_find_index ( <nl> - grpc_hash_table * table , grpc_mdstr * key , bool find_empty ) { <nl> + static size_t grpc_hash_table_find_index ( grpc_hash_table * table , <nl> + grpc_mdstr * key , bool find_empty ) { <nl> for ( size_t i = 0 ; i < table - > num_entries ; + + i ) { <nl> const size_t idx = ( key - > hash + i * i ) % table - > num_entries ; <nl> if ( table - > entries [ idx ] . key = = NULL ) <nl> mmm a / src / core / lib / transport / hashtable . h <nl> ppp b / src / core / lib / transport / hashtable . h <nl> typedef struct grpc_hash_table_vtable { <nl> <nl> typedef struct grpc_hash_table_entry { <nl> grpc_mdstr * key ; <nl> - void * value ; / * Must not be NULL . * / <nl> + void * value ; / * Must not be NULL . * / <nl> const grpc_hash_table_vtable * vtable ; <nl> } grpc_hash_table_entry ; <nl> <nl> mmm a / test / core / client_config / resolvers / sockaddr_resolver_test . c <nl> ppp b / test / core / client_config / resolvers / sockaddr_resolver_test . c <nl> void on_resolution_cb ( grpc_exec_ctx * exec_ctx , void * arg , grpc_error * error ) { <nl> if ( res - > expected_method_name = = NULL ) { <nl> GPR_ASSERT ( lb_policy_args = = NULL ) ; <nl> } else { <nl> - const grpc_arg * channel_arg = grpc_channel_args_find ( <nl> - lb_policy_args , GRPC_ARG_SERVICE_CONFIG ) ; <nl> + const grpc_arg * channel_arg = <nl> + grpc_channel_args_find ( lb_policy_args , GRPC_ARG_SERVICE_CONFIG ) ; <nl> GPR_ASSERT ( channel_arg ! = NULL ) ; <nl> GPR_ASSERT ( channel_arg - > type = = GRPC_ARG_POINTER ) ; <nl> grpc_method_config_table * method_config_table = <nl> void on_resolution_cb ( grpc_exec_ctx * exec_ctx , void * arg , grpc_error * error ) { <nl> grpc_method_config_table_get_method_config ( method_config_table , path ) ; <nl> GRPC_MDSTR_UNREF ( path ) ; <nl> GPR_ASSERT ( method_config ! = NULL ) ; <nl> - bool * wait_for_ready = grpc_method_config_get_wait_for_ready ( method_config ) ; <nl> + bool * wait_for_ready = grpc_method_config_get_wait_for_ready ( method_config ) ; <nl> GPR_ASSERT ( wait_for_ready ! = NULL ) ; <nl> GPR_ASSERT ( * wait_for_ready = = res - > expected_wait_for_ready ) ; <nl> - gpr_timespec * timeout = grpc_method_config_get_timeout ( method_config ) ; <nl> + gpr_timespec * timeout = grpc_method_config_get_timeout ( method_config ) ; <nl> GPR_ASSERT ( timeout ! = NULL ) ; <nl> GPR_ASSERT ( gpr_time_cmp ( * timeout , res - > expected_timeout ) = = 0 ) ; <nl> - int32_t * max_request_message_bytes = <nl> + int32_t * max_request_message_bytes = <nl> grpc_method_config_get_max_request_message_bytes ( method_config ) ; <nl> GPR_ASSERT ( max_request_message_bytes ! = NULL ) ; <nl> GPR_ASSERT ( * max_request_message_bytes = = <nl> res - > expected_max_request_message_bytes ) ; <nl> - int32_t * max_response_message_bytes = <nl> + int32_t * max_response_message_bytes = <nl> grpc_method_config_get_max_response_message_bytes ( method_config ) ; <nl> GPR_ASSERT ( max_response_message_bytes ! = NULL ) ; <nl> GPR_ASSERT ( * max_response_message_bytes = = <nl> static void test_succeeds ( grpc_resolver_factory * factory , const char * string ) { <nl> } <nl> <nl> static void test_succeeds_with_service_config ( <nl> - grpc_resolver_factory * factory , const char * string , <nl> - const char * method_name , bool wait_for_ready , gpr_timespec timeout , <nl> + grpc_resolver_factory * factory , const char * string , const char * method_name , <nl> + bool wait_for_ready , gpr_timespec timeout , <nl> int32_t max_request_message_bytes , int32_t max_response_message_bytes ) { <nl> grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT ; <nl> grpc_uri * uri = grpc_uri_parse ( string , 0 ) ; <nl>
clang - format
grpc/grpc
afa8c1051ec585222e0bb02a63c6c25a4a3b4d3c
2016-09-30T17:56:53Z
mmm a / swoole_http_client . c <nl> ppp b / swoole_http_client . c <nl> static void http_client_onReceive ( swClient * cli , char * data , uint32_t length ) <nl> http - > header_completed = 1 ; <nl> data = buffer - > str ; <nl> length = buffer - > length ; <nl> + swString_clear ( buffer ) ; <nl> } <nl> } <nl> <nl> - <nl> long parsed_n = php_http_parser_execute ( & http - > parser , & http_parser_settings , data , length ) ; <nl> if ( parsed_n < 0 ) <nl> { <nl> mmm a / tests / swoole_http_server / rawContent . phpt <nl> ppp b / tests / swoole_http_server / rawContent . phpt <nl> $ closeServer = start_server ( $ simple_http_server , HTTP_SERVER_HOST , $ port = get_o <nl> $ payload = RandStr : : gen ( 1024 * 1024 ) ; <nl> testRawcontent ( HTTP_SERVER_HOST , $ port , $ payload , function ( \ swoole_http_client $ cli ) use ( $ closeServer , $ payload ) { <nl> assert ( $ cli - > body = = = $ payload ) ; <nl> - echo " SUCCESS " ; <nl> + echo " SUCCESS \ n " ; <nl> $ closeServer ( ) ; <nl> } ) ; <nl> - <nl> - suicide ( 1000 , SIGTERM , $ closeServer ) ; <nl> + swoole_event : : wait ( ) ; <nl> ? > <nl> - - EXPECT - - <nl> SUCCESS <nl> \ No newline at end of file <nl>
fix http_client bugs .
swoole/swoole-src
e6d06f0ab7092fbdccd603472625e8513bcd9b39
2017-08-29T08:52:21Z
mmm a / python / mxnet / io . py <nl> ppp b / python / mxnet / io . py <nl> class ResizeIter ( DataIter ) : <nl> " " " <nl> <nl> def __init__ ( self , data_iter , size , reset_internal = True ) : <nl> + super ( ResizeIter , self ) . __init__ ( ) <nl> self . data_iter = data_iter <nl> self . size = size <nl> self . reset_internal = reset_internal <nl> self . cur = 0 <nl> self . current_batch = None <nl> <nl> + self . provide_data = data_iter . provide_data <nl> + self . provide_label = data_iter . provide_label <nl> + self . batch_size = data_iter . batch_size <nl> + <nl> def reset ( self ) : <nl> self . cur = 0 <nl> if self . reset_internal : <nl>
lint
apache/incubator-mxnet
58ac3aecd86d255d3f5b507b31126301855f6202
2016-02-03T08:11:22Z
mmm a / lib / SILPasses / AllocBoxToStack . cpp <nl> ppp b / lib / SILPasses / AllocBoxToStack . cpp <nl> static bool checkPartialApplyBody ( PartialApplyInst * PAI , <nl> <nl> auto Callee = PAI - > getCallee ( ) ; <nl> if ( ! isa < FunctionRefInst > ( Callee ) ) <nl> - return true ; <nl> + return false ; <nl> <nl> auto * FRI = cast < FunctionRefInst > ( Callee ) ; <nl> <nl>
Fix another logic inversion bug .
apple/swift
a18b979da0b8f1af3f2557884d605a5526f03a15
2014-03-29T05:53:52Z
mmm a / Makefile <nl> ppp b / Makefile <nl> LIBQPS_SRC = \ <nl> test / cpp / qps / client_async . cc \ <nl> test / cpp / qps / client_sync . cc \ <nl> test / cpp / qps / driver . cc \ <nl> - test / cpp / qps / limit_cores . cc \ <nl> test / cpp / qps / parse_json . cc \ <nl> test / cpp / qps / qps_worker . cc \ <nl> test / cpp / qps / report . cc \ <nl> endif <nl> $ ( OBJDIR ) / $ ( CONFIG ) / test / cpp / qps / client_async . o : $ ( GENDIR ) / src / proto / grpc / testing / messages . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / messages . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / payloads . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / payloads . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / stats . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / stats . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / control . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / control . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / services . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / services . grpc . pb . cc <nl> $ ( OBJDIR ) / $ ( CONFIG ) / test / cpp / qps / client_sync . o : $ ( GENDIR ) / src / proto / grpc / testing / messages . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / messages . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / payloads . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / payloads . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / stats . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / stats . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / control . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / control . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / services . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / services . grpc . pb . cc <nl> $ ( OBJDIR ) / $ ( CONFIG ) / test / cpp / qps / driver . o : $ ( GENDIR ) / src / proto / grpc / testing / messages . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / messages . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / payloads . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / payloads . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / stats . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / stats . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / control . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / control . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / services . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / services . grpc . pb . cc <nl> - $ ( OBJDIR ) / $ ( CONFIG ) / test / cpp / qps / limit_cores . o : $ ( GENDIR ) / src / proto / grpc / testing / messages . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / messages . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / payloads . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / payloads . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / stats . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / stats . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / control . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / control . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / services . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / services . grpc . pb . cc <nl> $ ( OBJDIR ) / $ ( CONFIG ) / test / cpp / qps / parse_json . o : $ ( GENDIR ) / src / proto / grpc / testing / messages . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / messages . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / payloads . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / payloads . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / stats . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / stats . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / control . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / control . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / services . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / services . grpc . pb . cc <nl> $ ( OBJDIR ) / $ ( CONFIG ) / test / cpp / qps / qps_worker . o : $ ( GENDIR ) / src / proto / grpc / testing / messages . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / messages . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / payloads . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / payloads . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / stats . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / stats . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / control . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / control . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / services . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / services . grpc . pb . cc <nl> $ ( OBJDIR ) / $ ( CONFIG ) / test / cpp / qps / report . o : $ ( GENDIR ) / src / proto / grpc / testing / messages . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / messages . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / payloads . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / payloads . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / stats . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / stats . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / control . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / control . grpc . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / services . pb . cc $ ( GENDIR ) / src / proto / grpc / testing / services . grpc . pb . cc <nl> test / cpp / interop / server_helper . cc : $ ( OPENSSL_DEP ) <nl> test / cpp / qps / client_async . cc : $ ( OPENSSL_DEP ) <nl> test / cpp / qps / client_sync . cc : $ ( OPENSSL_DEP ) <nl> test / cpp / qps / driver . cc : $ ( OPENSSL_DEP ) <nl> - test / cpp / qps / limit_cores . cc : $ ( OPENSSL_DEP ) <nl> test / cpp / qps / parse_json . cc : $ ( OPENSSL_DEP ) <nl> test / cpp / qps / qps_worker . cc : $ ( OPENSSL_DEP ) <nl> test / cpp / qps / report . cc : $ ( OPENSSL_DEP ) <nl> mmm a / build . yaml <nl> ppp b / build . yaml <nl> libs : <nl> - test / cpp / qps / client_async . cc <nl> - test / cpp / qps / client_sync . cc <nl> - test / cpp / qps / driver . cc <nl> - - test / cpp / qps / limit_cores . cc <nl> - test / cpp / qps / parse_json . cc <nl> - test / cpp / qps / qps_worker . cc <nl> - test / cpp / qps / report . cc <nl> mmm a / test / cpp / qps / client . h <nl> ppp b / test / cpp / qps / client . h <nl> <nl> <nl> # include " test / cpp / qps / histogram . h " <nl> # include " test / cpp / qps / interarrival . h " <nl> - # include " test / cpp / qps / limit_cores . h " <nl> # include " test / cpp / qps / usage_timer . h " <nl> # include " test / cpp / util / create_test_channel . h " <nl> <nl> mmm a / test / cpp / qps / driver . cc <nl> ppp b / test / cpp / qps / driver . cc <nl> std : : unique_ptr < ScenarioResult > RunScenario ( <nl> <nl> ServerConfig server_config = initial_server_config ; <nl> if ( server_config . core_limit ( ) ! = 0 ) { <nl> - gpr_log ( GPR_WARN , " server config core limit is set but ignored by driver " ) ; <nl> + gpr_log ( GPR_ERROR , " server config core limit is set but ignored by driver " ) ; <nl> } <nl> <nl> ServerArgs args ; <nl> std : : unique_ptr < ScenarioResult > RunScenario ( <nl> ClientConfig per_client_config = client_config ; <nl> <nl> if ( initial_client_config . core_limit ( ) ! = 0 ) { <nl> - gpr_log ( GPR_WARN , " client config core limit set but ignored " ) ; <nl> + gpr_log ( GPR_ERROR , " client config core limit set but ignored " ) ; <nl> } <nl> <nl> / / Reduce channel count so that total channels specified is held regardless <nl> mmm a / test / cpp / qps / server . h <nl> ppp b / test / cpp / qps / server . h <nl> <nl> # include " src / proto / grpc / testing / messages . grpc . pb . h " <nl> # include " test / core / end2end / data / ssl_test_data . h " <nl> # include " test / core / util / port . h " <nl> - # include " test / cpp / qps / limit_cores . h " <nl> # include " test / cpp / qps / usage_timer . h " <nl> <nl> namespace grpc { <nl> mmm a / tools / run_tests / generated / sources_and_headers . json <nl> ppp b / tools / run_tests / generated / sources_and_headers . json <nl> <nl> " test / cpp / qps / driver . h " , <nl> " test / cpp / qps / histogram . h " , <nl> " test / cpp / qps / interarrival . h " , <nl> - " test / cpp / qps / limit_cores . cc " , <nl> " test / cpp / qps / limit_cores . h " , <nl> " test / cpp / qps / parse_json . cc " , <nl> " test / cpp / qps / parse_json . h " , <nl> mmm a / tools / run_tests / generated / tests . json <nl> ppp b / tools / run_tests / generated / tests . json <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_generic_async_streaming_ping_pong_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " core_limit \ " : 1 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " server_type \ " : \ " ASYNC_GENERIC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_generic_async_streaming_ping_pong_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " server_type \ " : \ " ASYNC_GENERIC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_generic_async_streaming_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " server_type \ " : \ " ASYNC_GENERIC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_generic_async_streaming_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " server_type \ " : \ " ASYNC_GENERIC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_generic_async_streaming_qps_one_server_core_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " core_limit \ " : 1 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " server_type \ " : \ " ASYNC_GENERIC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_generic_async_streaming_qps_one_server_core_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " server_type \ " : \ " ASYNC_GENERIC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_unary_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_unary_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_streaming_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_streaming_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_unary_ping_pong_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " core_limit \ " : 1 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_unary_ping_pong_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_unary_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 16 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_unary_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 16 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_unary_qps_unconstrained_secure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 16 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_unary_qps_unconstrained_secure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 16 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_unary_ping_pong_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " core_limit \ " : 1 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_unary_ping_pong_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_unary_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_unary_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_unary_qps_unconstrained_secure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_unary_qps_unconstrained_secure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_streaming_ping_pong_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " core_limit \ " : 1 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_streaming_ping_pong_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_streaming_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 16 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_streaming_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 16 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_streaming_qps_unconstrained_secure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 16 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_streaming_qps_unconstrained_secure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 16 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_streaming_ping_pong_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " core_limit \ " : 1 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_streaming_ping_pong_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_streaming_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_streaming_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_streaming_qps_unconstrained_secure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_streaming_qps_unconstrained_secure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_generic_async_streaming_ping_pong_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " core_limit \ " : 1 , \ " security_params \ " : null , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " server_type \ " : \ " ASYNC_GENERIC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_generic_async_streaming_ping_pong_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " security_params \ " : null , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " server_type \ " : \ " ASYNC_GENERIC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_generic_async_streaming_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : null , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " server_type \ " : \ " ASYNC_GENERIC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_generic_async_streaming_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " server_type \ " : \ " ASYNC_GENERIC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_generic_async_streaming_qps_one_server_core_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " core_limit \ " : 1 , \ " security_params \ " : null , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " server_type \ " : \ " ASYNC_GENERIC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_generic_async_streaming_qps_one_server_core_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " security_params \ " : null , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " server_type \ " : \ " ASYNC_GENERIC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_unary_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_unary_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_streaming_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_streaming_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_unary_ping_pong_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " core_limit \ " : 1 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_unary_ping_pong_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_unary_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 16 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_unary_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 16 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_unary_qps_unconstrained_insecure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 16 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_unary_qps_unconstrained_insecure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 16 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_unary_ping_pong_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " core_limit \ " : 1 , \ " security_params \ " : null , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_unary_ping_pong_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " security_params \ " : null , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_unary_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_unary_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_unary_qps_unconstrained_insecure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_unary_qps_unconstrained_insecure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_streaming_ping_pong_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " core_limit \ " : 1 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_streaming_ping_pong_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_streaming_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 16 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_streaming_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 16 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_streaming_qps_unconstrained_insecure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 16 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_streaming_qps_unconstrained_insecure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 16 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_streaming_ping_pong_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " core_limit \ " : 1 , \ " security_params \ " : null , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_streaming_ping_pong_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " security_params \ " : null , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_streaming_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_streaming_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_streaming_qps_unconstrained_insecure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_streaming_qps_unconstrained_insecure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_generic_async_streaming_ping_pong_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " core_limit \ " : 1 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " server_type \ " : \ " ASYNC_GENERIC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_generic_async_streaming_ping_pong_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " server_type \ " : \ " ASYNC_GENERIC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_generic_async_streaming_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " server_type \ " : \ " ASYNC_GENERIC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_generic_async_streaming_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " server_type \ " : \ " ASYNC_GENERIC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_generic_async_streaming_qps_one_server_core_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " core_limit \ " : 1 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " server_type \ " : \ " ASYNC_GENERIC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_generic_async_streaming_qps_one_server_core_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " server_type \ " : \ " ASYNC_GENERIC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_unary_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 10 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_unary_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 10 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_streaming_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 10 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_streaming_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 10 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_unary_ping_pong_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " core_limit \ " : 1 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_unary_ping_pong_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_unary_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_unary_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_unary_qps_unconstrained_secure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_unary_qps_unconstrained_secure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_unary_ping_pong_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " core_limit \ " : 1 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_unary_ping_pong_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_unary_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_unary_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_unary_qps_unconstrained_secure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_unary_qps_unconstrained_secure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_streaming_ping_pong_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " core_limit \ " : 1 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_streaming_ping_pong_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_streaming_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_streaming_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_streaming_qps_unconstrained_secure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_streaming_qps_unconstrained_secure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_streaming_ping_pong_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " core_limit \ " : 1 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_streaming_ping_pong_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_streaming_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_streaming_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_streaming_qps_unconstrained_secure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_streaming_qps_unconstrained_secure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_generic_async_streaming_ping_pong_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " core_limit \ " : 1 , \ " security_params \ " : null , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " server_type \ " : \ " ASYNC_GENERIC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_generic_async_streaming_ping_pong_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " security_params \ " : null , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " server_type \ " : \ " ASYNC_GENERIC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_generic_async_streaming_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : null , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " server_type \ " : \ " ASYNC_GENERIC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_generic_async_streaming_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " server_type \ " : \ " ASYNC_GENERIC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_generic_async_streaming_qps_one_server_core_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " core_limit \ " : 1 , \ " security_params \ " : null , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " server_type \ " : \ " ASYNC_GENERIC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_generic_async_streaming_qps_one_server_core_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " security_params \ " : null , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " server_type \ " : \ " ASYNC_GENERIC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " bytebuf_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_unary_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 10 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_unary_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 10 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_streaming_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 10 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_streaming_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 10 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_unary_ping_pong_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " core_limit \ " : 1 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_unary_ping_pong_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_unary_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_unary_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_unary_qps_unconstrained_insecure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_unary_qps_unconstrained_insecure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_unary_ping_pong_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " core_limit \ " : 1 , \ " security_params \ " : null , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_unary_ping_pong_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " security_params \ " : null , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_unary_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_unary_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_unary_qps_unconstrained_insecure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_unary_qps_unconstrained_insecure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_streaming_ping_pong_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " core_limit \ " : 1 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_streaming_ping_pong_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_streaming_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_streaming_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_streaming_qps_unconstrained_insecure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_sync_streaming_qps_unconstrained_insecure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " SYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_streaming_ping_pong_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " core_limit \ " : 1 , \ " security_params \ " : null , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_streaming_ping_pong_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 1 , \ " security_params \ " : null , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 1 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 1 , \ " async_client_threads \ " : 1 , \ " outstanding_rpcs_per_channel \ " : 1 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_streaming_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_streaming_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_streaming_qps_unconstrained_insecure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " core_limit \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_streaming_qps_unconstrained_insecure_500kib_resource_quota \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " resource_quota_size \ " : 512000 , \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " server_type \ " : \ " ASYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : { \ " simple_params \ " : { \ " resp_size \ " : 0 , \ " req_size \ " : 0 } } , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> mmm a / vsprojects / vcxproj / qps / qps . vcxproj <nl> ppp b / vsprojects / vcxproj / qps / qps . vcxproj <nl> <nl> < / ClCompile > <nl> < ClCompile Include = " $ ( SolutionDir ) \ . . \ test \ cpp \ qps \ driver . cc " > <nl> < / ClCompile > <nl> - < ClCompile Include = " $ ( SolutionDir ) \ . . \ test \ cpp \ qps \ limit_cores . cc " > <nl> - < / ClCompile > <nl> < ClCompile Include = " $ ( SolutionDir ) \ . . \ test \ cpp \ qps \ parse_json . cc " > <nl> < / ClCompile > <nl> < ClCompile Include = " $ ( SolutionDir ) \ . . \ test \ cpp \ qps \ qps_worker . cc " > <nl> mmm a / vsprojects / vcxproj / qps / qps . vcxproj . filters <nl> ppp b / vsprojects / vcxproj / qps / qps . vcxproj . filters <nl> <nl> < ClCompile Include = " $ ( SolutionDir ) \ . . \ test \ cpp \ qps \ driver . cc " > <nl> < Filter > test \ cpp \ qps < / Filter > <nl> < / ClCompile > <nl> - < ClCompile Include = " $ ( SolutionDir ) \ . . \ test \ cpp \ qps \ limit_cores . cc " > <nl> - < Filter > test \ cpp \ qps < / Filter > <nl> - < / ClCompile > <nl> < ClCompile Include = " $ ( SolutionDir ) \ . . \ test \ cpp \ qps \ parse_json . cc " > <nl> < Filter > test \ cpp \ qps < / Filter > <nl> < / ClCompile > <nl>
re - run generate project to build qps json driver
grpc/grpc
6ff1ca4871d73dd018e33bfca0df896570c0d429
2017-01-11T22:25:55Z
mmm a / editor / editor_node . cpp <nl> ppp b / editor / editor_node . cpp <nl> void EditorNode : : _menu_option_confirm ( int p_option , bool p_confirmed ) { <nl> file - > set_title ( p_option = = FILE_OPEN_SCENE ? TTR ( " Open Scene " ) : TTR ( " Open Base Scene " ) ) ; <nl> file - > popup_centered_ratio ( ) ; <nl> <nl> + } break ; <nl> + case FILE_QUICK_OPEN : { <nl> + <nl> + quick_open - > popup_dialog ( " Resource " , true ) ; <nl> + quick_open - > set_title ( TTR ( " Quick Open . . . " ) ) ; <nl> + <nl> } break ; <nl> case FILE_QUICK_OPEN_SCENE : { <nl> <nl> EditorNode : : EditorNode ( ) { <nl> p - > add_separator ( ) ; <nl> p - > add_submenu_item ( TTR ( " Open Recent " ) , " RecentScenes " , FILE_OPEN_RECENT ) ; <nl> p - > add_separator ( ) ; <nl> + p - > add_shortcut ( ED_SHORTCUT ( " editor / quick_open " , TTR ( " Quick Open . . . " ) , KEY_MASK_SHIFT + KEY_MASK_ALT + KEY_O ) , FILE_QUICK_OPEN ) ; <nl> p - > add_shortcut ( ED_SHORTCUT ( " editor / quick_open_scene " , TTR ( " Quick Open Scene . . . " ) , KEY_MASK_SHIFT + KEY_MASK_CMD + KEY_O ) , FILE_QUICK_OPEN_SCENE ) ; <nl> p - > add_shortcut ( ED_SHORTCUT ( " editor / quick_open_script " , TTR ( " Quick Open Script . . . " ) , KEY_MASK_ALT + KEY_MASK_CMD + KEY_O ) , FILE_QUICK_OPEN_SCRIPT ) ; <nl> p - > add_separator ( ) ; <nl> mmm a / editor / editor_node . h <nl> ppp b / editor / editor_node . h <nl> class EditorNode : public Node { <nl> FILE_SAVE_OPTIMIZED , <nl> FILE_OPEN_RECENT , <nl> FILE_OPEN_OLD_SCENE , <nl> + FILE_QUICK_OPEN , <nl> FILE_QUICK_OPEN_SCENE , <nl> FILE_QUICK_OPEN_SCRIPT , <nl> FILE_OPEN_PREV , <nl>
Add Quick Open dialog
godotengine/godot
ffb6aab1f4c4402352c99579b49c7ffb3eb56324
2019-05-28T16:27:18Z
mmm a / src / TopicTreeDraft . h <nl> ppp b / src / TopicTreeDraft . h <nl> <nl> # include < map > <nl> # include < string_view > <nl> # include < functional > <nl> + # include < set > <nl> + # include < chrono > <nl> <nl> / * A Subscriber is an extension of a socket * / <nl> struct Subscriber { <nl> / * List of all our subscriptions ( subscribersNextSubscription ) * / <nl> struct Subscription * subscriptions ; <nl> - <nl> - / * Reserved * / <nl> - bool triggered = false ; <nl> - Subscriber * nextTriggeredSubscriber = nullptr ; <nl> } ; <nl> <nl> struct Topic { <nl> struct Topic { <nl> Topic * parent = nullptr ; <nl> <nl> / * Next triggered Topic * / <nl> - Topic * nextTriggered = nullptr ; <nl> bool triggered = false ; <nl> <nl> / * Exact string matches * / <nl> struct Topic { <nl> / * Terminating wildcard child * / <nl> Topic * terminatingWildcardChild = nullptr ; <nl> <nl> - / * Subscriptions to this very topic * / <nl> - Subscription * subscriptions ; <nl> + / * What we published * / <nl> + std : : map < int , std : : string > messages ; <nl> <nl> - / * Collective backpressure * / <nl> - std : : string backpressure ; <nl> + std : : set < Subscriber * > subs ; <nl> } ; <nl> <nl> / * A Subscription is a link between Topic and Subscriber * / <nl> struct Subscription { <nl> <nl> struct TopicTree { <nl> private : <nl> + std : : function < int ( Subscriber * , std : : string_view ) > cb ; <nl> + <nl> Topic * root = new Topic ; <nl> - Topic * triggered = nullptr ; <nl> <nl> + / * Global messageId for deduplication of overlapping topics and ordering between topics * / <nl> + int messageId = 0 ; <nl> + <nl> + / * The triggered topics * / <nl> + Topic * triggeredTopics [ 64 ] ; <nl> + int numTriggeredTopics = 0 ; <nl> + Subscriber * min = ( Subscriber * ) UINTPTR_MAX ; <nl> + <nl> / * Cull or trim unused Topic nodes from leaf to root * / <nl> void trimTree ( Topic * topic ) { <nl> - if ( ! topic - > subscriptions & & ! topic - > children . size ( ) & & ! topic - > terminatingWildcardChild & & ! topic - > wildcardChild ) { <nl> + if ( ! topic - > subs . size ( ) & & ! topic - > children . size ( ) & & ! topic - > terminatingWildcardChild & & ! topic - > wildcardChild ) { <nl> Topic * parent = topic - > parent ; <nl> <nl> if ( topic - > length = = 1 ) { <nl> struct TopicTree { <nl> } <nl> } <nl> <nl> - / * Should be getData and commit * / <nl> + / * Should be getData and commit ? * / <nl> void publish ( Topic * iterator , size_t start , size_t stop , std : : string_view topic , std : : string_view message ) { <nl> for ( ; stop ! = std : : string : : npos ; start = stop + 1 ) { <nl> stop = topic . find ( ' / ' , start ) ; <nl> struct TopicTree { <nl> <nl> / * Do we have a terminating wildcard child ? * / <nl> if ( iterator - > terminatingWildcardChild ) { <nl> - iterator - > terminatingWildcardChild - > backpressure . append ( message ) ; <nl> + iterator - > terminatingWildcardChild - > messages [ messageId ] = message ; <nl> <nl> / * Add this topic to triggered * / <nl> if ( ! iterator - > terminatingWildcardChild - > triggered ) { <nl> - if ( triggered = = nullptr ) { <nl> - triggered = iterator - > terminatingWildcardChild ; <nl> - } else { <nl> - iterator - > terminatingWildcardChild - > nextTriggered = triggered ; <nl> - triggered = iterator - > terminatingWildcardChild ; <nl> + triggeredTopics [ numTriggeredTopics + + ] = iterator - > terminatingWildcardChild ; <nl> + <nl> + / * Keep track of lowest subscriber * / <nl> + if ( * iterator - > terminatingWildcardChild - > subs . begin ( ) < min ) { <nl> + min = * iterator - > terminatingWildcardChild - > subs . begin ( ) ; <nl> } <nl> + <nl> iterator - > terminatingWildcardChild - > triggered = true ; <nl> } <nl> } <nl> struct TopicTree { <nl> } <nl> <nl> / * If we went all the way we matched exactly * / <nl> - iterator - > backpressure . append ( message ) ; <nl> + iterator - > messages [ messageId ] = message ; <nl> + <nl> / * Add this topic to triggered * / <nl> if ( ! iterator - > triggered ) { <nl> - if ( triggered = = nullptr ) { <nl> - triggered = iterator ; <nl> - } <nl> - else { <nl> - iterator - > nextTriggered = triggered ; <nl> - triggered = iterator ; <nl> + triggeredTopics [ numTriggeredTopics + + ] = iterator ; <nl> + <nl> + / * Keep track of lowest subscriber * / <nl> + if ( * iterator - > subs . begin ( ) < min ) { <nl> + min = * iterator - > subs . begin ( ) ; <nl> } <nl> + <nl> iterator - > triggered = true ; <nl> } <nl> } <nl> <nl> public : <nl> + <nl> + TopicTree ( std : : function < int ( Subscriber * , std : : string_view ) > cb ) { <nl> + this - > cb = cb ; <nl> + } <nl> + <nl> void subscribe ( std : : string_view topic , Subscriber * subscriber ) { <nl> / * Start iterating from the root * / <nl> Topic * iterator = root ; <nl> struct TopicTree { <nl> newTopic - > parent = iterator ; <nl> newTopic - > name = new char [ segment . length ( ) ] ; <nl> newTopic - > length = segment . length ( ) ; <nl> - newTopic - > subscriptions = nullptr ; <nl> newTopic - > terminatingWildcardChild = nullptr ; <nl> newTopic - > wildcardChild = nullptr ; <nl> memcpy ( newTopic - > name , segment . data ( ) , segment . length ( ) ) ; <nl> struct TopicTree { <nl> } <nl> } <nl> <nl> - / * Allocate new Subscription * / <nl> - Subscription * subscription = new Subscription ; <nl> - subscription - > subscriber = subscriber ; <nl> - subscription - > topic = iterator ; <nl> - <nl> - / * Link Subscription to Subscriber * / <nl> - subscription - > subscribersNextSubscription = subscriber - > subscriptions ; <nl> - subscriber - > subscriptions = subscription ; <nl> - <nl> - / * Link Subscription to Topic * / <nl> - subscription - > topicNextSubscription = iterator - > subscriptions ; <nl> - iterator - > subscriptions = subscription ; <nl> + / * Add socket to Topic ' s Set * / <nl> + iterator - > subs . insert ( subscriber ) ; <nl> } <nl> <nl> void publish ( std : : string_view topic , std : : string_view message ) { <nl> publish ( root , 0 , 0 , topic , message ) ; <nl> + messageId + + ; <nl> } <nl> <nl> / * Rarely used , probably * / <nl> void unsubscribe ( std : : string_view topic , Subscriber * subscriber ) { <nl> / * Subscribers are likely to have very few subscriptions ( 20 or fewer ) * / <nl> - / * Subscription * iterator = subscriber - > subscriptions ; <nl> - while ( iterator ) { <nl> - / / avlänka OM DET ÄR RÄTT TOPIC ! <nl> - iterator - > topic - > subscriptions = nullptr ; <nl> <nl> - trimTree ( iterator - > topic ) ; <nl> - iterator = iterator - > subscribersNextSubscription ; <nl> - } * / <nl> } <nl> <nl> void unsubscribeAll ( Subscriber * subscriber ) { <nl> - Subscription * iterator = subscriber - > subscriptions ; <nl> - while ( iterator ) { <nl> - / / avlänka <nl> - iterator - > topic - > subscriptions = nullptr ; <nl> - <nl> + for ( Subscription * iterator = subscriber - > subscriptions ; iterator ; iterator = iterator - > subscribersNextSubscription ) { <nl> + iterator - > topic - > subs . erase ( subscriber ) ; <nl> trimTree ( iterator - > topic ) ; <nl> - iterator = iterator - > subscribersNextSubscription ; <nl> } <nl> } <nl> <nl> / * Drain the tree by emitting what to send with every Subscriber * / <nl> - void drain ( std : : function < int ( Subscriber * , std : : string_view ) > cb ) { <nl> + void drain ( / * std : : function < int ( Subscriber * , std : : string_view ) > cb * / ) { <nl> <nl> - / / for all triggered topics <nl> - Topic * iterator = triggered ; <nl> - while ( iterator ) { <nl> - cb ( nullptr , iterator - > backpressure ) ; <nl> + / * Up to 64 triggered Topics per batch * / <nl> + std : : map < uint64_t , std : : string > intersectionCache ; <nl> <nl> - iterator = iterator - > nextTriggered ; <nl> + / * Loop over these here * / <nl> + std : : set < Subscriber * > : : iterator it [ 64 ] ; <nl> + std : : set < Subscriber * > : : iterator end [ 64 ] ; <nl> + for ( int i = 0 ; i < numTriggeredTopics ; i + + ) { <nl> + it [ i ] = triggeredTopics [ i ] - > subs . begin ( ) ; <nl> + end [ i ] = triggeredTopics [ i ] - > subs . end ( ) ; <nl> } <nl> - <nl> <nl> - } <nl> + / * Empty all sets from unique subscribers * / <nl> + for ( int nonEmpty = numTriggeredTopics ; nonEmpty ; ) { <nl> + <nl> + Subscriber * nextMin = ( Subscriber * ) UINTPTR_MAX ; <nl> <nl> - / * Drain one particular Subscriber , as called from its writable callback * / <nl> - void drain ( Subscriber * subscriber , std : : function < int ( std : : string_view ) > cb ) { <nl> - / / know what backpressure to send <nl> + / * The message sets relevant for this intersection * / <nl> + std : : map < int , std : : string > * perSubscriberIntersectingTopicMessages [ 64 ] ; <nl> + int numPerSubscriberIntersectingTopicMessages = 0 ; <nl> + <nl> + uint64_t intersection = 0 ; <nl> + <nl> + for ( int i = 0 ; i < numTriggeredTopics ; i + + ) { <nl> + if ( ( it [ i ] ! = end [ i ] ) & & ( * it [ i ] = = min ) ) { <nl> + <nl> + / * Mark this intersection * / <nl> + intersection | = ( 1 < < i ) ; <nl> + perSubscriberIntersectingTopicMessages [ numPerSubscriberIntersectingTopicMessages + + ] = & triggeredTopics [ i ] - > messages ; <nl> + <nl> + it [ i ] + + ; <nl> + if ( it [ i ] = = end [ i ] ) { <nl> + nonEmpty - - ; <nl> + } <nl> + else { <nl> + if ( nextMin > * it [ i ] ) { <nl> + nextMin = * it [ i ] ; <nl> + } <nl> + } <nl> + } <nl> + else { <nl> + / * We need to lower nextMin to us , in the case of min being the last in a set * / <nl> + if ( ( it [ i ] ! = end [ i ] ) & & ( nextMin > * it [ i ] ) ) { <nl> + nextMin = * it [ i ] ; <nl> + } <nl> + } <nl> + } <nl> + <nl> + / * Generate cache for intersection * / <nl> + if ( intersectionCache [ intersection ] . length ( ) = = 0 ) { <nl> + <nl> + / * Build the union in order without duplicates * / <nl> + std : : map < int , std : : string > complete ; <nl> + for ( int i = 0 ; i < numPerSubscriberIntersectingTopicMessages ; i + + ) { <nl> + complete . insert ( perSubscriberIntersectingTopicMessages [ i ] - > begin ( ) , perSubscriberIntersectingTopicMessages [ i ] - > end ( ) ) ; <nl> + } <nl> + <nl> + / * Create the linear cache * / <nl> + std : : string res ; <nl> + for ( auto & p : complete ) { <nl> + res . append ( p . second ) ; <nl> + } <nl> + <nl> + cb ( min , intersectionCache [ intersection ] = std : : move ( res ) ) ; <nl> + } <nl> + else { <nl> + cb ( min , intersectionCache [ intersection ] ) ; <nl> + } <nl> + <nl> + min = nextMin ; <nl> + } <nl> } <nl> <nl> void print ( Topic * root = nullptr , int indentation = 1 ) { <nl> struct TopicTree { <nl> for ( int i = 0 ; i < indentation ; i + + ) { <nl> std : : cout < < " " ; <nl> } <nl> - std : : cout < < std : : string_view ( p . second - > name , p . second - > length ) < < " = " < < p . second - > backpressure . c_str ( ) < < std : : endl ; <nl> + std : : cout < < std : : string_view ( p . second - > name , p . second - > length ) < < " = " < < p . second - > messages . size ( ) < < " publishes , " < < p . second - > subs . size ( ) < < " subscribers " < < std : : endl ; <nl> print ( p . second , indentation + 1 ) ; <nl> } <nl> } <nl>
Update TopicTreeDraft . h
uNetworking/uWebSockets
a35d7f2ff33c647f95df33f2630f86db5e198ca6
2019-10-07T08:21:46Z
mmm a / arangod / VocBase / vocbase . cpp <nl> ppp b / arangod / VocBase / vocbase . cpp <nl> int TRI_RenameCollectionVocBase ( TRI_vocbase_t * vocbase , <nl> if ( res = = TRI_ERROR_NO_ERROR & & writeMarker ) { <nl> / / now log the operation <nl> try { <nl> + VPackBuilder builder ; <nl> + builder . openObject ( ) ; <nl> + builder . add ( " name " , VPackValue ( newName ) ) ; <nl> + builder . close ( ) ; <nl> + <nl> arangodb : : wal : : RenameCollectionMarker marker ( <nl> - vocbase - > _id , collection - > _cid , std : : string ( newName ) ) ; <nl> + vocbase - > _id , collection - > _cid , builder . slice ( ) ) ; <nl> arangodb : : wal : : SlotInfoCopy slotInfo = <nl> arangodb : : wal : : LogfileManager : : instance ( ) - > allocateAndWrite ( marker , <nl> false ) ; <nl> mmm a / arangod / Wal / Marker . cpp <nl> ppp b / arangod / Wal / Marker . cpp <nl> <nl> # include " Marker . h " <nl> # include " VocBase / document - collection . h " <nl> <nl> - # undef DEBUG_WAL <nl> - # undef DEBUG_WAL_DETAIL <nl> - <nl> using namespace arangodb : : wal ; <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> Marker : : ~ Marker ( ) { <nl> } <nl> } <nl> <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - / / / @ brief store a null - terminated string inside the marker <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - <nl> - void Marker : : storeSizedString ( size_t offset , std : : string const & value ) { <nl> - return storeSizedString ( offset , value . c_str ( ) , value . size ( ) ) ; <nl> - } <nl> - <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - / / / @ brief store a null - terminated string inside the marker <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - <nl> - void Marker : : storeSizedString ( size_t offset , char const * value , size_t length ) { <nl> - char * p = static_cast < char * > ( begin ( ) ) + offset ; <nl> - <nl> - / / store actual key <nl> - memcpy ( p , value , length ) ; <nl> - / / append NUL byte <nl> - p [ length ] = ' \ 0 ' ; <nl> - } <nl> - <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / / @ brief store a vpack slice <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> void Marker : : storeSlice ( size_t offset , arangodb : : velocypack : : Slice const & slice ) <nl> / / / @ brief return a hex representation of a marker part <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> <nl> - # ifdef DEBUG_WAL <nl> std : : string Marker : : hexifyPart ( char const * offset , size_t length ) const { <nl> - size_t destLength ; <nl> - char * s = TRI_EncodeHexString ( offset , length , & destLength ) ; <nl> - <nl> - if ( s ! = nullptr ) { <nl> - std : : string result ( s ) ; <nl> - TRI_Free ( TRI_CORE_MEM_ZONE , s ) ; <nl> - return result ; <nl> - } <nl> - <nl> - return " ERROR " ; <nl> + return arangodb : : basics : : StringUtils : : escapeHex ( std : : string ( offset , length ) , ' ' ) ; <nl> } <nl> - # endif <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / / @ brief return a printable string representation of a marker part <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> <nl> - # ifdef DEBUG_WAL <nl> std : : string Marker : : stringifyPart ( char const * offset , size_t length ) const { <nl> - char * s = TRI_PrintableString ( offset , length ) ; <nl> - <nl> - if ( s ! = nullptr ) { <nl> - std : : string result ( s ) ; <nl> - TRI_Free ( TRI_CORE_MEM_ZONE , s ) ; <nl> - return result ; <nl> - } <nl> - <nl> - return " ERROR " ; <nl> + return arangodb : : basics : : StringUtils : : escapeC ( std : : string ( offset , length ) ) ; <nl> } <nl> - # endif <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / / @ brief print the marker in binary form <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> <nl> - # ifdef DEBUG_WAL <nl> - void Marker : : dumpBinary ( ) const { <nl> - std : : cout < < " BINARY : ' " < < stringifyPart ( begin ( ) , size ( ) ) < < " ' \ n \ n " ; <nl> + std : : string Marker : : stringify ( ) const { <nl> + auto const * m = reinterpret_cast < TRI_df_marker_t const * > ( begin ( ) ) ; <nl> + return std : : string ( " [ " ) + std : : string ( TRI_NameMarkerDatafile ( m ) ) + <nl> + " , size " + std : : to_string ( size ( ) ) + <nl> + " , data " + stringifyPart ( begin ( ) , size ( ) ) + " ] " ; <nl> } <nl> - # endif <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / / @ brief create marker <nl> CreateDatabaseMarker : : CreateDatabaseMarker ( TRI_voc_tick_t databaseId , <nl> m - > _databaseId = databaseId ; <nl> <nl> storeSlice ( sizeof ( database_create_marker_t ) , properties ) ; <nl> - <nl> - # ifdef DEBUG_WAL <nl> - dump ( ) ; <nl> - # endif <nl> } <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> CreateDatabaseMarker : : CreateDatabaseMarker ( TRI_voc_tick_t databaseId , <nl> <nl> CreateDatabaseMarker : : ~ CreateDatabaseMarker ( ) { } <nl> <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - / / / @ brief dump marker <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - <nl> - # ifdef DEBUG_WAL <nl> - void CreateDatabaseMarker : : dump ( ) const { <nl> - database_create_marker_t * m = <nl> - reinterpret_cast < database_create_marker_t * > ( begin ( ) ) ; <nl> - <nl> - std : : cout < < " WAL CREATE DATABASE MARKER FOR DB " < < m - > _databaseId <nl> - < < " , PROPERTIES " < < properties ( ) < < " , SIZE : " < < size ( ) < < " \ n " ; <nl> - <nl> - # ifdef DEBUG_WAL_DETAIL <nl> - dumpBinary ( ) ; <nl> - # endif <nl> - } <nl> - # endif <nl> - <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / / @ brief create marker <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> DropDatabaseMarker : : DropDatabaseMarker ( TRI_voc_tick_t databaseId ) <nl> reinterpret_cast < database_drop_marker_t * > ( begin ( ) ) ; <nl> <nl> m - > _databaseId = databaseId ; <nl> - <nl> - # ifdef DEBUG_WAL <nl> - dump ( ) ; <nl> - # endif <nl> } <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> DropDatabaseMarker : : DropDatabaseMarker ( TRI_voc_tick_t databaseId ) <nl> <nl> DropDatabaseMarker : : ~ DropDatabaseMarker ( ) { } <nl> <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - / / / @ brief dump marker <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - <nl> - # ifdef DEBUG_WAL <nl> - void DropDatabaseMarker : : dump ( ) const { <nl> - database_drop_marker_t * m = <nl> - reinterpret_cast < database_drop_marker_t * > ( begin ( ) ) ; <nl> - <nl> - std : : cout < < " WAL DROP DATABASE MARKER FOR DB " < < m - > _databaseId <nl> - < < " , SIZE : " < < size ( ) < < " \ n " ; <nl> - <nl> - # ifdef DEBUG_WAL_DETAIL <nl> - dumpBinary ( ) ; <nl> - # endif <nl> - } <nl> - # endif <nl> - <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / / @ brief create marker <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> CreateCollectionMarker : : CreateCollectionMarker ( TRI_voc_tick_t databaseId , <nl> m - > _collectionId = collectionId ; <nl> <nl> storeSlice ( sizeof ( collection_create_marker_t ) , properties ) ; <nl> - <nl> - # ifdef DEBUG_WAL <nl> - dump ( ) ; <nl> - # endif <nl> } <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> CreateCollectionMarker : : CreateCollectionMarker ( TRI_voc_tick_t databaseId , <nl> <nl> CreateCollectionMarker : : ~ CreateCollectionMarker ( ) { } <nl> <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - / / / @ brief dump marker <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - <nl> - # ifdef DEBUG_WAL <nl> - void CreateCollectionMarker : : dump ( ) const { <nl> - collection_create_marker_t * m = <nl> - reinterpret_cast < collection_create_marker_t * > ( begin ( ) ) ; <nl> - <nl> - std : : cout < < " WAL CREATE COLLECTION MARKER FOR DB " < < m - > _databaseId <nl> - < < " , COLLECTION " < < m - > _collectionId < < " , PROPERTIES " <nl> - < < properties ( ) < < " , SIZE : " < < size ( ) < < " \ n " ; <nl> - <nl> - # ifdef DEBUG_WAL_DETAIL <nl> - dumpBinary ( ) ; <nl> - # endif <nl> - } <nl> - # endif <nl> - <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / / @ brief create marker <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> DropCollectionMarker : : DropCollectionMarker ( TRI_voc_tick_t databaseId , <nl> <nl> m - > _databaseId = databaseId ; <nl> m - > _collectionId = collectionId ; <nl> - <nl> - # ifdef DEBUG_WAL <nl> - dump ( ) ; <nl> - # endif <nl> } <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> DropCollectionMarker : : DropCollectionMarker ( TRI_voc_tick_t databaseId , <nl> <nl> DropCollectionMarker : : ~ DropCollectionMarker ( ) { } <nl> <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - / / / @ brief dump marker <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - <nl> - # ifdef DEBUG_WAL <nl> - void DropCollectionMarker : : dump ( ) const { <nl> - collection_drop_marker_t * m = <nl> - reinterpret_cast < collection_drop_marker_t * > ( begin ( ) ) ; <nl> - <nl> - std : : cout < < " WAL DROP COLLECTION MARKER FOR DB " < < m - > _databaseId <nl> - < < " , COLLECTION " < < m - > _collectionId < < " , SIZE : " < < size ( ) <nl> - < < " \ n " ; <nl> - <nl> - # ifdef DEBUG_WAL_DETAIL <nl> - dumpBinary ( ) ; <nl> - # endif <nl> - } <nl> - # endif <nl> - <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / / @ brief create marker <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> <nl> RenameCollectionMarker : : RenameCollectionMarker ( TRI_voc_tick_t databaseId , <nl> TRI_voc_cid_t collectionId , <nl> - std : : string const & name ) <nl> + VPackSlice const & properties ) <nl> : Marker ( <nl> TRI_WAL_MARKER_RENAME_COLLECTION , <nl> - sizeof ( collection_rename_marker_t ) + alignedSize ( name . size ( ) + 1 ) ) { <nl> + sizeof ( collection_rename_marker_t ) + alignedSize ( properties . byteSize ( ) ) ) { <nl> collection_rename_marker_t * m = <nl> reinterpret_cast < collection_rename_marker_t * > ( begin ( ) ) ; <nl> <nl> m - > _databaseId = databaseId ; <nl> m - > _collectionId = collectionId ; <nl> <nl> - storeSizedString ( sizeof ( collection_rename_marker_t ) , name ) ; <nl> - <nl> - # ifdef DEBUG_WAL <nl> - dump ( ) ; <nl> - # endif <nl> + storeSlice ( sizeof ( collection_rename_marker_t ) , properties ) ; <nl> } <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> RenameCollectionMarker : : RenameCollectionMarker ( TRI_voc_tick_t databaseId , <nl> <nl> RenameCollectionMarker : : ~ RenameCollectionMarker ( ) { } <nl> <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - / / / @ brief dump marker <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - <nl> - # ifdef DEBUG_WAL <nl> - void RenameCollectionMarker : : dump ( ) const { <nl> - collection_rename_marker_t * m = <nl> - reinterpret_cast < collection_rename_marker_t * > ( begin ( ) ) ; <nl> - <nl> - std : : cout < < " WAL RENAME COLLECTION MARKER FOR DB " < < m - > _databaseId <nl> - < < " , COLLECTION " < < m - > _collectionId < < " , NAME " < < name ( ) <nl> - < < " , SIZE : " < < size ( ) < < " \ n " ; <nl> - <nl> - # ifdef DEBUG_WAL_DETAIL <nl> - dumpBinary ( ) ; <nl> - # endif <nl> - } <nl> - # endif <nl> - <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / / @ brief create marker <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> ChangeCollectionMarker : : ChangeCollectionMarker ( TRI_voc_tick_t databaseId , <nl> m - > _collectionId = collectionId ; <nl> <nl> storeSlice ( sizeof ( collection_change_marker_t ) , properties ) ; <nl> - <nl> - # ifdef DEBUG_WAL <nl> - dump ( ) ; <nl> - # endif <nl> } <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> ChangeCollectionMarker : : ChangeCollectionMarker ( TRI_voc_tick_t databaseId , <nl> <nl> ChangeCollectionMarker : : ~ ChangeCollectionMarker ( ) { } <nl> <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - / / / @ brief dump marker <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - <nl> - # ifdef DEBUG_WAL <nl> - void ChangeCollectionMarker : : dump ( ) const { <nl> - collection_change_marker_t * m = <nl> - reinterpret_cast < collection_change_marker_t * > ( begin ( ) ) ; <nl> - <nl> - std : : cout < < " WAL CHANGE COLLECTION MARKER FOR DB " < < m - > _databaseId <nl> - < < " , COLLECTION " < < m - > _collectionId < < " , PROPERTIES " <nl> - < < properties ( ) < < " , SIZE : " < < size ( ) < < " \ n " ; <nl> - <nl> - # ifdef DEBUG_WAL_DETAIL <nl> - dumpBinary ( ) ; <nl> - # endif <nl> - } <nl> - # endif <nl> - <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / / @ brief create marker <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> CreateIndexMarker : : CreateIndexMarker ( TRI_voc_tick_t databaseId , <nl> m - > _indexId = indexId ; <nl> <nl> storeSlice ( sizeof ( index_create_marker_t ) , properties ) ; <nl> - <nl> - # ifdef DEBUG_WAL <nl> - dump ( ) ; <nl> - # endif <nl> } <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> CreateIndexMarker : : CreateIndexMarker ( TRI_voc_tick_t databaseId , <nl> <nl> CreateIndexMarker : : ~ CreateIndexMarker ( ) { } <nl> <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - / / / @ brief dump marker <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - <nl> - # ifdef DEBUG_WAL <nl> - void CreateIndexMarker : : dump ( ) const { <nl> - index_create_marker_t * m = reinterpret_cast < index_create_marker_t * > ( begin ( ) ) ; <nl> - <nl> - std : : cout < < " WAL CREATE INDEX MARKER FOR DB " < < m - > _databaseId <nl> - < < " , COLLECTION " < < m - > _collectionId < < " , INDEX " < < m - > _indexId <nl> - < < " , PROPERTIES " < < properties ( ) < < " , SIZE : " < < size ( ) < < " \ n " ; <nl> - <nl> - # ifdef DEBUG_WAL_DETAIL <nl> - dumpBinary ( ) ; <nl> - # endif <nl> - } <nl> - # endif <nl> - <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / / @ brief create marker <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> DropIndexMarker : : DropIndexMarker ( TRI_voc_tick_t databaseId , <nl> m - > _databaseId = databaseId ; <nl> m - > _collectionId = collectionId ; <nl> m - > _indexId = indexId ; <nl> - <nl> - # ifdef DEBUG_WAL <nl> - dump ( ) ; <nl> - # endif <nl> } <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> DropIndexMarker : : DropIndexMarker ( TRI_voc_tick_t databaseId , <nl> <nl> DropIndexMarker : : ~ DropIndexMarker ( ) { } <nl> <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - / / / @ brief dump marker <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - <nl> - # ifdef DEBUG_WAL <nl> - void DropIndexMarker : : dump ( ) const { <nl> - index_drop_marker_t * m = reinterpret_cast < index_drop_marker_t * > ( begin ( ) ) ; <nl> - <nl> - std : : cout < < " WAL DROP INDEX MARKER FOR DB " < < m - > _databaseId <nl> - < < " , COLLECTION " < < m - > _collectionId < < " , INDEX " < < m - > _indexId <nl> - < < " , SIZE : " < < size ( ) < < " \ n " ; <nl> - <nl> - # ifdef DEBUG_WAL_DETAIL <nl> - dumpBinary ( ) ; <nl> - # endif <nl> - } <nl> - # endif <nl> - <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / / @ brief create marker <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> BeginTransactionMarker : : BeginTransactionMarker ( TRI_voc_tick_t databaseId , <nl> <nl> m - > _databaseId = databaseId ; <nl> m - > _transactionId = transactionId ; <nl> - <nl> - # ifdef DEBUG_WAL <nl> - dump ( ) ; <nl> - # endif <nl> } <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> BeginTransactionMarker : : BeginTransactionMarker ( TRI_voc_tick_t databaseId , <nl> <nl> BeginTransactionMarker : : ~ BeginTransactionMarker ( ) { } <nl> <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - / / / @ brief dump marker <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - <nl> - # ifdef DEBUG_WAL <nl> - void BeginTransactionMarker : : dump ( ) const { <nl> - transaction_begin_marker_t * m = <nl> - reinterpret_cast < transaction_begin_marker_t * > ( begin ( ) ) ; <nl> - <nl> - std : : cout < < " WAL TRANSACTION BEGIN MARKER FOR DB " < < m - > _databaseId <nl> - < < " , TRANSACTION " < < m - > _transactionId < < " , SIZE : " < < size ( ) <nl> - < < " \ n " ; <nl> - <nl> - # ifdef DEBUG_WAL_DETAIL <nl> - dumpBinary ( ) ; <nl> - # endif <nl> - } <nl> - # endif <nl> - <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / / @ brief create marker <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> CommitTransactionMarker : : CommitTransactionMarker ( TRI_voc_tick_t databaseId , <nl> <nl> m - > _databaseId = databaseId ; <nl> m - > _transactionId = transactionId ; <nl> - <nl> - # ifdef DEBUG_WAL <nl> - dump ( ) ; <nl> - # endif <nl> } <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> CommitTransactionMarker : : CommitTransactionMarker ( TRI_voc_tick_t databaseId , <nl> <nl> CommitTransactionMarker : : ~ CommitTransactionMarker ( ) { } <nl> <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - / / / @ brief dump marker <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - <nl> - # ifdef DEBUG_WAL <nl> - void CommitTransactionMarker : : dump ( ) const { <nl> - transaction_commit_marker_t * m = <nl> - reinterpret_cast < transaction_commit_marker_t * > ( begin ( ) ) ; <nl> - <nl> - std : : cout < < " WAL TRANSACTION COMMIT MARKER FOR DB " < < m - > _databaseId <nl> - < < " , TRANSACTION " < < m - > _transactionId < < " , SIZE : " < < size ( ) <nl> - < < " \ n " ; <nl> - <nl> - # ifdef DEBUG_WAL_DETAIL <nl> - dumpBinary ( ) ; <nl> - # endif <nl> - } <nl> - # endif <nl> - <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / / @ brief create marker <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> AbortTransactionMarker : : AbortTransactionMarker ( TRI_voc_tick_t databaseId , <nl> <nl> m - > _databaseId = databaseId ; <nl> m - > _transactionId = transactionId ; <nl> - <nl> - # ifdef DEBUG_WAL <nl> - dump ( ) ; <nl> - # endif <nl> } <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> AbortTransactionMarker : : AbortTransactionMarker ( TRI_voc_tick_t databaseId , <nl> <nl> AbortTransactionMarker : : ~ AbortTransactionMarker ( ) { } <nl> <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - / / / @ brief dump marker <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - <nl> - # ifdef DEBUG_WAL <nl> - void AbortTransactionMarker : : dump ( ) const { <nl> - transaction_abort_marker_t * m = <nl> - reinterpret_cast < transaction_abort_marker_t * > ( begin ( ) ) ; <nl> - <nl> - std : : cout < < " WAL TRANSACTION ABORT MARKER FOR DB " < < m - > _databaseId <nl> - < < " , TRANSACTION " < < m - > _transactionId < < " , SIZE : " < < size ( ) <nl> - < < " \ n " ; <nl> - <nl> - # ifdef DEBUG_WAL_DETAIL <nl> - dumpBinary ( ) ; <nl> - # endif <nl> - } <nl> - # endif <nl> - <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / / @ brief create marker <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> BeginRemoteTransactionMarker : : BeginRemoteTransactionMarker ( <nl> m - > _databaseId = databaseId ; <nl> m - > _transactionId = transactionId ; <nl> m - > _externalId = externalId ; <nl> - <nl> - # ifdef DEBUG_WAL <nl> - dump ( ) ; <nl> - # endif <nl> } <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> BeginRemoteTransactionMarker : : BeginRemoteTransactionMarker ( <nl> <nl> BeginRemoteTransactionMarker : : ~ BeginRemoteTransactionMarker ( ) { } <nl> <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - / / / @ brief dump marker <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - <nl> - # ifdef DEBUG_WAL <nl> - void BeginRemoteTransactionMarker : : dump ( ) const { <nl> - transaction_remote_begin_marker_t * m = <nl> - reinterpret_cast < transaction_remote_begin_marker_t * > ( begin ( ) ) ; <nl> - <nl> - std : : cout < < " WAL REMOTE TRANSACTION BEGIN MARKER FOR DB " < < m - > _databaseId <nl> - < < " , TRANSACTION " < < m - > _transactionId < < " , EXTERNAL ID " <nl> - < < m - > _externalId < < " , SIZE : " < < size ( ) < < " \ n " ; <nl> - <nl> - # ifdef DEBUG_WAL_DETAIL <nl> - dumpBinary ( ) ; <nl> - # endif <nl> - } <nl> - # endif <nl> - <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / / @ brief create marker <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> CommitRemoteTransactionMarker : : CommitRemoteTransactionMarker ( <nl> m - > _databaseId = databaseId ; <nl> m - > _transactionId = transactionId ; <nl> m - > _externalId = externalId ; <nl> - <nl> - # ifdef DEBUG_WAL <nl> - dump ( ) ; <nl> - # endif <nl> } <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> CommitRemoteTransactionMarker : : CommitRemoteTransactionMarker ( <nl> <nl> CommitRemoteTransactionMarker : : ~ CommitRemoteTransactionMarker ( ) { } <nl> <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - / / / @ brief dump marker <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - <nl> - # ifdef DEBUG_WAL <nl> - void CommitRemoteTransactionMarker : : dump ( ) const { <nl> - transaction_remote_commit_marker_t * m = <nl> - reinterpret_cast < transaction_remote_commit_marker_t * > ( begin ( ) ) ; <nl> - <nl> - std : : cout < < " WAL REMOTE_TRANSACTION COMMIT MARKER FOR DB " < < m - > _databaseId <nl> - < < " , TRANSACTION " < < m - > _transactionId < < " , EXTERNAL ID " <nl> - < < m - > _externalId < < " , SIZE : " < < size ( ) < < " \ n " ; <nl> - <nl> - # ifdef DEBUG_WAL_DETAIL <nl> - dumpBinary ( ) ; <nl> - # endif <nl> - } <nl> - # endif <nl> - <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / / @ brief create marker <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> AbortRemoteTransactionMarker : : AbortRemoteTransactionMarker ( <nl> m - > _databaseId = databaseId ; <nl> m - > _transactionId = transactionId ; <nl> m - > _externalId = externalId ; <nl> - <nl> - # ifdef DEBUG_WAL <nl> - dump ( ) ; <nl> - # endif <nl> } <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> AbortRemoteTransactionMarker : : AbortRemoteTransactionMarker ( <nl> <nl> AbortRemoteTransactionMarker : : ~ AbortRemoteTransactionMarker ( ) { } <nl> <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - / / / @ brief dump marker <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - <nl> - # ifdef DEBUG_WAL <nl> - void AbortRemoteTransactionMarker : : dump ( ) const { <nl> - transaction_remote_abort_marker_t * m = <nl> - reinterpret_cast < transaction_remote_abort_marker_t * > ( begin ( ) ) ; <nl> - <nl> - std : : cout < < " WAL REMOTE TRANSACTION ABORT MARKER FOR DB " < < m - > _databaseId <nl> - < < " , TRANSACTION " < < m - > _transactionId < < " , EXTERNAL ID " <nl> - < < m - > _externalId < < " , SIZE : " < < size ( ) < < " \ n " ; <nl> - <nl> - # ifdef DEBUG_WAL_DETAIL <nl> - dumpBinary ( ) ; <nl> - # endif <nl> - } <nl> - # endif <nl> - <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / / @ brief create marker <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> mmm a / arangod / Wal / Marker . h <nl> ppp b / arangod / Wal / Marker . h <nl> class Marker { <nl> inline uint32_t size ( ) const { return _size ; } <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - / / / @ brief return a hex representation of a marker part <nl> + / / / @ brief return a printable representation of the marker <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> <nl> - std : : string hexifyPart ( char const * , size_t ) const ; <nl> - <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - / / / @ brief return a printable string representation of a marker part <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - <nl> - std : : string stringifyPart ( char const * , size_t ) const ; <nl> - <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - / / / @ brief print the marker in binary form <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - <nl> - void dumpBinary ( ) const ; <nl> + std : : string stringify ( ) const ; <nl> <nl> protected : <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - / / / @ brief store a null - terminated string inside the marker <nl> + / / / @ brief return a hex representation of a marker part <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> <nl> - void storeSizedString ( size_t , std : : string const & ) ; <nl> + std : : string hexifyPart ( char const * , size_t ) const ; <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - / / / @ brief store a null - terminated string inside the marker <nl> + / / / @ brief return a printable string representation of a marker part <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> <nl> - void storeSizedString ( size_t , char const * , size_t ) ; <nl> - <nl> + std : : string stringifyPart ( char const * , size_t ) const ; <nl> + <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / / @ brief store a vpack slice <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> class CreateDatabaseMarker : public Marker { <nl> inline char * properties ( ) const { <nl> return begin ( ) + sizeof ( database_create_marker_t ) ; <nl> } <nl> - <nl> - void dump ( ) const ; <nl> } ; <nl> <nl> class DropDatabaseMarker : public Marker { <nl> class DropDatabaseMarker : public Marker { <nl> explicit DropDatabaseMarker ( TRI_voc_tick_t ) ; <nl> <nl> ~ DropDatabaseMarker ( ) ; <nl> - <nl> - public : <nl> - void dump ( ) const ; <nl> } ; <nl> <nl> class CreateCollectionMarker : public Marker { <nl> class CreateCollectionMarker : public Marker { <nl> inline char * properties ( ) const { <nl> return begin ( ) + sizeof ( collection_create_marker_t ) ; <nl> } <nl> - <nl> - void dump ( ) const ; <nl> } ; <nl> <nl> class DropCollectionMarker : public Marker { <nl> class DropCollectionMarker : public Marker { <nl> DropCollectionMarker ( TRI_voc_tick_t , TRI_voc_cid_t ) ; <nl> <nl> ~ DropCollectionMarker ( ) ; <nl> - <nl> - public : <nl> - void dump ( ) const ; <nl> } ; <nl> <nl> class RenameCollectionMarker : public Marker { <nl> public : <nl> - RenameCollectionMarker ( TRI_voc_tick_t , TRI_voc_cid_t , std : : string const & ) ; <nl> + RenameCollectionMarker ( TRI_voc_tick_t , TRI_voc_cid_t , arangodb : : velocypack : : Slice const & ) ; <nl> <nl> ~ RenameCollectionMarker ( ) ; <nl> <nl> class RenameCollectionMarker : public Marker { <nl> inline char * name ( ) const { <nl> return begin ( ) + sizeof ( collection_rename_marker_t ) ; <nl> } <nl> - <nl> - void dump ( ) const ; <nl> } ; <nl> <nl> class ChangeCollectionMarker : public Marker { <nl> class ChangeCollectionMarker : public Marker { <nl> inline char * properties ( ) const { <nl> return begin ( ) + sizeof ( collection_change_marker_t ) ; <nl> } <nl> - <nl> - void dump ( ) const ; <nl> } ; <nl> <nl> class CreateIndexMarker : public Marker { <nl> class CreateIndexMarker : public Marker { <nl> inline char * properties ( ) const { <nl> return begin ( ) + sizeof ( index_create_marker_t ) ; <nl> } <nl> - <nl> - void dump ( ) const ; <nl> } ; <nl> <nl> class DropIndexMarker : public Marker { <nl> class DropIndexMarker : public Marker { <nl> DropIndexMarker ( TRI_voc_tick_t , TRI_voc_cid_t , TRI_idx_iid_t ) ; <nl> <nl> ~ DropIndexMarker ( ) ; <nl> - <nl> - public : <nl> - void dump ( ) const ; <nl> } ; <nl> <nl> class BeginTransactionMarker : public Marker { <nl> class BeginTransactionMarker : public Marker { <nl> BeginTransactionMarker ( TRI_voc_tick_t , TRI_voc_tid_t ) ; <nl> <nl> ~ BeginTransactionMarker ( ) ; <nl> - <nl> - public : <nl> - void dump ( ) const ; <nl> } ; <nl> <nl> class CommitTransactionMarker : public Marker { <nl> class CommitTransactionMarker : public Marker { <nl> CommitTransactionMarker ( TRI_voc_tick_t , TRI_voc_tid_t ) ; <nl> <nl> ~ CommitTransactionMarker ( ) ; <nl> - <nl> - public : <nl> - void dump ( ) const ; <nl> } ; <nl> <nl> class AbortTransactionMarker : public Marker { <nl> class AbortTransactionMarker : public Marker { <nl> AbortTransactionMarker ( TRI_voc_tick_t , TRI_voc_tid_t ) ; <nl> <nl> ~ AbortTransactionMarker ( ) ; <nl> - <nl> - public : <nl> - void dump ( ) const ; <nl> } ; <nl> <nl> class BeginRemoteTransactionMarker : public Marker { <nl> class BeginRemoteTransactionMarker : public Marker { <nl> BeginRemoteTransactionMarker ( TRI_voc_tick_t , TRI_voc_tid_t , TRI_voc_tid_t ) ; <nl> <nl> ~ BeginRemoteTransactionMarker ( ) ; <nl> - <nl> - public : <nl> - void dump ( ) const ; <nl> } ; <nl> <nl> class CommitRemoteTransactionMarker : public Marker { <nl> class CommitRemoteTransactionMarker : public Marker { <nl> CommitRemoteTransactionMarker ( TRI_voc_tick_t , TRI_voc_tid_t , TRI_voc_tid_t ) ; <nl> <nl> ~ CommitRemoteTransactionMarker ( ) ; <nl> - <nl> - public : <nl> - void dump ( ) const ; <nl> } ; <nl> <nl> class AbortRemoteTransactionMarker : public Marker { <nl> class AbortRemoteTransactionMarker : public Marker { <nl> AbortRemoteTransactionMarker ( TRI_voc_tick_t , TRI_voc_tid_t , TRI_voc_tid_t ) ; <nl> <nl> ~ AbortRemoteTransactionMarker ( ) ; <nl> - <nl> - public : <nl> - void dump ( ) const ; <nl> } ; <nl> <nl> class VPackDocumentMarker : public Marker { <nl>
use vpack
arangodb/arangodb
8c6794011cd10e0ebf821e83b4dc3eba631c4d45
2016-02-26T21:27:07Z
mmm a / lib / SILGen / SILGenType . cpp <nl> ppp b / lib / SILGen / SILGenType . cpp <nl> SILFunction * SILGenModule : : emitProtocolWitness ( <nl> auto input = reqtOrigTy - > getInput ( ) . subst ( reqtSubMap ) - > getCanonicalType ( ) ; <nl> auto result = reqtOrigTy - > getResult ( ) . subst ( reqtSubMap ) - > getCanonicalType ( ) ; <nl> <nl> + / / If there ' s something to map to for the witness thunk , the conformance <nl> + / / should be phrased in the same terms . This particularly applies to classes <nl> + / / where a thunk for a method in a conformance like ` extension Class : P where <nl> + / / T : Q ` will go from its native signature of ` < τ_0_0 where τ_0_0 : Q > ` ( with T <nl> + / / canonicalised to τ_0_0 ) , to ` < τ_0_0 , τ_1_0 where τ_0_0 : Class < τ_1_0 > , <nl> + / / τ_1_0 : Q > ` ( with T now represented by τ_1_0 ) . Find the right conformance by <nl> + / / looking for the conformance of ' Self ' . <nl> + if ( reqtSubMap ) { <nl> + auto requirement = conformance . getRequirement ( ) ; <nl> + auto self = requirement - > getProtocolSelfType ( ) - > getCanonicalType ( ) ; <nl> + <nl> + conformance = * reqtSubMap . lookupConformance ( self , requirement ) ; <nl> + } <nl> + <nl> CanAnyFunctionType reqtSubstTy ; <nl> if ( genericEnv ) { <nl> auto * genericSig = genericEnv - > getGenericSignature ( ) ; <nl> new file mode 100644 <nl> index 000000000000 . . 060c43722cb6 <nl> mmm / dev / null <nl> ppp b / test / IRGen / conditional_conformances_class_with_defaulted_method . swift <nl> <nl> + / / RUN : % target - swift - frontend - emit - ir % s - module - name x | % FileCheck % s <nl> + <nl> + / / rdar : / / problem / 40078863 - witness signatures get adjusted and the <nl> + / / ProtocolConformances accompanying them did not , resulting in an extra witness <nl> + / / table parameter . <nl> + <nl> + protocol Foo { <nl> + func bar ( ) <nl> + } <nl> + extension Foo { <nl> + func bar ( ) { } <nl> + } <nl> + class Box < T > { } <nl> + extension Box : Foo where T : Foo { } <nl> + / / CHECK - LABEL : define internal swiftcc void @ " $ S1x3BoxCyqd__GAA3FooA2aEP3baryyFTW " ( % T1x3BoxC . 0 * * noalias nocapture swiftself dereferenceable ( { { [ 48 ] } } ) , % swift . type * % Self , i8 * * % SelfWitnessTable ) <nl> mmm a / test / SILGen / witnesses_class . swift <nl> ppp b / test / SILGen / witnesses_class . swift <nl> class UsesDefaults < X : Barable > : HasDefaults { } <nl> <nl> / / Covariant Self : <nl> <nl> - / / CHECK - LABEL : sil private [ transparent ] [ thunk ] @ $ S15witnesses_class12UsesDefaultsCyxGAA03HasD0A2aEP10hasDefaultyyFTW : $ @ convention ( witness_method : HasDefaults ) < τ_0_0 > < τ_1_0 where τ_0_0 : UsesDefaults < τ_1_0 > , τ_1_0 : Barable > ( @ in_guaranteed τ_0_0 ) - > ( ) <nl> + / / CHECK - LABEL : sil private [ transparent ] [ thunk ] @ $ S15witnesses_class12UsesDefaultsCyqd__GAA03HasD0A2aEP10hasDefaultyyFTW : $ @ convention ( witness_method : HasDefaults ) < τ_0_0 > < τ_1_0 where τ_0_0 : UsesDefaults < τ_1_0 > , τ_1_0 : Barable > ( @ in_guaranteed τ_0_0 ) - > ( ) { <nl> / / CHECK : [ [ FN : % . * ] ] = function_ref @ $ S15witnesses_class11HasDefaultsPAAE10hasDefaultyyF : $ @ convention ( method ) < τ_0_0 where τ_0_0 : HasDefaults > ( @ in_guaranteed τ_0_0 ) - > ( ) <nl> / / CHECK : apply [ [ FN ] ] < τ_0_0 > ( <nl> / / CHECK : return <nl> class UsesDefaults < X : Barable > : HasDefaults { } <nl> <nl> / / Covariant Self : <nl> <nl> - / / CHECK - LABEL : sil private [ transparent ] [ thunk ] @ $ S15witnesses_class12UsesDefaultsCyxGAA03HasD0A2aEP17hasDefaultGenericyyqd__AA7FooableRd__lFTW : $ @ convention ( witness_method : HasDefaults ) < τ_0_0 > < τ_1_0 where τ_0_0 : UsesDefaults < τ_1_0 > , τ_1_0 : Barable > < τ_2_0 where τ_2_0 : Fooable > ( @ guaranteed τ_2_0 , @ in_guaranteed τ_0_0 ) - > ( ) <nl> + / / CHECK - LABEL : sil private [ transparent ] [ thunk ] @ $ S15witnesses_class12UsesDefaultsCyqd__GAA03HasD0A2aEP17hasDefaultGenericyyqd__AA7FooableRd__lFTW : $ @ convention ( witness_method : HasDefaults ) < τ_0_0 > < τ_1_0 where τ_0_0 : UsesDefaults < τ_1_0 > , τ_1_0 : Barable > < τ_2_0 where τ_2_0 : Fooable > ( @ guaranteed τ_2_0 , @ in_guaranteed τ_0_0 ) - > ( ) { <nl> / / CHECK : [ [ FN : % . * ] ] = function_ref @ $ S15witnesses_class11HasDefaultsPAAE17hasDefaultGenericyyqd__AA7FooableRd__lF : $ @ convention ( method ) < τ_0_0 where τ_0_0 : HasDefaults > < τ_1_0 where τ_1_0 : Fooable > ( @ guaranteed τ_1_0 , @ in_guaranteed τ_0_0 ) - > ( ) <nl> / / CHECK : apply [ [ FN ] ] < τ_0_0 , τ_2_0 > ( <nl> / / CHECK : return <nl>
[ SILGen ] Ensure type params in witness method conformances match the witness method signatures .
apple/swift
6bd70c4eaa4d55c541f74dc5c842357e6329694e
2018-05-10T13:09:00Z
mmm a / src / rpc / blockchain . cpp <nl> ppp b / src / rpc / blockchain . cpp <nl> UniValue getblockchaininfo ( const JSONRPCRequest & request ) <nl> { RPCResult : : Type : : NUM_TIME , " start_time " , " the minimum median time past of a block at which the bit gains its meaning " } , <nl> { RPCResult : : Type : : NUM_TIME , " timeout " , " the median time past of a block at which the deployment is considered failed if not yet locked in " } , <nl> { RPCResult : : Type : : NUM , " since " , " height of the first block to which the status applies " } , <nl> - { RPCResult : : Type : : OBJ , " statistics " , " numeric statistics about BIP9 signalling for a softfork " , <nl> + { RPCResult : : Type : : OBJ , " statistics " , " numeric statistics about BIP9 signalling for a softfork ( only for \ " started \ " status ) " , <nl> { <nl> { RPCResult : : Type : : NUM , " period " , " the length in blocks of the BIP9 signalling period " } , <nl> { RPCResult : : Type : : NUM , " threshold " , " the number of blocks with the version bit set required to activate the feature " } , <nl>
Merge : doc : Fix nit in getblockchaininfo
bitcoin/bitcoin
a64e5bed6bfe7c95ee232070e18b8fd680bfaf62
2020-03-16T12:19:35Z
mmm a / vnext / Desktop . DLL / Version . rc <nl> ppp b / vnext / Desktop . DLL / Version . rc <nl> <nl> # include < winver . h > <nl> <nl> - # define VER_FILEVERSION 0 , 59 , 0 , 24 <nl> - # define VER_FILEVERSION_STR " 0 . 59 . 0 - vnext . 24 " <nl> + # define VER_FILEVERSION 0 , 59 , 0 , 25 <nl> + # define VER_FILEVERSION_STR " 0 . 59 . 0 - vnext . 25 " <nl> <nl> # ifndef DEBUG <nl> # define VER_DEBUG 0 <nl> mmm a / vnext / package . json <nl> ppp b / vnext / package . json <nl> <nl> { <nl> " name " : " react - native - windows " , <nl> - " version " : " 0 . 59 . 0 - vnext . 24 " , <nl> + " version " : " 0 . 59 . 0 - vnext . 25 " , <nl> " license " : " MIT " , <nl> " repository " : { <nl> " type " : " git " , <nl>
Applying package update to 0 . 59 . 0 - vnext . 25
microsoft/react-native-windows
08924fd0bf5c4db712e5609e2727820ede1fc1b3
2019-06-21T05:14:09Z
mmm a / tensorflow / python / keras / callbacks_test . py <nl> ppp b / tensorflow / python / keras / callbacks_test . py <nl> def test_EarlyStopping ( self ) : <nl> num_classes = NUM_CLASSES ) <nl> y_test = keras . utils . to_categorical ( y_test ) <nl> y_train = keras . utils . to_categorical ( y_train ) <nl> - model = keras . models . Sequential ( ) <nl> - model . add ( <nl> - keras . layers . Dense ( <nl> - NUM_HIDDEN , input_dim = INPUT_DIM , activation = ' relu ' ) ) <nl> - model . add ( keras . layers . Dense ( NUM_CLASSES , activation = ' softmax ' ) ) <nl> + model = testing_utils . get_small_sequential_mlp ( <nl> + num_hidden = NUM_HIDDEN , num_classes = NUM_CLASSES , input_dim = INPUT_DIM ) <nl> model . compile ( <nl> loss = ' categorical_crossentropy ' , <nl> optimizer = ' rmsprop ' , <nl> def test_EarlyStopping_with_baseline ( self ) : <nl> test_samples = 50 , <nl> input_shape = ( 1 , ) , <nl> num_classes = NUM_CLASSES ) <nl> - model = keras . models . Sequential ( ( keras . layers . Dense ( <nl> - 1 , input_dim = 1 , activation = ' relu ' ) , keras . layers . Dense ( <nl> - 1 , activation = ' sigmoid ' ) , ) ) <nl> + model = testing_utils . get_small_sequential_mlp ( <nl> + num_hidden = 1 , num_classes = 1 , input_dim = 1 ) <nl> model . compile ( <nl> optimizer = ' sgd ' , loss = ' binary_crossentropy ' , metrics = [ ' accuracy ' ] ) <nl> <nl> def test_LearningRateScheduler ( self ) : <nl> num_classes = NUM_CLASSES ) <nl> y_test = keras . utils . to_categorical ( y_test ) <nl> y_train = keras . utils . to_categorical ( y_train ) <nl> - model = keras . models . Sequential ( ) <nl> - model . add ( <nl> - keras . layers . Dense ( <nl> - NUM_HIDDEN , input_dim = INPUT_DIM , activation = ' relu ' ) ) <nl> - model . add ( keras . layers . Dense ( NUM_CLASSES , activation = ' softmax ' ) ) <nl> + model = testing_utils . get_small_sequential_mlp ( <nl> + num_hidden = NUM_HIDDEN , num_classes = NUM_CLASSES , input_dim = INPUT_DIM ) <nl> model . compile ( <nl> loss = ' categorical_crossentropy ' , <nl> optimizer = ' sgd ' , <nl> def test_ReduceLROnPlateau ( self ) : <nl> def make_model ( ) : <nl> random_seed . set_random_seed ( 1234 ) <nl> np . random . seed ( 1337 ) <nl> - model = keras . models . Sequential ( ) <nl> - model . add ( <nl> - keras . layers . Dense ( <nl> - NUM_HIDDEN , input_dim = INPUT_DIM , activation = ' relu ' ) ) <nl> - model . add ( keras . layers . Dense ( NUM_CLASSES , activation = ' softmax ' ) ) <nl> - <nl> + model = testing_utils . get_small_sequential_mlp ( <nl> + num_hidden = NUM_HIDDEN , num_classes = NUM_CLASSES , input_dim = INPUT_DIM ) <nl> model . compile ( <nl> loss = ' categorical_crossentropy ' , <nl> optimizer = keras . optimizers . SGD ( lr = 0 . 1 ) , <nl> def test_CSVLogger ( self ) : <nl> <nl> def make_model ( ) : <nl> np . random . seed ( 1337 ) <nl> - model = keras . models . Sequential ( ) <nl> - model . add ( <nl> - keras . layers . Dense ( <nl> - NUM_HIDDEN , input_dim = INPUT_DIM , activation = ' relu ' ) ) <nl> - model . add ( keras . layers . Dense ( NUM_CLASSES , activation = ' softmax ' ) ) <nl> - <nl> + model = testing_utils . get_small_sequential_mlp ( <nl> + num_hidden = NUM_HIDDEN , num_classes = NUM_CLASSES , input_dim = INPUT_DIM ) <nl> model . compile ( <nl> loss = ' categorical_crossentropy ' , <nl> optimizer = keras . optimizers . SGD ( lr = 0 . 1 ) , <nl> def generator ( ) : <nl> yield x , y <nl> <nl> with self . test_session ( ) : <nl> - model = keras . models . Sequential ( ) <nl> - model . add ( keras . layers . Dense ( 10 , input_dim = 100 , activation = ' relu ' ) ) <nl> - model . add ( keras . layers . Dense ( 10 , activation = ' softmax ' ) ) <nl> + model = testing_utils . get_small_sequential_mlp ( <nl> + num_hidden = 10 , num_classes = 10 , input_dim = 100 ) <nl> model . compile ( <nl> loss = ' categorical_crossentropy ' , <nl> optimizer = ' sgd ' , <nl> def test_TensorBoard_with_ReduceLROnPlateau ( self ) : <nl> y_test = keras . utils . to_categorical ( y_test ) <nl> y_train = keras . utils . to_categorical ( y_train ) <nl> <nl> - model = keras . models . Sequential ( ) <nl> - model . add ( <nl> - keras . layers . Dense ( <nl> - NUM_HIDDEN , input_dim = INPUT_DIM , activation = ' relu ' ) ) <nl> - model . add ( keras . layers . Dense ( NUM_CLASSES , activation = ' softmax ' ) ) <nl> + model = testing_utils . get_small_sequential_mlp ( <nl> + num_hidden = NUM_HIDDEN , num_classes = NUM_CLASSES , input_dim = INPUT_DIM ) <nl> model . compile ( <nl> loss = ' binary_crossentropy ' , optimizer = ' sgd ' , metrics = [ ' accuracy ' ] ) <nl> <nl> def close ( self ) : <nl> <nl> @ test_util . run_in_graph_and_eager_modes <nl> def test_Tensorboard_eager ( self ) : <nl> - with self . test_session ( ) : <nl> - temp_dir = tempfile . mkdtemp ( dir = self . get_temp_dir ( ) ) <nl> - self . addCleanup ( shutil . rmtree , temp_dir , ignore_errors = True ) <nl> - <nl> - ( x_train , y_train ) , ( x_test , y_test ) = testing_utils . get_test_data ( <nl> - train_samples = TRAIN_SAMPLES , <nl> - test_samples = TEST_SAMPLES , <nl> - input_shape = ( INPUT_DIM , ) , <nl> - num_classes = NUM_CLASSES ) <nl> - y_test = keras . utils . to_categorical ( y_test ) <nl> - y_train = keras . utils . to_categorical ( y_train ) <nl> - <nl> - model = keras . models . Sequential ( ) <nl> - model . add ( <nl> - keras . layers . Dense ( <nl> - NUM_HIDDEN , input_dim = INPUT_DIM , activation = ' relu ' ) ) <nl> - model . add ( keras . layers . Dense ( NUM_CLASSES , activation = ' softmax ' ) ) <nl> - model . compile ( <nl> - loss = ' binary_crossentropy ' , <nl> - optimizer = adam . AdamOptimizer ( 0 . 01 ) , <nl> - metrics = [ ' accuracy ' ] ) <nl> - <nl> - cbks = [ keras . callbacks . TensorBoard ( log_dir = temp_dir ) ] <nl> + temp_dir = tempfile . mkdtemp ( dir = self . get_temp_dir ( ) ) <nl> + self . addCleanup ( shutil . rmtree , temp_dir , ignore_errors = True ) <nl> <nl> - model . fit ( <nl> - x_train , <nl> - y_train , <nl> - batch_size = BATCH_SIZE , <nl> - validation_data = ( x_test , y_test ) , <nl> - callbacks = cbks , <nl> - epochs = 2 , <nl> - verbose = 0 ) <nl> + ( x_train , y_train ) , ( x_test , y_test ) = testing_utils . get_test_data ( <nl> + train_samples = TRAIN_SAMPLES , <nl> + test_samples = TEST_SAMPLES , <nl> + input_shape = ( INPUT_DIM , ) , <nl> + num_classes = NUM_CLASSES ) <nl> + y_test = keras . utils . to_categorical ( y_test ) <nl> + y_train = keras . utils . to_categorical ( y_train ) <nl> <nl> - self . assertTrue ( os . path . exists ( temp_dir ) ) <nl> + model = testing_utils . get_small_sequential_mlp ( <nl> + num_hidden = NUM_HIDDEN , num_classes = NUM_CLASSES , input_dim = INPUT_DIM ) <nl> + model . compile ( <nl> + loss = ' binary_crossentropy ' , <nl> + optimizer = adam . AdamOptimizer ( 0 . 01 ) , <nl> + metrics = [ ' accuracy ' ] ) <nl> + <nl> + cbks = [ keras . callbacks . TensorBoard ( log_dir = temp_dir ) ] <nl> + <nl> + model . fit ( <nl> + x_train , <nl> + y_train , <nl> + batch_size = BATCH_SIZE , <nl> + validation_data = ( x_test , y_test ) , <nl> + callbacks = cbks , <nl> + epochs = 2 , <nl> + verbose = 0 ) <nl> + <nl> + self . assertTrue ( os . path . exists ( temp_dir ) ) <nl> <nl> def test_RemoteMonitorWithJsonPayload ( self ) : <nl> if requests is None : <nl> mmm a / tensorflow / python / keras / engine / sequential_test . py <nl> ppp b / tensorflow / python / keras / engine / sequential_test . py <nl> <nl> from tensorflow . python . data . ops import dataset_ops <nl> from tensorflow . python . eager import function <nl> from tensorflow . python . framework import test_util as tf_test_util <nl> + from tensorflow . python . keras import testing_utils <nl> from tensorflow . python . ops import array_ops <nl> from tensorflow . python . platform import test <nl> from tensorflow . python . training import rmsprop <nl> <nl> <nl> - def _get_small_mlp ( num_hidden , num_classes , input_dim = None ) : <nl> - model = keras . models . Sequential ( ) <nl> - if input_dim : <nl> - model . add ( keras . layers . Dense ( num_hidden , activation = ' relu ' , <nl> - input_dim = input_dim ) ) <nl> - else : <nl> - model . add ( keras . layers . Dense ( num_hidden , activation = ' relu ' ) ) <nl> - model . add ( keras . layers . Dense ( num_classes , activation = ' softmax ' ) ) <nl> - return model <nl> - <nl> - <nl> class TestSequential ( test . TestCase , parameterized . TestCase ) : <nl> " " " Most Sequential model API tests are covered in ` training_test . py ` . <nl> " " " <nl> def test_sequential_pop ( self ) : <nl> batch_size = 5 <nl> num_classes = 2 <nl> <nl> - model = _get_small_mlp ( num_hidden , num_classes , input_dim ) <nl> + model = testing_utils . get_small_sequential_mlp ( <nl> + num_hidden , num_classes , input_dim ) <nl> model . compile ( loss = ' mse ' , optimizer = rmsprop . RMSPropOptimizer ( 1e - 3 ) ) <nl> x = np . random . random ( ( batch_size , input_dim ) ) <nl> y = np . random . random ( ( batch_size , num_classes ) ) <nl> def test_sequential_deferred_build_with_np_arrays ( self ) : <nl> batch_size = 5 <nl> num_classes = 2 <nl> <nl> - model = _get_small_mlp ( num_hidden , num_classes ) <nl> + model = testing_utils . get_small_sequential_mlp ( num_hidden , num_classes ) <nl> model . compile ( <nl> loss = ' mse ' , <nl> optimizer = rmsprop . RMSPropOptimizer ( 1e - 3 ) , <nl> def test_sequential_deferred_build_with_dataset_iterators ( self ) : <nl> num_samples = 50 <nl> steps_per_epoch = 10 <nl> <nl> - model = _get_small_mlp ( num_hidden , num_classes ) <nl> + model = testing_utils . get_small_sequential_mlp ( num_hidden , num_classes ) <nl> model . compile ( <nl> loss = ' mse ' , <nl> optimizer = rmsprop . RMSPropOptimizer ( 1e - 3 ) , <nl> def test_training_and_eval_methods_on_symbolic_tensors ( self , deferred ) : <nl> <nl> def get_model ( ) : <nl> if deferred : <nl> - model = _get_small_mlp ( 10 , 4 ) <nl> + model = testing_utils . get_small_sequential_mlp ( 10 , 4 ) <nl> else : <nl> - model = _get_small_mlp ( 10 , 4 , input_dim = 3 ) <nl> + model = testing_utils . get_small_sequential_mlp ( 10 , 4 , input_dim = 3 ) <nl> model . compile ( <nl> optimizer = rmsprop . RMSPropOptimizer ( 1e - 3 ) , <nl> loss = ' categorical_crossentropy ' , <nl> def test_sequential_deferred_build_serialization ( self ) : <nl> batch_size = 5 <nl> num_classes = 2 <nl> <nl> - model = _get_small_mlp ( num_hidden , num_classes ) <nl> + model = testing_utils . get_small_sequential_mlp ( num_hidden , num_classes ) <nl> model . compile ( <nl> loss = ' mse ' , <nl> optimizer = rmsprop . RMSPropOptimizer ( 1e - 3 ) , <nl> def test_sequential_deferred_build_serialization ( self ) : <nl> <nl> @ tf_test_util . run_in_graph_and_eager_modes <nl> def test_sequential_shape_inference_deferred ( self ) : <nl> - model = _get_small_mlp ( 4 , 5 ) <nl> + model = testing_utils . get_small_sequential_mlp ( 4 , 5 ) <nl> output_shape = model . compute_output_shape ( ( None , 7 ) ) <nl> self . assertEqual ( tuple ( output_shape . as_list ( ) ) , ( None , 5 ) ) <nl> <nl> @ tf_test_util . run_in_graph_and_eager_modes <nl> def test_sequential_build_deferred ( self ) : <nl> - model = _get_small_mlp ( 4 , 5 ) <nl> + model = testing_utils . get_small_sequential_mlp ( 4 , 5 ) <nl> <nl> model . build ( ( None , 10 ) ) <nl> self . assertTrue ( model . built ) <nl> self . assertEqual ( len ( model . weights ) , 4 ) <nl> <nl> # Test with nested model <nl> - model = _get_small_mlp ( 4 , 3 ) <nl> - inner_model = _get_small_mlp ( 4 , 5 ) <nl> + model = testing_utils . get_small_sequential_mlp ( 4 , 3 ) <nl> + inner_model = testing_utils . get_small_sequential_mlp ( 4 , 5 ) <nl> model . add ( inner_model ) <nl> <nl> model . build ( ( None , 10 ) ) <nl> def test_sequential_build_deferred ( self ) : <nl> <nl> @ tf_test_util . run_in_graph_and_eager_modes <nl> def test_sequential_nesting ( self ) : <nl> - model = _get_small_mlp ( 4 , 3 ) <nl> - inner_model = _get_small_mlp ( 4 , 5 ) <nl> + model = testing_utils . get_small_sequential_mlp ( 4 , 3 ) <nl> + inner_model = testing_utils . get_small_sequential_mlp ( 4 , 5 ) <nl> model . add ( inner_model ) <nl> <nl> model . compile ( loss = ' mse ' , optimizer = rmsprop . RMSPropOptimizer ( 1e - 3 ) ) <nl> def __init__ ( self , name = None ) : <nl> @ tf_test_util . run_in_graph_and_eager_modes <nl> def test_build_before_fit ( self ) : <nl> # Fix for b / 112433577 <nl> - model = _get_small_mlp ( 4 , 5 ) <nl> + model = testing_utils . get_small_sequential_mlp ( 4 , 5 ) <nl> model . compile ( loss = ' mse ' , optimizer = rmsprop . RMSPropOptimizer ( 1e - 3 ) ) <nl> <nl> model . build ( ( None , 6 ) ) <nl> mmm a / tensorflow / python / keras / engine / training_test . py <nl> ppp b / tensorflow / python / keras / engine / training_test . py <nl> class TrainingTest ( test . TestCase ) : <nl> <nl> @ tf_test_util . run_in_graph_and_eager_modes <nl> def test_fit_on_arrays ( self ) : <nl> - with self . test_session ( ) : <nl> - a = keras . layers . Input ( shape = ( 3 , ) , name = ' input_a ' ) <nl> - b = keras . layers . Input ( shape = ( 3 , ) , name = ' input_b ' ) <nl> - <nl> - dense = keras . layers . Dense ( 4 , name = ' dense ' ) <nl> - c = dense ( a ) <nl> - d = dense ( b ) <nl> - e = keras . layers . Dropout ( 0 . 5 , name = ' dropout ' ) ( c ) <nl> - <nl> - model = keras . models . Model ( [ a , b ] , [ d , e ] ) <nl> - <nl> - optimizer = RMSPropOptimizer ( learning_rate = 0 . 001 ) <nl> - loss = ' mse ' <nl> - loss_weights = [ 1 . , 0 . 5 ] <nl> - model . compile ( <nl> - optimizer , <nl> - loss , <nl> - metrics = [ metrics_module . CategoricalAccuracy ( ) , ' mae ' ] , <nl> - loss_weights = loss_weights ) <nl> - <nl> - input_a_np = np . random . random ( ( 10 , 3 ) ) <nl> - input_b_np = np . random . random ( ( 10 , 3 ) ) <nl> - <nl> - output_d_np = np . random . random ( ( 10 , 4 ) ) <nl> - output_e_np = np . random . random ( ( 10 , 4 ) ) <nl> - <nl> - # Test fit at different verbosity <nl> - model . fit ( <nl> - [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] , <nl> - epochs = 1 , <nl> - batch_size = 5 , <nl> - verbose = 0 ) <nl> - model . fit ( <nl> - [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] , <nl> - epochs = 1 , <nl> - batch_size = 5 , <nl> - verbose = 1 ) <nl> - model . fit ( <nl> - [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] , <nl> - epochs = 2 , <nl> - batch_size = 5 , <nl> - verbose = 2 ) <nl> - model . train_on_batch ( [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] ) <nl> - <nl> - # Test model with input data as a list of lists <nl> - model . fit ( <nl> - [ np . ndarray . tolist ( input_a_np ) , np . ndarray . tolist ( input_b_np ) ] , <nl> - [ output_d_np , output_e_np ] , <nl> - epochs = 2 , <nl> - batch_size = 5 , <nl> - verbose = 2 ) <nl> + a = keras . layers . Input ( shape = ( 3 , ) , name = ' input_a ' ) <nl> + b = keras . layers . Input ( shape = ( 3 , ) , name = ' input_b ' ) <nl> <nl> - # Test with validation data <nl> - model . fit ( <nl> - [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] , <nl> - validation_data = ( [ input_a_np , input_b_np ] , [ output_d_np , <nl> - output_e_np ] ) , <nl> - epochs = 1 , <nl> - batch_size = 5 , <nl> - verbose = 0 ) <nl> - model . fit ( <nl> - [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] , <nl> - validation_data = ( [ input_a_np , input_b_np ] , [ output_d_np , <nl> - output_e_np ] ) , <nl> - epochs = 2 , <nl> - batch_size = 5 , <nl> - verbose = 1 ) <nl> - model . fit ( <nl> - [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] , <nl> - validation_data = ( [ input_a_np , input_b_np ] , [ output_d_np , <nl> - output_e_np ] ) , <nl> - epochs = 2 , <nl> - batch_size = 5 , <nl> - verbose = 2 ) <nl> - # Test with validation split <nl> - model . fit ( <nl> - [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] , <nl> - epochs = 2 , <nl> - batch_size = 5 , <nl> - verbose = 0 , <nl> - validation_split = 0 . 2 ) <nl> + dense = keras . layers . Dense ( 4 , name = ' dense ' ) <nl> + c = dense ( a ) <nl> + d = dense ( b ) <nl> + e = keras . layers . Dropout ( 0 . 5 , name = ' dropout ' ) ( c ) <nl> <nl> - # Test with dictionary inputs <nl> - model . fit ( <nl> - { <nl> - ' input_a ' : input_a_np , <nl> - ' input_b ' : input_b_np <nl> - } , { <nl> - ' dense ' : output_d_np , <nl> - ' dropout ' : output_e_np <nl> - } , <nl> - epochs = 1 , <nl> - batch_size = 5 , <nl> - verbose = 0 ) <nl> - model . fit ( <nl> - { <nl> - ' input_a ' : input_a_np , <nl> - ' input_b ' : input_b_np <nl> - } , { <nl> - ' dense ' : output_d_np , <nl> - ' dropout ' : output_e_np <nl> - } , <nl> - epochs = 1 , <nl> - batch_size = 5 , <nl> - verbose = 1 ) <nl> - model . fit ( <nl> - { <nl> - ' input_a ' : input_a_np , <nl> - ' input_b ' : input_b_np <nl> - } , { <nl> - ' dense ' : output_d_np , <nl> - ' dropout ' : output_e_np <nl> - } , <nl> - validation_data = ( { <nl> - ' input_a ' : input_a_np , <nl> - ' input_b ' : input_b_np <nl> - } , { <nl> - ' dense ' : output_d_np , <nl> - ' dropout ' : output_e_np <nl> - } ) , <nl> - epochs = 1 , <nl> - batch_size = 5 , <nl> - verbose = 0 ) <nl> - model . train_on_batch ( { <nl> - ' input_a ' : input_a_np , <nl> - ' input_b ' : input_b_np <nl> - } , { <nl> - ' dense ' : output_d_np , <nl> - ' dropout ' : output_e_np <nl> - } ) <nl> - <nl> - # Test with lists for loss , metrics <nl> - loss = [ ' mae ' , ' mse ' ] <nl> - model . compile ( <nl> - optimizer , <nl> - loss , <nl> - metrics = [ metrics_module . CategoricalAccuracy ( ) , ' mae ' ] ) <nl> - model . fit ( <nl> - [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] , <nl> - epochs = 1 , <nl> - batch_size = 5 , <nl> - verbose = 0 ) <nl> + model = keras . models . Model ( [ a , b ] , [ d , e ] ) <nl> <nl> - # Test with dictionaries for loss , metrics , loss weights <nl> - loss = { ' dense ' : ' mse ' , ' dropout ' : ' mae ' } <nl> - loss_weights = { ' dense ' : 1 . , ' dropout ' : 0 . 5 } <nl> - metrics = { <nl> - ' dense ' : ' mse ' , <nl> - ' dropout ' : metrics_module . CategoricalAccuracy ( ) <nl> - } <nl> - model . compile ( optimizer , loss , metrics = metrics , loss_weights = loss_weights ) <nl> + optimizer = RMSPropOptimizer ( learning_rate = 0 . 001 ) <nl> + loss = ' mse ' <nl> + loss_weights = [ 1 . , 0 . 5 ] <nl> + model . compile ( <nl> + optimizer , <nl> + loss , <nl> + metrics = [ metrics_module . CategoricalAccuracy ( ) , ' mae ' ] , <nl> + loss_weights = loss_weights ) <nl> + <nl> + input_a_np = np . random . random ( ( 10 , 3 ) ) <nl> + input_b_np = np . random . random ( ( 10 , 3 ) ) <nl> + <nl> + output_d_np = np . random . random ( ( 10 , 4 ) ) <nl> + output_e_np = np . random . random ( ( 10 , 4 ) ) <nl> + <nl> + # Test fit at different verbosity <nl> + model . fit ( <nl> + [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] , <nl> + epochs = 1 , <nl> + batch_size = 5 , <nl> + verbose = 0 ) <nl> + model . fit ( <nl> + [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] , <nl> + epochs = 1 , <nl> + batch_size = 5 , <nl> + verbose = 1 ) <nl> + model . fit ( <nl> + [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] , <nl> + epochs = 2 , <nl> + batch_size = 5 , <nl> + verbose = 2 ) <nl> + model . train_on_batch ( [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] ) <nl> + <nl> + # Test model with input data as a list of lists <nl> + model . fit ( <nl> + [ np . ndarray . tolist ( input_a_np ) , np . ndarray . tolist ( input_b_np ) ] , <nl> + [ output_d_np , output_e_np ] , <nl> + epochs = 2 , <nl> + batch_size = 5 , <nl> + verbose = 2 ) <nl> + <nl> + # Test with validation data <nl> + model . fit ( <nl> + [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] , <nl> + validation_data = ( [ input_a_np , input_b_np ] , [ output_d_np , <nl> + output_e_np ] ) , <nl> + epochs = 1 , <nl> + batch_size = 5 , <nl> + verbose = 0 ) <nl> + model . fit ( <nl> + [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] , <nl> + validation_data = ( [ input_a_np , input_b_np ] , [ output_d_np , <nl> + output_e_np ] ) , <nl> + epochs = 2 , <nl> + batch_size = 5 , <nl> + verbose = 1 ) <nl> + model . fit ( <nl> + [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] , <nl> + validation_data = ( [ input_a_np , input_b_np ] , [ output_d_np , <nl> + output_e_np ] ) , <nl> + epochs = 2 , <nl> + batch_size = 5 , <nl> + verbose = 2 ) <nl> + # Test with validation split <nl> + model . fit ( <nl> + [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] , <nl> + epochs = 2 , <nl> + batch_size = 5 , <nl> + verbose = 0 , <nl> + validation_split = 0 . 2 ) <nl> + <nl> + # Test with dictionary inputs <nl> + model . fit ( <nl> + { <nl> + ' input_a ' : input_a_np , <nl> + ' input_b ' : input_b_np <nl> + } , { <nl> + ' dense ' : output_d_np , <nl> + ' dropout ' : output_e_np <nl> + } , <nl> + epochs = 1 , <nl> + batch_size = 5 , <nl> + verbose = 0 ) <nl> + model . fit ( <nl> + { <nl> + ' input_a ' : input_a_np , <nl> + ' input_b ' : input_b_np <nl> + } , { <nl> + ' dense ' : output_d_np , <nl> + ' dropout ' : output_e_np <nl> + } , <nl> + epochs = 1 , <nl> + batch_size = 5 , <nl> + verbose = 1 ) <nl> + model . fit ( <nl> + { <nl> + ' input_a ' : input_a_np , <nl> + ' input_b ' : input_b_np <nl> + } , { <nl> + ' dense ' : output_d_np , <nl> + ' dropout ' : output_e_np <nl> + } , <nl> + validation_data = ( { <nl> + ' input_a ' : input_a_np , <nl> + ' input_b ' : input_b_np <nl> + } , { <nl> + ' dense ' : output_d_np , <nl> + ' dropout ' : output_e_np <nl> + } ) , <nl> + epochs = 1 , <nl> + batch_size = 5 , <nl> + verbose = 0 ) <nl> + model . train_on_batch ( { <nl> + ' input_a ' : input_a_np , <nl> + ' input_b ' : input_b_np <nl> + } , { <nl> + ' dense ' : output_d_np , <nl> + ' dropout ' : output_e_np <nl> + } ) <nl> + <nl> + # Test with lists for loss , metrics <nl> + loss = [ ' mae ' , ' mse ' ] <nl> + model . compile ( <nl> + optimizer , <nl> + loss , <nl> + metrics = [ metrics_module . CategoricalAccuracy ( ) , ' mae ' ] ) <nl> + model . fit ( <nl> + [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] , <nl> + epochs = 1 , <nl> + batch_size = 5 , <nl> + verbose = 0 ) <nl> + <nl> + # Test with dictionaries for loss , metrics , loss weights <nl> + loss = { ' dense ' : ' mse ' , ' dropout ' : ' mae ' } <nl> + loss_weights = { ' dense ' : 1 . , ' dropout ' : 0 . 5 } <nl> + metrics = { <nl> + ' dense ' : ' mse ' , <nl> + ' dropout ' : metrics_module . CategoricalAccuracy ( ) <nl> + } <nl> + model . compile ( optimizer , loss , metrics = metrics , loss_weights = loss_weights ) <nl> + model . fit ( <nl> + [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] , <nl> + epochs = 1 , <nl> + batch_size = 5 , <nl> + verbose = 0 ) <nl> + <nl> + # Invalid use cases <nl> + with self . assertRaises ( ValueError ) : <nl> + model . train_on_batch ( { ' input_a ' : input_a_np } , <nl> + [ output_d_np , output_e_np ] ) <nl> + with self . assertRaises ( AttributeError ) : <nl> model . fit ( <nl> [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] , <nl> epochs = 1 , <nl> - batch_size = 5 , <nl> + validation_data = ( [ input_a_np , input_b_np ] , 0 , 0 ) , <nl> verbose = 0 ) <nl> + with self . assertRaises ( ValueError ) : <nl> + model . train_on_batch ( [ input_a_np ] , [ output_d_np , output_e_np ] ) <nl> + with self . assertRaises ( AttributeError ) : <nl> + model . train_on_batch ( 1 , [ output_d_np , output_e_np ] ) <nl> + with self . assertRaises ( ValueError ) : <nl> + model . train_on_batch ( input_a_np , [ output_d_np , output_e_np ] ) <nl> + with self . assertRaises ( ValueError ) : <nl> + bad_input = np . random . random ( ( 11 , 3 ) ) <nl> + model . train_on_batch ( [ bad_input , input_b_np ] , <nl> + [ output_d_np , output_e_np ] ) <nl> + with self . assertRaises ( ValueError ) : <nl> + bad_target = np . random . random ( ( 11 , 4 ) ) <nl> + model . train_on_batch ( [ input_a_np , input_b_np ] , <nl> + [ bad_target , output_e_np ] ) <nl> + <nl> + # Build single - input model <nl> + x = keras . layers . Input ( shape = ( 3 , ) , name = ' input_a ' ) <nl> + y = keras . layers . Dense ( 4 ) ( x ) <nl> + model = keras . models . Model ( x , y ) <nl> + model . compile ( optimizer , loss = ' mse ' ) <nl> + # This will work <nl> + model . fit ( [ input_a_np ] , output_d_np , epochs = 1 ) <nl> + with self . assertRaises ( ValueError ) : <nl> + model . fit ( [ input_a_np , input_a_np ] , output_d_np , epochs = 1 ) <nl> <nl> - # Invalid use cases <nl> - with self . assertRaises ( ValueError ) : <nl> - model . train_on_batch ( { ' input_a ' : input_a_np } , <nl> - [ output_d_np , output_e_np ] ) <nl> - with self . assertRaises ( AttributeError ) : <nl> - model . fit ( <nl> - [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] , <nl> - epochs = 1 , <nl> - validation_data = ( [ input_a_np , input_b_np ] , 0 , 0 ) , <nl> - verbose = 0 ) <nl> - with self . assertRaises ( ValueError ) : <nl> - model . train_on_batch ( [ input_a_np ] , [ output_d_np , output_e_np ] ) <nl> - with self . assertRaises ( AttributeError ) : <nl> - model . train_on_batch ( 1 , [ output_d_np , output_e_np ] ) <nl> - with self . assertRaises ( ValueError ) : <nl> - model . train_on_batch ( input_a_np , [ output_d_np , output_e_np ] ) <nl> - with self . assertRaises ( ValueError ) : <nl> - bad_input = np . random . random ( ( 11 , 3 ) ) <nl> - model . train_on_batch ( [ bad_input , input_b_np ] , <nl> - [ output_d_np , output_e_np ] ) <nl> - with self . assertRaises ( ValueError ) : <nl> - bad_target = np . random . random ( ( 11 , 4 ) ) <nl> - model . train_on_batch ( [ input_a_np , input_b_np ] , <nl> - [ bad_target , output_e_np ] ) <nl> - <nl> - # Build single - input model <nl> - x = keras . layers . Input ( shape = ( 3 , ) , name = ' input_a ' ) <nl> - y = keras . layers . Dense ( 4 ) ( x ) <nl> - model = keras . models . Model ( x , y ) <nl> - model . compile ( optimizer , loss = ' mse ' ) <nl> - # This will work <nl> - model . fit ( [ input_a_np ] , output_d_np , epochs = 1 ) <nl> - with self . assertRaises ( ValueError ) : <nl> - model . fit ( [ input_a_np , input_a_np ] , output_d_np , epochs = 1 ) <nl> - <nl> - # Test model on a list of floats <nl> - input_a_np = np . random . random ( ( 10 , 3 ) ) <nl> - input_b_np = np . random . random ( ( 10 , 4 ) ) <nl> + # Test model on a list of floats <nl> + input_a_np = np . random . random ( ( 10 , 3 ) ) <nl> + input_b_np = np . random . random ( ( 10 , 4 ) ) <nl> <nl> - model . fit ( [ np . ndarray . tolist ( input_a_np ) ] , <nl> - [ np . ndarray . tolist ( input_b_np ) ] , <nl> - epochs = 2 , <nl> - batch_size = 5 , <nl> - verbose = 2 ) <nl> + model . fit ( [ np . ndarray . tolist ( input_a_np ) ] , <nl> + [ np . ndarray . tolist ( input_b_np ) ] , <nl> + epochs = 2 , <nl> + batch_size = 5 , <nl> + verbose = 2 ) <nl> <nl> @ tf_test_util . run_in_graph_and_eager_modes <nl> def test_evaluate_predict_on_arrays ( self ) : <nl> - with self . test_session ( ) : <nl> - a = keras . layers . Input ( shape = ( 3 , ) , name = ' input_a ' ) <nl> - b = keras . layers . Input ( shape = ( 3 , ) , name = ' input_b ' ) <nl> - <nl> - dense = keras . layers . Dense ( 4 , name = ' dense ' ) <nl> - c = dense ( a ) <nl> - d = dense ( b ) <nl> - e = keras . layers . Dropout ( 0 . 5 , name = ' dropout ' ) ( c ) <nl> - <nl> - model = keras . models . Model ( [ a , b ] , [ d , e ] ) <nl> - <nl> - optimizer = RMSPropOptimizer ( learning_rate = 0 . 001 ) <nl> - loss = ' mse ' <nl> - loss_weights = [ 1 . , 0 . 5 ] <nl> - model . compile ( <nl> - optimizer , <nl> - loss , <nl> - metrics = [ ' mae ' , metrics_module . CategoricalAccuracy ( ) ] , <nl> - loss_weights = loss_weights , <nl> - sample_weight_mode = None ) <nl> + a = keras . layers . Input ( shape = ( 3 , ) , name = ' input_a ' ) <nl> + b = keras . layers . Input ( shape = ( 3 , ) , name = ' input_b ' ) <nl> <nl> - input_a_np = np . random . random ( ( 10 , 3 ) ) <nl> - input_b_np = np . random . random ( ( 10 , 3 ) ) <nl> + dense = keras . layers . Dense ( 4 , name = ' dense ' ) <nl> + c = dense ( a ) <nl> + d = dense ( b ) <nl> + e = keras . layers . Dropout ( 0 . 5 , name = ' dropout ' ) ( c ) <nl> <nl> - output_d_np = np . random . random ( ( 10 , 4 ) ) <nl> - output_e_np = np . random . random ( ( 10 , 4 ) ) <nl> + model = keras . models . Model ( [ a , b ] , [ d , e ] ) <nl> <nl> - # Test evaluate at different verbosity <nl> - out = model . evaluate ( <nl> - [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] , <nl> - batch_size = 5 , <nl> - verbose = 0 ) <nl> - self . assertEqual ( len ( out ) , 7 ) <nl> - out = model . evaluate ( <nl> - [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] , <nl> - batch_size = 5 , <nl> - verbose = 1 ) <nl> - self . assertEqual ( len ( out ) , 7 ) <nl> - out = model . evaluate ( <nl> - [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] , <nl> - batch_size = 5 , <nl> - verbose = 2 ) <nl> - self . assertEqual ( len ( out ) , 7 ) <nl> - out = model . test_on_batch ( [ input_a_np , input_b_np ] , <nl> - [ output_d_np , output_e_np ] ) <nl> - self . assertEqual ( len ( out ) , 7 ) <nl> - <nl> - # Test evaluate with dictionary inputs <nl> - model . evaluate ( <nl> - { <nl> - ' input_a ' : input_a_np , <nl> - ' input_b ' : input_b_np <nl> - } , { <nl> - ' dense ' : output_d_np , <nl> - ' dropout ' : output_e_np <nl> - } , <nl> - batch_size = 5 , <nl> - verbose = 0 ) <nl> - model . evaluate ( <nl> - { <nl> - ' input_a ' : input_a_np , <nl> - ' input_b ' : input_b_np <nl> - } , { <nl> - ' dense ' : output_d_np , <nl> - ' dropout ' : output_e_np <nl> - } , <nl> - batch_size = 5 , <nl> - verbose = 1 ) <nl> - <nl> - # Test predict <nl> - out = model . predict ( [ input_a_np , input_b_np ] , batch_size = 5 ) <nl> - self . assertEqual ( len ( out ) , 2 ) <nl> - out = model . predict ( { ' input_a ' : input_a_np , ' input_b ' : input_b_np } ) <nl> - self . assertEqual ( len ( out ) , 2 ) <nl> - out = model . predict_on_batch ( { <nl> - ' input_a ' : input_a_np , <nl> - ' input_b ' : input_b_np <nl> - } ) <nl> - self . assertEqual ( len ( out ) , 2 ) <nl> + optimizer = RMSPropOptimizer ( learning_rate = 0 . 001 ) <nl> + loss = ' mse ' <nl> + loss_weights = [ 1 . , 0 . 5 ] <nl> + model . compile ( <nl> + optimizer , <nl> + loss , <nl> + metrics = [ ' mae ' , metrics_module . CategoricalAccuracy ( ) ] , <nl> + loss_weights = loss_weights , <nl> + sample_weight_mode = None ) <nl> + <nl> + input_a_np = np . random . random ( ( 10 , 3 ) ) <nl> + input_b_np = np . random . random ( ( 10 , 3 ) ) <nl> + <nl> + output_d_np = np . random . random ( ( 10 , 4 ) ) <nl> + output_e_np = np . random . random ( ( 10 , 4 ) ) <nl> + <nl> + # Test evaluate at different verbosity <nl> + out = model . evaluate ( <nl> + [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] , <nl> + batch_size = 5 , <nl> + verbose = 0 ) <nl> + self . assertEqual ( len ( out ) , 7 ) <nl> + out = model . evaluate ( <nl> + [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] , <nl> + batch_size = 5 , <nl> + verbose = 1 ) <nl> + self . assertEqual ( len ( out ) , 7 ) <nl> + out = model . evaluate ( <nl> + [ input_a_np , input_b_np ] , [ output_d_np , output_e_np ] , <nl> + batch_size = 5 , <nl> + verbose = 2 ) <nl> + self . assertEqual ( len ( out ) , 7 ) <nl> + out = model . test_on_batch ( [ input_a_np , input_b_np ] , <nl> + [ output_d_np , output_e_np ] ) <nl> + self . assertEqual ( len ( out ) , 7 ) <nl> + <nl> + # Test evaluate with dictionary inputs <nl> + model . evaluate ( <nl> + { <nl> + ' input_a ' : input_a_np , <nl> + ' input_b ' : input_b_np <nl> + } , { <nl> + ' dense ' : output_d_np , <nl> + ' dropout ' : output_e_np <nl> + } , <nl> + batch_size = 5 , <nl> + verbose = 0 ) <nl> + model . evaluate ( <nl> + { <nl> + ' input_a ' : input_a_np , <nl> + ' input_b ' : input_b_np <nl> + } , { <nl> + ' dense ' : output_d_np , <nl> + ' dropout ' : output_e_np <nl> + } , <nl> + batch_size = 5 , <nl> + verbose = 1 ) <nl> + <nl> + # Test predict <nl> + out = model . predict ( [ input_a_np , input_b_np ] , batch_size = 5 ) <nl> + self . assertEqual ( len ( out ) , 2 ) <nl> + out = model . predict ( { ' input_a ' : input_a_np , ' input_b ' : input_b_np } ) <nl> + self . assertEqual ( len ( out ) , 2 ) <nl> + out = model . predict_on_batch ( { <nl> + ' input_a ' : input_a_np , <nl> + ' input_b ' : input_b_np <nl> + } ) <nl> + self . assertEqual ( len ( out ) , 2 ) <nl> <nl> @ tf_test_util . run_in_graph_and_eager_modes <nl> def test_invalid_loss ( self ) : <nl> def test_invalid_loss ( self ) : <nl> test_samples = 1000 <nl> input_dim = 5 <nl> <nl> - with self . test_session ( ) : <nl> - model = keras . models . Sequential ( ) <nl> - model . add ( keras . layers . Dense ( 10 , input_shape = ( input_dim , ) ) ) <nl> - model . add ( keras . layers . Activation ( ' relu ' ) ) <nl> - model . add ( keras . layers . Dense ( num_classes ) ) <nl> - model . add ( keras . layers . Activation ( ' softmax ' ) ) <nl> - optimizer = RMSPropOptimizer ( learning_rate = 0 . 001 ) <nl> - model . compile ( optimizer , loss = ' categorical_crossentropy ' ) <nl> - np . random . seed ( 1337 ) <nl> - ( x_train , y_train ) , ( _ , _ ) = testing_utils . get_test_data ( <nl> - train_samples = train_samples , <nl> - test_samples = test_samples , <nl> - input_shape = ( input_dim , ) , <nl> - num_classes = num_classes ) <nl> + model = testing_utils . get_small_sequential_mlp ( <nl> + num_hidden = 10 , num_classes = num_classes , input_dim = input_dim ) <nl> + optimizer = RMSPropOptimizer ( learning_rate = 0 . 001 ) <nl> + model . compile ( optimizer , loss = ' categorical_crossentropy ' ) <nl> + np . random . seed ( 1337 ) <nl> + ( x_train , y_train ) , ( _ , _ ) = testing_utils . get_test_data ( <nl> + train_samples = train_samples , <nl> + test_samples = test_samples , <nl> + input_shape = ( input_dim , ) , <nl> + num_classes = num_classes ) <nl> <nl> - with self . assertRaises ( ValueError ) : <nl> - model . fit ( x_train , np . concatenate ( [ y_train , y_train ] , axis = - 1 ) ) <nl> + with self . assertRaises ( ValueError ) : <nl> + model . fit ( x_train , np . concatenate ( [ y_train , y_train ] , axis = - 1 ) ) <nl> <nl> - if not context . executing_eagerly ( ) : <nl> - # TODO ( psv ) : Investigate these use cases in eager mode . <nl> - with self . assertRaises ( ValueError ) : <nl> - model . fit ( x_train , y_train ) <nl> + if not context . executing_eagerly ( ) : <nl> + # TODO ( psv ) : Investigate these use cases in eager mode . <nl> + with self . assertRaises ( ValueError ) : <nl> + model . fit ( x_train , y_train ) <nl> <nl> - with self . assertRaises ( ValueError ) : <nl> - model . compile ( optimizer , loss = None ) <nl> + with self . assertRaises ( ValueError ) : <nl> + model . compile ( optimizer , loss = None ) <nl> <nl> def test_training_on_sparse_data_with_dense_placeholders ( self ) : <nl> if scipy_sparse is None : <nl> def test_class_weights ( self ) : <nl> input_dim = 5 <nl> learning_rate = 0 . 001 <nl> <nl> - with self . test_session ( ) : <nl> - model = keras . models . Sequential ( ) <nl> - model . add ( keras . layers . Dense ( 10 , input_shape = ( input_dim , ) ) ) <nl> - model . add ( keras . layers . Activation ( ' relu ' ) ) <nl> - model . add ( keras . layers . Dense ( num_classes ) ) <nl> - model . add ( keras . layers . Activation ( ' softmax ' ) ) <nl> - model . compile ( <nl> - loss = ' categorical_crossentropy ' , <nl> - metrics = [ ' acc ' ] , <nl> - weighted_metrics = [ ' mae ' ] , <nl> - optimizer = RMSPropOptimizer ( learning_rate = learning_rate ) ) <nl> - <nl> - np . random . seed ( 1337 ) <nl> - ( x_train , y_train ) , ( x_test , y_test ) = testing_utils . get_test_data ( <nl> - train_samples = train_samples , <nl> - test_samples = test_samples , <nl> - input_shape = ( input_dim , ) , <nl> - num_classes = num_classes ) <nl> - int_y_test = y_test . copy ( ) <nl> - int_y_train = y_train . copy ( ) <nl> - # convert class vectors to binary class matrices <nl> - y_train = keras . utils . to_categorical ( y_train , num_classes ) <nl> - y_test = keras . utils . to_categorical ( y_test , num_classes ) <nl> - test_ids = np . where ( int_y_test = = np . array ( weighted_class ) ) [ 0 ] <nl> - <nl> - class_weight = dict ( [ ( i , 1 . ) for i in range ( num_classes ) ] ) <nl> - class_weight [ weighted_class ] = 2 . <nl> - <nl> - sample_weight = np . ones ( ( y_train . shape [ 0 ] ) ) <nl> - sample_weight [ int_y_train = = weighted_class ] = 2 . <nl> - <nl> - model . fit ( <nl> - x_train , <nl> - y_train , <nl> - batch_size = batch_size , <nl> - epochs = epochs / / 3 , <nl> - verbose = 0 , <nl> - class_weight = class_weight , <nl> - validation_data = ( x_train , y_train , sample_weight ) ) <nl> - model . fit ( <nl> - x_train , <nl> - y_train , <nl> - batch_size = batch_size , <nl> - epochs = epochs / / 2 , <nl> - verbose = 0 , <nl> - class_weight = class_weight ) <nl> - model . fit ( <nl> - x_train , <nl> - y_train , <nl> - batch_size = batch_size , <nl> - epochs = epochs / / 2 , <nl> - verbose = 0 , <nl> - class_weight = class_weight , <nl> - validation_split = 0 . 1 ) <nl> + model = testing_utils . get_small_sequential_mlp ( <nl> + num_hidden = 10 , num_classes = num_classes , input_dim = input_dim ) <nl> + model . compile ( <nl> + loss = ' categorical_crossentropy ' , <nl> + metrics = [ ' acc ' ] , <nl> + weighted_metrics = [ ' mae ' ] , <nl> + optimizer = RMSPropOptimizer ( learning_rate = learning_rate ) ) <nl> + <nl> + np . random . seed ( 1337 ) <nl> + ( x_train , y_train ) , ( x_test , y_test ) = testing_utils . get_test_data ( <nl> + train_samples = train_samples , <nl> + test_samples = test_samples , <nl> + input_shape = ( input_dim , ) , <nl> + num_classes = num_classes ) <nl> + int_y_test = y_test . copy ( ) <nl> + int_y_train = y_train . copy ( ) <nl> + # convert class vectors to binary class matrices <nl> + y_train = keras . utils . to_categorical ( y_train , num_classes ) <nl> + y_test = keras . utils . to_categorical ( y_test , num_classes ) <nl> + test_ids = np . where ( int_y_test = = np . array ( weighted_class ) ) [ 0 ] <nl> + <nl> + class_weight = dict ( [ ( i , 1 . ) for i in range ( num_classes ) ] ) <nl> + class_weight [ weighted_class ] = 2 . <nl> <nl> - model . train_on_batch ( <nl> - x_train [ : batch_size ] , y_train [ : batch_size ] , class_weight = class_weight ) <nl> - ref_score = model . evaluate ( x_test , y_test , verbose = 0 ) <nl> - score = model . evaluate ( <nl> - x_test [ test_ids , : ] , y_test [ test_ids , : ] , verbose = 0 ) <nl> - self . assertLess ( score [ 0 ] , ref_score [ 0 ] ) <nl> + sample_weight = np . ones ( ( y_train . shape [ 0 ] ) ) <nl> + sample_weight [ int_y_train = = weighted_class ] = 2 . <nl> + <nl> + model . fit ( <nl> + x_train , <nl> + y_train , <nl> + batch_size = batch_size , <nl> + epochs = epochs / / 3 , <nl> + verbose = 0 , <nl> + class_weight = class_weight , <nl> + validation_data = ( x_train , y_train , sample_weight ) ) <nl> + model . fit ( <nl> + x_train , <nl> + y_train , <nl> + batch_size = batch_size , <nl> + epochs = epochs / / 2 , <nl> + verbose = 0 , <nl> + class_weight = class_weight ) <nl> + model . fit ( <nl> + x_train , <nl> + y_train , <nl> + batch_size = batch_size , <nl> + epochs = epochs / / 2 , <nl> + verbose = 0 , <nl> + class_weight = class_weight , <nl> + validation_split = 0 . 1 ) <nl> + <nl> + model . train_on_batch ( <nl> + x_train [ : batch_size ] , y_train [ : batch_size ] , class_weight = class_weight ) <nl> + ref_score = model . evaluate ( x_test , y_test , verbose = 0 ) <nl> + score = model . evaluate ( <nl> + x_test [ test_ids , : ] , y_test [ test_ids , : ] , verbose = 0 ) <nl> + self . assertLess ( score [ 0 ] , ref_score [ 0 ] ) <nl> <nl> @ tf_test_util . run_in_graph_and_eager_modes <nl> def test_sample_weights ( self ) : <nl> def test_sample_weights ( self ) : <nl> input_dim = 5 <nl> learning_rate = 0 . 001 <nl> <nl> - with self . test_session ( ) : <nl> - model = keras . models . Sequential ( ) <nl> - model . add ( keras . layers . Dense ( 10 , input_shape = ( input_dim , ) ) ) <nl> - model . add ( keras . layers . Activation ( ' relu ' ) ) <nl> - model . add ( keras . layers . Dense ( num_classes ) ) <nl> - model . add ( keras . layers . Activation ( ' softmax ' ) ) <nl> - model . compile ( <nl> - RMSPropOptimizer ( learning_rate = learning_rate ) , <nl> - metrics = [ ' acc ' ] , <nl> - weighted_metrics = [ ' mae ' ] , <nl> - loss = ' categorical_crossentropy ' ) <nl> - <nl> - np . random . seed ( 43 ) <nl> - ( x_train , y_train ) , ( x_test , y_test ) = testing_utils . get_test_data ( <nl> - train_samples = train_samples , <nl> - test_samples = test_samples , <nl> - input_shape = ( input_dim , ) , <nl> - num_classes = num_classes ) <nl> - int_y_test = y_test . copy ( ) <nl> - int_y_train = y_train . copy ( ) <nl> - # convert class vectors to binary class matrices <nl> - y_train = keras . utils . to_categorical ( y_train , num_classes ) <nl> - y_test = keras . utils . to_categorical ( y_test , num_classes ) <nl> - test_ids = np . where ( int_y_test = = np . array ( weighted_class ) ) [ 0 ] <nl> - <nl> - sample_weight = np . ones ( ( y_train . shape [ 0 ] ) ) <nl> - sample_weight [ int_y_train = = weighted_class ] = 2 . <nl> - <nl> - model . fit ( <nl> - x_train , <nl> - y_train , <nl> - batch_size = batch_size , <nl> - epochs = epochs / / 3 , <nl> - verbose = 0 , <nl> - sample_weight = sample_weight ) <nl> - model . fit ( <nl> - x_train , <nl> - y_train , <nl> - batch_size = batch_size , <nl> - epochs = epochs / / 3 , <nl> - verbose = 0 , <nl> - sample_weight = sample_weight , <nl> - validation_split = 0 . 1 ) <nl> + model = testing_utils . get_small_sequential_mlp ( <nl> + num_hidden = 10 , num_classes = num_classes , input_dim = input_dim ) <nl> + model . compile ( <nl> + RMSPropOptimizer ( learning_rate = learning_rate ) , <nl> + metrics = [ ' acc ' ] , <nl> + weighted_metrics = [ ' mae ' ] , <nl> + loss = ' categorical_crossentropy ' ) <nl> + <nl> + np . random . seed ( 43 ) <nl> + ( x_train , y_train ) , ( x_test , y_test ) = testing_utils . get_test_data ( <nl> + train_samples = train_samples , <nl> + test_samples = test_samples , <nl> + input_shape = ( input_dim , ) , <nl> + num_classes = num_classes ) <nl> + int_y_test = y_test . copy ( ) <nl> + int_y_train = y_train . copy ( ) <nl> + # convert class vectors to binary class matrices <nl> + y_train = keras . utils . to_categorical ( y_train , num_classes ) <nl> + y_test = keras . utils . to_categorical ( y_test , num_classes ) <nl> + test_ids = np . where ( int_y_test = = np . array ( weighted_class ) ) [ 0 ] <nl> <nl> - model . train_on_batch ( <nl> - x_train [ : batch_size ] , <nl> - y_train [ : batch_size ] , <nl> - sample_weight = sample_weight [ : batch_size ] ) <nl> - model . test_on_batch ( <nl> - x_train [ : batch_size ] , <nl> - y_train [ : batch_size ] , <nl> - sample_weight = sample_weight [ : batch_size ] ) <nl> - ref_score = model . evaluate ( x_test , y_test , verbose = 0 ) <nl> - if not context . executing_eagerly ( ) : <nl> - score = model . evaluate ( <nl> - x_test [ test_ids , : ] , y_test [ test_ids , : ] , verbose = 0 ) <nl> - self . assertLess ( score [ 0 ] , ref_score [ 0 ] ) <nl> + sample_weight = np . ones ( ( y_train . shape [ 0 ] ) ) <nl> + sample_weight [ int_y_train = = weighted_class ] = 2 . <nl> + <nl> + model . fit ( <nl> + x_train , <nl> + y_train , <nl> + batch_size = batch_size , <nl> + epochs = epochs / / 3 , <nl> + verbose = 0 , <nl> + sample_weight = sample_weight ) <nl> + model . fit ( <nl> + x_train , <nl> + y_train , <nl> + batch_size = batch_size , <nl> + epochs = epochs / / 3 , <nl> + verbose = 0 , <nl> + sample_weight = sample_weight , <nl> + validation_split = 0 . 1 ) <nl> + <nl> + model . train_on_batch ( <nl> + x_train [ : batch_size ] , <nl> + y_train [ : batch_size ] , <nl> + sample_weight = sample_weight [ : batch_size ] ) <nl> + model . test_on_batch ( <nl> + x_train [ : batch_size ] , <nl> + y_train [ : batch_size ] , <nl> + sample_weight = sample_weight [ : batch_size ] ) <nl> + ref_score = model . evaluate ( x_test , y_test , verbose = 0 ) <nl> + if not context . executing_eagerly ( ) : <nl> + score = model . evaluate ( <nl> + x_test [ test_ids , : ] , y_test [ test_ids , : ] , verbose = 0 ) <nl> + self . assertLess ( score [ 0 ] , ref_score [ 0 ] ) <nl> <nl> @ tf_test_util . run_in_graph_and_eager_modes <nl> def test_warning_for_concurrent_sample_and_class_weights ( self ) : <nl> class TestTrainingWithDatasetIterators ( test . TestCase ) : <nl> <nl> @ tf_test_util . run_in_graph_and_eager_modes <nl> def test_training_and_eval_methods_on_iterators_single_io ( self ) : <nl> - with self . test_session ( ) : <nl> - x = keras . layers . Input ( shape = ( 3 , ) , name = ' input ' ) <nl> - y = keras . layers . Dense ( 4 , name = ' dense ' ) ( x ) <nl> - model = keras . Model ( x , y ) <nl> - <nl> - optimizer = RMSPropOptimizer ( learning_rate = 0 . 001 ) <nl> - loss = ' mse ' <nl> - metrics = [ ' mae ' , metrics_module . CategoricalAccuracy ( ) ] <nl> - model . compile ( optimizer , loss , metrics = metrics ) <nl> - <nl> - inputs = np . zeros ( ( 10 , 3 ) ) <nl> - targets = np . zeros ( ( 10 , 4 ) ) <nl> - dataset = dataset_ops . Dataset . from_tensor_slices ( ( inputs , targets ) ) <nl> - dataset = dataset . repeat ( 100 ) <nl> - dataset = dataset . batch ( 10 ) <nl> - iterator = dataset . make_one_shot_iterator ( ) <nl> - <nl> - model . fit ( iterator , epochs = 1 , steps_per_epoch = 2 , verbose = 1 ) <nl> - model . evaluate ( iterator , steps = 2 , verbose = 1 ) <nl> - model . predict ( iterator , steps = 2 ) <nl> - model . train_on_batch ( iterator ) <nl> - model . test_on_batch ( iterator ) <nl> - model . predict_on_batch ( iterator ) <nl> - <nl> - # Test with validation data <nl> + model = testing_utils . get_small_functional_mlp ( 1 , 4 , input_dim = 3 ) <nl> + optimizer = RMSPropOptimizer ( learning_rate = 0 . 001 ) <nl> + loss = ' mse ' <nl> + metrics = [ ' mae ' , metrics_module . CategoricalAccuracy ( ) ] <nl> + model . compile ( optimizer , loss , metrics = metrics ) <nl> + <nl> + inputs = np . zeros ( ( 10 , 3 ) ) <nl> + targets = np . zeros ( ( 10 , 4 ) ) <nl> + dataset = dataset_ops . Dataset . from_tensor_slices ( ( inputs , targets ) ) <nl> + dataset = dataset . repeat ( 100 ) <nl> + dataset = dataset . batch ( 10 ) <nl> + iterator = dataset . make_one_shot_iterator ( ) <nl> + <nl> + model . fit ( iterator , epochs = 1 , steps_per_epoch = 2 , verbose = 1 ) <nl> + model . evaluate ( iterator , steps = 2 , verbose = 1 ) <nl> + model . predict ( iterator , steps = 2 ) <nl> + model . train_on_batch ( iterator ) <nl> + model . test_on_batch ( iterator ) <nl> + model . predict_on_batch ( iterator ) <nl> + <nl> + # Test with validation data <nl> + model . fit ( iterator , <nl> + epochs = 1 , steps_per_epoch = 2 , verbose = 0 , <nl> + validation_data = iterator , validation_steps = 2 ) <nl> + # Test with validation split <nl> + with self . assertRaisesRegexp ( <nl> + ValueError , ' ` validation_split ` argument is not supported ' <nl> + ' when input ` x ` is a dataset or a dataset iterator ' ) : <nl> model . fit ( iterator , <nl> epochs = 1 , steps_per_epoch = 2 , verbose = 0 , <nl> - validation_data = iterator , validation_steps = 2 ) <nl> - # Test with validation split <nl> - with self . assertRaisesRegexp ( <nl> - ValueError , ' ` validation_split ` argument is not supported ' <nl> - ' when input ` x ` is a dataset or a dataset iterator ' ) : <nl> - model . fit ( iterator , <nl> - epochs = 1 , steps_per_epoch = 2 , verbose = 0 , <nl> - validation_split = 0 . 5 , validation_steps = 2 ) <nl> - <nl> - # Test with sample weight . <nl> - sample_weight = np . random . random ( ( 10 , ) ) <nl> - with self . assertRaisesRegexp ( <nl> - ValueError , ' ` sample_weight ` argument is not supported ' <nl> - ' when input ` x ` is a dataset or a dataset iterator ' ) : <nl> - model . fit ( <nl> - iterator , <nl> - epochs = 1 , <nl> - steps_per_epoch = 2 , <nl> - verbose = 0 , <nl> - sample_weight = sample_weight ) <nl> + validation_split = 0 . 5 , validation_steps = 2 ) <nl> <nl> - # Test invalid usage <nl> - with self . assertRaisesRegexp ( ValueError , <nl> - ' you should not specify a target ' ) : <nl> - model . fit ( iterator , iterator , <nl> - epochs = 1 , steps_per_epoch = 2 , verbose = 0 ) <nl> + # Test with sample weight . <nl> + sample_weight = np . random . random ( ( 10 , ) ) <nl> + with self . assertRaisesRegexp ( <nl> + ValueError , ' ` sample_weight ` argument is not supported ' <nl> + ' when input ` x ` is a dataset or a dataset iterator ' ) : <nl> + model . fit ( <nl> + iterator , <nl> + epochs = 1 , <nl> + steps_per_epoch = 2 , <nl> + verbose = 0 , <nl> + sample_weight = sample_weight ) <nl> <nl> - with self . assertRaisesRegexp ( <nl> - ValueError , ' you should specify the ` steps_per_epoch ` argument ' ) : <nl> - model . fit ( iterator , epochs = 1 , verbose = 0 ) <nl> - with self . assertRaisesRegexp ( ValueError , <nl> - ' you should specify the ` steps ` argument ' ) : <nl> - model . evaluate ( iterator , verbose = 0 ) <nl> - with self . assertRaisesRegexp ( ValueError , <nl> - ' you should specify the ` steps ` argument ' ) : <nl> - model . predict ( iterator , verbose = 0 ) <nl> + # Test invalid usage <nl> + with self . assertRaisesRegexp ( ValueError , <nl> + ' you should not specify a target ' ) : <nl> + model . fit ( iterator , iterator , <nl> + epochs = 1 , steps_per_epoch = 2 , verbose = 0 ) <nl> + <nl> + with self . assertRaisesRegexp ( <nl> + ValueError , ' you should specify the ` steps_per_epoch ` argument ' ) : <nl> + model . fit ( iterator , epochs = 1 , verbose = 0 ) <nl> + with self . assertRaisesRegexp ( ValueError , <nl> + ' you should specify the ` steps ` argument ' ) : <nl> + model . evaluate ( iterator , verbose = 0 ) <nl> + with self . assertRaisesRegexp ( ValueError , <nl> + ' you should specify the ` steps ` argument ' ) : <nl> + model . predict ( iterator , verbose = 0 ) <nl> <nl> @ tf_test_util . run_in_graph_and_eager_modes <nl> def test_get_next_op_created_once ( self ) : <nl> - with self . test_session ( ) : <nl> - x = keras . layers . Input ( shape = ( 3 , ) , name = ' input ' ) <nl> - y = keras . layers . Dense ( 4 , name = ' dense ' ) ( x ) <nl> - model = keras . Model ( x , y ) <nl> - <nl> - optimizer = RMSPropOptimizer ( learning_rate = 0 . 001 ) <nl> - loss = ' mse ' <nl> - metrics = [ ' mae ' ] <nl> - model . compile ( optimizer , loss , metrics = metrics ) <nl> - <nl> - inputs = np . zeros ( ( 10 , 3 ) ) <nl> - targets = np . zeros ( ( 10 , 4 ) ) <nl> - dataset = dataset_ops . Dataset . from_tensor_slices ( ( inputs , targets ) ) <nl> - dataset = dataset . repeat ( 100 ) <nl> - dataset = dataset . batch ( 10 ) <nl> - iterator = dataset . make_one_shot_iterator ( ) <nl> - <nl> - model . fit ( iterator , epochs = 1 , steps_per_epoch = 2 , verbose = 1 ) <nl> - # Finalize graph to make sure we are not appending another iterator <nl> - # get_next op in the graph . <nl> - ops . get_default_graph ( ) . finalize ( ) <nl> - model . fit ( iterator , epochs = 1 , steps_per_epoch = 2 , verbose = 1 ) <nl> + model = testing_utils . get_small_functional_mlp ( 1 , 4 , input_dim = 3 ) <nl> + optimizer = RMSPropOptimizer ( learning_rate = 0 . 001 ) <nl> + loss = ' mse ' <nl> + metrics = [ ' mae ' ] <nl> + model . compile ( optimizer , loss , metrics = metrics ) <nl> + <nl> + inputs = np . zeros ( ( 10 , 3 ) ) <nl> + targets = np . zeros ( ( 10 , 4 ) ) <nl> + dataset = dataset_ops . Dataset . from_tensor_slices ( ( inputs , targets ) ) <nl> + dataset = dataset . repeat ( 100 ) <nl> + dataset = dataset . batch ( 10 ) <nl> + iterator = dataset . make_one_shot_iterator ( ) <nl> + <nl> + model . fit ( iterator , epochs = 1 , steps_per_epoch = 2 , verbose = 1 ) <nl> + # Finalize graph to make sure we are not appending another iterator <nl> + # get_next op in the graph . <nl> + ops . get_default_graph ( ) . finalize ( ) <nl> + model . fit ( iterator , epochs = 1 , steps_per_epoch = 2 , verbose = 1 ) <nl> <nl> @ tf_test_util . run_in_graph_and_eager_modes <nl> def test_iterators_running_out_of_data ( self ) : <nl> - with self . test_session ( ) : <nl> - x = keras . layers . Input ( shape = ( 3 , ) , name = ' input ' ) <nl> - y = keras . layers . Dense ( 4 , name = ' dense ' ) ( x ) <nl> - model = keras . Model ( x , y ) <nl> - <nl> - optimizer = RMSPropOptimizer ( learning_rate = 0 . 001 ) <nl> - loss = ' mse ' <nl> - metrics = [ ' mae ' ] <nl> - model . compile ( optimizer , loss , metrics = metrics ) <nl> + model = testing_utils . get_small_functional_mlp ( 1 , 4 , input_dim = 3 ) <nl> + optimizer = RMSPropOptimizer ( learning_rate = 0 . 001 ) <nl> + loss = ' mse ' <nl> + metrics = [ ' mae ' ] <nl> + model . compile ( optimizer , loss , metrics = metrics ) <nl> <nl> - inputs = np . zeros ( ( 10 , 3 ) ) <nl> - targets = np . zeros ( ( 10 , 4 ) ) <nl> - dataset = dataset_ops . Dataset . from_tensor_slices ( ( inputs , targets ) ) <nl> - dataset = dataset . repeat ( 2 ) <nl> - dataset = dataset . batch ( 10 ) <nl> - iterator = dataset . make_one_shot_iterator ( ) <nl> + inputs = np . zeros ( ( 10 , 3 ) ) <nl> + targets = np . zeros ( ( 10 , 4 ) ) <nl> + dataset = dataset_ops . Dataset . from_tensor_slices ( ( inputs , targets ) ) <nl> + dataset = dataset . repeat ( 2 ) <nl> + dataset = dataset . batch ( 10 ) <nl> + iterator = dataset . make_one_shot_iterator ( ) <nl> <nl> - with test . mock . patch . object ( logging , ' warning ' ) as mock_log : <nl> - model . fit ( iterator , epochs = 1 , steps_per_epoch = 3 , verbose = 0 ) <nl> - self . assertRegexpMatches ( <nl> - str ( mock_log . call_args ) , <nl> - ' dataset iterator ran out of data ' ) <nl> + with test . mock . patch . object ( logging , ' warning ' ) as mock_log : <nl> + model . fit ( iterator , epochs = 1 , steps_per_epoch = 3 , verbose = 0 ) <nl> + self . assertRegexpMatches ( <nl> + str ( mock_log . call_args ) , <nl> + ' dataset iterator ran out of data ' ) <nl> <nl> <nl> class TestTrainingWithDataset ( test . TestCase ) : <nl> <nl> @ tf_test_util . run_in_graph_and_eager_modes <nl> def test_calling_model_on_same_dataset ( self ) : <nl> - with self . test_session ( ) : <nl> - x = keras . layers . Input ( shape = ( 3 , ) , name = ' input ' ) <nl> - y = keras . layers . Dense ( 4 , name = ' dense ' ) ( x ) <nl> - model = keras . Model ( x , y ) <nl> - <nl> - optimizer = RMSPropOptimizer ( learning_rate = 0 . 001 ) <nl> - loss = ' mse ' <nl> - metrics = [ ' mae ' ] <nl> - model . compile ( optimizer , loss , metrics = metrics ) <nl> - <nl> - inputs = np . zeros ( ( 10 , 3 ) ) <nl> - targets = np . zeros ( ( 10 , 4 ) ) <nl> - dataset = dataset_ops . Dataset . from_tensor_slices ( ( inputs , targets ) ) <nl> - dataset = dataset . repeat ( 100 ) <nl> - dataset = dataset . batch ( 10 ) <nl> - <nl> - # Call fit with validation data <nl> - model . fit ( dataset , epochs = 1 , steps_per_epoch = 2 , verbose = 0 , <nl> - validation_data = dataset , validation_steps = 2 ) <nl> - # Finalize the graph to make sure new ops aren ' t added when calling on the <nl> - # same dataset <nl> - ops . get_default_graph ( ) . finalize ( ) <nl> - model . fit ( dataset , epochs = 1 , steps_per_epoch = 2 , verbose = 0 , <nl> - validation_data = dataset , validation_steps = 2 ) <nl> + model = testing_utils . get_small_functional_mlp ( 1 , 4 , input_dim = 3 ) <nl> + optimizer = RMSPropOptimizer ( learning_rate = 0 . 001 ) <nl> + loss = ' mse ' <nl> + metrics = [ ' mae ' ] <nl> + model . compile ( optimizer , loss , metrics = metrics ) <nl> + <nl> + inputs = np . zeros ( ( 10 , 3 ) ) <nl> + targets = np . zeros ( ( 10 , 4 ) ) <nl> + dataset = dataset_ops . Dataset . from_tensor_slices ( ( inputs , targets ) ) <nl> + dataset = dataset . repeat ( 100 ) <nl> + dataset = dataset . batch ( 10 ) <nl> + <nl> + # Call fit with validation data <nl> + model . fit ( dataset , epochs = 1 , steps_per_epoch = 2 , verbose = 0 , <nl> + validation_data = dataset , validation_steps = 2 ) <nl> + # Finalize the graph to make sure new ops aren ' t added when calling on the <nl> + # same dataset <nl> + ops . get_default_graph ( ) . finalize ( ) <nl> + model . fit ( dataset , epochs = 1 , steps_per_epoch = 2 , verbose = 0 , <nl> + validation_data = dataset , validation_steps = 2 ) <nl> <nl> @ tf_test_util . run_in_graph_and_eager_modes <nl> def test_training_and_eval_methods_on_dataset ( self ) : <nl> - with self . test_session ( ) : <nl> - x = keras . layers . Input ( shape = ( 3 , ) , name = ' input ' ) <nl> - y = keras . layers . Dense ( 4 , name = ' dense ' ) ( x ) <nl> - model = keras . Model ( x , y ) <nl> - <nl> - optimizer = RMSPropOptimizer ( learning_rate = 0 . 001 ) <nl> - loss = ' mse ' <nl> - metrics = [ ' mae ' , metrics_module . CategoricalAccuracy ( ) ] <nl> - model . compile ( optimizer , loss , metrics = metrics ) <nl> - <nl> - inputs = np . zeros ( ( 10 , 3 ) ) <nl> - targets = np . zeros ( ( 10 , 4 ) ) <nl> - dataset = dataset_ops . Dataset . from_tensor_slices ( ( inputs , targets ) ) <nl> - dataset = dataset . repeat ( 100 ) <nl> - dataset = dataset . batch ( 10 ) <nl> - <nl> - model . fit ( dataset , epochs = 1 , steps_per_epoch = 2 , verbose = 1 ) <nl> - model . evaluate ( dataset , steps = 2 , verbose = 1 ) <nl> - model . predict ( dataset , steps = 2 ) <nl> - model . train_on_batch ( dataset ) <nl> - model . predict_on_batch ( dataset ) <nl> - <nl> - # Test with validation data <nl> - model . fit ( dataset , epochs = 1 , steps_per_epoch = 2 , verbose = 0 , <nl> - validation_data = dataset , validation_steps = 2 ) <nl> - <nl> - # Test with validation split <nl> - with self . assertRaisesRegexp ( <nl> - ValueError , ' ` validation_split ` argument is not supported ' <nl> - ' when input ` x ` is a dataset or a dataset iterator ' ) : <nl> - model . fit ( dataset , <nl> - epochs = 1 , steps_per_epoch = 2 , verbose = 0 , <nl> - validation_split = 0 . 5 , validation_steps = 2 ) <nl> - <nl> - # Test with sample weight . <nl> - sample_weight = np . random . random ( ( 10 , ) ) <nl> - with self . assertRaisesRegexp ( <nl> - ValueError , ' ` sample_weight ` argument is not supported ' <nl> - ' when input ` x ` is a dataset or a dataset iterator ' ) : <nl> - model . fit ( <nl> - dataset , <nl> - epochs = 1 , <nl> - steps_per_epoch = 2 , <nl> - verbose = 0 , <nl> - sample_weight = sample_weight ) <nl> + model = testing_utils . get_small_functional_mlp ( 1 , 4 , input_dim = 3 ) <nl> + optimizer = RMSPropOptimizer ( learning_rate = 0 . 001 ) <nl> + loss = ' mse ' <nl> + metrics = [ ' mae ' , metrics_module . CategoricalAccuracy ( ) ] <nl> + model . compile ( optimizer , loss , metrics = metrics ) <nl> + <nl> + inputs = np . zeros ( ( 10 , 3 ) ) <nl> + targets = np . zeros ( ( 10 , 4 ) ) <nl> + dataset = dataset_ops . Dataset . from_tensor_slices ( ( inputs , targets ) ) <nl> + dataset = dataset . repeat ( 100 ) <nl> + dataset = dataset . batch ( 10 ) <nl> + <nl> + model . fit ( dataset , epochs = 1 , steps_per_epoch = 2 , verbose = 1 ) <nl> + model . evaluate ( dataset , steps = 2 , verbose = 1 ) <nl> + model . predict ( dataset , steps = 2 ) <nl> + model . train_on_batch ( dataset ) <nl> + model . predict_on_batch ( dataset ) <nl> + <nl> + # Test with validation data <nl> + model . fit ( dataset , epochs = 1 , steps_per_epoch = 2 , verbose = 0 , <nl> + validation_data = dataset , validation_steps = 2 ) <nl> + <nl> + # Test with validation split <nl> + with self . assertRaisesRegexp ( <nl> + ValueError , ' ` validation_split ` argument is not supported ' <nl> + ' when input ` x ` is a dataset or a dataset iterator ' ) : <nl> + model . fit ( dataset , <nl> + epochs = 1 , steps_per_epoch = 2 , verbose = 0 , <nl> + validation_split = 0 . 5 , validation_steps = 2 ) <nl> <nl> - # Test invalid usage <nl> - with self . assertRaisesRegexp ( ValueError , <nl> - ' you should not specify a target ' ) : <nl> - model . fit ( dataset , dataset , <nl> - epochs = 1 , steps_per_epoch = 2 , verbose = 0 ) <nl> + # Test with sample weight . <nl> + sample_weight = np . random . random ( ( 10 , ) ) <nl> + with self . assertRaisesRegexp ( <nl> + ValueError , ' ` sample_weight ` argument is not supported ' <nl> + ' when input ` x ` is a dataset or a dataset iterator ' ) : <nl> + model . fit ( <nl> + dataset , <nl> + epochs = 1 , <nl> + steps_per_epoch = 2 , <nl> + verbose = 0 , <nl> + sample_weight = sample_weight ) <nl> <nl> - with self . assertRaisesRegexp ( <nl> - ValueError , ' you should specify the ` steps_per_epoch ` argument ' ) : <nl> - model . fit ( dataset , epochs = 1 , verbose = 0 ) <nl> - with self . assertRaisesRegexp ( ValueError , <nl> - ' you should specify the ` steps ` argument ' ) : <nl> - model . evaluate ( dataset , verbose = 0 ) <nl> - with self . assertRaisesRegexp ( ValueError , <nl> - ' you should specify the ` steps ` argument ' ) : <nl> - model . predict ( dataset , verbose = 0 ) <nl> + # Test invalid usage <nl> + with self . assertRaisesRegexp ( ValueError , <nl> + ' you should not specify a target ' ) : <nl> + model . fit ( dataset , dataset , <nl> + epochs = 1 , steps_per_epoch = 2 , verbose = 0 ) <nl> + <nl> + with self . assertRaisesRegexp ( <nl> + ValueError , ' you should specify the ` steps_per_epoch ` argument ' ) : <nl> + model . fit ( dataset , epochs = 1 , verbose = 0 ) <nl> + with self . assertRaisesRegexp ( ValueError , <nl> + ' you should specify the ` steps ` argument ' ) : <nl> + model . evaluate ( dataset , verbose = 0 ) <nl> + with self . assertRaisesRegexp ( ValueError , <nl> + ' you should specify the ` steps ` argument ' ) : <nl> + model . predict ( dataset , verbose = 0 ) <nl> <nl> def test_dataset_input_shape_validation ( self ) : <nl> with self . test_session ( ) : <nl> - x = keras . layers . Input ( shape = ( 3 , ) , name = ' input ' ) <nl> - y = keras . layers . Dense ( 4 , name = ' dense ' ) ( x ) <nl> - model = keras . Model ( x , y ) <nl> - <nl> - optimizer = RMSPropOptimizer ( learning_rate = 0 . 001 ) <nl> - loss = ' mse ' <nl> - model . compile ( optimizer , loss ) <nl> + model = testing_utils . get_small_functional_mlp ( 1 , 4 , input_dim = 3 ) <nl> + model . compile ( optimizer = RMSPropOptimizer ( learning_rate = 0 . 001 ) , loss = ' mse ' ) <nl> <nl> # User forgets to batch the dataset <nl> inputs = np . zeros ( ( 10 , 3 ) ) <nl> def test_dataset_input_shape_validation ( self ) : <nl> dataset = dataset . repeat ( 100 ) <nl> <nl> with self . assertRaisesRegexp ( ValueError , <nl> - ' expected input to have 2 dimensions ' ) : <nl> + r ' expected ( . * ? ) to have 2 dimensions ' ) : <nl> model . train_on_batch ( dataset ) <nl> <nl> # Wrong input shape <nl> def test_dataset_input_shape_validation ( self ) : <nl> dataset = dataset . batch ( 10 ) <nl> <nl> with self . assertRaisesRegexp ( ValueError , <nl> - ' expected input to have shape ' ) : <nl> + r ' expected ( . * ? ) to have shape \ ( 3 , \ ) ' ) : <nl> model . train_on_batch ( dataset ) <nl> <nl> <nl> def test_metrics_names ( self ) : <nl> <nl> @ tf_test_util . run_in_graph_and_eager_modes <nl> def test_metrics_correctness ( self ) : <nl> - with self . test_session ( ) : <nl> - model = keras . Sequential ( ) <nl> - model . add ( <nl> - keras . layers . Dense ( <nl> - 3 , activation = ' relu ' , input_dim = 4 , kernel_initializer = ' ones ' ) ) <nl> - model . add ( <nl> - keras . layers . Dense ( <nl> - 1 , activation = ' sigmoid ' , kernel_initializer = ' ones ' ) ) <nl> - model . compile ( <nl> - loss = ' mae ' , <nl> - metrics = [ ' accuracy ' , metrics_module . BinaryAccuracy ( ) ] , <nl> - optimizer = RMSPropOptimizer ( learning_rate = 0 . 001 ) ) <nl> - <nl> - # verify correctness of stateful and stateless metrics . <nl> - x = np . ones ( ( 100 , 4 ) ) <nl> - y = np . ones ( ( 100 , 1 ) ) <nl> - outs = model . evaluate ( x , y ) <nl> - self . assertEqual ( outs [ 1 ] , 1 . ) <nl> - self . assertEqual ( outs [ 2 ] , 1 . ) <nl> - <nl> - y = np . zeros ( ( 100 , 1 ) ) <nl> - outs = model . evaluate ( x , y ) <nl> - self . assertEqual ( outs [ 1 ] , 0 . ) <nl> - self . assertEqual ( outs [ 2 ] , 0 . ) <nl> + model = keras . Sequential ( ) <nl> + model . add ( <nl> + keras . layers . Dense ( <nl> + 3 , activation = ' relu ' , input_dim = 4 , kernel_initializer = ' ones ' ) ) <nl> + model . add ( <nl> + keras . layers . Dense ( <nl> + 1 , activation = ' sigmoid ' , kernel_initializer = ' ones ' ) ) <nl> + model . compile ( <nl> + loss = ' mae ' , <nl> + metrics = [ ' accuracy ' , metrics_module . BinaryAccuracy ( ) ] , <nl> + optimizer = RMSPropOptimizer ( learning_rate = 0 . 001 ) ) <nl> + <nl> + # verify correctness of stateful and stateless metrics . <nl> + x = np . ones ( ( 100 , 4 ) ) <nl> + y = np . ones ( ( 100 , 1 ) ) <nl> + outs = model . evaluate ( x , y ) <nl> + self . assertEqual ( outs [ 1 ] , 1 . ) <nl> + self . assertEqual ( outs [ 2 ] , 1 . ) <nl> + <nl> + y = np . zeros ( ( 100 , 1 ) ) <nl> + outs = model . evaluate ( x , y ) <nl> + self . assertEqual ( outs [ 1 ] , 0 . ) <nl> + self . assertEqual ( outs [ 2 ] , 0 . ) <nl> <nl> @ tf_test_util . run_in_graph_and_eager_modes <nl> def test_metrics_correctness_with_iterator ( self ) : <nl> - with self . test_session ( ) : <nl> - model = keras . Sequential ( ) <nl> - model . add ( <nl> - keras . layers . Dense ( <nl> - 8 , activation = ' relu ' , input_dim = 4 , kernel_initializer = ' ones ' ) ) <nl> - model . add ( <nl> - keras . layers . Dense ( <nl> - 1 , activation = ' sigmoid ' , kernel_initializer = ' ones ' ) ) <nl> - model . compile ( <nl> - loss = ' binary_crossentropy ' , <nl> - metrics = [ ' accuracy ' , metrics_module . BinaryAccuracy ( ) ] , <nl> - optimizer = RMSPropOptimizer ( learning_rate = 0 . 001 ) ) <nl> - <nl> - np . random . seed ( 123 ) <nl> - x = np . random . randint ( 10 , size = ( 100 , 4 ) ) . astype ( np . float32 ) <nl> - y = np . random . randint ( 2 , size = ( 100 , 1 ) ) . astype ( np . float32 ) <nl> - dataset = dataset_ops . Dataset . from_tensor_slices ( ( x , y ) ) <nl> - dataset = dataset . batch ( 10 ) <nl> - iterator = dataset . make_one_shot_iterator ( ) <nl> - outs = model . evaluate ( iterator , steps = 10 ) <nl> - self . assertEqual ( np . around ( outs [ 1 ] , decimals = 1 ) , 0 . 5 ) <nl> - self . assertEqual ( np . around ( outs [ 2 ] , decimals = 1 ) , 0 . 5 ) <nl> - <nl> - y = np . zeros ( ( 100 , 1 ) , dtype = np . float32 ) <nl> - dataset = dataset_ops . Dataset . from_tensor_slices ( ( x , y ) ) <nl> - dataset = dataset . repeat ( 100 ) <nl> - dataset = dataset . batch ( 10 ) <nl> - iterator = dataset . make_one_shot_iterator ( ) <nl> - outs = model . evaluate ( iterator , steps = 10 ) <nl> - self . assertEqual ( outs [ 1 ] , 0 . ) <nl> - self . assertEqual ( outs [ 2 ] , 0 . ) <nl> + model = keras . Sequential ( ) <nl> + model . add ( <nl> + keras . layers . Dense ( <nl> + 8 , activation = ' relu ' , input_dim = 4 , kernel_initializer = ' ones ' ) ) <nl> + model . add ( <nl> + keras . layers . Dense ( <nl> + 1 , activation = ' sigmoid ' , kernel_initializer = ' ones ' ) ) <nl> + model . compile ( <nl> + loss = ' binary_crossentropy ' , <nl> + metrics = [ ' accuracy ' , metrics_module . BinaryAccuracy ( ) ] , <nl> + optimizer = RMSPropOptimizer ( learning_rate = 0 . 001 ) ) <nl> + <nl> + np . random . seed ( 123 ) <nl> + x = np . random . randint ( 10 , size = ( 100 , 4 ) ) . astype ( np . float32 ) <nl> + y = np . random . randint ( 2 , size = ( 100 , 1 ) ) . astype ( np . float32 ) <nl> + dataset = dataset_ops . Dataset . from_tensor_slices ( ( x , y ) ) <nl> + dataset = dataset . batch ( 10 ) <nl> + iterator = dataset . make_one_shot_iterator ( ) <nl> + outs = model . evaluate ( iterator , steps = 10 ) <nl> + self . assertEqual ( np . around ( outs [ 1 ] , decimals = 1 ) , 0 . 5 ) <nl> + self . assertEqual ( np . around ( outs [ 2 ] , decimals = 1 ) , 0 . 5 ) <nl> + <nl> + y = np . zeros ( ( 100 , 1 ) , dtype = np . float32 ) <nl> + dataset = dataset_ops . Dataset . from_tensor_slices ( ( x , y ) ) <nl> + dataset = dataset . repeat ( 100 ) <nl> + dataset = dataset . batch ( 10 ) <nl> + iterator = dataset . make_one_shot_iterator ( ) <nl> + outs = model . evaluate ( iterator , steps = 10 ) <nl> + self . assertEqual ( outs [ 1 ] , 0 . ) <nl> + self . assertEqual ( outs [ 2 ] , 0 . ) <nl> <nl> @ tf_test_util . run_in_graph_and_eager_modes <nl> def test_metrics_correctness_with_weighted_metrics ( self ) : <nl> - with self . test_session ( ) : <nl> - np . random . seed ( 1337 ) <nl> - x = np . array ( [ [ [ 1 . ] , [ 1 . ] ] , [ [ 0 . ] , [ 0 . ] ] ] ) <nl> - model = keras . models . Sequential ( ) <nl> - model . add ( <nl> - keras . layers . TimeDistributed ( <nl> - keras . layers . Dense ( 1 , kernel_initializer = ' ones ' ) , <nl> - input_shape = ( 2 , 1 ) ) ) <nl> - model . compile ( <nl> - RMSPropOptimizer ( learning_rate = 0 . 001 ) , <nl> - loss = ' mse ' , <nl> - sample_weight_mode = ' temporal ' , <nl> - weighted_metrics = [ ' accuracy ' , <nl> - metrics_module . BinaryAccuracy ( ) ] ) <nl> - y = np . array ( [ [ [ 1 . ] , [ 1 . ] ] , [ [ 1 . ] , [ 1 . ] ] ] ) <nl> + np . random . seed ( 1337 ) <nl> + x = np . array ( [ [ [ 1 . ] , [ 1 . ] ] , [ [ 0 . ] , [ 0 . ] ] ] ) <nl> + model = keras . models . Sequential ( ) <nl> + model . add ( <nl> + keras . layers . TimeDistributed ( <nl> + keras . layers . Dense ( 1 , kernel_initializer = ' ones ' ) , <nl> + input_shape = ( 2 , 1 ) ) ) <nl> + model . compile ( <nl> + RMSPropOptimizer ( learning_rate = 0 . 001 ) , <nl> + loss = ' mse ' , <nl> + sample_weight_mode = ' temporal ' , <nl> + weighted_metrics = [ ' accuracy ' , <nl> + metrics_module . BinaryAccuracy ( ) ] ) <nl> + y = np . array ( [ [ [ 1 . ] , [ 1 . ] ] , [ [ 1 . ] , [ 1 . ] ] ] ) <nl> <nl> - outs = model . evaluate ( x , y ) <nl> - self . assertEqual ( outs , [ 0 . 5 , 0 . 5 , 0 . 5 ] ) <nl> + outs = model . evaluate ( x , y ) <nl> + self . assertEqual ( outs , [ 0 . 5 , 0 . 5 , 0 . 5 ] ) <nl> <nl> - w = np . array ( [ [ 0 . , 0 . ] , [ 0 . , 0 . ] ] ) <nl> - outs = model . evaluate ( x , y , sample_weight = w ) <nl> - self . assertEqual ( outs , [ 0 . , 0 . , 0 . ] ) <nl> + w = np . array ( [ [ 0 . , 0 . ] , [ 0 . , 0 . ] ] ) <nl> + outs = model . evaluate ( x , y , sample_weight = w ) <nl> + self . assertEqual ( outs , [ 0 . , 0 . , 0 . ] ) <nl> <nl> - w = np . array ( [ [ 3 . , 4 . ] , [ 1 . , 2 . ] ] ) <nl> - outs = model . evaluate ( x , y , sample_weight = w ) <nl> - self . assertArrayNear ( outs , [ 0 . 3 , 0 . 7 , 0 . 7 ] , . 001 ) <nl> + w = np . array ( [ [ 3 . , 4 . ] , [ 1 . , 2 . ] ] ) <nl> + outs = model . evaluate ( x , y , sample_weight = w ) <nl> + self . assertArrayNear ( outs , [ 0 . 3 , 0 . 7 , 0 . 7 ] , . 001 ) <nl> <nl> @ tf_test_util . run_in_graph_and_eager_modes <nl> def test_metric_state_reset_between_fit_and_evaluate ( self ) : <nl> - with self . test_session ( ) : <nl> - model = keras . Sequential ( ) <nl> - model . add ( keras . layers . Dense ( 3 , activation = ' relu ' , input_dim = 4 ) ) <nl> - model . add ( keras . layers . Dense ( 1 , activation = ' sigmoid ' ) ) <nl> - acc_obj = metrics_module . BinaryAccuracy ( ) <nl> - model . compile ( <nl> - loss = ' mae ' , <nl> - metrics = [ acc_obj ] , <nl> - optimizer = RMSPropOptimizer ( learning_rate = 0 . 001 ) ) <nl> + model = keras . Sequential ( ) <nl> + model . add ( keras . layers . Dense ( 3 , activation = ' relu ' , input_dim = 4 ) ) <nl> + model . add ( keras . layers . Dense ( 1 , activation = ' sigmoid ' ) ) <nl> + acc_obj = metrics_module . BinaryAccuracy ( ) <nl> + model . compile ( <nl> + loss = ' mae ' , <nl> + metrics = [ acc_obj ] , <nl> + optimizer = RMSPropOptimizer ( learning_rate = 0 . 001 ) ) <nl> <nl> - x_train = np . random . random ( ( 100 , 4 ) ) <nl> - y_train = np . random . random ( ( 100 , 1 ) ) <nl> - model . fit ( x_train , y_train , batch_size = 5 , epochs = 2 ) <nl> - self . assertEqual ( self . evaluate ( acc_obj . count ) , 100 ) <nl> + x_train = np . random . random ( ( 100 , 4 ) ) <nl> + y_train = np . random . random ( ( 100 , 1 ) ) <nl> + model . fit ( x_train , y_train , batch_size = 5 , epochs = 2 ) <nl> + self . assertEqual ( self . evaluate ( acc_obj . count ) , 100 ) <nl> <nl> - x_test = np . random . random ( ( 10 , 4 ) ) <nl> - y_test = np . random . random ( ( 10 , 1 ) ) <nl> - model . evaluate ( x_test , y_test , batch_size = 5 ) <nl> - self . assertEqual ( self . evaluate ( acc_obj . count ) , 10 ) <nl> + x_test = np . random . random ( ( 10 , 4 ) ) <nl> + y_test = np . random . random ( ( 10 , 1 ) ) <nl> + model . evaluate ( x_test , y_test , batch_size = 5 ) <nl> + self . assertEqual ( self . evaluate ( acc_obj . count ) , 10 ) <nl> <nl> @ tf_test_util . run_in_graph_and_eager_modes <nl> def test_invalid_metrics ( self ) : <nl> num_classes = 5 <nl> input_dim = 5 <nl> <nl> - with self . test_session ( ) : <nl> - model = keras . models . Sequential ( ) <nl> - model . add ( <nl> - keras . layers . Dense ( 10 , activation = ' relu ' , input_shape = ( input_dim , ) ) ) <nl> - model . add ( keras . layers . Dense ( num_classes , activation = ' softmax ' ) ) <nl> + model = testing_utils . get_small_sequential_mlp ( <nl> + num_hidden = 10 , num_classes = num_classes , input_dim = input_dim ) <nl> <nl> - with self . assertRaisesRegexp ( <nl> - TypeError , ' Type of ` metrics ` argument not understood . ' <nl> - ' Expected a list or dictionary , found : ' ) : <nl> - model . compile ( <nl> - RMSPropOptimizer ( learning_rate = 0 . 001 ) , <nl> - loss = ' categorical_crossentropy ' , <nl> - metrics = metrics_module . CategoricalAccuracy ( ) ) <nl> + with self . assertRaisesRegexp ( <nl> + TypeError , ' Type of ` metrics ` argument not understood . ' <nl> + ' Expected a list or dictionary , found : ' ) : <nl> + model . compile ( <nl> + RMSPropOptimizer ( learning_rate = 0 . 001 ) , <nl> + loss = ' categorical_crossentropy ' , <nl> + metrics = metrics_module . CategoricalAccuracy ( ) ) <nl> <nl> @ tf_test_util . run_in_graph_and_eager_modes <nl> def test_metrics_masking ( self ) : <nl> mmm a / tensorflow / python / keras / testing_utils . py <nl> ppp b / tensorflow / python / keras / testing_utils . py <nl> def layer_test ( layer_cls , kwargs = None , input_shape = None , input_dtype = None , <nl> # for further checks in the caller function <nl> return actual_output <nl> <nl> + <nl> + def get_small_sequential_mlp ( num_hidden , num_classes , input_dim = None ) : <nl> + model = keras . models . Sequential ( ) <nl> + if input_dim : <nl> + model . add ( keras . layers . Dense ( num_hidden , activation = ' relu ' , <nl> + input_dim = input_dim ) ) <nl> + else : <nl> + model . add ( keras . layers . Dense ( num_hidden , activation = ' relu ' ) ) <nl> + activation = ' sigmoid ' if num_classes = = 1 else ' softmax ' <nl> + model . add ( keras . layers . Dense ( num_classes , activation = activation ) ) <nl> + return model <nl> + <nl> + <nl> + def get_small_functional_mlp ( num_hidden , num_classes , input_dim ) : <nl> + inputs = keras . Input ( shape = ( input_dim , ) ) <nl> + outputs = keras . layers . Dense ( num_hidden , activation = ' relu ' ) ( inputs ) <nl> + activation = ' sigmoid ' if num_classes = = 1 else ' softmax ' <nl> + outputs = keras . layers . Dense ( num_classes , activation = activation ) ( outputs ) <nl> + return keras . Model ( inputs , outputs ) <nl>
Simplify Keras unit tests by removing unnecessary session scopes and introducing a utility function for repeated code .
tensorflow/tensorflow
d29759fa5370c7fe4ba5f12ac26cba08d5bb3c4f
2018-08-21T01:51:19Z
mmm a / modules / features2d / doc / common_interfaces_of_descriptor_matchers . rst <nl> ppp b / modules / features2d / doc / common_interfaces_of_descriptor_matchers . rst <nl> Brute - force matcher constructor . <nl> <nl> : param normType : One of ` ` NORM_L1 ` ` , ` ` NORM_L2 ` ` , ` ` NORM_HAMMING ` ` , ` ` NORM_HAMMING2 ` ` . ` ` L1 ` ` and ` ` L2 ` ` norms are preferable choices for SIFT and SURF descriptors , ` ` NORM_HAMMING ` ` should be used with ORB , BRISK and BRIEF , ` ` NORM_HAMMING2 ` ` should be used with ORB when ` ` WTA_K = = 3 ` ` or ` ` 4 ` ` ( see ORB : : ORB constructor description ) . <nl> <nl> - : param crossCheck : If it is false , this is will be default BFMatcher behaviour when it finds the k nearest neighbors for each query descriptor . If ` ` crossCheck = = true ` ` , then the ` ` knnMatch ( ) ` ` method with ` ` k = 1 ` ` will only return pairs ` ` ( i , j ) ` ` such that for ` ` i - th ` ` query descriptor the ` ` j - th ` ` descriptor in the matcher ' s collection is the nearest and vice versa , i . e . the ` ` BFMathcher ` ` will only return consistent pairs . Such technique usually produces best results with minimal number of outliers when there are enough matches . This is alternative to the ratio test , used by D . Lowe in SIFT paper . <nl> + : param crossCheck : If it is false , this is will be default BFMatcher behaviour when it finds the k nearest neighbors for each query descriptor . If ` ` crossCheck = = true ` ` , then the ` ` knnMatch ( ) ` ` method with ` ` k = 1 ` ` will only return pairs ` ` ( i , j ) ` ` such that for ` ` i - th ` ` query descriptor the ` ` j - th ` ` descriptor in the matcher ' s collection is the nearest and vice versa , i . e . the ` ` BFMatcher ` ` will only return consistent pairs . Such technique usually produces best results with minimal number of outliers when there are enough matches . This is alternative to the ratio test , used by D . Lowe in SIFT paper . <nl> <nl> <nl> FlannBasedMatcher <nl>
Merge pull request from mjul : fixtypos_2 . 4
opencv/opencv
4382970739e5395384b0b9db1630dbab8f2d9927
2014-03-28T07:58:11Z
new file mode 100644 <nl> index 00000000000 . . 0ca9f162416 <nl> mmm / dev / null <nl> ppp b / dbms / programs / server / config . d / metric_log . xml <nl> <nl> + < yandex > <nl> + < metric_log > <nl> + < database > system < / database > <nl> + < table > metric_log < / table > <nl> + < flush_interval_milliseconds > 7500 < / flush_interval_milliseconds > <nl> + < collect_interval_milliseconds > 1000 < / collect_interval_milliseconds > <nl> + < / metric_log > <nl> + < / yandex > <nl> mmm a / dbms / programs / server / config . xml <nl> ppp b / dbms / programs / server / config . xml <nl> <nl> < / text_log > <nl> - - > <nl> <nl> + < ! - - Uncomment to write metric log into table . <nl> + Metric log contains rows with current values of ProfileEvents , CurrentMetrics collected with " collect_interval_milliseconds " interval . <nl> + < metric_log > <nl> + < database > system < / database > <nl> + < table > metric_log < / table > <nl> + < flush_interval_milliseconds > 7500 < / flush_interval_milliseconds > <nl> + < collect_interval_milliseconds > 1000 < / collect_interval_milliseconds > <nl> + < / metric_log > <nl> + - - > <nl> + <nl> < ! - - Parameters for embedded dictionaries , used in Yandex . Metrica . <nl> See https : / / clickhouse . yandex / docs / en / dicts / internal_dicts / <nl> - - > <nl> mmm a / dbms / src / Core / SettingsCommon . h <nl> ppp b / dbms / src / Core / SettingsCommon . h <nl> class SettingsCollection <nl> for ( const auto & member : members ( ) ) <nl> { <nl> if ( member . isChanged ( castToDerived ( ) ) ) <nl> - found_changes . emplace_back ( member . name . toString ( ) , member . get_field ( castToDerived ( ) ) ) ; <nl> + found_changes . push_back ( { member . name . toString ( ) , member . get_field ( castToDerived ( ) ) } ) ; <nl> } <nl> return found_changes ; <nl> } <nl> mmm a / dbms / src / DataStreams / AsynchronousBlockInputStream . h <nl> ppp b / dbms / src / DataStreams / AsynchronousBlockInputStream . h <nl> class AsynchronousBlockInputStream : public IBlockInputStream <nl> <nl> Block getHeader ( ) const override { return children . at ( 0 ) - > getHeader ( ) ; } <nl> <nl> + void cancel ( bool kill ) override <nl> + { <nl> + IBlockInputStream : : cancel ( kill ) ; <nl> + <nl> + / / / Wait for some backgroud calculations to be sure , <nl> + / / / that after end of stream nothing is being executing . <nl> + if ( started ) <nl> + pool . wait ( ) ; <nl> + } <nl> <nl> ~ AsynchronousBlockInputStream ( ) override <nl> { <nl> mmm a / dbms / src / DataStreams / FinishSortingBlockInputStream . cpp <nl> ppp b / dbms / src / DataStreams / FinishSortingBlockInputStream . cpp <nl> Block FinishSortingBlockInputStream : : readImpl ( ) <nl> if ( block . rows ( ) = = 0 ) <nl> continue ; <nl> <nl> - / / We need to sort each block separately before merging . <nl> - sortBlock ( block , description_to_sort , limit ) ; <nl> <nl> removeConstantsFromBlock ( block ) ; <nl> <nl> mmm a / dbms / src / DataStreams / tests / expression_stream . cpp <nl> ppp b / dbms / src / DataStreams / tests / expression_stream . cpp <nl> try <nl> <nl> NamesAndTypesList source_columns = { { " number " , std : : make_shared < DataTypeUInt64 > ( ) } } ; <nl> auto syntax_result = SyntaxAnalyzer ( context , { } ) . analyze ( ast , source_columns ) ; <nl> - ExpressionAnalyzer analyzer ( ast , syntax_result , context ) ; <nl> + SelectQueryExpressionAnalyzer analyzer ( ast , syntax_result , context ) ; <nl> ExpressionActionsChain chain ( context ) ; <nl> analyzer . appendSelect ( chain , false ) ; <nl> analyzer . appendProjectResult ( chain ) ; <nl> mmm a / dbms / src / DataStreams / tests / filter_stream . cpp <nl> ppp b / dbms / src / DataStreams / tests / filter_stream . cpp <nl> try <nl> <nl> NamesAndTypesList source_columns = { { " number " , std : : make_shared < DataTypeUInt64 > ( ) } } ; <nl> auto syntax_result = SyntaxAnalyzer ( context , { } ) . analyze ( ast , source_columns ) ; <nl> - ExpressionAnalyzer analyzer ( ast , syntax_result , context ) ; <nl> + SelectQueryExpressionAnalyzer analyzer ( ast , syntax_result , context ) ; <nl> ExpressionActionsChain chain ( context ) ; <nl> analyzer . appendSelect ( chain , false ) ; <nl> analyzer . appendProjectResult ( chain ) ; <nl> mmm a / dbms / src / Interpreters / ActionsVisitor . cpp <nl> ppp b / dbms / src / Interpreters / ActionsVisitor . cpp <nl> <nl> + # include < Common / typeid_cast . h > <nl> + <nl> # include < Functions / FunctionFactory . h > <nl> # include < Functions / FunctionsMiscellaneous . h > <nl> <nl> <nl> # include < Storages / StorageSet . h > <nl> <nl> # include < Parsers / ASTFunction . h > <nl> - # include < Common / typeid_cast . h > <nl> - # include < Parsers / DumpASTNode . h > <nl> # include < Parsers / ASTIdentifier . h > <nl> # include < Parsers / ASTLiteral . h > <nl> # include < Parsers / ASTSelectQuery . h > <nl> const Block & ScopeStack : : getSampleBlock ( ) const <nl> return stack . back ( ) . actions - > getSampleBlock ( ) ; <nl> } <nl> <nl> + struct CachedColumnName <nl> + { <nl> + String cached ; <nl> + <nl> + const String & get ( const ASTPtr & ast ) <nl> + { <nl> + if ( cached . empty ( ) ) <nl> + cached = ast - > getColumnName ( ) ; <nl> + return cached ; <nl> + } <nl> + } ; <nl> <nl> - ActionsVisitor : : ActionsVisitor ( <nl> - const Context & context_ , SizeLimits set_size_limit_ , size_t subquery_depth_ , <nl> - const NamesAndTypesList & source_columns_ , const ExpressionActionsPtr & actions , <nl> - PreparedSets & prepared_sets_ , SubqueriesForSets & subqueries_for_sets_ , <nl> - bool no_subqueries_ , bool only_consts_ , bool no_storage_or_local_ , std : : ostream * ostr_ ) <nl> - : context ( context_ ) , <nl> - set_size_limit ( set_size_limit_ ) , <nl> - subquery_depth ( subquery_depth_ ) , <nl> - source_columns ( source_columns_ ) , <nl> - prepared_sets ( prepared_sets_ ) , <nl> - subqueries_for_sets ( subqueries_for_sets_ ) , <nl> - no_subqueries ( no_subqueries_ ) , <nl> - only_consts ( only_consts_ ) , <nl> - no_storage_or_local ( no_storage_or_local_ ) , <nl> - visit_depth ( 0 ) , <nl> - ostr ( ostr_ ) , <nl> - actions_stack ( actions , context ) <nl> + bool ActionsMatcher : : needChildVisit ( const ASTPtr & node , const ASTPtr & child ) <nl> { <nl> + / / / Visit children themself <nl> + if ( node - > as < ASTIdentifier > ( ) | | <nl> + node - > as < ASTFunction > ( ) | | <nl> + node - > as < ASTLiteral > ( ) ) <nl> + return false ; <nl> + <nl> + / / / Do not go to FROM , JOIN , UNION . <nl> + if ( child - > as < ASTTableExpression > ( ) | | <nl> + child - > as < ASTSelectQuery > ( ) ) <nl> + return false ; <nl> + <nl> + return true ; <nl> } <nl> <nl> - void ActionsVisitor : : visit ( const ASTPtr & ast ) <nl> + void ActionsMatcher : : visit ( const ASTPtr & ast , Data & data ) <nl> { <nl> - DumpASTNode dump ( * ast , ostr , visit_depth , " getActions " ) ; <nl> - <nl> - String ast_column_name ; <nl> - auto getColumnName = [ & ast , & ast_column_name ] ( ) <nl> - { <nl> - if ( ast_column_name . empty ( ) ) <nl> - ast_column_name = ast - > getColumnName ( ) ; <nl> - <nl> - return ast_column_name ; <nl> - } ; <nl> + if ( const auto * identifier = ast - > as < ASTIdentifier > ( ) ) <nl> + visit ( * identifier , ast , data ) ; <nl> + else if ( const auto * node = ast - > as < ASTFunction > ( ) ) <nl> + visit ( * node , ast , data ) ; <nl> + else if ( const auto * literal = ast - > as < ASTLiteral > ( ) ) <nl> + visit ( * literal , ast , data ) ; <nl> + } <nl> <nl> - / / / If the result of the calculation already exists in the block . <nl> - if ( ( ast - > as < ASTFunction > ( ) | | ast - > as < ASTLiteral > ( ) ) & & actions_stack . getSampleBlock ( ) . has ( getColumnName ( ) ) ) <nl> + void ActionsMatcher : : visit ( const ASTIdentifier & identifier , const ASTPtr & ast , Data & data ) <nl> + { <nl> + CachedColumnName column_name ; <nl> + if ( data . hasColumn ( column_name . get ( ast ) ) ) <nl> return ; <nl> <nl> - if ( const auto * identifier = ast - > as < ASTIdentifier > ( ) ) <nl> + if ( ! data . only_consts ) <nl> { <nl> - if ( ! only_consts & & ! actions_stack . getSampleBlock ( ) . has ( getColumnName ( ) ) ) <nl> - { <nl> - / / / The requested column is not in the block . <nl> - / / / If such a column exists in the table , then the user probably forgot to surround it with an aggregate function or add it to GROUP BY . <nl> + / / / The requested column is not in the block . <nl> + / / / If such a column exists in the table , then the user probably forgot to surround it with an aggregate function or add it to GROUP BY . <nl> <nl> - bool found = false ; <nl> - for ( const auto & column_name_type : source_columns ) <nl> - if ( column_name_type . name = = getColumnName ( ) ) <nl> - found = true ; <nl> + bool found = false ; <nl> + for ( const auto & column_name_type : data . source_columns ) <nl> + if ( column_name_type . name = = column_name . get ( ast ) ) <nl> + found = true ; <nl> <nl> - if ( found ) <nl> - throw Exception ( " Column " + getColumnName ( ) + " is not under aggregate function and not in GROUP BY . " , <nl> - ErrorCodes : : NOT_AN_AGGREGATE ) ; <nl> + if ( found ) <nl> + throw Exception ( " Column " + column_name . get ( ast ) + " is not under aggregate function and not in GROUP BY . " , <nl> + ErrorCodes : : NOT_AN_AGGREGATE ) ; <nl> <nl> - / / / Special check for WITH statement alias . Add alias action to be able to use this alias . <nl> - if ( identifier - > prefer_alias_to_column_name & & ! identifier - > alias . empty ( ) ) <nl> - actions_stack . addAction ( ExpressionAction : : addAliases ( { { identifier - > name , identifier - > alias } } ) ) ; <nl> - } <nl> + / / / Special check for WITH statement alias . Add alias action to be able to use this alias . <nl> + if ( identifier . prefer_alias_to_column_name & & ! identifier . alias . empty ( ) ) <nl> + data . addAction ( ExpressionAction : : addAliases ( { { identifier . name , identifier . alias } } ) ) ; <nl> } <nl> - else if ( const auto * node = ast - > as < ASTFunction > ( ) ) <nl> + } <nl> + <nl> + void ActionsMatcher : : visit ( const ASTFunction & node , const ASTPtr & ast , Data & data ) <nl> + { <nl> + CachedColumnName column_name ; <nl> + if ( data . hasColumn ( column_name . get ( ast ) ) ) <nl> + return ; <nl> + <nl> + if ( node . name = = " lambda " ) <nl> + throw Exception ( " Unexpected lambda expression " , ErrorCodes : : UNEXPECTED_EXPRESSION ) ; <nl> + <nl> + / / / Function arrayJoin . <nl> + if ( node . name = = " arrayJoin " ) <nl> { <nl> - if ( node - > name = = " lambda " ) <nl> - throw Exception ( " Unexpected lambda expression " , ErrorCodes : : UNEXPECTED_EXPRESSION ) ; <nl> + if ( node . arguments - > children . size ( ) ! = 1 ) <nl> + throw Exception ( " arrayJoin requires exactly 1 argument " , ErrorCodes : : TYPE_MISMATCH ) ; <nl> <nl> - / / / Function arrayJoin . <nl> - if ( node - > name = = " arrayJoin " ) <nl> + ASTPtr arg = node . arguments - > children . at ( 0 ) ; <nl> + visit ( arg , data ) ; <nl> + if ( ! data . only_consts ) <nl> { <nl> - if ( node - > arguments - > children . size ( ) ! = 1 ) <nl> - throw Exception ( " arrayJoin requires exactly 1 argument " , ErrorCodes : : TYPE_MISMATCH ) ; <nl> + String result_name = column_name . get ( ast ) ; <nl> + data . addAction ( ExpressionAction : : copyColumn ( arg - > getColumnName ( ) , result_name ) ) ; <nl> + NameSet joined_columns ; <nl> + joined_columns . insert ( result_name ) ; <nl> + data . addAction ( ExpressionAction : : arrayJoin ( joined_columns , false , data . context ) ) ; <nl> + } <nl> <nl> - ASTPtr arg = node - > arguments - > children . at ( 0 ) ; <nl> - visit ( arg ) ; <nl> - if ( ! only_consts ) <nl> - { <nl> - String result_name = getColumnName ( ) ; <nl> - actions_stack . addAction ( ExpressionAction : : copyColumn ( arg - > getColumnName ( ) , result_name ) ) ; <nl> - NameSet joined_columns ; <nl> - joined_columns . insert ( result_name ) ; <nl> - actions_stack . addAction ( ExpressionAction : : arrayJoin ( joined_columns , false , context ) ) ; <nl> - } <nl> + return ; <nl> + } <nl> <nl> - return ; <nl> - } <nl> + SetPtr prepared_set ; <nl> + if ( functionIsInOrGlobalInOperator ( node . name ) ) <nl> + { <nl> + / / / Let ' s find the type of the first argument ( then getActionsImpl will be called again and will not affect anything ) . <nl> + visit ( node . arguments - > children . at ( 0 ) , data ) ; <nl> <nl> - SetPtr prepared_set ; <nl> - if ( functionIsInOrGlobalInOperator ( node - > name ) ) <nl> + if ( ! data . no_subqueries ) <nl> { <nl> - / / / Let ' s find the type of the first argument ( then getActionsImpl will be called again and will not affect anything ) . <nl> - visit ( node - > arguments - > children . at ( 0 ) ) ; <nl> - <nl> - if ( ! no_subqueries ) <nl> - { <nl> - / / / Transform tuple or subquery into a set . <nl> - prepared_set = makeSet ( node , actions_stack . getSampleBlock ( ) ) ; <nl> - } <nl> - else <nl> + / / / Transform tuple or subquery into a set . <nl> + prepared_set = makeSet ( node , data ) ; <nl> + } <nl> + else <nl> + { <nl> + if ( ! data . only_consts ) <nl> { <nl> - if ( ! only_consts ) <nl> - { <nl> - / / / We are in the part of the tree that we are not going to compute . You just need to define types . <nl> - / / / Do not subquery and create sets . We treat " IN " as " ignoreExceptNull " function . <nl> + / / / We are in the part of the tree that we are not going to compute . You just need to define types . <nl> + / / / Do not subquery and create sets . We treat " IN " as " ignoreExceptNull " function . <nl> <nl> - actions_stack . addAction ( ExpressionAction : : applyFunction ( <nl> - FunctionFactory : : instance ( ) . get ( " ignoreExceptNull " , context ) , <nl> - { node - > arguments - > children . at ( 0 ) - > getColumnName ( ) } , <nl> - getColumnName ( ) ) ) ; <nl> - } <nl> - return ; <nl> + data . addAction ( ExpressionAction : : applyFunction ( <nl> + FunctionFactory : : instance ( ) . get ( " ignoreExceptNull " , data . context ) , <nl> + { node . arguments - > children . at ( 0 ) - > getColumnName ( ) } , <nl> + column_name . get ( ast ) ) ) ; <nl> } <nl> - } <nl> - <nl> - / / / A special function ` indexHint ` . Everything that is inside it is not calculated <nl> - / / / ( and is used only for index analysis , see KeyCondition ) . <nl> - if ( node - > name = = " indexHint " ) <nl> - { <nl> - actions_stack . addAction ( ExpressionAction : : addColumn ( ColumnWithTypeAndName ( <nl> - ColumnConst : : create ( ColumnUInt8 : : create ( 1 , 1 ) , 1 ) , std : : make_shared < DataTypeUInt8 > ( ) , <nl> - getColumnName ( ) ) ) ) ; <nl> return ; <nl> } <nl> + } <nl> <nl> - if ( AggregateFunctionFactory : : instance ( ) . isAggregateFunctionName ( node - > name ) ) <nl> - return ; <nl> + / / / A special function ` indexHint ` . Everything that is inside it is not calculated <nl> + / / / ( and is used only for index analysis , see KeyCondition ) . <nl> + if ( node . name = = " indexHint " ) <nl> + { <nl> + data . addAction ( ExpressionAction : : addColumn ( ColumnWithTypeAndName ( <nl> + ColumnConst : : create ( ColumnUInt8 : : create ( 1 , 1 ) , 1 ) , std : : make_shared < DataTypeUInt8 > ( ) , <nl> + column_name . get ( ast ) ) ) ) ; <nl> + return ; <nl> + } <nl> <nl> - / / / Context object that we pass to function should live during query . <nl> - const Context & function_context = context . hasQueryContext ( ) <nl> - ? context . getQueryContext ( ) <nl> - : context ; <nl> + if ( AggregateFunctionFactory : : instance ( ) . isAggregateFunctionName ( node . name ) ) <nl> + return ; <nl> <nl> - FunctionBuilderPtr function_builder ; <nl> - try <nl> - { <nl> - function_builder = FunctionFactory : : instance ( ) . get ( node - > name , function_context ) ; <nl> - } <nl> - catch ( DB : : Exception & e ) <nl> - { <nl> - auto hints = AggregateFunctionFactory : : instance ( ) . getHints ( node - > name ) ; <nl> - if ( ! hints . empty ( ) ) <nl> - e . addMessage ( " Or unknown aggregate function " + node - > name + " . Maybe you meant : " + toString ( hints ) ) ; <nl> - e . rethrow ( ) ; <nl> - } <nl> + / / / Context object that we pass to function should live during query . <nl> + const Context & function_context = data . context . hasQueryContext ( ) <nl> + ? data . context . getQueryContext ( ) <nl> + : data . context ; <nl> <nl> - Names argument_names ; <nl> - DataTypes argument_types ; <nl> - bool arguments_present = true ; <nl> + FunctionBuilderPtr function_builder ; <nl> + try <nl> + { <nl> + function_builder = FunctionFactory : : instance ( ) . get ( node . name , function_context ) ; <nl> + } <nl> + catch ( DB : : Exception & e ) <nl> + { <nl> + auto hints = AggregateFunctionFactory : : instance ( ) . getHints ( node . name ) ; <nl> + if ( ! hints . empty ( ) ) <nl> + e . addMessage ( " Or unknown aggregate function " + node . name + " . Maybe you meant : " + toString ( hints ) ) ; <nl> + e . rethrow ( ) ; <nl> + } <nl> <nl> - / / / If the function has an argument - lambda expression , you need to determine its type before the recursive call . <nl> - bool has_lambda_arguments = false ; <nl> + Names argument_names ; <nl> + DataTypes argument_types ; <nl> + bool arguments_present = true ; <nl> <nl> - for ( size_t arg = 0 ; arg < node - > arguments - > children . size ( ) ; + + arg ) <nl> - { <nl> - auto & child = node - > arguments - > children [ arg ] ; <nl> - auto child_column_name = child - > getColumnName ( ) ; <nl> + / / / If the function has an argument - lambda expression , you need to determine its type before the recursive call . <nl> + bool has_lambda_arguments = false ; <nl> <nl> - const auto * lambda = child - > as < ASTFunction > ( ) ; <nl> - if ( lambda & & lambda - > name = = " lambda " ) <nl> - { <nl> - / / / If the argument is a lambda expression , just remember its approximate type . <nl> - if ( lambda - > arguments - > children . size ( ) ! = 2 ) <nl> - throw Exception ( " lambda requires two arguments " , ErrorCodes : : NUMBER_OF_ARGUMENTS_DOESNT_MATCH ) ; <nl> + for ( size_t arg = 0 ; arg < node . arguments - > children . size ( ) ; + + arg ) <nl> + { <nl> + auto & child = node . arguments - > children [ arg ] ; <nl> + auto child_column_name = child - > getColumnName ( ) ; <nl> <nl> - const auto * lambda_args_tuple = lambda - > arguments - > children . at ( 0 ) - > as < ASTFunction > ( ) ; <nl> + const auto * lambda = child - > as < ASTFunction > ( ) ; <nl> + if ( lambda & & lambda - > name = = " lambda " ) <nl> + { <nl> + / / / If the argument is a lambda expression , just remember its approximate type . <nl> + if ( lambda - > arguments - > children . size ( ) ! = 2 ) <nl> + throw Exception ( " lambda requires two arguments " , ErrorCodes : : NUMBER_OF_ARGUMENTS_DOESNT_MATCH ) ; <nl> <nl> - if ( ! lambda_args_tuple | | lambda_args_tuple - > name ! = " tuple " ) <nl> - throw Exception ( " First argument of lambda must be a tuple " , ErrorCodes : : TYPE_MISMATCH ) ; <nl> + const auto * lambda_args_tuple = lambda - > arguments - > children . at ( 0 ) - > as < ASTFunction > ( ) ; <nl> <nl> - has_lambda_arguments = true ; <nl> - argument_types . emplace_back ( std : : make_shared < DataTypeFunction > ( DataTypes ( lambda_args_tuple - > arguments - > children . size ( ) ) ) ) ; <nl> - / / / Select the name in the next cycle . <nl> - argument_names . emplace_back ( ) ; <nl> - } <nl> - else if ( functionIsInOrGlobalInOperator ( node - > name ) & & arg = = 1 & & prepared_set ) <nl> - { <nl> - ColumnWithTypeAndName column ; <nl> - column . type = std : : make_shared < DataTypeSet > ( ) ; <nl> + if ( ! lambda_args_tuple | | lambda_args_tuple - > name ! = " tuple " ) <nl> + throw Exception ( " First argument of lambda must be a tuple " , ErrorCodes : : TYPE_MISMATCH ) ; <nl> <nl> - / / / If the argument is a set given by an enumeration of values ( so , the set was already built ) , give it a unique name , <nl> - / / / so that sets with the same literal representation do not fuse together ( they can have different types ) . <nl> - if ( ! prepared_set - > empty ( ) ) <nl> - column . name = getUniqueName ( actions_stack . getSampleBlock ( ) , " __set " ) ; <nl> - else <nl> - column . name = child_column_name ; <nl> + has_lambda_arguments = true ; <nl> + argument_types . emplace_back ( std : : make_shared < DataTypeFunction > ( DataTypes ( lambda_args_tuple - > arguments - > children . size ( ) ) ) ) ; <nl> + / / / Select the name in the next cycle . <nl> + argument_names . emplace_back ( ) ; <nl> + } <nl> + else if ( functionIsInOrGlobalInOperator ( node . name ) & & arg = = 1 & & prepared_set ) <nl> + { <nl> + ColumnWithTypeAndName column ; <nl> + column . type = std : : make_shared < DataTypeSet > ( ) ; <nl> <nl> - if ( ! actions_stack . getSampleBlock ( ) . has ( column . name ) ) <nl> - { <nl> - column . column = ColumnSet : : create ( 1 , prepared_set ) ; <nl> + / / / If the argument is a set given by an enumeration of values ( so , the set was already built ) , give it a unique name , <nl> + / / / so that sets with the same literal representation do not fuse together ( they can have different types ) . <nl> + if ( ! prepared_set - > empty ( ) ) <nl> + column . name = getUniqueName ( data . getSampleBlock ( ) , " __set " ) ; <nl> + else <nl> + column . name = child_column_name ; <nl> <nl> - actions_stack . addAction ( ExpressionAction : : addColumn ( column ) ) ; <nl> - } <nl> + if ( ! data . hasColumn ( column . name ) ) <nl> + { <nl> + column . column = ColumnSet : : create ( 1 , prepared_set ) ; <nl> <nl> - argument_types . push_back ( column . type ) ; <nl> - argument_names . push_back ( column . name ) ; <nl> + data . addAction ( ExpressionAction : : addColumn ( column ) ) ; <nl> + } <nl> + <nl> + argument_types . push_back ( column . type ) ; <nl> + argument_names . push_back ( column . name ) ; <nl> + } <nl> + else <nl> + { <nl> + / / / If the argument is not a lambda expression , call it recursively and find out its type . <nl> + visit ( child , data ) ; <nl> + std : : string name = child_column_name ; <nl> + if ( data . hasColumn ( name ) ) <nl> + { <nl> + argument_types . push_back ( data . getSampleBlock ( ) . getByName ( name ) . type ) ; <nl> + argument_names . push_back ( name ) ; <nl> } <nl> else <nl> { <nl> - / / / If the argument is not a lambda expression , call it recursively and find out its type . <nl> - visit ( child ) ; <nl> - std : : string name = child_column_name ; <nl> - if ( actions_stack . getSampleBlock ( ) . has ( name ) ) <nl> - { <nl> - argument_types . push_back ( actions_stack . getSampleBlock ( ) . getByName ( name ) . type ) ; <nl> - argument_names . push_back ( name ) ; <nl> - } <nl> + if ( data . only_consts ) <nl> + arguments_present = false ; <nl> else <nl> - { <nl> - if ( only_consts ) <nl> - arguments_present = false ; <nl> - else <nl> - throw Exception ( " Unknown identifier : " + name , ErrorCodes : : UNKNOWN_IDENTIFIER ) ; <nl> - } <nl> + throw Exception ( " Unknown identifier : " + name , ErrorCodes : : UNKNOWN_IDENTIFIER ) ; <nl> } <nl> } <nl> + } <nl> <nl> - if ( only_consts & & ! arguments_present ) <nl> - return ; <nl> + if ( data . only_consts & & ! arguments_present ) <nl> + return ; <nl> + <nl> + if ( has_lambda_arguments & & ! data . only_consts ) <nl> + { <nl> + function_builder - > getLambdaArgumentTypes ( argument_types ) ; <nl> <nl> - if ( has_lambda_arguments & & ! only_consts ) <nl> + / / / Call recursively for lambda expressions . <nl> + for ( size_t i = 0 ; i < node . arguments - > children . size ( ) ; + + i ) <nl> { <nl> - function_builder - > getLambdaArgumentTypes ( argument_types ) ; <nl> + ASTPtr child = node . arguments - > children [ i ] ; <nl> <nl> - / / / Call recursively for lambda expressions . <nl> - for ( size_t i = 0 ; i < node - > arguments - > children . size ( ) ; + + i ) <nl> + const auto * lambda = child - > as < ASTFunction > ( ) ; <nl> + if ( lambda & & lambda - > name = = " lambda " ) <nl> { <nl> - ASTPtr child = node - > arguments - > children [ i ] ; <nl> + const DataTypeFunction * lambda_type = typeid_cast < const DataTypeFunction * > ( argument_types [ i ] . get ( ) ) ; <nl> + const auto * lambda_args_tuple = lambda - > arguments - > children . at ( 0 ) - > as < ASTFunction > ( ) ; <nl> + const ASTs & lambda_arg_asts = lambda_args_tuple - > arguments - > children ; <nl> + NamesAndTypesList lambda_arguments ; <nl> <nl> - const auto * lambda = child - > as < ASTFunction > ( ) ; <nl> - if ( lambda & & lambda - > name = = " lambda " ) <nl> + for ( size_t j = 0 ; j < lambda_arg_asts . size ( ) ; + + j ) <nl> { <nl> - const DataTypeFunction * lambda_type = typeid_cast < const DataTypeFunction * > ( argument_types [ i ] . get ( ) ) ; <nl> - const auto * lambda_args_tuple = lambda - > arguments - > children . at ( 0 ) - > as < ASTFunction > ( ) ; <nl> - const ASTs & lambda_arg_asts = lambda_args_tuple - > arguments - > children ; <nl> - NamesAndTypesList lambda_arguments ; <nl> - <nl> - for ( size_t j = 0 ; j < lambda_arg_asts . size ( ) ; + + j ) <nl> - { <nl> - auto opt_arg_name = tryGetIdentifierName ( lambda_arg_asts [ j ] ) ; <nl> - if ( ! opt_arg_name ) <nl> - throw Exception ( " lambda argument declarations must be identifiers " , ErrorCodes : : TYPE_MISMATCH ) ; <nl> - <nl> - lambda_arguments . emplace_back ( * opt_arg_name , lambda_type - > getArgumentTypes ( ) [ j ] ) ; <nl> - } <nl> - <nl> - actions_stack . pushLevel ( lambda_arguments ) ; <nl> - visit ( lambda - > arguments - > children . at ( 1 ) ) ; <nl> - ExpressionActionsPtr lambda_actions = actions_stack . popLevel ( ) ; <nl> - <nl> - String result_name = lambda - > arguments - > children . at ( 1 ) - > getColumnName ( ) ; <nl> - lambda_actions - > finalize ( Names ( 1 , result_name ) ) ; <nl> - DataTypePtr result_type = lambda_actions - > getSampleBlock ( ) . getByName ( result_name ) . type ; <nl> - <nl> - Names captured ; <nl> - Names required = lambda_actions - > getRequiredColumns ( ) ; <nl> - for ( const auto & required_arg : required ) <nl> - if ( findColumn ( required_arg , lambda_arguments ) = = lambda_arguments . end ( ) ) <nl> - captured . push_back ( required_arg ) ; <nl> - <nl> - / / / We can not name ` getColumnName ( ) ` , <nl> - / / / because it does not uniquely define the expression ( the types of arguments can be different ) . <nl> - String lambda_name = getUniqueName ( actions_stack . getSampleBlock ( ) , " __lambda " ) ; <nl> - <nl> - auto function_capture = std : : make_shared < FunctionCapture > ( <nl> - lambda_actions , captured , lambda_arguments , result_type , result_name ) ; <nl> - actions_stack . addAction ( ExpressionAction : : applyFunction ( function_capture , captured , lambda_name ) ) ; <nl> - <nl> - argument_types [ i ] = std : : make_shared < DataTypeFunction > ( lambda_type - > getArgumentTypes ( ) , result_type ) ; <nl> - argument_names [ i ] = lambda_name ; <nl> + auto opt_arg_name = tryGetIdentifierName ( lambda_arg_asts [ j ] ) ; <nl> + if ( ! opt_arg_name ) <nl> + throw Exception ( " lambda argument declarations must be identifiers " , ErrorCodes : : TYPE_MISMATCH ) ; <nl> + <nl> + lambda_arguments . emplace_back ( * opt_arg_name , lambda_type - > getArgumentTypes ( ) [ j ] ) ; <nl> } <nl> + <nl> + data . actions_stack . pushLevel ( lambda_arguments ) ; <nl> + visit ( lambda - > arguments - > children . at ( 1 ) , data ) ; <nl> + ExpressionActionsPtr lambda_actions = data . actions_stack . popLevel ( ) ; <nl> + <nl> + String result_name = lambda - > arguments - > children . at ( 1 ) - > getColumnName ( ) ; <nl> + lambda_actions - > finalize ( Names ( 1 , result_name ) ) ; <nl> + DataTypePtr result_type = lambda_actions - > getSampleBlock ( ) . getByName ( result_name ) . type ; <nl> + <nl> + Names captured ; <nl> + Names required = lambda_actions - > getRequiredColumns ( ) ; <nl> + for ( const auto & required_arg : required ) <nl> + if ( findColumn ( required_arg , lambda_arguments ) = = lambda_arguments . end ( ) ) <nl> + captured . push_back ( required_arg ) ; <nl> + <nl> + / / / We can not name ` getColumnName ( ) ` , <nl> + / / / because it does not uniquely define the expression ( the types of arguments can be different ) . <nl> + String lambda_name = getUniqueName ( data . getSampleBlock ( ) , " __lambda " ) ; <nl> + <nl> + auto function_capture = std : : make_shared < FunctionCapture > ( <nl> + lambda_actions , captured , lambda_arguments , result_type , result_name ) ; <nl> + data . addAction ( ExpressionAction : : applyFunction ( function_capture , captured , lambda_name ) ) ; <nl> + <nl> + argument_types [ i ] = std : : make_shared < DataTypeFunction > ( lambda_type - > getArgumentTypes ( ) , result_type ) ; <nl> + argument_names [ i ] = lambda_name ; <nl> } <nl> } <nl> + } <nl> <nl> - if ( only_consts ) <nl> + if ( data . only_consts ) <nl> + { <nl> + for ( const auto & argument_name : argument_names ) <nl> { <nl> - for ( const auto & argument_name : argument_names ) <nl> + if ( ! data . hasColumn ( argument_name ) ) <nl> { <nl> - if ( ! actions_stack . getSampleBlock ( ) . has ( argument_name ) ) <nl> - { <nl> - arguments_present = false ; <nl> - break ; <nl> - } <nl> + arguments_present = false ; <nl> + break ; <nl> } <nl> } <nl> - <nl> - if ( arguments_present ) <nl> - { <nl> - actions_stack . addAction ( <nl> - ExpressionAction : : applyFunction ( function_builder , argument_names , getColumnName ( ) ) ) ; <nl> - } <nl> } <nl> - else if ( const auto * literal = ast - > as < ASTLiteral > ( ) ) <nl> - { <nl> - DataTypePtr type = applyVisitor ( FieldToDataType ( ) , literal - > value ) ; <nl> <nl> - ColumnWithTypeAndName column ; <nl> - column . column = type - > createColumnConst ( 1 , convertFieldToType ( literal - > value , * type ) ) ; <nl> - column . type = type ; <nl> - column . name = getColumnName ( ) ; <nl> - <nl> - actions_stack . addAction ( ExpressionAction : : addColumn ( column ) ) ; <nl> - } <nl> - else <nl> + if ( arguments_present ) <nl> { <nl> - for ( auto & child : ast - > children ) <nl> - { <nl> - / / / Do not go to FROM , JOIN , UNION . <nl> - if ( ! child - > as < ASTTableExpression > ( ) & & ! child - > as < ASTSelectQuery > ( ) ) <nl> - visit ( child ) ; <nl> - } <nl> + data . addAction ( ExpressionAction : : applyFunction ( function_builder , argument_names , column_name . get ( ast ) ) ) ; <nl> } <nl> } <nl> <nl> - SetPtr ActionsVisitor : : makeSet ( const ASTFunction * node , const Block & sample_block ) <nl> + void ActionsMatcher : : visit ( const ASTLiteral & literal , const ASTPtr & ast , Data & data ) <nl> + { <nl> + CachedColumnName column_name ; <nl> + if ( data . hasColumn ( column_name . get ( ast ) ) ) <nl> + return ; <nl> + <nl> + DataTypePtr type = applyVisitor ( FieldToDataType ( ) , literal . value ) ; <nl> + <nl> + ColumnWithTypeAndName column ; <nl> + column . column = type - > createColumnConst ( 1 , convertFieldToType ( literal . value , * type ) ) ; <nl> + column . type = type ; <nl> + column . name = column_name . get ( ast ) ; <nl> + <nl> + data . addAction ( ExpressionAction : : addColumn ( column ) ) ; <nl> + } <nl> + <nl> + SetPtr ActionsMatcher : : makeSet ( const ASTFunction & node , Data & data ) <nl> { <nl> / * * You need to convert the right argument to a set . <nl> * This can be a table name , a value , a value enumeration , or a subquery . <nl> * The enumeration of values is parsed as a function ` tuple ` . <nl> * / <nl> - const IAST & args = * node - > arguments ; <nl> + const IAST & args = * node . arguments ; <nl> const ASTPtr & arg = args . children . at ( 1 ) ; <nl> + const Block & sample_block = data . getSampleBlock ( ) ; <nl> <nl> / / / If the subquery or table name for SELECT . <nl> const auto * identifier = arg - > as < ASTIdentifier > ( ) ; <nl> if ( arg - > as < ASTSubquery > ( ) | | identifier ) <nl> { <nl> auto set_key = PreparedSetKey : : forSubquery ( * arg ) ; <nl> - if ( prepared_sets . count ( set_key ) ) <nl> - return prepared_sets . at ( set_key ) ; <nl> + if ( data . prepared_sets . count ( set_key ) ) <nl> + return data . prepared_sets . at ( set_key ) ; <nl> <nl> / / / A special case is if the name of the table is specified on the right side of the IN statement , <nl> / / / and the table has the type Set ( a previously prepared set ) . <nl> if ( identifier ) <nl> { <nl> DatabaseAndTableWithAlias database_table ( * identifier ) ; <nl> - StoragePtr table = context . tryGetTable ( database_table . database , database_table . table ) ; <nl> + StoragePtr table = data . context . tryGetTable ( database_table . database , database_table . table ) ; <nl> <nl> if ( table ) <nl> { <nl> StorageSet * storage_set = dynamic_cast < StorageSet * > ( table . get ( ) ) ; <nl> if ( storage_set ) <nl> { <nl> - prepared_sets [ set_key ] = storage_set - > getSet ( ) ; <nl> + data . prepared_sets [ set_key ] = storage_set - > getSet ( ) ; <nl> return storage_set - > getSet ( ) ; <nl> } <nl> } <nl> SetPtr ActionsVisitor : : makeSet ( const ASTFunction * node , const Block & sample_bl <nl> / / / We get the stream of blocks for the subquery . Create Set and put it in place of the subquery . <nl> String set_id = arg - > getColumnName ( ) ; <nl> <nl> - SubqueryForSet & subquery_for_set = subqueries_for_sets [ set_id ] ; <nl> + SubqueryForSet & subquery_for_set = data . subqueries_for_sets [ set_id ] ; <nl> <nl> / / / If you already created a Set with the same subquery / table . <nl> if ( subquery_for_set . set ) <nl> { <nl> - prepared_sets [ set_key ] = subquery_for_set . set ; <nl> + data . prepared_sets [ set_key ] = subquery_for_set . set ; <nl> return subquery_for_set . set ; <nl> } <nl> <nl> - SetPtr set = std : : make_shared < Set > ( set_size_limit , false ) ; <nl> + SetPtr set = std : : make_shared < Set > ( data . set_size_limit , false ) ; <nl> <nl> / * * The following happens for GLOBAL INs : <nl> * - in the addExternalStorage function , the IN ( SELECT . . . ) subquery is replaced with IN _data1 , <nl> * in the subquery_for_set object , this subquery is set as source and the temporary table _data1 as the table . <nl> * - this function shows the expression IN_data1 . <nl> * / <nl> - if ( ! subquery_for_set . source & & no_storage_or_local ) <nl> + if ( ! subquery_for_set . source & & data . no_storage_or_local ) <nl> { <nl> - auto interpreter = interpretSubquery ( arg , context , subquery_depth , { } ) ; <nl> + auto interpreter = interpretSubquery ( arg , data . context , data . subquery_depth , { } ) ; <nl> subquery_for_set . source = std : : make_shared < LazyBlockInputStream > ( <nl> interpreter - > getSampleBlock ( ) , [ interpreter ] ( ) mutable { return interpreter - > execute ( ) . in ; } ) ; <nl> <nl> SetPtr ActionsVisitor : : makeSet ( const ASTFunction * node , const Block & sample_bl <nl> } <nl> <nl> subquery_for_set . set = set ; <nl> - prepared_sets [ set_key ] = set ; <nl> + data . prepared_sets [ set_key ] = set ; <nl> return set ; <nl> } <nl> else <nl> { <nl> / / / An explicit enumeration of values in parentheses . <nl> - return makeExplicitSet ( node , sample_block , false , context , set_size_limit , prepared_sets ) ; <nl> + return makeExplicitSet ( & node , sample_block , false , data . context , data . set_size_limit , data . prepared_sets ) ; <nl> } <nl> } <nl> <nl> mmm a / dbms / src / Interpreters / ActionsVisitor . h <nl> ppp b / dbms / src / Interpreters / ActionsVisitor . h <nl> <nl> # include < Interpreters / PreparedSets . h > <nl> # include < Interpreters / ExpressionActions . h > <nl> # include < Interpreters / SubqueryForSet . h > <nl> + # include < Interpreters / InDepthNodeVisitor . h > <nl> <nl> <nl> namespace DB <nl> struct ScopeStack <nl> const Block & getSampleBlock ( ) const ; <nl> } ; <nl> <nl> + class ASTIdentifier ; <nl> + class ASTFunction ; <nl> + class ASTLiteral ; <nl> <nl> / / / Collect ExpressionAction from AST . Returns PreparedSets and SubqueriesForSets too . <nl> - class ActionsVisitor <nl> + class ActionsMatcher <nl> { <nl> public : <nl> - ActionsVisitor ( const Context & context_ , SizeLimits set_size_limit_ , size_t subquery_depth_ , <nl> - const NamesAndTypesList & source_columns_ , const ExpressionActionsPtr & actions , <nl> - PreparedSets & prepared_sets_ , SubqueriesForSets & subqueries_for_sets_ , <nl> - bool no_subqueries_ , bool only_consts_ , bool no_storage_or_local_ , std : : ostream * ostr_ = nullptr ) ; <nl> + using Visitor = ConstInDepthNodeVisitor < ActionsMatcher , true > ; <nl> <nl> - void visit ( const ASTPtr & ast , ExpressionActionsPtr & actions ) <nl> + struct Data <nl> { <nl> - visit ( ast ) ; <nl> - actions = actions_stack . popLevel ( ) ; <nl> - } <nl> + const Context & context ; <nl> + SizeLimits set_size_limit ; <nl> + size_t subquery_depth ; <nl> + const NamesAndTypesList & source_columns ; <nl> + PreparedSets & prepared_sets ; <nl> + SubqueriesForSets & subqueries_for_sets ; <nl> + bool no_subqueries ; <nl> + bool only_consts ; <nl> + bool no_storage_or_local ; <nl> + size_t visit_depth ; <nl> + ScopeStack actions_stack ; <nl> + <nl> + Data ( const Context & context_ , SizeLimits set_size_limit_ , size_t subquery_depth_ , <nl> + const NamesAndTypesList & source_columns_ , const ExpressionActionsPtr & actions , <nl> + PreparedSets & prepared_sets_ , SubqueriesForSets & subqueries_for_sets_ , <nl> + bool no_subqueries_ , bool only_consts_ , bool no_storage_or_local_ ) <nl> + : context ( context_ ) , <nl> + set_size_limit ( set_size_limit_ ) , <nl> + subquery_depth ( subquery_depth_ ) , <nl> + source_columns ( source_columns_ ) , <nl> + prepared_sets ( prepared_sets_ ) , <nl> + subqueries_for_sets ( subqueries_for_sets_ ) , <nl> + no_subqueries ( no_subqueries_ ) , <nl> + only_consts ( only_consts_ ) , <nl> + no_storage_or_local ( no_storage_or_local_ ) , <nl> + visit_depth ( 0 ) , <nl> + actions_stack ( actions , context ) <nl> + { } <nl> + <nl> + void updateActions ( ExpressionActionsPtr & actions ) <nl> + { <nl> + actions = actions_stack . popLevel ( ) ; <nl> + } <nl> + <nl> + void addAction ( const ExpressionAction & action ) <nl> + { <nl> + actions_stack . addAction ( action ) ; <nl> + } <nl> + <nl> + const Block & getSampleBlock ( ) const <nl> + { <nl> + return actions_stack . getSampleBlock ( ) ; <nl> + } <nl> + <nl> + / / / Does result of the calculation already exists in the block . <nl> + bool hasColumn ( const String & columnName ) const <nl> + { <nl> + return actions_stack . getSampleBlock ( ) . has ( columnName ) ; <nl> + } <nl> + } ; <nl> + <nl> + static void visit ( const ASTPtr & ast , Data & data ) ; <nl> + static bool needChildVisit ( const ASTPtr & node , const ASTPtr & child ) ; <nl> <nl> private : <nl> - const Context & context ; <nl> - SizeLimits set_size_limit ; <nl> - size_t subquery_depth ; <nl> - const NamesAndTypesList & source_columns ; <nl> - PreparedSets & prepared_sets ; <nl> - SubqueriesForSets & subqueries_for_sets ; <nl> - const bool no_subqueries ; <nl> - const bool only_consts ; <nl> - const bool no_storage_or_local ; <nl> - mutable size_t visit_depth ; <nl> - std : : ostream * ostr ; <nl> - ScopeStack actions_stack ; <nl> - <nl> - void visit ( const ASTPtr & ast ) ; <nl> - SetPtr makeSet ( const ASTFunction * node , const Block & sample_block ) ; <nl> + <nl> + static void visit ( const ASTIdentifier & identifier , const ASTPtr & ast , Data & data ) ; <nl> + static void visit ( const ASTFunction & node , const ASTPtr & ast , Data & data ) ; <nl> + static void visit ( const ASTLiteral & literal , const ASTPtr & ast , Data & data ) ; <nl> + <nl> + static SetPtr makeSet ( const ASTFunction & node , Data & data ) ; <nl> } ; <nl> <nl> + using ActionsVisitor = ActionsMatcher : : Visitor ; <nl> + <nl> } <nl> mmm a / dbms / src / Interpreters / AnalyzedJoin . cpp <nl> ppp b / dbms / src / Interpreters / AnalyzedJoin . cpp <nl> ExpressionActionsPtr AnalyzedJoin : : createJoinedBlockActions ( <nl> <nl> ASTPtr query = expression_list ; <nl> auto syntax_result = SyntaxAnalyzer ( context ) . analyze ( query , columns_from_joined_table , required_columns ) ; <nl> - ExpressionAnalyzer analyzer ( query , syntax_result , context , required_columns_set ) ; <nl> + ExpressionAnalyzer analyzer ( query , syntax_result , context ) ; <nl> return analyzer . getActions ( true , false ) ; <nl> } <nl> <nl> mmm a / dbms / src / Interpreters / AnalyzedJoin . h <nl> ppp b / dbms / src / Interpreters / AnalyzedJoin . h <nl> struct AnalyzedJoin <nl> friend class SyntaxAnalyzer ; <nl> friend struct SyntaxAnalyzerResult ; <nl> friend class ExpressionAnalyzer ; <nl> + friend class SelectQueryExpressionAnalyzer ; <nl> <nl> Names key_names_left ; <nl> Names key_names_right ; / / / Duplicating names are qualified . <nl> mmm a / dbms / src / Interpreters / Context . cpp <nl> ppp b / dbms / src / Interpreters / Context . cpp <nl> <nl> # include < Interpreters / Compiler . h > <nl> # include < Interpreters / SettingsConstraints . h > <nl> # include < Interpreters / SystemLog . h > <nl> - # include < Interpreters / QueryLog . h > <nl> - # include < Interpreters / QueryThreadLog . h > <nl> - # include < Interpreters / PartLog . h > <nl> - # include < Interpreters / TraceLog . h > <nl> # include < Interpreters / Context . h > <nl> # include < Interpreters / DDLWorker . h > <nl> # include < Common / DNSResolver . h > <nl> std : : shared_ptr < PartLog > Context : : getPartLog ( const String & part_database ) <nl> return shared - > system_logs - > part_log ; <nl> } <nl> <nl> + <nl> std : : shared_ptr < TraceLog > Context : : getTraceLog ( ) <nl> { <nl> auto lock = getLock ( ) ; <nl> std : : shared_ptr < TraceLog > Context : : getTraceLog ( ) <nl> return shared - > system_logs - > trace_log ; <nl> } <nl> <nl> + <nl> std : : shared_ptr < TextLog > Context : : getTextLog ( ) <nl> { <nl> auto lock = getLock ( ) ; <nl> std : : shared_ptr < TextLog > Context : : getTextLog ( ) <nl> } <nl> <nl> <nl> + std : : shared_ptr < MetricLog > Context : : getMetricLog ( ) <nl> + { <nl> + auto lock = getLock ( ) ; <nl> + <nl> + if ( ! shared - > system_logs | | ! shared - > system_logs - > metric_log ) <nl> + return { } ; <nl> + <nl> + return shared - > system_logs - > metric_log ; <nl> + } <nl> + <nl> + <nl> CompressionCodecPtr Context : : chooseCompressionCodec ( size_t part_size , double part_size_ratio ) const <nl> { <nl> auto lock = getLock ( ) ; <nl> mmm a / dbms / src / Interpreters / Context . h <nl> ppp b / dbms / src / Interpreters / Context . h <nl> class QueryThreadLog ; <nl> class PartLog ; <nl> class TextLog ; <nl> class TraceLog ; <nl> + class MetricLog ; <nl> struct MergeTreeSettings ; <nl> class IDatabase ; <nl> class DDLGuard ; <nl> class Context <nl> std : : shared_ptr < QueryThreadLog > getQueryThreadLog ( ) ; <nl> std : : shared_ptr < TraceLog > getTraceLog ( ) ; <nl> std : : shared_ptr < TextLog > getTextLog ( ) ; <nl> + std : : shared_ptr < MetricLog > getMetricLog ( ) ; <nl> <nl> / / / Returns an object used to log opertaions with parts if it possible . <nl> / / / Provide table name to make required cheks . <nl> mmm a / dbms / src / Interpreters / ExpressionAnalyzer . cpp <nl> ppp b / dbms / src / Interpreters / ExpressionAnalyzer . cpp <nl> <nl> # include < Interpreters / interpretSubquery . h > <nl> # include < Interpreters / DatabaseAndTableWithAlias . h > <nl> # include < Interpreters / QueryNormalizer . h > <nl> - <nl> # include < Interpreters / ActionsVisitor . h > <nl> + <nl> # include < Interpreters / ExternalTablesVisitor . h > <nl> # include < Interpreters / GlobalSubqueriesVisitor . h > <nl> # include < Interpreters / GetAggregatesVisitor . h > <nl> ExpressionAnalyzer : : ExpressionAnalyzer ( <nl> const ASTPtr & query_ , <nl> const SyntaxAnalyzerResultPtr & syntax_analyzer_result_ , <nl> const Context & context_ , <nl> - const NameSet & required_result_columns_ , <nl> size_t subquery_depth_ , <nl> bool do_global ) <nl> - : ExpressionAnalyzerData ( required_result_columns_ ) <nl> - , query ( query_ ) , context ( context_ ) , settings ( context . getSettings ( ) ) <nl> + : query ( query_ ) , context ( context_ ) , settings ( context . getSettings ( ) ) <nl> , subquery_depth ( subquery_depth_ ) <nl> , syntax ( syntax_analyzer_result_ ) <nl> { <nl> void ExpressionAnalyzer : : initGlobalSubqueriesAndExternalTables ( bool do_global ) <nl> } <nl> <nl> <nl> - void ExpressionAnalyzer : : tryMakeSetForIndexFromSubquery ( const ASTPtr & subquery_or_table_name ) <nl> + void SelectQueryExpressionAnalyzer : : tryMakeSetForIndexFromSubquery ( const ASTPtr & subquery_or_table_name ) <nl> { <nl> auto set_key = PreparedSetKey : : forSubquery ( * subquery_or_table_name ) ; <nl> if ( prepared_sets . count ( set_key ) ) <nl> void ExpressionAnalyzer : : tryMakeSetForIndexFromSubquery ( const ASTPtr & subquery_ <nl> <nl> <nl> / / / Perfomance optimisation for IN ( ) if storage supports it . <nl> - void ExpressionAnalyzer : : makeSetsForIndex ( const ASTPtr & node ) <nl> + void SelectQueryExpressionAnalyzer : : makeSetsForIndex ( const ASTPtr & node ) <nl> { <nl> if ( ! node | | ! storage ( ) | | ! storage ( ) - > supportsIndexForIn ( ) ) <nl> return ; <nl> void ExpressionAnalyzer : : makeSetsForIndex ( const ASTPtr & node ) <nl> void ExpressionAnalyzer : : getRootActions ( const ASTPtr & ast , bool no_subqueries , ExpressionActionsPtr & actions , bool only_consts ) <nl> { <nl> LogAST log ; <nl> - ActionsVisitor actions_visitor ( context , settings . size_limits_for_set , subquery_depth , <nl> + ActionsVisitor : : Data visitor_data ( context , settings . size_limits_for_set , subquery_depth , <nl> sourceColumns ( ) , actions , prepared_sets , subqueries_for_sets , <nl> - no_subqueries , only_consts , ! isRemoteStorage ( ) , log . stream ( ) ) ; <nl> - actions_visitor . visit ( ast , actions ) ; <nl> + no_subqueries , only_consts , ! isRemoteStorage ( ) ) ; <nl> + ActionsVisitor ( visitor_data , log . stream ( ) ) . visit ( ast ) ; <nl> + visitor_data . updateActions ( actions ) ; <nl> } <nl> <nl> <nl> const ASTSelectQuery * ExpressionAnalyzer : : getSelectQuery ( ) const <nl> return select_query ; <nl> } <nl> <nl> - const ASTSelectQuery * ExpressionAnalyzer : : getAggregatingQuery ( ) const <nl> + const ASTSelectQuery * SelectQueryExpressionAnalyzer : : getAggregatingQuery ( ) const <nl> { <nl> if ( ! has_aggregation ) <nl> throw Exception ( " No aggregation " , ErrorCodes : : LOGICAL_ERROR ) ; <nl> void ExpressionAnalyzer : : addMultipleArrayJoinAction ( ExpressionActionsPtr & actio <nl> actions - > add ( ExpressionAction : : arrayJoin ( result_columns , array_join_is_left , context ) ) ; <nl> } <nl> <nl> - bool ExpressionAnalyzer : : appendArrayJoin ( ExpressionActionsChain & chain , bool only_types ) <nl> + bool SelectQueryExpressionAnalyzer : : appendArrayJoin ( ExpressionActionsChain & chain , bool only_types ) <nl> { <nl> const auto * select_query = getSelectQuery ( ) ; <nl> <nl> static void appendRequiredColumns ( <nl> required_columns . insert ( column . name ) ; <nl> } <nl> <nl> - bool ExpressionAnalyzer : : appendJoin ( ExpressionActionsChain & chain , bool only_types ) <nl> + bool SelectQueryExpressionAnalyzer : : appendJoin ( ExpressionActionsChain & chain , bool only_types ) <nl> { <nl> const auto * select_query = getSelectQuery ( ) ; <nl> <nl> bool ExpressionAnalyzer : : appendJoin ( ExpressionActionsChain & chain , bool only_ty <nl> return true ; <nl> } <nl> <nl> - bool ExpressionAnalyzer : : appendPrewhere ( <nl> + bool SelectQueryExpressionAnalyzer : : appendPrewhere ( <nl> ExpressionActionsChain & chain , bool only_types , const Names & additional_required_columns ) <nl> { <nl> const auto * select_query = getSelectQuery ( ) ; <nl> bool ExpressionAnalyzer : : appendPrewhere ( <nl> return true ; <nl> } <nl> <nl> - bool ExpressionAnalyzer : : appendWhere ( ExpressionActionsChain & chain , bool only_types ) <nl> + bool SelectQueryExpressionAnalyzer : : appendWhere ( ExpressionActionsChain & chain , bool only_types ) <nl> { <nl> const auto * select_query = getSelectQuery ( ) ; <nl> <nl> bool ExpressionAnalyzer : : appendWhere ( ExpressionActionsChain & chain , bool only_t <nl> return true ; <nl> } <nl> <nl> - bool ExpressionAnalyzer : : appendGroupBy ( ExpressionActionsChain & chain , bool only_types ) <nl> + bool SelectQueryExpressionAnalyzer : : appendGroupBy ( ExpressionActionsChain & chain , bool only_types ) <nl> { <nl> const auto * select_query = getAggregatingQuery ( ) ; <nl> <nl> bool ExpressionAnalyzer : : appendGroupBy ( ExpressionActionsChain & chain , bool only <nl> return true ; <nl> } <nl> <nl> - void ExpressionAnalyzer : : appendAggregateFunctionsArguments ( ExpressionActionsChain & chain , bool only_types ) <nl> + void SelectQueryExpressionAnalyzer : : appendAggregateFunctionsArguments ( ExpressionActionsChain & chain , bool only_types ) <nl> { <nl> const auto * select_query = getAggregatingQuery ( ) ; <nl> <nl> void ExpressionAnalyzer : : appendAggregateFunctionsArguments ( ExpressionActionsChai <nl> getRootActions ( argument , only_types , step . actions ) ; <nl> } <nl> <nl> - bool ExpressionAnalyzer : : appendHaving ( ExpressionActionsChain & chain , bool only_types ) <nl> + bool SelectQueryExpressionAnalyzer : : appendHaving ( ExpressionActionsChain & chain , bool only_types ) <nl> { <nl> const auto * select_query = getAggregatingQuery ( ) ; <nl> <nl> bool ExpressionAnalyzer : : appendHaving ( ExpressionActionsChain & chain , bool only_ <nl> return true ; <nl> } <nl> <nl> - void ExpressionAnalyzer : : appendSelect ( ExpressionActionsChain & chain , bool only_types ) <nl> + void SelectQueryExpressionAnalyzer : : appendSelect ( ExpressionActionsChain & chain , bool only_types ) <nl> { <nl> const auto * select_query = getSelectQuery ( ) ; <nl> <nl> void ExpressionAnalyzer : : appendSelect ( ExpressionActionsChain & chain , bool only_ <nl> step . required_output . push_back ( child - > getColumnName ( ) ) ; <nl> } <nl> <nl> - bool ExpressionAnalyzer : : appendOrderBy ( ExpressionActionsChain & chain , bool only_types ) <nl> + bool SelectQueryExpressionAnalyzer : : appendOrderBy ( ExpressionActionsChain & chain , bool only_types ) <nl> { <nl> const auto * select_query = getSelectQuery ( ) ; <nl> <nl> bool ExpressionAnalyzer : : appendOrderBy ( ExpressionActionsChain & chain , bool only <nl> return true ; <nl> } <nl> <nl> - bool ExpressionAnalyzer : : appendLimitBy ( ExpressionActionsChain & chain , bool only_types ) <nl> + bool SelectQueryExpressionAnalyzer : : appendLimitBy ( ExpressionActionsChain & chain , bool only_types ) <nl> { <nl> const auto * select_query = getSelectQuery ( ) ; <nl> <nl> bool ExpressionAnalyzer : : appendLimitBy ( ExpressionActionsChain & chain , bool only <nl> return true ; <nl> } <nl> <nl> - void ExpressionAnalyzer : : appendProjectResult ( ExpressionActionsChain & chain ) const <nl> + void SelectQueryExpressionAnalyzer : : appendProjectResult ( ExpressionActionsChain & chain ) const <nl> { <nl> const auto * select_query = getSelectQuery ( ) ; <nl> <nl> ExpressionActionsPtr ExpressionAnalyzer : : getConstActions ( ) <nl> return actions ; <nl> } <nl> <nl> - void ExpressionAnalyzer : : getAggregateInfo ( Names & key_names , AggregateDescriptions & aggregates ) const <nl> + void SelectQueryExpressionAnalyzer : : getAggregateInfo ( Names & key_names , AggregateDescriptions & aggregates ) const <nl> { <nl> for ( const auto & name_and_type : aggregation_keys ) <nl> key_names . emplace_back ( name_and_type . name ) ; <nl> mmm a / dbms / src / Interpreters / ExpressionAnalyzer . h <nl> ppp b / dbms / src / Interpreters / ExpressionAnalyzer . h <nl> using SyntaxAnalyzerResultPtr = std : : shared_ptr < const SyntaxAnalyzerResult > ; <nl> / / / ExpressionAnalyzer sources , intermediates and results . It splits data and logic , allows to test them separately . <nl> struct ExpressionAnalyzerData <nl> { <nl> - / / / If non - empty , ignore all expressions in not from this list . <nl> - NameSet required_result_columns ; <nl> - <nl> SubqueriesForSets subqueries_for_sets ; <nl> PreparedSets prepared_sets ; <nl> <nl> struct ExpressionAnalyzerData <nl> <nl> / / / All new temporary tables obtained by performing the GLOBAL IN / JOIN subqueries . <nl> Tables external_tables ; <nl> - <nl> - protected : <nl> - ExpressionAnalyzerData ( const NameSet & required_result_columns_ ) <nl> - : required_result_columns ( required_result_columns_ ) <nl> - { } <nl> } ; <nl> <nl> <nl> struct ExpressionAnalyzerData <nl> * <nl> * NOTE : if ` ast ` is a SELECT query from a table , the structure of this table should not change during the lifetime of ExpressionAnalyzer . <nl> * / <nl> - class ExpressionAnalyzer : private ExpressionAnalyzerData , private boost : : noncopyable <nl> + class ExpressionAnalyzer : protected ExpressionAnalyzerData , private boost : : noncopyable <nl> { <nl> private : <nl> / / / Extracts settings to enlight which are used ( and avoid copy of others ) . <nl> class ExpressionAnalyzer : private ExpressionAnalyzerData , private boost : : noncop <nl> } ; <nl> <nl> public : <nl> + / / / Ctor for non - select queries . Generally its usage is : <nl> + / / / auto actions = ExpressionAnalyzer ( query , syntax , context ) . getActions ( ) ; <nl> ExpressionAnalyzer ( <nl> const ASTPtr & query_ , <nl> const SyntaxAnalyzerResultPtr & syntax_analyzer_result_ , <nl> - const Context & context_ , <nl> - const NameSet & required_result_columns_ = { } , <nl> - size_t subquery_depth_ = 0 , <nl> - bool do_global_ = false ) ; <nl> - <nl> - / / / Does the expression have aggregate functions or a GROUP BY or HAVING section . <nl> - bool hasAggregation ( ) const { return has_aggregation ; } <nl> - <nl> - / / / Get a list of aggregation keys and descriptions of aggregate functions if the query contains GROUP BY . <nl> - void getAggregateInfo ( Names & key_names , AggregateDescriptions & aggregates ) const ; <nl> - <nl> - / * * These methods allow you to build a chain of transformations over a block , that receives values in the desired sections of the query . <nl> - * <nl> - * Example usage : <nl> - * ExpressionActionsChain chain ; <nl> - * analyzer . appendWhere ( chain ) ; <nl> - * chain . addStep ( ) ; <nl> - * analyzer . appendSelect ( chain ) ; <nl> - * analyzer . appendOrderBy ( chain ) ; <nl> - * chain . finalize ( ) ; <nl> - * <nl> - * If only_types = true set , does not execute subqueries in the relevant parts of the query . The actions got this way <nl> - * shouldn ' t be executed , they are only needed to get a list of columns with their types . <nl> - * / <nl> - <nl> - / / / Before aggregation : <nl> - bool appendArrayJoin ( ExpressionActionsChain & chain , bool only_types ) ; <nl> - bool appendJoin ( ExpressionActionsChain & chain , bool only_types ) ; <nl> - / / / remove_filter is set in ExpressionActionsChain : : finalize ( ) ; <nl> - / / / Columns in ` additional_required_columns ` will not be removed ( they can be used for e . g . sampling or FINAL modifier ) . <nl> - bool appendPrewhere ( ExpressionActionsChain & chain , bool only_types , const Names & additional_required_columns ) ; <nl> - bool appendWhere ( ExpressionActionsChain & chain , bool only_types ) ; <nl> - bool appendGroupBy ( ExpressionActionsChain & chain , bool only_types ) ; <nl> - void appendAggregateFunctionsArguments ( ExpressionActionsChain & chain , bool only_types ) ; <nl> - <nl> - / / / After aggregation : <nl> - bool appendHaving ( ExpressionActionsChain & chain , bool only_types ) ; <nl> - void appendSelect ( ExpressionActionsChain & chain , bool only_types ) ; <nl> - bool appendOrderBy ( ExpressionActionsChain & chain , bool only_types ) ; <nl> - bool appendLimitBy ( ExpressionActionsChain & chain , bool only_types ) ; <nl> - / / / Deletes all columns except mentioned by SELECT , arranges the remaining columns and renames them to aliases . <nl> - void appendProjectResult ( ExpressionActionsChain & chain ) const ; <nl> + const Context & context_ ) <nl> + : ExpressionAnalyzer ( query_ , syntax_analyzer_result_ , context_ , 0 , false ) <nl> + { } <nl> <nl> void appendExpression ( ExpressionActionsChain & chain , const ASTPtr & expr , bool only_types ) ; <nl> <nl> class ExpressionAnalyzer : private ExpressionAnalyzerData , private boost : : noncop <nl> * / <nl> const SubqueriesForSets & getSubqueriesForSets ( ) const { return subqueries_for_sets ; } <nl> <nl> - const PreparedSets & getPreparedSets ( ) const { return prepared_sets ; } <nl> - <nl> - / * * Tables that will need to be sent to remote servers for distributed query processing . <nl> - * / <nl> - const Tables & getExternalTables ( ) const { return external_tables ; } <nl> - <nl> / / / Get intermediates for tests <nl> const ExpressionAnalyzerData & getAnalyzedData ( ) const { return * this ; } <nl> <nl> - / / / Create Set - s that we can from IN section to use the index on them . <nl> - void makeSetsForIndex ( const ASTPtr & node ) ; <nl> - <nl> - bool hasGlobalSubqueries ( ) { return has_global_subqueries ; } <nl> + protected : <nl> + ExpressionAnalyzer ( <nl> + const ASTPtr & query_ , <nl> + const SyntaxAnalyzerResultPtr & syntax_analyzer_result_ , <nl> + const Context & context_ , <nl> + size_t subquery_depth_ , <nl> + bool do_global_ ) ; <nl> <nl> - private : <nl> ASTPtr query ; <nl> const Context & context ; <nl> const ExtractedSettings settings ; <nl> class ExpressionAnalyzer : private ExpressionAnalyzerData , private boost : : noncop <nl> void initChain ( ExpressionActionsChain & chain , const NamesAndTypesList & columns ) const ; <nl> <nl> const ASTSelectQuery * getSelectQuery ( ) const ; <nl> - const ASTSelectQuery * getAggregatingQuery ( ) const ; <nl> + <nl> + bool isRemoteStorage ( ) const ; <nl> + } ; <nl> + <nl> + / / / SelectQuery specific ExpressionAnalyzer part . <nl> + class SelectQueryExpressionAnalyzer : public ExpressionAnalyzer <nl> + { <nl> + public : <nl> + SelectQueryExpressionAnalyzer ( <nl> + const ASTPtr & query_ , <nl> + const SyntaxAnalyzerResultPtr & syntax_analyzer_result_ , <nl> + const Context & context_ , <nl> + const NameSet & required_result_columns_ = { } , <nl> + size_t subquery_depth_ = 0 , <nl> + bool do_global_ = false ) <nl> + : ExpressionAnalyzer ( query_ , syntax_analyzer_result_ , context_ , subquery_depth_ , do_global_ ) <nl> + , required_result_columns ( required_result_columns_ ) <nl> + { } <nl> + <nl> + / / / Does the expression have aggregate functions or a GROUP BY or HAVING section . <nl> + bool hasAggregation ( ) const { return has_aggregation ; } <nl> + bool hasGlobalSubqueries ( ) { return has_global_subqueries ; } <nl> + <nl> + / / / Get a list of aggregation keys and descriptions of aggregate functions if the query contains GROUP BY . <nl> + void getAggregateInfo ( Names & key_names , AggregateDescriptions & aggregates ) const ; <nl> + <nl> + const PreparedSets & getPreparedSets ( ) const { return prepared_sets ; } <nl> + <nl> + / / / Tables that will need to be sent to remote servers for distributed query processing . <nl> + const Tables & getExternalTables ( ) const { return external_tables ; } <nl> + <nl> + / * * These methods allow you to build a chain of transformations over a block , that receives values in the desired sections of the query . <nl> + * <nl> + * Example usage : <nl> + * ExpressionActionsChain chain ; <nl> + * analyzer . appendWhere ( chain ) ; <nl> + * chain . addStep ( ) ; <nl> + * analyzer . appendSelect ( chain ) ; <nl> + * analyzer . appendOrderBy ( chain ) ; <nl> + * chain . finalize ( ) ; <nl> + * <nl> + * If only_types = true set , does not execute subqueries in the relevant parts of the query . The actions got this way <nl> + * shouldn ' t be executed , they are only needed to get a list of columns with their types . <nl> + * / <nl> + <nl> + / / / Before aggregation : <nl> + bool appendArrayJoin ( ExpressionActionsChain & chain , bool only_types ) ; <nl> + bool appendJoin ( ExpressionActionsChain & chain , bool only_types ) ; <nl> + / / / remove_filter is set in ExpressionActionsChain : : finalize ( ) ; <nl> + / / / Columns in ` additional_required_columns ` will not be removed ( they can be used for e . g . sampling or FINAL modifier ) . <nl> + bool appendPrewhere ( ExpressionActionsChain & chain , bool only_types , const Names & additional_required_columns ) ; <nl> + bool appendWhere ( ExpressionActionsChain & chain , bool only_types ) ; <nl> + bool appendGroupBy ( ExpressionActionsChain & chain , bool only_types ) ; <nl> + void appendAggregateFunctionsArguments ( ExpressionActionsChain & chain , bool only_types ) ; <nl> + <nl> + / / / After aggregation : <nl> + bool appendHaving ( ExpressionActionsChain & chain , bool only_types ) ; <nl> + void appendSelect ( ExpressionActionsChain & chain , bool only_types ) ; <nl> + bool appendOrderBy ( ExpressionActionsChain & chain , bool only_types ) ; <nl> + bool appendLimitBy ( ExpressionActionsChain & chain , bool only_types ) ; <nl> + / / / Deletes all columns except mentioned by SELECT , arranges the remaining columns and renames them to aliases . <nl> + void appendProjectResult ( ExpressionActionsChain & chain ) const ; <nl> + <nl> + / / / Create Set - s that we can from IN section to use the index on them . <nl> + void makeSetsForIndex ( const ASTPtr & node ) ; <nl> + <nl> + private : <nl> + / / / If non - empty , ignore all expressions not from this list . <nl> + NameSet required_result_columns ; <nl> <nl> / * * <nl> * Create Set from a subquery or a table expression in the query . The created set is suitable for using the index . <nl> class ExpressionAnalyzer : private ExpressionAnalyzerData , private boost : : noncop <nl> * / <nl> void tryMakeSetForIndexFromSubquery ( const ASTPtr & subquery_or_table_name ) ; <nl> <nl> - bool isRemoteStorage ( ) const ; <nl> + const ASTSelectQuery * getAggregatingQuery ( ) const ; <nl> } ; <nl> <nl> } <nl> mmm a / dbms / src / Interpreters / InterpreterSelectQuery . cpp <nl> ppp b / dbms / src / Interpreters / InterpreterSelectQuery . cpp <nl> String generateFilterActions ( ExpressionActionsPtr & actions , const StoragePtr & <nl> <nl> / / / Using separate expression analyzer to prevent any possible alias injection <nl> auto syntax_result = SyntaxAnalyzer ( context ) . analyze ( query_ast , storage - > getColumns ( ) . getAllPhysical ( ) ) ; <nl> - ExpressionAnalyzer analyzer ( query_ast , syntax_result , context ) ; <nl> + SelectQueryExpressionAnalyzer analyzer ( query_ast , syntax_result , context ) ; <nl> ExpressionActionsChain new_chain ( context ) ; <nl> analyzer . appendSelect ( new_chain , false ) ; <nl> actions = new_chain . getLastActions ( ) ; <nl> InterpreterSelectQuery : : InterpreterSelectQuery ( <nl> <nl> syntax_analyzer_result = SyntaxAnalyzer ( context , options ) . analyze ( <nl> query_ptr , source_header . getNamesAndTypesList ( ) , required_result_column_names , storage , NamesAndTypesList ( ) ) ; <nl> - query_analyzer = std : : make_unique < ExpressionAnalyzer > ( <nl> + query_analyzer = std : : make_unique < SelectQueryExpressionAnalyzer > ( <nl> query_ptr , syntax_analyzer_result , context , <nl> NameSet ( required_result_column_names . begin ( ) , required_result_column_names . end ( ) ) , <nl> options . subquery_depth , ! options . only_analyze ) ; <nl> static UInt64 getLimitForSorting ( const ASTSelectQuery & query , const Context & c <nl> } <nl> <nl> <nl> - static SortingInfoPtr optimizeReadInOrder ( const MergeTreeData & merge_tree , const ASTSelectQuery & query , const Context & context ) <nl> + static SortingInfoPtr optimizeReadInOrder ( const MergeTreeData & merge_tree , const ASTSelectQuery & query , <nl> + const Context & context , const SyntaxAnalyzerResultPtr & global_syntax_result ) <nl> { <nl> if ( ! merge_tree . hasSortingKey ( ) ) <nl> return { } ; <nl> static SortingInfoPtr optimizeReadInOrder ( const MergeTreeData & merge_tree , cons <nl> const auto & sorting_key_columns = merge_tree . getSortingKeyColumns ( ) ; <nl> size_t prefix_size = std : : min ( order_descr . size ( ) , sorting_key_columns . size ( ) ) ; <nl> <nl> - auto order_by_expr = query . orderBy ( ) ; <nl> - SyntaxAnalyzerResultPtr syntax_result ; <nl> - try <nl> - { <nl> - syntax_result = SyntaxAnalyzer ( context ) . analyze ( order_by_expr , merge_tree . getColumns ( ) . getAllPhysical ( ) ) ; <nl> - } <nl> - catch ( const Exception & ) <nl> - { <nl> - return { } ; <nl> - } <nl> - <nl> for ( size_t i = 0 ; i < prefix_size ; + + i ) <nl> { <nl> - / / / Read in pk order in case of exact match with order key element <nl> + if ( global_syntax_result - > array_join_result_to_source . count ( order_descr [ i ] . column_name ) ) <nl> + break ; <nl> + <nl> + / / / Optimize in case of exact match with order key element <nl> / / / or in some simple cases when order key element is wrapped into monotonic function . <nl> int current_direction = order_descr [ i ] . direction ; <nl> if ( order_descr [ i ] . column_name = = sorting_key_columns [ i ] & & current_direction = = read_direction ) <nl> prefix_order_descr . push_back ( order_descr [ i ] ) ; <nl> else <nl> { <nl> - const auto & ast = query . orderBy ( ) - > children [ i ] ; <nl> - ExpressionActionsPtr actions ; <nl> - try <nl> - { <nl> - actions = ExpressionAnalyzer ( ast - > children . at ( 0 ) , syntax_result , context ) . getActions ( false ) ; <nl> - } <nl> - catch ( const Exception & ) <nl> - { <nl> - / / / Can ' t analyze order expression at this stage . <nl> - / / / May be some actions required for order will be executed later . <nl> - break ; <nl> - } <nl> + auto ast = query . orderBy ( ) - > children [ i ] - > children . at ( 0 ) ; <nl> + auto syntax_result = SyntaxAnalyzer ( context ) . analyze ( ast , global_syntax_result - > required_source_columns ) ; <nl> + auto actions = ExpressionAnalyzer ( ast , syntax_result , context ) . getActions ( true ) ; <nl> <nl> const auto & input_columns = actions - > getRequiredColumnsWithTypes ( ) ; <nl> if ( input_columns . size ( ) ! = 1 | | input_columns . front ( ) . name ! = sorting_key_columns [ i ] ) <nl> void InterpreterSelectQuery : : executeImpl ( TPipeline & pipeline , const BlockInputS <nl> } <nl> <nl> SortingInfoPtr sorting_info ; <nl> - if ( settings . optimize_read_in_order & & storage & & query . orderBy ( ) & & ! query . groupBy ( ) & & ! query . final ( ) ) <nl> + if ( settings . optimize_read_in_order & & storage & & query . orderBy ( ) & & ! query . groupBy ( ) & & ! query . final ( ) & & ! query . join ( ) ) <nl> { <nl> if ( const MergeTreeData * merge_tree_data = dynamic_cast < const MergeTreeData * > ( storage . get ( ) ) ) <nl> - sorting_info = optimizeReadInOrder ( * merge_tree_data , query , context ) ; <nl> + sorting_info = optimizeReadInOrder ( * merge_tree_data , query , context , syntax_analyzer_result ) ; <nl> } <nl> <nl> if ( dry_run ) <nl> void InterpreterSelectQuery : : executeOrder ( Pipeline & pipeline , SortingInfoPtr so <nl> * At this stage we merge per - thread streams into one . <nl> * / <nl> <nl> - if ( sorting_info - > prefix_order_descr . size ( ) < order_descr . size ( ) ) <nl> + bool need_finish_sorting = ( sorting_info - > prefix_order_descr . size ( ) < order_descr . size ( ) ) ; <nl> + if ( need_finish_sorting ) <nl> { <nl> pipeline . transform ( [ & ] ( auto & stream ) <nl> { <nl> - stream = std : : make_shared < FinishSortingBlockInputStream > ( <nl> - stream , sorting_info - > prefix_order_descr , <nl> - order_descr , settings . max_block_size , limit ) ; <nl> + stream = std : : make_shared < PartialSortingBlockInputStream > ( stream , order_descr , limit ) ; <nl> } ) ; <nl> } <nl> <nl> void InterpreterSelectQuery : : executeOrder ( Pipeline & pipeline , SortingInfoPtr so <nl> stream = std : : make_shared < AsynchronousBlockInputStream > ( stream ) ; <nl> } ) ; <nl> <nl> + UInt64 limit_for_merging = ( need_finish_sorting ? 0 : limit ) ; <nl> pipeline . firstStream ( ) = std : : make_shared < MergingSortedBlockInputStream > ( <nl> - pipeline . streams , order_descr , <nl> - settings . max_block_size , limit ) ; <nl> + pipeline . streams , sorting_info - > prefix_order_descr , <nl> + settings . max_block_size , limit_for_merging ) ; <nl> pipeline . streams . resize ( 1 ) ; <nl> } <nl> + <nl> + if ( need_finish_sorting ) <nl> + { <nl> + pipeline . firstStream ( ) = std : : make_shared < FinishSortingBlockInputStream > ( <nl> + pipeline . firstStream ( ) , sorting_info - > prefix_order_descr , <nl> + order_descr , settings . max_block_size , limit ) ; <nl> + } <nl> } <nl> else <nl> { <nl> mmm a / dbms / src / Interpreters / InterpreterSelectQuery . h <nl> ppp b / dbms / src / Interpreters / InterpreterSelectQuery . h <nl> class InterpreterSelectQuery : public IInterpreter <nl> Context context ; <nl> NamesAndTypesList source_columns ; <nl> SyntaxAnalyzerResultPtr syntax_analyzer_result ; <nl> - std : : unique_ptr < ExpressionAnalyzer > query_analyzer ; <nl> + std : : unique_ptr < SelectQueryExpressionAnalyzer > query_analyzer ; <nl> SelectQueryInfo query_info ; <nl> <nl> / / / How many streams we ask for storage to produce , and in how many threads we will do further processing . <nl> mmm a / dbms / src / Interpreters / InterpreterSystemQuery . cpp <nl> ppp b / dbms / src / Interpreters / InterpreterSystemQuery . cpp <nl> <nl> # include < Interpreters / QueryThreadLog . h > <nl> # include < Interpreters / TraceLog . h > <nl> # include < Interpreters / TextLog . h > <nl> + # include < Interpreters / MetricLog . h > <nl> # include < Databases / IDatabase . h > <nl> # include < Storages / StorageDistributed . h > <nl> # include < Storages / StorageReplicatedMergeTree . h > <nl> BlockIO InterpreterSystemQuery : : execute ( ) <nl> [ & ] ( ) { if ( auto part_log = context . getPartLog ( " " ) ) part_log - > flush ( ) ; } , <nl> [ & ] ( ) { if ( auto query_thread_log = context . getQueryThreadLog ( ) ) query_thread_log - > flush ( ) ; } , <nl> [ & ] ( ) { if ( auto trace_log = context . getTraceLog ( ) ) trace_log - > flush ( ) ; } , <nl> - [ & ] ( ) { if ( auto text_log = context . getTextLog ( ) ) text_log - > flush ( ) ; } <nl> + [ & ] ( ) { if ( auto text_log = context . getTextLog ( ) ) text_log - > flush ( ) ; } , <nl> + [ & ] ( ) { if ( auto metric_log = context . getMetricLog ( ) ) metric_log - > flush ( ) ; } <nl> ) ; <nl> break ; <nl> case Type : : STOP_LISTEN_QUERIES : <nl> new file mode 100644 <nl> index 00000000000 . . b17813ba401 <nl> mmm / dev / null <nl> ppp b / dbms / src / Interpreters / MetricLog . cpp <nl> <nl> + # include < Interpreters / MetricLog . h > <nl> + # include < DataTypes / DataTypesNumber . h > <nl> + # include < DataTypes / DataTypeString . h > <nl> + # include < DataTypes / DataTypeDate . h > <nl> + # include < DataTypes / DataTypeDateTime . h > <nl> + <nl> + namespace DB <nl> + { <nl> + <nl> + Block MetricLogElement : : createBlock ( ) <nl> + { <nl> + ColumnsWithTypeAndName columns_with_type_and_name ; <nl> + <nl> + columns_with_type_and_name . emplace_back ( std : : make_shared < DataTypeDate > ( ) , " event_date " ) ; <nl> + columns_with_type_and_name . emplace_back ( std : : make_shared < DataTypeDateTime > ( ) , " event_time " ) ; <nl> + columns_with_type_and_name . emplace_back ( std : : make_shared < DataTypeUInt64 > ( ) , " milliseconds " ) ; <nl> + <nl> + / / ProfileEvents <nl> + for ( size_t i = 0 , end = ProfileEvents : : end ( ) ; i < end ; + + i ) <nl> + { <nl> + std : : string name ; <nl> + name + = " ProfileEvent_ " ; <nl> + name + = ProfileEvents : : getName ( ProfileEvents : : Event ( i ) ) ; <nl> + columns_with_type_and_name . emplace_back ( std : : make_shared < DataTypeUInt64 > ( ) , std : : move ( name ) ) ; <nl> + } <nl> + <nl> + / / CurrentMetrics <nl> + for ( size_t i = 0 , end = CurrentMetrics : : end ( ) ; i < end ; + + i ) <nl> + { <nl> + std : : string name ; <nl> + name + = " CurrentMetric_ " ; <nl> + name + = CurrentMetrics : : getName ( ProfileEvents : : Event ( i ) ) ; <nl> + columns_with_type_and_name . emplace_back ( std : : make_shared < DataTypeInt64 > ( ) , std : : move ( name ) ) ; <nl> + } <nl> + <nl> + return Block ( columns_with_type_and_name ) ; <nl> + } <nl> + <nl> + void MetricLogElement : : appendToBlock ( Block & block ) const <nl> + { <nl> + MutableColumns columns = block . mutateColumns ( ) ; <nl> + <nl> + size_t iter = 0 ; <nl> + <nl> + columns [ iter + + ] - > insert ( DateLUT : : instance ( ) . toDayNum ( event_time ) ) ; <nl> + columns [ iter + + ] - > insert ( event_time ) ; <nl> + columns [ iter + + ] - > insert ( milliseconds ) ; <nl> + <nl> + / / ProfileEvents <nl> + for ( size_t i = 0 , end = ProfileEvents : : end ( ) ; i < end ; + + i ) <nl> + { <nl> + const UInt64 value = ProfileEvents : : global_counters [ i ] . load ( std : : memory_order_relaxed ) ; <nl> + columns [ iter + + ] - > insert ( value ) ; <nl> + } <nl> + <nl> + / / CurrentMetrics <nl> + for ( size_t i = 0 , end = CurrentMetrics : : end ( ) ; i < end ; + + i ) <nl> + { <nl> + const UInt64 value = CurrentMetrics : : values [ i ] ; <nl> + columns [ iter + + ] - > insert ( value ) ; <nl> + } <nl> + } <nl> + <nl> + void MetricLog : : startCollectMetric ( size_t collect_interval_milliseconds_ ) <nl> + { <nl> + collect_interval_milliseconds = collect_interval_milliseconds_ ; <nl> + is_shutdown_metric_thread = false ; <nl> + metric_flush_thread = ThreadFromGlobalPool ( [ this ] { metricThreadFunction ( ) ; } ) ; <nl> + } <nl> + <nl> + void MetricLog : : stopCollectMetric ( ) <nl> + { <nl> + bool old_val = false ; <nl> + if ( ! is_shutdown_metric_thread . compare_exchange_strong ( old_val , true ) ) <nl> + return ; <nl> + metric_flush_thread . join ( ) ; <nl> + } <nl> + <nl> + inline UInt64 time_in_milliseconds ( std : : chrono : : time_point < std : : chrono : : system_clock > timepoint ) <nl> + { <nl> + return std : : chrono : : duration_cast < std : : chrono : : milliseconds > ( timepoint . time_since_epoch ( ) ) . count ( ) ; <nl> + } <nl> + <nl> + inline UInt64 time_in_seconds ( std : : chrono : : time_point < std : : chrono : : system_clock > timepoint ) <nl> + { <nl> + return std : : chrono : : duration_cast < std : : chrono : : seconds > ( timepoint . time_since_epoch ( ) ) . count ( ) ; <nl> + } <nl> + <nl> + void MetricLog : : metricThreadFunction ( ) <nl> + { <nl> + auto desired_timepoint = std : : chrono : : system_clock : : now ( ) ; <nl> + while ( ! is_shutdown_metric_thread ) <nl> + { <nl> + try <nl> + { <nl> + MetricLogElement elem ; <nl> + const auto current_time = std : : chrono : : system_clock : : now ( ) ; <nl> + elem . event_time = std : : chrono : : system_clock : : to_time_t ( current_time ) ; <nl> + elem . milliseconds = time_in_milliseconds ( current_time ) - time_in_seconds ( current_time ) * 1000 ; <nl> + <nl> + this - > add ( elem ) ; <nl> + <nl> + / / / We will record current time into table but align it to regular time intervals to avoid time drift . <nl> + / / / We may drop some time points if the server is overloaded and recording took too much time . <nl> + while ( desired_timepoint < = current_time ) <nl> + desired_timepoint + = std : : chrono : : milliseconds ( collect_interval_milliseconds ) ; <nl> + <nl> + std : : this_thread : : sleep_until ( desired_timepoint ) ; <nl> + } <nl> + catch ( . . . ) <nl> + { <nl> + tryLogCurrentException ( __PRETTY_FUNCTION__ ) ; <nl> + } <nl> + } <nl> + } <nl> + <nl> + } <nl> new file mode 100644 <nl> index 00000000000 . . 032700600f1 <nl> mmm / dev / null <nl> ppp b / dbms / src / Interpreters / MetricLog . h <nl> <nl> + # pragma once <nl> + # include < Interpreters / SystemLog . h > <nl> + # include < Interpreters / AsynchronousMetrics . h > <nl> + <nl> + namespace DB <nl> + { <nl> + <nl> + using Poco : : Message ; <nl> + <nl> + struct MetricLogElement <nl> + { <nl> + time_t event_time { } ; <nl> + UInt64 milliseconds { } ; <nl> + <nl> + static std : : string name ( ) { return " MetricLog " ; } <nl> + static Block createBlock ( ) ; <nl> + void appendToBlock ( Block & block ) const ; <nl> + } ; <nl> + <nl> + class MetricLog : public SystemLog < MetricLogElement > <nl> + { <nl> + using SystemLog < MetricLogElement > : : SystemLog ; <nl> + <nl> + public : <nl> + / / / Launches a background thread to collect metrics with interval <nl> + void startCollectMetric ( size_t collect_interval_milliseconds_ ) ; <nl> + <nl> + / / / Stop background thread . Call before shutdown . <nl> + void stopCollectMetric ( ) ; <nl> + <nl> + private : <nl> + void metricThreadFunction ( ) ; <nl> + <nl> + ThreadFromGlobalPool metric_flush_thread ; <nl> + size_t collect_interval_milliseconds ; <nl> + std : : atomic < bool > is_shutdown_metric_thread { false } ; <nl> + } ; <nl> + <nl> + } <nl> mmm a / dbms / src / Interpreters / MutationsInterpreter . cpp <nl> ppp b / dbms / src / Interpreters / MutationsInterpreter . cpp <nl> void MutationsInterpreter : : prepare ( bool dry_run ) <nl> throw Exception ( " Empty mutation commands list " , ErrorCodes : : LOGICAL_ERROR ) ; <nl> <nl> const ColumnsDescription & columns_desc = storage - > getColumns ( ) ; <nl> + const IndicesDescription & indices_desc = storage - > getIndices ( ) ; <nl> NamesAndTypesList all_columns = columns_desc . getAllPhysical ( ) ; <nl> <nl> NameSet updated_columns ; <nl> void MutationsInterpreter : : prepare ( bool dry_run ) <nl> updated_columns . insert ( kv . first ) ; <nl> } <nl> <nl> - / / / We need to know which columns affect which MATERIALIZED columns to recalculate them if dependencies <nl> - / / / are updated . <nl> + / / / We need to know which columns affect which MATERIALIZED columns and data skipping indices <nl> + / / / to recalculate them if dependencies are updated . <nl> std : : unordered_map < String , Names > column_to_affected_materialized ; <nl> + NameSet affected_indices_columns ; <nl> if ( ! updated_columns . empty ( ) ) <nl> { <nl> for ( const auto & column : columns_desc ) <nl> void MutationsInterpreter : : prepare ( bool dry_run ) <nl> } <nl> } <nl> } <nl> + for ( const auto & index : indices_desc . indices ) <nl> + { <nl> + auto query = index - > expr - > clone ( ) ; <nl> + auto syntax_result = SyntaxAnalyzer ( context ) . analyze ( query , all_columns ) ; <nl> + const auto required_columns = syntax_result - > requiredSourceColumns ( ) ; <nl> + <nl> + for ( const String & dependency : required_columns ) <nl> + { <nl> + if ( updated_columns . count ( dependency ) ) <nl> + { <nl> + affected_indices_columns . insert ( std : : cbegin ( required_columns ) , std : : cend ( required_columns ) ) ; <nl> + break ; <nl> + } <nl> + } <nl> + } <nl> <nl> validateUpdateColumns ( storage , updated_columns , column_to_affected_materialized ) ; <nl> } <nl> <nl> / / / First , break a sequence of commands into stages . <nl> - stages . emplace_back ( context ) ; <nl> for ( const auto & command : commands ) <nl> { <nl> - if ( ! stages . back ( ) . column_to_updated . empty ( ) ) <nl> - stages . emplace_back ( context ) ; <nl> - <nl> if ( command . type = = MutationCommand : : DELETE ) <nl> { <nl> + if ( stages . empty ( ) | | ! stages . back ( ) . column_to_updated . empty ( ) ) <nl> + stages . emplace_back ( context ) ; <nl> + <nl> auto negated_predicate = makeASTFunction ( " not " , command . predicate - > clone ( ) ) ; <nl> stages . back ( ) . filters . push_back ( negated_predicate ) ; <nl> } <nl> else if ( command . type = = MutationCommand : : UPDATE ) <nl> { <nl> + if ( stages . empty ( ) | | ! stages . back ( ) . column_to_updated . empty ( ) ) <nl> + stages . emplace_back ( context ) ; <nl> if ( stages . size ( ) = = 1 ) / / / First stage only supports filtering and can ' t update columns . <nl> stages . emplace_back ( context ) ; <nl> <nl> void MutationsInterpreter : : prepare ( bool dry_run ) <nl> } <nl> } <nl> } <nl> + else if ( command . type = = MutationCommand : : MATERIALIZE_INDEX ) <nl> + { <nl> + auto it = std : : find_if ( <nl> + std : : cbegin ( indices_desc . indices ) , std : : end ( indices_desc . indices ) , <nl> + [ & ] ( const std : : shared_ptr < ASTIndexDeclaration > & index ) <nl> + { <nl> + return index - > name = = command . index_name ; <nl> + } ) ; <nl> + if ( it = = std : : cend ( indices_desc . indices ) ) <nl> + throw Exception ( " Unknown index : " + command . index_name , ErrorCodes : : BAD_ARGUMENTS ) ; <nl> + <nl> + auto query = ( * it ) - > expr - > clone ( ) ; <nl> + auto syntax_result = SyntaxAnalyzer ( context ) . analyze ( query , all_columns ) ; <nl> + const auto required_columns = syntax_result - > requiredSourceColumns ( ) ; <nl> + affected_indices_columns . insert ( std : : cbegin ( required_columns ) , std : : cend ( required_columns ) ) ; <nl> + } <nl> else <nl> throw Exception ( " Unknown mutation command type : " + DB : : toString < int > ( command . type ) , ErrorCodes : : UNKNOWN_MUTATION_COMMAND ) ; <nl> } <nl> <nl> + if ( ! affected_indices_columns . empty ( ) ) <nl> + { <nl> + if ( ! stages . empty ( ) ) <nl> + { <nl> + std : : vector < Stage > stages_copy ; <nl> + / / / Copy all filled stages except index calculation stage . <nl> + for ( const auto & stage : stages ) <nl> + { <nl> + stages_copy . emplace_back ( context ) ; <nl> + stages_copy . back ( ) . column_to_updated = stage . column_to_updated ; <nl> + stages_copy . back ( ) . output_columns = stage . output_columns ; <nl> + stages_copy . back ( ) . filters = stage . filters ; <nl> + } <nl> + auto first_stage_header = prepareInterpreterSelect ( stages_copy , / * dry_run = * / true ) - > getSampleBlock ( ) ; <nl> + auto in = std : : make_shared < NullBlockInputStream > ( first_stage_header ) ; <nl> + updated_header = std : : make_unique < Block > ( addStreamsForLaterStages ( stages_copy , in ) - > getHeader ( ) ) ; <nl> + } <nl> + / / / Special step to recalculate affected indices . <nl> + stages . emplace_back ( context ) ; <nl> + for ( const auto & column : affected_indices_columns ) <nl> + stages . back ( ) . column_to_updated . emplace ( <nl> + column , std : : make_shared < ASTIdentifier > ( column ) ) ; <nl> + } <nl> + <nl> + interpreter_select = prepareInterpreterSelect ( stages , dry_run ) ; <nl> + <nl> + is_prepared = true ; <nl> + } <nl> + <nl> + std : : unique_ptr < InterpreterSelectQuery > MutationsInterpreter : : prepareInterpreterSelect ( std : : vector < Stage > & prepared_stages , bool dry_run ) <nl> + { <nl> + NamesAndTypesList all_columns = storage - > getColumns ( ) . getAllPhysical ( ) ; <nl> + <nl> / / / Next , for each stage calculate columns changed by this and previous stages . <nl> - for ( size_t i = 0 ; i < stages . size ( ) ; + + i ) <nl> + for ( size_t i = 0 ; i < prepared_stages . size ( ) ; + + i ) <nl> { <nl> - if ( ! stages [ i ] . filters . empty ( ) ) <nl> + if ( ! prepared_stages [ i ] . filters . empty ( ) ) <nl> { <nl> for ( const auto & column : all_columns ) <nl> - stages [ i ] . output_columns . insert ( column . name ) ; <nl> + prepared_stages [ i ] . output_columns . insert ( column . name ) ; <nl> continue ; <nl> } <nl> <nl> if ( i > 0 ) <nl> - stages [ i ] . output_columns = stages [ i - 1 ] . output_columns ; <nl> + prepared_stages [ i ] . output_columns = prepared_stages [ i - 1 ] . output_columns ; <nl> <nl> - if ( stages [ i ] . output_columns . size ( ) < all_columns . size ( ) ) <nl> + if ( prepared_stages [ i ] . output_columns . size ( ) < all_columns . size ( ) ) <nl> { <nl> - for ( const auto & kv : stages [ i ] . column_to_updated ) <nl> - stages [ i ] . output_columns . insert ( kv . first ) ; <nl> + for ( const auto & kv : prepared_stages [ i ] . column_to_updated ) <nl> + prepared_stages [ i ] . output_columns . insert ( kv . first ) ; <nl> } <nl> } <nl> <nl> / / / Now , calculate ` expressions_chain ` for each stage except the first . <nl> / / / Do it backwards to propagate information about columns required as input for a stage to the previous stage . <nl> - for ( size_t i = stages . size ( ) - 1 ; i > 0 ; - - i ) <nl> + for ( size_t i = prepared_stages . size ( ) - 1 ; i > 0 ; - - i ) <nl> { <nl> - auto & stage = stages [ i ] ; <nl> + auto & stage = prepared_stages [ i ] ; <nl> <nl> ASTPtr all_asts = std : : make_shared < ASTExpressionList > ( ) ; <nl> <nl> void MutationsInterpreter : : prepare ( bool dry_run ) <nl> for ( const auto & kv : stage . column_to_updated ) <nl> { <nl> actions_chain . getLastActions ( ) - > add ( ExpressionAction : : copyColumn ( <nl> - kv . second - > getColumnName ( ) , kv . first , / * can_replace = * / true ) ) ; <nl> + kv . second - > getColumnName ( ) , kv . first , / * can_replace = * / true ) ) ; <nl> } <nl> } <nl> <nl> void MutationsInterpreter : : prepare ( bool dry_run ) <nl> <nl> / / / Propagate information about columns needed as input . <nl> for ( const auto & column : actions_chain . steps . front ( ) . actions - > getRequiredColumnsWithTypes ( ) ) <nl> - stages [ i - 1 ] . output_columns . insert ( column . name ) ; <nl> + prepared_stages [ i - 1 ] . output_columns . insert ( column . name ) ; <nl> } <nl> <nl> / / / Execute first stage as a SELECT statement . <nl> void MutationsInterpreter : : prepare ( bool dry_run ) <nl> auto select = std : : make_shared < ASTSelectQuery > ( ) ; <nl> <nl> select - > setExpression ( ASTSelectQuery : : Expression : : SELECT , std : : make_shared < ASTExpressionList > ( ) ) ; <nl> - for ( const auto & column_name : stages [ 0 ] . output_columns ) <nl> + for ( const auto & column_name : prepared_stages [ 0 ] . output_columns ) <nl> select - > select ( ) - > children . push_back ( std : : make_shared < ASTIdentifier > ( column_name ) ) ; <nl> <nl> - if ( ! stages [ 0 ] . filters . empty ( ) ) <nl> + if ( ! prepared_stages [ 0 ] . filters . empty ( ) ) <nl> { <nl> ASTPtr where_expression ; <nl> - if ( stages [ 0 ] . filters . size ( ) = = 1 ) <nl> - where_expression = stages [ 0 ] . filters [ 0 ] ; <nl> + if ( prepared_stages [ 0 ] . filters . size ( ) = = 1 ) <nl> + where_expression = prepared_stages [ 0 ] . filters [ 0 ] ; <nl> else <nl> { <nl> auto coalesced_predicates = std : : make_shared < ASTFunction > ( ) ; <nl> coalesced_predicates - > name = " and " ; <nl> coalesced_predicates - > arguments = std : : make_shared < ASTExpressionList > ( ) ; <nl> coalesced_predicates - > children . push_back ( coalesced_predicates - > arguments ) ; <nl> - coalesced_predicates - > arguments - > children = stages [ 0 ] . filters ; <nl> + coalesced_predicates - > arguments - > children = prepared_stages [ 0 ] . filters ; <nl> where_expression = std : : move ( coalesced_predicates ) ; <nl> } <nl> select - > setExpression ( ASTSelectQuery : : Expression : : WHERE , std : : move ( where_expression ) ) ; <nl> } <nl> <nl> - interpreter_select = std : : make_unique < InterpreterSelectQuery > ( select , context , storage , SelectQueryOptions ( ) . analyze ( dry_run ) . ignoreLimits ( ) ) ; <nl> - <nl> - is_prepared = true ; <nl> + return std : : make_unique < InterpreterSelectQuery > ( select , context , storage , SelectQueryOptions ( ) . analyze ( dry_run ) . ignoreLimits ( ) ) ; <nl> } <nl> <nl> - BlockInputStreamPtr MutationsInterpreter : : addStreamsForLaterStages ( BlockInputStreamPtr in ) const <nl> + BlockInputStreamPtr MutationsInterpreter : : addStreamsForLaterStages ( const std : : vector < Stage > & prepared_stages , BlockInputStreamPtr in ) const <nl> { <nl> - for ( size_t i_stage = 1 ; i_stage < stages . size ( ) ; + + i_stage ) <nl> + for ( size_t i_stage = 1 ; i_stage < prepared_stages . size ( ) ; + + i_stage ) <nl> { <nl> - const Stage & stage = stages [ i_stage ] ; <nl> + const Stage & stage = prepared_stages [ i_stage ] ; <nl> <nl> for ( size_t i = 0 ; i < stage . expressions_chain . steps . size ( ) ; + + i ) <nl> { <nl> void MutationsInterpreter : : validate ( ) <nl> prepare ( / * dry_run = * / true ) ; <nl> Block first_stage_header = interpreter_select - > getSampleBlock ( ) ; <nl> BlockInputStreamPtr in = std : : make_shared < NullBlockInputStream > ( first_stage_header ) ; <nl> - addStreamsForLaterStages ( in ) - > getHeader ( ) ; <nl> + addStreamsForLaterStages ( stages , in ) - > getHeader ( ) ; <nl> } <nl> <nl> BlockInputStreamPtr MutationsInterpreter : : execute ( ) <nl> { <nl> prepare ( / * dry_run = * / false ) ; <nl> BlockInputStreamPtr in = interpreter_select - > execute ( ) . in ; <nl> - return addStreamsForLaterStages ( in ) ; <nl> + auto result_stream = addStreamsForLaterStages ( stages , in ) ; <nl> + if ( ! updated_header ) <nl> + updated_header = std : : make_unique < Block > ( result_stream - > getHeader ( ) ) ; <nl> + return result_stream ; <nl> + } <nl> + <nl> + const Block & MutationsInterpreter : : getUpdatedHeader ( ) const <nl> + { <nl> + return * updated_header ; <nl> } <nl> <nl> } <nl> mmm a / dbms / src / Interpreters / MutationsInterpreter . h <nl> ppp b / dbms / src / Interpreters / MutationsInterpreter . h <nl> namespace DB <nl> <nl> class Context ; <nl> <nl> - / / / Create an input stream that will read data from storage and apply mutation commands ( UPDATEs , DELETEs ) <nl> + / / / Create an input stream that will read data from storage and apply mutation commands ( UPDATEs , DELETEs , MATERIALIZEs ) <nl> / / / to this data . <nl> class MutationsInterpreter <nl> { <nl> class MutationsInterpreter <nl> / / / Return false if the data isn ' t going to be changed by mutations . <nl> bool isStorageTouchedByMutations ( ) const ; <nl> <nl> - / / / The resulting stream will return blocks containing changed columns only . <nl> + / / / The resulting stream will return blocks containing only changed columns and columns , that we need to recalculate indices . <nl> BlockInputStreamPtr execute ( ) ; <nl> <nl> + / / / Only changed columns . <nl> + const Block & getUpdatedHeader ( ) const ; <nl> + <nl> private : <nl> void prepare ( bool dry_run ) ; <nl> <nl> - BlockInputStreamPtr addStreamsForLaterStages ( BlockInputStreamPtr in ) const ; <nl> + struct Stage ; <nl> + <nl> + std : : unique_ptr < InterpreterSelectQuery > prepareInterpreterSelect ( std : : vector < Stage > & prepared_stages , bool dry_run ) ; <nl> + BlockInputStreamPtr addStreamsForLaterStages ( const std : : vector < Stage > & prepared_stages , BlockInputStreamPtr in ) const ; <nl> <nl> private : <nl> StoragePtr storage ; <nl> class MutationsInterpreter <nl> } ; <nl> <nl> std : : unique_ptr < InterpreterSelectQuery > interpreter_select ; <nl> + std : : unique_ptr < Block > updated_header ; <nl> std : : vector < Stage > stages ; <nl> bool is_prepared = false ; / / / Has the sequence of stages been prepared . <nl> } ; <nl> mmm a / dbms / src / Interpreters / SystemLog . cpp <nl> ppp b / dbms / src / Interpreters / SystemLog . cpp <nl> <nl> # include < Interpreters / PartLog . h > <nl> # include < Interpreters / TextLog . h > <nl> # include < Interpreters / TraceLog . h > <nl> + # include < Interpreters / MetricLog . h > <nl> <nl> # include < Poco / Util / AbstractConfiguration . h > <nl> <nl> SystemLogs : : SystemLogs ( Context & global_context , const Poco : : Util : : AbstractConfi <nl> part_log = createSystemLog < PartLog > ( global_context , " system " , " part_log " , config , " part_log " ) ; <nl> trace_log = createSystemLog < TraceLog > ( global_context , " system " , " trace_log " , config , " trace_log " ) ; <nl> text_log = createSystemLog < TextLog > ( global_context , " system " , " text_log " , config , " text_log " ) ; <nl> + metric_log = createSystemLog < MetricLog > ( global_context , " system " , " metric_log " , config , " metric_log " ) ; <nl> + <nl> + if ( metric_log ) <nl> + { <nl> + size_t collect_interval_milliseconds = config . getUInt64 ( " metric_log . collect_interval_milliseconds " ) ; <nl> + metric_log - > startCollectMetric ( collect_interval_milliseconds ) ; <nl> + } <nl> <nl> part_log_database = config . getString ( " part_log . database " , " system " ) ; <nl> } <nl> void SystemLogs : : shutdown ( ) <nl> trace_log - > shutdown ( ) ; <nl> if ( text_log ) <nl> text_log - > shutdown ( ) ; <nl> + if ( metric_log ) <nl> + { <nl> + metric_log - > stopCollectMetric ( ) ; <nl> + metric_log - > shutdown ( ) ; <nl> + } <nl> } <nl> <nl> } <nl> mmm a / dbms / src / Interpreters / SystemLog . h <nl> ppp b / dbms / src / Interpreters / SystemLog . h <nl> class QueryThreadLog ; <nl> class PartLog ; <nl> class TextLog ; <nl> class TraceLog ; <nl> + class MetricLog ; <nl> <nl> / / / System logs should be destroyed in destructor of the last Context and before tables , <nl> / / / because SystemLog destruction makes insert query while flushing data into underlying tables <nl> struct SystemLogs <nl> std : : shared_ptr < PartLog > part_log ; / / / Used to log operations with parts <nl> std : : shared_ptr < TraceLog > trace_log ; / / / Used to log traces from query profiler <nl> std : : shared_ptr < TextLog > text_log ; / / / Used to log all text messages . <nl> + std : : shared_ptr < MetricLog > metric_log ; / / / Used to log all metrics . <nl> <nl> String part_log_database ; <nl> } ; <nl> mmm a / dbms / src / Interpreters / tests / expression . cpp <nl> ppp b / dbms / src / Interpreters / tests / expression . cpp <nl> int main ( int argc , char * * argv ) <nl> } ; <nl> <nl> auto syntax_result = SyntaxAnalyzer ( context , { } ) . analyze ( ast , columns ) ; <nl> - ExpressionAnalyzer analyzer ( ast , syntax_result , context ) ; <nl> + SelectQueryExpressionAnalyzer analyzer ( ast , syntax_result , context ) ; <nl> ExpressionActionsChain chain ( context ) ; <nl> analyzer . appendSelect ( chain , false ) ; <nl> analyzer . appendProjectResult ( chain ) ; <nl> mmm a / dbms / src / Parsers / ASTAlterQuery . cpp <nl> ppp b / dbms / src / Parsers / ASTAlterQuery . cpp <nl> void ASTAlterCommand : : formatImpl ( <nl> else if ( type = = ASTAlterCommand : : DROP_INDEX ) <nl> { <nl> settings . ostr < < ( settings . hilite ? hilite_keyword : " " ) < < indent_str <nl> - < < " DROP INDEX " < < ( if_exists ? " IF EXISTS " : " " ) < < ( settings . hilite ? hilite_none : " " ) ; <nl> + < < ( clear_index ? " CLEAR " : " DROP " ) < < " INDEX " < < ( if_exists ? " IF EXISTS " : " " ) < < ( settings . hilite ? hilite_none : " " ) ; <nl> index - > formatImpl ( settings , state , frame ) ; <nl> + if ( partition ) <nl> + { <nl> + settings . ostr < < ( settings . hilite ? hilite_keyword : " " ) < < indent_str < < " IN PARTITION " < < ( settings . hilite ? hilite_none : " " ) ; <nl> + partition - > formatImpl ( settings , state , frame ) ; <nl> + } <nl> + } <nl> + else if ( type = = ASTAlterCommand : : MATERIALIZE_INDEX ) <nl> + { <nl> + settings . ostr < < ( settings . hilite ? hilite_keyword : " " ) < < indent_str <nl> + < < " MATERIALIZE INDEX " < < ( settings . hilite ? hilite_none : " " ) ; <nl> + index - > formatImpl ( settings , state , frame ) ; <nl> + if ( partition ) <nl> + { <nl> + settings . ostr < < ( settings . hilite ? hilite_keyword : " " ) < < indent_str < < " IN PARTITION " < < ( settings . hilite ? hilite_none : " " ) ; <nl> + partition - > formatImpl ( settings , state , frame ) ; <nl> + } <nl> } <nl> else if ( type = = ASTAlterCommand : : DROP_PARTITION ) <nl> { <nl> mmm a / dbms / src / Parsers / ASTAlterQuery . h <nl> ppp b / dbms / src / Parsers / ASTAlterQuery . h <nl> class ASTAlterCommand : public IAST <nl> <nl> ADD_INDEX , <nl> DROP_INDEX , <nl> + MATERIALIZE_INDEX , <nl> <nl> DROP_PARTITION , <nl> ATTACH_PARTITION , <nl> class ASTAlterCommand : public IAST <nl> <nl> / * * The ADD INDEX query stores the name of the index following AFTER . <nl> * The DROP INDEX query stores the name for deletion . <nl> + * The MATERIALIZE INDEX query stores the name of the index to materialize . <nl> + * The CLEAR INDEX query stores the name of the index to clear . <nl> * / <nl> - ASTPtr index ; <nl> + ASTPtr index ; <nl> <nl> / * * Used in DROP PARTITION and ATTACH PARTITION FROM queries . <nl> * The value or ID of the partition is stored here . <nl> class ASTAlterCommand : public IAST <nl> <nl> bool clear_column = false ; / / / for CLEAR COLUMN ( do not drop column from metadata ) <nl> <nl> - bool if_not_exists = false ; / / / option for ADD_COLUMN <nl> + bool clear_index = false ; / / / for CLEAR INDEX ( do not drop index from metadata ) <nl> <nl> - bool if_exists = false ; / / / option for DROP_COLUMN , MODIFY_COLUMN , COMMENT_COLUMN <nl> + bool if_not_exists = false ; / / / option for ADD_COLUMN <nl> + <nl> + bool if_exists = false ; / / / option for DROP_COLUMN , MODIFY_COLUMN , COMMENT_COLUMN <nl> <nl> / * * For FETCH PARTITION - the path in ZK to the shard , from which to download the partition . <nl> * / <nl> mmm a / dbms / src / Parsers / ASTPartition . h <nl> ppp b / dbms / src / Parsers / ASTPartition . h <nl> class ASTPartition : public IAST <nl> { <nl> public : <nl> ASTPtr value ; <nl> - StringRef fields_str ; / / / The extent of comma - separated partition expression fields without parentheses . <nl> + String fields_str ; / / / The extent of comma - separated partition expression fields without parentheses . <nl> size_t fields_count = 0 ; <nl> <nl> String id ; <nl> mmm a / dbms / src / Parsers / ParserAlterQuery . cpp <nl> ppp b / dbms / src / Parsers / ParserAlterQuery . cpp <nl> bool ParserAlterCommand : : parseImpl ( Pos & pos , ASTPtr & node , Expected & expected <nl> <nl> ParserKeyword s_add_index ( " ADD INDEX " ) ; <nl> ParserKeyword s_drop_index ( " DROP INDEX " ) ; <nl> + ParserKeyword s_clear_index ( " CLEAR INDEX " ) ; <nl> + ParserKeyword s_materialize_index ( " MATERIALIZE INDEX " ) ; <nl> <nl> ParserKeyword s_attach_partition ( " ATTACH PARTITION " ) ; <nl> ParserKeyword s_detach_partition ( " DETACH PARTITION " ) ; <nl> bool ParserAlterCommand : : parseImpl ( Pos & pos , ASTPtr & node , Expected & expected <nl> command - > type = ASTAlterCommand : : DROP_COLUMN ; <nl> command - > detach = false ; <nl> } <nl> + else if ( s_clear_column . ignore ( pos , expected ) ) <nl> + { <nl> + if ( s_if_exists . ignore ( pos , expected ) ) <nl> + command - > if_exists = true ; <nl> + <nl> + if ( ! parser_name . parse ( pos , command - > column , expected ) ) <nl> + return false ; <nl> + <nl> + command - > type = ASTAlterCommand : : DROP_COLUMN ; <nl> + command - > clear_column = true ; <nl> + command - > detach = false ; <nl> + <nl> + if ( s_in_partition . ignore ( pos , expected ) ) <nl> + { <nl> + if ( ! parser_partition . parse ( pos , command - > partition , expected ) ) <nl> + return false ; <nl> + } <nl> + } <nl> else if ( s_add_index . ignore ( pos , expected ) ) <nl> { <nl> if ( s_if_not_exists . ignore ( pos , expected ) ) <nl> bool ParserAlterCommand : : parseImpl ( Pos & pos , ASTPtr & node , Expected & expected <nl> command - > type = ASTAlterCommand : : DROP_INDEX ; <nl> command - > detach = false ; <nl> } <nl> - else if ( s_clear_column . ignore ( pos , expected ) ) <nl> + else if ( s_clear_index . ignore ( pos , expected ) ) <nl> { <nl> if ( s_if_exists . ignore ( pos , expected ) ) <nl> command - > if_exists = true ; <nl> <nl> - if ( ! parser_name . parse ( pos , command - > column , expected ) ) <nl> + if ( ! parser_name . parse ( pos , command - > index , expected ) ) <nl> return false ; <nl> <nl> - command - > type = ASTAlterCommand : : DROP_COLUMN ; <nl> - command - > clear_column = true ; <nl> + command - > type = ASTAlterCommand : : DROP_INDEX ; <nl> + command - > clear_index = true ; <nl> + command - > detach = false ; <nl> + <nl> + if ( ! s_in_partition . ignore ( pos , expected ) ) <nl> + return false ; <nl> + if ( ! parser_partition . parse ( pos , command - > partition , expected ) ) <nl> + return false ; <nl> + } <nl> + else if ( s_materialize_index . ignore ( pos , expected ) ) <nl> + { <nl> + if ( s_if_exists . ignore ( pos , expected ) ) <nl> + command - > if_exists = true ; <nl> + <nl> + if ( ! parser_name . parse ( pos , command - > index , expected ) ) <nl> + return false ; <nl> + <nl> + command - > type = ASTAlterCommand : : MATERIALIZE_INDEX ; <nl> command - > detach = false ; <nl> <nl> if ( s_in_partition . ignore ( pos , expected ) ) <nl> mmm a / dbms / src / Parsers / ParserPartition . cpp <nl> ppp b / dbms / src / Parsers / ParserPartition . cpp <nl> bool ParserPartition : : parseImpl ( Pos & pos , ASTPtr & node , Expected & expected ) <nl> return false ; <nl> <nl> size_t fields_count ; <nl> - StringRef fields_str ; <nl> + String fields_str ; <nl> <nl> const auto * tuple_ast = value - > as < ASTFunction > ( ) ; <nl> if ( tuple_ast & & tuple_ast - > name = = " tuple " ) <nl> bool ParserPartition : : parseImpl ( Pos & pos , ASTPtr & node , Expected & expected ) <nl> if ( right_paren - > type ! = TokenType : : ClosingRoundBracket ) <nl> return false ; <nl> <nl> - fields_str = StringRef ( left_paren - > end , right_paren - > begin - left_paren - > end ) ; <nl> + fields_str = String ( left_paren - > end , right_paren - > begin - left_paren - > end ) ; <nl> } <nl> else <nl> { <nl> fields_count = 1 ; <nl> - fields_str = StringRef ( begin - > begin , pos - > begin - begin - > begin ) ; <nl> + fields_str = String ( begin - > begin , pos - > begin - begin - > begin ) ; <nl> } <nl> <nl> partition - > value = value ; <nl> partition - > children . push_back ( value ) ; <nl> - partition - > fields_str = fields_str ; <nl> + partition - > fields_str = std : : move ( fields_str ) ; <nl> partition - > fields_count = fields_count ; <nl> } <nl> <nl> mmm a / dbms / src / Storages / AlterCommands . cpp <nl> ppp b / dbms / src / Storages / AlterCommands . cpp <nl> std : : optional < AlterCommand > AlterCommand : : parse ( const ASTAlterCommand * command_ <nl> <nl> return command ; <nl> } <nl> - else if ( command_ast - > type = = ASTAlterCommand : : DROP_INDEX ) <nl> + else if ( command_ast - > type = = ASTAlterCommand : : DROP_INDEX & & ! command_ast - > partition ) <nl> { <nl> if ( command_ast - > clear_column ) <nl> - throw Exception ( " \ " ALTER TABLE table CLEAR COLUMN column \ " queries are not supported yet . Use \ " CLEAR COLUMN column IN PARTITION \ " . " , ErrorCodes : : NOT_IMPLEMENTED ) ; <nl> + throw Exception ( " \ " ALTER TABLE table CLEAR INDEX index \ " queries are not supported yet . Use \ " CLEAR INDEX index IN PARTITION \ " . " , ErrorCodes : : NOT_IMPLEMENTED ) ; <nl> <nl> AlterCommand command ; <nl> command . type = AlterCommand : : DROP_INDEX ; <nl> mmm a / dbms / src / Storages / IStorage . cpp <nl> ppp b / dbms / src / Storages / IStorage . cpp <nl> IStorage : : IStorage ( ColumnsDescription columns_ , ColumnsDescription virtuals_ ) : <nl> setColumns ( std : : move ( columns_ ) ) ; <nl> } <nl> <nl> + IStorage : : IStorage ( ColumnsDescription columns_ , ColumnsDescription virtuals_ , IndicesDescription indices_ ) : virtuals ( std : : move ( virtuals_ ) ) <nl> + { <nl> + setColumns ( std : : move ( columns_ ) ) ; <nl> + setIndices ( std : : move ( indices_ ) ) ; <nl> + } <nl> + <nl> const ColumnsDescription & IStorage : : getColumns ( ) const <nl> { <nl> return columns ; <nl> } <nl> <nl> + const ColumnsDescription & IStorage : : getVirtuals ( ) const <nl> + { <nl> + return virtuals ; <nl> + } <nl> + <nl> const IndicesDescription & IStorage : : getIndices ( ) const <nl> { <nl> return indices ; <nl> mmm a / dbms / src / Storages / IStorage . h <nl> ppp b / dbms / src / Storages / IStorage . h <nl> class IStorage : public std : : enable_shared_from_this < IStorage > <nl> IStorage ( ) = default ; <nl> explicit IStorage ( ColumnsDescription columns_ ) ; <nl> IStorage ( ColumnsDescription columns_ , ColumnsDescription virtuals_ ) ; <nl> + IStorage ( ColumnsDescription columns_ , ColumnsDescription virtuals_ , IndicesDescription indices_ ) ; <nl> <nl> virtual ~ IStorage ( ) = default ; <nl> IStorage ( const IStorage & ) = delete ; <nl> class IStorage : public std : : enable_shared_from_this < IStorage > <nl> <nl> public : / / / thread - unsafe part . lockStructure must be acquired <nl> const ColumnsDescription & getColumns ( ) const ; / / / returns combined set of columns <nl> + const ColumnsDescription & getVirtuals ( ) const ; <nl> const IndicesDescription & getIndices ( ) const ; <nl> <nl> / / / NOTE : these methods should include virtual columns , <nl> mmm a / dbms / src / Storages / IndicesDescription . cpp <nl> ppp b / dbms / src / Storages / IndicesDescription . cpp <nl> <nl> namespace DB <nl> { <nl> <nl> + bool IndicesDescription : : has ( const String & name ) const <nl> + { <nl> + return std : : cend ( indices ) ! = std : : find_if ( <nl> + std : : cbegin ( indices ) , std : : cend ( indices ) , <nl> + [ & name ] ( const auto & index ) <nl> + { <nl> + return index - > name = = name ; <nl> + } ) ; <nl> + } <nl> + <nl> String IndicesDescription : : toString ( ) const <nl> { <nl> if ( indices . empty ( ) ) <nl> mmm a / dbms / src / Storages / IndicesDescription . h <nl> ppp b / dbms / src / Storages / IndicesDescription . h <nl> struct IndicesDescription <nl> IndicesDescription ( ) = default ; <nl> <nl> bool empty ( ) const { return indices . empty ( ) ; } <nl> - String toString ( ) const ; <nl> + bool has ( const String & name ) const ; <nl> <nl> + String toString ( ) const ; <nl> static IndicesDescription parse ( const String & str ) ; <nl> } ; <nl> <nl> mmm a / dbms / src / Storages / MergeTree / IMergedBlockOutputStream . cpp <nl> ppp b / dbms / src / Storages / MergeTree / IMergedBlockOutputStream . cpp <nl> namespace ErrorCodes <nl> namespace <nl> { <nl> constexpr auto DATA_FILE_EXTENSION = " . bin " ; <nl> + constexpr auto INDEX_FILE_EXTENSION = " . idx " ; <nl> } <nl> <nl> <nl> IMergedBlockOutputStream : : IMergedBlockOutputStream ( <nl> MergeTreeData & storage_ , <nl> + const String & part_path_ , <nl> size_t min_compress_block_size_ , <nl> size_t max_compress_block_size_ , <nl> CompressionCodecPtr codec_ , <nl> size_t aio_threshold_ , <nl> bool blocks_are_granules_size_ , <nl> + const std : : vector < MergeTreeIndexPtr > & indices_to_recalc , <nl> const MergeTreeIndexGranularity & index_granularity_ ) <nl> : storage ( storage_ ) <nl> + , part_path ( part_path_ ) <nl> , min_compress_block_size ( min_compress_block_size_ ) <nl> , max_compress_block_size ( max_compress_block_size_ ) <nl> , aio_threshold ( aio_threshold_ ) <nl> IMergedBlockOutputStream : : IMergedBlockOutputStream ( <nl> , index_granularity ( index_granularity_ ) <nl> , compute_granularity ( index_granularity . empty ( ) ) <nl> , codec ( std : : move ( codec_ ) ) <nl> + , skip_indices ( indices_to_recalc ) <nl> , with_final_mark ( storage . settings . write_final_mark & & storage . canUseAdaptiveGranularity ( ) ) <nl> { <nl> if ( blocks_are_granules_size & & ! index_granularity . empty ( ) ) <nl> void IMergedBlockOutputStream : : writeFinalMark ( <nl> } , path ) ; <nl> } <nl> <nl> + void IMergedBlockOutputStream : : initSkipIndices ( ) <nl> + { <nl> + for ( const auto & index : skip_indices ) <nl> + { <nl> + String stream_name = index - > getFileName ( ) ; <nl> + skip_indices_streams . emplace_back ( <nl> + std : : make_unique < ColumnStream > ( <nl> + stream_name , <nl> + part_path + stream_name , INDEX_FILE_EXTENSION , <nl> + part_path + stream_name , marks_file_extension , <nl> + codec , max_compress_block_size , <nl> + 0 , aio_threshold ) ) ; <nl> + skip_indices_aggregators . push_back ( index - > createIndexAggregator ( ) ) ; <nl> + skip_index_filling . push_back ( 0 ) ; <nl> + } <nl> + } <nl> + <nl> + void IMergedBlockOutputStream : : calculateAndSerializeSkipIndices ( <nl> + const ColumnsWithTypeAndName & skip_indexes_columns , size_t rows ) <nl> + { <nl> + / / / Creating block for update <nl> + Block indices_update_block ( skip_indexes_columns ) ; <nl> + size_t skip_index_current_mark = 0 ; <nl> + <nl> + / / / Filling and writing skip indices like in IMergedBlockOutputStream : : writeColumn <nl> + for ( size_t i = 0 ; i < storage . skip_indices . size ( ) ; + + i ) <nl> + { <nl> + const auto index = storage . skip_indices [ i ] ; <nl> + auto & stream = * skip_indices_streams [ i ] ; <nl> + size_t prev_pos = 0 ; <nl> + skip_index_current_mark = skip_index_mark ; <nl> + while ( prev_pos < rows ) <nl> + { <nl> + UInt64 limit = 0 ; <nl> + if ( prev_pos = = 0 & & index_offset ! = 0 ) <nl> + { <nl> + limit = index_offset ; <nl> + } <nl> + else <nl> + { <nl> + limit = index_granularity . getMarkRows ( skip_index_current_mark ) ; <nl> + if ( skip_indices_aggregators [ i ] - > empty ( ) ) <nl> + { <nl> + skip_indices_aggregators [ i ] = index - > createIndexAggregator ( ) ; <nl> + skip_index_filling [ i ] = 0 ; <nl> + <nl> + if ( stream . compressed . offset ( ) > = min_compress_block_size ) <nl> + stream . compressed . next ( ) ; <nl> + <nl> + writeIntBinary ( stream . plain_hashing . count ( ) , stream . marks ) ; <nl> + writeIntBinary ( stream . compressed . offset ( ) , stream . marks ) ; <nl> + / / / Actually this numbers is redundant , but we have to store them <nl> + / / / to be compatible with normal . mrk2 file format <nl> + if ( storage . canUseAdaptiveGranularity ( ) ) <nl> + writeIntBinary ( 1UL , stream . marks ) ; <nl> + <nl> + + + skip_index_current_mark ; <nl> + } <nl> + } <nl> + <nl> + size_t pos = prev_pos ; <nl> + skip_indices_aggregators [ i ] - > update ( indices_update_block , & pos , limit ) ; <nl> + <nl> + if ( pos = = prev_pos + limit ) <nl> + { <nl> + + + skip_index_filling [ i ] ; <nl> + <nl> + / / / write index if it is filled <nl> + if ( skip_index_filling [ i ] = = index - > granularity ) <nl> + { <nl> + skip_indices_aggregators [ i ] - > getGranuleAndReset ( ) - > serializeBinary ( stream . compressed ) ; <nl> + skip_index_filling [ i ] = 0 ; <nl> + } <nl> + } <nl> + prev_pos = pos ; <nl> + } <nl> + } <nl> + skip_index_mark = skip_index_current_mark ; <nl> + } <nl> + <nl> + void IMergedBlockOutputStream : : finishSkipIndicesSerialization ( <nl> + MergeTreeData : : DataPart : : Checksums & checksums ) <nl> + { <nl> + for ( size_t i = 0 ; i < skip_indices . size ( ) ; + + i ) <nl> + { <nl> + auto & stream = * skip_indices_streams [ i ] ; <nl> + if ( ! skip_indices_aggregators [ i ] - > empty ( ) ) <nl> + skip_indices_aggregators [ i ] - > getGranuleAndReset ( ) - > serializeBinary ( stream . compressed ) ; <nl> + } <nl> + <nl> + for ( auto & stream : skip_indices_streams ) <nl> + { <nl> + stream - > finalize ( ) ; <nl> + stream - > addToChecksums ( checksums ) ; <nl> + } <nl> + <nl> + skip_indices_streams . clear ( ) ; <nl> + skip_indices_aggregators . clear ( ) ; <nl> + skip_index_filling . clear ( ) ; <nl> + } <nl> <nl> / / / Implementation of IMergedBlockOutputStream : : ColumnStream . <nl> <nl> mmm a / dbms / src / Storages / MergeTree / IMergedBlockOutputStream . h <nl> ppp b / dbms / src / Storages / MergeTree / IMergedBlockOutputStream . h <nl> class IMergedBlockOutputStream : public IBlockOutputStream <nl> public : <nl> IMergedBlockOutputStream ( <nl> MergeTreeData & storage_ , <nl> + const String & part_path_ , <nl> size_t min_compress_block_size_ , <nl> size_t max_compress_block_size_ , <nl> CompressionCodecPtr default_codec_ , <nl> size_t aio_threshold_ , <nl> bool blocks_are_granules_size_ , <nl> + const std : : vector < MergeTreeIndexPtr > & indices_to_recalc , <nl> const MergeTreeIndexGranularity & index_granularity_ ) ; <nl> <nl> using WrittenOffsetColumns = std : : set < std : : string > ; <nl> class IMergedBlockOutputStream : public IBlockOutputStream <nl> bool skip_offsets , <nl> DB : : IDataType : : SubstreamPath & path ) ; <nl> <nl> + void initSkipIndices ( ) ; <nl> + void calculateAndSerializeSkipIndices ( const ColumnsWithTypeAndName & skip_indexes_columns , size_t rows ) ; <nl> + void finishSkipIndicesSerialization ( MergeTreeData : : DataPart : : Checksums & checksums ) ; <nl> protected : <nl> - <nl> MergeTreeData & storage ; <nl> <nl> + SerializationStates serialization_states ; <nl> + String part_path ; <nl> + <nl> ColumnStreams column_streams ; <nl> <nl> / / / The offset to the first row of the block for which you want to write the index . <nl> class IMergedBlockOutputStream : public IBlockOutputStream <nl> size_t aio_threshold ; <nl> <nl> size_t current_mark = 0 ; <nl> + size_t skip_index_mark = 0 ; <nl> <nl> const std : : string marks_file_extension ; <nl> const bool blocks_are_granules_size ; <nl> class IMergedBlockOutputStream : public IBlockOutputStream <nl> const bool compute_granularity ; <nl> CompressionCodecPtr codec ; <nl> <nl> + std : : vector < MergeTreeIndexPtr > skip_indices ; <nl> + std : : vector < std : : unique_ptr < ColumnStream > > skip_indices_streams ; <nl> + MergeTreeIndexAggregators skip_indices_aggregators ; <nl> + std : : vector < size_t > skip_index_filling ; <nl> + <nl> const bool with_final_mark ; <nl> } ; <nl> <nl> mmm a / dbms / src / Storages / MergeTree / MergeTreeData . cpp <nl> ppp b / dbms / src / Storages / MergeTree / MergeTreeData . cpp <nl> void MergeTreeData : : alterDataPart ( <nl> true / * sync * / , <nl> compression_codec , <nl> true / * skip_offsets * / , <nl> + { } , <nl> unused_written_offsets , <nl> part - > index_granularity ) ; <nl> <nl> String MergeTreeData : : getPartitionIDFromQuery ( const ASTPtr & ast , const Context <nl> if ( fields_count ) <nl> { <nl> ReadBufferFromMemory left_paren_buf ( " ( " , 1 ) ; <nl> - ReadBufferFromMemory fields_buf ( partition_ast . fields_str . data , partition_ast . fields_str . size ) ; <nl> + ReadBufferFromMemory fields_buf ( partition_ast . fields_str . data ( ) , partition_ast . fields_str . size ( ) ) ; <nl> ReadBufferFromMemory right_paren_buf ( " ) " , 1 ) ; <nl> ConcatReadBuffer buf ( { & left_paren_buf , & fields_buf , & right_paren_buf } ) ; <nl> <nl> String MergeTreeData : : getPartitionIDFromQuery ( const ASTPtr & ast , const Context <nl> auto block = input_stream - > read ( ) ; <nl> if ( ! block | | ! block . rows ( ) ) <nl> throw Exception ( <nl> - " Could not parse partition value : ` " + partition_ast . fields_str . toString ( ) + " ` " , <nl> + " Could not parse partition value : ` " + partition_ast . fields_str + " ` " , <nl> ErrorCodes : : INVALID_PARTITION_VALUE ) ; <nl> <nl> for ( size_t i = 0 ; i < fields_count ; + + i ) <nl> mmm a / dbms / src / Storages / MergeTree / MergeTreeDataMergerMutator . cpp <nl> ppp b / dbms / src / Storages / MergeTree / MergeTreeDataMergerMutator . cpp <nl> MergeTreeData : : MutableDataPartPtr MergeTreeDataMergerMutator : : mergePartsToTempor <nl> false , <nl> compression_codec , <nl> false , <nl> + { } , <nl> written_offset_columns , <nl> to . getIndexGranularity ( ) <nl> ) ; <nl> MergeTreeData : : MutableDataPartPtr MergeTreeDataMergerMutator : : mutatePartToTempor <nl> " This is a bug . " , ErrorCodes : : LOGICAL_ERROR ) ; <nl> <nl> CurrentMetrics : : Increment num_mutations { CurrentMetrics : : PartMutation } ; <nl> - <nl> const auto & source_part = future_part . parts [ 0 ] ; <nl> auto storage_from_source_part = StorageFromMergeTreeDataPart : : create ( source_part ) ; <nl> <nl> MergeTreeData : : MutableDataPartPtr MergeTreeDataMergerMutator : : mutatePartToTempor <nl> context_for_reading . getSettingsRef ( ) . merge_tree_uniform_read_distribution = 0 ; <nl> context_for_reading . getSettingsRef ( ) . max_threads = 1 ; <nl> <nl> - MutationsInterpreter mutations_interpreter ( storage_from_source_part , commands , context_for_reading ) ; <nl> + std : : vector < MutationCommand > commands_for_part ; <nl> + std : : copy_if ( <nl> + std : : cbegin ( commands ) , std : : cend ( commands ) , <nl> + std : : back_inserter ( commands_for_part ) , <nl> + [ & ] ( const MutationCommand & command ) <nl> + { <nl> + return command . partition = = nullptr | | <nl> + future_part . parts [ 0 ] - > info . partition_id = = data . getPartitionIDFromQuery ( <nl> + command . partition , context_for_reading ) ; <nl> + } ) ; <nl> + <nl> + <nl> + MutationsInterpreter mutations_interpreter ( storage_from_source_part , commands_for_part , context_for_reading ) ; <nl> <nl> if ( ! mutations_interpreter . isStorageTouchedByMutations ( ) ) <nl> { <nl> MergeTreeData : : MutableDataPartPtr MergeTreeDataMergerMutator : : mutatePartToTempor <nl> Poco : : File ( new_part_tmp_path ) . createDirectories ( ) ; <nl> <nl> auto in = mutations_interpreter . execute ( ) ; <nl> + const auto & updated_header = mutations_interpreter . getUpdatedHeader ( ) ; <nl> + <nl> NamesAndTypesList all_columns = data . getColumns ( ) . getAllPhysical ( ) ; <nl> <nl> Block in_header = in - > getHeader ( ) ; <nl> MergeTreeData : : MutableDataPartPtr MergeTreeDataMergerMutator : : mutatePartToTempor <nl> MergeStageProgress stage_progress ( 1 . 0 ) ; <nl> in - > setProgressCallback ( MergeProgressCallback ( merge_entry , watch_prev_elapsed , stage_progress ) ) ; <nl> <nl> - if ( in_header . columns ( ) = = all_columns . size ( ) ) <nl> + if ( updated_header . columns ( ) = = all_columns . size ( ) ) <nl> { <nl> / / / All columns are modified , proceed to write a new part from scratch . <nl> if ( data . hasPrimaryKey ( ) | | data . hasSkipIndices ( ) ) <nl> MergeTreeData : : MutableDataPartPtr MergeTreeDataMergerMutator : : mutatePartToTempor <nl> / / / We will modify only some of the columns . Other columns and key values can be copied as - is . <nl> / / / TODO : check that we modify only non - key columns in this case . <nl> <nl> - / / / Checks if columns used in skipping indexes modified / <nl> + / / / Checks if columns used in skipping indexes modified . <nl> + std : : set < MergeTreeIndexPtr > indices_to_recalc ; <nl> + ASTPtr indices_recalc_expr_list = std : : make_shared < ASTExpressionList > ( ) ; <nl> for ( const auto & col : in_header . getNames ( ) ) <nl> { <nl> - for ( const auto & index : data . skip_indices ) <nl> + for ( size_t i = 0 ; i < data . skip_indices . size ( ) ; + + i ) <nl> { <nl> + const auto & index = data . skip_indices [ i ] ; <nl> const auto & index_cols = index - > expr - > getRequiredColumns ( ) ; <nl> auto it = find ( cbegin ( index_cols ) , cend ( index_cols ) , col ) ; <nl> - if ( it ! = cend ( index_cols ) ) <nl> - throw Exception ( " You can not modify columns used in index . Index name : ' " <nl> - + index - > name <nl> - + " ' bad column : ' " + * it + " ' " , ErrorCodes : : ILLEGAL_COLUMN ) ; <nl> + if ( it ! = cend ( index_cols ) & & indices_to_recalc . insert ( index ) . second ) <nl> + { <nl> + ASTPtr expr_list = MergeTreeData : : extractKeyExpressionList ( <nl> + storage_from_source_part - > getIndices ( ) . indices [ i ] - > expr - > clone ( ) ) ; <nl> + for ( const auto & expr : expr_list - > children ) <nl> + indices_recalc_expr_list - > children . push_back ( expr - > clone ( ) ) ; <nl> + } <nl> } <nl> } <nl> <nl> + if ( ! indices_to_recalc . empty ( ) ) <nl> + { <nl> + auto indices_recalc_syntax = SyntaxAnalyzer ( context , { } ) . analyze ( <nl> + indices_recalc_expr_list , in_header . getNamesAndTypesList ( ) ) ; <nl> + auto indices_recalc_expr = ExpressionAnalyzer ( <nl> + indices_recalc_expr_list , <nl> + indices_recalc_syntax , context ) . getActions ( false ) ; <nl> + in = std : : make_shared < MaterializingBlockInputStream > ( <nl> + std : : make_shared < ExpressionBlockInputStream > ( in , indices_recalc_expr ) ) ; <nl> + } <nl> + <nl> NameSet files_to_skip = { " checksums . txt " , " columns . txt " } ; <nl> auto mrk_extension = data . settings . index_granularity_bytes ? getAdaptiveMrkExtension ( ) : getNonAdaptiveMrkExtension ( ) ; <nl> - for ( const auto & entry : in_header ) <nl> + for ( const auto & entry : updated_header ) <nl> { <nl> IDataType : : StreamCallback callback = [ & ] ( const IDataType : : SubstreamPath & substream_path ) <nl> { <nl> MergeTreeData : : MutableDataPartPtr MergeTreeDataMergerMutator : : mutatePartToTempor <nl> IDataType : : SubstreamPath stream_path ; <nl> entry . type - > enumerateStreams ( callback , stream_path ) ; <nl> } <nl> + for ( const auto & index : indices_to_recalc ) <nl> + { <nl> + files_to_skip . insert ( index - > getFileName ( ) + " . idx " ) ; <nl> + files_to_skip . insert ( index - > getFileName ( ) + " . mrk " ) ; <nl> + } <nl> <nl> Poco : : DirectoryIterator dir_end ; <nl> for ( Poco : : DirectoryIterator dir_it ( source_part - > getFullPath ( ) ) ; dir_it ! = dir_end ; + + dir_it ) <nl> MergeTreeData : : MutableDataPartPtr MergeTreeDataMergerMutator : : mutatePartToTempor <nl> createHardLink ( dir_it . path ( ) . toString ( ) , destination . toString ( ) ) ; <nl> } <nl> <nl> - merge_entry - > columns_written = all_columns . size ( ) - in_header . columns ( ) ; <nl> + merge_entry - > columns_written = all_columns . size ( ) - updated_header . columns ( ) ; <nl> <nl> IMergedBlockOutputStream : : WrittenOffsetColumns unused_written_offsets ; <nl> MergedColumnOnlyOutputStream out ( <nl> data , <nl> - in_header , <nl> + updated_header , <nl> new_part_tmp_path , <nl> / * sync = * / false , <nl> compression_codec , <nl> / * skip_offsets = * / false , <nl> + std : : vector < MergeTreeIndexPtr > ( indices_to_recalc . begin ( ) , indices_to_recalc . end ( ) ) , <nl> unused_written_offsets , <nl> source_part - > index_granularity <nl> ) ; <nl> MergeTreeData : : MutableDataPartPtr MergeTreeDataMergerMutator : : mutatePartToTempor <nl> NameSet source_columns_name_set ( source_column_names . begin ( ) , source_column_names . end ( ) ) ; <nl> for ( auto it = new_data_part - > columns . begin ( ) ; it ! = new_data_part - > columns . end ( ) ; ) <nl> { <nl> - if ( source_columns_name_set . count ( it - > name ) | | in_header . has ( it - > name ) ) <nl> + if ( source_columns_name_set . count ( it - > name ) | | updated_header . has ( it - > name ) ) <nl> + + it ; <nl> else <nl> it = new_data_part - > columns . erase ( it ) ; <nl> mmm a / dbms / src / Storages / MergeTree / MergeTreeDataSelectExecutor . cpp <nl> ppp b / dbms / src / Storages / MergeTree / MergeTreeDataSelectExecutor . cpp <nl> BlockInputStreams MergeTreeDataSelectExecutor : : spreadMarkRangesAmongStreamsWithO <nl> size_t adaptive_parts = 0 ; <nl> std : : vector < size_t > sum_marks_in_parts ( parts . size ( ) ) ; <nl> <nl> - / / / In case of reverse order let ' s split ranges to avoid reading much data . <nl> - auto split_ranges = [ max_block_size ] ( const auto & ranges , size_t rows_granularity , size_t num_marks_in_part ) <nl> - { <nl> - / / / Constants is just a guess . <nl> - const size_t min_rows_in_range = max_block_size ; <nl> - const size_t max_num_ranges = 64 ; <nl> - <nl> - size_t min_marks_in_range = std : : max ( <nl> - ( min_rows_in_range + rows_granularity - 1 ) / rows_granularity , <nl> - ( num_marks_in_part + max_num_ranges - 1 ) / max_num_ranges ) ; <nl> - <nl> - MarkRanges new_ranges ; <nl> - for ( auto range : ranges ) <nl> - { <nl> - while ( range . begin + min_marks_in_range < range . end ) <nl> - { <nl> - new_ranges . emplace_back ( range . begin , range . begin + min_marks_in_range ) ; <nl> - range . begin + = min_marks_in_range ; <nl> - } <nl> - new_ranges . emplace_back ( range . begin , range . end ) ; <nl> - } <nl> - <nl> - return new_ranges ; <nl> - } ; <nl> - <nl> for ( size_t i = 0 ; i < parts . size ( ) ; + + i ) <nl> { <nl> sum_marks_in_parts [ i ] = parts [ i ] . getMarksCount ( ) ; <nl> sum_marks + = sum_marks_in_parts [ i ] ; <nl> <nl> - if ( sorting_info - > direction = = - 1 ) <nl> - parts [ i ] . ranges = split_ranges ( parts [ i ] . ranges , data . settings . index_granularity , sum_marks_in_parts [ i ] ) ; <nl> - <nl> / / / Let the ranges be listed from right to left so that the leftmost range can be dropped using ` pop_back ( ) ` . <nl> std : : reverse ( parts [ i ] . ranges . begin ( ) , parts [ i ] . ranges . end ( ) ) ; <nl> <nl> BlockInputStreams MergeTreeDataSelectExecutor : : spreadMarkRangesAmongStreamsWithO <nl> if ( sum_marks = = 0 ) <nl> return streams ; <nl> <nl> + / / / Let ' s split ranges to avoid reading much data . <nl> + auto split_ranges = [ rows_granularity = data . settings . index_granularity , max_block_size ] ( const auto & ranges , int direction ) <nl> + { <nl> + MarkRanges new_ranges ; <nl> + const size_t max_marks_in_range = ( max_block_size + rows_granularity - 1 ) / rows_granularity ; <nl> + size_t marks_in_range = 1 ; <nl> + <nl> + if ( direction = = 1 ) <nl> + { <nl> + / / / Split first few ranges to avoid reading much data . <nl> + bool splitted = false ; <nl> + for ( auto range : ranges ) <nl> + { <nl> + while ( ! splitted & & range . begin + marks_in_range < range . end ) <nl> + { <nl> + new_ranges . emplace_back ( range . begin , range . begin + marks_in_range ) ; <nl> + range . begin + = marks_in_range ; <nl> + marks_in_range * = 2 ; <nl> + <nl> + if ( marks_in_range > max_marks_in_range ) <nl> + splitted = true ; <nl> + } <nl> + new_ranges . emplace_back ( range . begin , range . end ) ; <nl> + } <nl> + } <nl> + else <nl> + { <nl> + / / / Split all ranges to avoid reading much data , because we have to <nl> + / / / store whole range in memory to reverse it . <nl> + for ( auto it = ranges . rbegin ( ) ; it ! = ranges . rend ( ) ; + + it ) <nl> + { <nl> + auto range = * it ; <nl> + while ( range . begin + marks_in_range < range . end ) <nl> + { <nl> + new_ranges . emplace_back ( range . end - marks_in_range , range . end ) ; <nl> + range . end - = marks_in_range ; <nl> + marks_in_range = std : : min ( marks_in_range * 2 , max_marks_in_range ) ; <nl> + } <nl> + new_ranges . emplace_back ( range . begin , range . end ) ; <nl> + } <nl> + std : : reverse ( new_ranges . begin ( ) , new_ranges . end ( ) ) ; <nl> + } <nl> + <nl> + return new_ranges ; <nl> + } ; <nl> + <nl> const size_t min_marks_per_stream = ( sum_marks - 1 ) / num_streams + 1 ; <nl> <nl> for ( size_t i = 0 ; i < num_streams & & ! parts . empty ( ) ; + + i ) <nl> BlockInputStreams MergeTreeDataSelectExecutor : : spreadMarkRangesAmongStreamsWithO <nl> parts . emplace_back ( part ) ; <nl> } <nl> <nl> + ranges_to_get_from_part = split_ranges ( ranges_to_get_from_part , sorting_info - > direction ) ; <nl> + <nl> BlockInputStreamPtr source_stream ; <nl> if ( sorting_info - > direction = = 1 ) <nl> { <nl> mmm a / dbms / src / Storages / MergeTree / MergeTreeSequentialBlockInputStream . cpp <nl> ppp b / dbms / src / Storages / MergeTree / MergeTreeSequentialBlockInputStream . cpp <nl> MergeTreeSequentialBlockInputStream : : MergeTreeSequentialBlockInputStream ( <nl> std : : stringstream message ; <nl> message < < " Reading " < < data_part - > getMarksCount ( ) < < " marks from part " < < data_part - > name <nl> < < " , total " < < data_part - > rows_count <nl> - < < " rows starting from the beginning of the part , columns : " ; <nl> - for ( size_t i = 0 , size = columns_to_read . size ( ) ; i < size ; + + i ) <nl> - message < < ( i = = 0 ? " " : " , " ) < < columns_to_read [ i ] ; <nl> + < < " rows starting from the beginning of the part " ; <nl> <nl> LOG_TRACE ( log , message . rdbuf ( ) ) ; <nl> } <nl> mmm a / dbms / src / Storages / MergeTree / MergedBlockOutputStream . cpp <nl> ppp b / dbms / src / Storages / MergeTree / MergedBlockOutputStream . cpp <nl> namespace ErrorCodes <nl> extern const int BAD_ARGUMENTS ; <nl> } <nl> <nl> - namespace <nl> - { <nl> - constexpr auto INDEX_FILE_EXTENSION = " . idx " ; <nl> - } <nl> - <nl> <nl> MergedBlockOutputStream : : MergedBlockOutputStream ( <nl> MergeTreeData & storage_ , <nl> - String part_path_ , <nl> + const String & part_path_ , <nl> const NamesAndTypesList & columns_list_ , <nl> CompressionCodecPtr default_codec_ , <nl> bool blocks_are_granules_size_ ) <nl> : IMergedBlockOutputStream ( <nl> - storage_ , storage_ . global_context . getSettings ( ) . min_compress_block_size , <nl> + storage_ , part_path_ , storage_ . global_context . getSettings ( ) . min_compress_block_size , <nl> storage_ . global_context . getSettings ( ) . max_compress_block_size , default_codec_ , <nl> storage_ . global_context . getSettings ( ) . min_bytes_to_use_direct_io , <nl> blocks_are_granules_size_ , <nl> - { } ) , <nl> - columns_list ( columns_list_ ) , part_path ( part_path_ ) <nl> + std : : vector < MergeTreeIndexPtr > ( std : : begin ( storage_ . skip_indices ) , std : : end ( storage_ . skip_indices ) ) , <nl> + { } ) <nl> + , columns_list ( columns_list_ ) <nl> { <nl> init ( ) ; <nl> for ( const auto & it : columns_list ) <nl> MergedBlockOutputStream : : MergedBlockOutputStream ( <nl> <nl> MergedBlockOutputStream : : MergedBlockOutputStream ( <nl> MergeTreeData & storage_ , <nl> - String part_path_ , <nl> + const String & part_path_ , <nl> const NamesAndTypesList & columns_list_ , <nl> CompressionCodecPtr default_codec_ , <nl> const MergeTreeData : : DataPart : : ColumnToSize & merged_column_to_size_ , <nl> size_t aio_threshold_ , <nl> bool blocks_are_granules_size_ ) <nl> : IMergedBlockOutputStream ( <nl> - storage_ , storage_ . global_context . getSettings ( ) . min_compress_block_size , <nl> + storage_ , part_path_ , storage_ . global_context . getSettings ( ) . min_compress_block_size , <nl> storage_ . global_context . getSettings ( ) . max_compress_block_size , default_codec_ , <nl> - aio_threshold_ , blocks_are_granules_size_ , { } ) , <nl> - columns_list ( columns_list_ ) , part_path ( part_path_ ) <nl> + aio_threshold_ , blocks_are_granules_size_ , <nl> + std : : vector < MergeTreeIndexPtr > ( std : : begin ( storage_ . skip_indices ) , std : : end ( storage_ . skip_indices ) ) , { } ) <nl> + , columns_list ( columns_list_ ) <nl> { <nl> init ( ) ; <nl> <nl> void MergedBlockOutputStream : : writeSuffixAndFinalizePart ( <nl> const NamesAndTypesList * total_column_list , <nl> MergeTreeData : : DataPart : : Checksums * additional_column_checksums ) <nl> { <nl> - <nl> / / / Finish columns serialization . <nl> { <nl> auto & settings = storage . global_context . getSettingsRef ( ) ; <nl> void MergedBlockOutputStream : : writeSuffixAndFinalizePart ( <nl> if ( with_final_mark & & rows_count ! = 0 ) <nl> index_granularity . appendMark ( 0 ) ; / / / last mark <nl> <nl> - / / / Finish skip index serialization <nl> - for ( size_t i = 0 ; i < storage . skip_indices . size ( ) ; + + i ) <nl> - { <nl> - auto & stream = * skip_indices_streams [ i ] ; <nl> - if ( ! skip_indices_aggregators [ i ] - > empty ( ) ) <nl> - skip_indices_aggregators [ i ] - > getGranuleAndReset ( ) - > serializeBinary ( stream . compressed ) ; <nl> - } <nl> - <nl> - <nl> if ( ! total_column_list ) <nl> total_column_list = & columns_list ; <nl> <nl> void MergedBlockOutputStream : : writeSuffixAndFinalizePart ( <nl> index_stream = nullptr ; <nl> } <nl> <nl> - for ( auto & stream : skip_indices_streams ) <nl> - { <nl> - stream - > finalize ( ) ; <nl> - stream - > addToChecksums ( checksums ) ; <nl> - } <nl> - <nl> - skip_indices_streams . clear ( ) ; <nl> - skip_indices_aggregators . clear ( ) ; <nl> - skip_index_filling . clear ( ) ; <nl> - <nl> for ( ColumnStreams : : iterator it = column_streams . begin ( ) ; it ! = column_streams . end ( ) ; + + it ) <nl> { <nl> it - > second - > finalize ( ) ; <nl> it - > second - > addToChecksums ( checksums ) ; <nl> } <nl> <nl> + finishSkipIndicesSerialization ( checksums ) ; <nl> + <nl> column_streams . clear ( ) ; <nl> <nl> if ( storage . format_version > = MERGE_TREE_DATA_MIN_FORMAT_VERSION_WITH_CUSTOM_PARTITIONING ) <nl> void MergedBlockOutputStream : : init ( ) <nl> index_stream = std : : make_unique < HashingWriteBuffer > ( * index_file_stream ) ; <nl> } <nl> <nl> - for ( const auto & index : storage . skip_indices ) <nl> - { <nl> - String stream_name = index - > getFileName ( ) ; <nl> - skip_indices_streams . emplace_back ( <nl> - std : : make_unique < ColumnStream > ( <nl> - stream_name , <nl> - part_path + stream_name , INDEX_FILE_EXTENSION , <nl> - part_path + stream_name , marks_file_extension , <nl> - codec , max_compress_block_size , <nl> - 0 , aio_threshold ) ) ; <nl> - skip_indices_aggregators . push_back ( index - > createIndexAggregator ( ) ) ; <nl> - skip_index_filling . push_back ( 0 ) ; <nl> - } <nl> + initSkipIndices ( ) ; <nl> } <nl> <nl> <nl> void MergedBlockOutputStream : : writeImpl ( const Block & block , const IColumn : : Perm <nl> } <nl> <nl> rows_count + = rows ; <nl> - { <nl> - / / / Creating block for update <nl> - Block indices_update_block ( skip_indexes_columns ) ; <nl> - size_t skip_index_current_mark = 0 ; <nl> <nl> - / / / Filling and writing skip indices like in IMergedBlockOutputStream : : writeColumn <nl> - for ( size_t i = 0 ; i < storage . skip_indices . size ( ) ; + + i ) <nl> - { <nl> - const auto index = storage . skip_indices [ i ] ; <nl> - auto & stream = * skip_indices_streams [ i ] ; <nl> - size_t prev_pos = 0 ; <nl> - skip_index_current_mark = skip_index_mark ; <nl> - while ( prev_pos < rows ) <nl> - { <nl> - UInt64 limit = 0 ; <nl> - if ( prev_pos = = 0 & & index_offset ! = 0 ) <nl> - { <nl> - limit = index_offset ; <nl> - } <nl> - else <nl> - { <nl> - limit = index_granularity . getMarkRows ( skip_index_current_mark ) ; <nl> - if ( skip_indices_aggregators [ i ] - > empty ( ) ) <nl> - { <nl> - skip_indices_aggregators [ i ] = index - > createIndexAggregator ( ) ; <nl> - skip_index_filling [ i ] = 0 ; <nl> - <nl> - if ( stream . compressed . offset ( ) > = min_compress_block_size ) <nl> - stream . compressed . next ( ) ; <nl> - <nl> - writeIntBinary ( stream . plain_hashing . count ( ) , stream . marks ) ; <nl> - writeIntBinary ( stream . compressed . offset ( ) , stream . marks ) ; <nl> - / / / Actually this numbers is redundant , but we have to store them <nl> - / / / to be compatible with normal . mrk2 file format <nl> - if ( storage . canUseAdaptiveGranularity ( ) ) <nl> - writeIntBinary ( 1UL , stream . marks ) ; <nl> - <nl> - + + skip_index_current_mark ; <nl> - } <nl> - } <nl> - <nl> - size_t pos = prev_pos ; <nl> - skip_indices_aggregators [ i ] - > update ( indices_update_block , & pos , limit ) ; <nl> - <nl> - if ( pos = = prev_pos + limit ) <nl> - { <nl> - + + skip_index_filling [ i ] ; <nl> - <nl> - / / / write index if it is filled <nl> - if ( skip_index_filling [ i ] = = index - > granularity ) <nl> - { <nl> - skip_indices_aggregators [ i ] - > getGranuleAndReset ( ) - > serializeBinary ( stream . compressed ) ; <nl> - skip_index_filling [ i ] = 0 ; <nl> - } <nl> - } <nl> - prev_pos = pos ; <nl> - } <nl> - } <nl> - skip_index_mark = skip_index_current_mark ; <nl> - } <nl> + calculateAndSerializeSkipIndices ( skip_indexes_columns , rows ) ; <nl> <nl> { <nl> / * * While filling index ( index_columns ) , disable memory tracker . <nl> mmm a / dbms / src / Storages / MergeTree / MergedBlockOutputStream . h <nl> ppp b / dbms / src / Storages / MergeTree / MergedBlockOutputStream . h <nl> class MergedBlockOutputStream final : public IMergedBlockOutputStream <nl> public : <nl> MergedBlockOutputStream ( <nl> MergeTreeData & storage_ , <nl> - String part_path_ , <nl> + const String & part_path_ , <nl> const NamesAndTypesList & columns_list_ , <nl> CompressionCodecPtr default_codec_ , <nl> bool blocks_are_granules_size_ = false ) ; <nl> <nl> MergedBlockOutputStream ( <nl> MergeTreeData & storage_ , <nl> - String part_path_ , <nl> + const String & part_path_ , <nl> const NamesAndTypesList & columns_list_ , <nl> CompressionCodecPtr default_codec_ , <nl> const MergeTreeData : : DataPart : : ColumnToSize & merged_column_to_size_ , <nl> class MergedBlockOutputStream final : public IMergedBlockOutputStream <nl> <nl> private : <nl> NamesAndTypesList columns_list ; <nl> - SerializationStates serialization_states ; <nl> - String part_path ; <nl> <nl> size_t rows_count = 0 ; <nl> - size_t skip_index_mark = 0 ; <nl> <nl> std : : unique_ptr < WriteBufferFromFile > index_file_stream ; <nl> std : : unique_ptr < HashingWriteBuffer > index_stream ; <nl> class MergedBlockOutputStream final : public IMergedBlockOutputStream <nl> / / / Index columns values from the last row from the last block <nl> / / / It ' s written to index file in the ` writeSuffixAndFinalizePart ` method <nl> ColumnsWithTypeAndName last_index_row ; <nl> - <nl> - std : : vector < std : : unique_ptr < ColumnStream > > skip_indices_streams ; <nl> - MergeTreeIndexAggregators skip_indices_aggregators ; <nl> - std : : vector < size_t > skip_index_filling ; <nl> } ; <nl> <nl> } <nl> mmm a / dbms / src / Storages / MergeTree / MergedColumnOnlyOutputStream . cpp <nl> ppp b / dbms / src / Storages / MergeTree / MergedColumnOnlyOutputStream . cpp <nl> namespace DB <nl> { <nl> <nl> MergedColumnOnlyOutputStream : : MergedColumnOnlyOutputStream ( <nl> - MergeTreeData & storage_ , const Block & header_ , String part_path_ , bool sync_ , <nl> + MergeTreeData & storage_ , const Block & header_ , const String & part_path_ , bool sync_ , <nl> CompressionCodecPtr default_codec_ , bool skip_offsets_ , <nl> + const std : : vector < MergeTreeIndexPtr > & indices_to_recalc_ , <nl> WrittenOffsetColumns & already_written_offset_columns_ , <nl> const MergeTreeIndexGranularity & index_granularity_ ) <nl> : IMergedBlockOutputStream ( <nl> - storage_ , storage_ . global_context . getSettings ( ) . min_compress_block_size , <nl> + storage_ , part_path_ , storage_ . global_context . getSettings ( ) . min_compress_block_size , <nl> storage_ . global_context . getSettings ( ) . max_compress_block_size , default_codec_ , <nl> storage_ . global_context . getSettings ( ) . min_bytes_to_use_direct_io , <nl> false , <nl> + indices_to_recalc_ , <nl> index_granularity_ ) , <nl> - header ( header_ ) , part_path ( part_path_ ) , sync ( sync_ ) , skip_offsets ( skip_offsets_ ) , <nl> + header ( header_ ) , sync ( sync_ ) , skip_offsets ( skip_offsets_ ) , <nl> already_written_offset_columns ( already_written_offset_columns_ ) <nl> { <nl> } <nl> void MergedColumnOnlyOutputStream : : write ( const Block & block ) <nl> { <nl> column_streams . clear ( ) ; <nl> serialization_states . clear ( ) ; <nl> - serialization_states . reserve ( block . columns ( ) ) ; <nl> + serialization_states . reserve ( header . columns ( ) ) ; <nl> WrittenOffsetColumns tmp_offset_columns ; <nl> IDataType : : SerializeBinaryBulkSettings settings ; <nl> <nl> - for ( size_t i = 0 ; i < block . columns ( ) ; + + i ) <nl> + for ( const auto & column_name : header . getNames ( ) ) <nl> { <nl> - const auto & col = block . safeGetByPosition ( i ) ; <nl> + const auto & col = block . getByName ( column_name ) ; <nl> <nl> const auto columns = storage . getColumns ( ) ; <nl> addStreams ( part_path , col . name , * col . type , columns . getCodecOrDefault ( col . name , codec ) , 0 , skip_offsets ) ; <nl> void MergedColumnOnlyOutputStream : : write ( const Block & block ) <nl> col . type - > serializeBinaryBulkStatePrefix ( settings , serialization_states . back ( ) ) ; <nl> } <nl> <nl> + initSkipIndices ( ) ; <nl> + <nl> initialized = true ; <nl> } <nl> <nl> + std : : set < String > skip_indexes_column_names_set ; <nl> + for ( const auto & index : skip_indices ) <nl> + std : : copy ( index - > columns . cbegin ( ) , index - > columns . cend ( ) , <nl> + std : : inserter ( skip_indexes_column_names_set , skip_indexes_column_names_set . end ( ) ) ) ; <nl> + Names skip_indexes_column_names ( skip_indexes_column_names_set . begin ( ) , skip_indexes_column_names_set . end ( ) ) ; <nl> + <nl> + std : : vector < ColumnWithTypeAndName > skip_indexes_columns ( skip_indexes_column_names . size ( ) ) ; <nl> + std : : map < String , size_t > skip_indexes_column_name_to_position ; <nl> + for ( size_t i = 0 , size = skip_indexes_column_names . size ( ) ; i < size ; + + i ) <nl> + { <nl> + const auto & name = skip_indexes_column_names [ i ] ; <nl> + skip_indexes_column_name_to_position . emplace ( name , i ) ; <nl> + skip_indexes_columns [ i ] = block . getByName ( name ) ; <nl> + } <nl> + <nl> size_t rows = block . rows ( ) ; <nl> if ( ! rows ) <nl> return ; <nl> <nl> + calculateAndSerializeSkipIndices ( skip_indexes_columns , rows ) ; <nl> + <nl> size_t new_index_offset = 0 ; <nl> size_t new_current_mark = 0 ; <nl> WrittenOffsetColumns offset_columns = already_written_offset_columns ; <nl> - for ( size_t i = 0 ; i < block . columns ( ) ; + + i ) <nl> + for ( size_t i = 0 ; i < header . columns ( ) ; + + i ) <nl> { <nl> - const ColumnWithTypeAndName & column = block . safeGetByPosition ( i ) ; <nl> + const ColumnWithTypeAndName & column = block . getByName ( header . getByPosition ( i ) . name ) ; <nl> std : : tie ( new_current_mark , new_index_offset ) = writeColumn ( column . name , * column . type , * column . column , offset_columns , skip_offsets , serialization_states [ i ] , current_mark ) ; <nl> } <nl> <nl> MergeTreeData : : DataPart : : Checksums MergedColumnOnlyOutputStream : : writeSuffixAndG <nl> column_stream . second - > addToChecksums ( checksums ) ; <nl> } <nl> <nl> + finishSkipIndicesSerialization ( checksums ) ; <nl> + <nl> column_streams . clear ( ) ; <nl> serialization_states . clear ( ) ; <nl> initialized = false ; <nl> mmm a / dbms / src / Storages / MergeTree / MergedColumnOnlyOutputStream . h <nl> ppp b / dbms / src / Storages / MergeTree / MergedColumnOnlyOutputStream . h <nl> class MergedColumnOnlyOutputStream final : public IMergedBlockOutputStream <nl> / / / Pass empty ' already_written_offset_columns ' first time then and pass the same object to subsequent instances of MergedColumnOnlyOutputStream <nl> / / / if you want to serialize elements of Nested data structure in different instances of MergedColumnOnlyOutputStream . <nl> MergedColumnOnlyOutputStream ( <nl> - MergeTreeData & storage_ , const Block & header_ , String part_path_ , bool sync_ , <nl> + MergeTreeData & storage_ , const Block & header_ , const String & part_path_ , bool sync_ , <nl> CompressionCodecPtr default_codec_ , bool skip_offsets_ , <nl> + const std : : vector < MergeTreeIndexPtr > & indices_to_recalc_ , <nl> WrittenOffsetColumns & already_written_offset_columns_ , <nl> const MergeTreeIndexGranularity & index_granularity_ ) ; <nl> <nl> class MergedColumnOnlyOutputStream final : public IMergedBlockOutputStream <nl> <nl> private : <nl> Block header ; <nl> - SerializationStates serialization_states ; <nl> - String part_path ; <nl> <nl> bool initialized = false ; <nl> bool sync ; <nl> mmm a / dbms / src / Storages / MergeTree / ReplicatedMergeTreeLogEntry . cpp <nl> ppp b / dbms / src / Storages / MergeTree / ReplicatedMergeTreeLogEntry . cpp <nl> void ReplicatedMergeTreeLogEntryData : : writeText ( WriteBuffer & out ) const <nl> < < new_part_name ; <nl> break ; <nl> <nl> + case CLEAR_INDEX : <nl> + out < < " clear_index \ n " <nl> + < < escape < < index_name <nl> + < < " \ nfrom \ n " <nl> + < < new_part_name ; <nl> + break ; <nl> + <nl> case REPLACE_RANGE : <nl> out < < typeToString ( REPLACE_RANGE ) < < " \ n " ; <nl> replace_range_entry - > writeText ( out ) ; <nl> void ReplicatedMergeTreeLogEntryData : : readText ( ReadBuffer & in ) <nl> type = CLEAR_COLUMN ; <nl> in > > escape > > column_name > > " \ nfrom \ n " > > new_part_name ; <nl> } <nl> + else if ( type_str = = " clear_index " ) <nl> + { <nl> + type = CLEAR_INDEX ; <nl> + in > > escape > > index_name > > " \ nfrom \ n " > > new_part_name ; <nl> + } <nl> else if ( type_str = = typeToString ( REPLACE_RANGE ) ) <nl> { <nl> type = REPLACE_RANGE ; <nl> mmm a / dbms / src / Storages / MergeTree / ReplicatedMergeTreeLogEntry . h <nl> ppp b / dbms / src / Storages / MergeTree / ReplicatedMergeTreeLogEntry . h <nl> struct ReplicatedMergeTreeLogEntryData <nl> MERGE_PARTS , / / / Merge the parts . <nl> DROP_RANGE , / / / Delete the parts in the specified partition in the specified number range . <nl> CLEAR_COLUMN , / / / Drop specific column from specified partition . <nl> + CLEAR_INDEX , / / / Drop specific index from specified partition . <nl> REPLACE_RANGE , / / / Drop certain range of partitions and replace them by new ones <nl> MUTATE_PART , / / / Apply one or several mutations to the part . <nl> } ; <nl> struct ReplicatedMergeTreeLogEntryData <nl> case ReplicatedMergeTreeLogEntryData : : MERGE_PARTS : return " MERGE_PARTS " ; <nl> case ReplicatedMergeTreeLogEntryData : : DROP_RANGE : return " DROP_RANGE " ; <nl> case ReplicatedMergeTreeLogEntryData : : CLEAR_COLUMN : return " CLEAR_COLUMN " ; <nl> + case ReplicatedMergeTreeLogEntryData : : CLEAR_INDEX : return " CLEAR_INDEX " ; <nl> case ReplicatedMergeTreeLogEntryData : : REPLACE_RANGE : return " REPLACE_RANGE " ; <nl> case ReplicatedMergeTreeLogEntryData : : MUTATE_PART : return " MUTATE_PART " ; <nl> default : <nl> struct ReplicatedMergeTreeLogEntryData <nl> Strings source_parts ; <nl> bool deduplicate = false ; / / / Do deduplicate on merge <nl> String column_name ; <nl> + String index_name ; <nl> <nl> / / / Force filter by TTL in ' OPTIMIZE . . . FINAL ' query to remove expired values from old parts <nl> / / / without TTL infos or with outdated TTL infos , e . g . after ' ALTER . . . MODIFY TTL ' query . <nl> struct ReplicatedMergeTreeLogEntryData <nl> <nl> / / / Return { } because selection of merges in the partition where the column is cleared <nl> / / / should not be blocked ( only execution of merges should be blocked ) . <nl> - if ( type = = CLEAR_COLUMN ) <nl> + if ( type = = CLEAR_COLUMN | | type = = CLEAR_INDEX ) <nl> return { } ; <nl> <nl> if ( type = = REPLACE_RANGE ) <nl> mmm a / dbms / src / Storages / MergeTree / StorageFromMergeTreeDataPart . h <nl> ppp b / dbms / src / Storages / MergeTree / StorageFromMergeTreeDataPart . h <nl> class StorageFromMergeTreeDataPart : public ext : : shared_ptr_helper < StorageFromMe <nl> <nl> protected : <nl> StorageFromMergeTreeDataPart ( const MergeTreeData : : DataPartPtr & part_ ) <nl> - : IStorage ( part_ - > storage . getColumns ( ) ) , part ( part_ ) <nl> + : IStorage ( part_ - > storage . getColumns ( ) , part_ - > storage . getVirtuals ( ) , part_ - > storage . getIndices ( ) ) , part ( part_ ) <nl> { } <nl> <nl> private : <nl> mmm a / dbms / src / Storages / MutationCommands . cpp <nl> ppp b / dbms / src / Storages / MutationCommands . cpp <nl> <nl> # include < Parsers / ParserAlterQuery . h > <nl> # include < Parsers / parseQuery . h > <nl> # include < Parsers / ASTAssignment . h > <nl> + # include < Parsers / ASTIdentifier . h > <nl> # include < Common / typeid_cast . h > <nl> <nl> <nl> std : : optional < MutationCommand > MutationCommand : : parse ( ASTAlterCommand * command ) <nl> } <nl> return res ; <nl> } <nl> + else if ( command - > type = = ASTAlterCommand : : MATERIALIZE_INDEX ) <nl> + { <nl> + MutationCommand res ; <nl> + res . ast = command - > ptr ( ) ; <nl> + res . type = MATERIALIZE_INDEX ; <nl> + res . partition = command - > partition ; <nl> + res . predicate = nullptr ; <nl> + res . index_name = command - > index - > as < ASTIdentifier & > ( ) . name ; <nl> + return res ; <nl> + } <nl> else <nl> return { } ; <nl> } <nl> mmm a / dbms / src / Storages / MutationCommands . h <nl> ppp b / dbms / src / Storages / MutationCommands . h <nl> struct MutationCommand <nl> EMPTY , / / / Not used . <nl> DELETE , <nl> UPDATE , <nl> + MATERIALIZE_INDEX <nl> } ; <nl> <nl> Type type = EMPTY ; <nl> struct MutationCommand <nl> <nl> std : : unordered_map < String , ASTPtr > column_to_update_expression ; <nl> <nl> + / / / For MATERIALIZE INDEX <nl> + String index_name ; <nl> + ASTPtr partition ; <nl> + <nl> static std : : optional < MutationCommand > parse ( ASTAlterCommand * command ) ; <nl> } ; <nl> <nl> mmm a / dbms / src / Storages / PartitionCommands . cpp <nl> ppp b / dbms / src / Storages / PartitionCommands . cpp <nl> std : : optional < PartitionCommand > PartitionCommand : : parse ( const ASTAlterCommand * <nl> res . column_name = getIdentifierName ( command_ast - > column ) ; <nl> return res ; <nl> } <nl> + else if ( command_ast - > type = = ASTAlterCommand : : DROP_INDEX & & command_ast - > partition ) <nl> + { <nl> + if ( ! command_ast - > clear_index ) <nl> + throw Exception ( " Can ' t DROP INDEX from partition . It is possible only to CLEAR INDEX in partition " , ErrorCodes : : BAD_ARGUMENTS ) ; <nl> + <nl> + PartitionCommand res ; <nl> + res . type = CLEAR_INDEX ; <nl> + res . partition = command_ast - > partition ; <nl> + res . index_name = getIdentifierName ( command_ast - > index ) ; <nl> + return res ; <nl> + } <nl> else if ( command_ast - > type = = ASTAlterCommand : : FREEZE_ALL ) <nl> { <nl> PartitionCommand command ; <nl> void PartitionCommands : : validate ( const IStorage & table ) <nl> DB : : ErrorCodes : : ILLEGAL_COLUMN ) ; <nl> } <nl> } <nl> + else if ( command . type = = PartitionCommand : : CLEAR_INDEX ) <nl> + { <nl> + String index_name = command . index_name . safeGet < String > ( ) ; <nl> + <nl> + if ( ! table . getIndices ( ) . has ( index_name ) ) <nl> + { <nl> + throw Exception ( " Wrong index name . Cannot find index " + index_name + " to clear it from partition " , <nl> + DB : : ErrorCodes : : BAD_ARGUMENTS ) ; <nl> + } <nl> + } <nl> } <nl> } <nl> <nl> mmm a / dbms / src / Storages / PartitionCommands . h <nl> ppp b / dbms / src / Storages / PartitionCommands . h <nl> struct PartitionCommand <nl> { <nl> ATTACH_PARTITION , <nl> CLEAR_COLUMN , <nl> + CLEAR_INDEX , <nl> DROP_PARTITION , <nl> FETCH_PARTITION , <nl> FREEZE_ALL_PARTITIONS , <nl> FREEZE_PARTITION , <nl> - REPLACE_PARTITION , <nl> + REPLACE_PARTITION <nl> } ; <nl> <nl> Type type ; <nl> <nl> ASTPtr partition ; <nl> Field column_name ; <nl> + Field index_name ; <nl> <nl> / / / true for DETACH PARTITION . <nl> bool detach = false ; <nl> mmm a / dbms / src / Storages / StorageMergeTree . cpp <nl> ppp b / dbms / src / Storages / StorageMergeTree . cpp <nl> void StorageMergeTree : : clearOldMutations ( ) <nl> } <nl> <nl> <nl> - void StorageMergeTree : : clearColumnInPartition ( const ASTPtr & partition , const Field & column_name , const Context & context ) <nl> + void StorageMergeTree : : clearColumnOrIndexInPartition ( const ASTPtr & partition , const AlterCommand & alter_command , const Context & context ) <nl> { <nl> / / / Asks to complete merges and does not allow them to start . <nl> / / / This protects against " revival " of data for a removed partition after completion of merge . <nl> void StorageMergeTree : : clearColumnInPartition ( const ASTPtr & partition , const Fi <nl> <nl> std : : vector < AlterDataPartTransactionPtr > transactions ; <nl> <nl> - AlterCommand alter_command ; <nl> - alter_command . type = AlterCommand : : DROP_COLUMN ; <nl> - alter_command . column_name = get < String > ( column_name ) ; <nl> - <nl> auto new_columns = getColumns ( ) ; <nl> auto new_indices = getIndices ( ) ; <nl> ASTPtr ignored_order_by_ast ; <nl> void StorageMergeTree : : clearColumnInPartition ( const ASTPtr & partition , const Fi <nl> if ( transaction - > isValid ( ) ) <nl> transactions . push_back ( std : : move ( transaction ) ) ; <nl> <nl> - LOG_DEBUG ( log , " Removing column " < < get < String > ( column_name ) < < " from part " < < part - > name ) ; <nl> + if ( alter_command . type = = AlterCommand : : DROP_COLUMN ) <nl> + LOG_DEBUG ( log , " Removing column " < < alter_command . column_name < < " from part " < < part - > name ) ; <nl> + else if ( alter_command . type = = AlterCommand : : DROP_INDEX ) <nl> + LOG_DEBUG ( log , " Removing index " < < alter_command . index_name < < " from part " < < part - > name ) ; <nl> } <nl> <nl> if ( transactions . empty ( ) ) <nl> void StorageMergeTree : : alterPartition ( const ASTPtr & query , const PartitionComma <nl> break ; <nl> <nl> case PartitionCommand : : CLEAR_COLUMN : <nl> - clearColumnInPartition ( command . partition , command . column_name , context ) ; <nl> - break ; <nl> + { <nl> + AlterCommand alter_command ; <nl> + alter_command . type = AlterCommand : : DROP_COLUMN ; <nl> + alter_command . column_name = get < String > ( command . column_name ) ; <nl> + clearColumnOrIndexInPartition ( command . partition , alter_command , context ) ; <nl> + } <nl> + break ; <nl> + <nl> + case PartitionCommand : : CLEAR_INDEX : <nl> + { <nl> + AlterCommand alter_command ; <nl> + alter_command . type = AlterCommand : : DROP_INDEX ; <nl> + alter_command . index_name = get < String > ( command . index_name ) ; <nl> + clearColumnOrIndexInPartition ( command . partition , alter_command , context ) ; <nl> + } <nl> + break ; <nl> <nl> case PartitionCommand : : FREEZE_ALL_PARTITIONS : <nl> { <nl> mmm a / dbms / src / Storages / StorageMergeTree . h <nl> ppp b / dbms / src / Storages / StorageMergeTree . h <nl> <nl> # include < ext / shared_ptr_helper . h > <nl> <nl> # include < Core / Names . h > <nl> + # include < Storages / AlterCommands . h > <nl> # include < Storages / IStorage . h > <nl> # include < Storages / MergeTree / MergeTreeData . h > <nl> # include < Storages / MergeTree / MergeTreeDataSelectExecutor . h > <nl> class StorageMergeTree : public ext : : shared_ptr_helper < StorageMergeTree > , public <nl> <nl> / / Partition helpers <nl> void dropPartition ( const ASTPtr & partition , bool detach , const Context & context ) ; <nl> - void clearColumnInPartition ( const ASTPtr & partition , const Field & column_name , const Context & context ) ; <nl> + void clearColumnOrIndexInPartition ( const ASTPtr & partition , const AlterCommand & alter_command , const Context & context ) ; <nl> void attachPartition ( const ASTPtr & partition , bool part , const Context & context ) ; <nl> void replacePartitionFrom ( const StoragePtr & source_table , const ASTPtr & partition , bool replace , const Context & context ) ; <nl> <nl> mmm a / dbms / src / Storages / StorageReplicatedMergeTree . cpp <nl> ppp b / dbms / src / Storages / StorageReplicatedMergeTree . cpp <nl> bool StorageReplicatedMergeTree : : executeLogEntry ( LogEntry & entry ) <nl> return true ; <nl> } <nl> <nl> - if ( entry . type = = LogEntry : : CLEAR_COLUMN ) <nl> + if ( entry . type = = LogEntry : : CLEAR_COLUMN | | entry . type = = LogEntry : : CLEAR_INDEX ) <nl> { <nl> - executeClearColumnInPartition ( entry ) ; <nl> + executeClearColumnOrIndexInPartition ( entry ) ; <nl> return true ; <nl> } <nl> <nl> void StorageReplicatedMergeTree : : executeDropRange ( const LogEntry & entry ) <nl> } <nl> <nl> <nl> - void StorageReplicatedMergeTree : : executeClearColumnInPartition ( const LogEntry & entry ) <nl> + void StorageReplicatedMergeTree : : executeClearColumnOrIndexInPartition ( const LogEntry & entry ) <nl> { <nl> LOG_INFO ( log , " Clear column " < < entry . column_name < < " in parts inside " < < entry . new_part_name < < " range " ) ; <nl> <nl> void StorageReplicatedMergeTree : : executeClearColumnInPartition ( const LogEntry & <nl> auto zookeeper = getZooKeeper ( ) ; <nl> <nl> AlterCommand alter_command ; <nl> - alter_command . type = AlterCommand : : DROP_COLUMN ; <nl> - alter_command . column_name = entry . column_name ; <nl> + if ( entry . type = = LogEntry : : CLEAR_COLUMN ) <nl> + { <nl> + alter_command . type = AlterCommand : : DROP_COLUMN ; <nl> + alter_command . column_name = entry . column_name ; <nl> + } <nl> + else if ( entry . type = = LogEntry : : CLEAR_INDEX ) <nl> + { <nl> + alter_command . type = AlterCommand : : DROP_INDEX ; <nl> + alter_command . index_name = entry . index_name ; <nl> + } <nl> <nl> auto new_columns = getColumns ( ) ; <nl> auto new_indices = getIndices ( ) ; <nl> void StorageReplicatedMergeTree : : executeClearColumnInPartition ( const LogEntry & <nl> if ( ! entry_part_info . contains ( part - > info ) ) <nl> continue ; <nl> <nl> - LOG_DEBUG ( log , " Clearing column " < < entry . column_name < < " in part " < < part - > name ) ; <nl> + if ( entry . type = = LogEntry : : CLEAR_COLUMN ) <nl> + LOG_DEBUG ( log , " Clearing column " < < alter_command . column_name < < " in part " < < part - > name ) ; <nl> + else if ( entry . type = = LogEntry : : CLEAR_INDEX ) <nl> + LOG_DEBUG ( log , " Clearing index " < < alter_command . index_name < < " in part " < < part - > name ) ; <nl> <nl> MergeTreeData : : AlterDataPartTransactionPtr transaction ( new MergeTreeData : : AlterDataPartTransaction ( part ) ) ; <nl> alterDataPart ( columns_for_parts , new_indices . indices , false , transaction ) ; <nl> void StorageReplicatedMergeTree : : executeClearColumnInPartition ( const LogEntry & <nl> + + modified_parts ; <nl> } <nl> <nl> - LOG_DEBUG ( log , " Cleared column " < < entry . column_name < < " in " < < modified_parts < < " parts " ) ; <nl> + if ( entry . type = = LogEntry : : CLEAR_COLUMN ) <nl> + LOG_DEBUG ( log , " Cleared column " < < entry . column_name < < " in " < < modified_parts < < " parts " ) ; <nl> + else if ( entry . type = = LogEntry : : CLEAR_INDEX ) <nl> + LOG_DEBUG ( log , " Cleared index " < < entry . index_name < < " in " < < modified_parts < < " parts " ) ; <nl> <nl> / / / Recalculate columns size ( not only for the modified column ) <nl> recalculateColumnSizes ( ) ; <nl> void StorageReplicatedMergeTree : : alterPartition ( const ASTPtr & query , const Part <nl> break ; <nl> <nl> case PartitionCommand : : CLEAR_COLUMN : <nl> - clearColumnInPartition ( command . partition , command . column_name , query_context ) ; <nl> - break ; <nl> + { <nl> + LogEntry entry ; <nl> + entry . type = LogEntry : : CLEAR_COLUMN ; <nl> + entry . column_name = command . column_name . safeGet < String > ( ) ; <nl> + clearColumnOrIndexInPartition ( command . partition , std : : move ( entry ) , query_context ) ; <nl> + } <nl> + break ; <nl> + <nl> + case PartitionCommand : : CLEAR_INDEX : <nl> + { <nl> + LogEntry entry ; <nl> + entry . type = LogEntry : : CLEAR_INDEX ; <nl> + entry . index_name = command . index_name . safeGet < String > ( ) ; <nl> + clearColumnOrIndexInPartition ( command . partition , std : : move ( entry ) , query_context ) ; <nl> + } <nl> + break ; <nl> <nl> case PartitionCommand : : FREEZE_ALL_PARTITIONS : <nl> { <nl> bool StorageReplicatedMergeTree : : getFakePartCoveringAllPartsInPartition ( const St <nl> } <nl> <nl> <nl> - void StorageReplicatedMergeTree : : clearColumnInPartition ( <nl> - const ASTPtr & partition , const Field & column_name , const Context & query_context ) <nl> + void StorageReplicatedMergeTree : : clearColumnOrIndexInPartition ( <nl> + const ASTPtr & partition , LogEntry & & entry , const Context & query_context ) <nl> { <nl> assertNotReadonly ( ) ; <nl> <nl> void StorageReplicatedMergeTree : : clearColumnInPartition ( <nl> } <nl> <nl> / / / We allocated new block number for this part , so new merges can ' t merge clearing parts with new ones <nl> - <nl> - LogEntry entry ; <nl> - entry . type = LogEntry : : CLEAR_COLUMN ; <nl> entry . new_part_name = getPartNamePossiblyFake ( format_version , drop_range_info ) ; <nl> - entry . column_name = column_name . safeGet < String > ( ) ; <nl> entry . create_time = time ( nullptr ) ; <nl> <nl> String log_znode_path = getZooKeeper ( ) - > create ( zookeeper_path + " / log / log - " , entry . toString ( ) , zkutil : : CreateMode : : PersistentSequential ) ; <nl> mmm a / dbms / src / Storages / StorageReplicatedMergeTree . h <nl> ppp b / dbms / src / Storages / StorageReplicatedMergeTree . h <nl> class StorageReplicatedMergeTree : public ext : : shared_ptr_helper < StorageReplicat <nl> <nl> bool executeFetch ( LogEntry & entry ) ; <nl> <nl> - void executeClearColumnInPartition ( const LogEntry & entry ) ; <nl> + void executeClearColumnOrIndexInPartition ( const LogEntry & entry ) ; <nl> <nl> bool executeReplaceRange ( const LogEntry & entry ) ; <nl> <nl> class StorageReplicatedMergeTree : public ext : : shared_ptr_helper < StorageReplicat <nl> std : : optional < Cluster : : Address > findClusterAddress ( const ReplicatedMergeTreeAddress & leader_address ) const ; <nl> <nl> / / Partition helpers <nl> - void clearColumnInPartition ( const ASTPtr & partition , const Field & column_name , const Context & query_context ) ; <nl> + void clearColumnOrIndexInPartition ( const ASTPtr & partition , LogEntry & & entry , const Context & query_context ) ; <nl> void dropPartition ( const ASTPtr & query , const ASTPtr & partition , bool detach , const Context & query_context ) ; <nl> void attachPartition ( const ASTPtr & partition , bool part , const Context & query_context ) ; <nl> void replacePartitionFrom ( const StoragePtr & source_table , const ASTPtr & partition , bool replace , const Context & query_context ) ; <nl> new file mode 100644 <nl> index 00000000000 . . 0ca9f162416 <nl> mmm / dev / null <nl> ppp b / dbms / tests / config / metric_log . xml <nl> <nl> + < yandex > <nl> + < metric_log > <nl> + < database > system < / database > <nl> + < table > metric_log < / table > <nl> + < flush_interval_milliseconds > 7500 < / flush_interval_milliseconds > <nl> + < collect_interval_milliseconds > 1000 < / collect_interval_milliseconds > <nl> + < / metric_log > <nl> + < / yandex > <nl> mmm a / dbms / tests / integration / helpers / cluster . py <nl> ppp b / dbms / tests / integration / helpers / cluster . py <nl> def copy_file_to_container ( self , local_path , dest_path ) : <nl> with open ( local_path , ' r ' ) as fdata : <nl> data = fdata . read ( ) <nl> encoded_data = base64 . b64encode ( data ) <nl> - self . exec_in_container ( [ " bash " , " - c " , " echo { } | base64 - - decode > { } " . format ( encoded_data , dest_path ) ] ) <nl> + self . exec_in_container ( [ " bash " , " - c " , " echo { } | base64 - - decode > { } " . format ( encoded_data , dest_path ) ] , user = ' root ' ) <nl> <nl> def get_process_pid ( self , process_name ) : <nl> output = self . exec_in_container ( [ " bash " , " - c " , " ps ax | grep ' { } ' | grep - v ' grep ' | grep - v ' bash - c ' | awk ' { { print $ 1 } } ' " . format ( process_name ) ] ) <nl> mmm a / dbms / tests / integration / test_external_dictionaries / external_sources . py <nl> ppp b / dbms / tests / integration / test_external_dictionaries / external_sources . py <nl> def get_source_str ( self , table_name ) : <nl> def prepare ( self , structure , table_name , cluster ) : <nl> self . node = cluster . instances [ self . docker_hostname ] <nl> path = " / " + table_name + " . tsv " <nl> - self . node . exec_in_container ( [ " bash " , " - c " , " touch { } " . format ( path ) ] ) <nl> + self . node . exec_in_container ( [ " bash " , " - c " , " touch { } " . format ( path ) ] , user = " root " ) <nl> self . ordered_names = structure . get_ordered_names ( ) <nl> self . prepared = True <nl> <nl> def load_data ( self , data , table_name ) : <nl> sorted_row . append ( str ( row . data [ name ] ) ) <nl> <nl> str_data = ' \ t ' . join ( sorted_row ) <nl> - self . node . exec_in_container ( [ " bash " , " - c " , " echo \ " { row } \ " > > { fname } " . format ( row = str_data , fname = path ) ] ) <nl> + self . node . exec_in_container ( [ " bash " , " - c " , " echo \ " { row } \ " > > { fname } " . format ( row = str_data , fname = path ) ] , user = " root " ) <nl> <nl> def compatible_with_layout ( self , layout ) : <nl> return ' cache ' not in layout . name <nl> def get_source_str ( self , table_name ) : <nl> def prepare ( self , structure , table_name , cluster ) : <nl> self . node = cluster . instances [ self . docker_hostname ] <nl> path = " / " + table_name + " . tsv " <nl> - self . node . exec_in_container ( [ " bash " , " - c " , " touch { } " . format ( path ) ] ) <nl> + self . node . exec_in_container ( [ " bash " , " - c " , " touch { } " . format ( path ) ] , user = " root " ) <nl> self . ordered_names = structure . get_ordered_names ( ) <nl> self . prepared = True <nl> <nl> def load_data ( self , data , table_name ) : <nl> sorted_row . append ( str ( row . data [ name ] ) ) <nl> <nl> str_data = ' \ t ' . join ( sorted_row ) <nl> - self . node . exec_in_container ( [ " bash " , " - c " , " echo \ " { row } \ " > > { fname } " . format ( row = str_data , fname = path ) ] ) <nl> + self . node . exec_in_container ( [ " bash " , " - c " , " echo \ " { row } \ " > > { fname } " . format ( row = str_data , fname = path ) ] , user = ' root ' ) <nl> <nl> <nl> class SourceExecutableCache ( _SourceExecutableBase ) : <nl> def get_source_str ( self , table_name ) : <nl> def prepare ( self , structure , table_name , cluster ) : <nl> self . node = cluster . instances [ self . docker_hostname ] <nl> path = " / " + table_name + " . tsv " <nl> - self . node . exec_in_container ( [ " bash " , " - c " , " touch { } " . format ( path ) ] ) <nl> + self . node . exec_in_container ( [ " bash " , " - c " , " touch { } " . format ( path ) ] , user = ' root ' ) <nl> <nl> script_dir = os . path . dirname ( os . path . realpath ( __file__ ) ) <nl> self . node . copy_file_to_container ( os . path . join ( script_dir , ' . / http_server . py ' ) , ' / http_server . py ' ) <nl> def load_data ( self , data , table_name ) : <nl> sorted_row . append ( str ( row . data [ name ] ) ) <nl> <nl> str_data = ' \ t ' . join ( sorted_row ) <nl> - self . node . exec_in_container ( [ " bash " , " - c " , " echo \ " { row } \ " > > { fname } " . format ( row = str_data , fname = path ) ] ) <nl> + self . node . exec_in_container ( [ " bash " , " - c " , " echo \ " { row } \ " > > { fname } " . format ( row = str_data , fname = path ) ] , user = ' root ' ) <nl> <nl> <nl> class SourceHTTP ( SourceHTTPBase ) : <nl> mmm a / dbms / tests / integration / test_storage_kafka / test . py <nl> ppp b / dbms / tests / integration / test_storage_kafka / test . py <nl> def test_kafka_materialized_view ( kafka_cluster ) : <nl> kafka_check_result ( result , True ) <nl> <nl> <nl> + @ pytest . mark . timeout ( 60 ) <nl> + def test_kafka_many_materialized_views ( kafka_cluster ) : <nl> + instance . query ( ' ' ' <nl> + DROP TABLE IF EXISTS test . view1 ; <nl> + DROP TABLE IF EXISTS test . view2 ; <nl> + DROP TABLE IF EXISTS test . consumer1 ; <nl> + DROP TABLE IF EXISTS test . consumer2 ; <nl> + CREATE TABLE test . kafka ( key UInt64 , value UInt64 ) <nl> + ENGINE = Kafka <nl> + SETTINGS kafka_broker_list = ' kafka1 : 19092 ' , <nl> + kafka_topic_list = ' mmv ' , <nl> + kafka_group_name = ' mmv ' , <nl> + kafka_format = ' JSONEachRow ' , <nl> + kafka_row_delimiter = ' \ \ n ' ; <nl> + CREATE TABLE test . view1 ( key UInt64 , value UInt64 ) <nl> + ENGINE = MergeTree ( ) <nl> + ORDER BY key ; <nl> + CREATE TABLE test . view2 ( key UInt64 , value UInt64 ) <nl> + ENGINE = MergeTree ( ) <nl> + ORDER BY key ; <nl> + CREATE MATERIALIZED VIEW test . consumer1 TO test . view1 AS <nl> + SELECT * FROM test . kafka ; <nl> + CREATE MATERIALIZED VIEW test . consumer2 TO test . view2 AS <nl> + SELECT * FROM test . kafka ; <nl> + ' ' ' ) <nl> + <nl> + messages = [ ] <nl> + for i in range ( 50 ) : <nl> + messages . append ( json . dumps ( { ' key ' : i , ' value ' : i } ) ) <nl> + kafka_produce ( ' mmv ' , messages ) <nl> + <nl> + while True : <nl> + result1 = instance . query ( ' SELECT * FROM test . view1 ' ) <nl> + result2 = instance . query ( ' SELECT * FROM test . view2 ' ) <nl> + if kafka_check_result ( result1 ) and kafka_check_result ( result2 ) : <nl> + break <nl> + <nl> + instance . query ( ' ' ' <nl> + DROP TABLE test . consumer1 ; <nl> + DROP TABLE test . consumer2 ; <nl> + DROP TABLE test . view1 ; <nl> + DROP TABLE test . view2 ; <nl> + ' ' ' ) <nl> + <nl> + kafka_check_result ( result1 , True ) <nl> + kafka_check_result ( result2 , True ) <nl> + <nl> + <nl> @ pytest . mark . timeout ( 300 ) <nl> def test_kafka_flush_on_big_message ( kafka_cluster ) : <nl> # Create batchs of messages of size ~ 100Kb <nl> mmm a / dbms / tests / performance / order_by_read_in_order . xml <nl> ppp b / dbms / tests / performance / order_by_read_in_order . xml <nl> <nl> < / main_metric > <nl> <nl> < preconditions > <nl> - < table_exists > test . hits < / table_exists > <nl> + < table_exists > default . hits_100m_single < / table_exists > <nl> < / preconditions > <nl> <nl> - < query > SELECT CounterID FROM test . hits ORDER BY CounterID , EventDate DESC LIMIT 50 < / query > <nl> + < query > SELECT * FROM hits_100m_single ORDER BY CounterID , EventDate LIMIT 100 < / query > <nl> + < query > SELECT * FROM hits_100m_single ORDER BY CounterID DESC , toStartOfWeek ( EventDate ) DESC LIMIT 100 < / query > <nl> + < query > SELECT * FROM hits_100m_single ORDER BY CounterID , EventDate , URL LIMIT 100 < / query > <nl> + < query > SELECT * FROM hits_100m_single WHERE CounterID IN ( 152220 , 168777 , 149234 , 149234 ) ORDER BY CounterID DESC , EventDate DESC LIMIT 100 < / query > <nl> + < query > SELECT * FROM hits_100m_single WHERE UserID = 1988954671305023629 ORDER BY CounterID , EventDate LIMIT 100 < / query > <nl> <nl> < / test > <nl> mmm a / dbms / tests / queries / 0_stateless / 00940_order_by_read_in_order . sql <nl> ppp b / dbms / tests / queries / 0_stateless / 00940_order_by_read_in_order . sql <nl> <nl> - CREATE DATABASE IF NOT EXISTS test ; <nl> - DROP TABLE IF EXISTS test . pk_order ; <nl> + DROP TABLE IF EXISTS pk_order ; <nl> <nl> SET optimize_read_in_order = 1 ; <nl> <nl> - CREATE TABLE test . pk_order ( a UInt64 , b UInt64 , c UInt64 , d UInt64 ) ENGINE = MergeTree ( ) ORDER BY ( a , b ) ; <nl> - INSERT INTO test . pk_order ( a , b , c , d ) VALUES ( 1 , 1 , 101 , 1 ) , ( 1 , 2 , 102 , 1 ) , ( 1 , 3 , 103 , 1 ) , ( 1 , 4 , 104 , 1 ) ; <nl> - INSERT INTO test . pk_order ( a , b , c , d ) VALUES ( 1 , 5 , 104 , 1 ) , ( 1 , 6 , 105 , 1 ) , ( 2 , 1 , 106 , 2 ) , ( 2 , 1 , 107 , 2 ) ; <nl> + CREATE TABLE pk_order ( a UInt64 , b UInt64 , c UInt64 , d UInt64 ) ENGINE = MergeTree ( ) ORDER BY ( a , b ) ; <nl> + INSERT INTO pk_order ( a , b , c , d ) VALUES ( 1 , 1 , 101 , 1 ) , ( 1 , 2 , 102 , 1 ) , ( 1 , 3 , 103 , 1 ) , ( 1 , 4 , 104 , 1 ) ; <nl> + INSERT INTO pk_order ( a , b , c , d ) VALUES ( 1 , 5 , 104 , 1 ) , ( 1 , 6 , 105 , 1 ) , ( 2 , 1 , 106 , 2 ) , ( 2 , 1 , 107 , 2 ) ; <nl> <nl> - INSERT INTO test . pk_order ( a , b , c , d ) VALUES ( 2 , 2 , 107 , 2 ) , ( 2 , 3 , 108 , 2 ) , ( 2 , 4 , 109 , 2 ) ; <nl> + INSERT INTO pk_order ( a , b , c , d ) VALUES ( 2 , 2 , 107 , 2 ) , ( 2 , 3 , 108 , 2 ) , ( 2 , 4 , 109 , 2 ) ; <nl> <nl> - SELECT b FROM test . pk_order ORDER BY a , b ; <nl> - SELECT a FROM test . pk_order ORDER BY a , b ; <nl> + SELECT b FROM pk_order ORDER BY a , b ; <nl> + SELECT a FROM pk_order ORDER BY a , b ; <nl> <nl> - SELECT a , b FROM test . pk_order ORDER BY a , b ; <nl> - SELECT a , b FROM test . pk_order ORDER BY a DESC , b ; <nl> - SELECT a , b FROM test . pk_order ORDER BY a , b DESC ; <nl> - SELECT a , b FROM test . pk_order ORDER BY a DESC , b DESC ; <nl> - SELECT a FROM test . pk_order ORDER BY a DESC ; <nl> + SELECT a , b FROM pk_order ORDER BY a , b ; <nl> + SELECT a , b FROM pk_order ORDER BY a DESC , b ; <nl> + SELECT a , b FROM pk_order ORDER BY a , b DESC ; <nl> + SELECT a , b FROM pk_order ORDER BY a DESC , b DESC ; <nl> + SELECT a FROM pk_order ORDER BY a DESC ; <nl> <nl> - SELECT a , b , c FROM test . pk_order ORDER BY a , b , c ; <nl> - SELECT a , b , c FROM test . pk_order ORDER BY a DESC , b , c ; <nl> - SELECT a , b , c FROM test . pk_order ORDER BY a , b DESC , c ; <nl> - SELECT a , b , c FROM test . pk_order ORDER BY a , b , c DESC ; <nl> - SELECT a , b , c FROM test . pk_order ORDER BY a DESC , b DESC , c ; <nl> - SELECT a , b , c FROM test . pk_order ORDER BY a DESC , b , c DESC ; <nl> - SELECT a , b , c FROM test . pk_order ORDER BY a , b DESC , c DESC ; <nl> - SELECT a , b , c FROM test . pk_order ORDER BY a DESC , b DESC , c DESC ; <nl> + SELECT a , b , c FROM pk_order ORDER BY a , b , c ; <nl> + SELECT a , b , c FROM pk_order ORDER BY a DESC , b , c ; <nl> + SELECT a , b , c FROM pk_order ORDER BY a , b DESC , c ; <nl> + SELECT a , b , c FROM pk_order ORDER BY a , b , c DESC ; <nl> + SELECT a , b , c FROM pk_order ORDER BY a DESC , b DESC , c ; <nl> + SELECT a , b , c FROM pk_order ORDER BY a DESC , b , c DESC ; <nl> + SELECT a , b , c FROM pk_order ORDER BY a , b DESC , c DESC ; <nl> + SELECT a , b , c FROM pk_order ORDER BY a DESC , b DESC , c DESC ; <nl> <nl> - DROP TABLE IF EXISTS test . pk_order ; <nl> + DROP TABLE IF EXISTS pk_order ; <nl> <nl> CREATE TABLE pk_order ( d DateTime , a Int32 , b Int32 ) ENGINE = MergeTree ORDER BY ( d , a ) <nl> PARTITION BY toDate ( d ) SETTINGS index_granularity = 1 ; <nl> new file mode 100644 <nl> index 00000000000 . . 6582a420c51 <nl> mmm / dev / null <nl> ppp b / dbms / tests / queries / 0_stateless / 00942_mutate_index . reference <nl> <nl> + 10 <nl> + 0 <nl> + 0 <nl> + 10 <nl> new file mode 100755 <nl> index 00000000000 . . c6dd1dfb836 <nl> mmm / dev / null <nl> ppp b / dbms / tests / queries / 0_stateless / 00942_mutate_index . sh <nl> <nl> + # ! / usr / bin / env bash <nl> + <nl> + CURDIR = $ ( cd " $ ( dirname " $ { BASH_SOURCE [ 0 ] } " ) " & & pwd ) <nl> + . $ CURDIR / . . / shell_config . sh <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " DROP TABLE IF EXISTS test . minmax_idx ; " <nl> + <nl> + <nl> + $ CLICKHOUSE_CLIENT - n - - query = " <nl> + SET allow_experimental_data_skipping_indices = 1 ; <nl> + CREATE TABLE test . minmax_idx <nl> + ( <nl> + u64 UInt64 , <nl> + i64 Int64 , <nl> + i32 Int32 , <nl> + INDEX idx ( i64 , u64 * i64 ) TYPE minmax GRANULARITY 1 <nl> + ) ENGINE = MergeTree ( ) <nl> + ORDER BY u64 <nl> + SETTINGS index_granularity = 2 ; " <nl> + <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " INSERT INTO test . minmax_idx VALUES <nl> + ( 0 , 1 , 1 ) , <nl> + ( 1 , 1 , 2 ) , <nl> + ( 2 , 1 , 3 ) , <nl> + ( 3 , 1 , 4 ) , <nl> + ( 4 , 1 , 5 ) , <nl> + ( 5 , 1 , 6 ) , <nl> + ( 6 , 1 , 7 ) , <nl> + ( 7 , 1 , 8 ) , <nl> + ( 8 , 1 , 9 ) , <nl> + ( 9 , 1 , 10 ) " <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . minmax_idx WHERE i64 = 1 ; " <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . minmax_idx WHERE i64 = 5 ; " <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " ALTER TABLE test . minmax_idx UPDATE i64 = 5 WHERE i64 = 1 ; " <nl> + <nl> + sleep 0 . 1 <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . minmax_idx WHERE i64 = 1 ; " <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . minmax_idx WHERE i64 = 5 ; " <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " DROP TABLE test . minmax_idx " <nl> new file mode 100644 <nl> index 00000000000 . . aa4014f798d <nl> mmm / dev / null <nl> ppp b / dbms / tests / queries / 0_stateless / 00943_materialize_index . reference <nl> <nl> + 5 <nl> + " rows_read " : 10 , <nl> + 5 <nl> + " rows_read " : 8 , <nl> + 5 <nl> + " rows_read " : 6 , <nl> + 5 <nl> + " rows_read " : 10 , <nl> + 5 <nl> + " rows_read " : 6 , <nl> new file mode 100755 <nl> index 00000000000 . . f51b66993aa <nl> mmm / dev / null <nl> ppp b / dbms / tests / queries / 0_stateless / 00943_materialize_index . sh <nl> <nl> + # ! / usr / bin / env bash <nl> + <nl> + CURDIR = $ ( cd " $ ( dirname " $ { BASH_SOURCE [ 0 ] } " ) " & & pwd ) <nl> + . $ CURDIR / . . / shell_config . sh <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " DROP TABLE IF EXISTS test . minmax_idx ; " <nl> + <nl> + <nl> + $ CLICKHOUSE_CLIENT - n - - query = " <nl> + CREATE TABLE test . minmax_idx <nl> + ( <nl> + u64 UInt64 , <nl> + i64 Int64 , <nl> + i32 Int32 <nl> + ) ENGINE = MergeTree ( ) <nl> + PARTITION BY i32 <nl> + ORDER BY u64 <nl> + SETTINGS index_granularity = 2 ; " <nl> + <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " INSERT INTO test . minmax_idx VALUES <nl> + ( 0 , 2 , 1 ) , <nl> + ( 1 , 1 , 1 ) , <nl> + ( 2 , 1 , 1 ) , <nl> + ( 3 , 1 , 1 ) , <nl> + ( 4 , 2 , 2 ) , <nl> + ( 5 , 2 , 2 ) , <nl> + ( 6 , 2 , 2 ) , <nl> + ( 7 , 2 , 2 ) , <nl> + ( 8 , 1 , 2 ) , <nl> + ( 9 , 1 , 2 ) " <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . minmax_idx WHERE i64 = 2 ; " <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . minmax_idx WHERE i64 = 2 FORMAT JSON " | grep " rows_read " <nl> + <nl> + $ CLICKHOUSE_CLIENT - n - - query = " <nl> + SET allow_experimental_data_skipping_indices = 1 ; <nl> + ALTER TABLE test . minmax_idx ADD INDEX idx ( i64 , u64 * i64 ) TYPE minmax GRANULARITY 1 ; " <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " ALTER TABLE test . minmax_idx MATERIALIZE INDEX idx IN PARTITION 1 ; " <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . minmax_idx WHERE i64 = 2 ; " <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . minmax_idx WHERE i64 = 2 FORMAT JSON " | grep " rows_read " <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " ALTER TABLE test . minmax_idx MATERIALIZE INDEX idx IN PARTITION 2 ; " <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . minmax_idx WHERE i64 = 2 ; " <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . minmax_idx WHERE i64 = 2 FORMAT JSON " | grep " rows_read " <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " ALTER TABLE test . minmax_idx CLEAR INDEX idx IN PARTITION 1 ; " <nl> + $ CLICKHOUSE_CLIENT - - query = " ALTER TABLE test . minmax_idx CLEAR INDEX idx IN PARTITION 2 ; " <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . minmax_idx WHERE i64 = 2 ; " <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . minmax_idx WHERE i64 = 2 FORMAT JSON " | grep " rows_read " <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " ALTER TABLE test . minmax_idx MATERIALIZE INDEX idx ; " <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . minmax_idx WHERE i64 = 2 ; " <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . minmax_idx WHERE i64 = 2 FORMAT JSON " | grep " rows_read " <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " DROP TABLE test . minmax_idx " <nl> new file mode 100644 <nl> index 00000000000 . . 9c5382e5cbe <nl> mmm / dev / null <nl> ppp b / dbms / tests / queries / 0_stateless / 00944_clear_index_in_partition . reference <nl> <nl> + 2 <nl> + " rows_read " : 4 , <nl> + 2 <nl> + " rows_read " : 6 , <nl> + 2 <nl> + " rows_read " : 4 , <nl> new file mode 100755 <nl> index 00000000000 . . 9047bbb3a72 <nl> mmm / dev / null <nl> ppp b / dbms / tests / queries / 0_stateless / 00944_clear_index_in_partition . sh <nl> <nl> + # ! / usr / bin / env bash <nl> + <nl> + CURDIR = $ ( cd " $ ( dirname " $ { BASH_SOURCE [ 0 ] } " ) " & & pwd ) <nl> + . $ CURDIR / . . / shell_config . sh <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " DROP TABLE IF EXISTS test . minmax_idx ; " <nl> + <nl> + <nl> + $ CLICKHOUSE_CLIENT - n - - query = " <nl> + SET allow_experimental_data_skipping_indices = 1 ; <nl> + CREATE TABLE test . minmax_idx <nl> + ( <nl> + u64 UInt64 , <nl> + i64 Int64 , <nl> + i32 Int32 , <nl> + INDEX idx ( i64 , u64 * i64 ) TYPE minmax GRANULARITY 1 <nl> + ) ENGINE = MergeTree ( ) <nl> + PARTITION BY i32 <nl> + ORDER BY u64 <nl> + SETTINGS index_granularity = 2 ; " <nl> + <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " INSERT INTO test . minmax_idx VALUES <nl> + ( 0 , 2 , 1 ) , <nl> + ( 1 , 1 , 1 ) , <nl> + ( 2 , 1 , 1 ) , <nl> + ( 3 , 1 , 1 ) , <nl> + ( 4 , 1 , 1 ) , <nl> + ( 5 , 2 , 1 ) , <nl> + ( 6 , 1 , 2 ) , <nl> + ( 7 , 1 , 2 ) , <nl> + ( 8 , 1 , 2 ) , <nl> + ( 9 , 1 , 2 ) " <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . minmax_idx WHERE i64 = 2 ; " <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . minmax_idx WHERE i64 = 2 FORMAT JSON " | grep " rows_read " <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " ALTER TABLE test . minmax_idx CLEAR INDEX idx IN PARTITION 1 ; " <nl> + sleep 0 . 5 <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . minmax_idx WHERE i64 = 2 ; " <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . minmax_idx WHERE i64 = 2 FORMAT JSON " | grep " rows_read " <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " ALTER TABLE test . minmax_idx MATERIALIZE INDEX idx IN PARTITION 1 ; " <nl> + sleep 0 . 5 <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . minmax_idx WHERE i64 = 2 ; " <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . minmax_idx WHERE i64 = 2 FORMAT JSON " | grep " rows_read " <nl> + <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " DROP TABLE test . minmax_idx " <nl> new file mode 100644 <nl> index 00000000000 . . 9c5382e5cbe <nl> mmm / dev / null <nl> ppp b / dbms / tests / queries / 0_stateless / 00975_indices_mutation_replicated_zookeeper . reference <nl> <nl> + 2 <nl> + " rows_read " : 4 , <nl> + 2 <nl> + " rows_read " : 6 , <nl> + 2 <nl> + " rows_read " : 4 , <nl> new file mode 100755 <nl> index 00000000000 . . 613226a3fb7 <nl> mmm / dev / null <nl> ppp b / dbms / tests / queries / 0_stateless / 00975_indices_mutation_replicated_zookeeper . sh <nl> <nl> + # ! / usr / bin / env bash <nl> + <nl> + CURDIR = $ ( cd " $ ( dirname " $ { BASH_SOURCE [ 0 ] } " ) " & & pwd ) <nl> + . $ CURDIR / . . / shell_config . sh <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " DROP TABLE IF EXISTS test . indices_mutaions1 ; " <nl> + $ CLICKHOUSE_CLIENT - - query = " DROP TABLE IF EXISTS test . indices_mutaions2 ; " <nl> + <nl> + <nl> + $ CLICKHOUSE_CLIENT - n - - query = " <nl> + SET allow_experimental_data_skipping_indices = 1 ; <nl> + CREATE TABLE test . indices_mutaions1 <nl> + ( <nl> + u64 UInt64 , <nl> + i64 Int64 , <nl> + i32 Int32 , <nl> + INDEX idx ( i64 , u64 * i64 ) TYPE minmax GRANULARITY 1 <nl> + ) ENGINE = ReplicatedMergeTree ( ' / clickhouse / tables / test / indices_mutaions ' , ' r1 ' ) <nl> + PARTITION BY i32 <nl> + ORDER BY u64 <nl> + SETTINGS index_granularity = 2 ; <nl> + CREATE TABLE test . indices_mutaions2 <nl> + ( <nl> + u64 UInt64 , <nl> + i64 Int64 , <nl> + i32 Int32 , <nl> + INDEX idx ( i64 , u64 * i64 ) TYPE minmax GRANULARITY 1 <nl> + ) ENGINE = ReplicatedMergeTree ( ' / clickhouse / tables / test / indices_mutaions ' , ' r2 ' ) <nl> + PARTITION BY i32 <nl> + ORDER BY u64 <nl> + SETTINGS index_granularity = 2 ; " <nl> + <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " INSERT INTO test . indices_mutaions1 VALUES <nl> + ( 0 , 2 , 1 ) , <nl> + ( 1 , 1 , 1 ) , <nl> + ( 2 , 1 , 1 ) , <nl> + ( 3 , 1 , 1 ) , <nl> + ( 4 , 1 , 1 ) , <nl> + ( 5 , 2 , 1 ) , <nl> + ( 6 , 1 , 2 ) , <nl> + ( 7 , 1 , 2 ) , <nl> + ( 8 , 1 , 2 ) , <nl> + ( 9 , 1 , 2 ) " <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . indices_mutaions2 WHERE i64 = 2 ; " <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . indices_mutaions2 WHERE i64 = 2 FORMAT JSON " | grep " rows_read " <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " ALTER TABLE test . indices_mutaions1 CLEAR INDEX idx IN PARTITION 1 ; " <nl> + sleep 1 <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . indices_mutaions2 WHERE i64 = 2 ; " <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . indices_mutaions2 WHERE i64 = 2 FORMAT JSON " | grep " rows_read " <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " ALTER TABLE test . indices_mutaions1 MATERIALIZE INDEX idx IN PARTITION 1 ; " <nl> + sleep 1 <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . indices_mutaions2 WHERE i64 = 2 ; " <nl> + $ CLICKHOUSE_CLIENT - - query = " SELECT count ( ) FROM test . indices_mutaions2 WHERE i64 = 2 FORMAT JSON " | grep " rows_read " <nl> + <nl> + $ CLICKHOUSE_CLIENT - - query = " DROP TABLE test . indices_mutaions1 " <nl> + $ CLICKHOUSE_CLIENT - - query = " DROP TABLE test . indices_mutaions2 " <nl> new file mode 100644 <nl> index 00000000000 . . d00491fd7e5 <nl> mmm / dev / null <nl> ppp b / dbms / tests / queries / 0_stateless / 00990_metric_log_table_not_empty . reference <nl> @ @ - 0 , 0 + 1 @ @ <nl> + 1 <nl> new file mode 100644 <nl> index 00000000000 . . 5719f1f1743 <nl> mmm / dev / null <nl> ppp b / dbms / tests / queries / 0_stateless / 00990_metric_log_table_not_empty . sql <nl> <nl> + select sleep ( 2 ) format Null ; - - More than collect_interval_milliseconds <nl> + <nl> + system flush logs ; <nl> + <nl> + select count ( ) > 0 from system . metric_log <nl> mmm a / docker / test / stateful / Dockerfile <nl> ppp b / docker / test / stateful / Dockerfile <nl> CMD dpkg - i package_folder / clickhouse - common - static_ * . deb ; \ <nl> ln - s / usr / share / clickhouse - test / config / listen . xml / etc / clickhouse - server / config . d / ; \ <nl> ln - s / usr / share / clickhouse - test / config / part_log . xml / etc / clickhouse - server / config . d / ; \ <nl> ln - s / usr / share / clickhouse - test / config / text_log . xml / etc / clickhouse - server / config . d / ; \ <nl> + ln - s / usr / share / clickhouse - test / config / metric_log . xml / etc / clickhouse - server / config . d / ; \ <nl> ln - s / usr / share / clickhouse - test / config / log_queries . xml / etc / clickhouse - server / users . d / ; \ <nl> ln - s / usr / share / clickhouse - test / config / readonly . xml / etc / clickhouse - server / users . d / ; \ <nl> ln - s / usr / share / clickhouse - test / config / ints_dictionary . xml / etc / clickhouse - server / ; \ <nl> mmm a / docker / test / stateful_with_coverage / run . sh <nl> ppp b / docker / test / stateful_with_coverage / run . sh <nl> ln - s / usr / share / clickhouse - test / config / zookeeper . xml / etc / clickhouse - server / con <nl> ln - s / usr / share / clickhouse - test / config / listen . xml / etc / clickhouse - server / config . d / ; \ <nl> ln - s / usr / share / clickhouse - test / config / part_log . xml / etc / clickhouse - server / config . d / ; \ <nl> ln - s / usr / share / clickhouse - test / config / text_log . xml / etc / clickhouse - server / config . d / ; \ <nl> + ln - s / usr / share / clickhouse - test / config / metric_log . xml / etc / clickhouse - server / config . d / ; \ <nl> ln - s / usr / share / clickhouse - test / config / log_queries . xml / etc / clickhouse - server / users . d / ; \ <nl> ln - s / usr / share / clickhouse - test / config / readonly . xml / etc / clickhouse - server / users . d / ; \ <nl> ln - s / usr / share / clickhouse - test / config / ints_dictionary . xml / etc / clickhouse - server / ; \ <nl> mmm a / docker / test / stateless / Dockerfile <nl> ppp b / docker / test / stateless / Dockerfile <nl> CMD dpkg - i package_folder / clickhouse - common - static_ * . deb ; \ <nl> ln - s / usr / share / clickhouse - test / config / listen . xml / etc / clickhouse - server / config . d / ; \ <nl> ln - s / usr / share / clickhouse - test / config / part_log . xml / etc / clickhouse - server / config . d / ; \ <nl> ln - s / usr / share / clickhouse - test / config / text_log . xml / etc / clickhouse - server / config . d / ; \ <nl> + ln - s / usr / share / clickhouse - test / config / metric_log . xml / etc / clickhouse - server / config . d / ; \ <nl> ln - s / usr / share / clickhouse - test / config / query_masking_rules . xml / etc / clickhouse - server / config . d / ; \ <nl> ln - s / usr / share / clickhouse - test / config / log_queries . xml / etc / clickhouse - server / users . d / ; \ <nl> ln - s / usr / share / clickhouse - test / config / readonly . xml / etc / clickhouse - server / users . d / ; \ <nl> mmm a / docker / test / stateless_with_coverage / run . sh <nl> ppp b / docker / test / stateless_with_coverage / run . sh <nl> ln - s / usr / share / clickhouse - test / config / zookeeper . xml / etc / clickhouse - server / con <nl> ln - s / usr / share / clickhouse - test / config / listen . xml / etc / clickhouse - server / config . d / ; \ <nl> ln - s / usr / share / clickhouse - test / config / part_log . xml / etc / clickhouse - server / config . d / ; \ <nl> ln - s / usr / share / clickhouse - test / config / text_log . xml / etc / clickhouse - server / config . d / ; \ <nl> + ln - s / usr / share / clickhouse - test / config / metric_log . xml / etc / clickhouse - server / config . d / ; \ <nl> ln - s / usr / share / clickhouse - test / config / log_queries . xml / etc / clickhouse - server / users . d / ; \ <nl> ln - s / usr / share / clickhouse - test / config / readonly . xml / etc / clickhouse - server / users . d / ; \ <nl> ln - s / usr / share / clickhouse - test / config / ints_dictionary . xml / etc / clickhouse - server / ; \ <nl> mmm a / docs / en / query_language / alter . md <nl> ppp b / docs / en / query_language / alter . md <nl> The following operations with [ partitions ] ( . . / operations / table_engines / custom_pa <nl> - [ ATTACH PART | PARTITION ] ( # alter_attach - partition ) – Adds a part or partition from the ` detached ` directory to the table . <nl> - [ REPLACE PARTITION ] ( # alter_replace - partition ) - Copies the data partition from one table to another . <nl> - [ CLEAR COLUMN IN PARTITION ] ( # alter_clear - column - partition ) - Resets the value of a specified column in a partition . <nl> + - [ CLEAR INDEX IN PARTITION ] ( # alter_clear - index - partition ) - Resets the specified secondary index in a partition . <nl> - [ FREEZE PARTITION ] ( # alter_freeze - partition ) – Creates a backup of a partition . <nl> - [ FETCH PARTITION ] ( # alter_fetch - partition ) – Downloads a partition from another server . <nl> <nl> Restoring from a backup doesn ' t require stopping the server . <nl> <nl> For more information about backups and restoring data , see the [ Data Backup ] ( . . / operations / backup . md ) section . <nl> <nl> + # # # # CLEAR INDEX IN PARTITION { # alter_clear - index - partition } <nl> + <nl> + ` ` ` sql <nl> + ALTER TABLE table_name CLEAR INDEX index_name IN PARTITION partition_expr <nl> + ` ` ` <nl> + <nl> + The query works similar to ` CLEAR COLUMN ` , but it resets an index instead of a column data . <nl> + <nl> # # # # FETCH PARTITION { # alter_fetch - partition } <nl> <nl> ` ` ` sql <nl> ALTER TABLE [ db . ] table UPDATE column1 = expr1 [ , . . . ] WHERE filter_expr <nl> <nl> The command is available starting with the 18 . 12 . 14 version . The ` filter_expr ` must be of type UInt8 . This query updates values of specified columns to the values of corresponding expressions in rows for which the ` filter_expr ` takes a non - zero value . Values are casted to the column type using the ` CAST ` operator . Updating columns that are used in the calculation of the primary or the partition key is not supported . <nl> <nl> + ` ` ` sql <nl> + ALTER TABLE [ db . ] table MATERIALIZE INDEX name IN PARTITION partition_name <nl> + ` ` ` <nl> + <nl> + The query rebuilds the secondary index ` name ` in the partition ` partition_name ` . <nl> + <nl> One query can contain several commands separated by commas . <nl> <nl> For * MergeTree tables mutations execute by rewriting whole data parts . There is no atomicity - parts are substituted for mutated parts as soon as they are ready and a ` SELECT ` query that started executing during a mutation will see data from parts that have already been mutated along with data from parts that have not been mutated yet . <nl> mmm a / docs / ru / query_language / alter . md <nl> ppp b / docs / ru / query_language / alter . md <nl> ALTER TABLE [ db ] . name DROP INDEX name <nl> - [ ATTACH PARTITION | PART ] ( # alter_attach - partition ) – добавить партицию / кусок в таблицу из директории ` detached ` ; <nl> - [ REPLACE PARTITION ] ( # alter_replace - partition ) – скопировать партицию из другой таблицы ; <nl> - [ CLEAR COLUMN IN PARTITION ] ( # alter_clear - column - partition ) – удалить все значения в столбце для заданной партиции ; <nl> + - [ CLEAR INDEX IN PARTITION ] ( # alter_clear - index - partition ) - очистить построенные вторичные индексы для заданной партиции ; <nl> - [ FREEZE PARTITION ] ( # alter_freeze - partition ) – создать резервную копию партиции ; <nl> - [ FETCH PARTITION ] ( # alter_fetch - partition ) – скачать партицию с другого сервера . <nl> <nl> ALTER TABLE table_name CLEAR COLUMN column_name IN PARTITION partition_expr <nl> ALTER TABLE visits CLEAR COLUMN hour in PARTITION 201902 <nl> ` ` ` <nl> <nl> + # # # # CLEAR INDEX IN PARTITION { # alter_clear - index - partition } <nl> + <nl> + ` ` ` sql <nl> + ALTER TABLE table_name CLEAR INDEX index_name IN PARTITION partition_expr <nl> + ` ` ` <nl> + <nl> + Работает как ` CLEAR COLUMN ` , но сбрасывает индексы вместо данных в столбцах . <nl> + <nl> # # # # FREEZE PARTITION { # alter_freeze - partition } <nl> <nl> ` ` ` sql <nl> ALTER TABLE [ db . ] table UPDATE column1 = expr1 [ , . . . ] WHERE filter_expr <nl> <nl> Команда доступна начиная с версии 18 . 12 . 14 . Выражение ` filter_expr ` должно иметь тип UInt8 . Запрос изменяет значение указанных столбцов на вычисленное значение соответствующих выражений в каждой строке , для которой ` filter_expr ` принимает ненулевое значение . Вычисленные значения преобразуются к типу столбца с помощью оператора ` CAST ` . Изменение столбцов , которые используются при вычислении первичного ключа или ключа партиционирования , не поддерживается . <nl> <nl> + ` ` ` sql <nl> + ALTER TABLE [ db . ] table MATERIALIZE INDEX name IN PARTITION partition_name <nl> + ` ` ` <nl> + <nl> + Команда перестроит вторичный индекс ` name ` для партиции ` partition_name ` . <nl> + <nl> В одном запросе можно указать несколько команд через запятую . <nl> <nl> Для \ * MergeTree - таблиц мутации выполняются , перезаписывая данные по кускам ( parts ) . При этом атомарности нет — куски заменяются на помутированные по мере выполнения и запрос ` SELECT ` , заданный во время выполнения мутации , увидит данные как из измененных кусков , так и из кусков , которые еще не были изменены . <nl> mmm a / website / index . html <nl> ppp b / website / index . html <nl> < h1 id = " main - title " > <nl> < / div > <nl> < div id = " announcement " class = " colored - block " > <nl> < div class = " page " > <nl> - Upcoming Meetups : < a class = " announcement - link " href = " https : / / yandex . ru / promo / clickhouse / moscow - 2019 " rel = " external nofollow " target = " _blank " > Moscow < / a > on September 5 , < a class = " announcement - link " href = " https : / / www . eventbrite . com / e / clickhouse - paris - meetup - 2019 - registration - 68493270215 " rel = " external nofollow " target = " _blank " > Paris < / a > on October 3 , < a class = " announcement - link " href = " https : / / www . meetup . com / Hong - Kong - Machine - Learning - Meetup / events / 263580542 / " rel = " external nofollow " target = " _blank " > Hong Kong < / a > on October 17 , < a class = " announcement - link " href = " https : / / www . huodongxing . com / event / 3483759917300 " rel = " external nofollow " target = " _blank " > Shenzhen < / a > on October 20 and < a class = " announcement - link " href = " https : / / www . huodongxing . com / event / 4483760336000 " rel = " external nofollow " target = " _blank " > Shanghai < / a > on October 27 <nl> < / div > <nl> < / div > <nl> < div class = " page " > <nl> < h2 > Like ClickHouse ? < / h2 > <nl> < script type = " text / javascript " src = " https : / / yastatic . net / jquery / 3 . 1 . 1 / jquery . min . js " > < / script > <nl> < script type = " text / javascript " > <nl> $ ( document ) . ready ( function ( ) { <nl> + $ . get ( ' https : / / raw . githubusercontent . com / yandex / ClickHouse / master / README . md ' , function ( e ) { <nl> + var skip = true ; <nl> + var lines = e . split ( ' \ n ' ) ; <nl> + var result = [ ] ; <nl> + $ . each ( lines , function ( idx ) { <nl> + var line = lines [ idx ] ; <nl> + if ( skip ) { <nl> + if ( line . includes ( ' Upcoming Events ' ) ) { <nl> + skip = false ; <nl> + } <nl> + } else { <nl> + if ( ! line ) { return ; } ; <nl> + line = line . split ( ' ] ( ' ) ; <nl> + var tail = line [ 1 ] . split ( ' ) ' ) ; <nl> + result . push ( <nl> + ' < a class = " announcement - link " rel = " external nofollow " target = " _blank " href = " ' + <nl> + tail [ 0 ] + ' " > ' + line [ 0 ] . replace ( ' * [ ' , ' ' ) . replace ( ' ClickHouse Meetup in ' , ' ' ) + <nl> + ' < / a > ' + tail [ 1 ] . slice ( 0 , - 1 ) <nl> + ) ; <nl> + } <nl> + } ) ; <nl> + if ( result . length ) { <nl> + if ( result . length = = 1 ) { <nl> + result = ' Upcoming Meetup : ' + result [ 0 ] ; <nl> + } else { <nl> + result = ' Upcoming Meetups : ' + result . join ( ' , ' ) ; <nl> + var offset = result . lastIndexOf ( ' , ' ) ; <nl> + result = result . slice ( 0 , offset ) + result . slice ( offset ) . replace ( ' , ' , ' and ' ) ; <nl> + } <nl> + $ ( ' # announcement > . page ' ) . html ( result ) ; <nl> + } <nl> + } ) ; <nl> var name = $ ( ' # main - title ' ) . text ( ) . trim ( ) . toLowerCase ( ) ; <nl> var feedback_address = name + ' - feedback ' + ' @ yandex - team . com ' ; <nl> var feedback_email = $ ( ' # feedback_email ' ) ; <nl>
Merge remote - tracking branch ' upstream / master ' into fix25
ClickHouse/ClickHouse
077ecdc24634110f0e7b017155360703734afa7b
2019-08-16T13:27:09Z
mmm a / xbmc / music / windows / GUIWindowMusicPlaylist . h <nl> ppp b / xbmc / music / windows / GUIWindowMusicPlaylist . h <nl> class CGUIWindowMusicPlayList : public CGUIWindowMusicBase <nl> void MoveItem ( int iStart , int iDest ) ; <nl> <nl> protected : <nl> - virtual void GoParentFolder ( ) override { } ; <nl> + virtual bool GoParentFolder ( ) override { return false ; } ; <nl> virtual void UpdateButtons ( ) override ; <nl> virtual void OnItemLoaded ( CFileItem * pItem ) override ; <nl> virtual bool Update ( const std : : string & strDirectory , bool updateFilterPath = true ) override ; <nl> mmm a / xbmc / windows / GUIMediaWindow . cpp <nl> ppp b / xbmc / windows / GUIMediaWindow . cpp <nl> bool CGUIMediaWindow : : OnAction ( const CAction & action ) <nl> bool CGUIMediaWindow : : OnBack ( int actionID ) <nl> { <nl> CURL filterUrl ( m_strFilterPath ) ; <nl> - if ( actionID = = ACTION_NAV_BACK & & ! m_vecItems - > IsVirtualDirectoryRoot ( ) & & <nl> + if ( actionID = = ACTION_NAV_BACK & & <nl> + ! m_vecItems - > IsVirtualDirectoryRoot ( ) & & <nl> + ! URIUtils : : PathEquals ( m_vecItems - > GetPath ( ) , GetRootPath ( ) , true ) & & <nl> ( ! URIUtils : : PathEquals ( m_vecItems - > GetPath ( ) , m_startDirectory , true ) | | ( m_canFilterAdvanced & & filterUrl . HasOption ( " filter " ) ) ) ) <nl> { <nl> - GoParentFolder ( ) ; <nl> - return true ; <nl> + if ( GoParentFolder ( ) ) <nl> + return true ; <nl> } <nl> return CGUIWindow : : OnBack ( actionID ) ; <nl> } <nl> bool CGUIMediaWindow : : OnMessage ( CGUIMessage & message ) <nl> } <nl> if ( message . GetParam1 ( ) ! = WINDOW_INVALID ) <nl> { / / first time to this window - make sure we set the root path <nl> - m_startDirectory = returning ? dir : " " ; <nl> + m_startDirectory = returning ? dir : GetRootPath ( ) ; <nl> } <nl> } <nl> break ; <nl> bool CGUIMediaWindow : : GetDirectory ( const std : : string & strDirectory , CFileItemLis <nl> / / update the view state ' s reference to the current items <nl> m_guiState . reset ( CGUIViewState : : GetViewState ( GetID ( ) , items ) ) ; <nl> <nl> - if ( m_guiState . get ( ) & & ! m_guiState - > HideParentDirItems ( ) & & ! items . GetPath ( ) . empty ( ) ) <nl> + if ( m_guiState . get ( ) & & ! m_guiState - > HideParentDirItems ( ) & & items . GetPath ( ) ! = GetRootPath ( ) ) <nl> { <nl> CFileItemPtr pItem ( new CFileItem ( " . . " ) ) ; <nl> pItem - > SetPath ( strParentPath ) ; <nl> bool CGUIMediaWindow : : GetDirectory ( const std : : string & strDirectory , CFileItemLis <nl> return true ; <nl> } <nl> <nl> - / / \ brief Set window to a specific directory <nl> - / / \ param strDirectory The directory to be displayed in list / thumb control <nl> - / / This function calls OnPrepareFileItems ( ) <nl> bool CGUIMediaWindow : : Update ( const std : : string & strDirectory , bool updateFilterPath / * = true * / ) <nl> { <nl> / / TODO : OnInitWindow calls Update ( ) before window path has been set properly . <nl> if ( strDirectory = = " ? " ) <nl> return false ; <nl> <nl> + / / The path to load . Empty string is used in various places to denote root , so translate to the <nl> + / / real root path first <nl> + const std : : string path = strDirectory . empty ( ) ? GetRootPath ( ) : strDirectory ; <nl> + <nl> / / stores the selected item in history <nl> SaveSelectedItemInHistory ( ) ; <nl> <nl> - std : : string strCurrentDirectory = m_vecItems - > GetPath ( ) ; <nl> - std : : string directory = strDirectory ; <nl> + const std : : string previousPath = m_vecItems - > GetPath ( ) ; <nl> + <nl> / / check if the path contains a filter and temporarily remove it <nl> / / so that the retrieved list of items is unfiltered <nl> - bool canfilter = CanContainFilter ( directory ) ; <nl> - CURL url ( directory ) ; <nl> - if ( canfilter & & url . HasOption ( " filter " ) ) <nl> - directory = RemoveParameterFromPath ( directory , " filter " ) ; <nl> + std : : string pathNoFilter = path ; <nl> + if ( CanContainFilter ( pathNoFilter ) & & CURL ( pathNoFilter ) . HasOption ( " filter " ) ) <nl> + pathNoFilter = RemoveParameterFromPath ( pathNoFilter , " filter " ) ; <nl> <nl> - if ( ! GetDirectory ( directory , * m_vecItems ) ) <nl> + if ( ! GetDirectory ( pathNoFilter , * m_vecItems ) ) <nl> { <nl> - CLog : : Log ( LOGERROR , " CGUIMediaWindow : : GetDirectory ( % s ) failed " , url . GetRedacted ( ) . c_str ( ) ) ; <nl> + CLog : : Log ( LOGERROR , " CGUIMediaWindow : : GetDirectory ( % s ) failed " , CURL ( path ) . GetRedacted ( ) . c_str ( ) ) ; <nl> + <nl> + if ( URIUtils : : PathEquals ( path , GetRootPath ( ) ) ) <nl> + return false ; / / Nothing to fallback to <nl> + <nl> / / Try to return to the previous directory , if not the same <nl> / / else fallback to root <nl> - if ( URIUtils : : PathEquals ( strDirectory , strCurrentDirectory ) | | ! Update ( m_history . RemoveParentPath ( ) ) ) <nl> + if ( URIUtils : : PathEquals ( path , previousPath ) | | ! Update ( m_history . RemoveParentPath ( ) ) ) <nl> Update ( " " ) ; / / Fallback to root <nl> <nl> / / Return false to be able to eg . show <nl> bool CGUIMediaWindow : : Update ( const std : : string & strDirectory , bool updateFilterP <nl> m_vecItems - > SetLabel ( CUtil : : GetTitleFromPath ( m_vecItems - > GetPath ( ) , true ) ) ; <nl> <nl> / / check the given path for filter data <nl> - UpdateFilterPath ( strDirectory , * m_vecItems , updateFilterPath ) ; <nl> + UpdateFilterPath ( path , * m_vecItems , updateFilterPath ) ; <nl> <nl> / / if we ' re getting the root source listing <nl> / / make sure the path history is clean <nl> - if ( strDirectory . empty ( ) ) <nl> + if ( URIUtils : : PathEquals ( path , GetRootPath ( ) ) ) <nl> m_history . ClearPathHistory ( ) ; <nl> <nl> int iWindow = GetID ( ) ; <nl> int showLabel = 0 ; <nl> - if ( strDirectory . empty ( ) ) <nl> + if ( URIUtils : : PathEquals ( path , GetRootPath ( ) ) ) <nl> { <nl> if ( iWindow = = WINDOW_PICTURES ) <nl> showLabel = 997 ; <nl> void CGUIMediaWindow : : ShowShareErrorMessage ( CFileItem * pItem ) <nl> } <nl> <nl> / / \ brief The functon goes up one level in the directory tree <nl> - void CGUIMediaWindow : : GoParentFolder ( ) <nl> + bool CGUIMediaWindow : : GoParentFolder ( ) <nl> { <nl> + if ( m_vecItems - > IsVirtualDirectoryRoot ( ) ) <nl> + return false ; <nl> + <nl> + if ( URIUtils : : PathEquals ( m_vecItems - > GetPath ( ) , GetRootPath ( ) ) ) <nl> + return false ; <nl> + <nl> / / m_history . DumpPathHistory ( ) ; <nl> <nl> - / / remove current directory if its on the stack <nl> - / / there were some issues due some folders having a trailing slash and some not <nl> - / / so just add a trailing slash to all of them for comparison . <nl> - std : : string strPath = m_vecItems - > GetPath ( ) ; <nl> - URIUtils : : AddSlashAtEnd ( strPath ) ; <nl> - std : : string strParent = m_history . GetParentPath ( ) ; <nl> + const std : : string currentPath = m_vecItems - > GetPath ( ) ; <nl> + std : : string parentPath = m_history . GetParentPath ( ) ; <nl> / / in case the path history is messed up and the current folder is on <nl> / / the stack more than once , keep going until there ' s nothing left or they <nl> / / dont match anymore . <nl> - while ( ! strParent . empty ( ) ) <nl> + while ( ! parentPath . empty ( ) & & URIUtils : : PathEquals ( parentPath , currentPath , true ) ) <nl> { <nl> - URIUtils : : AddSlashAtEnd ( strParent ) ; <nl> - if ( URIUtils : : PathEquals ( strParent , strPath ) ) <nl> - m_history . RemoveParentPath ( ) ; <nl> - else <nl> - break ; <nl> - strParent = m_history . GetParentPath ( ) ; <nl> + m_history . RemoveParentPath ( ) ; <nl> + parentPath = m_history . GetParentPath ( ) ; <nl> } <nl> <nl> / / remove the current filter but only if the parent <nl> void CGUIMediaWindow : : GoParentFolder ( ) <nl> / / Refresh ( ) will set updateFilterPath to false <nl> m_strFilterPath . clear ( ) ; <nl> Refresh ( ) ; <nl> - return ; <nl> + return true ; <nl> } <nl> } <nl> <nl> - / / if vector is not empty , pop parent <nl> - / / if vector is empty , parent is root source listing <nl> + / / pop directory path from the stack <nl> m_strFilterPath = m_history . GetParentPath ( true ) ; <nl> - strParent = m_history . RemoveParentPath ( ) ; <nl> - if ( ! Update ( strParent , false ) ) <nl> - return ; <nl> + m_history . RemoveParentPath ( ) ; <nl> + <nl> + if ( ! Update ( parentPath , false ) ) <nl> + return false ; <nl> <nl> / / No items to show so go another level up <nl> if ( ! m_vecItems - > GetPath ( ) . empty ( ) & & ( m_filter . IsEmpty ( ) ? m_vecItems - > Size ( ) : m_unfilteredItems - > Size ( ) ) < = 0 ) <nl> { <nl> CGUIDialogKaiToast : : QueueNotification ( CGUIDialogKaiToast : : Info , g_localizeStrings . Get ( 2080 ) , g_localizeStrings . Get ( 2081 ) ) ; <nl> - GoParentFolder ( ) ; <nl> + return GoParentFolder ( ) ; <nl> } <nl> + return true ; <nl> } <nl> <nl> void CGUIMediaWindow : : SaveSelectedItemInHistory ( ) <nl> mmm a / xbmc / windows / GUIMediaWindow . h <nl> ppp b / xbmc / windows / GUIMediaWindow . h <nl> class CGUIMediaWindow : public CGUIWindow <nl> virtual bool IsFiltered ( ) ; <nl> virtual bool IsSameStartFolder ( const std : : string & dir ) ; <nl> <nl> + virtual std : : string GetRootPath ( ) const { return " " ; } <nl> + <nl> const CFileItemList & CurrentDirectory ( ) const ; <nl> const CGUIViewState * GetViewState ( ) const ; <nl> <nl> class CGUIMediaWindow : public CGUIWindow <nl> <nl> / / custom methods <nl> virtual void SetupShares ( ) ; <nl> - virtual void GoParentFolder ( ) ; <nl> + virtual bool GoParentFolder ( ) ; <nl> virtual bool OnClick ( int iItem , const std : : string & player = " " ) ; <nl> <nl> / * \ brief React to a " Select " action on an item in a view . <nl>
[ gui ] allow using vfs as root in media windows
xbmc/xbmc
eaf43f08cd1c77fde8af73431f7cc8b37f27e78e
2016-03-17T12:08:10Z
mmm a / lib / Sema / CSApply . cpp <nl> ppp b / lib / Sema / CSApply . cpp <nl> Optional < SolutionApplicationTarget > ConstraintSystem : : applySolution ( <nl> <nl> solution . setExprTypes ( resultExpr ) ; <nl> result . setExpr ( resultExpr ) ; <nl> + <nl> + if ( Context . TypeCheckerOpts . DebugConstraintSolver ) { <nl> + auto & log = Context . TypeCheckerDebug - > getStream ( ) ; <nl> + log < < " mmmType - checked expressionmmm \ n " ; <nl> + resultExpr - > dump ( log ) ; <nl> + log < < " \ n " ; <nl> + } <nl> } <nl> <nl> rewriter . finalize ( ) ; <nl> mmm a / lib / Sema / CSGen . cpp <nl> ppp b / lib / Sema / CSGen . cpp <nl> bool ConstraintSystem : : generateConstraints ( <nl> SolutionApplicationTarget & target , <nl> FreeTypeVariableBinding allowFreeTypeVariables ) { <nl> if ( Expr * expr = target . getAsExpr ( ) ) { <nl> - / / Try to shrink the system by reducing disjunction domains . This <nl> - / / goes through every sub - expression and generate its own sub - system , to <nl> - / / try to reduce the domains of those subexpressions . <nl> - shrink ( expr ) ; <nl> - target . setExpr ( expr ) ; <nl> + / / If the target requires an optional of some type , form a new appropriate <nl> + / / type variable and update the target ' s type with an optional of that <nl> + / / type variable . <nl> + if ( target . isOptionalSomePatternInit ( ) ) { <nl> + assert ( ! target . getExprContextualType ( ) & & <nl> + " some pattern cannot have contextual type pre - configured " ) ; <nl> + auto * convertTypeLocator = <nl> + getConstraintLocator ( expr , LocatorPathElt : : ContextualType ( ) ) ; <nl> + Type var = createTypeVariable ( convertTypeLocator , TVO_CanBindToNoEscape ) ; <nl> + target . setExprConversionType ( TypeChecker : : getOptionalType ( expr - > getLoc ( ) , var ) ) ; <nl> + } <nl> <nl> / / Generate constraints for the main system . <nl> expr = generateConstraints ( expr , target . getDeclContext ( ) ) ; <nl> bool ConstraintSystem : : generateConstraints ( <nl> return true ; <nl> } <nl> <nl> + if ( getASTContext ( ) . TypeCheckerOpts . DebugConstraintSolver ) { <nl> + auto & log = getASTContext ( ) . TypeCheckerDebug - > getStream ( ) ; <nl> + log < < " mmmInitial constraints for the given expressionmmm \ n " ; <nl> + print ( log , expr ) ; <nl> + log < < " \ n " ; <nl> + print ( log ) ; <nl> + } <nl> + <nl> return false ; <nl> } <nl> <nl> mmm a / lib / Sema / CSSolver . cpp <nl> ppp b / lib / Sema / CSSolver . cpp <nl> ConstraintSystem : : solveImpl ( SolutionApplicationTarget & target , <nl> return SolutionResult : : forError ( ) ; ; <nl> <nl> / / Notify the listener that we ' ve built the constraint system . <nl> - Expr * expr = target . getAsExpr ( ) ; <nl> - if ( listener & & listener - > builtConstraints ( * this , expr ) ) { <nl> - return SolutionResult : : forError ( ) ; <nl> - } <nl> - <nl> - if ( getASTContext ( ) . TypeCheckerOpts . DebugConstraintSolver ) { <nl> - auto & log = getASTContext ( ) . TypeCheckerDebug - > getStream ( ) ; <nl> - log < < " mmmInitial constraints for the given expressionmmm \ n " ; <nl> - print ( log , expr ) ; <nl> - log < < " \ n " ; <nl> - print ( log ) ; <nl> + if ( Expr * expr = target . getAsExpr ( ) ) { <nl> + if ( listener & & listener - > builtConstraints ( * this , expr ) ) { <nl> + return SolutionResult : : forError ( ) ; <nl> + } <nl> } <nl> <nl> / / Try to solve the constraint system using computed suggestions . <nl> ConstraintSystem : : solveImpl ( SolutionApplicationTarget & target , <nl> if ( getExpressionTooComplex ( solutions ) ) <nl> return SolutionResult : : forTooComplex ( ) ; <nl> <nl> - target . setExpr ( expr ) ; <nl> - <nl> switch ( solutions . size ( ) ) { <nl> case 0 : <nl> return SolutionResult : : forUndiagnosedError ( ) ; <nl> mmm a / lib / Sema / TypeCheckConstraints . cpp <nl> ppp b / lib / Sema / TypeCheckConstraints . cpp <nl> TypeChecker : : typeCheckExpression ( <nl> target . getExprContextualTypeLoc ( ) , <nl> target . getExprContextualTypePurpose ( ) ) ; <nl> <nl> + / / Try to shrink the system by reducing disjunction domains . This <nl> + / / goes through every sub - expression and generate its own sub - system , to <nl> + / / try to reduce the domains of those subexpressions . <nl> + cs . shrink ( expr ) ; <nl> + target . setExpr ( expr ) ; <nl> + <nl> / / If the client can handle unresolved type variables , leave them in the <nl> / / system . <nl> auto allowFreeTypeVariables = FreeTypeVariableBinding : : Disallow ; <nl> if ( options . contains ( TypeCheckExprFlags : : AllowUnresolvedTypeVariables ) ) <nl> allowFreeTypeVariables = FreeTypeVariableBinding : : UnresolvedType ; <nl> <nl> - / / If the target requires an optional of some type , form a new appropriate <nl> - / / type variable and update the target ' s type with an optional of that <nl> - / / type variable . <nl> - if ( target . isOptionalSomePatternInit ( ) ) { <nl> - assert ( ! target . getExprContextualType ( ) & & <nl> - " some pattern cannot have contextual type pre - configured " ) ; <nl> - auto * convertTypeLocator = <nl> - cs . getConstraintLocator ( expr , LocatorPathElt : : ContextualType ( ) ) ; <nl> - Type var = cs . createTypeVariable ( convertTypeLocator , TVO_CanBindToNoEscape ) ; <nl> - target . setExprConversionType ( getOptionalType ( expr - > getLoc ( ) , var ) ) ; <nl> - } <nl> - <nl> / / Attempt to solve the constraint system . <nl> auto viable = cs . solve ( target , listener , allowFreeTypeVariables ) ; <nl> if ( ! viable ) { <nl> TypeChecker : : typeCheckExpression ( <nl> return None ; <nl> } <nl> <nl> - if ( Context . TypeCheckerOpts . DebugConstraintSolver ) { <nl> - auto & log = Context . TypeCheckerDebug - > getStream ( ) ; <nl> - log < < " mmmType - checked expressionmmm \ n " ; <nl> - result - > dump ( log ) ; <nl> - log < < " \ n " ; <nl> - } <nl> - <nl> / / Unless the client has disabled them , perform syntactic checks on the <nl> / / expression now . <nl> if ( ! cs . shouldSuppressDiagnostics ( ) & & <nl>
Merge pull request from DougGregor / more - sinking
apple/swift
8b5a639769a87616fdc6c8fe8c536b85919924df
2020-02-12T04:13:38Z
mmm a / src / tga <nl> ppp b / src / tga <nl> @ @ - 1 + 1 @ @ <nl> - Subproject commit e3f86799a6bc45e106d7f7c7f322dee81893ba3e <nl> + Subproject commit e0b7d3a032ab7e93fad95062f1ac325210d626ee <nl>
Update tga module
aseprite/aseprite
2a0751c6ddbc0c592bdd50468982130f5056a489
2020-03-25T22:09:55Z
mmm a / src / compiler - dispatcher / optimizing - compile - dispatcher . cc <nl> ppp b / src / compiler - dispatcher / optimizing - compile - dispatcher . cc <nl> OptimizedCompilationJob * OptimizingCompileDispatcher : : NextInput ( <nl> input_queue_shift_ = InputQueueIndex ( 1 ) ; <nl> input_queue_length_ - - ; <nl> if ( check_if_flushing ) { <nl> - if ( static_cast < ModeFlag > ( base : : Acquire_Load ( & mode_ ) ) = = FLUSH ) { <nl> + if ( mode_ = = FLUSH ) { <nl> AllowHandleDereference allow_handle_dereference ; <nl> DisposeCompilationJob ( job , true ) ; <nl> return nullptr ; <nl> void OptimizingCompileDispatcher : : Flush ( BlockingBehavior blocking_behavior ) { <nl> } <nl> return ; <nl> } <nl> - base : : Release_Store ( & mode_ , static_cast < base : : AtomicWord > ( FLUSH ) ) ; <nl> + mode_ = FLUSH ; <nl> if ( FLAG_block_concurrent_recompilation ) Unblock ( ) ; <nl> { <nl> base : : MutexGuard lock_guard ( & ref_count_mutex_ ) ; <nl> while ( ref_count_ > 0 ) ref_count_zero_ . Wait ( & ref_count_mutex_ ) ; <nl> - base : : Release_Store ( & mode_ , static_cast < base : : AtomicWord > ( COMPILE ) ) ; <nl> + mode_ = COMPILE ; <nl> } <nl> FlushOutputQueue ( true ) ; <nl> if ( FLAG_trace_concurrent_recompilation ) { <nl> void OptimizingCompileDispatcher : : Flush ( BlockingBehavior blocking_behavior ) { <nl> } <nl> <nl> void OptimizingCompileDispatcher : : Stop ( ) { <nl> - base : : Release_Store ( & mode_ , static_cast < base : : AtomicWord > ( FLUSH ) ) ; <nl> + mode_ = FLUSH ; <nl> if ( FLAG_block_concurrent_recompilation ) Unblock ( ) ; <nl> { <nl> base : : MutexGuard lock_guard ( & ref_count_mutex_ ) ; <nl> while ( ref_count_ > 0 ) ref_count_zero_ . Wait ( & ref_count_mutex_ ) ; <nl> - base : : Release_Store ( & mode_ , static_cast < base : : AtomicWord > ( COMPILE ) ) ; <nl> + mode_ = COMPILE ; <nl> } <nl> <nl> if ( recompilation_delay_ ! = 0 ) { <nl> mmm a / src / compiler - dispatcher / optimizing - compile - dispatcher . h <nl> ppp b / src / compiler - dispatcher / optimizing - compile - dispatcher . h <nl> <nl> # ifndef V8_COMPILER_DISPATCHER_OPTIMIZING_COMPILE_DISPATCHER_H_ <nl> # define V8_COMPILER_DISPATCHER_OPTIMIZING_COMPILE_DISPATCHER_H_ <nl> <nl> + # include < atomic > <nl> # include < queue > <nl> <nl> # include " src / allocation . h " <nl> - # include " src / base / atomicops . h " <nl> # include " src / base / platform / condition - variable . h " <nl> # include " src / base / platform / mutex . h " <nl> # include " src / base / platform / platform . h " <nl> class V8_EXPORT_PRIVATE OptimizingCompileDispatcher { <nl> input_queue_capacity_ ( FLAG_concurrent_recompilation_queue_length ) , <nl> input_queue_length_ ( 0 ) , <nl> input_queue_shift_ ( 0 ) , <nl> + mode_ ( COMPILE ) , <nl> blocked_jobs_ ( 0 ) , <nl> ref_count_ ( 0 ) , <nl> recompilation_delay_ ( FLAG_concurrent_recompilation_delay ) { <nl> - base : : Relaxed_Store ( & mode_ , static_cast < base : : AtomicWord > ( COMPILE ) ) ; <nl> input_queue_ = NewArray < OptimizedCompilationJob * > ( input_queue_capacity_ ) ; <nl> } <nl> <nl> class V8_EXPORT_PRIVATE OptimizingCompileDispatcher { <nl> / / different threads . <nl> base : : Mutex output_queue_mutex_ ; <nl> <nl> - volatile base : : AtomicWord mode_ ; <nl> + std : : atomic < ModeFlag > mode_ ; <nl> <nl> int blocked_jobs_ ; <nl> <nl>
Use std : : atomic in optimizing compiler dispatcher .
v8/v8
3f022dd4f6fdfd6895cc85c2b43c87c255ef1a7d
2018-11-09T08:15:48Z
mmm a / examples / vue / components / list . vue <nl> ppp b / examples / vue / components / list . vue <nl> <nl> append = " tree " <nl> : index = " i " <nl> class = " row " <nl> - @ appear = " onappear " <nl> - @ disappear = " ondisappear " > <nl> + @ appear = " onappear ( i , $ event ) " <nl> + @ disappear = " ondisappear ( i , $ event ) " > <nl> < div class = " item " > <nl> < text class = " item - title " > row { { v . id } } < / text > <nl> < / div > <nl> <nl> < script > <nl> module . exports = { <nl> methods : { <nl> - onappear : function ( e ) { <nl> - var appearId = this . rows [ e . target . attr . index ] . id ; <nl> - nativeLog ( ' ppp + + ' , appearId ) ; <nl> + onappear : function ( idx , e ) { <nl> + var appearId = this . rows [ idx ] . id ; <nl> + console . log ( ' ppp + + ' , appearId ) ; <nl> var appearIds = this . appearIds ; <nl> appearIds . push ( appearId ) ; <nl> this . getMinAndMaxIds ( appearIds ) ; <nl> } , <nl> - ondisappear : function ( e ) { <nl> - var disAppearId = this . rows [ e . target . attr . index ] . id ; <nl> - nativeLog ( ' ppp + + ' , disAppearId ) ; <nl> + ondisappear : function ( idx , e ) { <nl> + var disAppearId = this . rows [ idx ] . id ; <nl> + console . log ( ' ppp + + ' , disAppearId ) ; <nl> var appearIds = this . appearIds ; <nl> var index = appearIds . indexOf ( disAppearId ) ; <nl> if ( index > - 1 ) { <nl>
Merge pull request from MrRaindrop / html5 - bugfix - list
apache/incubator-weex
295abd688f718e9353dcedb3bcd7a2d0c9de605f
2017-03-06T07:40:31Z
mmm a / src / ic . cc <nl> ppp b / src / ic . cc <nl> Handle < Code > LoadIC : : SimpleFieldLoad ( int offset , <nl> } <nl> } <nl> <nl> + <nl> void LoadIC : : UpdateCaches ( LookupResult * lookup , <nl> Handle < Object > object , <nl> Handle < String > name ) { <nl> mmm a / src / stub - cache . h <nl> ppp b / src / stub - cache . h <nl> class StubCache { <nl> <nl> / / mmm <nl> <nl> - Handle < Code > ComputeKeyedLoadField ( Handle < Name > name , <nl> - Handle < JSObject > object , <nl> - Handle < JSObject > holder , <nl> - PropertyIndex field_index , <nl> - Representation representation ) ; <nl> - <nl> - Handle < Code > ComputeKeyedLoadCallback ( <nl> - Handle < Name > name , <nl> - Handle < JSObject > object , <nl> - Handle < JSObject > holder , <nl> - Handle < ExecutableAccessorInfo > callback ) ; <nl> - <nl> - Handle < Code > ComputeKeyedLoadCallback ( <nl> - Handle < Name > name , <nl> - Handle < JSObject > object , <nl> - Handle < JSObject > holder , <nl> - const CallOptimization & call_optimization ) ; <nl> - <nl> - Handle < Code > ComputeKeyedLoadConstant ( Handle < Name > name , <nl> - Handle < JSObject > object , <nl> - Handle < JSObject > holder , <nl> - Handle < Object > value ) ; <nl> - <nl> - Handle < Code > ComputeKeyedLoadInterceptor ( Handle < Name > name , <nl> - Handle < JSObject > object , <nl> - Handle < JSObject > holder ) ; <nl> - <nl> Handle < Code > ComputeKeyedLoadElement ( Handle < Map > receiver_map ) ; <nl> <nl> Handle < Code > ComputeKeyedStoreElement ( Handle < Map > receiver_map , <nl>
Cleanup stub - cache ' s obsolete ComputeLoad / Store interface .
v8/v8
1813231c97c27e5a3879c67c2b07a78b4f2ad09a
2013-11-07T10:52:41Z
mmm a / src / cascadia / TerminalSettings / TerminalSettings . cpp <nl> ppp b / src / cascadia / TerminalSettings / TerminalSettings . cpp <nl> <nl> <nl> # include " pch . h " <nl> # include " TerminalSettings . h " <nl> - # include < DefaultSettings . h > <nl> <nl> # include " TerminalSettings . g . cpp " <nl> <nl> namespace winrt : : Microsoft : : Terminal : : Settings : : implementation <nl> { <nl> - / / Disable " default constructor may not throw . " <nl> - / / We put default values into the hstrings here , which allocates and could throw . <nl> - / / Working around that situation is more headache than it ' s worth at the moment . <nl> - # pragma warning ( suppress : 26455 ) <nl> - TerminalSettings : : TerminalSettings ( ) : <nl> - _defaultForeground { DEFAULT_FOREGROUND_WITH_ALPHA } , <nl> - _defaultBackground { DEFAULT_BACKGROUND_WITH_ALPHA } , <nl> - _selectionBackground { DEFAULT_FOREGROUND } , <nl> - _colorTable { } , <nl> - _historySize { DEFAULT_HISTORY_SIZE } , <nl> - _initialRows { 30 } , <nl> - _initialCols { 80 } , <nl> - _rowsToScroll { 0 } , <nl> - _snapOnInput { true } , <nl> - _cursorColor { DEFAULT_CURSOR_COLOR } , <nl> - _cursorShape { CursorStyle : : Vintage } , <nl> - _cursorHeight { DEFAULT_CURSOR_HEIGHT } , <nl> - _wordDelimiters { DEFAULT_WORD_DELIMITERS } , <nl> - _copyOnSelect { false } , <nl> - _profileName { } , <nl> - _useAcrylic { false } , <nl> - _tintOpacity { 0 . 5 } , <nl> - _padding { DEFAULT_PADDING } , <nl> - _fontFace { DEFAULT_FONT_FACE } , <nl> - _fontSize { DEFAULT_FONT_SIZE } , <nl> - _fontWeight { DEFAULT_FONT_WEIGHT } , <nl> - _backgroundImage { } , <nl> - _backgroundImageOpacity { 1 . 0 } , <nl> - _backgroundImageStretchMode { winrt : : Windows : : UI : : Xaml : : Media : : Stretch : : UniformToFill } , <nl> - _backgroundImageHorizontalAlignment { winrt : : Windows : : UI : : Xaml : : HorizontalAlignment : : Center } , <nl> - _backgroundImageVerticalAlignment { winrt : : Windows : : UI : : Xaml : : VerticalAlignment : : Center } , <nl> - _keyBindings { nullptr } , <nl> - _scrollbarState { ScrollbarState : : Visible } , <nl> - _antialiasingMode { TextAntialiasingMode : : Grayscale } , <nl> - _forceFullRepaintRendering { false } , <nl> - _softwareRendering { false } <nl> - { <nl> - } <nl> - <nl> - uint32_t TerminalSettings : : DefaultForeground ( ) noexcept <nl> - { <nl> - return _defaultForeground ; <nl> - } <nl> - <nl> - void TerminalSettings : : DefaultForeground ( uint32_t value ) noexcept <nl> - { <nl> - _defaultForeground = value ; <nl> - } <nl> - <nl> - uint32_t TerminalSettings : : DefaultBackground ( ) noexcept <nl> - { <nl> - return _defaultBackground ; <nl> - } <nl> - <nl> - void TerminalSettings : : DefaultBackground ( uint32_t value ) noexcept <nl> - { <nl> - _defaultBackground = value ; <nl> - } <nl> - <nl> - uint32_t TerminalSettings : : SelectionBackground ( ) noexcept <nl> - { <nl> - return _selectionBackground ; <nl> - } <nl> - <nl> - void TerminalSettings : : SelectionBackground ( uint32_t value ) noexcept <nl> - { <nl> - _selectionBackground = value ; <nl> - } <nl> - <nl> uint32_t TerminalSettings : : GetColorTableEntry ( int32_t index ) const noexcept <nl> { <nl> return _colorTable . at ( index ) ; <nl> namespace winrt : : Microsoft : : Terminal : : Settings : : implementation <nl> _colorTable . at ( index ) = value ; <nl> } <nl> <nl> - int32_t TerminalSettings : : HistorySize ( ) noexcept <nl> - { <nl> - return _historySize ; <nl> - } <nl> - <nl> - void TerminalSettings : : HistorySize ( int32_t value ) noexcept <nl> - { <nl> - _historySize = value ; <nl> - } <nl> - <nl> - int32_t TerminalSettings : : InitialRows ( ) noexcept <nl> - { <nl> - return _initialRows ; <nl> - } <nl> - <nl> - void TerminalSettings : : InitialRows ( int32_t value ) noexcept <nl> - { <nl> - _initialRows = value ; <nl> - } <nl> - <nl> - int32_t TerminalSettings : : InitialCols ( ) noexcept <nl> - { <nl> - return _initialCols ; <nl> - } <nl> - <nl> - void TerminalSettings : : InitialCols ( int32_t value ) noexcept <nl> - { <nl> - _initialCols = value ; <nl> - } <nl> - <nl> int32_t TerminalSettings : : RowsToScroll ( ) noexcept <nl> { <nl> if ( _rowsToScroll ! = 0 ) <nl> namespace winrt : : Microsoft : : Terminal : : Settings : : implementation <nl> _rowsToScroll = value ; <nl> } <nl> <nl> - bool TerminalSettings : : SnapOnInput ( ) noexcept <nl> - { <nl> - return _snapOnInput ; <nl> - } <nl> - <nl> - void TerminalSettings : : SnapOnInput ( bool value ) noexcept <nl> - { <nl> - _snapOnInput = value ; <nl> - } <nl> - <nl> - uint32_t TerminalSettings : : CursorColor ( ) noexcept <nl> - { <nl> - return _cursorColor ; <nl> - } <nl> - <nl> - void TerminalSettings : : CursorColor ( uint32_t value ) noexcept <nl> - { <nl> - _cursorColor = value ; <nl> - } <nl> - <nl> - Settings : : CursorStyle TerminalSettings : : CursorShape ( ) const noexcept <nl> - { <nl> - return _cursorShape ; <nl> - } <nl> - <nl> - void TerminalSettings : : CursorShape ( Settings : : CursorStyle const & value ) noexcept <nl> - { <nl> - _cursorShape = value ; <nl> - } <nl> - <nl> - uint32_t TerminalSettings : : CursorHeight ( ) noexcept <nl> - { <nl> - return _cursorHeight ; <nl> - } <nl> - <nl> - void TerminalSettings : : CursorHeight ( uint32_t value ) noexcept <nl> - { <nl> - _cursorHeight = value ; <nl> - } <nl> - <nl> - hstring TerminalSettings : : WordDelimiters ( ) <nl> - { <nl> - return _wordDelimiters ; <nl> - } <nl> - <nl> - void TerminalSettings : : WordDelimiters ( hstring const & value ) <nl> - { <nl> - _wordDelimiters = value ; <nl> - } <nl> - <nl> - bool TerminalSettings : : CopyOnSelect ( ) noexcept <nl> - { <nl> - return _copyOnSelect ; <nl> - } <nl> - <nl> - void TerminalSettings : : CopyOnSelect ( bool value ) noexcept <nl> - { <nl> - _copyOnSelect = value ; <nl> - } <nl> - <nl> - void TerminalSettings : : ProfileName ( hstring const & value ) <nl> - { <nl> - _profileName = value ; <nl> - } <nl> - <nl> - hstring TerminalSettings : : ProfileName ( ) <nl> - { <nl> - return _profileName ; <nl> - } <nl> - <nl> - bool TerminalSettings : : UseAcrylic ( ) noexcept <nl> - { <nl> - return _useAcrylic ; <nl> - } <nl> - <nl> - void TerminalSettings : : UseAcrylic ( bool value ) noexcept <nl> - { <nl> - _useAcrylic = value ; <nl> - } <nl> - <nl> - double TerminalSettings : : TintOpacity ( ) noexcept <nl> - { <nl> - return _tintOpacity ; <nl> - } <nl> - <nl> - void TerminalSettings : : TintOpacity ( double value ) noexcept <nl> - { <nl> - _tintOpacity = value ; <nl> - } <nl> - <nl> - hstring TerminalSettings : : Padding ( ) <nl> - { <nl> - return _padding ; <nl> - } <nl> - <nl> - void TerminalSettings : : Padding ( hstring value ) <nl> - { <nl> - _padding = value ; <nl> - } <nl> - <nl> - hstring TerminalSettings : : FontFace ( ) <nl> - { <nl> - return _fontFace ; <nl> - } <nl> - <nl> - void TerminalSettings : : FontFace ( hstring const & value ) <nl> - { <nl> - _fontFace = value ; <nl> - } <nl> - <nl> - int32_t TerminalSettings : : FontSize ( ) noexcept <nl> - { <nl> - return _fontSize ; <nl> - } <nl> - <nl> - void TerminalSettings : : FontSize ( int32_t value ) noexcept <nl> - { <nl> - _fontSize = value ; <nl> - } <nl> - <nl> - winrt : : Windows : : UI : : Text : : FontWeight TerminalSettings : : FontWeight ( ) noexcept <nl> - { <nl> - return _fontWeight ; <nl> - } <nl> - <nl> - void TerminalSettings : : FontWeight ( winrt : : Windows : : UI : : Text : : FontWeight value ) noexcept <nl> - { <nl> - _fontWeight = value ; <nl> - } <nl> - <nl> - void TerminalSettings : : BackgroundImage ( hstring const & value ) <nl> - { <nl> - _backgroundImage = value ; <nl> - } <nl> - <nl> - hstring TerminalSettings : : BackgroundImage ( ) <nl> - { <nl> - return _backgroundImage ; <nl> - } <nl> - <nl> - void TerminalSettings : : BackgroundImageOpacity ( double value ) noexcept <nl> - { <nl> - _backgroundImageOpacity = value ; <nl> - } <nl> - <nl> - double TerminalSettings : : BackgroundImageOpacity ( ) noexcept <nl> - { <nl> - return _backgroundImageOpacity ; <nl> - } <nl> - <nl> - winrt : : Windows : : UI : : Xaml : : Media : : Stretch TerminalSettings : : BackgroundImageStretchMode ( ) noexcept <nl> - { <nl> - return _backgroundImageStretchMode ; <nl> - } <nl> - <nl> - void TerminalSettings : : BackgroundImageStretchMode ( winrt : : Windows : : UI : : Xaml : : Media : : Stretch value ) noexcept <nl> - { <nl> - _backgroundImageStretchMode = value ; <nl> - } <nl> - <nl> - winrt : : Windows : : UI : : Xaml : : HorizontalAlignment TerminalSettings : : BackgroundImageHorizontalAlignment ( ) noexcept <nl> - { <nl> - return _backgroundImageHorizontalAlignment ; <nl> - } <nl> - <nl> - void TerminalSettings : : BackgroundImageHorizontalAlignment ( winrt : : Windows : : UI : : Xaml : : HorizontalAlignment value ) noexcept <nl> - { <nl> - _backgroundImageHorizontalAlignment = value ; <nl> - } <nl> - <nl> - winrt : : Windows : : UI : : Xaml : : VerticalAlignment TerminalSettings : : BackgroundImageVerticalAlignment ( ) noexcept <nl> - { <nl> - return _backgroundImageVerticalAlignment ; <nl> - } <nl> - <nl> - void TerminalSettings : : BackgroundImageVerticalAlignment ( winrt : : Windows : : UI : : Xaml : : VerticalAlignment value ) noexcept <nl> - { <nl> - _backgroundImageVerticalAlignment = value ; <nl> - } <nl> - <nl> - Settings : : IKeyBindings TerminalSettings : : KeyBindings ( ) noexcept <nl> - { <nl> - return _keyBindings ; <nl> - } <nl> - <nl> - void TerminalSettings : : KeyBindings ( Settings : : IKeyBindings const & value ) noexcept <nl> - { <nl> - _keyBindings = value ; <nl> - } <nl> - <nl> - hstring TerminalSettings : : Commandline ( ) <nl> - { <nl> - return _commandline ; <nl> - } <nl> - <nl> - void TerminalSettings : : Commandline ( hstring const & value ) <nl> - { <nl> - _commandline = value ; <nl> - } <nl> - <nl> - hstring TerminalSettings : : StartingDirectory ( ) <nl> - { <nl> - return _startingDir ; <nl> - } <nl> - <nl> - void TerminalSettings : : StartingDirectory ( hstring const & value ) <nl> - { <nl> - _startingDir = value ; <nl> - } <nl> - <nl> - hstring TerminalSettings : : StartingTitle ( ) <nl> - { <nl> - return _startingTitle ; <nl> - } <nl> - <nl> - void TerminalSettings : : StartingTitle ( hstring const & value ) <nl> - { <nl> - _startingTitle = value ; <nl> - } <nl> - <nl> - bool TerminalSettings : : SuppressApplicationTitle ( ) noexcept <nl> - { <nl> - return _suppressApplicationTitle ; <nl> - } <nl> - <nl> - void TerminalSettings : : SuppressApplicationTitle ( bool value ) noexcept <nl> - { <nl> - _suppressApplicationTitle = value ; <nl> - } <nl> - <nl> - hstring TerminalSettings : : EnvironmentVariables ( ) <nl> - { <nl> - return _envVars ; <nl> - } <nl> - <nl> - void TerminalSettings : : EnvironmentVariables ( hstring const & value ) <nl> - { <nl> - _envVars = value ; <nl> - } <nl> - <nl> - Settings : : ScrollbarState TerminalSettings : : ScrollState ( ) const noexcept <nl> - { <nl> - return _scrollbarState ; <nl> - } <nl> - <nl> - void TerminalSettings : : ScrollState ( Settings : : ScrollbarState const & value ) noexcept <nl> - { <nl> - _scrollbarState = value ; <nl> - } <nl> - <nl> - bool TerminalSettings : : RetroTerminalEffect ( ) noexcept <nl> - { <nl> - return _retroTerminalEffect ; <nl> - } <nl> - <nl> - void TerminalSettings : : RetroTerminalEffect ( bool value ) noexcept <nl> - { <nl> - _retroTerminalEffect = value ; <nl> - } <nl> - <nl> - bool TerminalSettings : : ForceFullRepaintRendering ( ) noexcept <nl> - { <nl> - return _forceFullRepaintRendering ; <nl> - } <nl> - <nl> - void TerminalSettings : : ForceFullRepaintRendering ( bool value ) noexcept <nl> - { <nl> - _forceFullRepaintRendering = value ; <nl> - } <nl> - <nl> - bool TerminalSettings : : SoftwareRendering ( ) noexcept <nl> - { <nl> - return _softwareRendering ; <nl> - } <nl> - <nl> - void TerminalSettings : : SoftwareRendering ( bool value ) noexcept <nl> - { <nl> - _softwareRendering = value ; <nl> - } <nl> - <nl> - Settings : : TextAntialiasingMode TerminalSettings : : AntialiasingMode ( ) const noexcept <nl> - { <nl> - return _antialiasingMode ; <nl> - } <nl> - <nl> - void TerminalSettings : : AntialiasingMode ( const Settings : : TextAntialiasingMode & value ) noexcept <nl> - { <nl> - _antialiasingMode = value ; <nl> - } <nl> - <nl> } <nl> mmm a / src / cascadia / TerminalSettings / terminalsettings . h <nl> ppp b / src / cascadia / TerminalSettings / terminalsettings . h <nl> Author ( s ) : <nl> - - * / <nl> # pragma once <nl> <nl> - # include < conattrs . hpp > <nl> # include " TerminalSettings . g . h " <nl> + # include " . . / inc / cppwinrt_utils . h " <nl> + # include < DefaultSettings . h > <nl> + # include < conattrs . hpp > <nl> <nl> namespace winrt : : Microsoft : : Terminal : : Settings : : implementation <nl> { <nl> struct TerminalSettings : TerminalSettingsT < TerminalSettings > <nl> { <nl> - TerminalSettings ( ) ; <nl> - <nl> + TerminalSettings ( ) = default ; <nl> + <nl> + / / TECHNICALLY , the hstring copy assignment can throw , but the GETSET_PROPERTY <nl> + / / macro defines the operator as ` noexcept ` . We ' re not really worried about it , <nl> + / / because the only time it will throw is when we ' re out of memory , and then <nl> + / / we ' ve got much worse problems . So just suppress that warning for now . <nl> + # pragma warning ( push ) <nl> + # pragma warning ( disable : 26447 ) <nl> / / mmmmmmmmmmmmmmmmmmmmmmmmmmm Core Settings mmmmmmmmmmmmmmmmmmmmmmmmmmm <nl> / / All of these settings are defined in ICoreSettings . <nl> - uint32_t DefaultForeground ( ) noexcept ; <nl> - void DefaultForeground ( uint32_t value ) noexcept ; <nl> - uint32_t DefaultBackground ( ) noexcept ; <nl> - void DefaultBackground ( uint32_t value ) noexcept ; <nl> - uint32_t SelectionBackground ( ) noexcept ; <nl> - void SelectionBackground ( uint32_t value ) noexcept ; <nl> + <nl> + / / Get / Set ColorTableEntry needs to be implemented manually , to get a <nl> + / / particular value from the array . <nl> uint32_t GetColorTableEntry ( int32_t index ) const noexcept ; <nl> void SetColorTableEntry ( int32_t index , uint32_t value ) ; <nl> - int32_t HistorySize ( ) noexcept ; <nl> - void HistorySize ( int32_t value ) noexcept ; <nl> - int32_t InitialRows ( ) noexcept ; <nl> - void InitialRows ( int32_t value ) noexcept ; <nl> - int32_t InitialCols ( ) noexcept ; <nl> - void InitialCols ( int32_t value ) noexcept ; <nl> + <nl> + / / the RowsToScroll getter needs to be implemented manually , so it can <nl> + / / default to SPI_GETWHEELSCROLLLINES <nl> int32_t RowsToScroll ( ) noexcept ; <nl> void RowsToScroll ( int32_t value ) noexcept ; <nl> - bool SnapOnInput ( ) noexcept ; <nl> - void SnapOnInput ( bool value ) noexcept ; <nl> - uint32_t CursorColor ( ) noexcept ; <nl> - void CursorColor ( uint32_t value ) noexcept ; <nl> - CursorStyle CursorShape ( ) const noexcept ; <nl> - void CursorShape ( winrt : : Microsoft : : Terminal : : Settings : : CursorStyle const & value ) noexcept ; <nl> - uint32_t CursorHeight ( ) noexcept ; <nl> - void CursorHeight ( uint32_t value ) noexcept ; <nl> - hstring WordDelimiters ( ) ; <nl> - void WordDelimiters ( hstring const & value ) ; <nl> - bool CopyOnSelect ( ) noexcept ; <nl> - void CopyOnSelect ( bool value ) noexcept ; <nl> - / / mmmmmmmmmmmmmmmmmmmmmmmm End of Core Settings mmmmmmmmmmmmmmmmmmmmm - - <nl> - <nl> - hstring ProfileName ( ) ; <nl> - void ProfileName ( hstring const & value ) ; <nl> - bool UseAcrylic ( ) noexcept ; <nl> - void UseAcrylic ( bool value ) noexcept ; <nl> - double TintOpacity ( ) noexcept ; <nl> - void TintOpacity ( double value ) noexcept ; <nl> - hstring Padding ( ) ; <nl> - void Padding ( hstring value ) ; <nl> <nl> - hstring FontFace ( ) ; <nl> - void FontFace ( hstring const & value ) ; <nl> - int32_t FontSize ( ) noexcept ; <nl> - void FontSize ( int32_t value ) noexcept ; <nl> - winrt : : Windows : : UI : : Text : : FontWeight FontWeight ( ) noexcept ; <nl> - void FontWeight ( winrt : : Windows : : UI : : Text : : FontWeight value ) noexcept ; <nl> + GETSET_PROPERTY ( uint32_t , DefaultForeground , DEFAULT_FOREGROUND_WITH_ALPHA ) ; <nl> + GETSET_PROPERTY ( uint32_t , DefaultBackground , DEFAULT_BACKGROUND_WITH_ALPHA ) ; <nl> + GETSET_PROPERTY ( uint32_t , SelectionBackground , DEFAULT_FOREGROUND ) ; <nl> + GETSET_PROPERTY ( int32_t , HistorySize , DEFAULT_HISTORY_SIZE ) ; <nl> + GETSET_PROPERTY ( int32_t , InitialRows , 30 ) ; <nl> + GETSET_PROPERTY ( int32_t , InitialCols , 80 ) ; <nl> <nl> - hstring BackgroundImage ( ) ; <nl> - void BackgroundImage ( hstring const & value ) ; <nl> - double BackgroundImageOpacity ( ) noexcept ; <nl> - void BackgroundImageOpacity ( double value ) noexcept ; <nl> - winrt : : Windows : : UI : : Xaml : : Media : : Stretch BackgroundImageStretchMode ( ) noexcept ; <nl> - void BackgroundImageStretchMode ( winrt : : Windows : : UI : : Xaml : : Media : : Stretch value ) noexcept ; <nl> - winrt : : Windows : : UI : : Xaml : : HorizontalAlignment BackgroundImageHorizontalAlignment ( ) noexcept ; <nl> - void BackgroundImageHorizontalAlignment ( winrt : : Windows : : UI : : Xaml : : HorizontalAlignment value ) noexcept ; <nl> - winrt : : Windows : : UI : : Xaml : : VerticalAlignment BackgroundImageVerticalAlignment ( ) noexcept ; <nl> - void BackgroundImageVerticalAlignment ( winrt : : Windows : : UI : : Xaml : : VerticalAlignment value ) noexcept ; <nl> + GETSET_PROPERTY ( bool , SnapOnInput , true ) ; <nl> + GETSET_PROPERTY ( uint32_t , CursorColor , DEFAULT_CURSOR_COLOR ) ; <nl> + GETSET_PROPERTY ( CursorStyle , CursorShape , CursorStyle : : Vintage ) ; <nl> + GETSET_PROPERTY ( uint32_t , CursorHeight , DEFAULT_CURSOR_HEIGHT ) ; <nl> + GETSET_PROPERTY ( hstring , WordDelimiters , DEFAULT_WORD_DELIMITERS ) ; <nl> + GETSET_PROPERTY ( bool , CopyOnSelect , false ) ; <nl> <nl> - winrt : : Microsoft : : Terminal : : Settings : : IKeyBindings KeyBindings ( ) noexcept ; <nl> - void KeyBindings ( winrt : : Microsoft : : Terminal : : Settings : : IKeyBindings const & value ) noexcept ; <nl> + / / mmmmmmmmmmmmmmmmmmmmmmmm End of Core Settings mmmmmmmmmmmmmmmmmmmmm - - <nl> <nl> - hstring Commandline ( ) ; <nl> - void Commandline ( hstring const & value ) ; <nl> + GETSET_PROPERTY ( hstring , ProfileName ) ; <nl> + GETSET_PROPERTY ( bool , UseAcrylic , false ) ; <nl> + GETSET_PROPERTY ( double , TintOpacity , 0 . 5 ) ; <nl> + GETSET_PROPERTY ( hstring , Padding , DEFAULT_PADDING ) ; <nl> + GETSET_PROPERTY ( hstring , FontFace , DEFAULT_FONT_FACE ) ; <nl> + GETSET_PROPERTY ( int32_t , FontSize , DEFAULT_FONT_SIZE ) ; <nl> <nl> - hstring StartingDirectory ( ) ; <nl> - void StartingDirectory ( hstring const & value ) ; <nl> + GETSET_PROPERTY ( winrt : : Windows : : UI : : Text : : FontWeight , FontWeight ) ; <nl> <nl> - hstring StartingTitle ( ) ; <nl> - void StartingTitle ( hstring const & value ) ; <nl> + GETSET_PROPERTY ( hstring , BackgroundImage ) ; <nl> + GETSET_PROPERTY ( double , BackgroundImageOpacity , 1 . 0 ) ; <nl> <nl> - bool SuppressApplicationTitle ( ) noexcept ; <nl> - void SuppressApplicationTitle ( bool value ) noexcept ; <nl> + GETSET_PROPERTY ( winrt : : Windows : : UI : : Xaml : : Media : : Stretch , <nl> + BackgroundImageStretchMode , <nl> + winrt : : Windows : : UI : : Xaml : : Media : : Stretch : : UniformToFill ) ; <nl> + GETSET_PROPERTY ( winrt : : Windows : : UI : : Xaml : : HorizontalAlignment , <nl> + BackgroundImageHorizontalAlignment , <nl> + winrt : : Windows : : UI : : Xaml : : HorizontalAlignment : : Center ) ; <nl> + GETSET_PROPERTY ( winrt : : Windows : : UI : : Xaml : : VerticalAlignment , <nl> + BackgroundImageVerticalAlignment , <nl> + winrt : : Windows : : UI : : Xaml : : VerticalAlignment : : Center ) ; <nl> <nl> - hstring EnvironmentVariables ( ) ; <nl> - void EnvironmentVariables ( hstring const & value ) ; <nl> + GETSET_PROPERTY ( IKeyBindings , KeyBindings , nullptr ) ; <nl> <nl> - ScrollbarState ScrollState ( ) const noexcept ; <nl> - void ScrollState ( winrt : : Microsoft : : Terminal : : Settings : : ScrollbarState const & value ) noexcept ; <nl> + GETSET_PROPERTY ( hstring , Commandline ) ; <nl> + GETSET_PROPERTY ( hstring , StartingDirectory ) ; <nl> + GETSET_PROPERTY ( hstring , StartingTitle ) ; <nl> + GETSET_PROPERTY ( bool , SuppressApplicationTitle ) ; <nl> + GETSET_PROPERTY ( hstring , EnvironmentVariables ) ; <nl> <nl> - bool RetroTerminalEffect ( ) noexcept ; <nl> - void RetroTerminalEffect ( bool value ) noexcept ; <nl> + GETSET_PROPERTY ( ScrollbarState , ScrollState , ScrollbarState : : Visible ) ; <nl> <nl> - bool ForceFullRepaintRendering ( ) noexcept ; <nl> - void ForceFullRepaintRendering ( bool value ) noexcept ; <nl> + GETSET_PROPERTY ( bool , RetroTerminalEffect , false ) ; <nl> + GETSET_PROPERTY ( bool , ForceFullRepaintRendering , false ) ; <nl> + GETSET_PROPERTY ( bool , SoftwareRendering , false ) ; <nl> <nl> - bool SoftwareRendering ( ) noexcept ; <nl> - void SoftwareRendering ( bool value ) noexcept ; <nl> + GETSET_PROPERTY ( TextAntialiasingMode , AntialiasingMode , TextAntialiasingMode : : Grayscale ) ; <nl> <nl> - TextAntialiasingMode AntialiasingMode ( ) const noexcept ; <nl> - void AntialiasingMode ( winrt : : Microsoft : : Terminal : : Settings : : TextAntialiasingMode const & value ) noexcept ; <nl> + # pragma warning ( pop ) <nl> <nl> private : <nl> - uint32_t _defaultForeground ; <nl> - uint32_t _defaultBackground ; <nl> - uint32_t _selectionBackground ; <nl> - std : : array < uint32_t , COLOR_TABLE_SIZE > _colorTable ; <nl> - int32_t _historySize ; <nl> - int32_t _initialRows ; <nl> - int32_t _initialCols ; <nl> - int32_t _rowsToScroll ; <nl> - bool _snapOnInput ; <nl> - uint32_t _cursorColor ; <nl> - Settings : : CursorStyle _cursorShape ; <nl> - uint32_t _cursorHeight ; <nl> - hstring _wordDelimiters ; <nl> - <nl> - hstring _profileName ; <nl> - bool _useAcrylic ; <nl> - double _tintOpacity ; <nl> - hstring _fontFace ; <nl> - int32_t _fontSize ; <nl> - winrt : : Windows : : UI : : Text : : FontWeight _fontWeight ; <nl> - hstring _padding ; <nl> - hstring _backgroundImage ; <nl> - double _backgroundImageOpacity ; <nl> - winrt : : Windows : : UI : : Xaml : : Media : : Stretch _backgroundImageStretchMode ; <nl> - winrt : : Windows : : UI : : Xaml : : HorizontalAlignment _backgroundImageHorizontalAlignment ; <nl> - winrt : : Windows : : UI : : Xaml : : VerticalAlignment _backgroundImageVerticalAlignment ; <nl> - bool _copyOnSelect ; <nl> - hstring _commandline ; <nl> - hstring _startingDir ; <nl> - hstring _startingTitle ; <nl> - bool _suppressApplicationTitle ; <nl> - hstring _envVars ; <nl> - Settings : : IKeyBindings _keyBindings ; <nl> - Settings : : ScrollbarState _scrollbarState ; <nl> - <nl> - bool _retroTerminalEffect ; <nl> - bool _forceFullRepaintRendering ; <nl> - bool _softwareRendering ; <nl> - <nl> - Settings : : TextAntialiasingMode _antialiasingMode ; <nl> + std : : array < uint32_t , COLOR_TABLE_SIZE > _colorTable { } ; <nl> + int32_t _rowsToScroll { 0 } ; <nl> } ; <nl> } <nl> <nl> namespace winrt : : Microsoft : : Terminal : : Settings : : factory_implementation <nl> { <nl> - struct TerminalSettings : TerminalSettingsT < TerminalSettings , implementation : : TerminalSettings > <nl> - { <nl> - } ; <nl> + BASIC_FACTORY ( TerminalSettings ) ; <nl> } <nl> mmm a / src / cascadia / inc / cppwinrt_utils . h <nl> ppp b / src / cascadia / inc / cppwinrt_utils . h <nl> public : <nl> / / Use this macro to quick implement both the getter and setter for a property . <nl> / / This should only be used for simple types where there ' s no logic in the <nl> / / getter / setter beyond just accessing / updating the value . <nl> - # define GETSET_PROPERTY ( type , name , . . . ) \ <nl> - public : \ <nl> - type name ( ) const { return _ # # name ; } \ <nl> - void name ( const type & value ) { _ # # name = value ; } \ <nl> - \ <nl> - private : \ <nl> + # define GETSET_PROPERTY ( type , name , . . . ) \ <nl> + public : \ <nl> + type name ( ) const noexcept { return _ # # name ; } \ <nl> + void name ( const type & value ) noexcept { _ # # name = value ; } \ <nl> + \ <nl> + private : \ <nl> type _ # # name { __VA_ARGS__ } ; <nl> <nl> / / Use this macro to quickly implement both the getter and setter for an observable property . <nl>
Replace everything in ` TerminalSettings ` with ` GETSET_PROPERTY ` ( )
microsoft/terminal
e7c22fbadb681c489d7660fc3749348c0c1d83fd
2020-05-27T21:46:39Z
mmm a / ports / liblsl / portfile . cmake <nl> ppp b / ports / liblsl / portfile . cmake <nl> vcpkg_copy_pdbs ( ) <nl> file ( REMOVE_RECURSE $ { CURRENT_PACKAGES_DIR } / debug / include ) <nl> file ( REMOVE_RECURSE $ { CURRENT_PACKAGES_DIR } / debug / share ) <nl> <nl> - if ( WIN32 ) <nl> + if ( VCPKG_TARGET_IS_WINDOWS ) <nl> file ( REMOVE $ { CURRENT_PACKAGES_DIR } / debug / bin / lslver . exe ) <nl> file ( MAKE_DIRECTORY $ { CURRENT_PACKAGES_DIR } / tools / lslver / ) <nl> file ( RENAME $ { CURRENT_PACKAGES_DIR } / bin / lslver . exe $ { CURRENT_PACKAGES_DIR } / tools / lslver / lslver . exe ) <nl>
Change WIN32 to VCPKG_TARGET_IS_WINDOWS
microsoft/vcpkg
20f7eb40a9a209dd0b240ae1a7a432ab50ad97f3
2019-08-28T19:00:48Z
mmm a / dbms / scripts / gen - bias - data . py <nl> ppp b / dbms / scripts / gen - bias - data . py <nl> <nl> import bisect <nl> from copy import deepcopy <nl> <nl> - def generate_data_source ( host , port , begin , end , count ) : <nl> + def generate_data_source ( host , port , http_port , begin , end , count ) : <nl> chunk_size = round ( ( end - begin ) / float ( count ) ) <nl> used_values = set ( ) <nl> <nl> def generate_data_source ( host , port , begin , end , count ) : <nl> <nl> file_handle . close ( ) <nl> <nl> - host = ' localhost ' <nl> - port = 9000 <nl> - <nl> query = ' DROP TABLE IF EXISTS data_source ' <nl> subprocess . check_output ( [ " clickhouse - client " , " - - host " , host , " - - port " , str ( port ) , " - - query " , query ] ) <nl> query = ' CREATE TABLE data_source ( UserID UInt64 , KeyID UInt64 ) ENGINE = TinyLog ' <nl> subprocess . check_output ( [ " clickhouse - client " , " - - host " , host , " - - port " , str ( port ) , " - - query " , query ] ) <nl> <nl> - cat = subprocess . Popen ( ( ' cat ' , filename ) , stdout = subprocess . PIPE ) <nl> - subprocess . check_output ( ( ' POST ' , ' http : / / localhost : 8123 / ? query = INSERT INTO data_source FORMAT TabSeparated ' ) , stdin = cat . stdout ) <nl> + cat = subprocess . Popen ( ( " cat " , filename ) , stdout = subprocess . PIPE ) <nl> + subprocess . check_output ( ( " POST " , " http : / / localhost : { 0 } / ? query = INSERT INTO data_source FORMAT TabSeparated " . format ( http_port ) ) , stdin = cat . stdout ) <nl> cat . wait ( ) <nl> <nl> def perform_query ( host , port ) : <nl> def dump_tables ( stats ) : <nl> def start ( ) : <nl> parser = argparse . ArgumentParser ( description = " Generate bias correction tables . " ) <nl> parser . add_argument ( " - x " , " - - host " , default = " 127 . 0 . 0 . 1 " , help = " clickhouse host name " ) ; <nl> - parser . add_argument ( " - p " , " - - port " , type = int , default = 9000 , help = " clickhouse port " ) ; <nl> + parser . add_argument ( " - p " , " - - port " , type = int , default = 9000 , help = " clickhouse client TCP port " ) ; <nl> + parser . add_argument ( " - t " , " - - http_port " , type = int , default = 8123 , help = " clickhouse HTTP port " ) ; <nl> parser . add_argument ( " - i " , " - - iterations " , type = int , default = 5000 , help = " number of iterations " ) ; <nl> parser . add_argument ( " - s " , " - - samples " , type = int , default = 700000 , help = " number of sample values " ) ; <nl> parser . add_argument ( " - g " , " - - generated " , type = int , default = 200 , help = " number of generated values " ) ; <nl> def start ( ) : <nl> <nl> for i in range ( 0 , args . iterations ) : <nl> print ( i ) <nl> - generate_data_source ( args . host , str ( args . port ) , 0 , args . samples , 1000 ) <nl> + generate_data_source ( args . host , str ( args . port ) , str ( args . http_port ) , 0 , args . samples , 1000 ) <nl> output = perform_query ( args . host , str ( args . port ) ) <nl> data = parse_result ( output ) <nl> stats = accumulate ( stats , data ) <nl>
dbms : Server : Added http_port option . [ # METR - 17276 ]
ClickHouse/ClickHouse
836b883f555f888e8c07502feae68c372777b064
2015-08-25T17:34:06Z
mmm a / arangosh / Export / ExportFeature . cpp <nl> ppp b / arangosh / Export / ExportFeature . cpp <nl> <nl> # include " SimpleHttpClient / GeneralClientConnection . h " <nl> # include " SimpleHttpClient / SimpleHttpClient . h " <nl> # include " SimpleHttpClient / SimpleHttpResult . h " <nl> - # include < boost / spirit / include / classic_core . hpp > <nl> - # include < boost / spirit / include / classic_tree_to_xml . hpp > <nl> <nl> + # include < boost / property_tree / detail / xml_parser_utils . hpp > <nl> <nl> using namespace arangodb ; <nl> using namespace arangodb : : basics ; <nl> using namespace arangodb : : httpclient ; <nl> using namespace arangodb : : options ; <nl> - using namespace boost : : spirit : : classic ; <nl> + using namespace boost : : property_tree : : xml_parser ; <nl> <nl> ExportFeature : : ExportFeature ( application_features : : ApplicationServer * server , <nl> int * result ) <nl> void ExportFeature : : writeGraphBatch ( int fd , VPackArrayIterator it , std : : string c <nl> <nl> for ( auto const & doc : it ) { <nl> if ( doc . hasKey ( " _from " ) ) { <nl> - xmlTag = " < edge label = \ " " + xml : : encode ( doc . hasKey ( _xgmmlLabelAttribute ) & & doc . get ( _xgmmlLabelAttribute ) . isString ( ) ? doc . get ( _xgmmlLabelAttribute ) . copyString ( ) : " Default - Label " ) + <nl> - " \ " source = \ " " + xml : : encode ( doc . get ( " _from " ) . copyString ( ) ) + " \ " target = \ " " + xml : : encode ( doc . get ( " _to " ) . copyString ( ) ) + " \ " " ; <nl> + xmlTag = " < edge label = \ " " + encode_char_entities ( doc . hasKey ( _xgmmlLabelAttribute ) & & doc . get ( _xgmmlLabelAttribute ) . isString ( ) ? doc . get ( _xgmmlLabelAttribute ) . copyString ( ) : " Default - Label " ) + <nl> + " \ " source = \ " " + encode_char_entities ( doc . get ( " _from " ) . copyString ( ) ) + " \ " target = \ " " + encode_char_entities ( doc . get ( " _to " ) . copyString ( ) ) + " \ " " ; <nl> writeToFile ( fd , xmlTag , fileName ) ; <nl> if ( ! _xgmmlLabelOnly ) { <nl> xmlTag = " > \ n " ; <nl> writeToFile ( fd , xmlTag , fileName ) ; <nl> <nl> for ( auto const & it : VPackObjectIterator ( doc ) ) { <nl> - xmlTag = xml : : encode ( it . key . copyString ( ) ) ; <nl> + xmlTag = encode_char_entities ( it . key . copyString ( ) ) ; <nl> xgmmlWriteOneAtt ( fd , fileName , it . value , xmlTag ) ; <nl> } <nl> <nl> void ExportFeature : : writeGraphBatch ( int fd , VPackArrayIterator it , std : : string c <nl> } <nl> <nl> } else { <nl> - xmlTag = " < node label = \ " " + xml : : encode ( doc . hasKey ( _xgmmlLabelAttribute ) & & doc . get ( _xgmmlLabelAttribute ) . isString ( ) ? doc . get ( _xgmmlLabelAttribute ) . copyString ( ) : " Default - Label " ) + <nl> - " \ " id = \ " " + xml : : encode ( doc . get ( " _id " ) . copyString ( ) ) + " \ " " ; <nl> + xmlTag = " < node label = \ " " + encode_char_entities ( doc . hasKey ( _xgmmlLabelAttribute ) & & doc . get ( _xgmmlLabelAttribute ) . isString ( ) ? doc . get ( _xgmmlLabelAttribute ) . copyString ( ) : " Default - Label " ) + <nl> + " \ " id = \ " " + encode_char_entities ( doc . get ( " _id " ) . copyString ( ) ) + " \ " " ; <nl> writeToFile ( fd , xmlTag , fileName ) ; <nl> if ( ! _xgmmlLabelOnly ) { <nl> xmlTag = " > \ n " ; <nl> writeToFile ( fd , xmlTag , fileName ) ; <nl> <nl> for ( auto const & it : VPackObjectIterator ( doc ) ) { <nl> - xmlTag = xml : : encode ( it . key . copyString ( ) ) ; <nl> + xmlTag = encode_char_entities ( it . key . copyString ( ) ) ; <nl> xgmmlWriteOneAtt ( fd , fileName , it . value , xmlTag ) ; <nl> } <nl> <nl> void ExportFeature : : xgmmlWriteOneAtt ( int fd , std : : string const & fileName , VPackS <nl> <nl> if ( slice . isInteger ( ) ) { <nl> type = " integer " ; <nl> - value = " \ " " + slice . toString ( ) + " \ " " ; <nl> + value = slice . toString ( ) ; <nl> <nl> } else if ( slice . isDouble ( ) ) { <nl> type = " real " ; <nl> - value = " \ " " + slice . toString ( ) + " \ " " ; <nl> + value = slice . toString ( ) ; <nl> <nl> } else if ( slice . isBool ( ) ) { <nl> type = " boolean " ; <nl> - value = " \ " " + slice . toString ( ) + " \ " " ; <nl> + value = slice . toString ( ) ; <nl> <nl> } else if ( slice . isString ( ) ) { <nl> type = " string " ; <nl> - value = slice . toString ( ) ; <nl> + value = slice . copyString ( ) ; <nl> <nl> } else if ( slice . isArray ( ) | | slice . isObject ( ) ) { <nl> if ( 0 < deep ) { <nl> void ExportFeature : : xgmmlWriteOneAtt ( int fd , std : : string const & fileName , VPackS <nl> } <nl> <nl> } else { <nl> - xmlTag = " < att name = \ " " + name + " \ " type = \ " string \ " value = \ " " + xml : : encode ( slice . toString ( ) ) + " \ " / > \ n " ; <nl> + xmlTag = " < att name = \ " " + name + " \ " type = \ " string \ " value = \ " " + encode_char_entities ( slice . toString ( ) ) + " \ " / > \ n " ; <nl> writeToFile ( fd , xmlTag , fileName ) ; <nl> return ; <nl> } <nl> <nl> if ( ! type . empty ( ) ) { <nl> - xmlTag = " < att name = \ " " + name + " \ " type = \ " " + type + " \ " value = " + xml : : encode ( value ) + " / > \ n " ; <nl> + xmlTag = " < att name = \ " " + name + " \ " type = \ " " + type + " \ " value = \ " " + encode_char_entities ( value ) + " \ " / > \ n " ; <nl> writeToFile ( fd , xmlTag , fileName ) ; <nl> <nl> } else if ( slice . isArray ( ) ) { <nl> void ExportFeature : : xgmmlWriteOneAtt ( int fd , std : : string const & fileName , VPackS <nl> writeToFile ( fd , xmlTag , fileName ) ; <nl> <nl> for ( auto const & it : VPackObjectIterator ( slice ) ) { <nl> - std : : string name = xml : : encode ( it . key . copyString ( ) ) ; <nl> + std : : string name = encode_char_entities ( it . key . copyString ( ) ) ; <nl> xgmmlWriteOneAtt ( fd , fileName , it . value , name , deep + 1 ) ; <nl> } <nl> <nl>
arangoexport : refix xml attribute escaping
arangodb/arangodb
aee918f964e8e47e44384bdad6504d2583b5e272
2017-02-13T11:04:59Z
mmm a / test / SILOptimizer / outliner . swift <nl> ppp b / test / SILOptimizer / outliner . swift <nl> <nl> / / RUN : % target - swift - frontend - Osize - g - import - objc - header % S / Inputs / Outliner . h % s - emit - sil - enforce - exclusivity = unchecked | % FileCheck % s <nl> <nl> / / REQUIRES : objc_interop <nl> + / / REQUIRES : optimized_stdlib <nl> <nl> import Foundation <nl> <nl>
Merge remote - tracking branch ' origin / master ' into master - next
apple/swift
9ad0de7e612e4f6ac9478850645322ac535f496c
2020-05-04T23:37:13Z
deleted file mode 100644 <nl> index 6f0e286d1fa . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4323 - bad_type_constraint . php . legacy_decl . out <nl> ppp / dev / null <nl> <nl> - File " 4323 - bad_type_constraint . php " , line 7 , characters 16 - 19 : <nl> - Invalid argument ( Typing [ 4323 ] ) <nl> - File " 4323 - bad_type_constraint . php " , line 5 , characters 28 - 35 : <nl> - Some type constraint ( s ) are violated here <nl> - File " 4323 - bad_type_constraint . php " , line 5 , characters 23 - 23 : <nl> - T is a constrained type parameter <nl> - File " 4323 - bad_type_constraint . php " , line 5 , characters 28 - 35 : <nl> - Expected arraykey <nl> - File " 4323 - bad_type_constraint . php " , line 7 , characters 16 - 19 : <nl> - But got bool <nl> deleted file mode 100644 <nl> index cc74a6e0f6a . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4323 - bad_type_constraint . php . like_types . out <nl> ppp / dev / null <nl> <nl> - File " 4323 - bad_type_constraint . php " , line 7 , characters 16 - 19 : <nl> - Invalid argument ( Typing [ 4110 ] ) <nl> - File " 4323 - bad_type_constraint . php " , line 5 , characters 38 - 38 : <nl> - Expected ~ [ unresolved ] because it is an unenforceable type <nl> - File " 4323 - bad_type_constraint . php " , line 7 , characters 16 - 19 : <nl> - But got bool <nl> deleted file mode 100644 <nl> index 6f0e286d1fa . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4323 - bad_type_constraint . php . out <nl> ppp / dev / null <nl> <nl> - File " 4323 - bad_type_constraint . php " , line 7 , characters 16 - 19 : <nl> - Invalid argument ( Typing [ 4323 ] ) <nl> - File " 4323 - bad_type_constraint . php " , line 5 , characters 28 - 35 : <nl> - Some type constraint ( s ) are violated here <nl> - File " 4323 - bad_type_constraint . php " , line 5 , characters 23 - 23 : <nl> - T is a constrained type parameter <nl> - File " 4323 - bad_type_constraint . php " , line 5 , characters 28 - 35 : <nl> - Expected arraykey <nl> - File " 4323 - bad_type_constraint . php " , line 7 , characters 16 - 19 : <nl> - But got bool <nl> deleted file mode 100644 <nl> index 6f0e286d1fa . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4323 - bad_type_constraint . php . rust . out <nl> ppp / dev / null <nl> <nl> - File " 4323 - bad_type_constraint . php " , line 7 , characters 16 - 19 : <nl> - Invalid argument ( Typing [ 4323 ] ) <nl> - File " 4323 - bad_type_constraint . php " , line 5 , characters 28 - 35 : <nl> - Some type constraint ( s ) are violated here <nl> - File " 4323 - bad_type_constraint . php " , line 5 , characters 23 - 23 : <nl> - T is a constrained type parameter <nl> - File " 4323 - bad_type_constraint . php " , line 5 , characters 28 - 35 : <nl> - Expected arraykey <nl> - File " 4323 - bad_type_constraint . php " , line 7 , characters 16 - 19 : <nl> - But got bool <nl> deleted file mode 100644 <nl> index b3d55ce9a11 . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4324 - index_mismatch . php . legacy_decl . out <nl> ppp / dev / null <nl> <nl> - File " 4324 - index_mismatch . php " , line 7 , characters 10 - 19 : <nl> - Invalid index type for this vec ( Typing [ 4324 ] ) <nl> - File " 4324 - index_mismatch . php " , line 7 , characters 13 - 18 : <nl> - Expected int because only int can be used to index into a Vector or vec . <nl> - File " 4324 - index_mismatch . php " , line 7 , characters 13 - 18 : <nl> - But got string <nl> deleted file mode 100644 <nl> index b3d55ce9a11 . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4324 - index_mismatch . php . like_types . out <nl> ppp / dev / null <nl> <nl> - File " 4324 - index_mismatch . php " , line 7 , characters 10 - 19 : <nl> - Invalid index type for this vec ( Typing [ 4324 ] ) <nl> - File " 4324 - index_mismatch . php " , line 7 , characters 13 - 18 : <nl> - Expected int because only int can be used to index into a Vector or vec . <nl> - File " 4324 - index_mismatch . php " , line 7 , characters 13 - 18 : <nl> - But got string <nl> deleted file mode 100644 <nl> index b3d55ce9a11 . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4324 - index_mismatch . php . out <nl> ppp / dev / null <nl> <nl> - File " 4324 - index_mismatch . php " , line 7 , characters 10 - 19 : <nl> - Invalid index type for this vec ( Typing [ 4324 ] ) <nl> - File " 4324 - index_mismatch . php " , line 7 , characters 13 - 18 : <nl> - Expected int because only int can be used to index into a Vector or vec . <nl> - File " 4324 - index_mismatch . php " , line 7 , characters 13 - 18 : <nl> - But got string <nl> deleted file mode 100644 <nl> index b3d55ce9a11 . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4324 - index_mismatch . php . rust . out <nl> ppp / dev / null <nl> <nl> - File " 4324 - index_mismatch . php " , line 7 , characters 10 - 19 : <nl> - Invalid index type for this vec ( Typing [ 4324 ] ) <nl> - File " 4324 - index_mismatch . php " , line 7 , characters 13 - 18 : <nl> - Expected int because only int can be used to index into a Vector or vec . <nl> - File " 4324 - index_mismatch . php " , line 7 , characters 13 - 18 : <nl> - But got string <nl> deleted file mode 100644 <nl> index a7615f85d76 . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4328 - constant_does_not_match_enum_type . php . legacy_decl . out <nl> ppp / dev / null <nl> <nl> - File " 4328 - constant_does_not_match_enum_type . php " , line 5 , characters 3 - 3 : <nl> - Constant does not match the type of the enum it is in ( Typing [ 4328 ] ) <nl> - File " 4328 - constant_does_not_match_enum_type . php " , line 4 , characters 12 - 17 : <nl> - Expected string <nl> - File " 4328 - constant_does_not_match_enum_type . php " , line 5 , characters 7 - 7 : <nl> - But got int <nl> deleted file mode 100644 <nl> index a7615f85d76 . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4328 - constant_does_not_match_enum_type . php . like_types . out <nl> ppp / dev / null <nl> <nl> - File " 4328 - constant_does_not_match_enum_type . php " , line 5 , characters 3 - 3 : <nl> - Constant does not match the type of the enum it is in ( Typing [ 4328 ] ) <nl> - File " 4328 - constant_does_not_match_enum_type . php " , line 4 , characters 12 - 17 : <nl> - Expected string <nl> - File " 4328 - constant_does_not_match_enum_type . php " , line 5 , characters 7 - 7 : <nl> - But got int <nl> deleted file mode 100644 <nl> index a7615f85d76 . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4328 - constant_does_not_match_enum_type . php . out <nl> ppp / dev / null <nl> <nl> - File " 4328 - constant_does_not_match_enum_type . php " , line 5 , characters 3 - 3 : <nl> - Constant does not match the type of the enum it is in ( Typing [ 4328 ] ) <nl> - File " 4328 - constant_does_not_match_enum_type . php " , line 4 , characters 12 - 17 : <nl> - Expected string <nl> - File " 4328 - constant_does_not_match_enum_type . php " , line 5 , characters 7 - 7 : <nl> - But got int <nl> deleted file mode 100644 <nl> index a7615f85d76 . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4328 - constant_does_not_match_enum_type . php . rust . out <nl> ppp / dev / null <nl> <nl> - File " 4328 - constant_does_not_match_enum_type . php " , line 5 , characters 3 - 3 : <nl> - Constant does not match the type of the enum it is in ( Typing [ 4328 ] ) <nl> - File " 4328 - constant_does_not_match_enum_type . php " , line 4 , characters 12 - 17 : <nl> - Expected string <nl> - File " 4328 - constant_does_not_match_enum_type . php " , line 5 , characters 7 - 7 : <nl> - But got int <nl> deleted file mode 100644 <nl> index 88de38beb95 . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php . legacy_decl . out <nl> ppp / dev / null <nl> <nl> - File " 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php " , line 4 , characters 6 - 8 : <nl> - This enum declaration is invalid . <nl> - Read the following to see why : ( Typing [ 4342 ] ) <nl> - File " BuiltinEnum . hhi " , line 43 , characters 32 - 39 : <nl> - Member getNames has the wrong type <nl> - File " BuiltinEnum . hhi " , line 43 , characters 73 - 80 : <nl> - Expected arraykey <nl> - File " 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php " , line 4 , characters 19 - 22 : <nl> - But got bool <nl> - File " 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php " , line 4 , characters 6 - 8 : <nl> - Enums must be int or string or arraykey , not bool ( Typing [ 4024 ] ) <nl> - File " 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php " , line 4 , characters 6 - 8 : <nl> - Underlying type for enum is incompatible with constraint ( Typing [ 4330 ] ) <nl> - File " 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php " , line 4 , characters 19 - 22 : <nl> - Expected bool <nl> - File " 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php " , line 4 , characters 12 - 14 : <nl> - But got int <nl> deleted file mode 100644 <nl> index 88de38beb95 . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php . like_types . out <nl> ppp / dev / null <nl> <nl> - File " 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php " , line 4 , characters 6 - 8 : <nl> - This enum declaration is invalid . <nl> - Read the following to see why : ( Typing [ 4342 ] ) <nl> - File " BuiltinEnum . hhi " , line 43 , characters 32 - 39 : <nl> - Member getNames has the wrong type <nl> - File " BuiltinEnum . hhi " , line 43 , characters 73 - 80 : <nl> - Expected arraykey <nl> - File " 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php " , line 4 , characters 19 - 22 : <nl> - But got bool <nl> - File " 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php " , line 4 , characters 6 - 8 : <nl> - Enums must be int or string or arraykey , not bool ( Typing [ 4024 ] ) <nl> - File " 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php " , line 4 , characters 6 - 8 : <nl> - Underlying type for enum is incompatible with constraint ( Typing [ 4330 ] ) <nl> - File " 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php " , line 4 , characters 19 - 22 : <nl> - Expected bool <nl> - File " 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php " , line 4 , characters 12 - 14 : <nl> - But got int <nl> deleted file mode 100644 <nl> index 88de38beb95 . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php . out <nl> ppp / dev / null <nl> <nl> - File " 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php " , line 4 , characters 6 - 8 : <nl> - This enum declaration is invalid . <nl> - Read the following to see why : ( Typing [ 4342 ] ) <nl> - File " BuiltinEnum . hhi " , line 43 , characters 32 - 39 : <nl> - Member getNames has the wrong type <nl> - File " BuiltinEnum . hhi " , line 43 , characters 73 - 80 : <nl> - Expected arraykey <nl> - File " 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php " , line 4 , characters 19 - 22 : <nl> - But got bool <nl> - File " 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php " , line 4 , characters 6 - 8 : <nl> - Enums must be int or string or arraykey , not bool ( Typing [ 4024 ] ) <nl> - File " 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php " , line 4 , characters 6 - 8 : <nl> - Underlying type for enum is incompatible with constraint ( Typing [ 4330 ] ) <nl> - File " 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php " , line 4 , characters 19 - 22 : <nl> - Expected bool <nl> - File " 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php " , line 4 , characters 12 - 14 : <nl> - But got int <nl> deleted file mode 100644 <nl> index 88de38beb95 . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php . rust . out <nl> ppp / dev / null <nl> <nl> - File " 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php " , line 4 , characters 6 - 8 : <nl> - This enum declaration is invalid . <nl> - Read the following to see why : ( Typing [ 4342 ] ) <nl> - File " BuiltinEnum . hhi " , line 43 , characters 32 - 39 : <nl> - Member getNames has the wrong type <nl> - File " BuiltinEnum . hhi " , line 43 , characters 73 - 80 : <nl> - Expected arraykey <nl> - File " 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php " , line 4 , characters 19 - 22 : <nl> - But got bool <nl> - File " 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php " , line 4 , characters 6 - 8 : <nl> - Enums must be int or string or arraykey , not bool ( Typing [ 4024 ] ) <nl> - File " 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php " , line 4 , characters 6 - 8 : <nl> - Underlying type for enum is incompatible with constraint ( Typing [ 4330 ] ) <nl> - File " 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php " , line 4 , characters 19 - 22 : <nl> - Expected bool <nl> - File " 4329 - 4330 - enum_constaint_must_be_arraykey_and_compatible . php " , line 4 , characters 12 - 14 : <nl> - But got int <nl> deleted file mode 100644 <nl> index a0e5fe9fad6 . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4331 - parameter_default_wrong_type . php . legacy_decl . out <nl> ppp / dev / null <nl> <nl> - File " 4331 - parameter_default_wrong_type . php " , line 6 , characters 27 - 28 : <nl> - Wrong type hint ( Typing [ 4331 ] ) <nl> - File " 4331 - parameter_default_wrong_type . php " , line 6 , characters 23 - 25 : <nl> - Expected int <nl> - File " 4331 - parameter_default_wrong_type . php " , line 6 , characters 32 - 35 : <nl> - But got bool <nl> deleted file mode 100644 <nl> index a0e5fe9fad6 . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4331 - parameter_default_wrong_type . php . like_types . out <nl> ppp / dev / null <nl> <nl> - File " 4331 - parameter_default_wrong_type . php " , line 6 , characters 27 - 28 : <nl> - Wrong type hint ( Typing [ 4331 ] ) <nl> - File " 4331 - parameter_default_wrong_type . php " , line 6 , characters 23 - 25 : <nl> - Expected int <nl> - File " 4331 - parameter_default_wrong_type . php " , line 6 , characters 32 - 35 : <nl> - But got bool <nl> deleted file mode 100644 <nl> index a0e5fe9fad6 . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4331 - parameter_default_wrong_type . php . out <nl> ppp / dev / null <nl> <nl> - File " 4331 - parameter_default_wrong_type . php " , line 6 , characters 27 - 28 : <nl> - Wrong type hint ( Typing [ 4331 ] ) <nl> - File " 4331 - parameter_default_wrong_type . php " , line 6 , characters 23 - 25 : <nl> - Expected int <nl> - File " 4331 - parameter_default_wrong_type . php " , line 6 , characters 32 - 35 : <nl> - But got bool <nl> deleted file mode 100644 <nl> index a0e5fe9fad6 . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4331 - parameter_default_wrong_type . php . rust . out <nl> ppp / dev / null <nl> <nl> - File " 4331 - parameter_default_wrong_type . php " , line 6 , characters 27 - 28 : <nl> - Wrong type hint ( Typing [ 4331 ] ) <nl> - File " 4331 - parameter_default_wrong_type . php " , line 6 , characters 23 - 25 : <nl> - Expected int <nl> - File " 4331 - parameter_default_wrong_type . php " , line 6 , characters 32 - 35 : <nl> - But got bool <nl> deleted file mode 100644 <nl> index 583d9066e0b . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4332 - newtype_alias_mismatch . php . legacy_decl . out <nl> ppp / dev / null <nl> <nl> - File " 4332 - newtype_alias_mismatch . php " , line 4 , characters 9 - 11 : <nl> - Invalid constraint on newtype ( Typing [ 4332 ] ) <nl> - File " 4332 - newtype_alias_mismatch . php " , line 4 , characters 16 - 18 : <nl> - Expected int <nl> - File " 4332 - newtype_alias_mismatch . php " , line 4 , characters 22 - 27 : <nl> - But got string <nl> deleted file mode 100644 <nl> index 583d9066e0b . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4332 - newtype_alias_mismatch . php . like_types . out <nl> ppp / dev / null <nl> <nl> - File " 4332 - newtype_alias_mismatch . php " , line 4 , characters 9 - 11 : <nl> - Invalid constraint on newtype ( Typing [ 4332 ] ) <nl> - File " 4332 - newtype_alias_mismatch . php " , line 4 , characters 16 - 18 : <nl> - Expected int <nl> - File " 4332 - newtype_alias_mismatch . php " , line 4 , characters 22 - 27 : <nl> - But got string <nl> deleted file mode 100644 <nl> index 583d9066e0b . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4332 - newtype_alias_mismatch . php . out <nl> ppp / dev / null <nl> <nl> - File " 4332 - newtype_alias_mismatch . php " , line 4 , characters 9 - 11 : <nl> - Invalid constraint on newtype ( Typing [ 4332 ] ) <nl> - File " 4332 - newtype_alias_mismatch . php " , line 4 , characters 16 - 18 : <nl> - Expected int <nl> - File " 4332 - newtype_alias_mismatch . php " , line 4 , characters 22 - 27 : <nl> - But got string <nl> deleted file mode 100644 <nl> index 583d9066e0b . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4332 - newtype_alias_mismatch . php . rust . out <nl> ppp / dev / null <nl> <nl> - File " 4332 - newtype_alias_mismatch . php " , line 4 , characters 9 - 11 : <nl> - Invalid constraint on newtype ( Typing [ 4332 ] ) <nl> - File " 4332 - newtype_alias_mismatch . php " , line 4 , characters 16 - 18 : <nl> - Expected int <nl> - File " 4332 - newtype_alias_mismatch . php " , line 4 , characters 22 - 27 : <nl> - But got string <nl> deleted file mode 100644 <nl> index 450e79d8e2a . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4336 - return_type_mismatch . php . legacy_decl . out <nl> ppp / dev / null <nl> <nl> - File " 4336 - return_type_mismatch . php " , line 5 , characters 19 - 21 : <nl> - Invalid return type ( Typing [ 4336 ] ) <nl> - File " 4336 - return_type_mismatch . php " , line 5 , characters 19 - 21 : <nl> - Expected void because this function implicitly returns void <nl> - File " 4336 - return_type_mismatch . php " , line 5 , characters 27 - 29 : <nl> - But got int <nl> - File " 4336 - return_type_mismatch . php " , line 5 , characters 19 - 21 : <nl> - Invalid return type ( Typing [ 4336 ] ) <nl> - File " 4336 - return_type_mismatch . php " , line 5 , characters 27 - 29 : <nl> - Expected int <nl> - File " 4336 - return_type_mismatch . php " , line 5 , characters 19 - 21 : <nl> - But got void because this function implicitly returns void <nl> deleted file mode 100644 <nl> index 450e79d8e2a . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4336 - return_type_mismatch . php . like_types . out <nl> ppp / dev / null <nl> <nl> - File " 4336 - return_type_mismatch . php " , line 5 , characters 19 - 21 : <nl> - Invalid return type ( Typing [ 4336 ] ) <nl> - File " 4336 - return_type_mismatch . php " , line 5 , characters 19 - 21 : <nl> - Expected void because this function implicitly returns void <nl> - File " 4336 - return_type_mismatch . php " , line 5 , characters 27 - 29 : <nl> - But got int <nl> - File " 4336 - return_type_mismatch . php " , line 5 , characters 19 - 21 : <nl> - Invalid return type ( Typing [ 4336 ] ) <nl> - File " 4336 - return_type_mismatch . php " , line 5 , characters 27 - 29 : <nl> - Expected int <nl> - File " 4336 - return_type_mismatch . php " , line 5 , characters 19 - 21 : <nl> - But got void because this function implicitly returns void <nl> deleted file mode 100644 <nl> index 450e79d8e2a . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4336 - return_type_mismatch . php . out <nl> ppp / dev / null <nl> <nl> - File " 4336 - return_type_mismatch . php " , line 5 , characters 19 - 21 : <nl> - Invalid return type ( Typing [ 4336 ] ) <nl> - File " 4336 - return_type_mismatch . php " , line 5 , characters 19 - 21 : <nl> - Expected void because this function implicitly returns void <nl> - File " 4336 - return_type_mismatch . php " , line 5 , characters 27 - 29 : <nl> - But got int <nl> - File " 4336 - return_type_mismatch . php " , line 5 , characters 19 - 21 : <nl> - Invalid return type ( Typing [ 4336 ] ) <nl> - File " 4336 - return_type_mismatch . php " , line 5 , characters 27 - 29 : <nl> - Expected int <nl> - File " 4336 - return_type_mismatch . php " , line 5 , characters 19 - 21 : <nl> - But got void because this function implicitly returns void <nl> deleted file mode 100644 <nl> index 450e79d8e2a . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4336 - return_type_mismatch . php . rust . out <nl> ppp / dev / null <nl> <nl> - File " 4336 - return_type_mismatch . php " , line 5 , characters 19 - 21 : <nl> - Invalid return type ( Typing [ 4336 ] ) <nl> - File " 4336 - return_type_mismatch . php " , line 5 , characters 19 - 21 : <nl> - Expected void because this function implicitly returns void <nl> - File " 4336 - return_type_mismatch . php " , line 5 , characters 27 - 29 : <nl> - But got int <nl> - File " 4336 - return_type_mismatch . php " , line 5 , characters 19 - 21 : <nl> - Invalid return type ( Typing [ 4336 ] ) <nl> - File " 4336 - return_type_mismatch . php " , line 5 , characters 27 - 29 : <nl> - Expected int <nl> - File " 4336 - return_type_mismatch . php " , line 5 , characters 19 - 21 : <nl> - But got void because this function implicitly returns void <nl> deleted file mode 100644 <nl> index 8eeca44c16f . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4337 - inout_return_type_mismatch . php . legacy_decl . out <nl> ppp / dev / null <nl> <nl> - File " 4337 - inout_return_type_mismatch . php " , line 6 , characters 10 - 15 : <nl> - Invalid assignment to an inout parameter ( Typing [ 4337 ] ) <nl> - File " 4337 - inout_return_type_mismatch . php " , line 5 , characters 29 - 31 : <nl> - Expected int ( inout parameter ) <nl> - File " 4337 - inout_return_type_mismatch . php " , line 6 , characters 10 - 15 : <nl> - But got string <nl> deleted file mode 100644 <nl> index 8eeca44c16f . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4337 - inout_return_type_mismatch . php . like_types . out <nl> ppp / dev / null <nl> <nl> - File " 4337 - inout_return_type_mismatch . php " , line 6 , characters 10 - 15 : <nl> - Invalid assignment to an inout parameter ( Typing [ 4337 ] ) <nl> - File " 4337 - inout_return_type_mismatch . php " , line 5 , characters 29 - 31 : <nl> - Expected int ( inout parameter ) <nl> - File " 4337 - inout_return_type_mismatch . php " , line 6 , characters 10 - 15 : <nl> - But got string <nl> deleted file mode 100644 <nl> index 8eeca44c16f . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4337 - inout_return_type_mismatch . php . out <nl> ppp / dev / null <nl> <nl> - File " 4337 - inout_return_type_mismatch . php " , line 6 , characters 10 - 15 : <nl> - Invalid assignment to an inout parameter ( Typing [ 4337 ] ) <nl> - File " 4337 - inout_return_type_mismatch . php " , line 5 , characters 29 - 31 : <nl> - Expected int ( inout parameter ) <nl> - File " 4337 - inout_return_type_mismatch . php " , line 6 , characters 10 - 15 : <nl> - But got string <nl> deleted file mode 100644 <nl> index 8eeca44c16f . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4337 - inout_return_type_mismatch . php . rust . out <nl> ppp / dev / null <nl> <nl> - File " 4337 - inout_return_type_mismatch . php " , line 6 , characters 10 - 15 : <nl> - Invalid assignment to an inout parameter ( Typing [ 4337 ] ) <nl> - File " 4337 - inout_return_type_mismatch . php " , line 5 , characters 29 - 31 : <nl> - Expected int ( inout parameter ) <nl> - File " 4337 - inout_return_type_mismatch . php " , line 6 , characters 10 - 15 : <nl> - But got string <nl> deleted file mode 100644 <nl> index d2a7f9bd20d . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4338 - class_constant_value_does_not_match_hint . php . legacy_decl . out <nl> ppp / dev / null <nl> <nl> - File " 4338 - class_constant_value_does_not_match_hint . php " , line 5 , characters 13 - 13 : <nl> - Wrong type hint ( Typing [ 4338 ] ) <nl> - File " 4338 - class_constant_value_does_not_match_hint . php " , line 5 , characters 9 - 11 : <nl> - Expected int <nl> - File " 4338 - class_constant_value_does_not_match_hint . php " , line 5 , characters 17 - 22 : <nl> - But got string <nl> deleted file mode 100644 <nl> index d2a7f9bd20d . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4338 - class_constant_value_does_not_match_hint . php . like_types . out <nl> ppp / dev / null <nl> <nl> - File " 4338 - class_constant_value_does_not_match_hint . php " , line 5 , characters 13 - 13 : <nl> - Wrong type hint ( Typing [ 4338 ] ) <nl> - File " 4338 - class_constant_value_does_not_match_hint . php " , line 5 , characters 9 - 11 : <nl> - Expected int <nl> - File " 4338 - class_constant_value_does_not_match_hint . php " , line 5 , characters 17 - 22 : <nl> - But got string <nl> deleted file mode 100644 <nl> index d2a7f9bd20d . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4338 - class_constant_value_does_not_match_hint . php . out <nl> ppp / dev / null <nl> <nl> - File " 4338 - class_constant_value_does_not_match_hint . php " , line 5 , characters 13 - 13 : <nl> - Wrong type hint ( Typing [ 4338 ] ) <nl> - File " 4338 - class_constant_value_does_not_match_hint . php " , line 5 , characters 9 - 11 : <nl> - Expected int <nl> - File " 4338 - class_constant_value_does_not_match_hint . php " , line 5 , characters 17 - 22 : <nl> - But got string <nl> deleted file mode 100644 <nl> index d2a7f9bd20d . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4338 - class_constant_value_does_not_match_hint . php . rust . out <nl> ppp / dev / null <nl> <nl> - File " 4338 - class_constant_value_does_not_match_hint . php " , line 5 , characters 13 - 13 : <nl> - Wrong type hint ( Typing [ 4338 ] ) <nl> - File " 4338 - class_constant_value_does_not_match_hint . php " , line 5 , characters 9 - 11 : <nl> - Expected int <nl> - File " 4338 - class_constant_value_does_not_match_hint . php " , line 5 , characters 17 - 22 : <nl> - But got string <nl> deleted file mode 100644 <nl> index c79b360e9c1 . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4339 - class_property_initializer_does_not_match_hint . php . legacy_decl . out <nl> ppp / dev / null <nl> <nl> - File " 4339 - class_property_initializer_does_not_match_hint . php " , line 5 , characters 10 - 12 : <nl> - Wrong type hint ( Typing [ 4339 ] ) <nl> - File " 4339 - class_property_initializer_does_not_match_hint . php " , line 5 , characters 10 - 12 : <nl> - Expected int <nl> - File " 4339 - class_property_initializer_does_not_match_hint . php " , line 5 , characters 19 - 24 : <nl> - But got string <nl> deleted file mode 100644 <nl> index c79b360e9c1 . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4339 - class_property_initializer_does_not_match_hint . php . like_types . out <nl> ppp / dev / null <nl> <nl> - File " 4339 - class_property_initializer_does_not_match_hint . php " , line 5 , characters 10 - 12 : <nl> - Wrong type hint ( Typing [ 4339 ] ) <nl> - File " 4339 - class_property_initializer_does_not_match_hint . php " , line 5 , characters 10 - 12 : <nl> - Expected int <nl> - File " 4339 - class_property_initializer_does_not_match_hint . php " , line 5 , characters 19 - 24 : <nl> - But got string <nl> deleted file mode 100644 <nl> index c79b360e9c1 . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4339 - class_property_initializer_does_not_match_hint . php . out <nl> ppp / dev / null <nl> <nl> - File " 4339 - class_property_initializer_does_not_match_hint . php " , line 5 , characters 10 - 12 : <nl> - Wrong type hint ( Typing [ 4339 ] ) <nl> - File " 4339 - class_property_initializer_does_not_match_hint . php " , line 5 , characters 10 - 12 : <nl> - Expected int <nl> - File " 4339 - class_property_initializer_does_not_match_hint . php " , line 5 , characters 19 - 24 : <nl> - But got string <nl> deleted file mode 100644 <nl> index c79b360e9c1 . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4339 - class_property_initializer_does_not_match_hint . php . rust . out <nl> ppp / dev / null <nl> <nl> - File " 4339 - class_property_initializer_does_not_match_hint . php " , line 5 , characters 10 - 12 : <nl> - Wrong type hint ( Typing [ 4339 ] ) <nl> - File " 4339 - class_property_initializer_does_not_match_hint . php " , line 5 , characters 10 - 12 : <nl> - Expected int <nl> - File " 4339 - class_property_initializer_does_not_match_hint . php " , line 5 , characters 19 - 24 : <nl> - But got string <nl> deleted file mode 100644 <nl> index b011171d5ed . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4340 - bad_decl_override . php . legacy_decl . out <nl> ppp / dev / null <nl> <nl> - File " 4340 - bad_decl_override . php " , line 8 , characters 7 - 7 : <nl> - Class B does not correctly implement all required members ( Typing [ 4340 ] ) <nl> - File " 4340 - bad_decl_override . php " , line 8 , characters 17 - 17 : <nl> - Some members are incompatible with those declared in type A <nl> - Read the following to see why : <nl> - File " 4340 - bad_decl_override . php " , line 9 , characters 19 - 21 : <nl> - Member foo has the wrong type <nl> - File " 4340 - bad_decl_override . php " , line 9 , characters 23 - 28 : <nl> - Expected string <nl> - File " 4340 - bad_decl_override . php " , line 5 , characters 23 - 25 : <nl> - But got int <nl> deleted file mode 100644 <nl> index b011171d5ed . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4340 - bad_decl_override . php . like_types . out <nl> ppp / dev / null <nl> <nl> - File " 4340 - bad_decl_override . php " , line 8 , characters 7 - 7 : <nl> - Class B does not correctly implement all required members ( Typing [ 4340 ] ) <nl> - File " 4340 - bad_decl_override . php " , line 8 , characters 17 - 17 : <nl> - Some members are incompatible with those declared in type A <nl> - Read the following to see why : <nl> - File " 4340 - bad_decl_override . php " , line 9 , characters 19 - 21 : <nl> - Member foo has the wrong type <nl> - File " 4340 - bad_decl_override . php " , line 9 , characters 23 - 28 : <nl> - Expected string <nl> - File " 4340 - bad_decl_override . php " , line 5 , characters 23 - 25 : <nl> - But got int <nl> deleted file mode 100644 <nl> index b011171d5ed . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4340 - bad_decl_override . php . out <nl> ppp / dev / null <nl> <nl> - File " 4340 - bad_decl_override . php " , line 8 , characters 7 - 7 : <nl> - Class B does not correctly implement all required members ( Typing [ 4340 ] ) <nl> - File " 4340 - bad_decl_override . php " , line 8 , characters 17 - 17 : <nl> - Some members are incompatible with those declared in type A <nl> - Read the following to see why : <nl> - File " 4340 - bad_decl_override . php " , line 9 , characters 19 - 21 : <nl> - Member foo has the wrong type <nl> - File " 4340 - bad_decl_override . php " , line 9 , characters 23 - 28 : <nl> - Expected string <nl> - File " 4340 - bad_decl_override . php " , line 5 , characters 23 - 25 : <nl> - But got int <nl> deleted file mode 100644 <nl> index b011171d5ed . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4340 - bad_decl_override . php . rust . out <nl> ppp / dev / null <nl> <nl> - File " 4340 - bad_decl_override . php " , line 8 , characters 7 - 7 : <nl> - Class B does not correctly implement all required members ( Typing [ 4340 ] ) <nl> - File " 4340 - bad_decl_override . php " , line 8 , characters 17 - 17 : <nl> - Some members are incompatible with those declared in type A <nl> - Read the following to see why : <nl> - File " 4340 - bad_decl_override . php " , line 9 , characters 19 - 21 : <nl> - Member foo has the wrong type <nl> - File " 4340 - bad_decl_override . php " , line 9 , characters 23 - 28 : <nl> - Expected string <nl> - File " 4340 - bad_decl_override . php " , line 5 , characters 23 - 25 : <nl> - But got int <nl> deleted file mode 100644 <nl> index 5dbd40fda30 . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4341 - bad_method_override . php . legacy_decl . out <nl> ppp / dev / null <nl> <nl> - File " 4341 - bad_method_override . php " , line 9 , characters 19 - 21 : <nl> - Member foo has the wrong type ( Typing [ 4341 ] ) <nl> - File " 4341 - bad_method_override . php " , line 9 , characters 23 - 28 : <nl> - Expected string <nl> - File " 4341 - bad_method_override . php " , line 5 , characters 23 - 25 : <nl> - But got int <nl> deleted file mode 100644 <nl> index 5dbd40fda30 . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4341 - bad_method_override . php . like_types . out <nl> ppp / dev / null <nl> <nl> - File " 4341 - bad_method_override . php " , line 9 , characters 19 - 21 : <nl> - Member foo has the wrong type ( Typing [ 4341 ] ) <nl> - File " 4341 - bad_method_override . php " , line 9 , characters 23 - 28 : <nl> - Expected string <nl> - File " 4341 - bad_method_override . php " , line 5 , characters 23 - 25 : <nl> - But got int <nl> deleted file mode 100644 <nl> index 5dbd40fda30 . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4341 - bad_method_override . php . out <nl> ppp / dev / null <nl> <nl> - File " 4341 - bad_method_override . php " , line 9 , characters 19 - 21 : <nl> - Member foo has the wrong type ( Typing [ 4341 ] ) <nl> - File " 4341 - bad_method_override . php " , line 9 , characters 23 - 28 : <nl> - Expected string <nl> - File " 4341 - bad_method_override . php " , line 5 , characters 23 - 25 : <nl> - But got int <nl> deleted file mode 100644 <nl> index 5dbd40fda30 . . 00000000000 <nl> mmm a / hphp / hack / test / typecheck / errors / 4341 - bad_method_override . php . rust . out <nl> ppp / dev / null <nl> <nl> - File " 4341 - bad_method_override . php " , line 9 , characters 19 - 21 : <nl> - Member foo has the wrong type ( Typing [ 4341 ] ) <nl> - File " 4341 - bad_method_override . php " , line 9 , characters 23 - 28 : <nl> - Expected string <nl> - File " 4341 - bad_method_override . php " , line 5 , characters 23 - 25 : <nl> - But got int <nl>
removing useless . out test files
facebook/hhvm
999f0e3c1986596b740592c87b3523e63f28271c
2019-09-09T13:49:10Z
mmm a / cmake / Cuda . cmake <nl> ppp b / cmake / Cuda . cmake <nl> function ( detect_cuDNN ) <nl> PATHS $ { CUDNN_ROOT } $ ENV { CUDNN_ROOT } $ { CUDA_TOOLKIT_INCLUDE } <nl> DOC " Path to cuDNN include directory . " ) <nl> <nl> - get_filename_component ( __libpath_hist $ { CUDA_CUDART_LIBRARY } PATH ) <nl> - find_library ( CUDNN_LIBRARY NAMES libcudnn . so # libcudnn_static . a <nl> - PATHS $ { CUDNN_ROOT } $ ENV { CUDNN_ROOT } $ { CUDNN_INCLUDE } $ { __libpath_hist } <nl> - DOC " Path to cuDNN library . " ) <nl> + # dynamic libs have different suffix in mac and linux <nl> + if ( APPLE ) <nl> + set ( CUDNN_LIB_NAME " libcudnn . dylib " ) <nl> + else ( ) <nl> + set ( CUDNN_LIB_NAME " libcudnn . so " ) <nl> + endif ( ) <nl> <nl> + get_filename_component ( __libpath_hist $ { CUDA_CUDART_LIBRARY } PATH ) <nl> + find_library ( CUDNN_LIBRARY NAMES $ { CUDNN_LIB_NAME } <nl> + PATHS $ { CUDNN_ROOT } $ ENV { CUDNN_ROOT } $ { CUDNN_INCLUDE } $ { __libpath_hist } $ { __libpath_hist } / . . / lib <nl> + DOC " Path to cuDNN library . " ) <nl> + <nl> if ( CUDNN_INCLUDE AND CUDNN_LIBRARY ) <nl> set ( HAVE_CUDNN TRUE PARENT_SCOPE ) <nl> set ( CUDNN_FOUND TRUE PARENT_SCOPE ) <nl>
Merge pull request from shelhamer / osx - cudnn - dylib
BVLC/caffe
14643685a4693df0ea8364f4688211316ffb8ba1
2016-08-20T06:18:36Z
mmm a / tensorflow / python / data / ops / dataset_ops . py <nl> ppp b / tensorflow / python / data / ops / dataset_ops . py <nl> class ZipDataset ( Dataset ) : <nl> def __init__ ( self , datasets ) : <nl> " " " See ` Dataset . zip ( ) ` for details . " " " <nl> super ( ZipDataset , self ) . __init__ ( ) <nl> + for ds in nest . flatten ( datasets ) : <nl> + if not isinstance ( ds , Dataset ) : <nl> + if isinstance ( ds , list ) : <nl> + message = ( " The argument to ` Dataset . zip ( ) ` must be a nested " <nl> + " structure of ` Dataset ` objects . Nested structures do not " <nl> + " support Python lists ; please use a tuple instead . " ) <nl> + else : <nl> + message = ( " The argument to ` Dataset . zip ( ) ` must be a nested " <nl> + " structure of ` Dataset ` objects . " ) <nl> + raise TypeError ( message ) <nl> self . _datasets = datasets <nl> <nl> def _as_variant_tensor ( self ) : <nl>
[ tf . data ] More actionable error message when passing a list to ` Dataset . zip ( ) ` .
tensorflow/tensorflow
3c00952c6680d77ee2f10def35fbc7cbd138aea3
2017-10-02T17:14:03Z
mmm a / scripts / static - build . sh <nl> ppp b / scripts / static - build . sh <nl> function usage ( ) { <nl> echo " Target : " <nl> echo " linux - local Compile under local linux distro " <nl> echo " linux - amd64 Compile under debian 64bit chroot " <nl> - echo " linux - i368 Compile under debian 32bit chroot " <nl> + echo " linux - i386 Compile under debian 32bit chroot " <nl> echo " windows Compile windows binary using wine " <nl> } <nl> VERSION = " " <nl>
Merge pull request from sni / master
wkhtmltopdf/wkhtmltopdf
5b394ad560771e6d591c888f2c0619861a4d2391
2013-07-06T16:32:01Z
mmm a / dlib / test / svm_multiclass_linear . cpp <nl> ppp b / dlib / test / svm_multiclass_linear . cpp <nl> <nl> # include < dlib / data_io . h > <nl> # include " create_iris_datafile . h " <nl> # include < vector > <nl> + # include < map > <nl> # include < sstream > <nl> <nl> namespace <nl> namespace <nl> DLIB_TEST ( ( unsigned int ) sum ( diag ( res ) ) = = samples . size ( ) ) ; <nl> } <nl> <nl> + void test_prior_sparse ( ) <nl> + { <nl> + print_spinner ( ) ; <nl> + typedef std : : map < unsigned long , double > sample_type ; <nl> + typedef sparse_linear_kernel < sample_type > kernel_type ; <nl> + <nl> + std : : vector < sample_type > samples ; <nl> + std : : vector < int > labels ; <nl> + <nl> + for ( int i = 0 ; i < 4 ; + + i ) <nl> + { <nl> + if ( i = = 2 ) <nl> + + + i ; <nl> + for ( int iter = 0 ; iter < 5 ; + + iter ) <nl> + { <nl> + sample_type samp ; <nl> + samp [ i ] = 1 ; <nl> + samples . push_back ( samp ) ; <nl> + labels . push_back ( i ) ; <nl> + } <nl> + } <nl> + <nl> + <nl> + svm_multiclass_linear_trainer < kernel_type , int > trainer ; <nl> + <nl> + multiclass_linear_decision_function < kernel_type , int > df = trainer . train ( samples , labels ) ; <nl> + <nl> + / / cout < < " test : \ n " < < test_multiclass_decision_function ( df , samples , labels ) < < endl ; <nl> + / / cout < < df . weights < < endl ; <nl> + / / cout < < df . b < < endl ; <nl> + <nl> + std : : vector < sample_type > samples2 ; <nl> + std : : vector < int > labels2 ; <nl> + int i = 2 ; <nl> + for ( int iter = 0 ; iter < 5 ; + + iter ) <nl> + { <nl> + sample_type samp ; <nl> + samp [ i ] = 1 ; <nl> + samp [ i + 10 ] = 1 ; <nl> + samples2 . push_back ( samp ) ; <nl> + labels2 . push_back ( i ) ; <nl> + samples . push_back ( samp ) ; <nl> + labels . push_back ( i ) ; <nl> + } <nl> + <nl> + trainer . set_prior ( df ) ; <nl> + trainer . set_c ( 0 . 1 ) ; <nl> + df = trainer . train ( samples2 , labels2 ) ; <nl> + <nl> + matrix < double > res = test_multiclass_decision_function ( df , samples , labels ) ; <nl> + dlog < < LINFO < < " test : \ n " < < res ; <nl> + dlog < < LINFO < < df . weights ; <nl> + dlog < < LINFO < < df . b ; <nl> + DLIB_TEST ( ( unsigned int ) sum ( diag ( res ) ) = = samples . size ( ) ) ; <nl> + } <nl> + <nl> template < typename sample_type > <nl> void run_test ( ) <nl> { <nl> namespace <nl> run_test < std : : vector < std : : pair < unsigned long , double > > > ( ) ; <nl> <nl> test_prior ( ) ; <nl> + test_prior_sparse ( ) ; <nl> } <nl> } ; <nl> <nl>
Added unit tests for the svm_multiclass_linear with sparse priors
davisking/dlib
d7f207f2f7e7e29f8807a09ec0b2809eeb24c1f5
2014-05-23T22:35:49Z
mmm a / libraries / EEPROM / EEPROM . h <nl> ppp b / libraries / EEPROM / EEPROM . h <nl> class EEPROMClass { <nl> const T & put ( int address , const T & t ) { <nl> if ( address < 0 | | address + sizeof ( T ) > _size ) <nl> return t ; <nl> + if ( memcmp ( _data + address , ( const uint8_t * ) & t , sizeof ( T ) ) ! = 0 ) { <nl> + _dirty = true ; <nl> + memcpy ( _data + address , ( const uint8_t * ) & t , sizeof ( T ) ) ; <nl> + } <nl> <nl> - memcpy ( _data + address , ( const uint8_t * ) & t , sizeof ( T ) ) ; <nl> - _dirty = true ; <nl> return t ; <nl> } <nl> <nl>
Optimize EEPROM : : put ( )
esp8266/Arduino
53d7cc01cf927ad9cd6386cbbd1b5c878b51dac8
2017-10-15T07:16:42Z
mmm a / src / gui / transferlistfilterswidget . cpp <nl> ppp b / src / gui / transferlistfilterswidget . cpp <nl> void CategoryFiltersList : : addItem ( const QString & category , bool hasTorrent ) <nl> + + torrentsInCategory ; <nl> <nl> m_categories . insert ( category , torrentsInCategory ) ; <nl> - categoryItem - > setText ( tr ( " % 1 ( % 2 ) " , " category_name ( 10 ) " ) . arg ( category ) . arg ( torrentsInCategory ) ) ; <nl> + categoryItem - > setText ( QString ( " % 1 ( % 2 ) " ) . arg ( category ) . arg ( torrentsInCategory ) ) ; <nl> if ( exists ) return ; <nl> <nl> Q_ASSERT ( count ( ) > = 2 ) ; <nl> void CategoryFiltersList : : removeItem ( const QString & category ) <nl> if ( row < 2 ) return ; <nl> <nl> QListWidgetItem * categoryItem = item ( row ) ; <nl> - categoryItem - > setText ( tr ( " % 1 ( % 2 ) " , " category_name ( 10 ) " ) . arg ( category ) . arg ( torrentsInCategory ) ) ; <nl> + categoryItem - > setText ( QString ( " % 1 ( % 2 ) " ) . arg ( category ) . arg ( torrentsInCategory ) ) ; <nl> m_categories . insert ( category , torrentsInCategory ) ; <nl> } <nl> <nl> void TrackerFiltersList : : addItem ( const QString & tracker , const QString & hash ) <nl> return ; <nl> } <nl> <nl> - trackerItem - > setText ( tr ( " % 1 ( % 2 ) " , " openbittorrent . com ( 10 ) " ) . arg ( host ) . arg ( tmp . size ( ) ) ) ; <nl> + trackerItem - > setText ( QString ( " % 1 ( % 2 ) " ) . arg ( host ) . arg ( tmp . size ( ) ) ) ; <nl> if ( exists ) { <nl> if ( currentRow ( ) = = rowFromTracker ( host ) ) <nl> applyFilter ( currentRow ( ) ) ; <nl>
Avoid unnecessary translation . Closes
qbittorrent/qBittorrent
e89c32685bc3e807b3b1d528bcd20b644bcf6793
2016-12-30T16:29:47Z
mmm a / tensorflow / contrib / learn / python / learn / estimators / estimator . py <nl> ppp b / tensorflow / contrib / learn / python / learn / estimators / estimator . py <nl> def evaluate ( self , <nl> metrics = None , <nl> name = None , <nl> checkpoint_path = None , <nl> - hooks = None ) : <nl> + hooks = None , <nl> + log_progress = True ) : <nl> # pylint : disable = g - doc - args , g - doc - return - or - yield <nl> " " " See ` Evaluable ` . <nl> <nl> def evaluate ( self , <nl> metrics = metrics , <nl> name = name , <nl> checkpoint_path = checkpoint_path , <nl> - hooks = hooks ) <nl> + hooks = hooks , <nl> + log_progress = log_progress ) <nl> <nl> if eval_results is not None : <nl> eval_results . update ( { ' global_step ' : global_step } ) <nl> def _evaluate_model ( self , <nl> metrics = None , <nl> name = ' ' , <nl> checkpoint_path = None , <nl> - hooks = None ) : <nl> + hooks = None , <nl> + log_progress = True ) : <nl> # TODO ( wicke ) : Remove this once Model and associated code are gone . <nl> if ( hasattr ( self . _config , ' execution_mode ' ) and <nl> self . _config . execution_mode not in ( ' all ' , ' evaluate ' , ' eval_evalset ' ) ) : <nl> def _evaluate_model ( self , <nl> if feed_fn : <nl> hooks . append ( _FeedFnHook ( feed_fn ) ) <nl> if steps : <nl> - hooks . append ( evaluation . StopAfterNEvalsHook ( steps ) ) <nl> + hooks . append ( <nl> + evaluation . StopAfterNEvalsHook ( <nl> + steps , log_progress = log_progress ) ) <nl> <nl> global_step_key = ' global_step ' <nl> while global_step_key in eval_dict : <nl> mmm a / tensorflow / contrib / learn / python / learn / estimators / estimator_test . py <nl> ppp b / tensorflow / contrib / learn / python / learn / estimators / estimator_test . py <nl> def testIrisIterator ( self ) : <nl> y_iter_eval = itertools . islice ( iris . target , 100 ) <nl> score_result = estimator . SKCompat ( est ) . score ( x_iter_eval , y_iter_eval ) <nl> print ( score_result ) <nl> - self . assertEqual ( eval_result . keys ( ) , score_result . keys ( ) ) <nl> - self . assertAllEqual ( score_result . keys ( ) , [ ' global_step ' , ' loss ' ] ) <nl> + self . assertItemsEqual ( eval_result . keys ( ) , score_result . keys ( ) ) <nl> + self . assertItemsEqual ( [ ' global_step ' , ' loss ' ] , score_result . keys ( ) ) <nl> predictions = estimator . SKCompat ( est ) . predict ( x = iris . data ) [ ' class ' ] <nl> self . assertEqual ( len ( predictions ) , iris . target . shape [ 0 ] ) <nl> <nl> mmm a / tensorflow / contrib / learn / python / learn / experiment . py <nl> ppp b / tensorflow / contrib / learn / python / learn / experiment . py <nl> def __init__ ( self , <nl> continuous_eval_throttle_secs = 60 , <nl> min_eval_frequency = 1 , <nl> delay_workers_by_global_step = False , <nl> - export_strategies = None ) : <nl> + export_strategies = None , <nl> + continuous_eval_predicate_fn = None ) : <nl> " " " Constructor for ` Experiment ` . <nl> <nl> Creates an Experiment instance . None of the functions passed to this <nl> def __init__ ( self , <nl> delay_workers_by_global_step : if ` True ` delays training workers <nl> based on global step instead of time . <nl> export_strategies : A list of ` ExportStrategy ` s , or a single one , or None . <nl> + continuous_eval_predicate_fn : A predicate function determining whether to <nl> + continue eval after each iteration . ` predicate_fn ` takes the evaluation <nl> + results as arguments . At the beginning of evaluation , the passed eval <nl> + results will be None so it ' s expected that the predicate function <nl> + handles that gracefully . When ` predicate_fn ` is not specified , <nl> + continuous eval will run in an infinite loop . <nl> <nl> Raises : <nl> ValueError : if ` estimator ` does not implement ` Evaluable ` and ` Trainable ` , <nl> def __init__ ( self , <nl> self . train_monitors = train_monitors <nl> self . eval_hooks = eval_hooks <nl> self . export_strategies = export_strategies <nl> + self . continuous_eval_predicate_fn = continuous_eval_predicate_fn <nl> <nl> @ property <nl> def estimator ( self ) : <nl> def min_eval_frequency ( self ) : <nl> def delay_workers_by_global_step ( self ) : <nl> return self . _delay_workers_by_global_step <nl> <nl> + @ property <nl> + def continuous_eval_predicate_fn ( self ) : <nl> + return self . _continuous_eval_predicate_fn <nl> + <nl> + @ continuous_eval_predicate_fn . setter <nl> + def continuous_eval_predicate_fn ( self , value ) : <nl> + if value is not None and not callable ( value ) : <nl> + raise ValueError ( <nl> + " ` continuous_eval_predicate_fn ` must be a callable , or None . " ) <nl> + self . _continuous_eval_predicate_fn = value <nl> + <nl> @ property <nl> def export_strategies ( self ) : <nl> return self . _export_strategies <nl> def _continuous_eval ( self , <nl> time . sleep ( delay_secs ) <nl> <nl> previous_path = None <nl> + eval_result = None <nl> last_warning_time = 0 <nl> - while True : <nl> + while ( not self . continuous_eval_predicate_fn or <nl> + self . continuous_eval_predicate_fn ( eval_result ) ) : <nl> start = time . time ( ) <nl> <nl> error_msg = None <nl> def _continuous_eval ( self , <nl> <nl> if error_msg : <nl> # Print warning message every 10 mins . <nl> + eval_result = { } <nl> if time . time ( ) - last_warning_time > 600 : <nl> logging . warning ( error_msg ) <nl> last_warning_time = time . time ( ) <nl> def _continuous_eval ( self , <nl> metrics = self . _eval_metrics , <nl> name = name , <nl> checkpoint_path = latest_path ) <nl> + # Ensure eval result is not None for next round of evaluation . <nl> + if not eval_result : <nl> + eval_result = { } <nl> <nl> # TODO ( soergel ) : further throttle how often export happens ? <nl> self . _maybe_export ( eval_result ) <nl> def _continuous_eval ( self , <nl> difference ) <nl> time . sleep ( difference ) <nl> <nl> - def continuous_eval ( self , delay_secs = None , throttle_delay_secs = None , <nl> + def continuous_eval ( self , <nl> + delay_secs = None , <nl> + throttle_delay_secs = None , <nl> evaluate_checkpoint_only_once = True ) : <nl> self . _continuous_eval ( <nl> self . _eval_input_fn , <nl> def continuous_eval ( self , delay_secs = None , throttle_delay_secs = None , <nl> def continuous_eval_on_train_data ( self , <nl> delay_secs = None , <nl> throttle_delay_secs = None ) : <nl> - self . _continuous_eval ( self . _train_input_fn , <nl> - name = " continuous_on_train_data " , <nl> - delay_secs = delay_secs , <nl> - throttle_delay_secs = throttle_delay_secs ) <nl> + self . _continuous_eval ( <nl> + self . _train_input_fn , <nl> + name = " continuous_on_train_data " , <nl> + delay_secs = delay_secs , <nl> + throttle_delay_secs = throttle_delay_secs ) <nl> <nl> def train_and_evaluate ( self ) : <nl> " " " Interleaves training and evaluation . <nl> mmm a / tensorflow / contrib / learn / python / learn / experiment_test . py <nl> ppp b / tensorflow / contrib / learn / python / learn / experiment_test . py <nl> def test_continuous_eval_throttle_delay ( self ) : <nl> evaluate_checkpoint_only_once = False ) <nl> self . assertAlmostEqual ( 5 * delay , sheep . total_time , delta = 0 . 1 ) <nl> <nl> + def test_continuous_eval_predicate_fn ( self ) : <nl> + est = TestEstimator ( ) <nl> + est . fake_checkpoint ( ) <nl> + <nl> + def _predicate_fn ( unused_eval_result ) : <nl> + return est . eval_count < 3 <nl> + <nl> + ex = experiment . Experiment ( <nl> + est , <nl> + train_input_fn = ' train_input ' , <nl> + eval_input_fn = ' eval_input ' , <nl> + eval_metrics = ' eval_metrics ' , <nl> + eval_delay_secs = 0 , <nl> + continuous_eval_throttle_secs = 0 , <nl> + continuous_eval_predicate_fn = _predicate_fn ) <nl> + ex . continuous_eval ( evaluate_checkpoint_only_once = False ) <nl> + self . assertEquals ( 3 , est . eval_count ) <nl> + self . assertEquals ( 0 , est . fit_count ) <nl> + <nl> def test_run_local ( self ) : <nl> est = TestEstimator ( ) <nl> ex = experiment . Experiment ( <nl> mmm a / tensorflow / contrib / tensor_forest / client / random_forest . py <nl> ppp b / tensorflow / contrib / tensor_forest / client / random_forest . py <nl> def after_run ( self , run_context , run_values ) : <nl> <nl> <nl> def get_model_fn ( params , graph_builder_class , device_assigner , <nl> - weights_name = None , keys_name = None ) : <nl> + weights_name = None , keys_name = None , num_trainers = 1 , <nl> + trainer_id = 0 ) : <nl> " " " Return a model function given a way to construct a graph builder . " " " <nl> def _model_fn ( features , labels ) : <nl> " " " Function that returns predictions , training loss , and training op . " " " <nl> def _model_fn ( features , labels ) : <nl> features , labels , name = LOSS_NAME ) <nl> training_graph = control_flow_ops . group ( <nl> graph_builder . training_graph ( <nl> - features , labels , input_weights = weights ) , <nl> + features , labels , input_weights = weights , <nl> + num_trainers = num_trainers , <nl> + trainer_id = trainer_id ) , <nl> state_ops . assign_add ( contrib_framework . get_global_step ( ) , 1 ) ) <nl> # Put weights back in <nl> if weights is not None : <nl> def input_fn_eval : # returns x , y <nl> def __init__ ( self , params , device_assigner = None , model_dir = None , <nl> graph_builder_class = tensor_forest . RandomForestGraphs , <nl> config = None , weights_name = None , keys_name = None , <nl> - feature_engineering_fn = None , early_stopping_rounds = 100 ) : <nl> + feature_engineering_fn = None , early_stopping_rounds = 100 , <nl> + num_trainers = 1 , trainer_id = 0 ) : <nl> <nl> " " " Initializes a TensorForestEstimator instance . <nl> <nl> def __init__ ( self , params , device_assigner = None , model_dir = None , <nl> labels which will be fed into the model . <nl> early_stopping_rounds : Allows training to terminate early if the forest is <nl> no longer growing . 100 by default . <nl> + num_trainers : Number of training jobs , which will partition trees <nl> + among them . <nl> + trainer_id : Which trainer this instance is . <nl> <nl> Returns : <nl> A ` TensorForestEstimator ` instance . <nl> def __init__ ( self , params , device_assigner = None , model_dir = None , <nl> self . weights_name = weights_name <nl> self . _estimator = estimator . Estimator ( <nl> model_fn = get_model_fn ( params , graph_builder_class , device_assigner , <nl> - weights_name = weights_name , keys_name = keys_name ) , <nl> + weights_name = weights_name , keys_name = keys_name , <nl> + num_trainers = num_trainers , trainer_id = trainer_id ) , <nl> model_dir = model_dir , <nl> config = config , <nl> feature_engineering_fn = feature_engineering_fn ) <nl> mmm a / tensorflow / contrib / tensor_forest / python / tensor_forest . py <nl> ppp b / tensorflow / contrib / tensor_forest / python / tensor_forest . py <nl> def __init__ ( self , params , device_assigner , training = True , <nl> tree_variables_class = TreeTrainingVariables ) : <nl> self . variables = [ ] <nl> for i in range ( params . num_trees ) : <nl> - with ops . device ( device_assigner . get_device ( i ) ) : <nl> + with ops . device ( device_assigner . get_variable_device ( i ) ) : <nl> self . variables . append ( tree_variables_class ( params , i , training ) ) <nl> <nl> def __setitem__ ( self , t , val ) : <nl> class RandomForestDeviceAssigner ( object ) : <nl> <nl> def __init__ ( self ) : <nl> self . cached = None <nl> + self . variables = None <nl> + self . params = None <nl> <nl> - def get_device ( self , unused_tree_num ) : <nl> + def get_variable_device ( self , unused_tree_num ) : <nl> if not self . cached : <nl> dummy = constant_op . constant ( 0 ) <nl> self . cached = dummy . device <nl> - <nl> return self . cached <nl> <nl> + def get_device ( self , tree_num ) : <nl> + # By default , colocate ops with variables . <nl> + return self . get_variable_device ( tree_num ) <nl> + <nl> <nl> class RandomForestGraphs ( object ) : <nl> " " " Builds TF graphs for random forest training and inference . " " " <nl> def __init__ ( self , <nl> training = True ) : <nl> self . params = params <nl> self . device_assigner = device_assigner or RandomForestDeviceAssigner ( ) <nl> + self . device_assigner . params = self . params <nl> logging . info ( ' Constructing forest with params = ' ) <nl> logging . info ( self . params . __dict__ ) <nl> self . variables = variables or ForestTrainingVariables ( <nl> def __init__ ( self , <nl> tree_graph_class ( self . variables [ i ] , self . params , i ) <nl> for i in range ( self . params . num_trees ) <nl> ] <nl> + self . device_assigner . variables = self . variables <nl> <nl> def _bag_features ( self , tree_num , input_data ) : <nl> split_data = array_ops . split ( <nl> def _bag_features ( self , tree_num , input_data ) : <nl> def training_graph ( self , <nl> input_data , <nl> input_labels , <nl> + num_trainers = 1 , <nl> + trainer_id = 0 , <nl> * * tree_kwargs ) : <nl> " " " Constructs a TF graph for training a random forest . <nl> <nl> def training_graph ( self , <nl> input_data : A tensor or dict of string - > Tensor for input data . <nl> input_labels : A tensor or placeholder for labels associated with <nl> input_data . <nl> + num_trainers : Number of parallel trainers to split trees among . <nl> + trainer_id : Which trainer this instance is . <nl> * * tree_kwargs : Keyword arguments passed to each tree ' s training_graph . <nl> <nl> Returns : <nl> def training_graph ( self , <nl> data_spec = data_spec or self . get_default_data_spec ( input_data ) <nl> <nl> tree_graphs = [ ] <nl> - for i in range ( self . params . num_trees ) : <nl> + trees_per_trainer = self . params . num_trees / num_trainers <nl> + tree_start = int ( trainer_id * trees_per_trainer ) <nl> + tree_end = int ( ( trainer_id + 1 ) * trees_per_trainer ) <nl> + for i in range ( tree_start , tree_end ) : <nl> + logging . info ( ' training graph for tree : % d ' % i ) <nl> with ops . device ( self . device_assigner . get_device ( i ) ) : <nl> seed = self . params . base_random_seed <nl> if seed ! = 0 : <nl> mmm a / tensorflow / contrib / training / python / training / evaluation . py <nl> ppp b / tensorflow / contrib / training / python / training / evaluation . py <nl> def get_or_create_eval_step ( ) : <nl> class StopAfterNEvalsHook ( session_run_hook . SessionRunHook ) : <nl> " " " Run hook used by the evaluation routines to run the ` eval_ops ` N times . " " " <nl> <nl> - def __init__ ( self , num_evals ) : <nl> + def __init__ ( self , num_evals , log_progress = True ) : <nl> " " " Constructs the run hook . <nl> <nl> Args : <nl> num_evals : The number of evaluations to run for . <nl> + log_progress : Whether to log evaluation progress , defaults to True . <nl> " " " <nl> # The number of evals to run for . <nl> self . _num_evals = num_evals <nl> self . _evals_completed = None <nl> + self . _log_progress = log_progress <nl> <nl> def _set_evals_completed_tensor ( self , updated_eval_step ) : <nl> self . _evals_completed = updated_eval_step <nl> def before_run ( self , run_context ) : <nl> <nl> def after_run ( self , run_context , run_values ) : <nl> evals_completed = run_values . results [ ' evals_completed ' ] <nl> - logging . info ( ' Evaluation [ % d / % d ] ' , evals_completed , self . _num_evals ) <nl> + if self . _log_progress : <nl> + logging . info ( ' Evaluation [ % d / % d ] ' , evals_completed , self . _num_evals ) <nl> if evals_completed > = self . _num_evals : <nl> run_context . request_stop ( ) <nl> <nl> mmm a / tensorflow / core / BUILD <nl> ppp b / tensorflow / core / BUILD <nl> filegroup ( <nl> visibility = [ " / / visibility : public " ] , <nl> ) <nl> <nl> - # Core sources . Should eventually become identical to open source <nl> - # sources . <nl> + # Core sources for Android builds . <nl> filegroup ( <nl> name = " android_srcs " , <nl> srcs = [ <nl> mmm a / tensorflow / core / util / tensor_bundle / tensor_bundle . cc <nl> ppp b / tensorflow / core / util / tensor_bundle / tensor_bundle . cc <nl> limitations under the License . <nl> # include " tensorflow / core / lib / hash / crc32c . h " <nl> # include " tensorflow / core / lib / io / path . h " <nl> # include " tensorflow / core / lib / io / table_builder . h " <nl> + # include " tensorflow / core / lib / random / random . h " <nl> # include " tensorflow / core / lib / strings / stringprintf . h " <nl> # include " tensorflow / core / util / saved_tensor_slice_util . h " <nl> # include " tensorflow / core / util / tensor_slice_util . h " <nl> bool IsFullSlice ( const TensorSlice & slice_spec , <nl> } / / namespace <nl> <nl> BundleWriter : : BundleWriter ( Env * env , StringPiece prefix ) <nl> - : env_ ( env ) , prefix_ ( prefix . ToString ( ) ) , out_ ( nullptr ) , size_ ( 0 ) { <nl> + : env_ ( env ) , <nl> + prefix_ ( prefix . ToString ( ) ) , <nl> + tmp_metadata_path_ ( strings : : StrCat ( MetaFilename ( prefix_ ) , " . tempstate " , <nl> + random : : New64 ( ) ) ) , <nl> + tmp_data_path_ ( strings : : StrCat ( DataFilename ( prefix_ , 0 , 1 ) , " . tempstate " , <nl> + random : : New64 ( ) ) ) , <nl> + out_ ( nullptr ) , <nl> + size_ ( 0 ) { <nl> status_ = <nl> env_ - > CreateDir ( io : : Dirname ( prefix_ ) . ToString ( ) ) ; / / Ignores errors . <nl> const string filename = DataFilename ( prefix_ , 0 , 1 ) ; <nl> std : : unique_ptr < WritableFile > wrapper ; <nl> - status_ = env_ - > NewWritableFile ( filename , & wrapper ) ; <nl> + status_ = env_ - > NewWritableFile ( tmp_data_path_ , & wrapper ) ; <nl> if ( ! status_ . ok ( ) ) return ; <nl> out_ = std : : unique_ptr < FileOutputBuffer > ( <nl> new FileOutputBuffer ( wrapper . release ( ) , 8 < < 20 / * 8MB write buffer * / ) ) ; <nl> <nl> - VLOG ( 1 ) < < " Writing to file " < < filename ; <nl> + VLOG ( 1 ) < < " Writing to file " < < tmp_data_path_ ; <nl> } <nl> <nl> BundleWriter : : ~ BundleWriter ( ) { CHECK ( out_ = = nullptr ) ; } <nl> Status BundleWriter : : Finish ( ) { <nl> if ( out_ ) { <nl> status_ . Update ( out_ - > Close ( ) ) ; <nl> out_ = nullptr ; <nl> + if ( status_ . ok ( ) ) { <nl> + status_ = Env : : Default ( ) - > RenameFile ( tmp_data_path_ , <nl> + DataFilename ( prefix_ , 0 , 1 ) ) ; <nl> + } else { <nl> + Env : : Default ( ) - > DeleteFile ( tmp_data_path_ ) ; <nl> + } <nl> } <nl> if ( ! status_ . ok ( ) ) return status_ ; <nl> / / Build key - > BundleEntryProto table . <nl> std : : unique_ptr < WritableFile > file ; <nl> - status_ = env_ - > NewWritableFile ( MetaFilename ( prefix_ ) , & file ) ; <nl> + status_ = env_ - > NewWritableFile ( tmp_metadata_path_ , & file ) ; <nl> if ( ! status_ . ok ( ) ) return status_ ; <nl> { <nl> / / N . B . : the default use of Snappy compression may not be supported on all <nl> Status BundleWriter : : Finish ( ) { <nl> status_ = builder . Finish ( ) ; <nl> } <nl> status_ . Update ( file - > Close ( ) ) ; <nl> - if ( ! status_ . ok ( ) ) return status_ ; <nl> + if ( ! status_ . ok ( ) ) { <nl> + Env : : Default ( ) - > DeleteFile ( tmp_metadata_path_ ) ; <nl> + return status_ ; <nl> + } else { <nl> + status_ = <nl> + Env : : Default ( ) - > RenameFile ( tmp_metadata_path_ , MetaFilename ( prefix_ ) ) ; <nl> + if ( ! status_ . ok ( ) ) return status_ ; <nl> + } <nl> status_ = errors : : Internal ( " BundleWriter is closed " ) ; <nl> return Status : : OK ( ) ; <nl> } <nl> static Status MergeOneBundle ( Env * env , StringPiece prefix , <nl> / / Illegal : the duplicated entry is a non - slice tensor . <nl> if ( entry_iter ! = merge_state - > entries . end ( ) & & <nl> entry_iter - > second . slices ( ) . empty ( ) ) { <nl> - return errors : : InvalidArgument ( " Duplicate tensor keyed by " , key , <nl> - " encountered , when merging prefix : " , <nl> - prefix ) ; <nl> + return errors : : InvalidArgument ( <nl> + " Duplicate tensor keyed by " , key , <nl> + " encountered , when merging prefix : " , prefix ) ; <nl> } <nl> <nl> TF_RETURN_IF_ERROR ( <nl> Status BundleReader : : GetSliceValue ( StringPiece full_tensor_key , <nl> if ( ! tss - > QueryMeta ( slice_spec , & details ) ) { <nl> return errors : : InvalidArgument ( <nl> " Does not have sufficient slices for partitioned tensor " , <nl> - full_tensor_key , " to restore in slice_spec : " , <nl> - slice_spec . DebugString ( ) ) ; <nl> + full_tensor_key , <nl> + " to restore in slice_spec : " , slice_spec . DebugString ( ) ) ; <nl> } <nl> <nl> / / The union of the slices in " details " covers " slice_spec " . Performs the <nl> mmm a / tensorflow / core / util / tensor_bundle / tensor_bundle . h <nl> ppp b / tensorflow / core / util / tensor_bundle / tensor_bundle . h <nl> class BundleWriter { <nl> private : <nl> Env * const env_ ; / / Not owned . <nl> const string prefix_ ; <nl> + const string tmp_metadata_path_ ; <nl> + const string tmp_data_path_ ; <nl> std : : unique_ptr < FileOutputBuffer > out_ ; <nl> int64 size_ ; / / Number of bytes written into out_ . <nl> std : : map < string , BundleEntryProto > entries_ ; <nl>
Merge pull request from drpngx / branch_144094196
tensorflow/tensorflow
5f7577c064aba60296fb3d4d21e13f2104301228
2017-01-10T22:13:05Z
mmm a / tests / queries / 0_stateless / 00029_test_zookeeper_optimize_exception . sh <nl> ppp b / tests / queries / 0_stateless / 00029_test_zookeeper_optimize_exception . sh <nl> $ { CLICKHOUSE_CLIENT } - - query = " INSERT INTO test_optimize_exception_replicated VAL <nl> $ { CLICKHOUSE_CLIENT } - - optimize_throw_if_noop 1 - - query = " OPTIMIZE TABLE test_optimize_exception PARTITION 201709 FINAL " <nl> $ { CLICKHOUSE_CLIENT } - - optimize_throw_if_noop 1 - - query = " OPTIMIZE TABLE test_optimize_exception_replicated PARTITION 201709 FINAL " <nl> <nl> - echo " ` " $ { CLICKHOUSE_CLIENT } " - - optimize_throw_if_noop 1 - - server_logs_file = / dev / null - - query = " OPTIMIZE TABLE test_optimize_exception PARTITION 201710 " 2 > & 1 ` " \ <nl> + echo " $ ( " $ { CLICKHOUSE_CLIENT } " - - optimize_throw_if_noop 1 - - server_logs_file = / dev / null - - query = " OPTIMIZE TABLE test_optimize_exception PARTITION 201710 " 2 > & 1 ) " \ <nl> | grep - c ' Code : 388 . DB : : Exception : . * DB : : Exception : . * Cannot select parts for optimization ' <nl> - echo " ` " $ { CLICKHOUSE_CLIENT } " - - optimize_throw_if_noop 1 - - server_logs_file = / dev / null - - query = " OPTIMIZE TABLE test_optimize_exception_replicated PARTITION 201710 " 2 > & 1 ` " \ <nl> + echo " $ ( " $ { CLICKHOUSE_CLIENT } " - - optimize_throw_if_noop 1 - - server_logs_file = / dev / null - - query = " OPTIMIZE TABLE test_optimize_exception_replicated PARTITION 201710 " 2 > & 1 ) " \ <nl> | grep - c ' Code : 388 . DB : : Exception : . * DB : : Exception : . * Cannot select parts for optimization ' <nl> <nl> $ { CLICKHOUSE_CLIENT } - - query = " DROP TABLE test_optimize_exception NO DELAY " <nl> mmm a / tests / queries / 0_stateless / 00155_long_merges . sh <nl> ppp b / tests / queries / 0_stateless / 00155_long_merges . sh <nl> function test { <nl> echo <nl> } <nl> <nl> - merged_rows_0 = ` $ CLICKHOUSE_CLIENT - q " select value from system . events where event = ' MergedRows ' " ` <nl> + merged_rows_0 = $ ( $ CLICKHOUSE_CLIENT - q " select value from system . events where event = ' MergedRows ' " ) <nl> <nl> test 8191 8191 <nl> test 8191 8192 <nl> test 8193 8194 <nl> test 8194 8193 <nl> test 8194 8194 <nl> <nl> - merged_rows_1 = ` $ CLICKHOUSE_CLIENT - q " select value from system . events where event = ' MergedRows ' " ` <nl> + merged_rows_1 = $ ( $ CLICKHOUSE_CLIENT - q " select value from system . events where event = ' MergedRows ' " ) <nl> [ [ $ merged_rows_1 - le $ merged_rows_0 ] ] <nl> <nl> cleanup <nl> mmm a / tests / queries / 0_stateless / 00385_storage_file_and_clickhouse - local_app . sh <nl> ppp b / tests / queries / 0_stateless / 00385_storage_file_and_clickhouse - local_app . sh <nl> $ { CLICKHOUSE_LOCAL } - q " CREATE TABLE sophisticated_default <nl> ) ENGINE = Memory ; SELECT count ( ) FROM system . tables WHERE name = ' sophisticated_default ' ; " <nl> <nl> # Help is not skipped <nl> - [ [ ` $ { CLICKHOUSE_LOCAL } - - help | wc - l ` - gt 100 ] ] <nl> + [ [ $ ( $ { CLICKHOUSE_LOCAL } - - help | wc - l ) - gt 100 ] ] <nl> mmm a / tests / queries / 0_stateless / 00421_storage_merge__table_index . sh <nl> ppp b / tests / queries / 0_stateless / 00421_storage_merge__table_index . sh <nl> set - e <nl> CURDIR = $ ( cd " $ ( dirname " $ { BASH_SOURCE [ 0 ] } " ) " & & pwd ) <nl> . " $ CURDIR " / . . / shell_config . sh <nl> <nl> - for i in ` seq - w 0 2 20 ` ; do <nl> + for i in $ ( seq - w 0 2 20 ) ; do <nl> $ CLICKHOUSE_CLIENT - q " DROP TABLE IF EXISTS merge_item_ $ i " <nl> $ CLICKHOUSE_CLIENT - q " CREATE TABLE merge_item_ $ i ( d Int8 ) ENGINE = Memory " <nl> $ CLICKHOUSE_CLIENT - q " INSERT INTO merge_item_ $ i VALUES ( $ i ) " <nl> $ CLICKHOUSE_CLIENT - q " CREATE TABLE merge_storage ( d Int8 ) ENGINE = Merge ( ' $ { CLI <nl> $ CLICKHOUSE_CLIENT - - max_threads = 1 - q " SELECT _table , d FROM merge_storage WHERE _table LIKE ' merge_item_1 % ' ORDER BY _table " <nl> $ CLICKHOUSE_CLIENT - q " DROP TABLE IF EXISTS merge_storage " <nl> <nl> - for i in ` seq - w 0 2 20 ` ; do $ CLICKHOUSE_CLIENT - q " DROP TABLE IF EXISTS merge_item_ $ i " ; done <nl> + for i in $ ( seq - w 0 2 20 ) ; do $ CLICKHOUSE_CLIENT - q " DROP TABLE IF EXISTS merge_item_ $ i " ; done <nl> mmm a / tests / queries / 0_stateless / 00429_long_http_bufferization . sh <nl> ppp b / tests / queries / 0_stateless / 00429_long_http_bufferization . sh <nl> function query { <nl> } <nl> <nl> function ch_url ( ) { <nl> - $ { CLICKHOUSE_CURL_COMMAND } - q - sS " $ { CLICKHOUSE_URL } & max_block_size = $ max_block_size & $ 1 " - d " ` query " $ 2 " ` " <nl> + $ { CLICKHOUSE_CURL_COMMAND } - q - sS " $ { CLICKHOUSE_URL } & max_block_size = $ max_block_size & $ 1 " - d " $ ( query " $ 2 " ) " <nl> } <nl> <nl> <nl> exception_pattern = " displayText ( ) = DB : : Exception : [ [ : print : ] ] * " <nl> <nl> function check_only_exception ( ) { <nl> local res <nl> - res = ` ch_url " $ 1 " " $ 2 " ` <nl> + res = $ ( ch_url " $ 1 " " $ 2 " ) <nl> # ( echo " $ res " ) <nl> # ( echo " $ res " | wc - l ) <nl> # ( echo " $ res " | grep - c " $ exception_pattern " ) <nl> - [ [ ` echo " $ res " | wc - l ` - eq 1 ] ] | | echo FAIL 1 " $ @ " <nl> + [ [ $ ( echo " $ res " | wc - l ) - eq 1 ] ] | | echo FAIL 1 " $ @ " <nl> [ [ $ ( echo " $ res " | grep - c " $ exception_pattern " ) - eq 1 ] ] | | echo FAIL 2 " $ @ " <nl> } <nl> <nl> function check_last_line_exception ( ) { <nl> local res <nl> - res = ` ch_url " $ 1 " " $ 2 " ` <nl> + res = $ ( ch_url " $ 1 " " $ 2 " ) <nl> # echo " $ res " > res <nl> # echo " $ res " | wc - c <nl> # echo " $ res " | tail - n - 2 <nl> check_exception_handling <nl> <nl> # Tune setting to speed up combinatorial test <nl> max_block_size = 500000 <nl> - corner_sizes = " 1048576 ` seq 500000 1000000 3500000 ` " <nl> + corner_sizes = " 1048576 $ ( seq 500000 1000000 3500000 ) " <nl> <nl> <nl> # Check HTTP results with $ CLICKHOUSE_CLIENT in normal case <nl> <nl> function cmp_cli_and_http ( ) { <nl> - $ CLICKHOUSE_CLIENT - q " ` query " $ 1 " ` " > " $ { CLICKHOUSE_TMP } " / res1 <nl> + $ CLICKHOUSE_CLIENT - q " $ ( query " $ 1 " ) " > " $ { CLICKHOUSE_TMP } " / res1 <nl> ch_url " buffer_size = $ 2 & wait_end_of_query = 0 " " $ 1 " > " $ { CLICKHOUSE_TMP } " / res2 <nl> ch_url " buffer_size = $ 2 & wait_end_of_query = 1 " " $ 1 " > " $ { CLICKHOUSE_TMP } " / res3 <nl> cmp " $ { CLICKHOUSE_TMP } " / res1 " $ { CLICKHOUSE_TMP } " / res2 & & cmp " $ { CLICKHOUSE_TMP } " / res1 " $ { CLICKHOUSE_TMP } " / res3 | | echo FAIL 5 " $ @ " <nl> check_cli_and_http <nl> # Check HTTP internal compression in normal case <nl> <nl> function cmp_http_compression ( ) { <nl> - $ CLICKHOUSE_CLIENT - q " ` query " $ 1 " ` " > " $ { CLICKHOUSE_TMP } " / res0 <nl> + $ CLICKHOUSE_CLIENT - q " $ ( query " $ 1 " ) " > " $ { CLICKHOUSE_TMP } " / res0 <nl> ch_url ' compress = 1 ' " $ 1 " | " $ { CLICKHOUSE_BINARY } " - compressor - - decompress > " $ { CLICKHOUSE_TMP } " / res1 <nl> ch_url " compress = 1 & buffer_size = $ 2 & wait_end_of_query = 0 " " $ 1 " | " $ { CLICKHOUSE_BINARY } " - compressor - - decompress > " $ { CLICKHOUSE_TMP } " / res2 <nl> ch_url " compress = 1 & buffer_size = $ 2 & wait_end_of_query = 1 " " $ 1 " | " $ { CLICKHOUSE_BINARY } " - compressor - - decompress > " $ { CLICKHOUSE_TMP } " / res3 <nl> mmm a / tests / queries / 0_stateless / 00443_optimize_final_vertical_merge . sh <nl> ppp b / tests / queries / 0_stateless / 00443_optimize_final_vertical_merge . sh <nl> number AS di10 , <nl> [ hex ( number ) , hex ( number + 1 ) ] AS \ ` n . s \ ` <nl> FROM system . numbers LIMIT $ res_rows " <nl> <nl> - while [ [ ` get_num_parts ` - ne 1 ] ] ; do $ CLICKHOUSE_CLIENT - q " OPTIMIZE TABLE $ name PARTITION 197001 " - - server_logs_file = / dev / null ; done <nl> + while [ [ $ ( get_num_parts ) - ne 1 ] ] ; do $ CLICKHOUSE_CLIENT - q " OPTIMIZE TABLE $ name PARTITION 197001 " - - server_logs_file = / dev / null ; done <nl> <nl> $ CLICKHOUSE_CLIENT - q " ALTER TABLE $ name ADD COLUMN n . a Array ( String ) " <nl> $ CLICKHOUSE_CLIENT - q " ALTER TABLE $ name ADD COLUMN da Array ( String ) DEFAULT [ ' def ' ] " <nl> $ CLICKHOUSE_CLIENT - q " ALTER TABLE $ name MODIFY COLUMN da Array ( String ) DEFAULT <nl> $ CLICKHOUSE_CLIENT - q " SELECT count ( ) , sum ( Sign ) , sum ( ki = di05 ) , sum ( hex ( ki ) = ds ) , sum ( ki = n . i [ 1 ] ) , sum ( [ hex ( ki ) , hex ( ki + 1 ) ] = n . s ) FROM $ name " <nl> $ CLICKHOUSE_CLIENT - q " SELECT groupUniqArray ( da ) , groupUniqArray ( n . a ) FROM $ name " <nl> <nl> - hash_src = ` $ CLICKHOUSE_CLIENT - - max_threads = 1 - q " SELECT cityHash64 ( groupArray ( ki ) ) FROM $ name " ` <nl> - hash_ref = ` $ CLICKHOUSE_CLIENT - - max_threads = 1 - q " SELECT cityHash64 ( groupArray ( ki ) ) FROM ( SELECT number as ki FROM system . numbers LIMIT $ res_rows ) " ` <nl> + hash_src = $ ( $ CLICKHOUSE_CLIENT - - max_threads = 1 - q " SELECT cityHash64 ( groupArray ( ki ) ) FROM $ name " ) <nl> + hash_ref = $ ( $ CLICKHOUSE_CLIENT - - max_threads = 1 - q " SELECT cityHash64 ( groupArray ( ki ) ) FROM ( SELECT number as ki FROM system . numbers LIMIT $ res_rows ) " ) <nl> echo $ ( ( $ hash_src - $ hash_ref ) ) <nl> <nl> $ CLICKHOUSE_CLIENT - q " DROP TABLE IF EXISTS $ name " <nl> mmm a / tests / queries / 0_stateless / 00443_preferred_block_size_bytes . sh <nl> ppp b / tests / queries / 0_stateless / 00443_preferred_block_size_bytes . sh <nl> $ CLICKHOUSE_CLIENT - q " DROP TABLE IF EXISTS nullable_prewhere " <nl> <nl> # Depend on 00282_merging test <nl> <nl> - pushd " ` dirname " $ 0 " ` " > / dev / null <nl> - SCRIPTPATH = ` pwd ` <nl> + pushd " $ ( dirname " $ 0 " ) " > / dev / null <nl> + SCRIPTPATH = $ ( pwd ) <nl> popd > / dev / null <nl> # SCRIPTDIR = ` dirname " $ SCRIPTPATH " ` <nl> SCRIPTDIR = $ SCRIPTPATH <nl> mmm a / tests / queries / 0_stateless / 00446_clear_column_in_partition_concurrent_zookeeper . sh <nl> ppp b / tests / queries / 0_stateless / 00446_clear_column_in_partition_concurrent_zookeeper . sh <nl> set - e <nl> $ ch " INSERT INTO clear_column1 VALUES ( ' 2000 - 01 - 01 ' , 1 , ' a ' ) , ( ' 2000 - 02 - 01 ' , 2 , ' b ' ) " <nl> $ ch " INSERT INTO clear_column1 VALUES ( ' 2000 - 01 - 01 ' , 3 , ' c ' ) , ( ' 2000 - 02 - 01 ' , 4 , ' d ' ) " <nl> <nl> - for _ in ` seq 10 ` ; do <nl> + for _ in $ ( seq 10 ) ; do <nl> $ ch " INSERT INTO clear_column1 VALUES ( ' 2000 - 02 - 01 ' , 0 , ' ' ) , ( ' 2000 - 02 - 01 ' , 0 , ' ' ) " & # insert into the same partition <nl> $ ch " ALTER TABLE clear_column1 CLEAR COLUMN i IN PARTITION ' 200001 ' " - - replication_alter_partitions_sync = 2 <nl> $ ch " ALTER TABLE clear_column1 CLEAR COLUMN s IN PARTITION ' 200001 ' " - - replication_alter_partitions_sync = 2 <nl> mmm a / tests / queries / 0_stateless / 00463_long_sessions_in_http_interface . sh <nl> ppp b / tests / queries / 0_stateless / 00463_long_sessions_in_http_interface . sh <nl> check " $ url $ session & session_timeout = 60 " " $ select " " Exception " 0 " 60 second timeo <nl> check " $ url " " $ session " " $ select " " 7777777 " 1 " Failed to reuse session . " <nl> # Workaround here <nl> # TODO : move the test to integration test or add readonly user to test environment <nl> - if [ [ - z ` request " $ url ? user = readonly " " SELECT ' ' " ` ] ] ; then <nl> + if [ [ - z $ ( request " $ url ? user = readonly " " SELECT ' ' " ) ] ] ; then <nl> # We have readonly user <nl> check " $ url $ session & user = readonly & session_check = 1 " " $ select " " Exception . * Session not found " 1 " Session is accessable for another user . " <nl> else <nl> mmm a / tests / queries / 0_stateless / 00501_http_head . sh <nl> ppp b / tests / queries / 0_stateless / 00501_http_head . sh <nl> CURDIR = $ ( cd " $ ( dirname " $ { BASH_SOURCE [ 0 ] } " ) " & & pwd ) <nl> ( $ { CLICKHOUSE_CURL } - s - - head " $ { CLICKHOUSE_URL } & query = SELECT % 201 " ; <nl> $ { CLICKHOUSE_CURL } - s - - head " $ { CLICKHOUSE_URL } & query = select + * + from + system . numbers + limit + 1000000 " ) | grep - v " Date : " | grep - v " X - ClickHouse - Server - Display - Name : " | grep - v " X - ClickHouse - Query - Id : " | grep - v " X - ClickHouse - Format : " | grep - v " X - ClickHouse - Timezone : " <nl> <nl> - if [ [ ` $ { CLICKHOUSE_CURL } - sS - X POST - I " $ { CLICKHOUSE_URL } & query = SELECT + 1 " | grep - c ' 411 Length Required ' ` - ne 1 ] ] ; then <nl> + if [ [ $ ( $ { CLICKHOUSE_CURL } - sS - X POST - I " $ { CLICKHOUSE_URL } & query = SELECT + 1 " | grep - c ' 411 Length Required ' ) - ne 1 ] ] ; then <nl> echo FAIL <nl> fi <nl> mmm a / tests / queries / 0_stateless / 00575_illegal_column_exception_when_drop_depen_column . sh <nl> ppp b / tests / queries / 0_stateless / 00575_illegal_column_exception_when_drop_depen_column . sh <nl> $ { CLICKHOUSE_CLIENT } - - query " DROP TABLE IF EXISTS test_00575 ; " <nl> $ { CLICKHOUSE_CLIENT } - - query " CREATE TABLE test_00575 ( dt Date DEFAULT now ( ) , id UInt32 , id2 UInt32 DEFAULT id + 1 ) ENGINE = MergeTree ( dt , dt , 8192 ) ; " <nl> $ { CLICKHOUSE_CLIENT } - - query " INSERT INTO test_00575 ( dt , id ) VALUES ( ' 2018 - 02 - 22 ' , 3 ) , ( ' 2018 - 02 - 22 ' , 4 ) , ( ' 2018 - 02 - 22 ' , 5 ) ; " <nl> $ { CLICKHOUSE_CLIENT } - - query " SELECT * FROM test_00575 ORDER BY id ; " <nl> - echo " ` " $ { CLICKHOUSE_CLIENT } " - - query " ALTER TABLE test_00575 DROP COLUMN id ; " - - server_logs_file = / dev / null 2 > & 1 | grep - c " $ exception_pattern " ` " <nl> + echo " $ ( " $ { CLICKHOUSE_CLIENT } " - - query " ALTER TABLE test_00575 DROP COLUMN id ; " - - server_logs_file = / dev / null 2 > & 1 | grep - c " $ exception_pattern " ) " <nl> $ { CLICKHOUSE_CLIENT } - - query " ALTER TABLE test_00575 DROP COLUMN id2 ; " <nl> $ { CLICKHOUSE_CLIENT } - - query " SELECT * FROM test_00575 ORDER BY id ; " <nl> $ { CLICKHOUSE_CLIENT } - - query " ALTER TABLE test_00575 DROP COLUMN id ; " <nl> mmm a / tests / queries / 0_stateless / 00595_insert_into_view . sh <nl> ppp b / tests / queries / 0_stateless / 00595_insert_into_view . sh <nl> $ { CLICKHOUSE_CLIENT } - - query " DROP TABLE IF EXISTS test_view_00595 ; " <nl> $ { CLICKHOUSE_CLIENT } - - query " CREATE TABLE test_00595 ( s String ) ENGINE = Log ; " <nl> $ { CLICKHOUSE_CLIENT } - - query " CREATE VIEW test_view_00595 AS SELECT * FROM test_00595 ; " <nl> <nl> - ( ( ` $ { CLICKHOUSE_CLIENT } - - query " INSERT INTO test_view_00595 VALUES ( ' test_string ' ) ; " 2 > & 1 | grep - c " $ exception_pattern " ` > = 1 ) ) & & echo 1 | | echo " NO MATCH " <nl> + ( ( $ ( $ { CLICKHOUSE_CLIENT } - - query " INSERT INTO test_view_00595 VALUES ( ' test_string ' ) ; " 2 > & 1 | grep - c " $ exception_pattern " ) > = 1 ) ) & & echo 1 | | echo " NO MATCH " <nl> $ { CLICKHOUSE_CLIENT } - - query " INSERT INTO test_00595 VALUES ( ' test_string ' ) ; " <nl> $ { CLICKHOUSE_CLIENT } - - query " SELECT * FROM test_00595 ; " <nl> <nl> mmm a / tests / queries / 0_stateless / 00623_truncate_table_throw_exception . sh <nl> ppp b / tests / queries / 0_stateless / 00623_truncate_table_throw_exception . sh <nl> $ { CLICKHOUSE_CLIENT } - - query " INSERT INTO test_truncate . test_view_depend VALUES ( <nl> $ { CLICKHOUSE_CLIENT } - - query " SELECT * FROM test_truncate . test_view ; " <nl> <nl> $ { CLICKHOUSE_CLIENT } - - query " SELECT ' = = = = = = = = Execute Truncate = = = = = = = = ' ; " <nl> - echo " ` " $ { CLICKHOUSE_CLIENT } " - - query " TRUNCATE TABLE test_truncate . test_view ; " - - server_logs_file = / dev / null 2 > & 1 | grep - c " Code : 48 . * Truncate is not supported by storage View " ` " <nl> + echo " $ ( " $ { CLICKHOUSE_CLIENT } " - - query " TRUNCATE TABLE test_truncate . test_view ; " - - server_logs_file = / dev / null 2 > & 1 | grep - c " Code : 48 . * Truncate is not supported by storage View " ) " <nl> <nl> $ { CLICKHOUSE_CLIENT } - - query " SELECT ' = = = = = = = = After Truncate = = = = = = = = ' ; " <nl> $ { CLICKHOUSE_CLIENT } - - query " SELECT * FROM test_truncate . test_view ; " <nl> mmm a / tests / queries / 0_stateless / 00626_replace_partition_from_table_zookeeper . sh <nl> ppp b / tests / queries / 0_stateless / 00626_replace_partition_from_table_zookeeper . sh <nl> function query_with_retry <nl> retry = 0 <nl> until [ $ retry - ge 5 ] <nl> do <nl> - result = ` $ CLICKHOUSE_CLIENT " $ 2 " - - query = " $ 1 " 2 > & 1 ` <nl> + result = $ ( $ CLICKHOUSE_CLIENT " $ 2 " - - query = " $ 1 " 2 > & 1 ) <nl> if [ " $ ? " = = 0 ] ; then <nl> echo - n " $ result " <nl> return <nl> mmm a / tests / queries / 0_stateless / 00634_logging_shard . sh <nl> ppp b / tests / queries / 0_stateless / 00634_logging_shard . sh <nl> settings = " $ server_logs - - log_queries = 1 - - log_query_threads = 1 - - log_profile_event <nl> # SELECT <nl> true > " $ server_logs_file " <nl> $ CLICKHOUSE_CLIENT " $ settings " - q " SELECT 1 FROM system . one FORMAT Null " <nl> - lines_one_server = ` cat " $ server_logs_file " | wc - l ` <nl> + lines_one_server = $ ( cat " $ server_logs_file " | wc - l ) <nl> <nl> true > " $ server_logs_file " <nl> $ CLICKHOUSE_CLIENT " $ settings " - q " SELECT 1 FROM remote ( ' 127 . 0 . 0 . 2 , 127 . 0 . 0 . 3 ' , system , one ) FORMAT Null " <nl> - lines_two_servers = ` cat " $ server_logs_file " | wc - l ` <nl> + lines_two_servers = $ ( cat " $ server_logs_file " | wc - l ) <nl> <nl> ( ( $ lines_two_servers > = 2 * $ lines_one_server ) ) | | echo " Fail : $ lines_two_servers $ lines_one_server " <nl> <nl> $ CLICKHOUSE_CLIENT " $ settings " - q " CREATE TABLE null_00634_1 ( i Int8 ) ENGINE = N <nl> <nl> true > " $ server_logs_file " <nl> $ CLICKHOUSE_CLIENT " $ settings " - q " INSERT INTO null_00634_1 VALUES ( 0 ) " <nl> - lines_one_server = ` cat " $ server_logs_file " | wc - l ` <nl> + lines_one_server = $ ( cat " $ server_logs_file " | wc - l ) <nl> <nl> true > " $ server_logs_file " <nl> $ CLICKHOUSE_CLIENT " $ settings " - q " INSERT INTO TABLE FUNCTION remote ( ' 127 . 0 . 0 . 2 ' , ' $ { CLICKHOUSE_DATABASE } ' , ' null_00634_1 ' ) VALUES ( 0 ) " <nl> - lines_two_servers = ` cat " $ server_logs_file " | wc - l ` <nl> + lines_two_servers = $ ( cat " $ server_logs_file " | wc - l ) <nl> <nl> $ CLICKHOUSE_CLIENT " $ settings " - q " DROP TABLE IF EXISTS null_00634_1 " <nl> ( ( $ lines_two_servers > $ lines_one_server ) ) | | echo " Fail : $ lines_two_servers $ lines_one_server " <nl> mmm a / tests / queries / 0_stateless / 00634_performance_introspection_and_logging . sh <nl> ppp b / tests / queries / 0_stateless / 00634_performance_introspection_and_logging . sh <nl> $ CLICKHOUSE_CLIENT " $ settings " - n - q " <nl> SELECT count ( ) FROM null_00634 ; <nl> DROP TABLE null_00634 ; " <nl> <nl> - ( ( ` cat " $ server_logs_file " | wc - l ` > = 110 ) ) | | echo Fail <nl> + ( ( $ ( cat " $ server_logs_file " | wc - l ) > = 110 ) ) | | echo Fail <nl> <nl> <nl> # Check ProfileEvents in query_log <nl> mmm a / tests / queries / 0_stateless / 00653_verification_monotonic_data_load . sh <nl> ppp b / tests / queries / 0_stateless / 00653_verification_monotonic_data_load . sh <nl> $ { CLICKHOUSE_CLIENT } - - query = " INSERT INTO unsigned_integer_test_table VALUES ( 0 ) <nl> $ { CLICKHOUSE_CLIENT } - - query = " INSERT INTO enum_test_table VALUES ( ' hello ' ) , ( ' world ' ) , ( ' world ' ) , ( ' yandex ' ) , ( ' clickhouse ' ) , ( ' clickhouse ' ) ; " <nl> $ { CLICKHOUSE_CLIENT } - - query = " INSERT INTO date_test_table VALUES ( 1 ) , ( 2 ) , ( 2 ) , ( 256 ) , ( 257 ) , ( 257 ) ; " <nl> <nl> - CLICKHOUSE_CLIENT = ` echo " $ { CLICKHOUSE_CLIENT } " | sed ' s / ' " - - send_logs_level = $ { CLICKHOUSE_CLIENT_SERVER_LOGS_LEVEL } " ' / - - send_logs_level = debug / g ' ` <nl> + CLICKHOUSE_CLIENT = $ ( echo " $ { CLICKHOUSE_CLIENT } " | sed ' s / ' " - - send_logs_level = $ { CLICKHOUSE_CLIENT_SERVER_LOGS_LEVEL } " ' / - - send_logs_level = debug / g ' ) <nl> <nl> $ { CLICKHOUSE_CLIENT } - - query = " SELECT count ( ) FROM string_test_table WHERE toUInt64 ( val ) = = 0 ; " 2 > & 1 | grep - q " 3 marks to read from 1 ranges " & & echo " no monotonic int case : String - > UInt64 " <nl> $ { CLICKHOUSE_CLIENT } - - query = " SELECT count ( ) FROM fixed_string_test_table WHERE toUInt64 ( val ) = = 0 ; " 2 > & 1 | grep - q " 3 marks to read from 1 ranges " & & echo " no monotonic int case : FixedString - > UInt64 " <nl> $ { CLICKHOUSE_CLIENT } - - query = " SELECT count ( ) FROM date_test_table WHERE toUInt16 <nl> $ { CLICKHOUSE_CLIENT } - - query = " SELECT count ( ) FROM date_test_table WHERE toInt8 ( val ) = = 1 ; " 2 > & 1 | grep - q " 5 marks to read from " & & echo " monotonic int case : Date - > Int8 " <nl> $ { CLICKHOUSE_CLIENT } - - query = " SELECT count ( ) FROM date_test_table WHERE toUInt8 ( val ) = = 1 ; " 2 > & 1 | grep - q " 5 marks to read from " & & echo " monotonic int case : Date - > UInt8 " <nl> <nl> - CLICKHOUSE_CLIENT = ` echo " $ { CLICKHOUSE_CLIENT } " | sed ' s / - - send_logs_level = debug / ' " - - send_logs_level = $ { CLICKHOUSE_CLIENT_SERVER_LOGS_LEVEL } " ' / g ' ` <nl> + CLICKHOUSE_CLIENT = $ ( echo " $ { CLICKHOUSE_CLIENT } " | sed ' s / - - send_logs_level = debug / ' " - - send_logs_level = $ { CLICKHOUSE_CLIENT_SERVER_LOGS_LEVEL } " ' / g ' ) <nl> <nl> $ { CLICKHOUSE_CLIENT } - - query = " DROP TABLE IF EXISTS string_test_table ; " <nl> $ { CLICKHOUSE_CLIENT } - - query = " DROP TABLE IF EXISTS fixed_string_test_table ; " <nl> mmm a / tests / queries / 0_stateless / 00687_top_and_offset . sh <nl> ppp b / tests / queries / 0_stateless / 00687_top_and_offset . sh <nl> $ { CLICKHOUSE_CLIENT } - - query " SELECT TOP 2 * FROM test_00687 ORDER BY val ; " <nl> $ { CLICKHOUSE_CLIENT } - - query " SELECT TOP ( 2 ) * FROM test_00687 ORDER BY val ; " <nl> $ { CLICKHOUSE_CLIENT } - - query " SELECT * FROM test_00687 ORDER BY val LIMIT 2 OFFSET 2 ; " <nl> <nl> - echo " ` " $ { CLICKHOUSE_CLIENT } " - - query " SELECT TOP 2 * FROM test_00687 ORDER BY val LIMIT 2 ; " 2 > & 1 | grep - c " Code : 406 " ` " <nl> - echo " ` " $ { CLICKHOUSE_CLIENT } " - - query " SELECT * FROM test_00687 ORDER BY val LIMIT 2 , 3 OFFSET 2 ; " 2 > & 1 | grep - c " Code : 62 " ` " <nl> + echo " $ ( " $ { CLICKHOUSE_CLIENT } " - - query " SELECT TOP 2 * FROM test_00687 ORDER BY val LIMIT 2 ; " 2 > & 1 | grep - c " Code : 406 " ) " <nl> + echo " $ ( " $ { CLICKHOUSE_CLIENT } " - - query " SELECT * FROM test_00687 ORDER BY val LIMIT 2 , 3 OFFSET 2 ; " 2 > & 1 | grep - c " Code : 62 " ) " <nl> <nl> $ { CLICKHOUSE_CLIENT } - - query " DROP TABLE test_00687 ; " <nl> mmm a / tests / queries / 0_stateless / 00746_sql_fuzzy . sh <nl> ppp b / tests / queries / 0_stateless / 00746_sql_fuzzy . sh <nl> $ CLICKHOUSE_CLIENT - q " select name from system . table_functions format TSV ; " > " $ <nl> <nl> for SQL_FUZZY_RUN in $ ( seq " $ { SQL_FUZZY_RUNS : = 10 } " ) ; do <nl> env SQL_FUZZY_RUN = " $ SQL_FUZZY_RUN " " $ CURDIR " / 00746_sql_fuzzy . pl | $ CLICKHOUSE_CLIENT - - format Null - - max_execution_time 10 - n - - ignore - error > / dev / null 2 > & 1 <nl> - if [ [ ` $ CLICKHOUSE_CLIENT - q " SELECT ' Still alive ' " ` ! = ' Still alive ' ] ] ; then <nl> + if [ [ $ ( $ CLICKHOUSE_CLIENT - q " SELECT ' Still alive ' " ) ! = ' Still alive ' ] ] ; then <nl> break <nl> fi <nl> done <nl> mmm a / tests / queries / 0_stateless / 00816_long_concurrent_alter_column . sh <nl> ppp b / tests / queries / 0_stateless / 00816_long_concurrent_alter_column . sh <nl> function thread2 ( ) <nl> { <nl> while true ; do <nl> echo " ALTER TABLE concurrent_alter_column ADD COLUMN d DOUBLE " | $ { CLICKHOUSE_CLIENT } - - query_id = alter2 ; <nl> - sleep " ` echo 0 . 0 $ RANDOM ` " ; <nl> + sleep " $ ( echo 0 . 0 $ RANDOM ) " ; <nl> echo " ALTER TABLE concurrent_alter_column DROP COLUMN d " | $ { CLICKHOUSE_CLIENT } - - query_id = alter2 ; <nl> done <nl> } <nl> function thread3 ( ) <nl> { <nl> while true ; do <nl> echo " ALTER TABLE concurrent_alter_column ADD COLUMN e DOUBLE " | $ { CLICKHOUSE_CLIENT } - - query_id = alter3 ; <nl> - sleep " ` echo 0 . 0 $ RANDOM ` " ; <nl> + sleep " $ ( echo 0 . 0 $ RANDOM ) " ; <nl> echo " ALTER TABLE concurrent_alter_column DROP COLUMN e " | $ { CLICKHOUSE_CLIENT } - - query_id = alter3 ; <nl> done <nl> } <nl> function thread4 ( ) <nl> { <nl> while true ; do <nl> echo " ALTER TABLE concurrent_alter_column ADD COLUMN f DOUBLE " | $ { CLICKHOUSE_CLIENT } - - query_id = alter4 ; <nl> - sleep " ` echo 0 . 0 $ RANDOM ` " ; <nl> + sleep " $ ( echo 0 . 0 $ RANDOM ) " ; <nl> echo " ALTER TABLE concurrent_alter_column DROP COLUMN f " | $ { CLICKHOUSE_CLIENT } - - query_id = alter4 ; <nl> done <nl> } <nl> mmm a / tests / queries / 0_stateless / 00834_dont_allow_to_set_two_configuration_files_in_client . sh <nl> ppp b / tests / queries / 0_stateless / 00834_dont_allow_to_set_two_configuration_files_in_client . sh <nl> <nl> CURDIR = $ ( cd " $ ( dirname " $ { BASH_SOURCE [ 0 ] } " ) " & & pwd ) <nl> . " $ CURDIR " / . . / shell_config . sh <nl> <nl> - OUTPUT = ` $ CLICKHOUSE_CLIENT_BINARY - c 1 - C 2 2 > & 1 ` <nl> + OUTPUT = $ ( $ CLICKHOUSE_CLIENT_BINARY - c 1 - C 2 2 > & 1 ) <nl> <nl> # test will fail if clickouse - client exit code is 0 <nl> if [ $ ? - eq 0 ] ; then <nl> mmm a / tests / queries / 0_stateless / 00834_kill_mutation . sh <nl> ppp b / tests / queries / 0_stateless / 00834_kill_mutation . sh <nl> $ { CLICKHOUSE_CLIENT } - - query = " ALTER TABLE test . kill_mutation DELETE WHERE toUInt <nl> <nl> check_query1 = " SELECT count ( ) FROM system . mutations WHERE database = ' test ' AND table = ' kill_mutation ' AND is_done = 0 " <nl> <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query = " $ check_query1 " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query = " $ check_query1 " 2 > & 1 ) <nl> <nl> while [ " $ query_result " = = " 0 " ] <nl> do <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query = " $ check_query1 " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query = " $ check_query1 " 2 > & 1 ) <nl> sleep 0 . 5 <nl> done <nl> <nl> $ { CLICKHOUSE_CLIENT } - - query = " ALTER TABLE test . kill_mutation DELETE WHERE x = 1 <nl> <nl> check_query2 = " SELECT count ( ) FROM system . mutations WHERE database = ' test ' AND table = ' kill_mutation ' AND mutation_id = ' mutation_4 . txt ' " <nl> <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query = " $ check_query2 " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query = " $ check_query2 " 2 > & 1 ) <nl> <nl> while [ " $ query_result " = = " 0 " ] <nl> do <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query = " $ check_query2 " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query = " $ check_query2 " 2 > & 1 ) <nl> sleep 0 . 5 <nl> done <nl> <nl> mmm a / tests / queries / 0_stateless / 00834_kill_mutation_replicated_zookeeper . sh <nl> ppp b / tests / queries / 0_stateless / 00834_kill_mutation_replicated_zookeeper . sh <nl> $ { CLICKHOUSE_CLIENT } - - query = " ALTER TABLE test . kill_mutation_r1 DELETE WHERE toU <nl> <nl> check_query1 = " SELECT count ( ) FROM system . mutations WHERE database = ' test ' AND table = ' kill_mutation_r1 ' AND is_done = 0 " <nl> <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query = " $ check_query1 " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query = " $ check_query1 " 2 > & 1 ) <nl> <nl> while [ " $ query_result " = = " 0 " ] <nl> do <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query = " $ check_query1 " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query = " $ check_query1 " 2 > & 1 ) <nl> sleep 0 . 5 <nl> done <nl> <nl> $ { CLICKHOUSE_CLIENT } - - query = " ALTER TABLE test . kill_mutation_r1 DELETE WHERE toU <nl> <nl> check_query1 = " SELECT count ( ) FROM system . mutations WHERE database = ' test ' AND table = ' kill_mutation_r1 ' AND is_done = 0 " <nl> <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query = " $ check_query1 " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query = " $ check_query1 " 2 > & 1 ) <nl> <nl> while [ " $ query_result " = = " 0 " ] <nl> do <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query = " $ check_query1 " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query = " $ check_query1 " 2 > & 1 ) <nl> sleep 0 . 5 <nl> done <nl> <nl> $ { CLICKHOUSE_CLIENT } - - query = " ALTER TABLE test . kill_mutation_r1 DELETE WHERE x = <nl> <nl> check_query2 = " SELECT count ( ) FROM system . mutations WHERE database = ' test ' AND table = ' kill_mutation_r1 ' AND mutation_id = ' 0000000001 ' AND is_done = 0 " <nl> <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query = " $ check_query2 " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query = " $ check_query2 " 2 > & 1 ) <nl> <nl> while [ " $ query_result " = = " 0 " ] <nl> do <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query = " $ check_query2 " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query = " $ check_query2 " 2 > & 1 ) <nl> sleep 0 . 5 <nl> done <nl> <nl> mmm a / tests / queries / 0_stateless / 00900_parquet_load . sh <nl> ppp b / tests / queries / 0_stateless / 00900_parquet_load . sh <nl> DATA_DIR = $ CUR_DIR / data_parquet <nl> # BUG ! nulls . snappy . parquet - parquet - reader shows wrong structure . Actual structure is { " type " : " struct " , " fields " : [ { " name " : " b_struct " , " type " : { " type " : " struct " , " fields " : [ { " name " : " b_c_int " , " type " : " integer " , " nullable " : true , " metadata " : { } } ] } , " nullable " : true , " metadata " : { } } ] } <nl> # why ? repeated_no_annotation . parquet <nl> <nl> - for NAME in ` find " $ DATA_DIR " / * . parquet - print0 | xargs - 0 - n 1 basename | sort ` ; do <nl> + for NAME in $ ( find " $ DATA_DIR " / * . parquet - print0 | xargs - 0 - n 1 basename | sort ) ; do <nl> echo = = = Try load data from " $ NAME " <nl> <nl> JSON = $ DATA_DIR / $ NAME . json <nl> for NAME in ` find " $ DATA_DIR " / * . parquet - print0 | xargs - 0 - n 1 basename | sort ` <nl> # [ - n " $ BUILD_DIR " ] & & $ BUILD_DIR / contrib / arrow - cmake / parquet - reader $ DATA_DIR / $ NAME > $ DATA_DIR / $ NAME . dump <nl> <nl> # COLUMNS = ` $ CUR_DIR / 00900_parquet_create_table_columns . pl $ JSON ` 2 > & 1 | | continue <nl> - COLUMNS = ` cat " $ COLUMNS_FILE " ` | | continue <nl> + COLUMNS = $ ( cat " $ COLUMNS_FILE " ) | | continue <nl> <nl> $ { CLICKHOUSE_CLIENT } - - query = " DROP TABLE IF EXISTS parquet_load " <nl> $ { CLICKHOUSE_CLIENT } - - query = " CREATE TABLE parquet_load ( $ COLUMNS ) ENGINE = Memory " <nl> mmm a / tests / queries / 0_stateless / 00908_long_http_insert . sh <nl> ppp b / tests / queries / 0_stateless / 00908_long_http_insert . sh <nl> CURDIR = $ ( cd " $ ( dirname " $ { BASH_SOURCE [ 0 ] } " ) " & & pwd ) <nl> <nl> echo ' DROP TABLE IF EXISTS table_for_insert ' | $ { CLICKHOUSE_CURL } - sSg " $ { CLICKHOUSE_URL } " - d @ - <nl> echo ' CREATE TABLE table_for_insert ( a UInt8 , b UInt8 ) ENGINE = Memory ' | $ { CLICKHOUSE_CURL } - sSg " $ { CLICKHOUSE_URL } " - d @ - <nl> - echo " INSERT INTO table_for_insert VALUES ` printf ' % * s ' " 1000000 " " " | sed ' s / / ( 1 , 2 ) / g ' ` " | $ { CLICKHOUSE_CURL_COMMAND } - q - - max - time 30 - sSg " $ { CLICKHOUSE_URL } " - d @ - <nl> + echo " INSERT INTO table_for_insert VALUES $ ( printf ' % * s ' " 1000000 " " " | sed ' s / / ( 1 , 2 ) / g ' ) " | $ { CLICKHOUSE_CURL_COMMAND } - q - - max - time 30 - sSg " $ { CLICKHOUSE_URL } " - d @ - <nl> echo ' SELECT count ( * ) FROM table_for_insert ' | $ { CLICKHOUSE_CURL } - sSg " $ { CLICKHOUSE_URL } " - d @ - <nl> echo ' DROP TABLE IF EXISTS table_for_insert ' | $ { CLICKHOUSE_CURL } - sSg " $ { CLICKHOUSE_URL } " - d @ - <nl> mmm a / tests / queries / 0_stateless / 00909_kill_not_initialized_query . sh <nl> ppp b / tests / queries / 0_stateless / 00909_kill_not_initialized_query . sh <nl> timeout 20 " $ CLICKHOUSE_CLIENT " - q " KILL QUERY WHERE query = ' $ query_for_pending ' <nl> for _ in { 1 . . 15 } <nl> do <nl> sleep 1 <nl> - no_first_query = ` $ CLICKHOUSE_CLIENT - q " SELECT count ( ) FROM system . processes where query = ' $ query_for_pending ' " ` <nl> - no_second_query = ` $ CLICKHOUSE_CLIENT - q " SELECT count ( ) FROM system . processes where query = ' $ query_to_kill ' " ` <nl> + no_first_query = $ ( $ CLICKHOUSE_CLIENT - q " SELECT count ( ) FROM system . processes where query = ' $ query_for_pending ' " ) <nl> + no_second_query = $ ( $ CLICKHOUSE_CLIENT - q " SELECT count ( ) FROM system . processes where query = ' $ query_to_kill ' " ) <nl> if [ " $ no_first_query " = = " 0 " ] & & [ " $ no_second_query " = = " 0 " ] ; then <nl> echo " killed " <nl> break <nl> mmm a / tests / queries / 0_stateless / 00944_create_bloom_filter_index_with_merge_tree . sh <nl> ppp b / tests / queries / 0_stateless / 00944_create_bloom_filter_index_with_merge_tree . sh <nl> CURDIR = $ ( cd " $ ( dirname " $ { BASH_SOURCE [ 0 ] } " ) " & & pwd ) <nl> set - e <nl> <nl> for sequence in 1 10 100 1000 10000 100000 1000000 10000000 100000000 1000000000 ; do \ <nl> - rate = ` echo " 1 $ sequence " | awk ' { printf ( " % 0 . 9f \ n " , $ 1 / $ 2 ) } ' ` <nl> + rate = $ ( echo " 1 $ sequence " | awk ' { printf ( " % 0 . 9f \ n " , $ 1 / $ 2 ) } ' ) <nl> $ CLICKHOUSE_CLIENT - - query = " DROP TABLE IF EXISTS test . bloom_filter_idx " ; <nl> $ CLICKHOUSE_CLIENT - - query = " CREATE TABLE test . bloom_filter_idx ( u64 UInt64 , i32 Int32 , f64 Float64 , d Decimal ( 10 , 2 ) , s String , e Enum8 ( ' a ' = 1 , ' b ' = 2 , ' c ' = 3 ) , dt Date , INDEX bloom_filter_a i32 TYPE bloom_filter ( $ rate ) GRANULARITY 1 ) ENGINE = MergeTree ( ) ORDER BY u64 SETTINGS index_granularity = 8192 " <nl> done <nl> mmm a / tests / queries / 0_stateless / 00953_zookeeper_suetin_deduplication_bug . sh <nl> ppp b / tests / queries / 0_stateless / 00953_zookeeper_suetin_deduplication_bug . sh <nl> $ CLICKHOUSE_CLIENT - - query = " INSERT INTO elog VALUES ( toDate ( ' 2018 - 10 - 01 ' ) , 3 , ' h <nl> <nl> $ CLICKHOUSE_CLIENT - - query = " SELECT count ( * ) from elog " # 3 rows <nl> <nl> - count = ` $ CLICKHOUSE_CLIENT - - query = " SELECT COUNT ( * ) FROM system . zookeeper where path = ' / clickhouse / tables / elog / blocks ' " ` <nl> + count = $ ( $ CLICKHOUSE_CLIENT - - query = " SELECT COUNT ( * ) FROM system . zookeeper where path = ' / clickhouse / tables / elog / blocks ' " ) <nl> <nl> while [ [ $ count ! = 2 ] ] <nl> do <nl> sleep 1 <nl> - count = ` $ CLICKHOUSE_CLIENT - - query = " SELECT COUNT ( * ) FROM system . zookeeper where path = ' / clickhouse / tables / elog / blocks ' " ` <nl> + count = $ ( $ CLICKHOUSE_CLIENT - - query = " SELECT COUNT ( * ) FROM system . zookeeper where path = ' / clickhouse / tables / elog / blocks ' " ) <nl> done <nl> <nl> $ CLICKHOUSE_CLIENT - - query = " INSERT INTO elog VALUES ( toDate ( ' 2018 - 10 - 01 ' ) , 1 , ' hello ' ) " <nl> <nl> $ CLICKHOUSE_CLIENT - - query = " SELECT count ( * ) from elog " # 4 rows <nl> - count = ` $ CLICKHOUSE_CLIENT - - query = " SELECT COUNT ( * ) FROM system . zookeeper where path = ' / clickhouse / tables / elog / blocks ' " ` <nl> + count = $ ( $ CLICKHOUSE_CLIENT - - query = " SELECT COUNT ( * ) FROM system . zookeeper where path = ' / clickhouse / tables / elog / blocks ' " ) <nl> <nl> while [ [ $ count ! = 2 ] ] <nl> do <nl> sleep 1 <nl> - count = ` $ CLICKHOUSE_CLIENT - - query = " SELECT COUNT ( * ) FROM system . zookeeper where path = ' / clickhouse / tables / elog / blocks ' " ` <nl> + count = $ ( $ CLICKHOUSE_CLIENT - - query = " SELECT COUNT ( * ) FROM system . zookeeper where path = ' / clickhouse / tables / elog / blocks ' " ) <nl> done <nl> <nl> $ CLICKHOUSE_CLIENT - - query = " INSERT INTO elog VALUES ( toDate ( ' 2018 - 10 - 01 ' ) , 2 , ' hello ' ) " <nl> <nl> $ CLICKHOUSE_CLIENT - - query = " SELECT count ( * ) from elog " # 5 rows <nl> <nl> - count = ` $ CLICKHOUSE_CLIENT - - query = " SELECT COUNT ( * ) FROM system . zookeeper where path = ' / clickhouse / tables / elog / blocks ' " ` <nl> + count = $ ( $ CLICKHOUSE_CLIENT - - query = " SELECT COUNT ( * ) FROM system . zookeeper where path = ' / clickhouse / tables / elog / blocks ' " ) <nl> <nl> while [ [ $ count ! = 2 ] ] <nl> do <nl> sleep 1 <nl> - count = ` $ CLICKHOUSE_CLIENT - - query = " SELECT COUNT ( * ) FROM system . zookeeper where path = ' / clickhouse / tables / elog / blocks ' " ` <nl> + count = $ ( $ CLICKHOUSE_CLIENT - - query = " SELECT COUNT ( * ) FROM system . zookeeper where path = ' / clickhouse / tables / elog / blocks ' " ) <nl> done <nl> <nl> $ CLICKHOUSE_CLIENT - - query = " INSERT INTO elog VALUES ( toDate ( ' 2018 - 10 - 01 ' ) , 2 , ' hello ' ) " <nl> mmm a / tests / queries / 0_stateless / 00995_exception_while_insert . sh <nl> ppp b / tests / queries / 0_stateless / 00995_exception_while_insert . sh <nl> <nl> CURDIR = $ ( cd " $ ( dirname " $ { BASH_SOURCE [ 0 ] } " ) " & & pwd ) <nl> . " $ CURDIR " / . . / shell_config . sh <nl> <nl> - CLICKHOUSE_CLIENT = ` echo " $ { CLICKHOUSE_CLIENT } " | sed ' s / ' " - - send_logs_level = $ { CLICKHOUSE_CLIENT_SERVER_LOGS_LEVEL } " ' / - - send_logs_level = none / g ' ` <nl> + CLICKHOUSE_CLIENT = $ ( echo " $ { CLICKHOUSE_CLIENT } " | sed ' s / ' " - - send_logs_level = $ { CLICKHOUSE_CLIENT_SERVER_LOGS_LEVEL } " ' / - - send_logs_level = none / g ' ) <nl> <nl> $ CLICKHOUSE_CLIENT - - query = " DROP TABLE IF EXISTS check ; " <nl> <nl> mmm a / tests / queries / 0_stateless / 01006_simpod_empty_part_single_column_write . sh <nl> ppp b / tests / queries / 0_stateless / 01006_simpod_empty_part_single_column_write . sh <nl> $ { CLICKHOUSE_CLIENT } - - query = " ALTER TABLE table_with_empty_part DELETE WHERE id <nl> <nl> sleep 0 . 5 <nl> <nl> - mutation_id = ` $ { CLICKHOUSE_CLIENT } - - query = " SELECT max ( mutation_id ) FROM system . mutations WHERE table = ' table_with_empty_part ' " ` <nl> + mutation_id = $ ( $ { CLICKHOUSE_CLIENT } - - query = " SELECT max ( mutation_id ) FROM system . mutations WHERE table = ' table_with_empty_part ' " ) <nl> <nl> wait_for_mutation " table_with_empty_part " " $ mutation_id " <nl> <nl> mmm a / tests / queries / 0_stateless / 01019_alter_materialized_view_atomic . sh <nl> ppp b / tests / queries / 0_stateless / 01019_alter_materialized_view_atomic . sh <nl> function alter_thread ( ) <nl> <nl> while true ; do <nl> $ CLICKHOUSE_CLIENT - - allow_experimental_alter_materialized_view_structure = 1 - q " $ { ALTERS [ $ RANDOM % 2 ] } " <nl> - sleep " ` echo 0 . $ RANDOM ` " ; <nl> + sleep " $ ( echo 0 . $ RANDOM ) " ; <nl> done <nl> } <nl> <nl> mmm a / tests / queries / 0_stateless / 01030_limit_by_with_ties_error . sh <nl> ppp b / tests / queries / 0_stateless / 01030_limit_by_with_ties_error . sh <nl> <nl> CURDIR = $ ( cd " $ ( dirname " $ { BASH_SOURCE [ 0 ] } " ) " & & pwd ) <nl> . " $ CURDIR " / . . / shell_config . sh <nl> <nl> - CLICKHOUSE_CLIENT = ` echo " $ { CLICKHOUSE_CLIENT } " | sed ' s / ' " - - send_logs_level = $ { CLICKHOUSE_CLIENT_SERVER_LOGS_LEVEL } " ' / - - send_logs_level = none / g ' ` <nl> + CLICKHOUSE_CLIENT = $ ( echo " $ { CLICKHOUSE_CLIENT } " | sed ' s / ' " - - send_logs_level = $ { CLICKHOUSE_CLIENT_SERVER_LOGS_LEVEL } " ' / - - send_logs_level = none / g ' ) <nl> <nl> $ CLICKHOUSE_CLIENT - - query = " SELECT * FROM ( SELECT number % 5 AS a , count ( ) AS b , c FROM numbers ( 10 ) ARRAY JOIN [ 1 , 2 ] AS c GROUP BY a , c ) AS table ORDER BY a LIMIT 3 WITH TIES BY a " 2 > & 1 | grep - q " Code : 498 . " & & echo ' OK ' | | echo ' FAIL ' | | : <nl> <nl> mmm a / tests / queries / 0_stateless / 01034_move_partition_from_table_zookeeper . sh <nl> ppp b / tests / queries / 0_stateless / 01034_move_partition_from_table_zookeeper . sh <nl> function query_with_retry <nl> retry = 0 <nl> until [ $ retry - ge 5 ] <nl> do <nl> - result = ` $ CLICKHOUSE_CLIENT " $ 2 " - - query = " $ 1 " 2 > & 1 ` <nl> + result = $ ( $ CLICKHOUSE_CLIENT " $ 2 " - - query = " $ 1 " 2 > & 1 ) <nl> if [ " $ ? " = = 0 ] ; then <nl> echo - n " $ result " <nl> return <nl> mmm a / tests / queries / 0_stateless / 01035_avg_weighted . sh <nl> ppp b / tests / queries / 0_stateless / 01035_avg_weighted . sh <nl> CUR_DIR = $ ( cd " $ ( dirname " $ { BASH_SOURCE [ 0 ] } " ) " & & pwd ) <nl> $ { CLICKHOUSE_CLIENT } - - query = " SELECT avgWeighted ( x , weight ) FROM ( SELECT t . 1 AS x , t . 2 AS weight FROM ( SELECT arrayJoin ( [ ( 1 , 5 ) , ( 2 , 4 ) , ( 3 , 3 ) , ( 4 , 2 ) , ( 5 , 1 ) ] ) AS t ) ) ; " <nl> $ { CLICKHOUSE_CLIENT } - - query = " SELECT avgWeighted ( x , weight ) FROM ( SELECT t . 1 AS x , t . 2 AS weight FROM ( SELECT arrayJoin ( [ ( 1 , 0 ) , ( 2 , 0 ) , ( 3 , 0 ) , ( 4 , 0 ) , ( 5 , 0 ) ] ) AS t ) ) ; " <nl> <nl> - echo " ` " $ { CLICKHOUSE_CLIENT } " - - server_logs_file = / dev / null - - query = " SELECT avgWeighted ( toDecimal64 ( 0 , 0 ) , toFloat64 ( 0 ) ) " 2 > & 1 ` " \ <nl> + echo " $ ( " $ { CLICKHOUSE_CLIENT } " - - server_logs_file = / dev / null - - query = " SELECT avgWeighted ( toDecimal64 ( 0 , 0 ) , toFloat64 ( 0 ) ) " 2 > & 1 ) " \ <nl> | grep - c ' Code : 43 . DB : : Exception : . * DB : : Exception : . * Different types . * of arguments for aggregate function avgWeighted ' <nl> mmm a / tests / queries / 0_stateless / 01038_dictionary_lifetime_min_zero_sec . sh <nl> ppp b / tests / queries / 0_stateless / 01038_dictionary_lifetime_min_zero_sec . sh <nl> $ CLICKHOUSE_CLIENT - - query " INSERT INTO database_for_dict . table_for_dict VALUES <nl> function check ( ) <nl> { <nl> <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query " SELECT dictGetFloat64 ( ' database_for_dict . dict_with_zero_min_lifetime ' , ' value ' , toUInt64 ( 2 ) ) " ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query " SELECT dictGetFloat64 ( ' database_for_dict . dict_with_zero_min_lifetime ' , ' value ' , toUInt64 ( 2 ) ) " ) <nl> <nl> while [ " $ query_result " ! = " 2 . 2 " ] <nl> do <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query " SELECT dictGetFloat64 ( ' database_for_dict . dict_with_zero_min_lifetime ' , ' value ' , toUInt64 ( 2 ) ) " ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query " SELECT dictGetFloat64 ( ' database_for_dict . dict_with_zero_min_lifetime ' , ' value ' , toUInt64 ( 2 ) ) " ) <nl> done <nl> } <nl> <nl> mmm a / tests / queries / 0_stateless / 01040_dictionary_invalidate_query_switchover_long . sh <nl> ppp b / tests / queries / 0_stateless / 01040_dictionary_invalidate_query_switchover_long . sh <nl> $ CLICKHOUSE_CLIENT - - query " DROP TABLE dictdb . dict_invalidate " <nl> function check_exception_detected ( ) <nl> { <nl> <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query " SELECT last_exception FROM system . dictionaries WHERE database = ' dictdb ' AND name = ' invalidate ' " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query " SELECT last_exception FROM system . dictionaries WHERE database = ' dictdb ' AND name = ' invalidate ' " 2 > & 1 ) <nl> <nl> while [ - z " $ query_result " ] <nl> do <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query " SELECT last_exception FROM system . dictionaries WHERE database = ' dictdb ' AND name = ' invalidate ' " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query " SELECT last_exception FROM system . dictionaries WHERE database = ' dictdb ' AND name = ' invalidate ' " 2 > & 1 ) <nl> sleep 0 . 1 <nl> done <nl> } <nl> FROM system . one " <nl> <nl> function check_exception_fixed ( ) <nl> { <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query " SELECT last_exception FROM system . dictionaries WHERE database = ' dictdb ' AND name = ' invalidate ' " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query " SELECT last_exception FROM system . dictionaries WHERE database = ' dictdb ' AND name = ' invalidate ' " 2 > & 1 ) <nl> <nl> while [ " $ query_result " ] <nl> do <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query " SELECT last_exception FROM system . dictionaries WHERE database = ' dictdb ' AND name = ' invalidate ' " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query " SELECT last_exception FROM system . dictionaries WHERE database = ' dictdb ' AND name = ' invalidate ' " 2 > & 1 ) <nl> sleep 0 . 1 <nl> done <nl> } <nl> mmm a / tests / queries / 0_stateless / 01045_order_by_pk_special_storages . sh <nl> ppp b / tests / queries / 0_stateless / 01045_order_by_pk_special_storages . sh <nl> $ CLICKHOUSE_CLIENT - q " SELECT a FROM m ORDER BY a LIMIT 5 " <nl> $ CLICKHOUSE_CLIENT - q " SELECT a , s FROM m ORDER BY a , s LIMIT 10 " <nl> <nl> # Not a single . sql test with max_rows_to_read because it doesn ' t work with Merge storage <nl> - rows_read = ` $ CLICKHOUSE_CLIENT - q " SELECT a FROM m ORDER BY a LIMIT 10 FORMAT JSON " - - max_threads = 1 - - max_block_size = 20 | grep " rows_read " | sed ' s / [ ^ 0 - 9 ] * / / g ' ` <nl> + rows_read = $ ( $ CLICKHOUSE_CLIENT - q " SELECT a FROM m ORDER BY a LIMIT 10 FORMAT JSON " - - max_threads = 1 - - max_block_size = 20 | grep " rows_read " | sed ' s / [ ^ 0 - 9 ] * / / g ' ) <nl> <nl> # Expected number of read rows with a bit margin <nl> if [ [ $ rows_read - lt 500 ] ] <nl> fi <nl> $ CLICKHOUSE_CLIENT - q " SELECT ' mmmStorageBuffermmm ' " <nl> $ CLICKHOUSE_CLIENT - q " CREATE TABLE buf ( a UInt32 , s String ) engine = Buffer ( currentDatabase ( ) , s2 , 16 , 10 , 100 , 10000 , 1000000 , 10000000 , 100000000 ) " <nl> $ CLICKHOUSE_CLIENT - q " SELECT a , s FROM buf ORDER BY a , s LIMIT 10 " <nl> - rows_read = ` $ CLICKHOUSE_CLIENT - q " SELECT a FROM buf ORDER BY a LIMIT 10 FORMAT JSON " - - max_threads = 1 - - max_block_size = 20 | grep " rows_read " | sed ' s / [ ^ 0 - 9 ] * / / g ' ` <nl> + rows_read = $ ( $ CLICKHOUSE_CLIENT - q " SELECT a FROM buf ORDER BY a LIMIT 10 FORMAT JSON " - - max_threads = 1 - - max_block_size = 20 | grep " rows_read " | sed ' s / [ ^ 0 - 9 ] * / / g ' ) <nl> <nl> # Expected number of read rows with a bit margin <nl> if [ [ $ rows_read - lt 500 ] ] <nl> fi <nl> $ CLICKHOUSE_CLIENT - q " SELECT ' mmmMaterializedViewmmm ' " <nl> $ CLICKHOUSE_CLIENT - q " CREATE MATERIALIZED VIEW mv ( a UInt32 , s String ) engine = MergeTree ORDER BY s POPULATE AS SELECT a , s FROM s1 WHERE a % 7 = 0 " <nl> $ CLICKHOUSE_CLIENT - q " SELECT a , s FROM mv ORDER BY s LIMIT 10 " <nl> - rows_read = ` $ CLICKHOUSE_CLIENT - q " SELECT a , s FROM mv ORDER BY s LIMIT 10 FORMAT JSON " - - max_threads = 1 - - max_block_size = 20 | grep " rows_read " | sed ' s / [ ^ 0 - 9 ] * / / g ' ` <nl> + rows_read = $ ( $ CLICKHOUSE_CLIENT - q " SELECT a , s FROM mv ORDER BY s LIMIT 10 FORMAT JSON " - - max_threads = 1 - - max_block_size = 20 | grep " rows_read " | sed ' s / [ ^ 0 - 9 ] * / / g ' ) <nl> <nl> if [ [ $ rows_read - lt 500 ] ] <nl> then echo " OK " <nl> mmm a / tests / queries / 0_stateless / 01045_zookeeper_system_mutations_with_parts_names . sh <nl> ppp b / tests / queries / 0_stateless / 01045_zookeeper_system_mutations_with_parts_names . sh <nl> CURDIR = $ ( cd " $ ( dirname " $ { BASH_SOURCE [ 0 ] } " ) " & & pwd ) <nl> <nl> function wait_mutation_to_start ( ) <nl> { <nl> - query_wait = ` $ CLICKHOUSE_CLIENT - - query = " SELECT length ( parts_to_do_names ) FROM system . mutations where table = ' $ 1 ' " 2 > & 1 ` <nl> + query_wait = $ ( $ CLICKHOUSE_CLIENT - - query = " SELECT length ( parts_to_do_names ) FROM system . mutations where table = ' $ 1 ' " 2 > & 1 ) <nl> <nl> while [ " $ query_wait " = = " 0 " ] | | [ - z " $ query_wait " ] <nl> do <nl> - query_wait = ` $ CLICKHOUSE_CLIENT - - query = " SELECT length ( parts_to_do_names ) FROM system . mutations where table = ' $ 1 ' " 2 > & 1 ` <nl> + query_wait = $ ( $ CLICKHOUSE_CLIENT - - query = " SELECT length ( parts_to_do_names ) FROM system . mutations where table = ' $ 1 ' " 2 > & 1 ) <nl> sleep 0 . 5 <nl> done <nl> } <nl> mmm a / tests / queries / 0_stateless / 01071_http_header_exception_code . sh <nl> ppp b / tests / queries / 0_stateless / 01071_http_header_exception_code . sh <nl> <nl> CURDIR = $ ( cd " $ ( dirname " $ { BASH_SOURCE [ 0 ] } " ) " & & pwd ) <nl> . " $ CURDIR " / . . / shell_config . sh <nl> <nl> - if [ [ ` $ { CLICKHOUSE_CURL_COMMAND } - q - I " $ { CLICKHOUSE_URL } & query = BADREQUEST " 2 > & 1 | grep - c ' X - ClickHouse - Exception - Code : 62 ' ` - eq 1 ] ] ; then <nl> + if [ [ $ ( $ { CLICKHOUSE_CURL_COMMAND } - q - I " $ { CLICKHOUSE_URL } & query = BADREQUEST " 2 > & 1 | grep - c ' X - ClickHouse - Exception - Code : 62 ' ) - eq 1 ] ] ; then <nl> echo " True " <nl> fi <nl> mmm a / tests / queries / 0_stateless / 01076_parallel_alter_replicated_zookeeper . sh <nl> ppp b / tests / queries / 0_stateless / 01076_parallel_alter_replicated_zookeeper . sh <nl> CURDIR = $ ( cd " $ ( dirname " $ { BASH_SOURCE [ 0 ] } " ) " & & pwd ) <nl> <nl> REPLICAS = 5 <nl> <nl> - for i in ` seq $ REPLICAS ` ; do <nl> + for i in $ ( seq $ REPLICAS ) ; do <nl> $ CLICKHOUSE_CLIENT - - query " DROP TABLE IF EXISTS concurrent_mutate_mt_ $ i " <nl> done <nl> <nl> - for i in ` seq $ REPLICAS ` ; do <nl> + for i in $ ( seq $ REPLICAS ) ; do <nl> $ CLICKHOUSE_CLIENT - - query " CREATE TABLE concurrent_mutate_mt_ $ i ( key UInt64 , value1 UInt64 , value2 String ) ENGINE = ReplicatedMergeTree ( ' / clickhouse / tables / concurrent_mutate_mt ' , ' $ i ' ) ORDER BY key SETTINGS max_replicated_mutations_in_queue = 1000 , number_of_free_entries_in_pool_to_execute_mutation = 0 , max_replicated_merges_in_queue = 1000 , temporary_directories_lifetime = 10 , cleanup_delay_period = 3 , cleanup_delay_period_random_add = 0 " <nl> done <nl> <nl> $ CLICKHOUSE_CLIENT - - query " INSERT INTO concurrent_mutate_mt_1 SELECT number , number + 10 , toString ( number ) from numbers ( 10 ) " <nl> $ CLICKHOUSE_CLIENT - - query " INSERT INTO concurrent_mutate_mt_1 SELECT number , number + 10 , toString ( number ) from numbers ( 10 , 40 ) " <nl> <nl> - for i in ` seq $ REPLICAS ` ; do <nl> + for i in $ ( seq $ REPLICAS ) ; do <nl> $ CLICKHOUSE_CLIENT - - query " SYSTEM SYNC REPLICA concurrent_mutate_mt_ $ i " <nl> done <nl> <nl> - for i in ` seq $ REPLICAS ` ; do <nl> + for i in $ ( seq $ REPLICAS ) ; do <nl> $ CLICKHOUSE_CLIENT - - query " SELECT SUM ( value1 ) FROM concurrent_mutate_mt_ $ i " <nl> done <nl> <nl> - INITIAL_SUM = ` $ CLICKHOUSE_CLIENT - - query " SELECT SUM ( value1 ) FROM concurrent_mutate_mt_1 " ` <nl> + INITIAL_SUM = $ ( $ CLICKHOUSE_CLIENT - - query " SELECT SUM ( value1 ) FROM concurrent_mutate_mt_1 " ) <nl> <nl> # Run mutation on random replica <nl> function correct_alter_thread ( ) <nl> wait <nl> <nl> echo " Finishing alters " <nl> <nl> - for i in ` seq $ REPLICAS ` ; do <nl> + for i in $ ( seq $ REPLICAS ) ; do <nl> $ CLICKHOUSE_CLIENT - - query " ATTACH TABLE concurrent_mutate_mt_ $ i " 2 > / dev / null <nl> done <nl> <nl> while [ [ $ ( $ CLICKHOUSE_CLIENT - - query " select * from system . mutations where tabl <nl> break <nl> fi <nl> sleep 1 <nl> - for i in ` seq $ REPLICAS ` ; do <nl> + for i in $ ( seq $ REPLICAS ) ; do <nl> $ CLICKHOUSE_CLIENT - - query " ATTACH TABLE concurrent_mutate_mt_ $ i " 2 > / dev / null <nl> done <nl> counter = $ ( ( $ counter + 1 ) ) <nl> done <nl> <nl> - for i in ` seq $ REPLICAS ` ; do <nl> + for i in $ ( seq $ REPLICAS ) ; do <nl> $ CLICKHOUSE_CLIENT - - query " SELECT SUM ( toUInt64 ( value1 ) ) > $ INITIAL_SUM FROM concurrent_mutate_mt_ $ i " <nl> $ CLICKHOUSE_CLIENT - - query " SELECT COUNT ( ) FROM system . mutations WHERE table = ' concurrent_mutate_mt_ $ i ' and is_done = 0 " # all mutations have to be done <nl> $ CLICKHOUSE_CLIENT - - query " SELECT * FROM system . mutations WHERE table = ' concurrent_mutate_mt_ $ i ' and is_done = 0 " # for verbose output <nl> mmm a / tests / queries / 0_stateless / 01079_parallel_alter_add_drop_column_zookeeper . sh <nl> ppp b / tests / queries / 0_stateless / 01079_parallel_alter_add_drop_column_zookeeper . sh <nl> CURDIR = $ ( cd " $ ( dirname " $ { BASH_SOURCE [ 0 ] } " ) " & & pwd ) <nl> <nl> REPLICAS = 3 <nl> <nl> - for i in ` seq $ REPLICAS ` ; do <nl> + for i in $ ( seq $ REPLICAS ) ; do <nl> $ CLICKHOUSE_CLIENT - - query " DROP TABLE IF EXISTS concurrent_alter_add_drop_ $ i " <nl> done <nl> <nl> <nl> - for i in ` seq $ REPLICAS ` ; do <nl> + for i in $ ( seq $ REPLICAS ) ; do <nl> $ CLICKHOUSE_CLIENT - - query " CREATE TABLE concurrent_alter_add_drop_ $ i ( key UInt64 , value0 UInt8 ) ENGINE = ReplicatedMergeTree ( ' / clickhouse / tables / concurrent_alter_add_drop_column ' , ' $ i ' ) ORDER BY key SETTINGS max_replicated_mutations_in_queue = 1000 , number_of_free_entries_in_pool_to_execute_mutation = 0 , max_replicated_merges_in_queue = 1000 " <nl> done <nl> <nl> $ CLICKHOUSE_CLIENT - - query " INSERT INTO concurrent_alter_add_drop_1 SELECT number , number + 10 from numbers ( 100000 ) " <nl> <nl> - for i in ` seq $ REPLICAS ` ; do <nl> + for i in $ ( seq $ REPLICAS ) ; do <nl> $ CLICKHOUSE_CLIENT - - query " SYSTEM SYNC REPLICA concurrent_alter_add_drop_ $ i " <nl> done <nl> <nl> while [ [ $ ( timeout 120 " $ CLICKHOUSE_CLIENT " - - query " ALTER TABLE concurrent_alte <nl> sleep 1 <nl> done <nl> <nl> - for i in ` seq $ REPLICAS ` ; do <nl> + for i in $ ( seq $ REPLICAS ) ; do <nl> $ CLICKHOUSE_CLIENT - - query " SYSTEM SYNC REPLICA concurrent_alter_add_drop_ $ i " <nl> $ CLICKHOUSE_CLIENT - - query " SELECT COUNT ( ) FROM system . mutations WHERE is_done = 0 and table = ' concurrent_alter_add_drop_ $ i ' " <nl> $ CLICKHOUSE_CLIENT - - query " SELECT * FROM system . mutations WHERE is_done = 0 and table = ' concurrent_alter_add_drop_ $ i ' " <nl> mmm a / tests / queries / 0_stateless / 01079_parallel_alter_detach_table_zookeeper . sh <nl> ppp b / tests / queries / 0_stateless / 01079_parallel_alter_detach_table_zookeeper . sh <nl> CURDIR = $ ( cd " $ ( dirname " $ { BASH_SOURCE [ 0 ] } " ) " & & pwd ) <nl> <nl> REPLICAS = 3 <nl> <nl> - for i in ` seq $ REPLICAS ` ; do <nl> + for i in $ ( seq $ REPLICAS ) ; do <nl> $ CLICKHOUSE_CLIENT - - query " DROP TABLE IF EXISTS concurrent_alter_detach_ $ i " <nl> done <nl> <nl> - for i in ` seq $ REPLICAS ` ; do <nl> + for i in $ ( seq $ REPLICAS ) ; do <nl> $ CLICKHOUSE_CLIENT - - query " CREATE TABLE concurrent_alter_detach_ $ i ( key UInt64 , value1 UInt8 , value2 UInt8 ) ENGINE = ReplicatedMergeTree ( ' / clickhouse / tables / concurrent_alter_detach ' , ' $ i ' ) ORDER BY key SETTINGS max_replicated_mutations_in_queue = 1000 , number_of_free_entries_in_pool_to_execute_mutation = 0 , max_replicated_merges_in_queue = 1000 , temporary_directories_lifetime = 10 , cleanup_delay_period = 3 , cleanup_delay_period_random_add = 0 " <nl> done <nl> <nl> $ CLICKHOUSE_CLIENT - - query " INSERT INTO concurrent_alter_detach_1 SELECT number , number + 10 , number from numbers ( 10 ) " <nl> $ CLICKHOUSE_CLIENT - - query " INSERT INTO concurrent_alter_detach_1 SELECT number , number + 10 , number from numbers ( 10 , 40 ) " <nl> <nl> - for i in ` seq $ REPLICAS ` ; do <nl> + for i in $ ( seq $ REPLICAS ) ; do <nl> $ CLICKHOUSE_CLIENT - - query " SELECT SUM ( value1 ) FROM concurrent_alter_detach_ $ i " <nl> done <nl> <nl> - INITIAL_SUM = ` $ CLICKHOUSE_CLIENT - - query " SELECT SUM ( value1 ) FROM concurrent_alter_detach_1 " ` <nl> + INITIAL_SUM = $ ( $ CLICKHOUSE_CLIENT - - query " SELECT SUM ( value1 ) FROM concurrent_alter_detach_1 " ) <nl> <nl> # This alters mostly requires not only metadata change <nl> # but also conversion of data . Also they are all compatible <nl> echo " Finishing alters " <nl> <nl> sleep 1 <nl> <nl> - for i in ` seq $ REPLICAS ` ; do <nl> + for i in $ ( seq $ REPLICAS ) ; do <nl> $ CLICKHOUSE_CLIENT - - query " ATTACH TABLE concurrent_alter_detach_ $ i " 2 > / dev / null <nl> done <nl> <nl> done <nl> while [ [ $ ( timeout 120 " $ CLICKHOUSE_CLIENT " - - query " ALTER TABLE concurrent_alter_detach_1 MODIFY COLUMN value1 String SETTINGS replication_alter_partitions_sync = 2 " 2 > & 1 ) ] ] ; do <nl> sleep 1 <nl> # just try to attach table if it failed for some reason in the code above <nl> - for i in ` seq $ REPLICAS ` ; do <nl> + for i in $ ( seq $ REPLICAS ) ; do <nl> $ CLICKHOUSE_CLIENT - - query " ATTACH TABLE concurrent_alter_detach_ $ i " 2 > / dev / null <nl> done <nl> done <nl> <nl> - for i in ` seq $ REPLICAS ` ; do <nl> + for i in $ ( seq $ REPLICAS ) ; do <nl> $ CLICKHOUSE_CLIENT - - query " SYSTEM SYNC REPLICA concurrent_alter_detach_ $ i " <nl> $ CLICKHOUSE_CLIENT - - query " SELECT SUM ( toUInt64 ( value1 ) ) > $ INITIAL_SUM FROM concurrent_alter_detach_ $ i " <nl> $ CLICKHOUSE_CLIENT - - query " SELECT COUNT ( ) FROM system . mutations WHERE is_done = 0 and table = ' concurrent_alter_detach_ $ i ' " # all mutations have to be done <nl> mmm a / tests / queries / 0_stateless / 01079_parallel_alter_modify_zookeeper . sh <nl> ppp b / tests / queries / 0_stateless / 01079_parallel_alter_modify_zookeeper . sh <nl> CURDIR = $ ( cd " $ ( dirname " $ { BASH_SOURCE [ 0 ] } " ) " & & pwd ) <nl> <nl> REPLICAS = 5 <nl> <nl> - for i in ` seq $ REPLICAS ` ; do <nl> + for i in $ ( seq $ REPLICAS ) ; do <nl> $ CLICKHOUSE_CLIENT - - query " DROP TABLE IF EXISTS concurrent_alter_mt_ $ i " <nl> done <nl> <nl> - for i in ` seq $ REPLICAS ` ; do <nl> + for i in $ ( seq $ REPLICAS ) ; do <nl> $ CLICKHOUSE_CLIENT - - query " CREATE TABLE concurrent_alter_mt_ $ i ( key UInt64 , value1 UInt64 , value2 Int32 ) ENGINE = ReplicatedMergeTree ( ' / clickhouse / tables / concurrent_alter_mt ' , ' $ i ' ) ORDER BY key SETTINGS max_replicated_mutations_in_queue = 1000 , number_of_free_entries_in_pool_to_execute_mutation = 0 , max_replicated_merges_in_queue = 1000 " <nl> done <nl> <nl> $ CLICKHOUSE_CLIENT - - query " INSERT INTO concurrent_alter_mt_1 SELECT number , number + 10 , number from numbers ( 10 ) " <nl> $ CLICKHOUSE_CLIENT - - query " INSERT INTO concurrent_alter_mt_1 SELECT number , number + 10 , number from numbers ( 10 , 40 ) " <nl> <nl> - for i in ` seq $ REPLICAS ` ; do <nl> + for i in $ ( seq $ REPLICAS ) ; do <nl> $ CLICKHOUSE_CLIENT - - query " SYSTEM SYNC REPLICA concurrent_alter_mt_ $ i " <nl> done <nl> <nl> - for i in ` seq $ REPLICAS ` ; do <nl> + for i in $ ( seq $ REPLICAS ) ; do <nl> $ CLICKHOUSE_CLIENT - - query " SELECT SUM ( value1 ) FROM concurrent_alter_mt_ $ i " <nl> done <nl> <nl> - INITIAL_SUM = ` $ CLICKHOUSE_CLIENT - - query " SELECT SUM ( value1 ) FROM concurrent_alter_mt_1 " ` <nl> + INITIAL_SUM = $ ( $ CLICKHOUSE_CLIENT - - query " SELECT SUM ( value1 ) FROM concurrent_alter_mt_1 " ) <nl> <nl> # This alters mostly requires not only metadata change <nl> # but also conversion of data . Also they are all compatible <nl> while [ [ $ ( timeout 120 " $ CLICKHOUSE_CLIENT " - - query " ALTER TABLE concurrent_alte <nl> sleep 1 <nl> done <nl> <nl> - for i in ` seq $ REPLICAS ` ; do <nl> + for i in $ ( seq $ REPLICAS ) ; do <nl> $ CLICKHOUSE_CLIENT - - query " SYSTEM SYNC REPLICA concurrent_alter_mt_ $ i " <nl> $ CLICKHOUSE_CLIENT - - query " SELECT SUM ( toUInt64 ( value1 ) ) > $ INITIAL_SUM FROM concurrent_alter_mt_ $ i " <nl> $ CLICKHOUSE_CLIENT - - query " SELECT COUNT ( ) FROM system . mutations WHERE is_done = 0 and table = ' concurrent_alter_mt_ $ i ' " # all mutations have to be done <nl> mmm a / tests / queries / 0_stateless / 01098_temporary_and_external_tables . sh <nl> ppp b / tests / queries / 0_stateless / 01098_temporary_and_external_tables . sh <nl> url = " $ { url_without_session } session_id = test_01098 " <nl> $ { CLICKHOUSE_CURL } - m 30 - sSk " $ url " - - data " CREATE TEMPORARY TABLE tmp_table AS SELECT number AS n FROM numbers ( 42 ) " > / dev / null ; <nl> <nl> name_expr = " ' \ ` ' | | database | | ' \ ` . \ ` ' | | name | | ' \ ` ' " <nl> - full_tmp_name = ` echo " SELECT $ name_expr FROM system . tables WHERE database = ' _temporary_and_external_tables ' AND create_table_query LIKE ' % tmp_table % ' " | $ { CLICKHOUSE_CURL } - m 30 - sSgk " $ url " - d @ - ` <nl> + full_tmp_name = $ ( echo " SELECT $ name_expr FROM system . tables WHERE database = ' _temporary_and_external_tables ' AND create_table_query LIKE ' % tmp_table % ' " | $ { CLICKHOUSE_CURL } - m 30 - sSgk " $ url " - d @ - ) <nl> <nl> echo " SELECT * FROM $ full_tmp_name " | $ { CLICKHOUSE_CURL } - m 60 - sSgk " $ url " - d @ - | grep - F " Code : 291 " > / dev / null & & echo " OK " <nl> <nl> echo - ne ' 0 \ n1 \ n ' | $ { CLICKHOUSE_CURL } - m 30 - sSkF ' file = @ - ' " $ url & file_format = C <nl> <nl> echo - ne ' 0 \ n1 \ n ' | $ { CLICKHOUSE_CURL } - m 30 - sSkF ' file = @ - ' " $ url & file_format = CSV & file_types = UInt64 & query = SELECT + sleepEachRow ( 3 ) + FROM + file " > / dev / null & <nl> sleep 1 <nl> - full_tmp_names = ` echo " SELECT $ name_expr FROM system . tables WHERE database = ' _temporary_and_external_tables ' FORMAT TSV " | $ { CLICKHOUSE_CURL } - m 30 - sSgk " $ url_without_session " - d @ - ` <nl> + full_tmp_names = $ ( echo " SELECT $ name_expr FROM system . tables WHERE database = ' _temporary_and_external_tables ' FORMAT TSV " | $ { CLICKHOUSE_CURL } - m 30 - sSgk " $ url_without_session " - d @ - ) <nl> for name in $ full_tmp_names <nl> do <nl> $ { CLICKHOUSE_CURL } - m 30 - sSk " $ { url_without_session } query = SHOW + CREATE + TABLE + $ name " 1 > / dev / null 2 > / dev / null <nl> mmm a / tests / queries / 0_stateless / 01108_restart_replicas_rename_deadlock . sh <nl> ppp b / tests / queries / 0_stateless / 01108_restart_replicas_rename_deadlock . sh <nl> <nl> CURDIR = $ ( cd " $ ( dirname " $ { BASH_SOURCE [ 0 ] } " ) " & & pwd ) <nl> . " $ CURDIR " / . . / shell_config . sh <nl> <nl> - for i in ` seq 4 ` ; do <nl> + for i in $ ( seq 4 ) ; do <nl> $ CLICKHOUSE_CLIENT - q " DROP TABLE IF EXISTS replica_01108_ $ i " <nl> $ CLICKHOUSE_CLIENT - q " DROP TABLE IF EXISTS replica_01108_ $ { i } _tmp " <nl> $ CLICKHOUSE_CLIENT - q " CREATE TABLE replica_01108_ $ i ( n int ) ENGINE = ReplicatedMergeTree ( ' / clickhouse / tables / replica_01108_ $ i ' , ' replica ' ) ORDER BY tuple ( ) " <nl> timeout $ TIMEOUT bash - c restart_thread_2 2 > / dev / null & <nl> <nl> wait <nl> <nl> - for i in ` seq 4 ` ; do <nl> + for i in $ ( seq 4 ) ; do <nl> $ CLICKHOUSE_CLIENT - q " SYSTEM SYNC REPLICA replica_01108_ $ i " > / dev / null 2 > & 1 <nl> $ CLICKHOUSE_CLIENT - q " SYSTEM SYNC REPLICA replica_01108_ $ { i } _tmp " > / dev / null 2 > & 1 <nl> done <nl> <nl> - while [ [ ` $ CLICKHOUSE_CLIENT - q " SELECT count ( ) FROM system . processes WHERE query LIKE ' RENAME % ' " ` - gt 0 ] ] ; do <nl> + while [ [ $ ( $ CLICKHOUSE_CLIENT - q " SELECT count ( ) FROM system . processes WHERE query LIKE ' RENAME % ' " ) - gt 0 ] ] ; do <nl> sleep 1 <nl> done ; <nl> <nl> $ CLICKHOUSE_CLIENT - q " SELECT replaceOne ( name , ' _tmp ' , ' ' ) FROM system . tables WH <nl> $ CLICKHOUSE_CLIENT - q " SELECT sum ( n ) , count ( n ) FROM merge ( currentDatabase ( ) , ' ^ replica_01108_ ' ) GROUP BY position ( _table , ' tmp ' ) " <nl> <nl> <nl> - for i in ` seq 4 ` ; do <nl> + for i in $ ( seq 4 ) ; do <nl> $ CLICKHOUSE_CLIENT - q " DROP TABLE IF EXISTS replica_01108_ $ i NO DELAY " <nl> $ CLICKHOUSE_CLIENT - q " DROP TABLE IF EXISTS replica_01108_ $ { i } _tmp NO DELAY " <nl> done <nl> mmm a / tests / queries / 0_stateless / 01114_database_atomic . sh <nl> ppp b / tests / queries / 0_stateless / 01114_database_atomic . sh <nl> $ CLICKHOUSE_CLIENT - q " EXCHANGE TABLES test_01114_1 . mt AND test_01114_2 . mt " <nl> <nl> # Check that nothing changed <nl> $ CLICKHOUSE_CLIENT - q " SELECT count ( ) FROM test_01114_1 . mt " <nl> - uuid_mt1 = ` $ CLICKHOUSE_CLIENT - q " SELECT uuid FROM system . tables WHERE database = ' test_01114_1 ' AND name = ' mt ' " ` <nl> + uuid_mt1 = $ ( $ CLICKHOUSE_CLIENT - q " SELECT uuid FROM system . tables WHERE database = ' test_01114_1 ' AND name = ' mt ' " ) <nl> $ CLICKHOUSE_CLIENT - - show_table_uuid_in_table_create_query_if_not_nil = 1 - q " SHOW CREATE TABLE test_01114_1 . mt " | sed " s / $ uuid_mt1 / 00001114 - 0000 - 4000 - 8000 - 000000000001 / g " <nl> $ CLICKHOUSE_CLIENT - - show_table_uuid_in_table_create_query_if_not_nil = 1 - q " SHOW CREATE TABLE test_01114_2 . mt " <nl> <nl> mmm a / tests / queries / 0_stateless / 01193_metadata_loading . sh <nl> ppp b / tests / queries / 0_stateless / 01193_metadata_loading . sh <nl> threads = 10 <nl> count_multiplier = 1 <nl> max_time_ms = 1000 <nl> <nl> - debug_or_sanitizer_build = ` $ CLICKHOUSE_CLIENT - q " WITH ( ( SELECT value FROM system . build_options WHERE name = ' BUILD_TYPE ' ) AS build , ( SELECT value FROM system . build_options WHERE name = ' CXX_FLAGS ' ) as flags ) SELECT build = ' Debug ' OR flags LIKE ' % fsanitize % ' OR hasThreadFuzzer ( ) " ` <nl> + debug_or_sanitizer_build = $ ( $ CLICKHOUSE_CLIENT - q " WITH ( ( SELECT value FROM system . build_options WHERE name = ' BUILD_TYPE ' ) AS build , ( SELECT value FROM system . build_options WHERE name = ' CXX_FLAGS ' ) as flags ) SELECT build = ' Debug ' OR flags LIKE ' % fsanitize % ' OR hasThreadFuzzer ( ) " ) <nl> <nl> if [ [ debug_or_sanitizer_build - eq 1 ] ] ; then tables = 100 ; count_multiplier = 10 ; max_time_ms = 1500 ; fi <nl> <nl> wait <nl> $ CLICKHOUSE_CLIENT - q " CREATE TABLE $ db . table_merge ( i UInt64 , d Date , s String , n Nested ( i UInt8 , f Float32 ) ) ENGINE = Merge ( ' $ db ' , ' ^ table_ ' ) " <nl> $ CLICKHOUSE_CLIENT - q " SELECT count ( ) * $ count_multiplier , i , d , s , n . i , n . f FROM $ db . table_merge GROUP BY i , d , s , n . i , n . f ORDER BY i " <nl> <nl> - db_engine = ` $ CLICKHOUSE_CLIENT - q " SELECT engine FROM system . databases WHERE name = ' $ db ' " ` <nl> + db_engine = $ ( $ CLICKHOUSE_CLIENT - q " SELECT engine FROM system . databases WHERE name = ' $ db ' " ) <nl> <nl> $ CLICKHOUSE_CLIENT - q " DETACH DATABASE $ db " <nl> <nl> # get real time , grep seconds , remove point , remove leading zeros <nl> - elapsed_ms = ` { time $ CLICKHOUSE_CLIENT - q " ATTACH DATABASE $ db ENGINE = $ db_engine " ; } 2 > & 1 | grep real | grep - Po " 0m \ K [ 0 - 9 \ . ] * " | tr - d ' . ' | sed " s / ^ 0 * / / " ` <nl> + elapsed_ms = $ ( { time $ CLICKHOUSE_CLIENT - q " ATTACH DATABASE $ db ENGINE = $ db_engine " ; } 2 > & 1 | grep real | grep - Po " 0m \ K [ 0 - 9 \ . ] * " | tr - d ' . ' | sed " s / ^ 0 * / / " ) <nl> $ CLICKHOUSE_CLIENT - q " SELECT ' 01193_metadata_loading ' , $ elapsed_ms FORMAT Null " # it will be printed to server log <nl> <nl> if [ [ $ elapsed_ms - le $ max_time_ms ] ] ; then echo ok ; fi <nl> mmm a / tests / queries / 0_stateless / 01318_long_unsuccessful_mutation_zookeeper . sh <nl> ppp b / tests / queries / 0_stateless / 01318_long_unsuccessful_mutation_zookeeper . sh <nl> $ CLICKHOUSE_CLIENT - - query " ALTER TABLE mutation_table MODIFY COLUMN value UInt3 <nl> # # # # just check that both mutations started <nl> check_query = " SELECT count ( ) FROM system . mutations WHERE table = ' mutation_table ' and database = ' $ CLICKHOUSE_DATABASE ' " <nl> <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query = " $ check_query " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query = " $ check_query " 2 > & 1 ) <nl> <nl> while [ " $ query_result " ! = " 2 " ] <nl> do <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query = " $ check_query " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query = " $ check_query " 2 > & 1 ) <nl> sleep 0 . 5 <nl> done <nl> <nl> $ CLICKHOUSE_CLIENT - - query " KILL MUTATION WHERE mutation_id = ' $ first_mutation_id ' <nl> <nl> check_query = " SELECT sum ( parts_to_do ) FROM system . mutations WHERE table = ' mutation_table ' and database = ' $ CLICKHOUSE_DATABASE ' " <nl> <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query = " $ check_query " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query = " $ check_query " 2 > & 1 ) <nl> counter = 0 <nl> <nl> while [ " $ query_result " ! = " 1 " ] <nl> do <nl> then <nl> break <nl> fi <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query = " $ check_query " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query = " $ check_query " 2 > & 1 ) <nl> sleep 0 . 5 <nl> counter = $ ( ( $ counter + 1 ) ) <nl> done <nl> mmm a / tests / queries / 0_stateless / 01414_mutations_and_errors_zookeeper . sh <nl> ppp b / tests / queries / 0_stateless / 01414_mutations_and_errors_zookeeper . sh <nl> $ CLICKHOUSE_CLIENT - - query " ALTER TABLE replicated_mutation_table UPDATE key = k <nl> <nl> check_query = " SELECT count ( ) FROM system . mutations WHERE table = ' replicated_mutation_table ' and database = ' $ CLICKHOUSE_DATABASE ' and mutation_id = ' 0000000000 ' " <nl> <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query = " $ check_query " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query = " $ check_query " 2 > & 1 ) <nl> <nl> while [ " $ query_result " ! = " 1 " ] <nl> do <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query = " $ check_query " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query = " $ check_query " 2 > & 1 ) <nl> sleep 0 . 5 <nl> done <nl> <nl> $ CLICKHOUSE_CLIENT - - query " KILL MUTATION WHERE table = ' replicated_mutation_table <nl> <nl> while [ " $ query_result " ! = " 0 " ] <nl> do <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query = " $ check_query " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query = " $ check_query " 2 > & 1 ) <nl> sleep 0 . 5 <nl> done <nl> <nl> $ CLICKHOUSE_CLIENT - - query " ALTER TABLE replicated_mutation_table MODIFY COLUMN <nl> <nl> check_query = " SELECT count ( ) FROM system . mutations WHERE table = ' replicated_mutation_table ' and database = ' $ CLICKHOUSE_DATABASE ' and mutation_id = ' 0000000001 ' " <nl> <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query = " $ check_query " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query = " $ check_query " 2 > & 1 ) <nl> <nl> while [ " $ query_result " ! = " 1 " ] <nl> do <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query = " $ check_query " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query = " $ check_query " 2 > & 1 ) <nl> sleep 0 . 5 <nl> done <nl> <nl> $ CLICKHOUSE_CLIENT - - query " KILL MUTATION WHERE table = ' replicated_mutation_table <nl> <nl> while [ " $ query_result " ! = " 0 " ] <nl> do <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query = " $ check_query " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query = " $ check_query " 2 > & 1 ) <nl> sleep 0 . 5 <nl> done <nl> <nl> mmm a / tests / queries / 0_stateless / 01415_sticking_mutations . sh <nl> ppp b / tests / queries / 0_stateless / 01415_sticking_mutations . sh <nl> function check_sticky_mutations ( ) <nl> # # # # # wait mutation to start # # # # # <nl> check_query = " SELECT count ( ) FROM system . mutations WHERE table = ' sticking_mutations ' and database = ' $ CLICKHOUSE_DATABASE ' and is_done = 0 " <nl> <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query = " $ check_query " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query = " $ check_query " 2 > & 1 ) <nl> <nl> while [ " $ query_result " = = " 0 " ] <nl> do <nl> - query_result = ` $ CLICKHOUSE_CLIENT - - query = " $ check_query " 2 > & 1 ` <nl> + query_result = $ ( $ CLICKHOUSE_CLIENT - - query = " $ check_query " 2 > & 1 ) <nl> sleep 0 . 5 <nl> done <nl> # # # # # wait mutation to start # # # # # <nl> mmm a / tests / queries / shell_config . sh <nl> ppp b / tests / queries / shell_config . sh <nl> export CLICKHOUSE_FORMAT = $ { CLICKHOUSE_FORMAT : = " $ CLICKHOUSE_BINARY - format " } <nl> export CLICKHOUSE_CONFIG_GREP = $ { CLICKHOUSE_CONFIG_GREP : = " / etc / clickhouse - server / preprocessed / config . xml " } <nl> <nl> export CLICKHOUSE_HOST = $ { CLICKHOUSE_HOST : = " localhost " } <nl> - export CLICKHOUSE_PORT_TCP = $ { CLICKHOUSE_PORT_TCP : = ` $ { CLICKHOUSE_EXTRACT_CONFIG } - - try - - key = tcp_port 2 > / dev / null ` } 2 > / dev / null <nl> + export CLICKHOUSE_PORT_TCP = $ { CLICKHOUSE_PORT_TCP : = $ ( $ { CLICKHOUSE_EXTRACT_CONFIG } - - try - - key = tcp_port 2 > / dev / null ) } 2 > / dev / null <nl> export CLICKHOUSE_PORT_TCP = $ { CLICKHOUSE_PORT_TCP : = " 9000 " } <nl> - export CLICKHOUSE_PORT_TCP_SECURE = $ { CLICKHOUSE_PORT_TCP_SECURE : = ` $ { CLICKHOUSE_EXTRACT_CONFIG } - - try - - key = tcp_port_secure 2 > / dev / null ` } 2 > / dev / null <nl> + export CLICKHOUSE_PORT_TCP_SECURE = $ { CLICKHOUSE_PORT_TCP_SECURE : = $ ( $ { CLICKHOUSE_EXTRACT_CONFIG } - - try - - key = tcp_port_secure 2 > / dev / null ) } 2 > / dev / null <nl> export CLICKHOUSE_PORT_TCP_SECURE = $ { CLICKHOUSE_PORT_TCP_SECURE : = " 9440 " } <nl> - export CLICKHOUSE_PORT_HTTP = $ { CLICKHOUSE_PORT_HTTP : = ` $ { CLICKHOUSE_EXTRACT_CONFIG } - - key = http_port 2 > / dev / null ` } <nl> + export CLICKHOUSE_PORT_HTTP = $ { CLICKHOUSE_PORT_HTTP : = $ ( $ { CLICKHOUSE_EXTRACT_CONFIG } - - key = http_port 2 > / dev / null ) } <nl> export CLICKHOUSE_PORT_HTTP = $ { CLICKHOUSE_PORT_HTTP : = " 8123 " } <nl> - export CLICKHOUSE_PORT_HTTPS = $ { CLICKHOUSE_PORT_HTTPS : = ` $ { CLICKHOUSE_EXTRACT_CONFIG } - - try - - key = https_port 2 > / dev / null ` } 2 > / dev / null <nl> + export CLICKHOUSE_PORT_HTTPS = $ { CLICKHOUSE_PORT_HTTPS : = $ ( $ { CLICKHOUSE_EXTRACT_CONFIG } - - try - - key = https_port 2 > / dev / null ) } 2 > / dev / null <nl> export CLICKHOUSE_PORT_HTTPS = $ { CLICKHOUSE_PORT_HTTPS : = " 8443 " } <nl> export CLICKHOUSE_PORT_HTTP_PROTO = $ { CLICKHOUSE_PORT_HTTP_PROTO : = " http " } <nl> <nl> then <nl> export CLICKHOUSE_URL_HTTPS = " $ { CLICKHOUSE_URL_HTTPS } ? $ { CLICKHOUSE_URL_PARAMS } " <nl> fi <nl> <nl> - export CLICKHOUSE_PORT_INTERSERVER = $ { CLICKHOUSE_PORT_INTERSERVER : = ` $ { CLICKHOUSE_EXTRACT_CONFIG } - - try - - key = interserver_http_port 2 > / dev / null ` } 2 > / dev / null <nl> + export CLICKHOUSE_PORT_INTERSERVER = $ { CLICKHOUSE_PORT_INTERSERVER : = $ ( $ { CLICKHOUSE_EXTRACT_CONFIG } - - try - - key = interserver_http_port 2 > / dev / null ) } 2 > / dev / null <nl> export CLICKHOUSE_PORT_INTERSERVER = $ { CLICKHOUSE_PORT_INTERSERVER : = " 9009 " } <nl> export CLICKHOUSE_URL_INTERSERVER = $ { CLICKHOUSE_URL_INTERSERVER : = " $ { CLICKHOUSE_PORT_HTTP_PROTO } : / / $ { CLICKHOUSE_HOST } : $ { CLICKHOUSE_PORT_INTERSERVER } / " } <nl> <nl>
shellcheck - - check - sourced - - external - sources - - severity style - - exclude SC1071 - - format diff * . sh . . / 1_stateful / * . sh | git apply
ClickHouse/ClickHouse
0c33498df1525c8a08ebdf4b36857a91904cba59
2020-08-02T21:24:16Z
mmm a / README . md <nl> ppp b / README . md <nl> <nl> - # Yoga [ ! [ CocoaPods ] ( https : / / img . shields . io / cocoapods / v / YogaKit . svg ) ] ( http : / / cocoapods . org / pods / YogaKit ) [ ! [ npm ] ( https : / / img . shields . io / npm / v / yoga - layout . svg ) ] ( https : / / www . npmjs . com / package / yoga - layout ) [ ! [ bintray ] ( https : / / img . shields . io / bintray / v / facebook / maven / com . facebook . yoga : yoga . svg ) ] ( https : / / bintray . com / facebook / maven / com . facebook . yoga % 3Ayoga / _latestVersion ) <nl> + # Yoga [ ! [ CocoaPods ] ( https : / / img . shields . io / cocoapods / v / YogaKit . svg ) ] ( http : / / cocoapods . org / pods / YogaKit ) [ ! [ npm ] ( https : / / img . shields . io / npm / v / yoga - layout . svg ) ] ( https : / / www . npmjs . com / package / yoga - layout ) [ ! [ bintray ] ( https : / / img . shields . io / bintray / v / facebook / maven / com . facebook . yoga : yoga . svg ) ] ( https : / / bintray . com / facebook / maven / com . facebook . yoga % 3Ayoga / _latestVersion ) [ ! [ NuGet ] ( https : / / img . shields . io / nuget / v / Facebook . Yoga . svg ) ] ( https : / / www . nuget . org / packages / Facebook . Yoga ) <nl> <nl> [ ! [ C Status ] ( https : / / badges . herokuapp . com / travis / facebook / yoga ? env = TARGET = c & label = C ) ] ( https : / / travis - ci . org / facebook / yoga ) <nl> [ ! [ Java Status ] ( https : / / badges . herokuapp . com / travis / facebook / yoga ? env = TARGET = java & label = Java ) ] ( https : / / travis - ci . org / facebook / yoga ) <nl> <nl> [ ! [ JavaScript Status ] ( https : / / badges . herokuapp . com / travis / facebook / yoga ? env = TARGET = js & label = JavaScript ) ] ( https : / / travis - ci . org / facebook / yoga ) <nl> [ ! [ Android Status ] ( https : / / badges . herokuapp . com / travis / facebook / yoga ? env = TARGET = android & label = Android ) ] ( https : / / travis - ci . org / facebook / yoga ) <nl> <nl> + [ ! [ Visual Studio Team services ] ( https : / / img . shields . io / vso / build / rumar / fe6d27b5 - e424 - 4f61 - b8f6 - e2ec2f8755fb / 1 . svg ? label = vsts - windows ) ] ( ) <nl> + [ ! [ Visual Studio Team services ] ( https : / / img . shields . io / vso / build / rumar / fe6d27b5 - e424 - 4f61 - b8f6 - e2ec2f8755fb / 2 . svg ? label = vsts - osx ) ] ( ) <nl> <nl> # # Building <nl> Yoga builds with [ buck ] ( https : / / buckbuild . com ) . Make sure you install buck before contributing to Yoga . Yoga ' s main implementation is in C , with bindings to supported languages and frameworks . When making changes to Yoga please ensure the changes are also propagated to these bindings when applicable . <nl> new file mode 100644 <nl> index 000000000 . . 759b33362 <nl> mmm / dev / null <nl> ppp b / csharp / Windows / Facebook . Yoga . Universal / Facebook . Yoga . Universal . csproj <nl> <nl> +  < ? xml version = " 1 . 0 " encoding = " utf - 8 " ? > <nl> + < Project ToolsVersion = " 14 . 0 " DefaultTargets = " Build " xmlns = " http : / / schemas . microsoft . com / developer / msbuild / 2003 " > <nl> + < Import Project = " $ ( MSBuildExtensionsPath ) \ $ ( MSBuildToolsVersion ) \ Microsoft . Common . props " Condition = " Exists ( ' $ ( MSBuildExtensionsPath ) \ $ ( MSBuildToolsVersion ) \ Microsoft . Common . props ' ) " / > <nl> + < PropertyGroup > <nl> + < Configuration Condition = " ' $ ( Configuration ) ' = = ' ' " > Debug < / Configuration > <nl> + < Platform Condition = " ' $ ( Platform ) ' = = ' ' " > AnyCPU < / Platform > <nl> + < ProjectGuid > { D6477AD6 - 9EDD - 4EBA - 8C60 - CD31F77C52C6 } < / ProjectGuid > <nl> + < OutputType > Library < / OutputType > <nl> + < AppDesignerFolder > Properties < / AppDesignerFolder > <nl> + < RootNamespace > Facebook . Yoga < / RootNamespace > <nl> + < AssemblyName > Facebook . Yoga < / AssemblyName > <nl> + < DefaultLanguage > en - US < / DefaultLanguage > <nl> + < TargetPlatformIdentifier > UAP < / TargetPlatformIdentifier > <nl> + < TargetPlatformVersion > 10 . 0 . 14393 . 0 < / TargetPlatformVersion > <nl> + < TargetPlatformMinVersion > 10 . 0 . 10240 . 0 < / TargetPlatformMinVersion > <nl> + < MinimumVisualStudioVersion > 14 < / MinimumVisualStudioVersion > <nl> + < FileAlignment > 512 < / FileAlignment > <nl> + < ProjectTypeGuids > { A5A43C5B - DE2A - 4C0C - 9213 - 0A381AF9435A } ; { FAE04EC0 - 301F - 11D3 - BF4B - 00C04F79EFBC } < / ProjectTypeGuids > <nl> + < / PropertyGroup > <nl> + < PropertyGroup Condition = " ' $ ( Configuration ) | $ ( Platform ) ' = = ' Debug | AnyCPU ' " > <nl> + < PlatformTarget > AnyCPU < / PlatformTarget > <nl> + < DebugSymbols > true < / DebugSymbols > <nl> + < DebugType > full < / DebugType > <nl> + < Optimize > false < / Optimize > <nl> + < OutputPath > bin \ Debug \ < / OutputPath > <nl> + < DefineConstants > DEBUG ; TRACE ; NETFX_CORE ; WINDOWS_UWP < / DefineConstants > <nl> + < ErrorReport > prompt < / ErrorReport > <nl> + < WarningLevel > 4 < / WarningLevel > <nl> + < / PropertyGroup > <nl> + < PropertyGroup Condition = " ' $ ( Configuration ) | $ ( Platform ) ' = = ' Release | AnyCPU ' " > <nl> + < PlatformTarget > AnyCPU < / PlatformTarget > <nl> + < DebugType > pdbonly < / DebugType > <nl> + < Optimize > true < / Optimize > <nl> + < OutputPath > bin \ Release \ < / OutputPath > <nl> + < DefineConstants > TRACE ; NETFX_CORE ; WINDOWS_UWP < / DefineConstants > <nl> + < ErrorReport > prompt < / ErrorReport > <nl> + < WarningLevel > 4 < / WarningLevel > <nl> + < / PropertyGroup > <nl> + < PropertyGroup Condition = " ' $ ( Configuration ) | $ ( Platform ) ' = = ' Debug | x86 ' " > <nl> + < PlatformTarget > x86 < / PlatformTarget > <nl> + < DebugSymbols > true < / DebugSymbols > <nl> + < OutputPath > bin \ x86 \ Debug \ < / OutputPath > <nl> + < DefineConstants > DEBUG ; TRACE ; NETFX_CORE ; WINDOWS_UWP < / DefineConstants > <nl> + < NoWarn > ; 2008 < / NoWarn > <nl> + < DebugType > full < / DebugType > <nl> + < PlatformTarget > x86 < / PlatformTarget > <nl> + < UseVSHostingProcess > false < / UseVSHostingProcess > <nl> + < ErrorReport > prompt < / ErrorReport > <nl> + < / PropertyGroup > <nl> + < PropertyGroup Condition = " ' $ ( Configuration ) | $ ( Platform ) ' = = ' Release | x86 ' " > <nl> + < PlatformTarget > x86 < / PlatformTarget > <nl> + < OutputPath > bin \ x86 \ Release \ < / OutputPath > <nl> + < DefineConstants > TRACE ; NETFX_CORE ; WINDOWS_UWP < / DefineConstants > <nl> + < Optimize > true < / Optimize > <nl> + < NoWarn > ; 2008 < / NoWarn > <nl> + < DebugType > pdbonly < / DebugType > <nl> + < PlatformTarget > x86 < / PlatformTarget > <nl> + < UseVSHostingProcess > false < / UseVSHostingProcess > <nl> + < ErrorReport > prompt < / ErrorReport > <nl> + < / PropertyGroup > <nl> + < PropertyGroup Condition = " ' $ ( Configuration ) | $ ( Platform ) ' = = ' Debug | ARM ' " > <nl> + < PlatformTarget > ARM < / PlatformTarget > <nl> + < DebugSymbols > true < / DebugSymbols > <nl> + < OutputPath > bin \ ARM \ Debug \ < / OutputPath > <nl> + < DefineConstants > TRACE ; DEBUG ; NETFX_CORE ; WINDOWS_UWP ; WINDOWS_UWP_ARM < / DefineConstants > <nl> + < NoWarn > ; 2008 < / NoWarn > <nl> + < DebugType > full < / DebugType > <nl> + < PlatformTarget > AnyCPU < / PlatformTarget > <nl> + < UseVSHostingProcess > false < / UseVSHostingProcess > <nl> + < ErrorReport > prompt < / ErrorReport > <nl> + < / PropertyGroup > <nl> + < PropertyGroup Condition = " ' $ ( Configuration ) | $ ( Platform ) ' = = ' Release | ARM ' " > <nl> + < PlatformTarget > ARM < / PlatformTarget > <nl> + < OutputPath > bin \ ARM \ Release \ < / OutputPath > <nl> + < DefineConstants > TRACE ; NETFX_CORE ; WINDOWS_UWP ; WINDOWS_UWP_ARM < / DefineConstants > <nl> + < Optimize > true < / Optimize > <nl> + < NoWarn > ; 2008 < / NoWarn > <nl> + < DebugType > pdbonly < / DebugType > <nl> + < PlatformTarget > AnyCPU < / PlatformTarget > <nl> + < UseVSHostingProcess > false < / UseVSHostingProcess > <nl> + < ErrorReport > prompt < / ErrorReport > <nl> + < / PropertyGroup > <nl> + < PropertyGroup Condition = " ' $ ( Configuration ) | $ ( Platform ) ' = = ' Debug | x64 ' " > <nl> + < PlatformTarget > x64 < / PlatformTarget > <nl> + < DebugSymbols > true < / DebugSymbols > <nl> + < OutputPath > bin \ x64 \ Debug \ < / OutputPath > <nl> + < DefineConstants > DEBUG ; TRACE ; NETFX_CORE ; WINDOWS_UWP < / DefineConstants > <nl> + < NoWarn > ; 2008 < / NoWarn > <nl> + < DebugType > full < / DebugType > <nl> + < PlatformTarget > x64 < / PlatformTarget > <nl> + < UseVSHostingProcess > false < / UseVSHostingProcess > <nl> + < ErrorReport > prompt < / ErrorReport > <nl> + < / PropertyGroup > <nl> + < PropertyGroup Condition = " ' $ ( Configuration ) | $ ( Platform ) ' = = ' Release | x64 ' " > <nl> + < PlatformTarget > x64 < / PlatformTarget > <nl> + < OutputPath > bin \ x64 \ Release \ < / OutputPath > <nl> + < DefineConstants > TRACE ; NETFX_CORE ; WINDOWS_UWP < / DefineConstants > <nl> + < Optimize > true < / Optimize > <nl> + < NoWarn > ; 2008 < / NoWarn > <nl> + < DebugType > pdbonly < / DebugType > <nl> + < PlatformTarget > x64 < / PlatformTarget > <nl> + < UseVSHostingProcess > false < / UseVSHostingProcess > <nl> + < ErrorReport > prompt < / ErrorReport > <nl> + < / PropertyGroup > <nl> + < ItemGroup > <nl> + < ! - - A reference to the entire . Net Framework and Windows SDK are automatically included - - > <nl> + < None Include = " project . json " / > <nl> + < / ItemGroup > <nl> + < ItemGroup > <nl> + < Folder Include = " Properties \ " / > <nl> + < / ItemGroup > <nl> + < Import Project = " . . \ . . \ Facebook . Yoga \ Facebook . Yoga . Shared . projitems " Label = " Shared " / > <nl> + < PropertyGroup Condition = " ' $ ( VisualStudioVersion ) ' = = ' ' or ' $ ( VisualStudioVersion ) ' & lt ; ' 14 . 0 ' " > <nl> + < VisualStudioVersion > 14 . 0 < / VisualStudioVersion > <nl> + < / PropertyGroup > <nl> + < Import Project = " $ ( MSBuildExtensionsPath ) \ Microsoft \ WindowsXaml \ v $ ( VisualStudioVersion ) \ Microsoft . Windows . UI . Xaml . CSharp . targets " / > <nl> + < ! - - To modify your build process , add your task inside one of the targets below and uncomment it . <nl> + Other similar extension points exist , see Microsoft . Common . targets . <nl> + < Target Name = " BeforeBuild " > <nl> + < / Target > <nl> + < Target Name = " AfterBuild " > <nl> + < / Target > <nl> + - - > <nl> + < / Project > <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000 . . 4aaae4c65 <nl> mmm / dev / null <nl> ppp b / csharp / Windows / Facebook . Yoga . Universal / project . json <nl> <nl> + { <nl> + " dependencies " : { <nl> + " Microsoft . NETCore . UniversalWindowsPlatform " : " 5 . 1 . 0 " <nl> + } , <nl> + " frameworks " : { <nl> + " uap10 . 0 " : { } <nl> + } , <nl> + " runtimes " : { <nl> + " win10 - arm " : { } , <nl> + " win10 - arm - aot " : { } , <nl> + " win10 - x86 " : { } , <nl> + " win10 - x86 - aot " : { } , <nl> + " win10 - x64 " : { } , <nl> + " win10 - x64 - aot " : { } <nl> + } <nl> + } <nl> \ No newline at end of file <nl> mmm a / csharp / tests / Facebook . Yoga / YogaNodeTest . cs <nl> ppp b / csharp / tests / Facebook . Yoga / YogaNodeTest . cs <nl> private void TestDestructorWithChildrenForGC2 ( YogaNode parent , int instanceCount <nl> child = null ; <nl> } <nl> <nl> + # if ! __UNIFIED__ <nl> [ Test ] <nl> + # endif <nl> public void TestParentDestructor ( ) <nl> { <nl> ForceGC ( ) ; <nl>
Missing project , Badges , ignore test on MacOS for a green build
facebook/yoga
af8d55c08e99fe139fa628c9adcaba8014a3c289
2017-03-08T15:58:46Z
mmm a / xbmc / GUIDialogAddonInfo . cpp <nl> ppp b / xbmc / GUIDialogAddonInfo . cpp <nl> bool CGUIDialogAddonInfo : : ShowForItem ( const CFileItemPtr & item ) <nl> else <nl> dialog - > m_item - > SetProperty ( " Addon . Installed " , " false " ) ; <nl> <nl> + AddonPtr addon ; <nl> CAddonDatabase database ; <nl> database . Open ( ) ; <nl> - database . GetAddon ( item - > GetProperty ( " Addon . ID " ) , dialog - > m_addon ) ; <nl> + if ( database . GetAddon ( item - > GetProperty ( " Addon . ID " ) , addon ) ) <nl> + dialog - > m_addon = addon ; <nl> + <nl> if ( ! dialog - > m_addon ) <nl> return false ; <nl> } <nl>
fixed : let ' s try this again
xbmc/xbmc
54fd0752af2cf12d99c85354818dac105b8216d3
2010-04-27T23:11:44Z
mmm a / emscripten . py <nl> ppp b / emscripten . py <nl> def save_settings ( ) : <nl> requested ! = ' _malloc ' : # special - case malloc , EXPORTED by default for internal use , but we bake in a trivial allocator and warn at runtime if used in ASSERTIONS <nl> logging . warning ( ' function requested to be exported , but not implemented : " % s " ' , requested ) <nl> <nl> - # Add named globals <nl> - named_globals = ' \ n ' . join ( [ ' var % s = % s ; ' % ( k , v ) for k , v in metadata [ ' namedGlobals ' ] . iteritems ( ) ] ) <nl> - <nl> asm_consts = [ 0 ] * len ( metadata [ ' asmConsts ' ] ) <nl> for k , v in metadata [ ' asmConsts ' ] . iteritems ( ) : <nl> const = v . encode ( ' utf - 8 ' ) <nl> def save_settings ( ) : <nl> return Runtime . asmConsts [ code ] ( % s ) | 0 ; <nl> } ' ' ' % ( arity , ' , ' . join ( all_args ) , ' , ' . join ( args ) ) ) <nl> <nl> - pre = pre . replace ( ' / / = = = Body = = = ' , ' / / = = = Body = = = \ n ' + named_globals + ' \ nRuntime . asmConsts = [ ' + ' , ' . join ( asm_consts ) + ' ] ; \ n ' + ' \ n ' . join ( asm_const_funcs ) + ' \ n ' ) <nl> + pre = pre . replace ( ' / / = = = Body = = = ' , ' / / = = = Body = = = \ n ' + ' \ nRuntime . asmConsts = [ ' + ' , ' . join ( asm_consts ) + ' ] ; \ n ' + ' \ n ' . join ( asm_const_funcs ) + ' \ n ' ) <nl> <nl> # if DEBUG : outfile . write ( ' / / pre \ n ' ) <nl> outfile . write ( pre ) <nl> def math_fix ( g ) : <nl> receiving + = ' Module [ " ' + name + ' " ] = ' + fullname + ' ; \ n ' <nl> final_function_tables = ' \ n / / EMSCRIPTEN_END_FUNCS \ n ' <nl> <nl> + if settings [ ' RELOCATABLE ' ] : <nl> + receiving + = ' ' ' <nl> + var NAMED_GLOBALS = % s ; <nl> + for ( var named in NAMED_GLOBALS ) NAMED_GLOBALS [ named ] + = gb ; <nl> + Module [ ' NAMED_GLOBALS ' ] = NAMED_GLOBALS ; <nl> + ' ' ' % json . dumps ( metadata [ ' namedGlobals ' ] ) <nl> + <nl> funcs_js = [ ' ' ' <nl> % s <nl> Module % s = % s ; <nl> mmm a / src / library . js <nl> ppp b / src / library . js <nl> LibraryManager . library = { <nl> dlsym : function ( handle , symbol ) { <nl> / / void * dlsym ( void * restrict handle , const char * restrict name ) ; <nl> / / http : / / pubs . opengroup . org / onlinepubs / 009695399 / functions / dlsym . html <nl> - symbol = ' _ ' + Pointer_stringify ( symbol ) ; <nl> + symbol = Pointer_stringify ( symbol ) ; <nl> <nl> if ( ! DLFCN . loadedLibs [ handle ] ) { <nl> DLFCN . errorMsg = ' Tried to dlsym ( ) from an unopened handle : ' + handle ; <nl> return 0 ; <nl> } else { <nl> var lib = DLFCN . loadedLibs [ handle ] ; <nl> - / / self - dlopen means that lib . module is not a superset of <nl> - / / cached_functions , so check the latter first <nl> + if ( lib . module . NAMED_GLOBALS . hasOwnProperty ( symbol ) ) { <nl> + return lib . module . NAMED_GLOBALS [ symbol ] ; <nl> + } <nl> + / / not a global var , must be a function <nl> + symbol = ' _ ' + symbol ; <nl> if ( lib . cached_functions . hasOwnProperty ( symbol ) ) { <nl> return lib . cached_functions [ symbol ] ; <nl> + } <nl> + if ( ! lib . module . hasOwnProperty ( symbol ) ) { <nl> + DLFCN . errorMsg = ( ' Tried to lookup unknown symbol " ' + symbol + <nl> + ' " in dynamic lib : ' + lib . name ) ; <nl> + return 0 ; <nl> } else { <nl> - if ( ! lib . module . hasOwnProperty ( symbol ) ) { <nl> - DLFCN . errorMsg = ( ' Tried to lookup unknown symbol " ' + symbol + <nl> - ' " in dynamic lib : ' + lib . name ) ; <nl> - return 0 ; <nl> - } else { <nl> - var result = lib . module [ symbol ] ; <nl> - if ( typeof result = = ' function ' ) { <nl> - result = Runtime . addFunction ( result ) ; <nl> - lib . cached_functions = result ; <nl> - } <nl> - return result ; <nl> + var result = lib . module [ symbol ] ; <nl> + if ( typeof result = = ' function ' ) { <nl> + result = Runtime . addFunction ( result ) ; <nl> + lib . cached_functions = result ; <nl> } <nl> + return result ; <nl> } <nl> } <nl> } , <nl> mmm a / tests / test_core . py <nl> ppp b / tests / test_core . py <nl> def test_dlfcn_qsort ( self ) : <nl> self . validate_asmjs ( out ) <nl> <nl> def test_dlfcn_data_and_fptr ( self ) : <nl> - return self . skip ( ' todo ' ) <nl> - if Settings . ASM_JS : return self . skip ( ' this is not a valid case - libraries should not be able to access their parents globals willy nilly ' ) <nl> if not self . can_dlfcn ( ) : return <nl> <nl> if Building . LLVM_OPTS : return self . skip ( ' LLVM opts will optimize out parent_func ' ) <nl>
handle named globals in dlsym ; enable test_dlfcn_data_and_fptr
emscripten-core/emscripten
18aef0e531fa4f5988c7d9fbfe5e8779039cb336
2015-04-26T04:45:13Z
mmm a / hphp / hack / src / server / serverInit . ml <nl> ppp b / hphp / hack / src / server / serverInit . ml <nl> end <nl> let ai_check genv files_info env t = <nl> match ServerArgs . ai_mode genv . options with <nl> | Some ai_opt - > <nl> - let failed_parsing , failed_decl , failed_check = <nl> - Errors . get_failed_files env . errorl Errors . Parsing , <nl> - Errors . get_failed_files env . errorl Errors . Decl , <nl> - Errors . get_failed_files env . errorl Errors . Typing <nl> + let failures = <nl> + List . map ~ f : ( fun k - > ( k , Errors . get_failed_files env . errorl k ) ) <nl> + [ Errors . Parsing ; Errors . Decl ; Errors . Naming ; Errors . Typing ] <nl> in <nl> - let all_passed = List . for_all <nl> - [ failed_parsing ; failed_decl ; failed_check ; ] <nl> - ( fun m - > Relative_path . Set . is_empty m ) in <nl> - if not all_passed then begin <nl> - Hh_logger . log " Cannot run AI because of errors in source " ; <nl> - env , t <nl> - end <nl> - else begin <nl> - let check_mode = ServerArgs . check_mode genv . options in <nl> - let errorl = Ai . go <nl> - Typing_check_utils . type_file genv . workers files_info <nl> - env . tcopt ai_opt check_mode in <nl> - let env = { env with <nl> - errorl = Errors . merge errorl env . errorl ; <nl> - } in <nl> - env , ( Hh_logger . log_duration " Ai " t ) <nl> - end <nl> + let phase_to_string = function ( * Not exposed in Errors module * ) <nl> + | Errors . Init - > " Init " <nl> + | Errors . Parsing - > " Parsing " <nl> + | Errors . Naming - > " Naming " <nl> + | Errors . Decl - > " Decl " <nl> + | Errors . Typing - > " Typing " <nl> + in <nl> + let ( ) = List . iter failures <nl> + ~ f : ( fun ( k , m ) - > <nl> + if not ( Relative_path . Set . is_empty m ) then <nl> + Hh_logger . log " % d Hack errors in phase % s " <nl> + ( Relative_path . Set . cardinal m ) <nl> + ( phase_to_string k ) ) in <nl> + let check_mode = ServerArgs . check_mode genv . options in <nl> + let errorl = Ai . go <nl> + Typing_check_utils . type_file genv . workers files_info <nl> + env . tcopt ai_opt check_mode in <nl> + let env = { env with <nl> + errorl ( * Ignore hack errors . * ) <nl> + } in <nl> + env , ( Hh_logger . log_duration " Ai " t ) <nl> | None - > env , t <nl> <nl> let run_search genv t = <nl>
Ignore all hack errors
facebook/hhvm
e975d7daa58ed5b38648360ac9532b7ed03a1739
2018-06-11T16:29:46Z
mmm a / src / video_core / shader / shader_interpreter . cpp <nl> ppp b / src / video_core / shader / shader_interpreter . cpp <nl> <nl> / / Licensed under GPLv2 or any later version <nl> / / Refer to the license . txt file included . <nl> <nl> - # include < common / file_util . h > <nl> - <nl> + # include < numeric > <nl> # include < nihstro / shader_bytecode . h > <nl> <nl> + # include " common / file_util . h " <nl> # include " video_core / pica . h " <nl> # include " video_core / pica_state . h " <nl> # include " video_core / shader / shader . h " <nl> void RunInterpreter ( UnitState < Debug > & state ) { <nl> if ( opcode = = OpCode : : Id : : DPH | | opcode = = OpCode : : Id : : DPHI ) <nl> src1 [ 3 ] = float24 : : FromFloat32 ( 1 . 0f ) ; <nl> <nl> - float24 dot = float24 : : FromFloat32 ( 0 . f ) ; <nl> int num_components = ( opcode = = OpCode : : Id : : DP3 ) ? 3 : 4 ; <nl> - for ( int i = 0 ; i < num_components ; + + i ) <nl> - dot = dot + src1 [ i ] * src2 [ i ] ; <nl> + float24 dot = std : : inner_product ( src1 , src1 + num_components , src2 , float24 : : FromFloat32 ( 0 . f ) ) ; <nl> <nl> for ( int i = 0 ; i < 4 ; + + i ) { <nl> if ( ! swizzle . DestComponentEnabled ( i ) ) <nl>
shader_interpreter : use std : : inner_product for the dot product
yuzu-emu/yuzu
4d89df8df22c24748f7435ce8a94ec861f1bff0d
2016-03-17T05:00:30Z
mmm a / imgui . cpp <nl> ppp b / imgui . cpp <nl> static void RenderCollapseTriangle ( ImVec2 p_min , bool opened , float scal <nl> static void SetFont ( ImFont * font ) ; <nl> static bool ItemAdd ( const ImGuiAabb & bb , const ImGuiID * id ) ; <nl> static void ItemSize ( ImVec2 size , ImVec2 * adjust_start_offset = NULL ) ; <nl> - static void ItemSize ( const ImGuiAabb & bb , ImVec2 * adjust_start_offset = NULL ) ; <nl> + static void ItemSize ( const ImGuiAabb & bb ) ; <nl> static void PushColumnClipRect ( int column_index = - 1 ) ; <nl> static bool IsClipped ( const ImGuiAabb & bb ) ; <nl> <nl> struct ImGuiDrawContext <nl> ImVec2 CursorStartPos ; <nl> float CurrentLineHeight ; <nl> float PrevLineHeight ; <nl> - float LogLineHeight ; <nl> + float LogLinePosY ; <nl> int TreeDepth ; <nl> ImGuiID LastItemID ; <nl> ImGuiAabb LastItemAabb ; <nl> struct ImGuiDrawContext <nl> { <nl> CursorPos = CursorPosPrevLine = CursorStartPos = ImVec2 ( 0 . 0f , 0 . 0f ) ; <nl> CurrentLineHeight = PrevLineHeight = 0 . 0f ; <nl> - LogLineHeight = - 1 . 0f ; <nl> + LogLinePosY = - 1 . 0f ; <nl> TreeDepth = 0 ; <nl> LastItemID = 0 ; <nl> LastItemAabb = ImGuiAabb ( 0 . 0f , 0 . 0f , 0 . 0f , 0 . 0f ) ; <nl> static void LogText ( const ImVec2 & ref_pos , const char * text , const char * text_en <nl> if ( ! text_end ) <nl> text_end = FindTextDisplayEnd ( text , text_end ) ; <nl> <nl> - const bool log_new_line = ref_pos . y > window - > DC . LogLineHeight + 1 ; <nl> - window - > DC . LogLineHeight = ref_pos . y ; <nl> + const bool log_new_line = ref_pos . y > window - > DC . LogLinePosY + 1 ; <nl> + window - > DC . LogLinePosY = ref_pos . y ; <nl> <nl> const char * text_remaining = text ; <nl> if ( g . LogStartDepth > window - > DC . TreeDepth ) / / Re - adjust padding if we have popped out of our starting depth <nl> bool ImGui : : Begin ( const char * name , bool * p_opened , const ImVec2 & size , float bg <nl> window - > DC . CursorPos = window - > DC . CursorStartPos ; <nl> window - > DC . CursorPosPrevLine = window - > DC . CursorPos ; <nl> window - > DC . CurrentLineHeight = window - > DC . PrevLineHeight = 0 . 0f ; <nl> - window - > DC . LogLineHeight = window - > DC . CursorPos . y - 9999 . 0f ; <nl> + window - > DC . LogLinePosY = window - > DC . CursorPos . y - 9999 . 0f ; <nl> window - > DC . ChildWindows . resize ( 0 ) ; <nl> window - > DC . ItemWidth . resize ( 0 ) ; <nl> window - > DC . ItemWidth . push_back ( window - > ItemWidthDefault ) ; <nl> void ImGui : : ListBoxFooter ( ) <nl> ImGui : : EndChildFrame ( ) ; <nl> <nl> parent_window - > DC . CursorPos = bb . Min ; <nl> - ItemSize ( bb , NULL ) ; <nl> + ItemSize ( bb ) ; <nl> } <nl> <nl> bool ImGui : : ListBox ( const char * label , int * current_item , const char * * items , int items_count , int height_items ) <nl> static void ItemSize ( ImVec2 size , ImVec2 * adjust_vertical_offset ) <nl> window - > DC . CurrentLineHeight = 0 . 0f ; <nl> } <nl> <nl> - static inline void ItemSize ( const ImGuiAabb & bb , ImVec2 * adjust_start_offset ) <nl> + static inline void ItemSize ( const ImGuiAabb & bb ) <nl> { <nl> - ItemSize ( bb . GetSize ( ) , adjust_start_offset ) ; <nl> + ItemSize ( bb . GetSize ( ) ) ; <nl> } <nl> <nl> static bool IsClipped ( const ImGuiAabb & bb ) <nl> void ImGui : : ShowTestWindow ( bool * opened ) <nl> ImGui : : Text ( " World " ) ; <nl> <nl> / / Button <nl> + ImGui : : AlignFirstTextHeightToWidgets ( ) ; <nl> + ImGui : : Text ( " Normal buttons " ) ; <nl> + ImGui : : SameLine ( ) ; <nl> if ( ImGui : : Button ( " Banana " ) ) printf ( " Pressed ! \ n " ) ; <nl> ImGui : : SameLine ( ) ; <nl> ImGui : : Button ( " Apple " ) ; <nl>
Internal tweaks
ocornut/imgui
bbaf7e2eee484f356411ec5efb0a3855e3d8ccb0
2015-03-17T16:40:47Z
mmm a / deps <nl> ppp b / deps <nl> @ @ - 1 + 1 @ @ <nl> - Subproject commit 7201f2d8de3f956300fed2453776f85c82fdf035 <nl> + Subproject commit b853d61c877d2f4ed4700056f740502e82f64416 <nl>
DBG : update TitanEngine
x64dbg/x64dbg
3137310b68c30e1695163247ee1768d956c0456e
2017-10-23T22:48:17Z
mmm a / tensorflow / contrib / learn / python / learn / experiment . py <nl> ppp b / tensorflow / contrib / learn / python / learn / experiment . py <nl> def __init__ ( self , <nl> local_eval_frequency = None , <nl> eval_delay_secs = 120 , <nl> continuous_eval_throttle_secs = 60 , <nl> - min_eval_frequency = None , <nl> + min_eval_frequency = 1 , <nl> delay_workers_by_global_step = False , <nl> export_strategies = None , <nl> train_steps_per_iteration = None ) : <nl> def __init__ ( self , <nl> min_eval_frequency : ( applies only to train_and_evaluate ) . the minimum <nl> number of steps between evaluations . Of course , evaluation does not <nl> occur if no new snapshot is available , hence , this is the minimum . <nl> - If None , defaults to 1 , unless model_dir is on GCS , in which case the <nl> - default is 1000 . <nl> delay_workers_by_global_step : if ` True ` delays training workers <nl> based on global step instead of time . <nl> export_strategies : A list of ` ExportStrategy ` s , or a single one , or None . <nl> def __init__ ( self , <nl> self . _local_eval_frequency = local_eval_frequency <nl> self . _eval_delay_secs = eval_delay_secs <nl> self . _continuous_eval_throttle_secs = continuous_eval_throttle_secs <nl> - # Using 1 on a non - cached file system requires a lot of overhead to <nl> - # read the checkpoint state file . This is particular bad on GCS , so <nl> - # we use a different default . This is a temporary band - aid , to be <nl> - # fixed holistically later ( b / 36498507 ) . <nl> - default_min_eval_frequency = 1000 if _is_gcs ( estimator . model_dir ) else 1 <nl> - self . _min_eval_frequency = min_eval_frequency or default_min_eval_frequency <nl> + self . _min_eval_frequency = min_eval_frequency <nl> self . _delay_workers_by_global_step = delay_workers_by_global_step <nl> self . _train_monitors = train_monitors [ : ] if train_monitors else [ ] <nl> self . _eval_hooks = eval_hooks [ : ] if eval_hooks else [ ] <nl> def _new_attr_context ( obj , attr ) : <nl> yield <nl> finally : <nl> setattr ( obj , attr , saved ) <nl> - <nl> - <nl> - def _is_gcs ( model_dir ) : <nl> - return model_dir and model_dir . startswith ( " gs : / / " ) <nl> mmm a / tensorflow / contrib / learn / python / learn / experiment_test . py <nl> ppp b / tensorflow / contrib / learn / python / learn / experiment_test . py <nl> def _estimators_for_tests ( self , config = None , eval_dict = None ) : <nl> return [ TestEstimator ( config = config , eval_dict = eval_dict ) , <nl> TestCoreEstimator ( config = config , eval_dict = eval_dict ) ] <nl> <nl> - def test_eval_metrics_for_core_estimator ( self ) : <nl> + def test_eval_metrcis_for_core_estimator ( self ) : <nl> est = TestCoreEstimator ( ) <nl> with self . assertRaisesRegexp ( <nl> ValueError , ' ` eval_metrics ` must be ` None ` ' ) : <nl> def test_train_and_evaluate ( self ) : <nl> self . assertEqual ( [ noop_hook ] , est . eval_hooks ) <nl> self . assertTrue ( isinstance ( est . monitors [ 0 ] , monitors . ValidationMonitor ) ) <nl> <nl> - def test_min_eval_frequency_defaults ( self ) : <nl> - def dummy_model_fn ( features , labels ) : # pylint : disable = unused - argument <nl> - pass <nl> - <nl> - # The default value when model_dir is on GCS is 1000 <nl> - estimator = core_estimator . Estimator ( dummy_model_fn , ' gs : / / dummy_bucket ' ) <nl> - ex = experiment . Experiment ( <nl> - estimator , train_input_fn = None , eval_input_fn = None ) <nl> - self . assertEquals ( ex . _min_eval_frequency , 1000 ) <nl> - <nl> - # The default value when model_dir is not on GCS is 1 <nl> - estimator = core_estimator . Estimator ( dummy_model_fn , ' / tmp / dummy ' ) <nl> - ex = experiment . Experiment ( <nl> - estimator , train_input_fn = None , eval_input_fn = None ) <nl> - self . assertEquals ( ex . _min_eval_frequency , 1 ) <nl> - <nl> - # Make sure default not used when explicitly set <nl> - estimator = core_estimator . Estimator ( dummy_model_fn , ' gs : / / dummy_bucket ' ) <nl> - ex = experiment . Experiment ( <nl> - estimator , <nl> - min_eval_frequency = 123 , <nl> - train_input_fn = None , <nl> - eval_input_fn = None ) <nl> - self . assertEquals ( ex . _min_eval_frequency , 123 ) <nl> - <nl> def test_continuous_train_and_eval ( self ) : <nl> for est in self . _estimators_for_tests ( eval_dict = { ' global_step ' : 100 } ) : <nl> eval_metrics = ' eval_metrics ' if not isinstance ( <nl>
Automated rollback of change 152439984
tensorflow/tensorflow
d5d7a8f57d266eed9777cec8eaf65201de36dcc1
2017-04-07T00:57:42Z
mmm a / Code / CryEngine / CrySystem / OpenVR / OpenVRDevice . h <nl> ppp b / Code / CryEngine / CrySystem / OpenVR / OpenVRDevice . h <nl> class Device : public IOpenVRDevice , public : : CryVR : : IVRCmdListener , public ISys <nl> bool m_hmdTrackingDisabled ; <nl> float m_hmdQuadDistance ; <nl> float m_hmdQuadWidth ; <nl> - int m_hmdQuadAbsolute ; <nl> + int m_hmdQuadAbsolute ; <nl> } ; <nl> } / / namespace OpenVR <nl> } / / namespace CryVR <nl>
! XI ce / main_stabilisation - > ce / main @ 1383871 ( Approved by thomasw )
CRYTEK/CRYENGINE
e7516705d5e50f44745d26e0100a699c805d2197
2016-05-02T07:01:42Z
mmm a / src / core / lib / iomgr / ev_poll_posix . cc <nl> ppp b / src / core / lib / iomgr / ev_poll_posix . cc <nl> static grpc_error * pollset_work ( grpc_pollset * pollset , <nl> grpc_pollset_worker * * worker_hdl , <nl> grpc_millis deadline ) { <nl> GPR_TIMER_SCOPE ( " pollset_work " , 0 ) ; <nl> - <nl> grpc_pollset_worker worker ; <nl> if ( worker_hdl ) * worker_hdl = & worker ; <nl> grpc_error * error = GRPC_ERROR_NONE ; <nl> static grpc_error * pollset_work ( grpc_pollset * pollset , <nl> gpr_tls_set ( & g_current_thread_poller , ( intptr_t ) pollset ) ; <nl> while ( keep_polling ) { <nl> keep_polling = 0 ; <nl> - if ( ! pollset - > kicked_without_pollers ) { <nl> + if ( ! pollset - > kicked_without_pollers | | <nl> + deadline < = grpc_core : : ExecCtx : : Get ( ) - > Now ( ) ) { <nl> if ( ! added_worker ) { <nl> push_front_worker ( pollset , & worker ) ; <nl> added_worker = 1 ; <nl> mmm a / src / python / grpcio / grpc / _channel . py <nl> ppp b / src / python / grpcio / grpc / _channel . py <nl> def __init__ ( self , target , options , credentials ) : <nl> self . _call_state = _ChannelCallState ( self . _channel ) <nl> self . _connectivity_state = _ChannelConnectivityState ( self . _channel ) <nl> <nl> - # TODO ( https : / / github . com / grpc / grpc / issues / 9884 ) <nl> - # Temporary work around UNAVAILABLE issues <nl> - # Remove this once c - core has retry support <nl> - _subscribe ( self . _connectivity_state , lambda * args : None , None ) <nl> - <nl> def subscribe ( self , callback , try_to_connect = None ) : <nl> _subscribe ( self . _connectivity_state , callback , try_to_connect ) <nl> <nl> mmm a / src / python / grpcio_tests / tests / unit / _reconnect_test . py <nl> ppp b / src / python / grpcio_tests / tests / unit / _reconnect_test . py <nl> def test_reconnect ( self ) : <nl> multi_callable = channel . unary_unary ( _UNARY_UNARY ) <nl> self . assertEqual ( _RESPONSE , multi_callable ( _REQUEST ) ) <nl> server . stop ( None ) <nl> - time . sleep ( 1 ) <nl> + # By default , the channel connectivity is checked every 5s <nl> + # GRPC_CLIENT_CHANNEL_BACKUP_POLL_INTERVAL_MS can be set to change <nl> + # this . <nl> + time . sleep ( 5 . 1 ) <nl> server = grpc . server ( server_pool , ( handler , ) ) <nl> server . add_insecure_port ( ' [ : : ] : { } ' . format ( port ) ) <nl> server . start ( ) <nl>
Merge pull request from kpayson64 / remove_poller
grpc/grpc
b243732f3fe7392a1ae4ed36f18962415c56050d
2018-03-07T22:06:20Z
mmm a / atom / browser / api / atom_api_app . cc <nl> ppp b / atom / browser / api / atom_api_app . cc <nl> void App : : OnAccessibilitySupportChanged ( ) { <nl> } <nl> <nl> # if defined ( OS_MACOSX ) <nl> + void App : : OnWillContinueUserActivity ( <nl> + bool * prevent_default , <nl> + const std : : string & type ) { <nl> + * prevent_default = Emit ( " will - continue - activity " , type ) ; <nl> + } <nl> + void App : : OnDidFailToContinueUserActivity ( <nl> + const std : : string & type , <nl> + const std : : string & error ) { <nl> + Emit ( " continue - activity - error " , type , error ) ; <nl> + } <nl> void App : : OnContinueUserActivity ( <nl> bool * prevent_default , <nl> const std : : string & type , <nl> const base : : DictionaryValue & user_info ) { <nl> * prevent_default = Emit ( " continue - activity " , type , user_info ) ; <nl> } <nl> - <nl> + void App : : OnUserActivityWasContinued ( <nl> + const std : : string & type , <nl> + const base : : DictionaryValue & user_info ) { <nl> + Emit ( " activity - was - continued " , type , user_info ) ; <nl> + } <nl> + void App : : OnUpdateUserActivityState ( <nl> + const std : : string & type , <nl> + const base : : DictionaryValue & user_info ) { <nl> + Emit ( " update - activity - state " , type , user_info ) ; <nl> + } <nl> void App : : OnNewWindowForTab ( ) { <nl> Emit ( " new - window - for - tab " ) ; <nl> } <nl> - <nl> # endif <nl> <nl> void App : : OnLogin ( LoginHandler * login_handler , <nl> void App : : BuildPrototype ( <nl> base : : Bind ( & Browser : : SetUserActivity , browser ) ) <nl> . SetMethod ( " getCurrentActivityType " , <nl> base : : Bind ( & Browser : : GetCurrentActivityType , browser ) ) <nl> + . SetMethod ( " invalidateCurrentActivity " , <nl> + base : : Bind ( & Browser : : InvalidateCurrentActivity , browser ) ) <nl> + . SetMethod ( " updateCurrentActivity " , <nl> + base : : Bind ( & Browser : : UpdateCurrentActivity , browser ) ) <nl> . SetMethod ( " setAboutPanelOptions " , <nl> base : : Bind ( & Browser : : SetAboutPanelOptions , browser ) ) <nl> # endif <nl> mmm a / atom / browser / api / atom_api_app . h <nl> ppp b / atom / browser / api / atom_api_app . h <nl> class App : public AtomBrowserClient : : Delegate , <nl> const base : : DictionaryValue & request_details ) override ; <nl> void OnAccessibilitySupportChanged ( ) override ; <nl> # if defined ( OS_MACOSX ) <nl> + void OnWillContinueUserActivity ( <nl> + bool * prevent_default , <nl> + const std : : string & type ) override ; <nl> + void OnDidFailToContinueUserActivity ( <nl> + const std : : string & type , <nl> + const std : : string & error ) override ; <nl> void OnContinueUserActivity ( <nl> bool * prevent_default , <nl> const std : : string & type , <nl> const base : : DictionaryValue & user_info ) override ; <nl> - <nl> + void OnUserActivityWasContinued ( <nl> + const std : : string & type , <nl> + const base : : DictionaryValue & user_info ) override ; <nl> + void OnUpdateUserActivityState ( <nl> + const std : : string & type , <nl> + const base : : DictionaryValue & user_info ) override ; <nl> void OnNewWindowForTab ( ) override ; <nl> # endif <nl> <nl> mmm a / atom / browser / browser . h <nl> ppp b / atom / browser / browser . h <nl> class Browser : public WindowListObserver { <nl> / / Returns the type name of the current user activity . <nl> std : : string GetCurrentActivityType ( ) ; <nl> <nl> + / / Invalidates the current user activity . <nl> + void InvalidateCurrentActivity ( ) ; <nl> + <nl> + / / Updates the current user activity <nl> + void UpdateCurrentActivity ( const std : : string & type , <nl> + const base : : DictionaryValue & user_info ) ; <nl> + <nl> + / / Indicates that an user activity is about to be resumed . <nl> + bool WillContinueUserActivity ( const std : : string & type ) ; <nl> + <nl> + / / Indicates a failure to resume a Handoff activity . <nl> + void DidFailToContinueUserActivity ( const std : : string & type , <nl> + const std : : string & error ) ; <nl> + <nl> / / Resumes an activity via hand - off . <nl> bool ContinueUserActivity ( const std : : string & type , <nl> const base : : DictionaryValue & user_info ) ; <nl> <nl> + / / Indicates that an activity was continued on another device . <nl> + void UserActivityWasContinued ( const std : : string & type , <nl> + const base : : DictionaryValue & user_info ) ; <nl> + <nl> + / / Gives an oportunity to update the Handoff payload . <nl> + void UpdateUserActivityState ( const std : : string & type , <nl> + const base : : DictionaryValue & user_info ) ; <nl> + <nl> / / Bounce the dock icon . <nl> enum BounceType { <nl> BOUNCE_CRITICAL = 0 , <nl> mmm a / atom / browser / browser_mac . mm <nl> ppp b / atom / browser / browser_mac . mm <nl> <nl> return base : : SysNSStringToUTF8 ( userActivity . activityType ) ; <nl> } <nl> <nl> + void Browser : : InvalidateCurrentActivity ( ) { <nl> + [ [ AtomApplication sharedApplication ] invalidateCurrentActivity ] ; <nl> + } <nl> + <nl> + void Browser : : UpdateCurrentActivity ( const std : : string & type , <nl> + const base : : DictionaryValue & user_info ) { <nl> + [ [ AtomApplication sharedApplication ] <nl> + updateCurrentActivity : base : : SysUTF8ToNSString ( type ) <nl> + withUserInfo : DictionaryValueToNSDictionary ( user_info ) ] ; <nl> + } <nl> + <nl> + bool Browser : : WillContinueUserActivity ( const std : : string & type ) { <nl> + bool prevent_default = false ; <nl> + for ( BrowserObserver & observer : observers_ ) <nl> + observer . OnWillContinueUserActivity ( & prevent_default , type ) ; <nl> + return prevent_default ; <nl> + } <nl> + <nl> + void Browser : : DidFailToContinueUserActivity ( const std : : string & type , <nl> + const std : : string & error ) { <nl> + for ( BrowserObserver & observer : observers_ ) <nl> + observer . OnDidFailToContinueUserActivity ( type , error ) ; <nl> + } <nl> + <nl> bool Browser : : ContinueUserActivity ( const std : : string & type , <nl> const base : : DictionaryValue & user_info ) { <nl> bool prevent_default = false ; <nl> <nl> observer . OnContinueUserActivity ( & prevent_default , type , user_info ) ; <nl> return prevent_default ; <nl> } <nl> + <nl> + void Browser : : UserActivityWasContinued ( const std : : string & type , <nl> + const base : : DictionaryValue & user_info ) { <nl> + for ( BrowserObserver & observer : observers_ ) <nl> + observer . OnUserActivityWasContinued ( type , user_info ) ; <nl> + } <nl> + <nl> + void Browser : : UpdateUserActivityState ( const std : : string & type , <nl> + const base : : DictionaryValue & user_info ) { <nl> + for ( BrowserObserver & observer : observers_ ) <nl> + observer . OnUpdateUserActivityState ( type , user_info ) ; <nl> + } <nl> <nl> Browser : : LoginItemSettings Browser : : GetLoginItemSettings ( <nl> const LoginItemSettings & options ) { <nl> mmm a / atom / browser / browser_observer . h <nl> ppp b / atom / browser / browser_observer . h <nl> class BrowserObserver { <nl> virtual void OnAccessibilitySupportChanged ( ) { } <nl> <nl> # if defined ( OS_MACOSX ) <nl> + / / The browser wants to report that an user activity will resume . ( macOS only ) <nl> + virtual void OnWillContinueUserActivity ( <nl> + bool * prevent_default , <nl> + const std : : string & type ) { } <nl> + / / The browser wants to report an user activity resuming error . ( macOS only ) <nl> + virtual void OnDidFailToContinueUserActivity ( <nl> + const std : : string & type , <nl> + const std : : string & error ) { } <nl> / / The browser wants to resume a user activity via handoff . ( macOS only ) <nl> virtual void OnContinueUserActivity ( <nl> bool * prevent_default , <nl> const std : : string & type , <nl> const base : : DictionaryValue & user_info ) { } <nl> - <nl> + / / The browser wants to notify that an user activity was resumed . ( macOS only ) <nl> + virtual void OnUserActivityWasContinued ( <nl> + const std : : string & type , <nl> + const base : : DictionaryValue & user_info ) { } <nl> + / / The browser wants to update an user activity payload . ( macOS only ) <nl> + virtual void OnUpdateUserActivityState ( <nl> + const std : : string & type , <nl> + const base : : DictionaryValue & user_info ) { } <nl> / / User clicked the native macOS new tab button . ( macOS only ) <nl> virtual void OnNewWindowForTab ( ) { } <nl> # endif <nl> mmm a / atom / browser / mac / atom_application . h <nl> ppp b / atom / browser / mac / atom_application . h <nl> <nl> # import " base / mac / scoped_nsobject . h " <nl> <nl> @ interface AtomApplication : NSApplication < CrAppProtocol , <nl> - CrAppControlProtocol > { <nl> + CrAppControlProtocol , <nl> + NSUserActivityDelegate > { <nl> @ private <nl> BOOL handlingSendEvent_ ; <nl> base : : scoped_nsobject < NSUserActivity > currentActivity_ ; <nl> <nl> - ( void ) setCurrentActivity : ( NSString * ) type <nl> withUserInfo : ( NSDictionary * ) userInfo <nl> withWebpageURL : ( NSURL * ) webpageURL ; <nl> + - ( void ) invalidateCurrentActivity ; <nl> + - ( void ) updateCurrentActivity : ( NSString * ) type <nl> + withUserInfo : ( NSDictionary * ) userInfo ; <nl> <nl> @ end <nl> mmm a / atom / browser / mac / atom_application . mm <nl> ppp b / atom / browser / mac / atom_application . mm <nl> <nl> <nl> # import " atom / browser / mac / atom_application . h " <nl> <nl> + # include " atom / browser / mac / dict_util . h " <nl> # include " atom / browser / browser . h " <nl> # include " base / auto_reset . h " <nl> # include " base / strings / sys_string_conversions . h " <nl> - ( void ) setCurrentActivity : ( NSString * ) type <nl> [ [ NSUserActivity alloc ] initWithActivityType : type ] ) ; <nl> [ currentActivity_ setUserInfo : userInfo ] ; <nl> [ currentActivity_ setWebpageURL : webpageURL ] ; <nl> + [ currentActivity_ setDelegate : self ] ; <nl> [ currentActivity_ becomeCurrent ] ; <nl> } <nl> <nl> - ( NSUserActivity * ) getCurrentActivity { <nl> return currentActivity_ . get ( ) ; <nl> } <nl> <nl> + - ( void ) invalidateCurrentActivity { <nl> + if ( currentActivity_ . get ( ) ! = NULL ) { <nl> + [ currentActivity_ . get ( ) invalidate ] ; <nl> + currentActivity_ . reset ( ) ; <nl> + } <nl> + } <nl> + <nl> + - ( void ) updateCurrentActivity : ( NSString * ) type <nl> + withUserInfo : ( NSDictionary * ) userInfo { <nl> + if ( currentActivity_ . get ( ) ! = NULL ) { <nl> + [ currentActivity_ . get ( ) addUserInfoEntriesFromDictionary : userInfo ] ; <nl> + } <nl> + } <nl> + <nl> + - ( void ) updateUserActivityState : ( NSUserActivity * ) userActivity { <nl> + std : : string activity_type ( base : : SysNSStringToUTF8 ( userActivity . activityType ) ) ; <nl> + std : : unique_ptr < base : : DictionaryValue > user_info = <nl> + atom : : NSDictionaryToDictionaryValue ( userActivity . userInfo ) ; <nl> + <nl> + atom : : Browser * browser = atom : : Browser : : Get ( ) ; <nl> + browser - > UpdateUserActivityState ( activity_type , * user_info ) ; <nl> + <nl> + [ super updateUserActivityState : userActivity ] ; <nl> + } <nl> + <nl> + - ( void ) userActivityWasContinued : ( NSUserActivity * ) userActivity { <nl> + std : : string activity_type ( base : : SysNSStringToUTF8 ( userActivity . activityType ) ) ; <nl> + std : : unique_ptr < base : : DictionaryValue > user_info = <nl> + atom : : NSDictionaryToDictionaryValue ( userActivity . userInfo ) ; <nl> + <nl> + atom : : Browser * browser = atom : : Browser : : Get ( ) ; <nl> + <nl> + browser - > UserActivityWasContinued ( activity_type , * user_info ) ; <nl> + [ userActivity setNeedsSave : YES ] ; <nl> + } <nl> + <nl> - ( void ) awakeFromNib { <nl> [ [ NSAppleEventManager sharedAppleEventManager ] <nl> setEventHandler : self <nl> mmm a / atom / browser / mac / atom_application_delegate . mm <nl> ppp b / atom / browser / mac / atom_application_delegate . mm <nl> - ( BOOL ) application : ( NSApplication * ) sender <nl> return browser - > ContinueUserActivity ( activity_type , * user_info ) ? YES : NO ; <nl> } <nl> <nl> + - ( BOOL ) application : ( NSApplication * ) application willContinueUserActivityWithType : ( NSString * ) userActivityType { <nl> + std : : string activity_type ( base : : SysNSStringToUTF8 ( userActivityType ) ) ; <nl> + <nl> + atom : : Browser * browser = atom : : Browser : : Get ( ) ; <nl> + return browser - > WillContinueUserActivity ( activity_type ) ? YES : NO ; <nl> + } <nl> + <nl> + - ( void ) application : ( NSApplication * ) application didFailToContinueUserActivityWithType : ( NSString * ) userActivityType error : ( NSError * ) error { <nl> + std : : string activity_type ( base : : SysNSStringToUTF8 ( userActivityType ) ) ; <nl> + std : : string error_message ( base : : SysNSStringToUTF8 ( [ error localizedDescription ] ) ) ; <nl> + <nl> + atom : : Browser * browser = atom : : Browser : : Get ( ) ; <nl> + browser - > DidFailToContinueUserActivity ( activity_type , error_message ) ; <nl> + } <nl> + <nl> - ( IBAction ) newWindowForTab : ( id ) sender { <nl> atom : : Browser : : Get ( ) - > NewWindowForTab ( ) ; <nl> } <nl> mmm a / docs / api / app . md <nl> ppp b / docs / api / app . md <nl> ID as the activity ' s source app and that supports the activity ' s type . <nl> Supported activity types are specified in the app ' s ` Info . plist ` under the <nl> ` NSUserActivityTypes ` key . <nl> <nl> + # # # Event : ' will - continue - activity ' _macOS_ <nl> + <nl> + Returns : <nl> + <nl> + * ` event ` Event <nl> + * ` type ` String - A string identifying the activity . Maps to <nl> + [ ` NSUserActivity . activityType ` ] [ activity - type ] . <nl> + <nl> + Emitted during [ Handoff ] [ handoff ] before an activity from a different device wants <nl> + to be resumed . You should call ` event . preventDefault ( ) ` if you want to handle <nl> + this event . <nl> + <nl> + # # # Event : ' continue - activity - error ' _macOS_ <nl> + <nl> + Returns : <nl> + <nl> + * ` event ` Event <nl> + * ` type ` String - A string identifying the activity . Maps to <nl> + [ ` NSUserActivity . activityType ` ] [ activity - type ] . <nl> + * ` error ` String - A string with the error ' s localized description . <nl> + <nl> + Emitted during [ Handoff ] [ handoff ] when an activity from a different device <nl> + fails to be resumed . <nl> + <nl> + # # # Event : ' activity - was - continued ' _macOS_ <nl> + <nl> + Returns : <nl> + <nl> + * ` event ` Event <nl> + * ` type ` String - A string identifying the activity . Maps to <nl> + [ ` NSUserActivity . activityType ` ] [ activity - type ] . <nl> + * ` userInfo ` Object - Contains app - specific state stored by the activity . <nl> + <nl> + Emitted during [ Handoff ] [ handoff ] after an activity from this device was successfully <nl> + resumed . <nl> + <nl> + # # # Event : ' update - activity - state ' _macOS_ <nl> + <nl> + Returns : <nl> + <nl> + * ` event ` Event <nl> + * ` type ` String - A string identifying the activity . Maps to <nl> + [ ` NSUserActivity . activityType ` ] [ activity - type ] . <nl> + * ` userInfo ` Object - Contains app - specific state stored by the activity . <nl> + <nl> + Emitted during [ Handoff ] [ handoff ] when its user info should be updated before resuming . <nl> + <nl> # # # Event : ' new - window - for - tab ' _macOS_ <nl> <nl> Returns : <nl> is eligible for [ Handoff ] [ handoff ] to another device afterward . <nl> <nl> Returns ` String ` - The type of the currently running activity . <nl> <nl> + # # # ` app . invalidateCurrentActivity ( ) ` _macOS_ <nl> + <nl> + * ` type ` String - Uniquely identifies the activity . Maps to <nl> + [ ` NSUserActivity . activityType ` ] [ activity - type ] . <nl> + * ` userInfo ` Object - App - specific state to store for use by another device . <nl> + * ` webpageURL ` String ( optional ) - The webpage to load in a browser if no suitable app is <nl> + installed on the resuming device . The scheme must be ` http ` or ` https ` . <nl> + <nl> + Invalidates de current Handoff user activity . <nl> + <nl> + # # # ` app . updateCurrentActivity ( type , userInfo [ , webpageURL ] ) ` _macOS_ <nl> + <nl> + * ` type ` String - Uniquely identifies the activity . Maps to <nl> + [ ` NSUserActivity . activityType ` ] [ activity - type ] . <nl> + * ` userInfo ` Object - App - specific state to store for use by another device . <nl> + <nl> + Updates the current ` NSUserActivity ` if its type matches ` type ` , merging the entries from <nl> + ` userInfo ` into its current userInfo dictionary . <nl> + <nl> # # # ` app . setAppUserModelId ( id ) ` _Windows_ <nl> <nl> * ` id ` String <nl>
Exposes more Handoff related APIs to Electron .
electron/electron
a870799c32e5d3c61ba0602569a255feb36cef3f
2017-09-14T06:59:43Z
mmm a / src / types . cc <nl> ppp b / src / types . cc <nl> int Type : : GlbBitset ( ) { <nl> / / Check this < = that . <nl> bool Type : : SlowIs ( Type * that ) { <nl> / / Fast path for bitsets . <nl> - if ( this - > is_none ( ) ) return true ; <nl> if ( that - > is_bitset ( ) ) { <nl> return ( this - > LubBitset ( ) | that - > as_bitset ( ) ) = = that - > as_bitset ( ) ; <nl> } <nl> void Type : : TypePrint ( FILE * out ) { <nl> } <nl> PrintF ( out , " } " ) ; <nl> } else if ( is_constant ( ) ) { <nl> - PrintF ( out , " Constant ( % p : " , static_cast < void * > ( * as_constant ( ) ) ) ; <nl> - from_bitset ( LubBitset ( ) ) - > TypePrint ( out ) ; <nl> - PrintF ( " ) " ) ; <nl> + PrintF ( out , " Constant ( % p ) " , static_cast < void * > ( * as_constant ( ) ) ) ; <nl> } else if ( is_class ( ) ) { <nl> - PrintF ( out , " Class ( % p < " , static_cast < void * > ( * as_class ( ) ) ) ; <nl> - from_bitset ( LubBitset ( ) ) - > TypePrint ( out ) ; <nl> - PrintF ( " ) " ) ; <nl> + PrintF ( out , " Class ( % p ) " , static_cast < void * > ( * as_class ( ) ) ) ; <nl> } else if ( is_union ( ) ) { <nl> PrintF ( out , " { " ) ; <nl> Handle < Unioned > unioned = as_union ( ) ; <nl> mmm a / src / types . h <nl> ppp b / src / types . h <nl> class Type : public Object { <nl> kUnusedEOL = 0 <nl> } ; <nl> <nl> - bool is_none ( ) { return this = = None ( ) ; } <nl> bool is_bitset ( ) { return this - > IsSmi ( ) ; } <nl> bool is_class ( ) { return this - > IsMap ( ) ; } <nl> bool is_constant ( ) { return this - > IsBox ( ) ; } <nl> struct Bounds { <nl> Handle < Type > upper ; <nl> <nl> Bounds ( ) { } <nl> - Bounds ( Handle < Type > l , Handle < Type > u ) : lower ( l ) , upper ( u ) { <nl> - ASSERT ( lower - > Is ( upper ) ) ; <nl> - } <nl> - Bounds ( Type * l , Type * u , Isolate * isl ) : lower ( l , isl ) , upper ( u , isl ) { <nl> - ASSERT ( lower - > Is ( upper ) ) ; <nl> - } <nl> - explicit Bounds ( Handle < Type > t ) : lower ( t ) , upper ( t ) { <nl> - ASSERT ( lower - > Is ( upper ) ) ; <nl> - } <nl> - Bounds ( Type * t , Isolate * isl ) : lower ( t , isl ) , upper ( t , isl ) { <nl> - ASSERT ( lower - > Is ( upper ) ) ; <nl> - } <nl> + Bounds ( Handle < Type > l , Handle < Type > u ) : lower ( l ) , upper ( u ) { } <nl> + Bounds ( Type * l , Type * u , Isolate * isl ) : lower ( l , isl ) , upper ( u , isl ) { } <nl> + explicit Bounds ( Handle < Type > t ) : lower ( t ) , upper ( t ) { } <nl> + Bounds ( Type * t , Isolate * isl ) : lower ( t , isl ) , upper ( t , isl ) { } <nl> <nl> / / Unrestricted bounds . <nl> static Bounds Unbounded ( Isolate * isl ) { <nl> struct Bounds { <nl> <nl> / / Meet : both b1 and b2 are known to hold . <nl> static Bounds Both ( Bounds b1 , Bounds b2 , Isolate * isl ) { <nl> - Handle < Type > lower ( Type : : Union ( b1 . lower , b2 . lower ) , isl ) ; <nl> - Handle < Type > upper ( Type : : Intersect ( b1 . upper , b2 . upper ) , isl ) ; <nl> - / / Lower bounds are considered approximate , correct as necessary . <nl> - lower = handle ( Type : : Intersect ( lower , upper ) , isl ) ; <nl> - return Bounds ( lower , upper ) ; <nl> + return Bounds ( <nl> + handle ( Type : : Union ( b1 . lower , b2 . lower ) , isl ) , <nl> + handle ( Type : : Intersect ( b1 . upper , b2 . upper ) , isl ) ) ; <nl> } <nl> <nl> / / Join : either b1 or b2 is known to hold . <nl> struct Bounds { <nl> } <nl> <nl> static Bounds NarrowLower ( Bounds b , Handle < Type > t , Isolate * isl ) { <nl> - / / Lower bounds are considered approximate , correct as necessary . <nl> - t = handle ( Type : : Intersect ( t , b . upper ) , isl ) ; <nl> return Bounds ( handle ( Type : : Union ( b . lower , t ) , isl ) , b . upper ) ; <nl> } <nl> static Bounds NarrowUpper ( Bounds b , Handle < Type > t , Isolate * isl ) { <nl> - return Bounds ( <nl> - handle ( Type : : Intersect ( b . lower , t ) , isl ) , <nl> - handle ( Type : : Intersect ( b . upper , t ) , isl ) ) ; <nl> + return Bounds ( b . lower , handle ( Type : : Intersect ( b . upper , t ) , isl ) ) ; <nl> } <nl> } ; <nl> <nl> mmm a / src / typing . cc <nl> ppp b / src / typing . cc <nl> void AstTyper : : VisitForStatement ( ForStatement * stmt ) { <nl> RECURSE ( Visit ( stmt - > cond ( ) ) ) ; <nl> } <nl> RECURSE ( Visit ( stmt - > body ( ) ) ) ; <nl> + store_ . Forget ( ) ; / / Control may transfer here via ' continue ' . <nl> if ( stmt - > next ( ) ! = NULL ) { <nl> - store_ . Forget ( ) ; / / Control may transfer here via ' continue ' . <nl> RECURSE ( Visit ( stmt - > next ( ) ) ) ; <nl> } <nl> store_ . Forget ( ) ; / / Control may transfer here via termination or ' break ' . <nl> void AstTyper : : VisitBinaryOperation ( BinaryOperation * expr ) { <nl> Type * upper = Type : : Union ( <nl> expr - > left ( ) - > bounds ( ) . upper , expr - > right ( ) - > bounds ( ) . upper ) ; <nl> if ( ! upper - > Is ( Type : : Signed32 ( ) ) ) upper = Type : : Signed32 ( ) ; <nl> - Type * lower = Type : : Intersect ( <nl> - handle ( Type : : Smi ( ) , isolate_ ) , handle ( upper , isolate_ ) ) ; <nl> - NarrowType ( expr , Bounds ( lower , upper , isolate_ ) ) ; <nl> + NarrowType ( expr , Bounds ( Type : : Smi ( ) , upper , isolate_ ) ) ; <nl> break ; <nl> } <nl> case Token : : BIT_XOR : <nl> void AstTyper : : VisitBinaryOperation ( BinaryOperation * expr ) { <nl> case Token : : SHR : <nl> RECURSE ( Visit ( expr - > left ( ) ) ) ; <nl> RECURSE ( Visit ( expr - > right ( ) ) ) ; <nl> - / / TODO ( rossberg ) : we could use an UnsignedSmi as lower bound here . . . <nl> - NarrowType ( expr , Bounds ( Type : : Unsigned32 ( ) , isolate_ ) ) ; <nl> + NarrowType ( expr , Bounds ( Type : : Smi ( ) , Type : : Unsigned32 ( ) , isolate_ ) ) ; <nl> break ; <nl> case Token : : ADD : { <nl> RECURSE ( Visit ( expr - > left ( ) ) ) ; <nl> void AstTyper : : VisitBinaryOperation ( BinaryOperation * expr ) { <nl> Bounds l = expr - > left ( ) - > bounds ( ) ; <nl> Bounds r = expr - > right ( ) - > bounds ( ) ; <nl> Type * lower = <nl> - l . lower - > Is ( Type : : None ( ) ) | | r . lower - > Is ( Type : : None ( ) ) ? <nl> - Type : : None ( ) : <nl> - l . lower - > Is ( Type : : String ( ) ) | | r . lower - > Is ( Type : : String ( ) ) ? <nl> - Type : : String ( ) : <nl> l . lower - > Is ( Type : : Number ( ) ) & & r . lower - > Is ( Type : : Number ( ) ) ? <nl> - Type : : Smi ( ) : Type : : None ( ) ; <nl> + Type : : Smi ( ) : <nl> + l . lower - > Is ( Type : : String ( ) ) | | r . lower - > Is ( Type : : String ( ) ) ? <nl> + Type : : String ( ) : Type : : None ( ) ; <nl> Type * upper = <nl> - l . upper - > Is ( Type : : String ( ) ) | | r . upper - > Is ( Type : : String ( ) ) ? <nl> - Type : : String ( ) : <nl> l . upper - > Is ( Type : : Number ( ) ) & & r . upper - > Is ( Type : : Number ( ) ) ? <nl> - Type : : Number ( ) : Type : : NumberOrString ( ) ; <nl> + Type : : Number ( ) : <nl> + l . upper - > Is ( Type : : String ( ) ) | | r . upper - > Is ( Type : : String ( ) ) ? <nl> + Type : : String ( ) : Type : : NumberOrString ( ) ; <nl> NarrowType ( expr , Bounds ( lower , upper , isolate_ ) ) ; <nl> break ; <nl> } <nl> mmm a / test / cctest / test - types . cc <nl> ppp b / test / cctest / test - types . cc <nl> TEST ( Is ) { <nl> CheckUnordered ( T . Array , T . Function ) ; <nl> <nl> / / Structured subtyping <nl> - CheckSub ( T . None , T . ObjectClass ) ; <nl> - CheckSub ( T . None , T . ObjectConstant1 ) ; <nl> - CheckSub ( T . ObjectClass , T . Any ) ; <nl> - CheckSub ( T . ObjectConstant1 , T . Any ) ; <nl> - <nl> CheckSub ( T . ObjectClass , T . Object ) ; <nl> CheckSub ( T . ArrayClass , T . Object ) ; <nl> CheckUnordered ( T . ObjectClass , T . ArrayClass ) ; <nl> TEST ( Maybe ) { <nl> CheckDisjoint ( T . Object , T . Proxy ) ; <nl> CheckDisjoint ( T . Array , T . Function ) ; <nl> <nl> - CheckOverlap ( T . ObjectClass , T . Any ) ; <nl> - CheckOverlap ( T . ObjectConstant1 , T . Any ) ; <nl> - <nl> CheckOverlap ( T . ObjectClass , T . Object ) ; <nl> CheckOverlap ( T . ArrayClass , T . Object ) ; <nl> CheckOverlap ( T . ObjectClass , T . ObjectClass ) ; <nl> TEST ( Union ) { <nl> CHECK ( IsUnion ( Type : : Union ( T . ObjectClass , T . ArrayClass ) ) ) ; <nl> <nl> CheckEqual ( T . Union ( T . ObjectClass , T . ObjectClass ) , T . ObjectClass ) ; <nl> - CheckSub ( T . None , T . Union ( T . ObjectClass , T . ArrayClass ) ) ; <nl> - CheckSub ( T . Union ( T . ObjectClass , T . ArrayClass ) , T . Any ) ; <nl> CheckSub ( T . ObjectClass , T . Union ( T . ObjectClass , T . ArrayClass ) ) ; <nl> CheckSub ( T . ArrayClass , T . Union ( T . ObjectClass , T . ArrayClass ) ) ; <nl> CheckSub ( T . Union ( T . ObjectClass , T . ArrayClass ) , T . Object ) ; <nl> TEST ( Union ) { <nl> CheckEqual ( T . Union ( T . ObjectConstant1 , T . ObjectConstant1 ) , T . ObjectConstant1 ) ; <nl> CheckEqual ( T . Union ( T . ArrayConstant1 , T . ArrayConstant1 ) , T . ArrayConstant1 ) ; <nl> CheckEqual ( T . Union ( T . ArrayConstant1 , T . ArrayConstant1 ) , T . ArrayConstant2 ) ; <nl> - CheckSub ( T . None , T . Union ( T . ObjectConstant1 , T . ObjectConstant2 ) ) ; <nl> - CheckSub ( T . Union ( T . ObjectConstant1 , T . ObjectConstant2 ) , T . Any ) ; <nl> CheckSub ( T . ObjectConstant1 , T . Union ( T . ObjectConstant1 , T . ObjectConstant2 ) ) ; <nl> CheckSub ( T . ObjectConstant2 , T . Union ( T . ObjectConstant1 , T . ObjectConstant2 ) ) ; <nl> CheckSub ( T . ArrayConstant2 , T . Union ( T . ArrayConstant1 , T . ObjectConstant2 ) ) ; <nl> TEST ( Union ) { <nl> CHECK ( IsUnion ( Type : : Union ( T . ObjectClass , T . Number ) ) ) ; <nl> <nl> CheckEqual ( T . Union ( T . ObjectClass , T . Object ) , T . Object ) ; <nl> - CheckSub ( T . None , T . Union ( T . ObjectClass , T . Number ) ) ; <nl> CheckSub ( T . Union ( T . ObjectClass , T . Number ) , T . Any ) ; <nl> CheckSub ( T . Union ( T . ObjectClass , T . Smi ) , T . Union ( T . Object , T . Number ) ) ; <nl> CheckSub ( T . Union ( T . ObjectClass , T . Array ) , T . Object ) ; <nl> TEST ( Union ) { <nl> <nl> CheckEqual ( T . Union ( T . SmiConstant , T . Number ) , T . Number ) ; <nl> CheckEqual ( T . Union ( T . ObjectConstant1 , T . Object ) , T . Object ) ; <nl> - CheckSub ( T . None , T . Union ( T . ObjectConstant1 , T . Number ) ) ; <nl> CheckSub ( T . Union ( T . ObjectConstant1 , T . Number ) , T . Any ) ; <nl> CheckSub ( T . Union ( T . ObjectConstant1 , T . Signed32 ) , T . Union ( T . Object , T . Number ) ) ; <nl> CheckSub ( T . Union ( T . ObjectConstant1 , T . Array ) , T . Object ) ; <nl> TEST ( Union ) { <nl> CHECK ( IsUnion ( Type : : Union ( T . ObjectConstant1 , T . ObjectClass ) ) ) ; <nl> CHECK ( IsUnion ( Type : : Union ( T . ArrayClass , T . ObjectConstant2 ) ) ) ; <nl> <nl> - CheckSub ( T . None , T . Union ( T . ObjectConstant1 , T . ArrayClass ) ) ; <nl> - CheckSub ( T . Union ( T . ObjectConstant1 , T . ArrayClass ) , T . Any ) ; <nl> CheckSub ( T . Union ( T . ObjectConstant1 , T . ArrayClass ) , T . Object ) ; <nl> CheckSub ( T . ObjectConstant1 , T . Union ( T . ObjectConstant1 , T . ArrayClass ) ) ; <nl> CheckSub ( T . ArrayClass , T . Union ( T . ObjectConstant1 , T . ArrayClass ) ) ; <nl> TEST ( Union ) { <nl> CheckSub ( <nl> T . ObjectConstant1 , <nl> T . Union ( T . Union ( T . ArrayClass , T . ObjectConstant1 ) , T . Double ) ) ; <nl> - CheckSub ( <nl> - T . None , <nl> - T . Union ( T . Union ( T . ArrayClass , T . ObjectConstant1 ) , T . Double ) ) ; <nl> CheckSub ( <nl> T . Union ( T . Union ( T . ArrayClass , T . ObjectConstant1 ) , T . Double ) , <nl> T . Any ) ; <nl> TEST ( Union ) { <nl> CheckEqual ( <nl> T . Union ( T . ObjectClass , T . Union ( T . ObjectConstant1 , T . ObjectClass ) ) , <nl> T . Union ( T . ObjectClass , T . ObjectConstant1 ) ) ; <nl> - CheckSub ( <nl> - T . None , <nl> - T . Union ( T . ObjectClass , T . Union ( T . ObjectConstant1 , T . ObjectClass ) ) ) ; <nl> - CheckSub ( <nl> - T . Union ( T . ObjectClass , T . Union ( T . ObjectConstant1 , T . ObjectClass ) ) , <nl> - T . Any ) ; <nl> CheckSub ( <nl> T . Union ( T . ObjectClass , T . Union ( T . ObjectConstant1 , T . ObjectClass ) ) , <nl> T . Object ) ; <nl>
Revert 17167 : " Ensure lower < = upper bound "
v8/v8
f55fc759dc691dc97b2ef227947f8e4ecb6565e7
2013-10-11T16:41:34Z
mmm a / tensorflow / python / keras / layers / convolutional_test . py <nl> ppp b / tensorflow / python / keras / layers / convolutional_test . py <nl> def test_conv3dtranspose_constraints ( self ) : <nl> def test_conv3dtranspose_dynamic_shape ( self ) : <nl> with self . session ( use_gpu = True ) : <nl> # Won ' t raise error here . <nl> - layer = keras . layers . Conv3DTranspose ( 3 , 3 , data_format = ' channels_last ' ) <nl> - layer . build ( ( None , None , None , None , 1 ) ) <nl> - layer1 = keras . layers . Conv3DTranspose ( 3 , 3 , data_format = ' channels_first ' ) <nl> - layer1 . build ( ( None , 1 , None , None , None ) ) <nl> + testing_utils . layer_test ( <nl> + keras . layers . Conv3DTranspose , <nl> + kwargs = { ' data_format ' : ' channels_first ' , <nl> + ' filters ' : 3 , ' kernel_size ' : 3 } , <nl> + input_shape = ( None , 1 , None , None , None ) ) <nl> + testing_utils . layer_test ( <nl> + keras . layers . Conv3DTranspose , <nl> + kwargs = { ' data_format ' : ' channels_last ' , <nl> + ' filters ' : 3 , ' kernel_size ' : 3 } , <nl> + input_shape = ( None , None , None , None , 1 ) ) <nl> <nl> <nl> class SeparableConv1DTest ( test . TestCase ) : <nl> def test_conv3d_constraints ( self ) : <nl> def test_conv3d_dynamic_shape ( self ) : <nl> with self . session ( use_gpu = True ) : <nl> # Won ' t raise error here . <nl> - layer = keras . layers . Conv3D ( 3 , 3 , data_format = ' channels_last ' ) <nl> - layer . build ( ( None , None , None , None , 1 ) ) <nl> - layer1 = keras . layers . Conv3D ( 3 , 3 , data_format = ' channels_first ' ) <nl> - layer1 . build ( ( None , 1 , None , None , None ) ) <nl> + testing_utils . layer_test ( <nl> + keras . layers . Conv3D , <nl> + kwargs = { ' data_format ' : ' channels_first ' , <nl> + ' filters ' : 3 , ' kernel_size ' : 3 } , <nl> + input_shape = ( None , 1 , None , None , None ) ) <nl> + testing_utils . layer_test ( <nl> + keras . layers . Conv3D , <nl> + kwargs = { ' data_format ' : ' channels_last ' , <nl> + ' filters ' : 3 , ' kernel_size ' : 3 } , <nl> + input_shape = ( None , None , None , None , 1 ) ) <nl> <nl> <nl> class ZeroPaddingTest ( test . TestCase ) : <nl>
TST : use testing_utils . layer_test instead
tensorflow/tensorflow
65344d0a7ebd21c71b3f3ed7cb091541504b659a
2018-11-01T02:03:24Z
similarity index 93 % <nl> rename from test / SILOptimizer / globalredundantloadelimination . sil <nl> rename to test / SILOptimizer / redundant_load_elim_with_casts . sil <nl> mmm a / test / SILOptimizer / globalredundantloadelimination . sil <nl> ppp b / test / SILOptimizer / redundant_load_elim_with_casts . sil <nl> <nl> - / / RUN : % target - sil - opt - enable - sil - verify - all % s - module - name Swift - redundant - load - elim <nl> - / / FIXME : This test is not FileCheck ' d <nl> + / / RUN : % target - sil - opt - enable - sil - verify - all % s - module - name Swift - redundant - load - elim | FileCheck - check - prefix = CHECK - FUTURE % s <nl> + / / <nl> + / / FIXME : Contains tests which are handled by old RLE , but not current one . Mostly due to casting . Eventually we probably should <nl> + / / handle these cases if they turn out to be important . <nl> + / / <nl> + / / The problem is the current RLE uses type projection tree / path to model fields in an object . This makes it difficult for it to <nl> + / / reason about casts , i . e . 1 memory with different types . <nl> + / / <nl> + / / Tracked by rdar : / / 23023366 <nl> <nl> import Builtin <nl> <nl> struct Wrapper { <nl> var value : Builtin . Int32 <nl> } <nl> <nl> - / / CHECK - LABEL : sil @ tbaa_class_alias_nonclass <nl> + / / CHECK - FUTURE : sil @ tbaa_class_alias_nonclass <nl> / / CHECK : strong_retain [ [ RET : % [ 0 - 9 ] + ] ] <nl> / / CHECK : strong_retain [ [ RET ] ] <nl> / / CHECK : return <nl> bb0 ( % 0 : $ B , % 1 : $ * Agg1 ) : <nl> } <nl> <nl> / / FIXME : When RLE uses TBAA it should remove the second load . <nl> - / / CHECK - LABEL : sil @ tbaa_struct <nl> + / / CHECK - FUTURE : sil @ tbaa_struct <nl> / / CHECK : load <nl> / / CHECK : store <nl> / / CHECK : load <nl> bb0 ( % 0 : $ Builtin . RawPointer , % 1 : $ A2 ) : <nl> } <nl> <nl> / / Even with TBAA , RLE should not remove the second load . <nl> - / / CHECK - LABEL : sil @ tbaa_bind_memory <nl> + / / CHECK - FUTURE : sil @ tbaa_bind_memory <nl> / / CHECK : load <nl> / / CHECK : bind_memory <nl> / / CHECK : store <nl> bb0 ( % 0 : $ Builtin . RawPointer , % 1 : $ A2 ) : <nl> } <nl> <nl> / / * NOTE * This does not handle raw pointer since raw pointer is only layout compatible with heap references . <nl> - / / CHECK - LABEL : sil @ store_to_load_forward_unchecked_addr_cast_struct : $ @ convention ( thin ) ( Optional < A > ) - > ( ) { <nl> + / / CHECK - FUTURE : sil @ store_to_load_forward_unchecked_addr_cast_struct : $ @ convention ( thin ) ( Optional < A > ) - > ( ) { <nl> / / CHECK : bb0 ( [ [ INPUT : % [ 0 - 9 ] + ] ] <nl> / / CHECK - NEXT : [ [ LOCAL : % [ 0 - 9 ] + ] ] = alloc_stack <nl> / / CHECK : unchecked_trivial_bit_cast [ [ INPUT ] ] : $ Optional < A > to $ Builtin . Int32 <nl> struct IntPtr { <nl> / / source type is known to be greater or equal to the size of the <nl> / / destination type . <nl> / / <nl> - / / CHECK - LABEL : sil @ store_to_load_forward_unchecked_addr_cast_nopromote : $ @ convention ( thin ) ( @ inout IntPtr ) - > ( ) { <nl> + / / CHECK - FUTURE : sil @ store_to_load_forward_unchecked_addr_cast_nopromote : $ @ convention ( thin ) ( @ inout IntPtr ) - > ( ) { <nl> / / CHECK : bb0 ( [ [ INPUT : % [ 0 - 9 ] + ] ] : $ * IntPtr ) <nl> / / CHECK - NEXT : [ [ LOCAL : % [ 0 - 9 ] + ] ] = alloc_stack <nl> / / CHECK : [ [ CAST : % [ 0 - 9 ] + ] ] = unchecked_addr_cast [ [ INPUT ] ] : $ * IntPtr to $ * Builtin . Int32 <nl> bb0 ( % 0 : $ * IntPtr ) : <nl> / / compatible with heap references , but does not have reference <nl> / / semantics b / c it is a trivial type . We currently do not handle such a case . <nl> <nl> - / / CHECK - LABEL : sil @ store_to_load_forward_unchecked_addr_cast_class : $ @ convention ( thin ) ( Optional < B > ) - > ( ) { <nl> + / / CHECK - FUTURE : sil @ store_to_load_forward_unchecked_addr_cast_class : $ @ convention ( thin ) ( Optional < B > ) - > ( ) { <nl> / / CHECK : bb0 ( [ [ INPUT : % [ 0 - 9 ] + ] ] <nl> / / CHECK - NEXT : [ [ LOCAL : % [ 0 - 9 ] + ] ] = alloc_stack <nl> / / CHECK : unchecked_trivial_bit_cast [ [ INPUT ] ] : $ Optional < B > to $ Builtin . Int32 <nl> bb0 ( % 0 : $ Optional < B > ) : <nl> } <nl> <nl> / / * NOTE * This does not handle raw pointer since raw pointer is only layout compatible with heap references . <nl> - / / CHECK - LABEL : sil @ load_to_load_forward_unchecked_addr_cast_struct : $ @ convention ( thin ) ( @ inout Optional < A > ) - > ( ) { <nl> + / / CHECK - FUTURE : sil @ load_to_load_forward_unchecked_addr_cast_struct : $ @ convention ( thin ) ( @ inout Optional < A > ) - > ( ) { <nl> / / CHECK : bb0 ( <nl> <nl> / / CHECK : unchecked_trivial_bit_cast { { % [ 0 - 9 ] + } } : $ Optional < A > to $ Builtin . Int32 <nl> bb0 ( % 0 : $ * Optional < A > ) : <nl> / / compatible with heap references , but does not have reference <nl> / / semantics b / c it is a trivial type . We currently do not handle such a case . <nl> <nl> - / / CHECK - LABEL : sil @ load_to_load_forward_unchecked_addr_cast_class : $ @ convention ( thin ) ( @ inout Optional < B > ) - > ( ) { <nl> + / / CHECK - FUTURE : sil @ load_to_load_forward_unchecked_addr_cast_class : $ @ convention ( thin ) ( @ inout Optional < B > ) - > ( ) { <nl> / / CHECK : bb0 ( { { % [ 0 - 9 ] + } } : $ * Optional < B > ) : <nl> / / CHECK : unchecked_trivial_bit_cast { { % [ 0 - 9 ] + } } : $ Optional < B > to $ Builtin . Int32 <nl> / / CHECK : unchecked_ref_bit_cast { { % [ 0 - 9 ] + } } : $ Optional < B > to $ B <nl> bb0 ( % 0 : $ * Optional < B > ) : <nl> } <nl> <nl> / / Don ' t bitcast differently sized structs . <nl> - / / CHECK - LABEL : sil @ store_to_load_forward_unchecked_addr_cast_different_sized_struct <nl> + / / CHECK - FUTURE : sil @ store_to_load_forward_unchecked_addr_cast_different_sized_struct <nl> / / CHECK - NOT : unchecked_trivial_bit_cast <nl> / / CHECK : return <nl> sil @ store_to_load_forward_unchecked_addr_cast_different_sized_struct : $ @ convention ( thin ) ( C ) - > ( ) { <nl> bb0 ( % 0 : $ C ) : <nl> <nl> <nl> / / / Make sure that we don ' t crash and don ' t optimize here . <nl> - / / CHECK - LABEL : sil @ covering_store_with_unchecked_addr : $ @ convention ( thin ) ( C , C ) - > ( ) { <nl> + / / CHECK - FUTURE : sil @ covering_store_with_unchecked_addr : $ @ convention ( thin ) ( C , C ) - > ( ) { <nl> / / CHECK - NOT : unchecked_trivial_bit_cast <nl> / / CHECK : unchecked_addr_cast <nl> / / CHECK - NOT : unchecked_trivial_bit_cast <nl> bb3 : <nl> / / / 4 . % 5 can write to memory , so we try to check if it can alias % 0 # 1 . We look <nl> / / / up the load that was erased and will use it in a memory unsafe way . <nl> / / <nl> - / / CHECK - LABEL : sil @ invalidate_dead_loads_with_only_store_user_correctly : $ @ convention ( thin ) ( ) - > ( ) { <nl> + / / CHECK - FUTURE : sil @ invalidate_dead_loads_with_only_store_user_correctly : $ @ convention ( thin ) ( ) - > ( ) { <nl> / / CHECK - NOT : load <nl> / / CHECK - NOT : { { % . * } } = store <nl> sil @ invalidate_dead_loads_with_only_store_user_correctly : $ @ convention ( thin ) ( ) - > ( ) { <nl> sil @ mutator : $ @ convention ( method ) ( @ inout HoldsRef ) - > ( ) <nl> <nl> / / Ensure we don ' t forward the stored value from the switch_enum <nl> / / branches past the inout appearance of the stored - to location . <nl> - / / CHECK - LABEL : sil @ bad_store_forward <nl> + / / CHECK - FUTURE : sil @ bad_store_forward <nl> sil @ bad_store_forward : $ @ convention ( thin ) ( @ guaranteed Optional < HoldsRef > ) - > ( ) { <nl> / / CHECK : bb0 <nl> bb0 ( % 0 : $ Optional < HoldsRef > ) : <nl> bb3 : <nl> / / We internally use a map vector to represent stores . This means that when we iterate over <nl> / / the stores it should be in insertion order . Use this to test whether or not we only set <nl> / / the no - dependency bit if we do not forward a load . <nl> - / / CHECK - LABEL : sil @ test_unchecked_addr_cast_3 <nl> + / / CHECK - FUTURE : sil @ test_unchecked_addr_cast_3 <nl> / / CHECK : bb0 ( [ [ ARG1 : % . * ] ] : $ D , [ [ ARG2 : % . * ] ] : $ D ) : <nl> / / CHECK - NEXT : [ [ BOX1 : % . * ] ] = alloc_stack $ D <nl> / / CHECK - NEXT : [ [ BOX2 : % . * ] ] = alloc_stack $ D <nl> typealias I32 = Builtin . Int32 <nl> / / ( ( A , B ) , C ) - > ( A , B ) is safe <nl> / / ( ( A , B ) , C ) - > ( A , B , C ) is NOT safe <nl> / / <nl> - / / CHECK - LABEL : sil @ unchecked_addr_cast_tuple_promote <nl> + / / CHECK - FUTURE : sil @ unchecked_addr_cast_tuple_promote <nl> / / CHECK : bb0 ( % 0 : $ * ( Builtin . Int32 , Builtin . Int32 , Builtin . Int32 ) , % 1 : $ * ( ( Builtin . Int32 , Builtin . Int32 ) , Builtin . Int32 ) ) : <nl> / / CHECK : load % 0 : $ * ( Builtin . Int32 , Builtin . Int32 , Builtin . Int32 ) <nl> / / CHECK : alloc_stack $ ( Builtin . Int32 , Builtin . Int32 , Builtin . Int32 ) <nl> bb0 ( % 0 : $ * ( I32 , I32 , I32 ) , % 1 : $ * ( ( I32 , I32 ) , I32 ) ) : <nl> / / ( ( A , B ) , C ) - > ( A , B ) is safe <nl> / / ( ( A , B ) , C ) - > ( A , B , C ) is NOT safe <nl> / / <nl> - / / CHECK - LABEL : sil @ forward_tuple_elements <nl> + / / CHECK - FUTURE : sil @ forward_tuple_elements <nl> / / CHECK : tuple_element_addr <nl> / / CHECK : tuple_element_addr <nl> / / CHECK : tuple_element_addr <nl>
Merge pull request from trentxintong / RL
apple/swift
9f46eb5d1d0cc4997d9dcb988c98a5ffb3a96f8e
2016-08-10T20:00:40Z
mmm a / WORKSPACE <nl> ppp b / WORKSPACE <nl> load ( " @ bazel_tools / / tools / build_defs / repo : http . bzl " , " http_archive " , " http_file " <nl> <nl> http_archive ( <nl> name = " io_bazel_rules_closure " , <nl> - sha256 = " a38539c5b5c358548e75b44141b4ab637bba7c4dc02b46b1f62a96d6433f56ae " , <nl> - strip_prefix = " rules_closure - dbb96841cc0a5fb2664c37822803b06dab20c7d1 " , <nl> + sha256 = " 43c9b882fa921923bcba764453f4058d102bece35a37c9f6383c713004aacff1 " , <nl> + strip_prefix = " rules_closure - 9889e2348259a5aad7e805547c1a0cf311cfcd91 " , <nl> urls = [ <nl> - " https : / / mirror . bazel . build / github . com / bazelbuild / rules_closure / archive / dbb96841cc0a5fb2664c37822803b06dab20c7d1 . tar . gz " , <nl> - " https : / / github . com / bazelbuild / rules_closure / archive / dbb96841cc0a5fb2664c37822803b06dab20c7d1 . tar . gz " , # 2018 - 04 - 13 <nl> + " https : / / mirror . bazel . build / github . com / bazelbuild / rules_closure / archive / 9889e2348259a5aad7e805547c1a0cf311cfcd91 . tar . gz " , <nl> + " https : / / github . com / bazelbuild / rules_closure / archive / 9889e2348259a5aad7e805547c1a0cf311cfcd91 . tar . gz " , # 2018 - 12 - 21 <nl> ] , <nl> ) <nl> <nl>
Update dependency on rules_closure
tensorflow/tensorflow
8c22259497e9914c37a7adcd33aebaf754473a02
2019-01-04T19:37:31Z
mmm a / DEPS <nl> ppp b / DEPS <nl> vars = { <nl> <nl> deps = { <nl> ' v8 / build ' : <nl> - Var ( ' chromium_url ' ) + ' / chromium / src / build . git ' + ' @ ' + ' 0395ad56912495c6a98eac085bfa9b9cda50a25e ' , <nl> + Var ( ' chromium_url ' ) + ' / chromium / src / build . git ' + ' @ ' + ' 94dc55bb3b94713257374d1ac5557188c54bb969 ' , <nl> ' v8 / third_party / depot_tools ' : <nl> Var ( ' chromium_url ' ) + ' / chromium / tools / depot_tools . git ' + ' @ ' + ' cf6269b441f1cfdc57d2f238e09b14e46cc0f459 ' , <nl> ' v8 / third_party / icu ' : <nl> deps = { <nl> ' dep_type ' : ' cipd ' , <nl> } , <nl> ' v8 / tools / clang ' : <nl> - Var ( ' chromium_url ' ) + ' / chromium / src / tools / clang . git ' + ' @ ' + ' 2d0ea0b2689abaf589cbbbd733364e7bcb285c47 ' , <nl> + Var ( ' chromium_url ' ) + ' / chromium / src / tools / clang . git ' + ' @ ' + ' aae7fec1b017ed755f783da22ec61667f2757073 ' , <nl> ' v8 / tools / luci - go ' : { <nl> ' packages ' : [ <nl> { <nl>
Update V8 DEPS .
v8/v8
00f3c73ddeab87f24dfb869a42307bdcf3a88e19
2019-05-19T03:45:46Z
mmm a / . jenkins / pytorch / test . sh <nl> ppp b / . jenkins / pytorch / test . sh <nl> test_distributed ( ) { <nl> if [ [ " $ BUILD_ENVIRONMENT " = = * cuda * ] ] ; then <nl> echo " Testing distributed C + + tests " <nl> mkdir - p test / test - reports / cpp - distributed <nl> + build / bin / FileStoreTest - - gtest_output = xml : test / test - reports / cpp - distributed / FileStoreTest . xml <nl> + build / bin / HashStoreTest - - gtest_output = xml : test / test - reports / cpp - distributed / HashStoreTest . xml <nl> + build / bin / TCPStoreTest - - gtest_output = xml : test / test - reports / cpp - distributed / TCPStoreTest . xml <nl> + <nl> build / bin / ProcessGroupGlooTest - - gtest_output = xml : test / test - reports / cpp - distributed / ProcessGroupGlooTest . xml <nl> build / bin / ProcessGroupNCCLErrorsTest - - gtest_output = xml : test / test - reports / cpp - distributed / ProcessGroupNCCLErrorsTest . xml <nl> fi <nl>
Enable c10d Store tests in CI ( )
pytorch/pytorch
d5de616a4a9b56590d0c0efb5ac1db5467f64e2b
2020-07-28T01:12:37Z
mmm a / src / objective - c / ProtoRPC / ProtoRPC . m <nl> ppp b / src / objective - c / ProtoRPC / ProtoRPC . m <nl> <nl> <nl> # import < GPBProtocolBuffers . h > <nl> # import < RxLibrary / GRXWriteable . h > <nl> - # import < RxLibrary / GRXForwardingWriter . h > <nl> # import < RxLibrary / GRXWriter + Transformations . h > <nl> <nl> @ implementation ProtoRPC { <nl> - ( instancetype ) initWithHost : ( NSString * ) host <nl> format : @ " A protobuf class to parse the responses must be provided . " ] ; <nl> } <nl> / / A writer that serializes the proto messages to send . <nl> - id < GRXWriter > bytesWriter = <nl> - [ [ [ GRXForwardingWriter alloc ] initWithWriter : requestsWriter ] map : ^ id ( GPBMessage * proto ) { <nl> - / / TODO ( jcanizales ) : Fail with an understandable error message if the requestsWriter isn ' t <nl> - / / sending GPBMessages . <nl> - return [ proto data ] ; <nl> - } ] ; <nl> + GRXWriter * bytesWriter = [ requestsWriter map : ^ id ( GPBMessage * proto ) { <nl> + / / TODO ( jcanizales ) : Fail with an understandable error message if the requestsWriter isn ' t <nl> + / / sending GPBMessages . <nl> + return [ proto data ] ; <nl> + } ] ; <nl> if ( ( self = [ super initWithHost : host path : method . HTTPPath requestsWriter : bytesWriter ] ) ) { <nl> / / A writeable that parses the proto messages received . <nl> _responseWriteable = [ [ GRXWriteable alloc ] initWithValueHandler : ^ ( NSData * value ) { <nl> mmm a / src / objective - c / RxLibrary / GRXWriter + Immediate . m <nl> ppp b / src / objective - c / RxLibrary / GRXWriter + Immediate . m <nl> <nl> @ implementation GRXWriter ( Immediate ) <nl> <nl> + ( instancetype ) writerWithEnumerator : ( NSEnumerator * ) enumerator { <nl> - return [ [ self alloc ] initWithWriter : [ GRXImmediateWriter writerWithEnumerator : enumerator ] ] ; <nl> + return [ GRXImmediateWriter writerWithEnumerator : enumerator ] ; <nl> } <nl> <nl> + ( instancetype ) writerWithValueSupplier : ( id ( ^ ) ( ) ) block { <nl> - return [ [ self alloc ] initWithWriter : [ GRXImmediateWriter writerWithValueSupplier : block ] ] ; <nl> + return [ GRXImmediateWriter writerWithValueSupplier : block ] ; <nl> } <nl> <nl> + ( instancetype ) writerWithContainer : ( id < NSFastEnumeration > ) container { <nl> - return [ [ self alloc ] initWithWriter : [ GRXImmediateWriter writerWithContainer : container ] ] ; <nl> + return [ GRXImmediateWriter writerWithContainer : container ] ; <nl> } <nl> <nl> + ( instancetype ) writerWithValue : ( id ) value { <nl> - return [ [ self alloc ] initWithWriter : [ GRXImmediateWriter writerWithValue : value ] ] ; <nl> + return [ GRXImmediateWriter writerWithValue : value ] ; <nl> } <nl> <nl> + ( instancetype ) writerWithError : ( NSError * ) error { <nl> - return [ [ self alloc ] initWithWriter : [ GRXImmediateWriter writerWithError : error ] ] ; <nl> + return [ GRXImmediateWriter writerWithError : error ] ; <nl> } <nl> <nl> + ( instancetype ) emptyWriter { <nl> - return [ [ self alloc ] initWithWriter : [ GRXImmediateWriter emptyWriter ] ] ; <nl> + return [ GRXImmediateWriter emptyWriter ] ; <nl> } <nl> <nl> @ end <nl>
Remove GRXWriter wrappers that are now unnecessary
grpc/grpc
29f55d5655dc095205f8d02e01dcd0e2583c39eb
2015-07-17T19:20:08Z
mmm a / tensorflow / core / kernels / concat_lib_gpu . cc <nl> ppp b / tensorflow / core / kernels / concat_lib_gpu . cc <nl> TF_CALL_complex128 ( REGISTER ) ; <nl> TF_CALL_int64 ( REGISTER ) ; <nl> TF_CALL_bfloat16 ( REGISTER ) ; <nl> TF_CALL_bool ( REGISTER ) ; <nl> + TF_CALL_uint8 ( REGISTER ) ; <nl> <nl> # undef REGISTER <nl> <nl> mmm a / tensorflow / core / kernels / concat_lib_gpu_impl . cu . cc <nl> ppp b / tensorflow / core / kernels / concat_lib_gpu_impl . cu . cc <nl> TF_CALL_GPU_NUMBER_TYPES ( REGISTER_GPUCONCAT32 ) ; <nl> TF_CALL_complex64 ( REGISTER_GPUCONCAT32 ) ; <nl> TF_CALL_complex128 ( REGISTER_GPUCONCAT32 ) ; <nl> TF_CALL_int64 ( REGISTER_GPUCONCAT32 ) ; <nl> + TF_CALL_uint8 ( REGISTER_GPUCONCAT32 ) ; <nl> REGISTER_GPUCONCAT32 ( bfloat16 ) ; <nl> REGISTER_GPUCONCAT32 ( bool ) ; <nl> <nl> TF_CALL_GPU_NUMBER_TYPES ( REGISTER_GPUCONCAT64 ) ; <nl> TF_CALL_complex64 ( REGISTER_GPUCONCAT64 ) ; <nl> TF_CALL_complex128 ( REGISTER_GPUCONCAT64 ) ; <nl> TF_CALL_int64 ( REGISTER_GPUCONCAT64 ) ; <nl> + TF_CALL_uint8 ( REGISTER_GPUCONCAT64 ) ; <nl> REGISTER_GPUCONCAT64 ( bfloat16 ) ; <nl> REGISTER_GPUCONCAT64 ( bool ) ; <nl> <nl> TF_CALL_GPU_NUMBER_TYPES ( REGISTER_GPU32 ) ; <nl> TF_CALL_complex64 ( REGISTER_GPU32 ) ; <nl> TF_CALL_complex128 ( REGISTER_GPU32 ) ; <nl> TF_CALL_int64 ( REGISTER_GPU32 ) ; <nl> + TF_CALL_uint8 ( REGISTER_GPU32 ) ; <nl> REGISTER_GPU32 ( bfloat16 ) ; <nl> REGISTER_GPU32 ( bool ) ; <nl> <nl> TF_CALL_GPU_NUMBER_TYPES ( REGISTER_GPU64 ) ; <nl> TF_CALL_complex64 ( REGISTER_GPU64 ) ; <nl> TF_CALL_complex128 ( REGISTER_GPU64 ) ; <nl> TF_CALL_int64 ( REGISTER_GPU64 ) ; <nl> + TF_CALL_uint8 ( REGISTER_GPU64 ) ; <nl> REGISTER_GPU64 ( bfloat16 ) ; <nl> REGISTER_GPU64 ( bool ) ; <nl> <nl> mmm a / tensorflow / core / kernels / concat_op . cc <nl> ppp b / tensorflow / core / kernels / concat_op . cc <nl> REGISTER_CONCAT ( qint32 ) ; <nl> <nl> TF_CALL_GPU_NUMBER_TYPES ( REGISTER_GPU ) ; <nl> REGISTER_GPU ( bfloat16 ) ; <nl> + TF_CALL_uint8 ( REGISTER_GPU ) ; <nl> TF_CALL_complex64 ( REGISTER_GPU ) ; <nl> TF_CALL_complex128 ( REGISTER_GPU ) ; <nl> TF_CALL_int64 ( REGISTER_GPU ) ; <nl> mmm a / tensorflow / core / kernels / concat_op_test . cc <nl> ppp b / tensorflow / core / kernels / concat_op_test . cc <nl> static void BM_ConcatDim1Float ( int iters , int dim2 ) { <nl> BENCHMARK ( BM_ConcatDim0Float ) - > Arg ( 1000 ) - > Arg ( 100000 ) - > Arg ( 1000000 ) ; <nl> BENCHMARK ( BM_ConcatDim1Float ) - > Arg ( 1000 ) - > Arg ( 100000 ) - > Arg ( 1000000 ) ; <nl> <nl> + static void BM_ConcatDim1uint8 ( int iters , int dim2 ) { <nl> + ConcatHelper < uint8 > ( iters , 1 , dim2 ) ; <nl> + } <nl> static void BM_ConcatDim1int16 ( int iters , int dim2 ) { <nl> ConcatHelper < int16 > ( iters , 1 , dim2 ) ; <nl> } <nl> static void BM_ConcatDim1bfloat16 ( int iters , int dim2 ) { <nl> ConcatHelper < bfloat16 > ( iters , 1 , dim2 ) ; <nl> } <nl> <nl> + BENCHMARK ( BM_ConcatDim1uint8 ) - > Arg ( 1000 ) - > Arg ( 100000 ) - > Arg ( 1000000 ) ; <nl> BENCHMARK ( BM_ConcatDim1int16 ) - > Arg ( 1000 ) - > Arg ( 100000 ) - > Arg ( 1000000 ) ; <nl> BENCHMARK ( BM_ConcatDim1bfloat16 ) - > Arg ( 1000 ) - > Arg ( 100000 ) - > Arg ( 1000000 ) ; <nl> <nl>
Register tf . concat with uint8 data type .
tensorflow/tensorflow
20e1f3a852c83d9369c7d56a943fe6b8f9b88644
2018-04-09T18:16:51Z
mmm a / README . md <nl> ppp b / README . md <nl> Remark : <nl> <nl> # # History <nl> <nl> + * v2 . 0 , 2018 - 08 - 12 , For [ # 1202 ] [ bug # 1202 ] , Support edge / forward to Aliyun CDN . 2 . 0 . 255 <nl> * v2 . 0 , 2018 - 08 - 11 , For [ # 910 ] [ bug # 910 ] , Support HTTP FLV with HTTP callback . 2 . 0 . 254 <nl> * v2 . 0 , 2018 - 08 - 11 , For [ # 1110 ] [ bug # 1110 ] , Refine params in http callback . 2 . 0 . 253 <nl> * v2 . 0 , 2018 - 08 - 05 , Refine HTTP - FLV latency , support realtime mode . 2 . 0 . 252 <nl> Winlin <nl> [ bug # 1031 ] : https : / / github . com / ossrs / srs / issues / 1031 <nl> [ bug # 1110 ] : https : / / github . com / ossrs / srs / issues / 1110 <nl> [ bug # 910 ] : https : / / github . com / ossrs / srs / issues / 910 <nl> + [ bug # 1202 ] : https : / / github . com / ossrs / srs / issues / 1202 <nl> [ bug # xxxxxxxxxx ] : https : / / github . com / ossrs / srs / issues / xxxxxxxxxx <nl> <nl> [ exo # 828 ] : https : / / github . com / google / ExoPlayer / pull / 828 <nl> mmm a / trunk / src / core / srs_core . hpp <nl> ppp b / trunk / src / core / srs_core . hpp <nl> CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE . <nl> / / current release version <nl> # define VERSION_MAJOR 2 <nl> # define VERSION_MINOR 0 <nl> - # define VERSION_REVISION 254 <nl> + # define VERSION_REVISION 255 <nl> <nl> / / generated by configure , only macros . <nl> # include < srs_auto_headers . hpp > <nl> mmm a / trunk / src / protocol / srs_rtmp_stack . cpp <nl> ppp b / trunk / src / protocol / srs_rtmp_stack . cpp <nl> void SrsRequest : : update_auth ( SrsRequest * req ) <nl> pageUrl = req - > pageUrl ; <nl> swfUrl = req - > swfUrl ; <nl> tcUrl = req - > tcUrl ; <nl> + param = req - > param ; <nl> <nl> if ( args ) { <nl> srs_freep ( args ) ; <nl>
For , Support edge / forward to Aliyun CDN . 2 . 0 . 255
ossrs/srs
74a87d54f2cdf9d298a7e1f2b3a67551d56af9de
2018-08-12T02:44:55Z
mmm a / js / server / modules / org / arangodb / testing . js <nl> ppp b / js / server / modules / org / arangodb / testing . js <nl> function startInstance ( protocol , options , addArgs , testname ) { <nl> } <nl> } <nl> } <nl> - print ( " up and Running in " + ( time ( ) - startTime ) + " seconds " ) ; <nl> + print ( " up and running in " + ( time ( ) - startTime ) + " seconds " ) ; <nl> if ( ! options . cluster & & ( require ( " internal " ) . platform . substr ( 0 , 3 ) = = = ' win ' ) ) { <nl> var procdumpArgs = [ <nl> ' - accepteula ' , <nl>
fixed spelling
arangodb/arangodb
6d37c9609914a140d152573fa2afef0c3ef67a0b
2015-03-17T17:23:42Z
mmm a / stdlib / public / core / Unicode . swift <nl> ppp b / stdlib / public / core / Unicode . swift <nl> public struct UTF8 : UnicodeCodecType { <nl> } <nl> <nl> / / Determine sequence length using high 5 bits of 1st byte . We use a <nl> - / / look - up table to branch less . 1 - byte sequence are handled above . <nl> + / / look - up table to branch less . 1 - byte sequences are handled above . <nl> / / <nl> / / case | pattern | description <nl> / / mmmmmmmmmmmmmmmmmmmmmmmmmmm - <nl> public struct UTF8 : UnicodeCodecType { <nl> if buffer & 0x00003003 ! = 0x00000000 { return false } <nl> } <nl> return true <nl> - default : / / Invalid sequence <nl> + default : / / Invalid sequence . <nl> return false <nl> } <nl> } <nl>
[ stdlib ] Fix comments
apple/swift
04f760d8369aa059fcbf16c6110b3803f9c7a7cd
2016-02-28T05:12:11Z
mmm a / src / arm / lithium - codegen - arm . cc <nl> ppp b / src / arm / lithium - codegen - arm . cc <nl> void LCodeGen : : DeoptimizeIf ( Condition cc , LEnvironment * environment ) { <nl> void LCodeGen : : PopulateDeoptimizationData ( Handle < Code > code ) { <nl> int length = deoptimizations_ . length ( ) ; <nl> if ( length = = 0 ) return ; <nl> - ASSERT ( FLAG_deopt ) ; <nl> Handle < DeoptimizationInputData > data = <nl> factory ( ) - > NewDeoptimizationInputData ( length , TENURED ) ; <nl> <nl> mmm a / src / flag - definitions . h <nl> ppp b / src / flag - definitions . h <nl> DEFINE_bool ( lazy , true , " use lazy compilation " ) <nl> DEFINE_bool ( trace_opt , false , " trace lazy optimization " ) <nl> DEFINE_bool ( trace_opt_stats , false , " trace lazy optimization statistics " ) <nl> DEFINE_bool ( opt , true , " use adaptive optimizations " ) <nl> - DEFINE_bool ( opt_eagerly , false , " be more eager when adaptively optimizing " ) <nl> DEFINE_bool ( always_opt , false , " always try to optimize functions " ) <nl> DEFINE_bool ( prepare_always_opt , false , " prepare for turning on always opt " ) <nl> - DEFINE_bool ( deopt , true , " support deoptimization " ) <nl> DEFINE_bool ( trace_deopt , false , " trace deoptimization " ) <nl> <nl> / / compiler . cc <nl> mmm a / src / full - codegen . cc <nl> ppp b / src / full - codegen . cc <nl> void FullCodeGenerator : : RecordJSReturnSite ( Call * call ) { <nl> void FullCodeGenerator : : PrepareForBailoutForId ( unsigned id , State state ) { <nl> / / There ' s no need to prepare this code for bailouts from already optimized <nl> / / code or code that can ' t be optimized . <nl> - if ( ! FLAG_deopt | | ! info_ - > HasDeoptimizationSupport ( ) ) return ; <nl> + if ( ! info_ - > HasDeoptimizationSupport ( ) ) return ; <nl> unsigned pc_and_state = <nl> StateField : : encode ( state ) | PcField : : encode ( masm_ - > pc_offset ( ) ) ; <nl> BailoutEntry entry = { id , pc_and_state } ; <nl> mmm a / src / ia32 / lithium - codegen - ia32 . cc <nl> ppp b / src / ia32 / lithium - codegen - ia32 . cc <nl> void LCodeGen : : DeoptimizeIf ( Condition cc , LEnvironment * environment ) { <nl> void LCodeGen : : PopulateDeoptimizationData ( Handle < Code > code ) { <nl> int length = deoptimizations_ . length ( ) ; <nl> if ( length = = 0 ) return ; <nl> - ASSERT ( FLAG_deopt ) ; <nl> Handle < DeoptimizationInputData > data = <nl> factory ( ) - > NewDeoptimizationInputData ( length , TENURED ) ; <nl> <nl> mmm a / src / x64 / lithium - codegen - x64 . cc <nl> ppp b / src / x64 / lithium - codegen - x64 . cc <nl> void LCodeGen : : DeoptimizeIf ( Condition cc , LEnvironment * environment ) { <nl> void LCodeGen : : PopulateDeoptimizationData ( Handle < Code > code ) { <nl> int length = deoptimizations_ . length ( ) ; <nl> if ( length = = 0 ) return ; <nl> - ASSERT ( FLAG_deopt ) ; <nl> Handle < DeoptimizationInputData > data = <nl> factory ( ) - > NewDeoptimizationInputData ( length , TENURED ) ; <nl> <nl>
Remove another two unused flags .
v8/v8
5bc8a69055e4361a89450261dbd0ce9047fce78d
2012-02-08T10:26:17Z
mmm a / src / api . cc <nl> ppp b / src / api . cc <nl> std : : pair < int , int > debug : : WasmScript : : GetFunctionRange ( <nl> DCHECK_GT ( compiled_module - > module ( ) - > functions . size ( ) , function_index ) ; <nl> i : : wasm : : WasmFunction & func = <nl> compiled_module - > module ( ) - > functions [ function_index ] ; <nl> - DCHECK_GE ( i : : kMaxInt , func . code_start_offset ) ; <nl> - DCHECK_GE ( i : : kMaxInt , func . code_end_offset ) ; <nl> - return std : : make_pair ( static_cast < int > ( func . code_start_offset ) , <nl> - static_cast < int > ( func . code_end_offset ) ) ; <nl> + DCHECK_GE ( i : : kMaxInt , func . code . offset ( ) ) ; <nl> + DCHECK_GE ( i : : kMaxInt , func . code . end_offset ( ) ) ; <nl> + return std : : make_pair ( static_cast < int > ( func . code . offset ( ) ) , <nl> + static_cast < int > ( func . code . end_offset ( ) ) ) ; <nl> } <nl> <nl> debug : : WasmDisassembly debug : : WasmScript : : DisassembleFunction ( <nl> mmm a / src / compiler / wasm - compiler . cc <nl> ppp b / src / compiler / wasm - compiler . cc <nl> WasmCompilationUnit : : WasmCompilationUnit ( Isolate * isolate , <nl> isolate , & module_env - > module_env , <nl> wasm : : FunctionBody { <nl> function - > sig , module_env - > wire_bytes . start ( ) , <nl> - module_env - > wire_bytes . start ( ) + function - > code_start_offset , <nl> - module_env - > wire_bytes . start ( ) + function - > code_end_offset } , <nl> + module_env - > wire_bytes . start ( ) + function - > code . offset ( ) , <nl> + module_env - > wire_bytes . start ( ) + function - > code . end_offset ( ) } , <nl> module_env - > wire_bytes . GetNameOrNull ( function ) , function - > func_index , <nl> is_sync ) { } <nl> <nl> mmm a / src / wasm / module - compiler . cc <nl> ppp b / src / wasm / module - compiler . cc <nl> void ModuleCompiler : : ValidateSequentially ( ModuleBytesEnv * module_env , <nl> if ( func . imported ) continue ; <nl> <nl> const byte * base = module_env - > wire_bytes . start ( ) ; <nl> - FunctionBody body { func . sig , base , base + func . code_start_offset , <nl> - base + func . code_end_offset } ; <nl> + FunctionBody body { func . sig , base , base + func . code . offset ( ) , <nl> + base + func . code . end_offset ( ) } ; <nl> DecodeResult result = VerifyWasmCode ( isolate_ - > allocator ( ) , <nl> module_env - > module_env . module , body ) ; <nl> if ( result . failed ( ) ) { <nl> Handle < Script > CreateWasmScript ( Isolate * isolate , <nl> return script ; <nl> } <nl> <nl> - / / Ensure that the code object in < code_table > at offset < func_index > has <nl> / / Ensure that the code object in < code_table > at offset < func_index > has <nl> / / deoptimization data attached . This is needed for lazy compile stubs which are <nl> / / called from JS_TO_WASM functions or via exported function tables . The deopt <nl> MaybeHandle < WasmInstanceObject > InstanceBuilder : : Build ( ) { <nl> memory_ . is_null ( ) <nl> ? 0 <nl> : static_cast < uint32_t > ( memory_ - > byte_length ( ) - > Number ( ) ) ; <nl> - if ( ! in_bounds ( base , seg . source_size , mem_size ) ) { <nl> + if ( ! in_bounds ( base , seg . source . length ( ) , mem_size ) ) { <nl> thrower_ - > LinkError ( " data segment is out of bounds " ) ; <nl> return { } ; <nl> } <nl> void InstanceBuilder : : LoadDataSegments ( Address mem_addr , size_t mem_size ) { <nl> Handle < SeqOneByteString > module_bytes ( compiled_module_ - > module_bytes ( ) , <nl> isolate_ ) ; <nl> for ( const WasmDataSegment & segment : module_ - > data_segments ) { <nl> - uint32_t source_size = segment . source_size ; <nl> + uint32_t source_size = segment . source . length ( ) ; <nl> / / Segments of size = = 0 are just nops . <nl> if ( source_size = = 0 ) continue ; <nl> uint32_t dest_offset = EvalUint32InitExpr ( segment . dest_addr ) ; <nl> void InstanceBuilder : : LoadDataSegments ( Address mem_addr , size_t mem_size ) { <nl> in_bounds ( dest_offset , source_size , static_cast < uint32_t > ( mem_size ) ) ) ; <nl> byte * dest = mem_addr + dest_offset ; <nl> const byte * src = reinterpret_cast < const byte * > ( <nl> - module_bytes - > GetCharsAddress ( ) + segment . source_offset ) ; <nl> + module_bytes - > GetCharsAddress ( ) + segment . source . offset ( ) ) ; <nl> memcpy ( dest , src , source_size ) ; <nl> } <nl> } <nl> int InstanceBuilder : : ProcessImports ( Handle < FixedArray > code_table , <nl> Handle < String > module_name ; <nl> MaybeHandle < String > maybe_module_name = <nl> WasmCompiledModule : : ExtractUtf8StringFromModuleBytes ( <nl> - isolate_ , compiled_module_ , import . module_name_offset , <nl> - import . module_name_length ) ; <nl> + isolate_ , compiled_module_ , import . module_name ) ; <nl> if ( ! maybe_module_name . ToHandle ( & module_name ) ) return - 1 ; <nl> <nl> Handle < String > import_name ; <nl> MaybeHandle < String > maybe_import_name = <nl> WasmCompiledModule : : ExtractUtf8StringFromModuleBytes ( <nl> - isolate_ , compiled_module_ , import . field_name_offset , <nl> - import . field_name_length ) ; <nl> + isolate_ , compiled_module_ , import . field_name ) ; <nl> if ( ! maybe_import_name . ToHandle ( & import_name ) ) return - 1 ; <nl> <nl> MaybeHandle < Object > result = <nl> void InstanceBuilder : : ProcessExports ( <nl> / / Process each export in the export table . <nl> int export_index = 0 ; / / Index into { weak_exported_functions } . <nl> for ( WasmExport & exp : module_ - > export_table ) { <nl> - Handle < String > name = <nl> - WasmCompiledModule : : ExtractUtf8StringFromModuleBytes ( <nl> - isolate_ , compiled_module_ , exp . name_offset , exp . name_length ) <nl> - . ToHandleChecked ( ) ; <nl> + Handle < String > name = WasmCompiledModule : : ExtractUtf8StringFromModuleBytes ( <nl> + isolate_ , compiled_module_ , exp . name ) <nl> + . ToHandleChecked ( ) ; <nl> Handle < JSObject > export_to ; <nl> if ( module_ - > is_asm_js ( ) & & exp . kind = = kExternalFunction & & <nl> String : : Equals ( name , single_function_name ) ) { <nl> void InstanceBuilder : : ProcessExports ( <nl> if ( module_ - > is_asm_js ( ) ) { <nl> / / For modules arising from asm . js , honor the names section . <nl> func_name = WasmCompiledModule : : ExtractUtf8StringFromModuleBytes ( <nl> - isolate_ , compiled_module_ , function . name_offset , <nl> - function . name_length ) <nl> + isolate_ , compiled_module_ , function . name ) <nl> . ToHandleChecked ( ) ; <nl> } <nl> js_function = WasmExportedFunction : : New ( <nl> void InstanceBuilder : : LoadTableSegments ( Handle < FixedArray > code_table , <nl> if ( module_ - > is_asm_js ( ) ) { <nl> / / For modules arising from asm . js , honor the names section . <nl> func_name = WasmCompiledModule : : ExtractUtf8StringFromModuleBytes ( <nl> - isolate_ , compiled_module_ , function - > name_offset , <nl> - function - > name_length ) <nl> + isolate_ , compiled_module_ , function - > name ) <nl> . ToHandleChecked ( ) ; <nl> } <nl> Handle < WasmExportedFunction > js_function = <nl> mmm a / src / wasm / module - decoder . cc <nl> ppp b / src / wasm / module - decoder . cc <nl> ValueType TypeOf ( const WasmModule * module , const WasmInitExpr & expr ) { <nl> <nl> / / Reads a length - prefixed string , checking that it is within bounds . Returns <nl> / / the offset of the string , and the length as an out parameter . <nl> - uint32_t consume_string ( Decoder & decoder , uint32_t * length , bool validate_utf8 , <nl> - const char * name ) { <nl> - * length = decoder . consume_u32v ( " string length " ) ; <nl> + WireBytesRef consume_string ( Decoder & decoder , bool validate_utf8 , <nl> + const char * name ) { <nl> + uint32_t length = decoder . consume_u32v ( " string length " ) ; <nl> uint32_t offset = decoder . pc_offset ( ) ; <nl> const byte * string_start = decoder . pc ( ) ; <nl> / / Consume bytes before validation to guarantee that the string is not oob . <nl> - if ( * length > 0 ) { <nl> - decoder . consume_bytes ( * length , name ) ; <nl> + if ( length > 0 ) { <nl> + decoder . consume_bytes ( length , name ) ; <nl> if ( decoder . ok ( ) & & validate_utf8 & & <nl> - ! unibrow : : Utf8 : : ValidateEncoding ( string_start , * length ) ) { <nl> + ! unibrow : : Utf8 : : ValidateEncoding ( string_start , length ) ) { <nl> decoder . errorf ( string_start , " % s : no valid UTF - 8 string " , name ) ; <nl> } <nl> } <nl> - return offset ; <nl> + return { offset , length } ; <nl> } <nl> <nl> / / An iterator over the sections in a wasm binary module . <nl> class WasmSectionIterator { <nl> <nl> if ( section_code = = kUnknownSectionCode ) { <nl> / / Check for the known " name " section . <nl> - uint32_t string_length ; <nl> - uint32_t string_offset = <nl> - wasm : : consume_string ( decoder_ , & string_length , true , " section name " ) ; <nl> + WireBytesRef string = <nl> + wasm : : consume_string ( decoder_ , true , " section name " ) ; <nl> if ( decoder_ . failed ( ) | | decoder_ . pc ( ) > section_end_ ) { <nl> section_code_ = kUnknownSectionCode ; <nl> return ; <nl> } <nl> const byte * section_name_start = <nl> - decoder_ . start ( ) + decoder_ . GetBufferRelativeOffset ( string_offset ) ; <nl> + decoder_ . start ( ) + decoder_ . GetBufferRelativeOffset ( string . offset ( ) ) ; <nl> payload_start_ = decoder_ . pc ( ) ; <nl> <nl> TRACE ( " + % d section name : \ " % . * s \ " \ n " , <nl> static_cast < int > ( section_name_start - decoder_ . start ( ) ) , <nl> - string_length < 20 ? string_length : 20 , section_name_start ) ; <nl> + string . length ( ) < 20 ? string . length ( ) : 20 , section_name_start ) ; <nl> <nl> - if ( string_length = = kNameStringLength & & <nl> + if ( string . length ( ) = = kNameStringLength & & <nl> strncmp ( reinterpret_cast < const char * > ( section_name_start ) , <nl> kNameString , kNameStringLength ) = = 0 ) { <nl> section_code = kNameSectionCode ; <nl> class ModuleDecoder : public Decoder { <nl> static_cast < int > ( pc_ - start_ ) ) ; <nl> <nl> module_ - > import_table . push_back ( { <nl> - 0 , / / module_name_length <nl> - 0 , / / module_name_offset <nl> - 0 , / / field_name_offset <nl> - 0 , / / field_name_length <nl> + { 0 , 0 } , / / module_name <nl> + { 0 , 0 } , / / field_name <nl> kExternalFunction , / / kind <nl> 0 / / index <nl> } ) ; <nl> WasmImport * import = & module_ - > import_table . back ( ) ; <nl> const byte * pos = pc_ ; <nl> - import - > module_name_offset = <nl> - consume_string ( & import - > module_name_length , true , " module name " ) ; <nl> - import - > field_name_offset = <nl> - consume_string ( & import - > field_name_length , true , " field name " ) ; <nl> + import - > module_name = consume_string ( true , " module name " ) ; <nl> + import - > field_name = consume_string ( true , " field name " ) ; <nl> import - > kind = static_cast < WasmExternalKind > ( consume_u8 ( " import kind " ) ) ; <nl> switch ( import - > kind ) { <nl> case kExternalFunction : { <nl> class ModuleDecoder : public Decoder { <nl> module_ - > functions . push_back ( { nullptr , / / sig <nl> import - > index , / / func_index <nl> 0 , / / sig_index <nl> - 0 , / / name_offset <nl> - 0 , / / name_length <nl> - 0 , / / code_start_offset <nl> - 0 , / / code_end_offset <nl> + { 0 , 0 } , / / name_offset <nl> + { 0 , 0 } , / / code <nl> true , / / imported <nl> false } ) ; / / exported <nl> WasmFunction * function = & module_ - > functions . back ( ) ; <nl> class ModuleDecoder : public Decoder { <nl> module_ - > functions . push_back ( { nullptr , / / sig <nl> func_index , / / func_index <nl> 0 , / / sig_index <nl> - 0 , / / name_offset <nl> - 0 , / / name_length <nl> - 0 , / / code_start_offset <nl> - 0 , / / code_end_offset <nl> + { 0 , 0 } , / / name <nl> + { 0 , 0 } , / / code <nl> false , / / imported <nl> false } ) ; / / exported <nl> WasmFunction * function = & module_ - > functions . back ( ) ; <nl> class ModuleDecoder : public Decoder { <nl> static_cast < int > ( pc_ - start_ ) ) ; <nl> <nl> module_ - > export_table . push_back ( { <nl> - 0 , / / name_length <nl> - 0 , / / name_offset <nl> + { 0 , 0 } , / / name <nl> kExternalFunction , / / kind <nl> 0 / / index <nl> } ) ; <nl> WasmExport * exp = & module_ - > export_table . back ( ) ; <nl> <nl> - exp - > name_offset = consume_string ( & exp - > name_length , true , " field name " ) ; <nl> + exp - > name = consume_string ( true , " field name " ) ; <nl> <nl> const byte * pos = pc ( ) ; <nl> exp - > kind = static_cast < WasmExternalKind > ( consume_u8 ( " export kind " ) ) ; <nl> class ModuleDecoder : public Decoder { <nl> <nl> auto cmp_less = [ this ] ( const WasmExport & a , const WasmExport & b ) { <nl> / / Return true if a < b . <nl> - if ( a . name_length ! = b . name_length ) { <nl> - return a . name_length < b . name_length ; <nl> + if ( a . name . length ( ) ! = b . name . length ( ) ) { <nl> + return a . name . length ( ) < b . name . length ( ) ; <nl> } <nl> - const byte * left = start ( ) + GetBufferRelativeOffset ( a . name_offset ) ; <nl> - const byte * right = start ( ) + GetBufferRelativeOffset ( b . name_offset ) ; <nl> - return memcmp ( left , right , a . name_length ) < 0 ; <nl> + const byte * left = start ( ) + GetBufferRelativeOffset ( a . name . offset ( ) ) ; <nl> + const byte * right = start ( ) + GetBufferRelativeOffset ( b . name . offset ( ) ) ; <nl> + return memcmp ( left , right , a . name . length ( ) ) < 0 ; <nl> } ; <nl> std : : stable_sort ( sorted_exports . begin ( ) , sorted_exports . end ( ) , cmp_less ) ; <nl> <nl> class ModuleDecoder : public Decoder { <nl> for ( auto end = sorted_exports . end ( ) ; it ! = end ; last = & * it + + ) { <nl> DCHECK ( ! cmp_less ( * it , * last ) ) ; / / Vector must be sorted . <nl> if ( ! cmp_less ( * last , * it ) ) { <nl> - const byte * pc = start ( ) + GetBufferRelativeOffset ( it - > name_offset ) ; <nl> + const byte * pc = start ( ) + GetBufferRelativeOffset ( it - > name . offset ( ) ) ; <nl> errorf ( pc , " Duplicate export name ' % . * s ' for functions % d and % d " , <nl> - it - > name_length , pc , last - > index , it - > index ) ; <nl> + it - > name . length ( ) , pc , last - > index , it - > index ) ; <nl> break ; <nl> } <nl> } <nl> class ModuleDecoder : public Decoder { <nl> WasmFunction * function = <nl> & module_ - > functions [ i + module_ - > num_imported_functions ] ; <nl> uint32_t size = consume_u32v ( " body size " ) ; <nl> - function - > code_start_offset = pc_offset ( ) ; <nl> - function - > code_end_offset = pc_offset ( ) + size ; <nl> + function - > code = { pc_offset ( ) , size } ; <nl> if ( verify_functions ) { <nl> ModuleBytesEnv module_env ( module_ . get ( ) , nullptr , <nl> ModuleWireBytes ( start_ , end_ ) ) ; <nl> class ModuleDecoder : public Decoder { <nl> static_cast < int > ( pc_ - start_ ) ) ; <nl> module_ - > data_segments . push_back ( { <nl> WasmInitExpr ( ) , / / dest_addr <nl> - 0 , / / source_offset <nl> - 0 / / source_size <nl> + { 0 , 0 } / / source <nl> } ) ; <nl> WasmDataSegment * segment = & module_ - > data_segments . back ( ) ; <nl> DecodeDataSegmentInModule ( module_ . get ( ) , segment ) ; <nl> class ModuleDecoder : public Decoder { <nl> / / Local names will be decoded when needed . <nl> switch ( name_type ) { <nl> case NameSectionType : : kModule : { <nl> - uint32_t name_length = 0 ; <nl> - uint32_t name_offset = <nl> - wasm : : consume_string ( inner , & name_length , false , " module name " ) ; <nl> - if ( inner . ok ( ) & & <nl> - unibrow : : Utf8 : : ValidateEncoding ( <nl> - inner . start ( ) + inner . GetBufferRelativeOffset ( name_offset ) , <nl> - name_length ) ) { <nl> - module_ - > name_length = name_length ; <nl> - module_ - > name_offset = name_offset ; <nl> - } <nl> + WireBytesRef name = wasm : : consume_string ( inner , false , " module name " ) ; <nl> + if ( inner . ok ( ) & & validate_utf8 ( & inner , name ) ) module_ - > name = name ; <nl> break ; <nl> } <nl> case NameSectionType : : kFunction : { <nl> class ModuleDecoder : public Decoder { <nl> <nl> for ( ; inner . ok ( ) & & functions_count > 0 ; - - functions_count ) { <nl> uint32_t function_index = inner . consume_u32v ( " function index " ) ; <nl> - uint32_t name_length = 0 ; <nl> - uint32_t name_offset = wasm : : consume_string ( inner , & name_length , <nl> - false , " function name " ) ; <nl> + WireBytesRef name = <nl> + wasm : : consume_string ( inner , false , " function name " ) ; <nl> <nl> / / Be lenient with errors in the name section : Ignore illegal <nl> / / or out - of - order indexes and non - UTF8 names . You can even assign <nl> / / to the same function multiple times ( last valid one wins ) . <nl> if ( inner . ok ( ) & & function_index < module_ - > functions . size ( ) & & <nl> - unibrow : : Utf8 : : ValidateEncoding ( <nl> - inner . start ( ) + inner . GetBufferRelativeOffset ( name_offset ) , <nl> - name_length ) ) { <nl> - module_ - > functions [ function_index ] . name_offset = name_offset ; <nl> - module_ - > functions [ function_index ] . name_length = name_length ; <nl> + validate_utf8 ( & inner , name ) ) { <nl> + module_ - > functions [ function_index ] . name = name ; <nl> } <nl> } <nl> break ; <nl> class ModuleDecoder : public Decoder { <nl> FunctionResult DecodeSingleFunction ( Zone * zone , ModuleBytesEnv * module_env , <nl> std : : unique_ptr < WasmFunction > function ) { <nl> pc_ = start_ ; <nl> - function - > sig = consume_sig ( zone ) ; / / read signature <nl> - function - > name_offset = 0 ; / / mmm - name <nl> - function - > name_length = 0 ; / / mmm - name length <nl> - function - > code_start_offset = off ( pc_ ) ; / / mmm - code start <nl> - function - > code_end_offset = off ( end_ ) ; / / mmm - code end <nl> + function - > sig = consume_sig ( zone ) ; <nl> + function - > name = { 0 , 0 } ; <nl> + function - > code = { off ( pc_ ) , static_cast < uint32_t > ( end_ - pc_ ) } ; <nl> <nl> if ( ok ( ) ) <nl> VerifyFunctionBody ( zone - > allocator ( ) , 0 , module_env , function . get ( ) ) ; <nl> class ModuleDecoder : public Decoder { <nl> const byte * start = pc_ ; <nl> expect_u8 ( " linear memory index " , 0 ) ; <nl> segment - > dest_addr = consume_init_expr ( module , kWasmI32 ) ; <nl> - segment - > source_size = consume_u32v ( " source size " ) ; <nl> - segment - > source_offset = pc_offset ( ) ; <nl> + uint32_t source_length = consume_u32v ( " source size " ) ; <nl> + uint32_t source_offset = pc_offset ( ) ; <nl> + segment - > source = { source_offset , source_length } ; <nl> <nl> / / Validate the data is in the decoder buffer . <nl> uint32_t limit = static_cast < uint32_t > ( end_ - start_ ) ; <nl> - if ( ! IsWithinLimit ( limit , GetBufferRelativeOffset ( segment - > source_offset ) , <nl> - segment - > source_size ) ) { <nl> + if ( ! IsWithinLimit ( limit , GetBufferRelativeOffset ( segment - > source . offset ( ) ) , <nl> + segment - > source . length ( ) ) ) { <nl> error ( start , " segment out of bounds of the section " ) ; <nl> } <nl> <nl> - consume_bytes ( segment - > source_size , " segment data " ) ; <nl> + consume_bytes ( segment - > source . length ( ) , " segment data " ) ; <nl> } <nl> <nl> / / Calculate individual global offsets and total size of globals table . <nl> class ModuleDecoder : public Decoder { <nl> } <nl> FunctionBody body = { <nl> function - > sig , start_ , <nl> - start_ + GetBufferRelativeOffset ( function - > code_start_offset ) , <nl> - start_ + GetBufferRelativeOffset ( function - > code_end_offset ) } ; <nl> + start_ + GetBufferRelativeOffset ( function - > code . offset ( ) ) , <nl> + start_ + GetBufferRelativeOffset ( function - > code . end_offset ( ) ) } ; <nl> DecodeResult result = VerifyWasmCode ( <nl> allocator , menv = = nullptr ? nullptr : menv - > module_env . module , body ) ; <nl> if ( result . failed ( ) ) { <nl> class ModuleDecoder : public Decoder { <nl> } <nl> } <nl> <nl> - uint32_t consume_string ( uint32_t * length , bool validate_utf8 , <nl> - const char * name ) { <nl> - return wasm : : consume_string ( * this , length , validate_utf8 , name ) ; <nl> + WireBytesRef consume_string ( bool validate_utf8 , const char * name ) { <nl> + return wasm : : consume_string ( * this , validate_utf8 , name ) ; <nl> + } <nl> + <nl> + bool validate_utf8 ( Decoder * decoder , WireBytesRef string ) { <nl> + return unibrow : : Utf8 : : ValidateEncoding ( <nl> + decoder - > start ( ) + decoder - > GetBufferRelativeOffset ( string . offset ( ) ) , <nl> + string . length ( ) ) ; <nl> } <nl> <nl> uint32_t consume_sig_index ( WasmModule * module , FunctionSig * * sig ) { <nl> std : : vector < CustomSectionOffset > DecodeCustomSections ( const byte * start , <nl> uint32_t payload_offset = decoder . pc_offset ( ) ; <nl> uint32_t payload_length = section_length - ( payload_offset - section_start ) ; <nl> decoder . consume_bytes ( payload_length ) ; <nl> - result . push_back ( { section_start , name_offset , name_length , payload_offset , <nl> - payload_length , section_length } ) ; <nl> + result . push_back ( { { section_start , section_length } , <nl> + { name_offset , name_length } , <nl> + { payload_offset , payload_length } } ) ; <nl> } <nl> <nl> return result ; <nl> mmm a / src / wasm / module - decoder . h <nl> ppp b / src / wasm / module - decoder . h <nl> V8_EXPORT_PRIVATE WasmInitExpr DecodeWasmInitExprForTesting ( const byte * start , <nl> const byte * end ) ; <nl> <nl> struct CustomSectionOffset { <nl> - uint32_t section_start ; <nl> - uint32_t name_offset ; <nl> - uint32_t name_length ; <nl> - uint32_t payload_offset ; <nl> - uint32_t payload_length ; <nl> - uint32_t section_length ; <nl> + WireBytesRef section ; <nl> + WireBytesRef name ; <nl> + WireBytesRef payload ; <nl> } ; <nl> <nl> V8_EXPORT_PRIVATE std : : vector < CustomSectionOffset > DecodeCustomSections ( <nl> mmm a / src / wasm / wasm - code - specialization . cc <nl> ppp b / src / wasm / wasm - code - specialization . cc <nl> class PatchDirectCallsHelper { <nl> WasmCompiledModule * comp_mod = instance - > compiled_module ( ) ; <nl> int func_index = Smi : : cast ( deopt_data - > get ( 1 ) ) - > value ( ) ; <nl> func_bytes = comp_mod - > module_bytes ( ) - > GetChars ( ) + <nl> - comp_mod - > module ( ) - > functions [ func_index ] . code_start_offset ; <nl> + comp_mod - > module ( ) - > functions [ func_index ] . code . offset ( ) ; <nl> } <nl> <nl> SourcePositionTableIterator source_pos_it ; <nl> mmm a / src / wasm / wasm - interpreter . cc <nl> ppp b / src / wasm / wasm - interpreter . cc <nl> class CodeMap { <nl> interpreter_code_ . reserve ( module - > functions . size ( ) ) ; <nl> for ( const WasmFunction & function : module - > functions ) { <nl> if ( function . imported ) { <nl> - DCHECK_EQ ( function . code_start_offset , function . code_end_offset ) ; <nl> + DCHECK ( ! function . code . is_set ( ) ) ; <nl> AddFunction ( & function , nullptr , nullptr ) ; <nl> } else { <nl> - const byte * code_start = module_start + function . code_start_offset ; <nl> - const byte * code_end = module_start + function . code_end_offset ; <nl> - AddFunction ( & function , code_start , code_end ) ; <nl> + AddFunction ( & function , module_start + function . code . offset ( ) , <nl> + module_start + function . code . end_offset ( ) ) ; <nl> } <nl> } <nl> } <nl> ControlTransferMap WasmInterpreter : : ComputeControlTransfersForTesting ( <nl> / / Create some dummy structures , to avoid special - casing the implementation <nl> / / just for testing . <nl> FunctionSig sig ( 0 , 0 , nullptr ) ; <nl> - WasmFunction function { & sig , 0 , 0 , 0 , 0 , 0 , 0 , false , false } ; <nl> + WasmFunction function { & sig , 0 , 0 , { 0 , 0 } , { 0 , 0 } , false , false } ; <nl> InterpreterCode code { <nl> & function , BodyLocalDecls ( zone ) , start , end , nullptr , nullptr , nullptr } ; <nl> <nl> mmm a / src / wasm / wasm - module . cc <nl> ppp b / src / wasm / wasm - module . cc <nl> void wasm : : UnpackAndRegisterProtectedInstructions ( <nl> <nl> std : : ostream & wasm : : operator < < ( std : : ostream & os , const WasmFunctionName & name ) { <nl> os < < " # " < < name . function_ - > func_index ; <nl> - if ( name . function_ - > name_offset > 0 ) { <nl> + if ( name . function_ - > name . is_set ( ) ) { <nl> if ( name . name_ . start ( ) ) { <nl> os < < " : " ; <nl> os . write ( name . name_ . start ( ) , name . name_ . length ( ) ) ; <nl> Handle < JSArray > wasm : : GetImports ( Isolate * isolate , <nl> <nl> MaybeHandle < String > import_module = <nl> WasmCompiledModule : : ExtractUtf8StringFromModuleBytes ( <nl> - isolate , compiled_module , import . module_name_offset , <nl> - import . module_name_length ) ; <nl> + isolate , compiled_module , import . module_name ) ; <nl> <nl> MaybeHandle < String > import_name = <nl> WasmCompiledModule : : ExtractUtf8StringFromModuleBytes ( <nl> - isolate , compiled_module , import . field_name_offset , <nl> - import . field_name_length ) ; <nl> + isolate , compiled_module , import . field_name ) ; <nl> <nl> JSObject : : AddProperty ( entry , module_string , import_module . ToHandleChecked ( ) , <nl> NONE ) ; <nl> Handle < JSArray > wasm : : GetExports ( Isolate * isolate , <nl> <nl> MaybeHandle < String > export_name = <nl> WasmCompiledModule : : ExtractUtf8StringFromModuleBytes ( <nl> - isolate , compiled_module , exp . name_offset , exp . name_length ) ; <nl> + isolate , compiled_module , exp . name ) ; <nl> <nl> JSObject : : AddProperty ( entry , name_string , export_name . ToHandleChecked ( ) , <nl> NONE ) ; <nl> Handle < JSArray > wasm : : GetCustomSections ( Isolate * isolate , <nl> std : : vector < Handle < Object > > matching_sections ; <nl> <nl> / / Gather matching sections . <nl> - for ( auto section : custom_sections ) { <nl> + for ( auto & section : custom_sections ) { <nl> MaybeHandle < String > section_name = <nl> WasmCompiledModule : : ExtractUtf8StringFromModuleBytes ( <nl> - isolate , compiled_module , section . name_offset , section . name_length ) ; <nl> + isolate , compiled_module , section . name ) ; <nl> <nl> if ( ! name - > Equals ( * section_name . ToHandleChecked ( ) ) ) continue ; <nl> <nl> Handle < JSArray > wasm : : GetCustomSections ( Isolate * isolate , <nl> void * allocation_base = nullptr ; / / Set by TryAllocateBackingStore <nl> size_t allocation_length = 0 ; / / Set by TryAllocateBackingStore <nl> const bool enable_guard_regions = false ; <nl> - void * memory = TryAllocateBackingStore ( isolate , section . payload_length , <nl> + void * memory = TryAllocateBackingStore ( isolate , section . payload . length ( ) , <nl> enable_guard_regions , <nl> allocation_base , allocation_length ) ; <nl> <nl> Handle < JSArray > wasm : : GetCustomSections ( Isolate * isolate , <nl> const bool is_external = false ; <nl> JSArrayBuffer : : Setup ( buffer , isolate , is_external , allocation_base , <nl> allocation_length , memory , <nl> - static_cast < int > ( section . payload_length ) ) ; <nl> + static_cast < int > ( section . payload . length ( ) ) ) ; <nl> DisallowHeapAllocation no_gc ; / / for raw access to string bytes . <nl> Handle < SeqOneByteString > module_bytes ( compiled_module - > module_bytes ( ) , <nl> isolate ) ; <nl> const byte * start = <nl> reinterpret_cast < const byte * > ( module_bytes - > GetCharsAddress ( ) ) ; <nl> - memcpy ( memory , start + section . payload_offset , section . payload_length ) ; <nl> + memcpy ( memory , start + section . payload . offset ( ) , <nl> + section . payload . length ( ) ) ; <nl> section_data = buffer ; <nl> } else { <nl> thrower - > RangeError ( " out of memory allocating custom section data " ) ; <nl> void LazyCompilationOrchestrator : : CompileFunction ( <nl> uint8_t * module_start = compiled_module - > module_bytes ( ) - > GetChars ( ) ; <nl> const WasmFunction * func = & module_env . module - > functions [ func_index ] ; <nl> wasm : : FunctionBody body { func - > sig , module_start , <nl> - module_start + func - > code_start_offset , <nl> - module_start + func - > code_end_offset } ; <nl> + module_start + func - > code . offset ( ) , <nl> + module_start + func - > code . end_offset ( ) } ; <nl> / / TODO ( wasm ) : Refactor this to only get the name if it is really needed for <nl> / / tracing / debugging . <nl> std : : string func_name ; <nl> Handle < Code > LazyCompilationOrchestrator : : CompileLazy ( <nl> int caller_func_index = <nl> Smi : : cast ( caller - > deoptimization_data ( ) - > get ( 1 ) ) - > value ( ) ; <nl> const byte * func_bytes = <nl> - module_bytes - > GetChars ( ) + compiled_module - > module ( ) <nl> - - > functions [ caller_func_index ] <nl> - . code_start_offset ; <nl> + module_bytes - > GetChars ( ) + <nl> + compiled_module - > module ( ) - > functions [ caller_func_index ] . code . offset ( ) ; <nl> for ( RelocIterator it ( * caller , RelocInfo : : kCodeTargetMask ) ; ! it . done ( ) ; <nl> it . next ( ) ) { <nl> Code * callee = <nl> mmm a / src / wasm / wasm - module . h <nl> ppp b / src / wasm / wasm - module . h <nl> <nl> # include " src / parsing / preparse - data . h " <nl> <nl> # include " src / wasm / signature - map . h " <nl> - # include " src / wasm / wasm - objects . h " <nl> # include " src / wasm / wasm - opcodes . h " <nl> <nl> namespace v8 { <nl> class WasmCompiledModule ; <nl> class WasmDebugInfo ; <nl> class WasmModuleObject ; <nl> class WasmInstanceObject ; <nl> + class WasmTableObject ; <nl> class WasmMemoryObject ; <nl> <nl> namespace compiler { <nl> struct WasmInitExpr { <nl> } <nl> } ; <nl> <nl> + / / Reference to a string in the wire bytes . <nl> + class WireBytesRef { <nl> + public : <nl> + WireBytesRef ( ) : WireBytesRef ( 0 , 0 ) { } <nl> + WireBytesRef ( uint32_t offset , uint32_t length ) <nl> + : offset_ ( offset ) , length_ ( length ) { <nl> + DCHECK_IMPLIES ( offset_ = = 0 , length_ = = 0 ) ; <nl> + DCHECK_LE ( offset_ , offset_ + length_ ) ; / / no uint32_t overflow . <nl> + } <nl> + <nl> + uint32_t offset ( ) const { return offset_ ; } <nl> + uint32_t length ( ) const { return length_ ; } <nl> + uint32_t end_offset ( ) const { return offset_ + length_ ; } <nl> + bool is_empty ( ) const { return length_ = = 0 ; } <nl> + bool is_set ( ) const { return offset_ ! = 0 ; } <nl> + <nl> + private : <nl> + uint32_t offset_ ; <nl> + uint32_t length_ ; <nl> + } ; <nl> + <nl> / / Static representation of a wasm function . <nl> struct WasmFunction { <nl> FunctionSig * sig ; / / signature of the function . <nl> uint32_t func_index ; / / index into the function table . <nl> uint32_t sig_index ; / / index into the signature table . <nl> - uint32_t name_offset ; / / offset in the module bytes of the name , if any . <nl> - uint32_t name_length ; / / length in bytes of the name . <nl> - uint32_t code_start_offset ; / / offset in the module bytes of code start . <nl> - uint32_t code_end_offset ; / / offset in the module bytes of code end . <nl> + WireBytesRef name ; / / function name , if any . <nl> + WireBytesRef code ; / / code of this function . <nl> bool imported ; <nl> bool exported ; <nl> } ; <nl> struct WasmGlobal { <nl> / / Static representation of a wasm data segment . <nl> struct WasmDataSegment { <nl> WasmInitExpr dest_addr ; / / destination memory address of the data . <nl> - uint32_t source_offset ; / / start offset in the module bytes . <nl> - uint32_t source_size ; / / end offset in the module bytes . <nl> + WireBytesRef source ; / / start offset in the module bytes . <nl> } ; <nl> <nl> / / Static representation of a wasm indirect call table . <nl> struct WasmTableInit { <nl> <nl> / / Static representation of a wasm import . <nl> struct WasmImport { <nl> - uint32_t module_name_length ; / / length in bytes of the module name . <nl> - uint32_t module_name_offset ; / / offset in module bytes of the module name . <nl> - uint32_t field_name_length ; / / length in bytes of the import name . <nl> - uint32_t field_name_offset ; / / offset in module bytes of the import name . <nl> - WasmExternalKind kind ; / / kind of the import . <nl> - uint32_t index ; / / index into the respective space . <nl> + WireBytesRef module_name ; / / module name . <nl> + WireBytesRef field_name ; / / import name . <nl> + WasmExternalKind kind ; / / kind of the import . <nl> + uint32_t index ; / / index into the respective space . <nl> } ; <nl> <nl> / / Static representation of a wasm export . <nl> struct WasmExport { <nl> - uint32_t name_length ; / / length in bytes of the exported name . <nl> - uint32_t name_offset ; / / offset in module bytes of the name to export . <nl> + WireBytesRef name ; / / exported name . <nl> WasmExternalKind kind ; / / kind of the export . <nl> uint32_t index ; / / index into the respective space . <nl> } ; <nl> struct V8_EXPORT_PRIVATE WasmModule { <nl> uint32_t num_imported_functions = 0 ; / / number of imported functions . <nl> uint32_t num_declared_functions = 0 ; / / number of declared functions . <nl> uint32_t num_exported_functions = 0 ; / / number of exported functions . <nl> - uint32_t name_offset = 0 ; / / offset in the module bytes of the name , if any . <nl> - uint32_t name_length = 0 ; / / length in bytes of the name . <nl> + WireBytesRef name = { 0 , 0 } ; / / module name , if any . <nl> / / TODO ( wasm ) : Add url here , for spec ' ed location information . <nl> std : : vector < FunctionSig * > signatures ; / / signatures in this module . <nl> std : : vector < WasmFunction > functions ; / / functions in this module . <nl> struct V8_EXPORT_PRIVATE ModuleWireBytes { <nl> } <nl> <nl> / / Get a string stored in the module bytes representing a name . <nl> - WasmName GetName ( uint32_t offset , uint32_t length ) const { <nl> - if ( length = = 0 ) return { " < ? > " , 3 } ; / / no name . <nl> - CHECK ( BoundsCheck ( offset , length ) ) ; <nl> - DCHECK_GE ( length , 0 ) ; <nl> + WasmName GetName ( WireBytesRef ref ) const { <nl> + if ( ref . is_empty ( ) ) return { " < ? > " , 3 } ; / / no name . <nl> + CHECK ( BoundsCheck ( ref . offset ( ) , ref . length ( ) ) ) ; <nl> return Vector < const char > : : cast ( <nl> - module_bytes_ . SubVector ( offset , offset + length ) ) ; <nl> + module_bytes_ . SubVector ( ref . offset ( ) , ref . end_offset ( ) ) ) ; <nl> } <nl> <nl> / / Get a string stored in the module bytes representing a function name . <nl> WasmName GetName ( const WasmFunction * function ) const { <nl> - return GetName ( function - > name_offset , function - > name_length ) ; <nl> + return GetName ( function - > name ) ; <nl> } <nl> <nl> / / Get a string stored in the module bytes representing a name . <nl> - WasmName GetNameOrNull ( uint32_t offset , uint32_t length ) const { <nl> - if ( offset = = 0 & & length = = 0 ) return { NULL , 0 } ; / / no name . <nl> - CHECK ( BoundsCheck ( offset , length ) ) ; <nl> - DCHECK_GE ( length , 0 ) ; <nl> + WasmName GetNameOrNull ( WireBytesRef ref ) const { <nl> + if ( ! ref . is_set ( ) ) return { NULL , 0 } ; / / no name . <nl> + CHECK ( BoundsCheck ( ref . offset ( ) , ref . length ( ) ) ) ; <nl> return Vector < const char > : : cast ( <nl> - module_bytes_ . SubVector ( offset , offset + length ) ) ; <nl> + module_bytes_ . SubVector ( ref . offset ( ) , ref . end_offset ( ) ) ) ; <nl> } <nl> <nl> / / Get a string stored in the module bytes representing a function name . <nl> WasmName GetNameOrNull ( const WasmFunction * function ) const { <nl> - return GetNameOrNull ( function - > name_offset , function - > name_length ) ; <nl> + return GetNameOrNull ( function - > name ) ; <nl> } <nl> <nl> / / Checks the given offset range is contained within the module bytes . <nl> struct V8_EXPORT_PRIVATE ModuleWireBytes { <nl> } <nl> <nl> Vector < const byte > GetFunctionBytes ( const WasmFunction * function ) const { <nl> - return module_bytes_ . SubVector ( function - > code_start_offset , <nl> - function - > code_end_offset ) ; <nl> + return module_bytes_ . SubVector ( function - > code . offset ( ) , <nl> + function - > code . end_offset ( ) ) ; <nl> } <nl> <nl> const byte * start ( ) const { return module_bytes_ . start ( ) ; } <nl> mmm a / src / wasm / wasm - objects . cc <nl> ppp b / src / wasm / wasm - objects . cc <nl> bool IsBreakablePosition ( Handle < WasmCompiledModule > compiled_module , <nl> BodyLocalDecls locals ( & tmp ) ; <nl> const byte * module_start = compiled_module - > module_bytes ( ) - > GetChars ( ) ; <nl> WasmFunction & func = compiled_module - > module ( ) - > functions [ func_index ] ; <nl> - BytecodeIterator iterator ( module_start + func . code_start_offset , <nl> - module_start + func . code_end_offset , & locals ) ; <nl> + BytecodeIterator iterator ( module_start + func . code . offset ( ) , <nl> + module_start + func . code . end_offset ( ) , & locals ) ; <nl> DCHECK_LT ( 0 , locals . encoded_size ) ; <nl> for ( uint32_t offset : iterator . offsets ( ) ) { <nl> if ( offset > static_cast < uint32_t > ( offset_in_func ) ) break ; <nl> void WasmSharedModuleData : : SetBreakpointsOnNewInstance ( <nl> int func_index = compiled_module - > GetContainingFunction ( position ) ; <nl> DCHECK_LE ( 0 , func_index ) ; <nl> WasmFunction & func = compiled_module - > module ( ) - > functions [ func_index ] ; <nl> - int offset_in_func = position - func . code_start_offset ; <nl> + int offset_in_func = position - func . code . offset ( ) ; <nl> WasmDebugInfo : : SetBreakpoint ( debug_info , func_index , offset_in_func ) ; <nl> } <nl> } <nl> void WasmCompiledModule : : SetGlobalsStartAddressFrom ( <nl> <nl> MaybeHandle < String > WasmCompiledModule : : ExtractUtf8StringFromModuleBytes ( <nl> Isolate * isolate , Handle < WasmCompiledModule > compiled_module , <nl> - uint32_t offset , uint32_t size ) { <nl> + WireBytesRef ref ) { <nl> / / TODO ( wasm ) : cache strings from modules if it ' s a performance win . <nl> Handle < SeqOneByteString > module_bytes ( compiled_module - > module_bytes ( ) , <nl> isolate ) ; <nl> - DCHECK_GE ( module_bytes - > length ( ) , offset ) ; <nl> - DCHECK_GE ( module_bytes - > length ( ) - offset , size ) ; <nl> + DCHECK_GE ( module_bytes - > length ( ) , ref . end_offset ( ) ) ; <nl> / / UTF8 validation happens at decode time . <nl> DCHECK ( unibrow : : Utf8 : : ValidateEncoding ( <nl> - reinterpret_cast < const byte * > ( module_bytes - > GetCharsAddress ( ) + offset ) , <nl> - size ) ) ; <nl> - DCHECK_GE ( kMaxInt , offset ) ; <nl> - DCHECK_GE ( kMaxInt , size ) ; <nl> + reinterpret_cast < const byte * > ( module_bytes - > GetCharsAddress ( ) + <nl> + ref . offset ( ) ) , <nl> + ref . length ( ) ) ) ; <nl> + DCHECK_GE ( kMaxInt , ref . offset ( ) ) ; <nl> + DCHECK_GE ( kMaxInt , ref . length ( ) ) ; <nl> return isolate - > factory ( ) - > NewStringFromUtf8SubString ( <nl> - module_bytes , static_cast < int > ( offset ) , static_cast < int > ( size ) ) ; <nl> + module_bytes , static_cast < int > ( ref . offset ( ) ) , <nl> + static_cast < int > ( ref . length ( ) ) ) ; <nl> } <nl> <nl> bool WasmCompiledModule : : IsWasmCompiledModule ( Object * obj ) { <nl> uint32_t WasmCompiledModule : : default_mem_size ( ) const { <nl> MaybeHandle < String > WasmCompiledModule : : GetModuleNameOrNull ( <nl> Isolate * isolate , Handle < WasmCompiledModule > compiled_module ) { <nl> WasmModule * module = compiled_module - > module ( ) ; <nl> - DCHECK_IMPLIES ( module - > name_offset = = 0 , module - > name_length = = 0 ) ; <nl> - if ( ! module - > name_offset ) return { } ; <nl> + if ( ! module - > name . is_set ( ) ) return { } ; <nl> return WasmCompiledModule : : ExtractUtf8StringFromModuleBytes ( <nl> - isolate , compiled_module , module - > name_offset , module - > name_length ) ; <nl> + isolate , compiled_module , module - > name ) ; <nl> } <nl> <nl> MaybeHandle < String > WasmCompiledModule : : GetFunctionNameOrNull ( <nl> MaybeHandle < String > WasmCompiledModule : : GetFunctionNameOrNull ( <nl> uint32_t func_index ) { <nl> DCHECK_LT ( func_index , compiled_module - > module ( ) - > functions . size ( ) ) ; <nl> WasmFunction & function = compiled_module - > module ( ) - > functions [ func_index ] ; <nl> - DCHECK_IMPLIES ( function . name_offset = = 0 , function . name_length = = 0 ) ; <nl> - if ( ! function . name_offset ) return { } ; <nl> + if ( ! function . name . is_set ( ) ) return { } ; <nl> return WasmCompiledModule : : ExtractUtf8StringFromModuleBytes ( <nl> - isolate , compiled_module , function . name_offset , function . name_length ) ; <nl> + isolate , compiled_module , function . name ) ; <nl> } <nl> <nl> Handle < String > WasmCompiledModule : : GetFunctionName ( <nl> Vector < const uint8_t > WasmCompiledModule : : GetRawFunctionName ( <nl> DCHECK_GT ( module ( ) - > functions . size ( ) , func_index ) ; <nl> WasmFunction & function = module ( ) - > functions [ func_index ] ; <nl> SeqOneByteString * bytes = module_bytes ( ) ; <nl> - DCHECK_GE ( bytes - > length ( ) , function . name_offset ) ; <nl> - DCHECK_GE ( bytes - > length ( ) - function . name_offset , function . name_length ) ; <nl> - return Vector < const uint8_t > ( bytes - > GetCharsAddress ( ) + function . name_offset , <nl> - function . name_length ) ; <nl> + DCHECK_GE ( bytes - > length ( ) , function . name . end_offset ( ) ) ; <nl> + return Vector < const uint8_t > ( <nl> + bytes - > GetCharsAddress ( ) + function . name . offset ( ) , <nl> + function . name . length ( ) ) ; <nl> } <nl> <nl> int WasmCompiledModule : : GetFunctionOffset ( uint32_t func_index ) { <nl> std : : vector < WasmFunction > & functions = module ( ) - > functions ; <nl> if ( static_cast < uint32_t > ( func_index ) > = functions . size ( ) ) return - 1 ; <nl> - DCHECK_GE ( kMaxInt , functions [ func_index ] . code_start_offset ) ; <nl> - return static_cast < int > ( functions [ func_index ] . code_start_offset ) ; <nl> + DCHECK_GE ( kMaxInt , functions [ func_index ] . code . offset ( ) ) ; <nl> + return static_cast < int > ( functions [ func_index ] . code . offset ( ) ) ; <nl> } <nl> <nl> int WasmCompiledModule : : GetContainingFunction ( uint32_t byte_offset ) { <nl> int WasmCompiledModule : : GetContainingFunction ( uint32_t byte_offset ) { <nl> if ( right = = 0 ) return false ; <nl> while ( right - left > 1 ) { <nl> int mid = left + ( right - left ) / 2 ; <nl> - if ( functions [ mid ] . code_start_offset < = byte_offset ) { <nl> + if ( functions [ mid ] . code . offset ( ) < = byte_offset ) { <nl> left = mid ; <nl> } else { <nl> right = mid ; <nl> int WasmCompiledModule : : GetContainingFunction ( uint32_t byte_offset ) { <nl> } <nl> / / If the found function does not contains the given position , return - 1 . <nl> WasmFunction & func = functions [ left ] ; <nl> - if ( byte_offset < func . code_start_offset | | <nl> - byte_offset > = func . code_end_offset ) { <nl> + if ( byte_offset < func . code . offset ( ) | | <nl> + byte_offset > = func . code . end_offset ( ) ) { <nl> return - 1 ; <nl> } <nl> <nl> bool WasmCompiledModule : : GetPositionInfo ( uint32_t position , <nl> WasmFunction & function = module ( ) - > functions [ func_index ] ; <nl> <nl> info - > line = func_index ; <nl> - info - > column = position - function . code_start_offset ; <nl> - info - > line_start = function . code_start_offset ; <nl> - info - > line_end = function . code_end_offset ; <nl> + info - > column = position - function . code . offset ( ) ; <nl> + info - > line_start = function . code . offset ( ) ; <nl> + info - > line_end = function . code . end_offset ( ) ; <nl> return true ; <nl> } <nl> <nl> Handle < ByteArray > GetDecodedAsmJsOffsetTable ( <nl> for ( int func = 0 ; func < num_functions ; + + func ) { <nl> std : : vector < AsmJsOffsetEntry > & func_asm_offsets = asm_offsets . val [ func ] ; <nl> if ( func_asm_offsets . empty ( ) ) continue ; <nl> - int func_offset = <nl> - wasm_funs [ num_imported_functions + func ] . code_start_offset ; <nl> + int func_offset = wasm_funs [ num_imported_functions + func ] . code . offset ( ) ; <nl> for ( AsmJsOffsetEntry & e : func_asm_offsets ) { <nl> / / Byte offsets must be strictly monotonously increasing : <nl> DCHECK_IMPLIES ( idx > 0 , func_offset + e . byte_offset > <nl> int WasmCompiledModule : : GetAsmJsSourcePosition ( <nl> <nl> DCHECK_LT ( func_index , compiled_module - > module ( ) - > functions . size ( ) ) ; <nl> uint32_t func_code_offset = <nl> - compiled_module - > module ( ) - > functions [ func_index ] . code_start_offset ; <nl> + compiled_module - > module ( ) - > functions [ func_index ] . code . offset ( ) ; <nl> uint32_t total_offset = func_code_offset + byte_offset ; <nl> <nl> / / Binary search for the total byte offset . <nl> bool WasmCompiledModule : : GetPossibleBreakpoints ( <nl> / / start_offset and end_offset are module - relative byte offsets . <nl> uint32_t start_func_index = start . GetLineNumber ( ) ; <nl> if ( start_func_index > = functions . size ( ) ) return false ; <nl> - int start_func_len = functions [ start_func_index ] . code_end_offset - <nl> - functions [ start_func_index ] . code_start_offset ; <nl> + int start_func_len = functions [ start_func_index ] . code . length ( ) ; <nl> if ( start . GetColumnNumber ( ) > start_func_len ) return false ; <nl> uint32_t start_offset = <nl> - functions [ start_func_index ] . code_start_offset + start . GetColumnNumber ( ) ; <nl> + functions [ start_func_index ] . code . offset ( ) + start . GetColumnNumber ( ) ; <nl> uint32_t end_func_index ; <nl> uint32_t end_offset ; <nl> if ( end . IsEmpty ( ) ) { <nl> / / Default : everything till the end of the Script . <nl> end_func_index = static_cast < uint32_t > ( functions . size ( ) - 1 ) ; <nl> - end_offset = functions [ end_func_index ] . code_end_offset ; <nl> + end_offset = functions [ end_func_index ] . code . end_offset ( ) ; <nl> } else { <nl> / / If end is specified : Use it and check for valid input . <nl> end_func_index = static_cast < uint32_t > ( end . GetLineNumber ( ) ) ; <nl> bool WasmCompiledModule : : GetPossibleBreakpoints ( <nl> / / next function also . <nl> if ( end . GetColumnNumber ( ) = = 0 & & end_func_index > 0 ) { <nl> - - end_func_index ; <nl> - end_offset = functions [ end_func_index ] . code_end_offset ; <nl> + end_offset = functions [ end_func_index ] . code . end_offset ( ) ; <nl> } else { <nl> if ( end_func_index > = functions . size ( ) ) return false ; <nl> end_offset = <nl> - functions [ end_func_index ] . code_start_offset + end . GetColumnNumber ( ) ; <nl> - if ( end_offset > functions [ end_func_index ] . code_end_offset ) return false ; <nl> + functions [ end_func_index ] . code . offset ( ) + end . GetColumnNumber ( ) ; <nl> + if ( end_offset > functions [ end_func_index ] . code . end_offset ( ) ) <nl> + return false ; <nl> } <nl> } <nl> <nl> bool WasmCompiledModule : : GetPossibleBreakpoints ( <nl> for ( uint32_t func_idx = start_func_index ; func_idx < = end_func_index ; <nl> + + func_idx ) { <nl> WasmFunction & func = functions [ func_idx ] ; <nl> - if ( func . code_start_offset = = func . code_end_offset ) continue ; <nl> + if ( func . code . length ( ) = = 0 ) continue ; <nl> <nl> BodyLocalDecls locals ( & tmp ) ; <nl> - BytecodeIterator iterator ( module_start + func . code_start_offset , <nl> - module_start + func . code_end_offset , & locals ) ; <nl> + BytecodeIterator iterator ( module_start + func . code . offset ( ) , <nl> + module_start + func . code . end_offset ( ) , & locals ) ; <nl> DCHECK_LT ( 0u , locals . encoded_size ) ; <nl> for ( uint32_t offset : iterator . offsets ( ) ) { <nl> - uint32_t total_offset = func . code_start_offset + offset ; <nl> + uint32_t total_offset = func . code . offset ( ) + offset ; <nl> if ( total_offset > = end_offset ) { <nl> DCHECK_EQ ( end_func_index , func_idx ) ; <nl> break ; <nl> bool WasmCompiledModule : : SetBreakPoint ( <nl> int func_index = compiled_module - > GetContainingFunction ( * position ) ; <nl> if ( func_index < 0 ) return false ; <nl> WasmFunction & func = compiled_module - > module ( ) - > functions [ func_index ] ; <nl> - int offset_in_func = * position - func . code_start_offset ; <nl> + int offset_in_func = * position - func . code . offset ( ) ; <nl> <nl> / / According to the current design , we should only be called with valid <nl> / / breakable positions . <nl> mmm a / src / wasm / wasm - objects . h <nl> ppp b / src / wasm / wasm - objects . h <nl> <nl> # include " src / objects / script . h " <nl> # include " src / trap - handler / trap - handler . h " <nl> # include " src / wasm / wasm - limits . h " <nl> + # include " src / wasm / wasm - module . h " <nl> <nl> namespace v8 { <nl> namespace internal { <nl> namespace wasm { <nl> class InterpretedFrame ; <nl> - struct WasmModule ; <nl> - struct WasmInstance ; <nl> class WasmInterpreter ; <nl> } <nl> <nl> class WasmCompiledModule : public FixedArray { <nl> / / string . <nl> static MaybeHandle < String > ExtractUtf8StringFromModuleBytes ( <nl> Isolate * isolate , Handle < WasmCompiledModule > compiled_module , <nl> - uint32_t offset , uint32_t size ) ; <nl> + wasm : : WireBytesRef ref ) ; <nl> <nl> / / Get a list of all possible breakpoints within a given range of this module . <nl> bool GetPossibleBreakpoints ( const debug : : Location & start , <nl> mmm a / test / cctest / wasm / test - wasm - breakpoints . cc <nl> ppp b / test / cctest / wasm / test - wasm - breakpoints . cc <nl> Handle < JSObject > MakeFakeBreakpoint ( Isolate * isolate , int position ) { <nl> void SetBreakpoint ( WasmRunnerBase & runner , int function_index , int byte_offset , <nl> int expected_set_byte_offset = - 1 ) { <nl> int func_offset = <nl> - runner . module ( ) . module - > functions [ function_index ] . code_start_offset ; <nl> + runner . module ( ) . module - > functions [ function_index ] . code . offset ( ) ; <nl> int code_offset = func_offset + byte_offset ; <nl> if ( expected_set_byte_offset = = - 1 ) expected_set_byte_offset = byte_offset ; <nl> Handle < WasmInstanceObject > instance = runner . module ( ) . instance_object ( ) ; <nl> mmm a / test / cctest / wasm / wasm - run - utils . h <nl> ppp b / test / cctest / wasm / wasm - run - utils . h <nl> class TestingModule : public ModuleEnv { <nl> module_ . functions . reserve ( kMaxFunctions ) ; <nl> } <nl> uint32_t index = static_cast < uint32_t > ( module - > functions . size ( ) ) ; <nl> - module_ . functions . push_back ( { sig , index , 0 , 0 , 0 , 0 , 0 , false , false } ) ; <nl> + module_ . functions . push_back ( { sig , index , 0 , { 0 , 0 } , { 0 , 0 } , false , false } ) ; <nl> if ( name ) { <nl> Vector < const byte > name_vec = Vector < const byte > : : cast ( CStrVector ( name ) ) ; <nl> - module_ . functions . back ( ) . name_offset = AddBytes ( name_vec ) ; <nl> - module_ . functions . back ( ) . name_length = name_vec . length ( ) ; <nl> + module_ . functions . back ( ) . name = { <nl> + AddBytes ( name_vec ) , static_cast < uint32_t > ( name_vec . length ( ) ) } ; <nl> } <nl> instance - > function_code . push_back ( code ) ; <nl> if ( interpreter_ ) { <nl> class WasmFunctionCompiler : private GraphAndBuilders { <nl> <nl> CHECK_GE ( kMaxInt , end - start ) ; <nl> int len = static_cast < int > ( end - start ) ; <nl> - function_ - > code_start_offset = <nl> - testing_module_ - > AddBytes ( Vector < const byte > ( start , len ) ) ; <nl> - function_ - > code_end_offset = function_ - > code_start_offset + len ; <nl> + function_ - > code = { <nl> + testing_module_ - > AddBytes ( Vector < const byte > ( start , len ) ) , <nl> + static_cast < uint32_t > ( len ) } ; <nl> <nl> if ( interpreter_ ) { <nl> / / Add the code to the interpreter . <nl> mmm a / test / unittests / wasm / function - body - decoder - unittest . cc <nl> ppp b / test / unittests / wasm / function - body - decoder - unittest . cc <nl> class TestModuleEnv : public ModuleEnv { <nl> mod . functions . push_back ( { sig , / / sig <nl> 0 , / / func_index <nl> 0 , / / sig_index <nl> - 0 , / / name_offset <nl> - 0 , / / name_length <nl> - 0 , / / code_start_offset <nl> - 0 , / / code_end_offset <nl> + { 0 , 0 } , / / name <nl> + { 0 , 0 } , / / code <nl> false , / / import <nl> false } ) ; / / export <nl> CHECK ( mod . functions . size ( ) < = 127 ) ; <nl> mmm a / test / unittests / wasm / module - decoder - unittest . cc <nl> ppp b / test / unittests / wasm / module - decoder - unittest . cc <nl> TEST_F ( WasmModuleVerifyTest , OneDataSegment ) { <nl> <nl> EXPECT_EQ ( WasmInitExpr : : kI32Const , segment - > dest_addr . kind ) ; <nl> EXPECT_EQ ( 0x9bbaa , segment - > dest_addr . val . i32_const ) ; <nl> - EXPECT_EQ ( kDataSegmentSourceOffset , segment - > source_offset ) ; <nl> - EXPECT_EQ ( 3u , segment - > source_size ) ; <nl> + EXPECT_EQ ( kDataSegmentSourceOffset , segment - > source . offset ( ) ) ; <nl> + EXPECT_EQ ( 3u , segment - > source . length ( ) ) ; <nl> } <nl> <nl> EXPECT_OFF_END_FAILURE ( data , 14 , sizeof ( data ) ) ; <nl> TEST_F ( WasmModuleVerifyTest , TwoDataSegments ) { <nl> <nl> EXPECT_EQ ( WasmInitExpr : : kI32Const , s0 - > dest_addr . kind ) ; <nl> EXPECT_EQ ( 0x7ffee , s0 - > dest_addr . val . i32_const ) ; <nl> - EXPECT_EQ ( kDataSegment0SourceOffset , s0 - > source_offset ) ; <nl> - EXPECT_EQ ( 4u , s0 - > source_size ) ; <nl> + EXPECT_EQ ( kDataSegment0SourceOffset , s0 - > source . offset ( ) ) ; <nl> + EXPECT_EQ ( 4u , s0 - > source . length ( ) ) ; <nl> <nl> EXPECT_EQ ( WasmInitExpr : : kI32Const , s1 - > dest_addr . kind ) ; <nl> EXPECT_EQ ( 0x6ddcc , s1 - > dest_addr . val . i32_const ) ; <nl> - EXPECT_EQ ( kDataSegment1SourceOffset , s1 - > source_offset ) ; <nl> - EXPECT_EQ ( 10u , s1 - > source_size ) ; <nl> + EXPECT_EQ ( kDataSegment1SourceOffset , s1 - > source . offset ( ) ) ; <nl> + EXPECT_EQ ( 10u , s1 - > source . length ( ) ) ; <nl> } <nl> <nl> EXPECT_OFF_END_FAILURE ( data , 14 , sizeof ( data ) ) ; <nl> TEST_F ( WasmFunctionVerifyTest , Ok_v_v_empty ) { <nl> WasmFunction * function = result . val . get ( ) ; <nl> EXPECT_EQ ( 0u , function - > sig - > parameter_count ( ) ) ; <nl> EXPECT_EQ ( 0u , function - > sig - > return_count ( ) ) ; <nl> - EXPECT_EQ ( 0u , function - > name_offset ) ; <nl> + EXPECT_EQ ( 0u , function - > name . offset ( ) ) ; <nl> EXPECT_EQ ( static_cast < uint32_t > ( SIZEOF_SIG_ENTRY_v_v ) , <nl> - function - > code_start_offset ) ; <nl> - EXPECT_EQ ( sizeof ( data ) , function - > code_end_offset ) ; <nl> + function - > code . offset ( ) ) ; <nl> + EXPECT_EQ ( sizeof ( data ) , function - > code . end_offset ( ) ) ; <nl> / / TODO ( titzer ) : verify encoding of local declarations <nl> } <nl> } <nl> TEST_F ( WasmModuleVerifyTest , Section_Name_No_UTF8 ) { <nl> class WasmModuleCustomSectionTest : public TestWithIsolateAndZone { <nl> public : <nl> void CheckSections ( const byte * module_start , const byte * module_end , <nl> - CustomSectionOffset expected [ ] , size_t num_expected ) { <nl> + const CustomSectionOffset * expected , size_t num_expected ) { <nl> / / Add the WASM magic and version number automatically . <nl> size_t size = static_cast < size_t > ( module_end - module_start ) ; <nl> byte header [ ] = { WASM_MODULE_HEADER } ; <nl> class WasmModuleCustomSectionTest : public TestWithIsolateAndZone { <nl> CHECK_EQ ( num_expected , custom_sections . size ( ) ) ; <nl> <nl> for ( size_t i = 0 ; i < num_expected ; i + + ) { <nl> - EXPECT_EQ ( expected [ i ] . section_start , custom_sections [ i ] . section_start ) ; <nl> - EXPECT_EQ ( expected [ i ] . name_offset , custom_sections [ i ] . name_offset ) ; <nl> - EXPECT_EQ ( expected [ i ] . name_length , custom_sections [ i ] . name_length ) ; <nl> - EXPECT_EQ ( expected [ i ] . payload_offset , custom_sections [ i ] . payload_offset ) ; <nl> - EXPECT_EQ ( expected [ i ] . payload_length , custom_sections [ i ] . payload_length ) ; <nl> - EXPECT_EQ ( expected [ i ] . section_length , custom_sections [ i ] . section_length ) ; <nl> + EXPECT_EQ ( expected [ i ] . section . offset ( ) , <nl> + custom_sections [ i ] . section . offset ( ) ) ; <nl> + EXPECT_EQ ( expected [ i ] . section . length ( ) , <nl> + custom_sections [ i ] . section . length ( ) ) ; <nl> + EXPECT_EQ ( expected [ i ] . name . offset ( ) , custom_sections [ i ] . name . offset ( ) ) ; <nl> + EXPECT_EQ ( expected [ i ] . name . length ( ) , custom_sections [ i ] . name . length ( ) ) ; <nl> + EXPECT_EQ ( expected [ i ] . payload . offset ( ) , <nl> + custom_sections [ i ] . payload . offset ( ) ) ; <nl> + EXPECT_EQ ( expected [ i ] . payload . length ( ) , <nl> + custom_sections [ i ] . payload . length ( ) ) ; <nl> } <nl> } <nl> } ; <nl> <nl> TEST_F ( WasmModuleCustomSectionTest , ThreeUnknownSections ) { <nl> - static const byte data [ ] = { <nl> + static constexpr byte data [ ] = { <nl> U32_LE ( kWasmMagic ) , / / - - <nl> U32_LE ( kWasmVersion ) , / / - - <nl> SECTION ( Unknown , 4 ) , 1 , ' X ' , 17 , 18 , / / - - <nl> TEST_F ( WasmModuleCustomSectionTest , ThreeUnknownSections ) { <nl> SECTION ( Unknown , 8 ) , 5 , ' o ' , ' t ' , ' h ' , ' e ' , ' r ' , 7 , 8 , / / - - <nl> } ; <nl> <nl> - static CustomSectionOffset expected [ ] = { <nl> - / / sec_start , nm_offset , nm_length , py_offset , py_length , sec_length <nl> - { 10 , 11 , 1 , 12 , 2 , 4 } , / / - - <nl> - { 16 , 17 , 3 , 20 , 5 , 9 } , / / - - <nl> - { 27 , 28 , 5 , 33 , 2 , 8 } , / / - - <nl> + static const CustomSectionOffset expected [ ] = { <nl> + / / section , name , payload <nl> + { { 10 , 4 } , { 11 , 1 } , { 12 , 2 } } , / / - - <nl> + { { 16 , 9 } , { 17 , 3 } , { 20 , 5 } } , / / - - <nl> + { { 27 , 8 } , { 28 , 5 } , { 33 , 2 } } , / / - - <nl> } ; <nl> <nl> CheckSections ( data , data + sizeof ( data ) , expected , arraysize ( expected ) ) ; <nl> TEST_F ( WasmModuleCustomSectionTest , TwoKnownTwoUnknownSections ) { <nl> 8 , / / - - <nl> } ; <nl> <nl> - static CustomSectionOffset expected [ ] = { <nl> - / / sec_start , nm_offset , nm_length , py_offset , py_length , sec_length <nl> - { 19 , 20 , 1 , 21 , 2 , 4 } , / / - - <nl> - { 29 , 30 , 5 , 35 , 2 , 8 } , / / - - <nl> + static const CustomSectionOffset expected [ ] = { <nl> + / / section , name , payload <nl> + { { 19 , 4 } , { 20 , 1 } , { 21 , 2 } } , / / - - <nl> + { { 29 , 8 } , { 30 , 5 } , { 35 , 2 } } , / / - - <nl> } ; <nl> <nl> CheckSections ( data , data + sizeof ( data ) , expected , arraysize ( expected ) ) ; <nl>
[ wasm ] [ cleanup ] Introduce WireBytesRef struct
v8/v8
07b115f854d6fe6e0a05c0d9e7143cb9580dfe28
2017-06-12T12:57:21Z