├── CI ├── main.sh ├── nuker.py ├── replacer.py ├── rom.py ├── start.sh ├── tgt.py └── upload.sh ├── LICENSE ├── README.md ├── build.py ├── compilation.py ├── gcc-builder.sh ├── incremental.py ├── linux-android-compile.sh ├── personal ├── docker-compose.yml ├── dockersetup.sh ├── download.py ├── jenkins-material-theme.css ├── mc-backup.sh ├── release.py └── setup.sh ├── presets.py ├── production.py ├── push_repo.py ├── sftp.py └── sshtunnel.ps1 /CI/main.sh: -------------------------------------------------------------------------------- 1 | # Copyright (C) Dhruv Gera 2 | echo -e "AUTOMATER by Dhruv Gera"; 3 | export BOT_API_KEY="your key goes here" 4 | export CHAT_ID="chat it goes here" 5 | mv $PWD/scripts/CI/upload.sh $HOME/cygnus/ 6 | mv $PWD/scripts/CI/replacer.py $HOME/cygnus/ 7 | mv $PWD/scripts/CI/start.sh $HOME/cygnus/ 8 | mv $PWD/scripts/CI/rom.py $HOME/cygnus/ 9 | mv $PWD/scripts/CI/tgt.py $HOME/cygnus/ 10 | mv $PWD/scripts/CI/nuker.py $HOME/cygnus/ 11 | sed -i "s/device_name_here/$devicename/g" $HOME/cygnus/replacer.py 12 | sed -i "s/device_name_here/$devicename/g" $HOME/cygnus/nuker.py 13 | sed -i "s/sampledevice/$devicename/g" $HOME/cygnus/rom.py 14 | sed -i "s/sampledevice/$devicename/g" $HOME/cygnus/tgt.py 15 | python3 $HOME/cygnus/replacer.py 16 | wait 17 | bash $HOME/cygnus/start.sh 18 | wait 19 | cd $HOME/cygnus/ 20 | function globexists { 21 | test -e "$1" -o -L "$1" 22 | } 23 | if ! globexists Cygnus* ; then 24 | echo -e "Build failed :p"; 25 | function SendMsg() { 26 | curl -s -X POST https://api.telegram.org/bot$BOT_API_KEY/sendMessage -d "parse_mode=markdown" -d text="$1" -d chat_id=$CHAT_ID 1> /dev/null 27 | } 28 | SendMsg "Build has failed! Check the logs please"; 29 | grep -iE 'crash|error|fail|fatal' "log.txt" &> "trimmed.txt" 30 | curl -F chat_id="$CHAT_ID" -F document=@"trimmed.txt" -F caption="Woah, I trimmed them for you" https://api.telegram.org/bot$BOT_API_KEY/sendDocument 31 | cd $HOME/cygnus/scripts/CI/ 32 | else 33 | python3 $HOME/cygnus/rom.py 34 | wait 35 | fi 36 | sed -i "s/$devicename/device_name_here/g" $HOME/cygnus/replacer.py 37 | sed -i "s/$devicename/sampledevice/g" $HOME/cygnus/start.sh 38 | sed -i "s/$devicename/sampledevice/g" $HOME/cygnus/rom.py 39 | sed -i "s/$devicename/sampledevice/g" $HOME/cygnus/tgt.py 40 | cd $HOME/cygnus 41 | . b*/e* && make clean 42 | rm log.txt 43 | rm *md5sum 44 | python3 $HOME/cygnus/nuker.py 45 | sed -i "s/$devicename/device_name_here/g" $HOME/cygnus/nuker.py 46 | rm -rf .repo/local_manifests trimmed.txt 47 | -------------------------------------------------------------------------------- /CI/nuker.py: -------------------------------------------------------------------------------- 1 | import json,glob,os 2 | 3 | device_name = "device_name_here" 4 | 5 | path_to_dep = glob.glob(f"device/*/{device_name}/cygnus.dependencies")[0] 6 | 7 | def nuke(): 8 | with open(path_to_dep) as file: 9 | json_data = json.loads(file.read()) 10 | for repos in json_data: 11 | os.system(f"rm -rf {repos['target_path']}") 12 | 13 | nuke() 14 | -------------------------------------------------------------------------------- /CI/replacer.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) Dhruv Gera 2 | import os 3 | import time 4 | import glob 5 | import subprocess 6 | import select 7 | devicename="device_name_here" 8 | 9 | fin = open("start.sh", "rt") 10 | data = fin.read() 11 | data = data.replace('sampledevice', devicename) 12 | fin.close() 13 | 14 | fin = open("start.sh", "wt") 15 | fin.write(data) 16 | fin.close() 17 | 18 | -------------------------------------------------------------------------------- /CI/rom.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2020 Dhruv Gera 2 | import subprocess 3 | import select 4 | import os 5 | import sys 6 | import glob 7 | 8 | # Device name is here for rom builds, as we need it in the out folder's name 9 | devicename="sampledevice" 10 | 11 | # Largest file finder 12 | objects = os.listdir(".") # Replace with the dir you want to search in 13 | 14 | sofar = 0 15 | name = "" 16 | 17 | for item in objects: 18 | size = os.path.getsize(item) 19 | if size > sofar: 20 | sofar = size 21 | name = item 22 | os.environ["largest"] = name 23 | os.system("$PWD/upload.sh") 24 | os.system("rm $largest") 25 | -------------------------------------------------------------------------------- /CI/start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Copyright (C) Dhruv Gera 3 | export USE_NINJA=true 4 | export USE_CCACHE=1 5 | export CCACHE_EXEC=$(command -v ccache) 6 | export CCACHE_BASEDIR="$HOME/.ccache" 7 | . b*/e* 8 | lunch cygnus_sampledevice-userdebug 9 | function SendMsg() { 10 | curl -s -X POST https://api.telegram.org/bot$BOT_API_KEY/sendMessage -d "parse_mode=markdown" -d text="$1" -d chat_id=$CHAT_ID 1> /dev/null 11 | } 12 | SendMsg "Build scheduled for sampledevice started"; 13 | make cygnus -j32 | tee log.txt 14 | 15 | -------------------------------------------------------------------------------- /CI/tgt.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2020 Dhruv Gera 2 | import subprocess 3 | import select 4 | import os 5 | import pysftp 6 | import sys 7 | import glob 8 | 9 | usr=os.environ["SF_USR"] 10 | passw=os.environ["SF_PASS"] 11 | # Your particulars for accessing the sftp client 12 | myHostname = "frs.sourceforge.net" 13 | myUsername = usr 14 | myPassword = passw 15 | 16 | # Device name is here for rom builds, as we need it in the out folder's name 17 | devicename="sampledevice" 18 | os.system("cd out/target/product/sampledevice/obj/PACKAGING/target_files_intermediates/ && rm -R -- */ && rm *list ") 19 | 20 | # File finder 21 | d="out/target/product/"+devicename+"/obj/PACKAGING/target_files_intermediates" 22 | for path in os.listdir(d): 23 | full_path = os.path.join(d, path) 24 | if os.path.isfile(full_path): 25 | print(full_path) 26 | 27 | head, tail = os.path.split(full_path) 28 | os.environ["largest"] = tail 29 | 30 | # Sourceforge or any other sftp client uploader script 31 | 32 | with pysftp.Connection(host=myHostname, username=myUsername, password=myPassword) as sftp: 33 | print("Connection successful") 34 | 35 | # Switch to a remote directory 36 | sftp.cwd('/home/pfs/project/cygnus-android/test/') # Add your dir here 37 | # Obtain structure of the remote directory 38 | directory_structure = sftp.listdir_attr() 39 | 40 | localFilePath = (full_path) # The path where your file is stored on your drive 41 | remoteFilePath = (tail) # The path where you want to upload 42 | sftp.put(localFilePath, remoteFilePath) 43 | 44 | os.system("$PWD/upload.sh") 45 | -------------------------------------------------------------------------------- /CI/upload.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Copyright (C) Dhruv Gera 3 | function transfer { 4 | zipname="$(echo $1 | awk -F '/' '{print $NF}')"; 5 | url="$(curl -# -T $1 http://transfer.sh -H "Max-Downloads: 1")"; 6 | printf '\n'; 7 | echo -e "Download ${zipname} at ${url}"; 8 | curl -s -X POST https://api.telegram.org/bot$BOT_API_KEY/sendMessage -d text="Download build at: $url" -d chat_id=$CHAT_ID 9 | } 10 | function bashupload { 11 | zipname="$(echo $1 | awk -F '/' '{print $NF}')"; 12 | url="$(curl -# -T $1 https://bashupload.com)"; 13 | printf '\n'; 14 | echo -e "Download ${zipname} at this alternative URL: ${url}"; 15 | curl -s -X POST https://api.telegram.org/bot$BOT_API_KEY/sendMessage -d text="Download build at this alternative URL: $url" -d chat_id=$CHAT_ID 16 | } 17 | transfer $largest 18 | # bashupload $largest 19 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # custom_python_scripts ( bash too ) 2 | Python scripts written by me to automate ROM compilation and upload them. Also automate mundane tasks like pushing loads of repos, cron jobs, backups etc. 3 | 4 | # CI (AUTOMATER): 5 | A combination of various programs, with the addition of few variables like CHAT_ID etc. , this can do: 6 | 7 | - Trigger the build of your ROM 8 | - Send message about the build status 9 | - Upload the build and target files to any SFTP client 10 | - Send you the direct download links 11 | - Send the build log 12 | - Upload builds to CLI services and send links to Telegram 13 | - If the build fails, abort other statements, and send you trimmed build logs 14 | - Clean everything and restore the server to the previous state 15 | - Can be integrated with Jenkins to provide 1 click builds 16 | - Some other miscellanous functionality 17 | 18 | 19 | # production.py : 20 | [Broken and depreceated, please use CI (Automater)] 21 | A program to build for many devices in 1 go and ensure dependencies and send builds via Telegram bot API and other features. 22 | 23 | # sftp.py : 24 | A python program to find the largest file in your requested directory and automatic uploads to sftp clients such as sourceforge. 25 | To make it work, ensure that pysftp is installed by running pip3 install pysftp 26 | 27 | # incremental.py : 28 | A program to generate incremental zips automatically for ROM updates. 29 | 30 | # linux-android-compile.sh : 31 | 32 | Yeah, I know it's bash. A simple program which does the following stuff: 33 | 34 | - Send the build and stats to Telegram in a nice way 35 | - Upload build logs and trim them if the Build fails 36 | - Inform about build starting, the last commit etc. 37 | - Zipping the compiled image 38 | - Make your life a lot easier by taking care of all build steps 39 | - Cleans up the directory afterwards 40 | - Also can upload builds to transfer.sh, if you want it to 41 | - Some other miscellaneous stuff 42 | 43 | # sshtunnel.ps1 : 44 | 45 | Yes, powershell is also here now 46 | 47 | - Reverse ssh tunnel in background 48 | - Forward multiple ports 49 | - Kill older ports connection in case connection suddenly dies and remote server ports are stuck 50 | - Make sure to enable Gatewayports and clientaliveinterval in sshd_config to prevent death on idle 51 | - Run this on boot with Task Scheduler to automate the entire thing 52 | -------------------------------------------------------------------------------- /build.py: -------------------------------------------------------------------------------- 1 | import os as e 2 | import time 3 | import glob 4 | import subprocess 5 | import select 6 | 7 | #cmd = subprocess.Popen(['bash'], stdin=subprocess.PIPE, stdout=subprocess.PIPE) 8 | 9 | 10 | print("ROM Builder script by: ") 11 | print(" ______ __ __ ______ __ __ __ __ _______ _______ ______ _______ ") 12 | print("| | | | | || _ | | | | || | | | | || || _ | | _ |") 13 | print("| _ || |_| || | || | | | || |_| | | ___|| ___|| | || | |_| |") 14 | print("| | | || || |_||_ | |_| || | | | __ | |___ | |_||_ | |") 15 | print("| |_| || || __ || || | | || || ___|| __ || |") 16 | print("| || _ || | | || | | | | |_| || |___ | | | || _ |") 17 | print("|______| |__| |__||___| |_||_______| |___| |_______||_______||___| |_||__| |__|") 18 | print("")#I know that I can use the newline character, but yeah, I prefer this style of coding :) 19 | 20 | q=input("Select device: \n 1. Santoni \n 2. To be filled \n ") 21 | 22 | #Largest file finder code 23 | try: 24 | chex2=open("largest.py") 25 | chex2.close() 26 | except: 27 | codefs='''import os, glob 28 | largest = sorted( (os.path.getsize(s), s) for s in glob.glob('out/target/product/q/*.zip') )[-1][1] 29 | os.environ["largest"] = largest 30 | os.system("gdrive upload $largest") 31 | import subprocess 32 | import select 33 | cmd = subprocess.Popen(['bash'], stdin=subprocess.PIPE, stdout=subprocess.PIPE) 34 | command = "gdrive upload $largest" 35 | cmd.stdin.write(command) 36 | cmd.stdin.flush() # Must include this to ensure data is passed to child process 37 | if ready: 38 | result = cmd.stdout.readline() 39 | os.environ["link"]= result 40 | function tg_SendMsg() { 41 | curl -s -X POST https://api.telegram.org/bot$BOT_API_KEY/sendMessage -d "parse_mode=markdown" -d text="$1 " -d chat_id=$CHAT_ID} 42 | tg_SendMsg "$link Enjoy your freshly cooked ROM!!!!"''' 43 | saveFile2=open("largest.py",'w') 44 | saveFile2.write(str(codefs)) 45 | saveFile2.close() 46 | rep = open("largest.py").read() 47 | rep = rep.replace('q',q) 48 | with open('largest.py', 'w') as file: 49 | file.write(rep) 50 | 51 | try: 52 | chexlast=pen("start.sh") 53 | chexlast.close() 54 | except: 55 | buildcode='''#!/bin/bash 56 | . b*/e* 57 | lunch cerberus_q-userdebug 58 | make cerberus -j$(nproc --all)''' 59 | saves=open("start.sh",'w') 60 | saves.write(str(buildcode)) 61 | saves.close() 62 | fixx = open("start.sh").read() 63 | fixx = fixx.replace('q',q) 64 | with open("start.sh",'w') as file: 65 | file.write(fixx) 66 | '''try: 67 | chex3=open("upload.sh") 68 | chex3.close() 69 | except: 70 | usr=input("Enter your sourceforge username: ") 71 | codeup='sftp usr@frs.sourceforge.net' 72 | saveFile3=open("upload.sh",'w') 73 | saveFile3.write(str(codeup)) 74 | saveFile3.close() 75 | zz = open("upload.sh").read() 76 | zz.replace("usr",usr) 77 | ''' 78 | #SF uploader code 79 | '''try: 80 | check=open("sf.sh") 81 | check.close 82 | except: 83 | writeme3=''spawn ./upload.sh 84 | expect "Are you sure you want to continue connecting (yes/no)?\r" 85 | send -- "yes\r" 86 | expect "Password:\r" 87 | send -- "pswd\r" 88 | expect "sftp>\r" 89 | send -- "put largest" 90 | function tg_SendMsg() { 91 | curl -s -X POST https://api.telegram.org/bot$BOT_API_KEY/sendMessage -d "parse_mode=markdown" -d text="$1 " -d chat_id=$CHAT_ID} 92 | tg_SendMsg "Zip upload done!!!"''#Create largest.py to find out the largest file in a folder(Done, useless coment) 93 | pswd=input("Enter your sourceforge password: ") 94 | saveFile=open("sf.sh",'w')#Create upload.sh to start all this chain reaction 95 | saveFile.write(str(writeme3)) 96 | saveFile.close()#Shift all this code to beginning as this will be used for every device 97 | z = open("sf.sh").read() 98 | z.replace("pswd",pswd) 99 | ''' 100 | 101 | 102 | print("Checking dependencies now!!!") 103 | 104 | if (q=="Santoni" or "santoni"): 105 | try: 106 | e.system("cd device/xiaomi/santoni") 107 | except: 108 | print("Device tree absent! Are you drunk? Cloning now!!") 109 | e.system("git clone https://github.com/Dhruvgera/device_xiaomi_santoni.git device/xiaomi/santoni") 110 | 111 | try: 112 | check=open("vendor/xiaomi/santoni/santoni-vendor.mk") 113 | check.close() 114 | except: 115 | print("Vendor tree absent! Go wash your face, you noob! Cloning now!!") 116 | e.system("git clone https://github.com/Dhruvgera/vendor_santoni.git vendor/xiaomi") 117 | 118 | try: 119 | e.system("cd kernel/xiaomi/msm8937") 120 | except: 121 | print("Kernel tree absent! You pathetic person? Cloning now!!") 122 | e.system("git clone https://github.com/Dhruvgera/RockstarKernel_r4x.git kernel/xiaomi/msm8937") 123 | 124 | print("All dependencies are there!") 125 | print("Building rom now!!!") 126 | e.system("export USE_CCACHE=1") 127 | e.system("prebuilts/misc/linux-x86/ccache/ccache -M 100G") 128 | e.system("export CCACHE_COMPRESS=1") 129 | '''command = "bash build/envsetup.sh && " 130 | command = bytes(command, 'utf-8') 131 | cmd.stdin.write(command) 132 | cmd.stdin.flush() # Must include this to ensure data is passed to child process 133 | command = "lunch cerberus_santoni-userdebug" 134 | command = str.encode(command) 135 | cmd.stdin.write(command) 136 | cmd.stdin.flush() 137 | command = "make cerberus -j$(nproc --all)" 138 | command= str.encode(command) 139 | cmd.stdin.write(command) 140 | cmd.stdin.flush()''' 141 | saves=open("start.sh",'w') 142 | saves.write(str(buildcode)) 143 | saves.close() 144 | fixx = open("start.sh").read() 145 | fixx = fixx.replace('q',q) 146 | with open("start.sh",'w') as file: 147 | file.write(fixx) 148 | # e.system("./start.sh") 149 | # subprocess.call(['. b*/e* && lunch cerberus_santoni-userdebug && make cerberus -j$(nproc --all)']) 150 | # subprocess.call(['./start.sh']) 151 | process = subprocess.Popen('start.sh', shell=True, stdout=subprocess.PIPE) 152 | process.wait() 153 | e.system("python3 largest.py") 154 | 155 | -------------------------------------------------------------------------------- /compilation.py: -------------------------------------------------------------------------------- 1 | #ROM compilation personalised python prgramme maker 2 | import os as e 3 | import time 4 | rom_name=input("Enter ROM name (In lowercase): ") 5 | print(rom_name) 6 | device_name=input("Enter device name (In lowercase): ") 7 | print(device_name) 8 | oem_name=input("Enter device manufacturer's name (In lowercase): ") 9 | print(oem_name) 10 | device_kernel_name=input("Enter your device chipset's codename: ") 11 | print(device_kernel_name) 12 | vt_link=input("Enter your vendor tree link: ") 13 | print(vt_link) 14 | kt_link=input("Enter your kernel tree link: ") 15 | print(kt_link) 16 | dt_link=input("Enter your device tree link: ") 17 | print(dt_link) 18 | 19 | 20 | 21 | 22 | #Main compilation script 23 | writeme='''import os as e 24 | print("Checking dependencies...") 25 | try: 26 | check=open("device/oem2_name/device2_name'/rom2_name_device2_name.mk'") 27 | check.close() 28 | except: 29 | print("Device tree absent! Are you drunk? Cloning now!!") 30 | e.system("git clone dt2_link") 31 | 32 | try: 33 | check=open("vendor/oem2_name/device2_name/device2_name-vendor.mk") 34 | check.close() 35 | except: 36 | print("Vendor tree absent! Go wash your face, you noob! Cloning now!!") 37 | e.system("git clone vt2_link") 38 | 39 | try: 40 | check=open("kernel/oem2_name/device2_kernel_name/device2_name_defconfig") 41 | check.close() 42 | except: 43 | print("Kernel tree absent! You pathetic person? Cloning now!!") 44 | e.system("git clone kt2_link") 45 | 46 | print("All dependencies are done!") 47 | 48 | #Begin ROM compilation 49 | 50 | print("Building ROM now!") 51 | e.system("export USE_CCACHE=1") 52 | e.system("prebuilts/misc/linux-x86/ccache/ccache -M 100G") 53 | e.system("export CCACHE_COMPRESS=1") 54 | e.system(". b*/e*") 55 | e.system("'lunch rom2_name_device2_name-userdebug") 56 | e.system("make -j$(nproc --all)") 57 | 58 | try: 59 | romchex=open("'out/target/product/'+'device2_name'.strip()+'/'+'rom2_name'.strip()+'*'") 60 | romchex.close() 61 | e.system("bash uploader.sh") 62 | except: 63 | try: 64 | time.sleep(3600) 65 | romchex=open("'out/target/product/'+'device2_name'.strip()+'/'+'rom2_name'.strip()+'*'") 66 | romchex.close() 67 | e.system("bash uploader.sh") 68 | except: 69 | try: 70 | time.sleep(3600) 71 | romchex=open("'out/target/product/'+'device2_name'.strip()+'/'+'rom2_name'.strip()+'*'") 72 | romchex.close() 73 | e.system("bash uploader.sh") 74 | except: 75 | try: 76 | time.sleep(3600) 77 | romchex=open("'out/target/product/'+'device2_name'.strip()+'/'+'rom2_name'.strip()+'*'") 78 | romchex.close() 79 | e.system("bash uploader.sh") 80 | except: 81 | try: 82 | time.sleep(3600) 83 | romchex=open("'out/target/product/'+'device2_name'.strip()+'/'+'rom2_name'.strip()+'*'") 84 | romchex.close() 85 | e.system("bash uploader.sh") 86 | except: 87 | try: 88 | time.sleep(3600) 89 | romchex=open("'out/target/product/'+'device2_name'.strip()+'/'+'rom2_name'.strip()+'*'") 90 | romchex.close() 91 | e.system("bash uploader.sh") 92 | except: 93 | try: 94 | time.sleep(3600) 95 | romchex=open("'out/target/product/'+'device2_name'.strip()+'/'+'rom2_name'.strip()+'*'") 96 | romchex.close() 97 | e.system("bash uploader.sh") 98 | except: 99 | try: 100 | time.sleep(3600) 101 | romchex=open("'out/target/product/'+'device2_name'.strip()+'/'+'rom2_name'.strip()+'*'") 102 | romchex.close() 103 | e.system("bash uploader.sh") 104 | except: 105 | print(GO DIE YOU NOOB")''' 106 | 107 | 108 | #writeme2="function transfer() { 109 | # zipname="$(echo $1 | awk -F '/' '{print $NF}')"; 110 | # url="$(curl -# -T $1 https://transfer.sh)"; 111 | # printf '\n'; 112 | # echo -e "Download ${zipname} at ${url}"; 113 | # curl -s -X POST https://api.telegram.org/bot$BOT_API_KEY/sendMessage -d text="$url" -d chat_id=$CHAT_ID 114 | # curl -F chat_id="$CHAT_ID" -F document=@"${ZIP_DIR}/$ZIPNAME" https://api.telegram.org/bot$BOT_API_KEY/sendDocument 115 | #} 116 | 117 | #export ZIPDIR = "out/target/product/'+device2_name+'/'" 118 | #export ZIPNAME = "rom2_name*"; 119 | #export BOT_API_KEY = botapikey2 120 | #export CHAT_ID = chatid2 121 | 122 | #transfer();" 123 | 124 | 125 | saveFile=open(device_name.strip()+'.py'.strip(),'w') 126 | saveFile.write(str(writeme)) 127 | saveFile.close() 128 | 129 | '''saveFile2=open("uploader.sh","w") 130 | saveFile2.write(str(writeme2)) 131 | saveFile2.close()''' 132 | 133 | s = open(device_name.strip()+'.py'.strip()).read() 134 | s = s.replace('device2_name', device_name) 135 | s = s.replace('rom2_name',rom_name) 136 | s = s.replace('oem2_name',oem_name) 137 | s = s.replace('device2_kernel_name',device_name) 138 | s = s.replace('vt2_link', vt_link) 139 | s = s.replace('kt2_link', kt_link) 140 | s = s.replace('dt2_link', dt_link) 141 | f = open(device_name.strip()+'.py'.strip(), 'w') 142 | f.write(s) 143 | f.close() 144 | 145 | '''s = open("uploader.sh").read() 146 | s = s.replace('device2_name', '"'+device_name+'"') 147 | s = s.replace('rom2_name', '"'+rom_name+'"') 148 | s = s.replace('oem2_name', '"'+oem_name+'"') 149 | s = s.replace('device2_kernel_name', '"'+device_name+'"') 150 | s = s.replace('vt2_name', '"'+device_name+'"') 151 | s = s.replace('kt2_name', '"'+device_name+'"') 152 | s = s.replace('dt2_name', '"'+device_name+'"') 153 | f = open("device_name'.txt'", 'w') 154 | f.write(s) 155 | f.close() 156 | ''' 157 | 158 | e.system('python3'+' '+device_name.strip()+'.py'.strip()) 159 | -------------------------------------------------------------------------------- /gcc-builder.sh: -------------------------------------------------------------------------------- 1 | cd $HOME 2 | mkdir gcc-builds 3 | cd gcc-builds 4 | git clone https://github.com/Dhruvgera/EvaGCC-arm64 gcc-arm64 5 | rm -rf gcc-arm64/* 6 | git clone https://github.com/mvaisakh/gcc-build.git 7 | cd gcc-build 8 | ./build-gcc.sh -a arm64 9 | ./build-lld.sh -a arm64 10 | cd ../gcc-arm64 11 | bash $HOME/gcc-builds/gcc-build/strip-binaries.sh 12 | git add . -f 13 | thetime="$(date +%s)"; 14 | git commit -m "Update GCC to latest revision at ${thetime}" 15 | git push git@github.com:Dhruvgera/EvaGCC-arm64.git HEAD:master 16 | cd .. 17 | git clone https://github.com/Dhruvgera/EvaGCC-arm gcc-arm 18 | rm -rf gcc-arm/* gcc-arm64 gcc-build 19 | git clone git@github.com:Dhruvgera/gcc-build.git 20 | cd gcc-build 21 | ./build-gcc.sh -a arm 22 | ./build-lld.sh -a arm 23 | cd ../gcc-arm 24 | bash $HOME/gcc-builds/gcc-build/strip-binaries.sh 25 | git add . -f 26 | thetime="$(date +%s)"; 27 | git commit -m "Update GCC ARM to latest revision at ${thetime}" 28 | git push git@github.com:Dhruvgera/EvaGCC-arm.git HEAD:master 29 | cd $HOME 30 | rm -rf gcc-builds 31 | -------------------------------------------------------------------------------- /incremental.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2020 Dhruv Gera 2 | import os 3 | print("Incrementals are made using target zips which are found under out/target/product/device/obj/PACKAGING/target_files_intermediates") 4 | old_zip=input("Enter old target file path: ") 5 | new_zip=input("Enter new target file path: ") 6 | print("Generating incremental package") 7 | try: 8 | filecheck=open("generator.sh") 9 | filecheck.close() 10 | except: 11 | code="./build/make/tools/releasetools/ota_from_target_files --block -i old new incremental.zip" 12 | saveFile2=open("generator.sh",'w') 13 | saveFile2.write(str(code)) 14 | saveFile2.close() 15 | fin = open("generator.sh", "rt") 16 | data = fin.read() 17 | data = data.replace('old', old_zip) 18 | fin.close() 19 | fin = open("generator.sh", "wt") 20 | fin.write(data) 21 | fin.close() 22 | fin = open("generator.sh", "rt") 23 | data = fin.read() 24 | data = data.replace('new', new_zip) 25 | fin.close() 26 | fin = open("generator.sh", "wt") 27 | fin.write(data) 28 | fin.close() 29 | os.system("chmod a+x generator.sh") 30 | os.system("bash generator.sh") 31 | -------------------------------------------------------------------------------- /linux-android-compile.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # Make sure to pass CHAT_ID and BOT_API_KEY variables to recieve the files and links on Telegram 4 | export KERNELDIR="$PWD" # Keep this file in the main kernel dir, or edit this path 5 | export USE_CCACHE=1 # Sets CCACHE if available, higly recommended 6 | export CCACHE_DIR="$HOME/.ccache" 7 | 8 | export TZ="Asia/Kolkata"; # You can change Timezone for your place 9 | 10 | # Kernel compiling script starts here 11 | 12 | mkdir -p $HOME/TC 13 | git clone https://github.com/Dhruvgera/AnyKernel3.git # CLoning my AnyKernel3 because that's where files get zipped, make sure to clone your in a folder named AnyKernel3 14 | git clone https://github.com/kdrag0n/proton-clang.git prebuilts/proton-clang --depth=1 # We use proton clang so as to reduce hassel, you can change to GCC if you want to 15 | 16 | # Upload log to termbin 17 | function sendlog { 18 | uploadlog=$(cat $1 | nc termbin.com 9999) # Make sure you have netcat installed 19 | echo "URL is: "$uploadlog" " 20 | curl -s -X POST https://api.telegram.org/bot$BOT_API_KEY/sendMessage -d text="Build failed, "$1" "$uploadlog" :3" -d chat_id=$CHAT_ID 21 | } 22 | 23 | # Trim the log if build fails 24 | function trimlog { 25 | sendlog "$1" 26 | grep -iE 'crash|error|fail|fatal|warning' "$1" &> "trimmed-$1" 27 | sendlog "trimmed-$1" 28 | } 29 | 30 | # Unused function, can be used to upload builds to transfer.sh 31 | function transfer() { 32 | zipname="$(echo $1 | awk -F '/' '{print $NF}')"; 33 | url="$(curl -# -T $1 https://transfer.sh)"; 34 | printf '\n'; 35 | echo -e "Download ${zipname} at ${url}"; 36 | curl -s -X POST https://api.telegram.org/bot$BOT_API_KEY/sendMessage -d text="$url" -d chat_id=$CHAT_ID 37 | curl -F chat_id="$CHAT_ID" -F document=@"${ZIP_DIR}/$ZIPNAME" https://api.telegram.org/bot$BOT_API_KEY/sendDocument 38 | } 39 | 40 | if [[ -z ${KERNELDIR} ]]; then 41 | echo -e "Please set KERNELDIR"; 42 | exit 1; 43 | fi 44 | 45 | 46 | mkdir -p ${KERNELDIR}/aroma 47 | mkdir -p ${KERNELDIR}/files 48 | 49 | # Setting some important variables 50 | # ================================ 51 | export KERNELNAME="RockstarKernel" # Set your custom kernel's name 52 | export SRCDIR="${KERNELDIR}"; 53 | export OUTDIR="${KERNELDIR}/out"; 54 | export ANYKERNEL="${KERNELDIR}/AnyKernel3"; 55 | export AROMA="${KERNELDIR}/aroma/"; 56 | export ARCH="arm64"; 57 | export SUBARCH="arm64"; 58 | export KBUILD_COMPILER_STRING="$($KERNELDIR/prebuilts/proton-clang/bin/clang --version | head -n 1 | perl -pe 's/\(http.*?\)//gs' | sed -e 's/ */ /g' -e 's/[[:space:]]*$//')" 59 | export KBUILD_BUILD_USER="Dhruv" # Name it for yourself, this is unimportant stuff 60 | export KBUILD_BUILD_HOST="TeamRockstar" # Same as above 61 | export PATH="$KERNELDIR/prebuilts/proton-clang/bin:${PATH}" 62 | export DEFCONFIG="beryllium_defconfig"; # Set your defonfig name here 63 | export ZIP_DIR="${KERNELDIR}/files"; 64 | export IMAGE="${OUTDIR}/arch/${ARCH}/boot/Image.gz-dtb"; 65 | export COMMITMSG=$(git log --oneline -1) # So that you know which commit caused what 66 | 67 | export MAKE_TYPE="Treble" 68 | 69 | if [[ -z "${JOBS}" ]]; then 70 | export JOBS="$(nproc --all)"; 71 | fi 72 | 73 | export MAKE="make O=${OUTDIR}"; 74 | export ZIPNAME="${KERNELNAME}-POCOPHONE-${MAKE_TYPE}$(date +%m%d-%H).zip" # You can edit the zipname here 75 | export FINAL_ZIP="${ZIP_DIR}/${ZIPNAME}" 76 | 77 | [ ! -d "${ZIP_DIR}" ] && mkdir -pv ${ZIP_DIR} 78 | [ ! -d "${OUTDIR}" ] && mkdir -pv ${OUTDIR} 79 | 80 | cd "${SRCDIR}"; 81 | rm -fv ${IMAGE}; 82 | 83 | MAKE_STATEMENT=make 84 | 85 | # Menuconfig configuration 86 | # ================ 87 | # If -no-menuconfig flag is present we will skip the kernel configuration step. 88 | # Make operation will use beryllium_defconfig directly. 89 | if [[ "$*" == *"-no-menuconfig"* ]] 90 | then 91 | NO_MENUCONFIG=1 92 | MAKE_STATEMENT="$MAKE_STATEMENT KCONFIG_CONFIG=./arch/arm64/configs/beryllium_defconfig" # Please make sure to replace according to your defconfig 93 | fi 94 | 95 | if [[ "$@" =~ "mrproper" ]]; then 96 | ${MAKE} mrproper 97 | fi 98 | 99 | if [[ "$@" =~ "clean" ]]; then 100 | ${MAKE} clean 101 | fi 102 | 103 | 104 | # Inform that the build has been started 105 | # ================ 106 | curl -s -X POST https://api.telegram.org/bot$BOT_API_KEY/sendMessage -d text="Build Scheduled for $KERNELNAME Kernel (${MAKE_TYPE})" -d chat_id=$CHAT_ID 107 | 108 | 109 | 110 | cd $KERNELDIR 111 | ${MAKE} $DEFCONFIG; 112 | START=$(date +"%s"); 113 | echo -e "Using ${JOBS} threads to compile" 114 | 115 | # Start the build, again edit the parameters if you are using GCC or any other compiler 116 | # ================ 117 | ${MAKE} -j${JOBS} \ ARCH=arm64 \ CC=clang \ LINKER="lld" \ CROSS_COMPILE=aarch64-linux-gnu- \ CROSS_COMPILE_ARM32=arm-linux-gnueabi- \ NM=llvm-nm \ OBJCOPY=llvm-objcopy \ OBJDUMP=llvm-objdump \ STRIP=llvm-strip | tee build-log.txt ; 118 | 119 | 120 | 121 | exitCode="$?"; 122 | END=$(date +"%s") 123 | DIFF=$(($END - $START)) 124 | echo -e "Build took $(($DIFF / 60)) minute(s) and $(($DIFF % 60)) seconds."; 125 | 126 | # Send log and trimmed log if build failed 127 | # ================ 128 | if [[ ! -f "${IMAGE}" ]]; then 129 | echo -e "Build failed :P"; 130 | trimlog build-log.txt 131 | success=false; 132 | exit 1; 133 | else 134 | echo -e "Build Succesful!"; 135 | success=true; 136 | fi 137 | 138 | # Make ZIP using AnyKernel 139 | # ================ 140 | echo -e "Copying kernel image"; 141 | cp -v "${IMAGE}" "${ANYKERNEL}/"; 142 | cd -; 143 | cd ${ANYKERNEL}; 144 | zip -r9 ${FINAL_ZIP} *; 145 | cd -; 146 | 147 | # Push to Telegram if successful 148 | # ================ 149 | if [ -f "$FINAL_ZIP" ]; 150 | then 151 | if [[ ${success} == true ]]; then 152 | 153 | 154 | message="CI build of Rockstar Kernel completed with the latest commit." # Send a fancy message you want 155 | 156 | time="Build took $(($DIFF / 60)) minute(s) and $(($DIFF % 60)) seconds." 157 | 158 | curl -F chat_id="$CHAT_ID" -F document=@"${ZIP_DIR}/$ZIPNAME" -F caption="$message $time" https://api.telegram.org/bot$BOT_API_KEY/sendDocument 159 | 160 | # Post the build stats in a very neat and pretty format with some emojis 161 | curl -s -X POST https://api.telegram.org/bot$BOT_API_KEY/sendMessage -d text=" 162 | 163 | ♔♔♔♔♔♔♔BUILD-DETAILS♔♔♔♔♔♔♔ 164 | 165 | 🖋️ Author : Dhruv Gera 166 | 167 | 🛠️ Make-Type : $MAKE_TYPE 168 | 169 | 🗒️ Build-Type : TEST 170 | 171 | ⌚ Build-Time : $time 172 | 173 | 🗒️ Zip-Name : $ZIPNAME 174 | 175 | 🤖 Commit message : $COMMITMSG 176 | " -d chat_id=$CHAT_ID -d "parse_mode=html" 177 | 178 | 179 | fi 180 | else 181 | echo -e "Zip Creation Failed "; 182 | fi 183 | rm -rf build-log.txt files/ trimmed-build-log.txt # Clean up the files 184 | -------------------------------------------------------------------------------- /personal/docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: "3" 2 | 3 | networks: 4 | private_network: 5 | ipam: 6 | driver: default 7 | config: 8 | - subnet: 10.2.0.0/24 9 | 10 | services: 11 | unbound: 12 | image: "mvance/unbound-rpi:latest" # "mvance/unbound:latest" if you use x86 13 | container_name: unbound 14 | restart: unless-stopped 15 | hostname: "unbound" 16 | volumes: 17 | - "./unbound:/opt/unbound/etc/unbound/" 18 | networks: 19 | private_network: 20 | ipv4_address: 10.2.0.200 21 | 22 | wireguard: 23 | depends_on: [unbound, pihole] 24 | image: linuxserver/wireguard 25 | container_name: wireguard 26 | cap_add: 27 | - NET_ADMIN 28 | - SYS_MODULE 29 | environment: 30 | - PUID=1000 31 | - PGID=1000 32 | - TZ=Asia/Kolkata # Change to your timezone 33 | - SERVERPORT=51820 34 | #- SERVERURL=my.ddns.net #optional - For use with DDNS (Uncomment to use) 35 | - PEERS=10 # How many peers to generate for you (clients) 36 | - PEERDNS=10.2.0.100 # Set it to point to pihole 37 | - INTERNAL_SUBNET=10.6.0.0 38 | 39 | volumes: 40 | - ./wireguard:/config 41 | - /lib/modules:/lib/modules 42 | ports: 43 | - "51820:51820/udp" 44 | dns: 45 | - 10.2.0.100 # Points to pihole 46 | - 10.2.0.200 # Points to unbound 47 | sysctls: 48 | - net.ipv4.conf.all.src_valid_mark=1 49 | 50 | restart: unless-stopped 51 | networks: 52 | private_network: 53 | ipv4_address: 10.2.0.3 54 | 55 | pihole: 56 | depends_on: [unbound] 57 | container_name: pihole 58 | image: pihole/pihole:latest 59 | restart: unless-stopped 60 | hostname: pihole 61 | dns: 62 | - 127.0.0.1 63 | - 10.2.0.200 # Points to unbound 64 | environment: 65 | TZ: "Asia/Kolkata" 66 | WEBPASSWORD: "" # Blank password - Can be whatever you want. 67 | ServerIP: 10.2.0.100 # Internal IP of pihole 68 | DNS1: 10.2.0.200 # Unbound IP 69 | DNS2: 10.2.0.200 # If we don't specify two, it will auto pick google. 70 | # Volumes store your data between container upgrades 71 | volumes: 72 | - "./etc-pihole/:/etc/pihole/" 73 | - "./etc-dnsmasq.d/:/etc/dnsmasq.d/" 74 | # Recommended but not required (DHCP needs NET_ADMIN) 75 | # https://github.com/pi-hole/docker-pi-hole#note-on-capabilities 76 | cap_add: 77 | - NET_ADMIN 78 | networks: 79 | private_network: 80 | ipv4_address: 10.2.0.100 81 | -------------------------------------------------------------------------------- /personal/dockersetup.sh: -------------------------------------------------------------------------------- 1 | sudo apt-get update 2 | sudo apt-get install ca-certificates curl gnupg lsb-release 3 | sudo mkdir -p /etc/apt/keyrings 4 | curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg 5 | echo \ 6 | "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null 7 | sudo apt-get update 8 | sudo apt-get install docker-ce docker-ce-cli containerd.io docker-compose-plugin docker-compose 9 | sudo usermod -aG docker $USER 10 | newgrp docker 11 | -------------------------------------------------------------------------------- /personal/download.py: -------------------------------------------------------------------------------- 1 | import os,sys 2 | a = sys.argv[1] 3 | os.environ['a'] = a 4 | os.system("wget $a") 5 | a=a.split('/') 6 | a=a[-1] 7 | os.environ['filename'] = a 8 | os.system("python3 release.py $filename") 9 | -------------------------------------------------------------------------------- /personal/jenkins-material-theme.css: -------------------------------------------------------------------------------- 1 | @import url(https://fonts.googleapis.com/css?family=Roboto:400,700,500,300);@import url(https://fonts.googleapis.com/css?family=Roboto+Mono:400,700,500,300);@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes b{0%{opacity:1}50%{opacity:0}to{opacity:1}}[src$="blue.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjMDA5Njg4IiBkPSJNMTIgMkM2LjQ4IDIgMiA2LjQ4IDIgMTJzNC40OCAxMCAxMCAxMCAxMC00LjQ4IDEwLTEwUzE3LjUyIDIgMTIgMnptLTIgMTVsLTUtNSAxLjQxLTEuNDFMMTAgMTQuMTdsNy41OS03LjU5TDE5IDhsLTkgOXoiLz48L3N2Zz4=)}[src$="red.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjRjQ0MzM2IiBkPSJNMTIgMkM2LjQ4IDIgMiA2LjQ4IDIgMTJzNC40OCAxMCAxMCAxMCAxMC00LjQ4IDEwLTEwUzE3LjUyIDIgMTIgMnptMSAxNWgtMnYtMmgydjJ6bTAtNGgtMlY3aDJ2NnoiLz48L3N2Zz4=)}[src$="yellow.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjRkZDMTA3IiBkPSJNMSAyMWgyMkwxMiAyIDEgMjF6bTEyLTNoLTJ2LTJoMnYyem0wLTRoLTJ2LTRoMnY0eiIvPjwvc3ZnPg==)}[src$="aborted.png"],[src$="disabled.png"],[src$="grey.png"],[src$="nobuilt.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMTIgMkM2LjQ4IDIgMiA2LjQ4IDIgMTJzNC40OCAxMCAxMCAxMCAxMC00LjQ4IDEwLTEwUzE3LjUyIDIgMTIgMnptNSAxMUg3di0yaDEwdjJ6Ii8+PC9zdmc+)}.icon-health-80plus{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHBhdGggZmlsbD0iIzlFOUU5RSIgZD0iTTEyIDdhNSA1IDAgMCAxIDUgNSA1IDUgMCAwIDEtNSA1IDUgNSAwIDAgMS01LTUgNSA1IDAgMCAxIDUtNW0wIDJhMyAzIDAgMCAwLTMgMyAzIDMgMCAwIDAgMyAzIDMgMyAwIDAgMCAzLTMgMyAzIDAgMCAwLTMtM20wLTdsMi4zOSAzLjQyQTYuOTggNi45OCAwIDAgMCAxMiA1Yy0uODQgMC0xLjY1LjE1LTIuMzkuNDJMMTIgMk0zLjM0IDdsNC4xNi0uMzVBNy4yIDcuMiAwIDAgMCA1Ljk0IDguNWMtLjQ0Ljc0LS42OSAxLjUtLjgzIDIuMjlMMy4zNCA3bS4wMiAxMGwxLjc2LTMuNzdhNy4xMyA3LjEzIDAgMCAwIDIuMzggNC4xNEwzLjM2IDE3TTIwLjY1IDdsLTEuNzcgMy43OWE3LjAyMyA3LjAyMyAwIDAgMC0yLjM4LTQuMTVsNC4xNS4zNm0tLjAxIDEwbC00LjE0LjM2Yy41OS0uNTEgMS4xMi0xLjE0IDEuNTQtMS44Ni40Mi0uNzMuNjktMS41LjgzLTIuMjlMMjAuNjQgMTdNMTIgMjJsLTIuNDEtMy40NGMuNzQuMjcgMS41NS40NCAyLjQxLjQ0LjgyIDAgMS42My0uMTcgMi4zNy0uNDRMMTIgMjJ6Ii8+PC9zdmc+)}.icon-health-60to79{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHBhdGggZmlsbD0iIzlFOUU5RSIgZD0iTTEyLjc0IDUuNDdjMi4zNiAxLjAzIDMuNjEgMy41NiAzLjE4IDUuOTlBNi4wMDIgNi4wMDIgMCAwIDEgMTggMTZ2LjE3YTMgMyAwIDAgMSAxLS4xNyAzIDMgMCAwIDEgMyAzIDMgMyAwIDAgMS0zIDNINmE0IDQgMCAwIDEtNC00IDQgNCAwIDAgMSA0LTRoLjI3QzUgMTIuNDUgNC42IDEwLjI0IDUuNSA4LjI2YTUuNDkgNS40OSAwIDAgMSA3LjI0LTIuNzltLS44MSAxLjgzYy0xLjc3LS44LTMuODQuMDEtNC42MiAxLjc3YTMuNDkgMy40OSAwIDAgMCAuMSAzLjA2QTUuOTg4IDUuOTg4IDAgMCAxIDEyIDEwYTYgNiAwIDAgMSAyIC4zNCAzLjUwNiAzLjUwNiAwIDAgMC0yLjA3LTMuMDRtMS42Mi0zLjY2Yy0uNTUtLjI0LTEuMS0uNDEtMS42Ny0uNTJsMi40OS0xLjMuOSAyLjg5YTcuNjcgNy42NyAwIDAgMC0xLjcyLTEuMDdtLTcuNDYuOGMtLjQ5LjM1LS45Mi43NS0xLjI5IDEuMTlsLjExLTIuODEgMi45Ni42OGMtLjYyLjIxLTEuMjIuNTMtMS43OC45NE0xOCA5LjcxQTkuNjkgOS42OSAwIDAgMCAxNy41OSA4bDIuMzggMS41LTIuMDUgMi4yM2MuMTEtLjY1LjEzLTEuMzMuMDgtMi4wMk0zLjA0IDExLjNjLjA3LjYuMiAxLjE3LjM5IDEuN2wtMi4zNy0xLjVMMy4xIDkuMjhjLS4xLjY1LS4xMyAxLjMzLS4wNiAyLjAyTTE5IDE4aC0zdi0yYTQgNCAwIDAgMC00LTQgNCA0IDAgMCAwLTQgNEg2YTIgMiAwIDAgMC0yIDIgMiAyIDAgMCAwIDIgMmgxM2ExIDEgMCAwIDAgMS0xIDEgMSAwIDAgMC0xLTF6Ii8+PC9zdmc+)}.icon-health-40to59{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHBhdGggZmlsbD0iIzlFOUU5RSIgZD0iTTYgMTlhNSA1IDAgMCAxLTUtNSA1IDUgMCAwIDEgNS01YzEtMi4zNSAzLjMtNCA2LTQgMy40MyAwIDYuMjQgMi42NiA2LjUgNi4wM0wxOSAxMWE0IDQgMCAwIDEgNCA0IDQgNCAwIDAgMS00IDRINm0xMy02aC0ydi0xYTUgNSAwIDAgMC01LTVjLTIuNSAwLTQuNTUgMS44Mi00Ljk0IDQuMTlBMy4xMSAzLjExIDAgMCAwIDYgMTFhMyAzIDAgMCAwLTMgMyAzIDMgMCAwIDAgMyAzaDEzYTIgMiAwIDAgMCAyLTIgMiAyIDAgMCAwLTItMnoiLz48L3N2Zz4=)}.icon-health-20to39{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHBhdGggZmlsbD0iIzlFOUU5RSIgZD0iTTYgMTRhMSAxIDAgMCAxIDEgMSAxIDEgMCAwIDEtMSAxIDUgNSAwIDAgMS01LTUgNSA1IDAgMCAxIDUtNWMxLTIuMzUgMy4zLTQgNi00IDMuNDMgMCA2LjI0IDIuNjYgNi41IDYuMDNMMTkgOGE0IDQgMCAwIDEgNCA0IDQgNCAwIDAgMS00IDRoLTFhMSAxIDAgMCAxLTEtMSAxIDEgMCAwIDEgMS0xaDFhMiAyIDAgMCAwIDItMiAyIDIgMCAwIDAtMi0yaC0yVjlhNSA1IDAgMCAwLTUtNUM5LjUgNCA3LjQ1IDUuODIgNy4wNiA4LjE5QTMuMTEgMy4xMSAwIDAgMCA2IDhhMyAzIDAgMCAwLTMgMyAzIDMgMCAwIDAgMyAzbTguODMgMS42N2MxLjU2IDEuNTYgMS41NiAzLjgzIDAgNS40MS0uNzguNzgtMS44My45Mi0yLjgzLjkycy0yLjA1LS4xNC0yLjgzLS45MmMtMS41Ni0xLjU4LTEuNTYtMy44NSAwLTUuNDFMMTIgMTFsMi44MyA0LjY3bS0xLjQyIDEuMDJMMTIgMTQuMjVsLTEuNDEgMi40NGMtLjc5LjgxLS43OSAyLjAxIDAgMi44MS40MS40My45MS41IDEuNDEuNS41IDAgMS0uMDcgMS40MS0uNS43OS0uOC43OS0yIDAtMi44MXoiLz48L3N2Zz4=)}.icon-health-00to19{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHBhdGggZmlsbD0iIzlFOUU5RSIgZD0iTTkgMTJjLjUzLjE0Ljg1LjY5LjcxIDEuMjJsLTEuMyA0LjgzYy0uMTQuNTQtLjY5Ljg1LTEuMjIuNzFhLjk2Ny45NjcgMCAwIDEtLjY5LTEuMjJsMS4yOC00LjgzYy4xNC0uNTQuNjktLjg1IDEuMjItLjcxbTQgMGMuNTMuMTQuODUuNjkuNzEgMS4yMmwtMi4wNyA3LjczYy0uMTQuNTUtLjY5Ljg1LTEuMjMuNzEtLjUzLS4xNi0uODUtLjY5LS43MS0xLjIzbDIuMDgtNy43MmMuMTQtLjU0LjY5LS44NSAxLjIyLS43MW00IDBjLjUzLjE0Ljg1LjY5LjcxIDEuMjJsLTEuMyA0LjgzYy0uMTQuNTQtLjY5Ljg1LTEuMjIuNzFhLjk2Ny45NjcgMCAwIDEtLjY5LTEuMjJsMS4yOC00LjgzYy4xNC0uNTQuNjktLjg1IDEuMjItLjcxbTAtMlY5YTUgNSAwIDAgMC01LTVDOS41IDQgNy40NSA1LjgyIDcuMDYgOC4xOUEzLjExIDMuMTEgMCAwIDAgNiA4YTMgMyAwIDAgMC0zIDNjMCAxLjExLjYgMi4wOCAxLjUgMi42di0uMDFjLjUuMjguNjQuOTEuMzcgMS4zNy0uMjguNDctLjg3LjY0LTEuMzcuMzZ2LjAxQTQuOTggNC45OCAwIDAgMSAxIDExYTUgNSAwIDAgMSA1LTVjMS0yLjM1IDMuMy00IDYtNCAzLjQzIDAgNi4yNCAyLjY2IDYuNSA2LjAzTDE5IDhhNCA0IDAgMCAxIDQgNGMwIDEuNS0uOCAyLjc3LTIgMy40Ni0uNS4yNy0xLjA5LjExLTEuMzctLjM3LS4yNy0uNDgtLjEzLTEuMDkuMzctMS4zN3YuMDFjLjYtLjM0IDEtLjk5IDEtMS43M2EyIDIgMCAwIDAtMi0yaC0yeiIvPjwvc3ZnPg==)}.icon-blue-anime,[src$="blue_anime.gif"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjMDA5Njg4IiBkPSJNMTIgNnYzbDQtNC00LTR2M2MtNC40MiAwLTggMy41OC04IDggMCAxLjU3LjQ2IDMuMDMgMS4yNCA0LjI2TDYuNyAxNC44QTUuODcgNS44NyAwIDAgMSA2IDEyYzAtMy4zMSAyLjY5LTYgNi02em02Ljc2IDEuNzRMMTcuMyA5LjJjLjQ0Ljg0LjcgMS43OS43IDIuOCAwIDMuMzEtMi42OSA2LTYgNnYtM2wtNCA0IDQgNHYtM2M0LjQyIDAgOC0zLjU4IDgtOCAwLTEuNTctLjQ2LTMuMDMtMS4yNC00LjI2eiIvPjwvc3ZnPg==)}.icon-red-anime,[src$="red_anime.gif"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjRjQ0MzM2IiBkPSJNMTIgNnYzbDQtNC00LTR2M2MtNC40MiAwLTggMy41OC04IDggMCAxLjU3LjQ2IDMuMDMgMS4yNCA0LjI2TDYuNyAxNC44QTUuODcgNS44NyAwIDAgMSA2IDEyYzAtMy4zMSAyLjY5LTYgNi02em02Ljc2IDEuNzRMMTcuMyA5LjJjLjQ0Ljg0LjcgMS43OS43IDIuOCAwIDMuMzEtMi42OSA2LTYgNnYtM2wtNCA0IDQgNHYtM2M0LjQyIDAgOC0zLjU4IDgtOCAwLTEuNTctLjQ2LTMuMDMtMS4yNC00LjI2eiIvPjwvc3ZnPg==)}.icon-aborted-anime,.icon-grey-anime,.icon-nobuilt-anime,[src$="grey_anime.gif"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMTIgNnYzbDQtNC00LTR2M2MtNC40MiAwLTggMy41OC04IDggMCAxLjU3LjQ2IDMuMDMgMS4yNCA0LjI2TDYuNyAxNC44QTUuODcgNS44NyAwIDAgMSA2IDEyYzAtMy4zMSAyLjY5LTYgNi02em02Ljc2IDEuNzRMMTcuMyA5LjJjLjQ0Ljg0LjcgMS43OS43IDIuOCAwIDMuMzEtMi42OSA2LTYgNnYtM2wtNCA0IDQgNHYtM2M0LjQyIDAgOC0zLjU4IDgtOCAwLTEuNTctLjQ2LTMuMDMtMS4yNC00LjI2eiIvPjwvc3ZnPg==)}.icon-yellow-anime,[src$="yellow_anime.gif"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjRkZDMTA3IiBkPSJNMTIgNnYzbDQtNC00LTR2M2MtNC40MiAwLTggMy41OC04IDggMCAxLjU3LjQ2IDMuMDMgMS4yNCA0LjI2TDYuNyAxNC44QTUuODcgNS44NyAwIDAgMSA2IDEyYzAtMy4zMSAyLjY5LTYgNi02em02Ljc2IDEuNzRMMTcuMyA5LjJjLjQ0Ljg0LjcgMS43OS43IDIuOCAwIDMuMzEtMi42OSA2LTYgNnYtM2wtNCA0IDQgNHYtM2M0LjQyIDAgOC0zLjU4IDgtOCAwLTEuNTctLjQ2LTMuMDMtMS4yNC00LjI2eiIvPjwvc3ZnPg==)}.icon-new-package,[src$="new-package.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMTMgN2gtMnY0SDd2Mmg0djRoMnYtNGg0di0yaC00Vjd6bS0xLTVDNi40OCAyIDIgNi40OCAyIDEyczQuNDggMTAgMTAgMTAgMTAtNC40OCAxMC0xMFMxNy41MiAyIDEyIDJ6bTAgMThjLTQuNDEgMC04LTMuNTktOC04czMuNTktOCA4LTggOCAzLjU5IDggOC0zLjU5IDgtOCA4eiIvPjwvc3ZnPg==)}.icon-user,[src$="user.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMTYgMTFjMS42NiAwIDIuOTktMS4zNCAyLjk5LTNTMTcuNjYgNSAxNiA1Yy0xLjY2IDAtMyAxLjM0LTMgM3MxLjM0IDMgMyAzem0tOCAwYzEuNjYgMCAyLjk5LTEuMzQgMi45OS0zUzkuNjYgNSA4IDVDNi4zNCA1IDUgNi4zNCA1IDhzMS4zNCAzIDMgM3ptMCAyYy0yLjMzIDAtNyAxLjE3LTcgMy41VjE5aDE0di0yLjVjMC0yLjMzLTQuNjctMy41LTctMy41em04IDBjLS4yOSAwLS42Mi4wMi0uOTcuMDUgMS4xNi44NCAxLjk3IDEuOTcgMS45NyAzLjQ1VjE5aDZ2LTIuNWMwLTIuMzMtNC42Ny0zLjUtNy0zLjV6Ii8+PC9zdmc+)}.icon-notepad,[src$="notepad.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMTMgM2E5IDkgMCAwIDAtOSA5SDFsMy44OSAzLjg5LjA3LjE0TDkgMTJINmMwLTMuODcgMy4xMy03IDctN3M3IDMuMTMgNyA3LTMuMTMgNy03IDdjLTEuOTMgMC0zLjY4LS43OS00Ljk0LTIuMDZsLTEuNDIgMS40MkE4Ljk1NCA4Ljk1NCAwIDAgMCAxMyAyMWE5IDkgMCAwIDAgMC0xOHptLTEgNXY1bDQuMjggMi41NC43Mi0xLjIxLTMuNS0yLjA4VjhIMTJ6Ii8+PC9zdmc+)}.icon-gear2,.icon-setting,[src$="gear2.png"],[src$="setting.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMTkuNDMgMTIuOThjLjA0LS4zMi4wNy0uNjQuMDctLjk4cy0uMDMtLjY2LS4wNy0uOThsMi4xMS0xLjY1Yy4xOS0uMTUuMjQtLjQyLjEyLS42NGwtMi0zLjQ2Yy0uMTItLjIyLS4zOS0uMy0uNjEtLjIybC0yLjQ5IDFjLS41Mi0uNC0xLjA4LS43My0xLjY5LS45OGwtLjM4LTIuNjVBLjQ4OC40ODggMCAwIDAgMTQgMmgtNGMtLjI1IDAtLjQ2LjE4LS40OS40MmwtLjM4IDIuNjVjLS42MS4yNS0xLjE3LjU5LTEuNjkuOThsLTIuNDktMWMtLjIzLS4wOS0uNDkgMC0uNjEuMjJsLTIgMy40NmMtLjEzLjIyLS4wNy40OS4xMi42NGwyLjExIDEuNjVjLS4wNC4zMi0uMDcuNjUtLjA3Ljk4cy4wMy42Ni4wNy45OGwtMi4xMSAxLjY1Yy0uMTkuMTUtLjI0LjQyLS4xMi42NGwyIDMuNDZjLjEyLjIyLjM5LjMuNjEuMjJsMi40OS0xYy41Mi40IDEuMDguNzMgMS42OS45OGwuMzggMi42NWMuMDMuMjQuMjQuNDIuNDkuNDJoNGMuMjUgMCAuNDYtLjE4LjQ5LS40MmwuMzgtMi42NWMuNjEtLjI1IDEuMTctLjU5IDEuNjktLjk4bDIuNDkgMWMuMjMuMDkuNDkgMCAuNjEtLjIybDItMy40NmMuMTItLjIyLjA3LS40OS0uMTItLjY0bC0yLjExLTEuNjV6TTEyIDE1LjVjLTEuOTMgMC0zLjUtMS41Ny0zLjUtMy41czEuNTctMy41IDMuNS0zLjUgMy41IDEuNTcgMy41IDMuNS0xLjU3IDMuNS0zLjUgMy41eiIvPjwvc3ZnPg==)}.icon-up,.task-icon-link[href="/"] img{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMjAgMTFINy44M2w1LjU5LTUuNTlMMTIgNGwtOCA4IDggOCAxLjQxLTEuNDFMNy44MyAxM0gyMHYtMnoiLz48L3N2Zz4=)}.icon-edit-delete{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNNiAxOWMwIDEuMS45IDIgMiAyaDhjMS4xIDAgMi0uOSAyLTJWN0g2djEyek0xOSA0aC0zLjVsLTEtMWgtNWwtMSAxSDV2MmgxNFY0eiIvPjwvc3ZnPg==)}.icon-fingerprint,[src$="fingerprint.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBmaWxsPSIjOUU5RTlFIj48cGF0aCBkPSJNMTEuODMgMS43M2MtMy40LjA2LTUuNiAxLjU5LTUuNiAxLjU5LS4yOC4xOC0uMzUuNTktLjE2Ljg3LjIuMzEuNTkuMzYuODkuMTUgMCAwIDQuMzEtMy4xOSAxMC41LjA0LjI5LjE3LjY4LjA3Ljg1LS4yMy4xOS0uMy4wNi0uNjgtLjI4LS44Ny0xLjY3LS44OC0zLjI1LTEuMzItNC42Ny0xLjQ4LS41My0uMDYtMS4wNC0uMDgtMS41My0uMDdtLjM5IDIuNjFjLTUuOTYtLjA4LTguODEgNC43MS04LjgxIDQuNzEtLjE5LjI5LS4xMS42Ny4xNy44Ni4yOS4xOS42OC4wOS45Mi0uMjMgMCAwIDIuNDItNC4xOCA3LjctNC4wOSA1LjMuMDcgNy42MiA0LjA2IDcuNjIgNC4wNi4xOC4yOS41Ni4zOS44Ni4yMi4zMi0uMTguMzktLjU2LjIyLS44NyAwIDAtMi43NS00LjU4LTguNjgtNC42Nm0tLjcyIDIuNDhjLTEuNjguMTItMy4yOS43My00LjUgMS43NEM0LjYyIDEwLjUzIDMuMSAxNC4xNCA0Ljc3IDE5Yy4xMS4zMy40Ny41LjguMzkuMzItLjExLjUtLjQ3LjM4LS43OS0xLjU0LTQuNDctLjE3LTcuNCAxLjg1LTkuMSAxLjk3LTEuNjEgNS40NS0yIDguMDQtLjQgMS4yNy44IDIuMjYgMi4xOCAyLjc2IDMuNTQuNTEgMS4zNi40OCAyLjY4LjA3IDMuMy0uNDIuNjUtMS4yNy44OS0yLjAyLjctLjc1LS4xOS0xLjM2LS43My0xLjM5LTEuODctLjAzLTEuNzEtMS4zNy0yLjc3LTIuNzYtMi45My0xLjM0LS4xNi0yLjg5LjU2LTMuMjkgMi4xNi0uNzYgMi45MiAxLjE1IDcuMDcgNS41NyA4LjQ1LjMzLjEuNjgtLjA4Ljc5LS40MS4xLS4zMy0uMDctLjY5LS40Mi0uNzktMy44My0xLjE5LTUuMjgtNC44Mi00LjczLTYuOTYuMjQtLjk2IDEuMDgtMS4yOSAxLjk2LTEuMjEuODcuMSAxLjYyLjYyIDEuNjIgMS43MS4wNSAxLjY0IDEuMTIgMi43NSAyLjM0IDMuMDYgMS4yMi4zMSAyLjYzLS4wOCAzLjM4LTEuMjMuNzgtMS4xNy42NS0yLjgyLjA2LTQuNDEtLjYtMS42LTEuNzEtMy4xOC0zLjI4LTQuMTdhOC4zNCA4LjM0IDAgMCAwLTUtMS4yMm0uMzYgMi40M3YuMDFjLTEuNzguMDYtMy41Ni45OC00LjU4IDIuOTItMS4zMiAyLjQ5LS43MiA1LjAzLjE2IDYuODYuODkgMS44NCAyLjEgMy4wNiAyLjEgMy4wNi4yNC4yNS42My4yNS44OC4wMXMuMjUtLjYxLjAxLS44OGMwIDAtMS4wNy0xLjEtMS44Ni0yLjczcy0xLjI3LTMuNjktLjE5LTUuNzNjMS4xMi0yLjEgMy4xMi0yLjYxIDQuODgtMi4xIDEuNzguNTIgMy4yNyAyLjA3IDMuMjQgNC4zNi0uMDQuMzUuMjEuNjUuNTYuNjcuMzQuMDMuNjQtLjIzLjY3LS42NC4wNi0yLjg2LTEuODYtNC45My00LjEyLTUuNTlhNS43NiA1Ljc2IDAgMCAwLTEuNzUtLjIybS4yMiA1Yy0uMzUuMDEtLjYyLjMtLjYxLjY0IDAgMCAuMDMgMS40OC44NCAyLjkxLjg0IDEuNDMgMi42MiAyLjc5IDUuNzIgMi41LjM0LS4wMi42MS0uMy41OS0uNjYtLjAyLS4zNS0uMzItLjYxLS43MS0uNTgtMi43Mi4yNS0zLjg3LS43OC00LjUyLTEuODktLjY1LTEuMS0uNjctMi4yOS0uNjctMi4yOWEuNjMuNjMgMCAwIDAtLjY0LS42M3oiLz48L3N2Zz4=)}.icon-graph,[src$="graph.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMTkgM0g1Yy0xLjEgMC0yIC45LTIgMnYxNGMwIDEuMS45IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjVjMC0xLjEtLjktMi0yLTJ6TTkgMTdIN3YtN2gydjd6bTQgMGgtMlY3aDJ2MTB6bTQgMGgtMnYtNGgydjR6Ii8+PC9zdmc+)}.icon-collapse{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMTIgOGwtNiA2IDEuNDEgMS40MUwxMiAxMC44M2w0LjU5IDQuNThMMTggMTR6Ii8+PC9zdmc+)}.icon-expand{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMTYuNTkgOC41OUwxMiAxMy4xNyA3LjQxIDguNTkgNiAxMGw2IDYgNi02eiIvPjwvc3ZnPg==)}.icon-help,[src$="help.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMTEgMThoMnYtMmgtMnYyem0xLTE2QzYuNDggMiAyIDYuNDggMiAxMnM0LjQ4IDEwIDEwIDEwIDEwLTQuNDggMTAtMTBTMTcuNTIgMiAxMiAyem0wIDE4Yy00LjQxIDAtOC0zLjU5LTgtOHMzLjU5LTggOC04IDggMy41OSA4IDgtMy41OSA4LTggOHptMC0xNGE0IDQgMCAwIDAtNCA0aDJjMC0xLjEuOS0yIDItMnMyIC45IDIgMmMwIDItMyAxLjc1LTMgNWgyYzAtMi4yNSAzLTIuNSAzLTVhNCA0IDAgMCAwLTQtNHoiLz48L3N2Zz4=)}.icon-lock,.icon-secure,[src$="secure.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMTggOGgtMVY2YzAtMi43Ni0yLjI0LTUtNS01UzcgMy4yNCA3IDZ2Mkg2Yy0xLjEgMC0yIC45LTIgMnYxMGMwIDEuMS45IDIgMiAyaDEyYzEuMSAwIDItLjkgMi0yVjEwYzAtMS4xLS45LTItMi0yem0tNiA5Yy0xLjEgMC0yLS45LTItMnMuOS0yIDItMiAyIC45IDIgMi0uOSAyLTIgMnptMy4xLTlIOC45VjZjMC0xLjcxIDEuMzktMy4xIDMuMS0zLjEgMS43MSAwIDMuMSAxLjM5IDMuMSAzLjF2MnoiLz48L3N2Zz4=)}.icon-plugin,[src$="plugin.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMjAuNSAxMUgxOVY3YzAtMS4xLS45LTItMi0yaC00VjMuNWEyLjUgMi41IDAgMCAwLTUgMFY1SDRjLTEuMSAwLTEuOTkuOS0xLjk5IDJ2My44SDMuNWMxLjQ5IDAgMi43IDEuMjEgMi43IDIuN3MtMS4yMSAyLjctMi43IDIuN0gyVjIwYzAgMS4xLjkgMiAyIDJoMy44di0xLjVhMi43IDIuNyAwIDAgMSAyLjctMi43IDIuNyAyLjcgMCAwIDEgMi43IDIuN1YyMkgxN2MxLjEgMCAyLS45IDItMnYtNGgxLjVhMi41IDIuNSAwIDAgMCAwLTV6Ii8+PC9zdmc+)}.icon-system-log-out,[src$="system-log-out.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMTMgM2gtMnYxMGgyVjN6bTQuODMgMi4xN2wtMS40MiAxLjQyQTYuOTIgNi45MiAwIDAgMSAxOSAxMmMwIDMuODctMy4xMyA3LTcgN0E2Ljk5NSA2Ljk5NSAwIDAgMSA3LjU4IDYuNThMNi4xNyA1LjE3QTguOTMyIDguOTMyIDAgMCAwIDMgMTJhOSA5IDAgMCAwIDE4IDBjMC0yLjc0LTEuMjMtNS4xOC0zLjE3LTYuODN6Ii8+PC9zdmc+)}.icon-refresh,[src$="refresh.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMTcuNjUgNi4zNUE3Ljk1OCA3Ljk1OCAwIDAgMCAxMiA0Yy00LjQyIDAtNy45OSAzLjU4LTcuOTkgOHMzLjU3IDggNy45OSA4YzMuNzMgMCA2Ljg0LTIuNTUgNy43My02aC0yLjA4QTUuOTkgNS45OSAwIDAgMSAxMiAxOGMtMy4zMSAwLTYtMi42OS02LTZzMi42OS02IDYtNmMxLjY2IDAgMy4xNC42OSA0LjIyIDEuNzhMMTMgMTFoN1Y0bC0yLjM1IDIuMzV6Ii8+PC9zdmc+)}.icon-computer,[src$="computer.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMjAgMThjMS4xIDAgMS45OS0uOSAxLjk5LTJMMjIgNmMwLTEuMS0uOS0yLTItMkg0Yy0xLjEgMC0yIC45LTIgMnYxMGMwIDEuMS45IDIgMiAySDB2MmgyNHYtMmgtNHpNNCA2aDE2djEwSDRWNnoiLz48L3N2Zz4=)}.icon-computer-x{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCI+PHN0eWxlPi5zdDB7ZmlsbDojOUU5RTlFfTwvc3R5bGU+PHBhdGggY2xhc3M9InN0MCIgZD0iTTE1IDEzLjVjLjggMCAxLjUtLjcgMS41LTEuNVY0LjVjMC0uOC0uNy0xLjUtMS41LTEuNUgzYy0uOCAwLTEuNS43LTEuNSAxLjVWMTJjMCAuOC43IDEuNSAxLjUgMS41SDBWMTVoMTh2LTEuNWgtM3ptLTEyLTloMTJWMTJIM1Y0LjV6Ii8+PHBhdGggY2xhc3M9InN0MCIgZD0iTTcuNSA1LjdsLTEuMSAxTDggOC4yIDYuNCA5LjhsMS4xIDFMOSA5LjNsMS41IDEuNSAxLjEtMUwxMCA4LjJsMS42LTEuNS0xLjEtMUw5IDcuMiA3LjUgNS43Ii8+PC9zdmc+)}.icon-new-computer{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCI+PHN0eWxlPi5zdDB7ZmlsbDojOUU5RTlFfTwvc3R5bGU+PHBhdGggY2xhc3M9InN0MCIgZD0iTTE1IDEzLjVjLjggMCAxLjUtLjcgMS41LTEuNVY0LjVjMC0uOC0uNy0xLjUtMS41LTEuNUgzYy0uOCAwLTEuNS43LTEuNSAxLjVWMTJjMCAuOC43IDEuNSAxLjUgMS41SDBWMTVoMTh2LTEuNWgtM3ptLTEyLTloMTJWMTJIM1Y0LjV6bTYuNi43SDguNHYyLjRINnYxLjJoMi40djIuNGgxLjJWOC45SDEyVjcuN0g5LjZWNS4yeiIvPjwvc3ZnPg==)}.icon-clipboard,[src$="clipboard.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMTkgM2gtNC4xOEMxNC40IDEuODQgMTMuMyAxIDEyIDFjLTEuMyAwLTIuNC44NC0yLjgyIDJINWMtMS4xIDAtMiAuOS0yIDJ2MTRjMCAxLjEuOSAyIDIgMmgxNGMxLjEgMCAyLS45IDItMlY1YzAtMS4xLS45LTItMi0yem0tNyAwYy41NSAwIDEgLjQ1IDEgMXMtLjQ1IDEtMSAxLTEtLjQ1LTEtMSAuNDUtMSAxLTF6bTIgMTRIN3YtMmg3djJ6bTMtNEg3di0yaDEwdjJ6bTAtNEg3VjdoMTB2MnoiLz48L3N2Zz4=)}.icon-monitor,[src$="monitor.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHBhdGggZmlsbD0iIzlFOUU5RSIgZD0iTTE3LjQ1IDE1LjE4TDIyIDcuMzFWMjFIMlYzaDJ2MTIuNTRMOS41IDYgMTYgOS43OGw0LjI0LTcuMzMgMS43MyAxLTUuMjMgOS4wNS02LjUxLTMuNzVMNC4zMSAxOWgyLjI2bDQuMzktNy41NiA2LjQ5IDMuNzR6Ii8+PC9zdmc+)}.icon-terminal,[src$="terminal.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHBhdGggZmlsbD0iIzlFOUU5RSIgZD0iTTIwIDE5VjdINHYxMmgxNm0wLTE2YTIgMiAwIDAgMSAyIDJ2MTRhMiAyIDAgMCAxLTIgMkg0YTIgMiAwIDAgMS0yLTJWNWEyIDIgMCAwIDEgMi0yaDE2bS03IDE0di0yaDV2MmgtNW0tMy40Mi00TDUuNTcgOUg4LjRsMy4zIDMuM2MuMzkuMzkuMzkgMS4wMyAwIDEuNDJMOC40MiAxN0g1LjU5bDMuOTktNHoiLz48L3N2Zz4=)}.icon-network,[src$="network.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHBhdGggZmlsbD0iIzlFOUU5RSIgZD0iTTEzIDE4aDFhMSAxIDAgMCAxIDEgMWg3djJoLTdhMSAxIDAgMCAxLTEgMWgtNGExIDEgMCAwIDEtMS0xSDJ2LTJoN2ExIDEgMCAwIDEgMS0xaDF2LTJINGExIDEgMCAwIDEtMS0xdi00YTEgMSAwIDAgMSAxLTFoMTZhMSAxIDAgMCAxIDEgMXY0YTEgMSAwIDAgMS0xIDFoLTd2Mk00IDJoMTZhMSAxIDAgMCAxIDEgMXY0YTEgMSAwIDAgMS0xIDFINGExIDEgMCAwIDEtMS0xVjNhMSAxIDAgMCAxIDEtMW01IDRoMVY0SDl2Mm0wIDhoMXYtMkg5djJNNSA0djJoMlY0SDVtMCA4djJoMnYtMkg1eiIvPjwvc3ZnPg==)}.icon-document,.icon-text{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNNiAyYy0xLjEgMC0xLjk5LjktMS45OSAyTDQgMjBjMCAxLjEuODkgMiAxLjk5IDJIMThjMS4xIDAgMi0uOSAyLTJWOGwtNi02SDZ6bTcgN1YzLjVMMTguNSA5SDEzeiIvPjwvc3ZnPg==)}.icon-folder,[src$="/directory16.png"],[src$="folder.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHBhdGggZmlsbD0iIzlFOUU5RSIgZD0iTTEwIDRINGMtMS4xMSAwLTIgLjg5LTIgMnYxMmEyIDIgMCAwIDAgMiAyaDE2YTIgMiAwIDAgMCAyLTJWOGEyIDIgMCAwIDAtMi0yaC04bC0yLTJ6Ii8+PC9zdmc+)}.icon-clock,.icon-clock-anime,[src$="clock.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMTAgMTYuNWw2LTQuNS02LTQuNXY5ek0xMiAyQzYuNDggMiAyIDYuNDggMiAxMnM0LjQ4IDEwIDEwIDEwIDEwLTQuNDggMTAtMTBTMTcuNTIgMiAxMiAyem0wIDE4Yy00LjQxIDAtOC0zLjU5LTgtOHMzLjU5LTggOC04IDggMy41OSA4IDgtMy41OSA4LTggOHoiLz48L3N2Zz4=)}.icon-folder-delete,[src$="edit-delete.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHBhdGggZmlsbD0iIzlFOUU5RSIgZD0iTTEwIDRsMiAyaDhhMiAyIDAgMCAxIDIgMnYxMGEyIDIgMCAwIDEtMiAySDRhMiAyIDAgMCAxLTItMlY2YzAtMS4xMS44OS0yIDItMmg2bTIuNDYgNi44OEwxNC41OSAxM2wtMi4xMyAyLjEyIDEuNDIgMS40MkwxNiAxNC40MWwyLjEyIDIuMTMgMS40Mi0xLjQyTDE3LjQxIDEzbDIuMTMtMi4xMi0xLjQyLTEuNDJMMTYgMTEuNTlsLTIuMTItMi4xMy0xLjQyIDEuNDJ6Ii8+PC9zdmc+)}.icon-previous{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNNiA2aDJ2MTJINnptMy41IDZsOC41IDZWNnoiLz48L3N2Zz4=)}.icon-next{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNNiAxOGw4LjUtNkw2IDZ2MTJ6TTE2IDZ2MTJoMlY2aC0yeiIvPjwvc3ZnPg==)}.icon-save,[src$="/save.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMTcgM0g1YTIgMiAwIDAgMC0yIDJ2MTRhMiAyIDAgMCAwIDIgMmgxNGMxLjEgMCAyLS45IDItMlY3bC00LTR6bS01IDE2Yy0xLjY2IDAtMy0xLjM0LTMtM3MxLjM0LTMgMy0zIDMgMS4zNCAzIDMtMS4zNCAzLTMgM3ptMy0xMEg1VjVoMTB2NHoiLz48L3N2Zz4=)}.icon-package,[src$="package.gif"]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHBhdGggZmlsbD0iIzlFOUU5RSIgZD0iTTUuMTIgNWwuODEtMWgxMmwuOTQgMU0xMiAxNy41TDYuNSAxMkgxMHYtMmg0djJoMy41TDEyIDE3LjVtOC41NC0xMi4yN2wtMS4zOS0xLjY4QTEuNDUgMS40NSAwIDAgMCAxOCAzSDZjLS40NyAwLS44OC4yMS0xLjE2LjU1TDMuNDYgNS4yM0MzLjE3IDUuNTcgMyA2IDMgNi41VjE5YTIgMiAwIDAgMCAyIDJoMTRhMiAyIDAgMCAwIDItMlY2LjVjMC0uNS0uMTctLjkzLS40Ni0xLjI3eiIvPjwvc3ZnPg==)}.icon-search,[src$="search.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMTEgMTdoMnYtNmgtMnY2em0xLTE1QzYuNDggMiAyIDYuNDggMiAxMnM0LjQ4IDEwIDEwIDEwIDEwLTQuNDggMTAtMTBTMTcuNTIgMiAxMiAyem0wIDE4Yy00LjQxIDAtOC0zLjU5LTgtOHMzLjU5LTggOC04IDggMy41OSA4IDgtMy41OSA4LTggOHpNMTEgOWgyVjdoLTJ2MnoiLz48L3N2Zz4=)}.icon-stop{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iIzlFOUU5RSIgZD0iTTE1LjQgMi42NVExOCA1LjM1IDE4IDlxMCAzLjc1LTIuNiA2LjRRMTIuNzUgMTggOSAxOHEtMy43NSAwLTYuMzUtMi42UTAgMTIuNzUgMCA5cTAtMy43NSAyLjY1LTYuMzVRNS4yNSAwIDkgMHEzLjc1IDAgNi40IDIuNjVNMTYuMiA5cTAtMi45LTIuMS01UTExLjk1IDEuOCA5IDEuOCA2IDEuOCAzLjkgNCAxLjc1IDYuMSAxLjc1IDlxMCAzIDIuMTUgNS4xUTYgMTYuMiA5IDE2LjJxMi45NSAwIDUuMS0yLjFRMTYuMiAxMiAxNi4yIDlNNS4yNSAxMi43NXYtNy41aDcuNXY3LjVoLTcuNSIvPjwvc3ZnPg==)}[src$="/move.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNOSAxOHYtM0g1di00aDRWOGw1IDVtNi03aC04bC0yLTJINGMtMS4xMSAwLTIgLjg5LTIgMnYxMmEyIDIgMCAwIDAgMiAyaDE2YTIgMiAwIDAgMCAyLTJWOGEyIDIgMCAwIDAtMi0yeiIvPjwvc3ZnPg==)}[src$="/atom.gif"]{padding-left:28.8px!important;padding-top:28.8px!important;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHBhdGggZmlsbD0iI0ZGQzEwNyIgZD0iTTUgM2gxNGEyIDIgMCAwIDEgMiAydjE0YTIgMiAwIDAgMS0yIDJINWEyIDIgMCAwIDEtMi0yVjVhMiAyIDAgMCAxIDItMm0yLjUgMTJBMS41IDEuNSAwIDAgMCA2IDE2LjUgMS41IDEuNSAwIDAgMCA3LjUgMTggMS41IDEuNSAwIDAgMCA5IDE2LjUgMS41IDEuNSAwIDAgMCA3LjUgMTVNNiAxMHYyYTYgNiAwIDAgMSA2IDZoMmE4IDggMCAwIDAtOC04bTAtNHYyYTEwIDEwIDAgMCAxIDEwIDEwaDJBMTIgMTIgMCAwIDAgNiA2eiIvPjwvc3ZnPg==)}[src$="/atom.gif"],[src$="credentials.png"]{height:0!important;width:0!important;background-size:100% 100%!important;font-size:0!important}[src$="credentials.png"]{padding-left:57.6px!important;padding-top:57.6px!important;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHBhdGggZmlsbD0iIzlFOUU5RSIgZD0iTTcgMTRhMiAyIDAgMCAxLTItMiAyIDIgMCAwIDEgMi0yIDIgMiAwIDAgMSAyIDIgMiAyIDAgMCAxLTIgMm01LjY1LTRBNS45OSA1Ljk5IDAgMCAwIDcgNmE2IDYgMCAwIDAtNiA2IDYgNiAwIDAgMCA2IDYgNS45OSA1Ljk5IDAgMCAwIDUuNjUtNEgxN3Y0aDR2LTRoMnYtNEgxMi42NXoiLz48L3N2Zz4=)}[src$="confighistory.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMjIuNyAxOWwtOS4xLTkuMWMuOS0yLjMuNC01LTEuNS02LjktMi0yLTUtMi40LTcuNC0xLjNMOSA2IDYgOSAxLjYgNC43Qy40IDcuMS45IDEwLjEgMi45IDEyLjFjMS45IDEuOSA0LjYgMi40IDYuOSAxLjVsOS4xIDkuMWMuNC40IDEgLjQgMS40IDBsMi4zLTIuM2MuNS0uNC41LTEuMS4xLTEuNHoiLz48L3N2Zz4=)}[src$="domain.png"]{padding-left:57.6px!important;padding-top:57.6px!important;height:0!important;width:0!important;background-size:100% 100%!important;font-size:0!important;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHBhdGggZmlsbD0iIzlFOUU5RSIgZD0iTTE4IDE1aC0ydjJoMm0wLTZoLTJ2MmgybTIgNmgtOHYtMmgydi0yaC0ydi0yaDJ2LTJoLTJWOWg4TTEwIDdIOFY1aDJtMCA2SDhWOWgybTAgNkg4di0yaDJtMCA2SDh2LTJoMk02IDdINFY1aDJtMCA2SDRWOWgybTAgNkg0di0yaDJtMCA2SDR2LTJoMm02LTEwVjNIMnYxOGgyMFY3SDEyeiIvPjwvc3ZnPg==)}#description-link img,.icon-gear,[src$="gear.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMyAxNy4yNVYyMWgzLjc1TDE3LjgxIDkuOTRsLTMuNzUtMy43NUwzIDE3LjI1ek0yMC43MSA3LjA0YS45OTYuOTk2IDAgMCAwIDAtMS40MWwtMi4zNC0yLjM0YS45OTYuOTk2IDAgMCAwLTEuNDEgMGwtMS44MyAxLjgzIDMuNzUgMy43NSAxLjgzLTEuODN6Ii8+PC9zdmc+)}.icon-go-next{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMTIgNGwtMS40MSAxLjQxTDE2LjE3IDExSDR2MmgxMi4xN2wtNS41OCA1LjU5TDEyIDIwbDgtOHoiLz48L3N2Zz4=)}[src$="diskusage48.png"]{padding-left:57.6px!important;padding-top:57.6px!important;height:0!important;width:0!important;background-size:100% 100%!important;font-size:0!important;background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMiAyMGgyMHYtNEgydjR6bTItM2gydjJINHYtMnpNMiA0djRoMjBWNEgyem00IDNINFY1aDJ2MnptLTQgN2gyMHYtNEgydjR6bTItM2gydjJINHYtMnoiLz48L3N2Zz4=)}[src$="git-32x32.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHBhdGggZmlsbD0iIzlFOUU5RSIgZD0iTTIuNiAxMC41OUw4LjM4IDQuOGwxLjY5IDEuN2MtLjI0Ljg1LjE1IDEuNzguOTMgMi4yM3Y1LjU0Yy0uNi4zNC0xIC45OS0xIDEuNzNhMiAyIDAgMCAwIDIgMiAyIDIgMCAwIDAgMi0yYzAtLjc0LS40LTEuMzktMS0xLjczVjkuNDFsMi4wNyAyLjA5Yy0uMDcuMTUtLjA3LjMyLS4wNy41YTIgMiAwIDAgMCAyIDIgMiAyIDAgMCAwIDItMiAyIDIgMCAwIDAtMi0yYy0uMTggMC0uMzUgMC0uNS4wN0wxMy45MyA3LjVhMS45OCAxLjk4IDAgMCAwLTEuMTUtMi4zNGMtLjQzLS4xNi0uODgtLjItMS4yOC0uMDlMOS44IDMuMzhsLjc5LS43OGMuNzgtLjc5IDIuMDQtLjc5IDIuODIgMGw3Ljk5IDcuOTljLjc5Ljc4Ljc5IDIuMDQgMCAyLjgybC03Ljk5IDcuOTljLS43OC43OS0yLjA0Ljc5LTIuODIgMEwyLjYgMTMuNDFjLS43OS0uNzgtLjc5LTIuMDQgMC0yLjgyeiIvPjwvc3ZnPg==)}[src$="logov3.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMTIgMkExMCAxMCAwIDAgMCAyIDEyYzAgNC40MiAyLjg3IDguMTcgNi44NCA5LjUuNS4wOC42Ni0uMjMuNjYtLjV2LTEuNjljLTIuNzcuNi0zLjM2LTEuMzQtMy4zNi0xLjM0LS40Ni0xLjE2LTEuMTEtMS40Ny0xLjExLTEuNDctLjkxLS42Mi4wNy0uNi4wNy0uNiAxIC4wNyAxLjUzIDEuMDMgMS41MyAxLjAzLjg3IDEuNTIgMi4zNCAxLjA3IDIuOTEuODMuMDktLjY1LjM1LTEuMDkuNjMtMS4zNC0yLjIyLS4yNS00LjU1LTEuMTEtNC41NS00LjkyIDAtMS4xMS4zOC0yIDEuMDMtMi43MS0uMS0uMjUtLjQ1LTEuMjkuMS0yLjY0IDAgMCAuODQtLjI3IDIuNzUgMS4wMi43OS0uMjIgMS42NS0uMzMgMi41LS4zMy44NSAwIDEuNzEuMTEgMi41LjMzIDEuOTEtMS4yOSAyLjc1LTEuMDIgMi43NS0xLjAyLjU1IDEuMzUuMiAyLjM5LjEgMi42NC42NS43MSAxLjAzIDEuNiAxLjAzIDIuNzEgMCAzLjgyLTIuMzQgNC42Ni00LjU3IDQuOTEuMzYuMzEuNjkuOTIuNjkgMS44NVYyMWMwIC4yNy4xNi41OS42Ny41QzE5LjE0IDIwLjE2IDIyIDE2LjQyIDIyIDEyQTEwIDEwIDAgMCAwIDEyIDJ6Ii8+PC9zdmc+)}[src$="findbugs-24x24.png"],[src$="findbugs-48x48.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjOUU5RTlFIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTIwIDhoLTIuODFhNS45ODUgNS45ODUgMCAwIDAtMS44Mi0xLjk2TDE3IDQuNDEgMTUuNTkgM2wtMi4xNyAyLjE3QzEyLjk2IDUuMDYgMTIuNDkgNSAxMiA1Yy0uNDkgMC0uOTYuMDYtMS40MS4xN0w4LjQxIDMgNyA0LjQxbDEuNjIgMS42M0M3Ljg4IDYuNTUgNy4yNiA3LjIyIDYuODEgOEg0djJoMi4wOWMtLjA1LjMzLS4wOS42Ni0uMDkgMXYxSDR2MmgydjFjMCAuMzQuMDQuNjcuMDkgMUg0djJoMi44MWMxLjA0IDEuNzkgMi45NyAzIDUuMTkgM3M0LjE1LTEuMjEgNS4xOS0zSDIwdi0yaC0yLjA5Yy4wNS0uMzMuMDktLjY2LjA5LTF2LTFoMnYtMmgtMnYtMWMwLS4zNC0uMDQtLjY3LS4wOS0xSDIwVjh6bS02IDhoLTR2LTJoNHYyem0wLTRoLTR2LTJoNHYyeiIvPjwvc3ZnPg==)}[src$="dry-24x24.png"],[src$="dry-48x48.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjOUU5RTlFIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTEwIDNINWMtMS4xIDAtMiAuOS0yIDJ2MTRjMCAxLjEuOSAyIDIgMmg1djJoMlYxaC0ydjJ6bTAgMTVINWw1LTZ2NnptOS0xNWgtNXYyaDV2MTNsLTUtNnY5aDVjMS4xIDAgMi0uOSAyLTJWNWMwLTEuMS0uOS0yLTItMnoiLz48L3N2Zz4=)}[src$="checkstyle-24x24.png"],[src$="checkstyle-48x48.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjOUU5RTlFIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTE0LjQgNkwxNCA0SDV2MTdoMnYtN2g1LjZsLjQgMmg3VjZ6Ii8+PC9zdmc+)}[src$="pmd-24x24.png"],[src$="pmd-48x48.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjOUU5RTlFIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTIwIDJINGMtMS4xIDAtMS45OS45LTEuOTkgMkwyIDIybDQtNGgxNGMxLjEgMCAyLS45IDItMlY0YzAtMS4xLS45LTItMi0yem0tNyAxMmgtMnYtMmgydjJ6bTAtNGgtMlY2aDJ2NHoiLz48L3N2Zz4=)}[src$="tasks-24x24.png"],[src$="tasks-48x48.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjOUU5RTlFIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTE5IDNoLTQuMThDMTQuNCAxLjg0IDEzLjMgMSAxMiAxYy0xLjMgMC0yLjQuODQtMi44MiAySDVjLTEuMSAwLTIgLjktMiAydjE0YzAgMS4xLjkgMiAyIDJoMTRjMS4xIDAgMi0uOSAyLTJWNWMwLTEuMS0uOS0yLTItMnptLTYgMTVoLTJ2LTJoMnYyem0wLTRoLTJWOGgydjZ6bS0xLTljLS41NSAwLTEtLjQ1LTEtMXMuNDUtMSAxLTEgMSAuNDUgMSAxLS40NSAxLTEgMXoiLz48L3N2Zz4=)}[src$="analysis-24x24.png"],[src$="analysis-48x48.png"],[src$="go-24x24.png"],[src$="go-48x48.png"],[src$="idea-24x24.png"],[src$="idea-48x48.png"],[src$="java-24x24.png"],[src$="java-48x48.png"],[src$="resharper-24x24.png"],[src$="resharper-48x48.png"],[src$="scala-24x24.png"],[src$="scala-48x48.png"],[src$="warnings-24x24.png"],[src$="warnings-48x48.png"]{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjOUU5RTlFIiBkPSJNMSAyMWgyMkwxMiAyIDEgMjF6bTEyLTNoLTJ2LTJoMnYyem0wLTRoLTJ2LTRoMnY0eiIvPjwvc3ZnPg==)}#description-link img.icon48x48,#description-link img.icon-xlg,#description-link img[src*="48x"],.icon-aborted-anime.icon48x48,.icon-aborted-anime.icon-xlg,.icon-aborted-anime[src*="48x"],.icon-blue-anime.icon48x48,.icon-blue-anime.icon-xlg,.icon-blue-anime[src*="48x"],.icon-clipboard.icon48x48,.icon-clipboard.icon-xlg,.icon-clipboard[src*="48x"],.icon-clock-anime.icon48x48,.icon-clock-anime.icon-xlg,.icon-clock-anime[src*="48x"],.icon-clock.icon48x48,.icon-clock.icon-xlg,.icon-clock[src*="48x"],.icon-collapse.icon48x48,.icon-collapse.icon-xlg,.icon-collapse[src*="48x"],.icon-computer-x.icon48x48,.icon-computer-x.icon-xlg,.icon-computer-x[src*="48x"],.icon-computer.icon48x48,.icon-computer.icon-xlg,.icon-computer[src*="48x"],.icon-document.icon48x48,.icon-document.icon-xlg,.icon-document[src*="48x"],.icon-edit-delete.icon48x48,.icon-edit-delete.icon-xlg,.icon-edit-delete[src*="48x"],.icon-expand.icon48x48,.icon-expand.icon-xlg,.icon-expand[src*="48x"],.icon-fingerprint.icon48x48,.icon-fingerprint.icon-xlg,.icon-fingerprint[src*="48x"],.icon-folder-delete.icon48x48,.icon-folder-delete.icon-xlg,.icon-folder-delete[src*="48x"],.icon-folder.icon48x48,.icon-folder.icon-xlg,.icon-folder[src*="48x"],.icon-gear2.icon48x48,.icon-gear2.icon-xlg,.icon-gear2[src*="48x"],.icon-gear.icon48x48,.icon-gear.icon-xlg,.icon-gear[src*="48x"],.icon-go-next.icon48x48,.icon-go-next.icon-xlg,.icon-go-next[src*="48x"],.icon-graph.icon48x48,.icon-graph.icon-xlg,.icon-graph[src*="48x"],.icon-grey-anime.icon48x48,.icon-grey-anime.icon-xlg,.icon-grey-anime[src*="48x"],.icon-health-00to19.icon48x48,.icon-health-00to19.icon-xlg,.icon-health-00to19[src*="48x"],.icon-health-20to39.icon48x48,.icon-health-20to39.icon-xlg,.icon-health-20to39[src*="48x"],.icon-health-40to59.icon48x48,.icon-health-40to59.icon-xlg,.icon-health-40to59[src*="48x"],.icon-health-60to79.icon48x48,.icon-health-60to79.icon-xlg,.icon-health-60to79[src*="48x"],.icon-health-80plus.icon48x48,.icon-health-80plus.icon-xlg,.icon-health-80plus[src*="48x"],.icon-help.icon48x48,.icon-help.icon-xlg,.icon-help[src*="48x"],.icon-lock.icon48x48,.icon-lock.icon-xlg,.icon-lock[src*="48x"],.icon-monitor.icon48x48,.icon-monitor.icon-xlg,.icon-monitor[src*="48x"],.icon-network.icon48x48,.icon-network.icon-xlg,.icon-network[src*="48x"],.icon-new-computer.icon48x48,.icon-new-computer.icon-xlg,.icon-new-computer[src*="48x"],.icon-new-package.icon48x48,.icon-new-package.icon-xlg,.icon-new-package[src*="48x"],.icon-next.icon48x48,.icon-next.icon-xlg,.icon-next[src*="48x"],.icon-nobuilt-anime.icon48x48,.icon-nobuilt-anime.icon-xlg,.icon-nobuilt-anime[src*="48x"],.icon-notepad.icon48x48,.icon-notepad.icon-xlg,.icon-notepad[src*="48x"],.icon-package.icon48x48,.icon-package.icon-xlg,.icon-package[src*="48x"],.icon-plugin.icon48x48,.icon-plugin.icon-xlg,.icon-plugin[src*="48x"],.icon-previous.icon48x48,.icon-previous.icon-xlg,.icon-previous[src*="48x"],.icon-red-anime.icon48x48,.icon-red-anime.icon-xlg,.icon-red-anime[src*="48x"],.icon-refresh.icon48x48,.icon-refresh.icon-xlg,.icon-refresh[src*="48x"],.icon-save.icon48x48,.icon-save.icon-xlg,.icon-save[src*="48x"],.icon-search.icon48x48,.icon-search.icon-xlg,.icon-search[src*="48x"],.icon-secure.icon48x48,.icon-secure.icon-xlg,.icon-secure[src*="48x"],.icon-setting.icon48x48,.icon-setting.icon-xlg,.icon-setting[src*="48x"],.icon-stop.icon48x48,.icon-stop.icon-xlg,.icon-stop[src*="48x"],.icon-system-log-out.icon48x48,.icon-system-log-out.icon-xlg,.icon-system-log-out[src*="48x"],.icon-terminal.icon48x48,.icon-terminal.icon-xlg,.icon-terminal[src*="48x"],.icon-text.icon48x48,.icon-text.icon-xlg,.icon-text[src*="48x"],.icon-up.icon48x48,.icon-up.icon-xlg,.icon-up[src*="48x"],.icon-user.icon48x48,.icon-user.icon-xlg,.icon-user[src*="48x"],.icon-yellow-anime.icon48x48,.icon-yellow-anime.icon-xlg,.icon-yellow-anime[src*="48x"],[src$="/atom.gif"].icon48x48,[src$="/atom.gif"].icon-xlg,[src$="/atom.gif"][src*="48x"],[src$="/directory16.png"].icon48x48,[src$="/directory16.png"].icon-xlg,[src$="/directory16.png"][src*="48x"],[src$="/move.png"].icon48x48,[src$="/move.png"].icon-xlg,[src$="/move.png"][src*="48x"],[src$="/save.png"].icon48x48,[src$="/save.png"].icon-xlg,[src$="/save.png"][src*="48x"],[src$="aborted.png"].icon48x48,[src$="aborted.png"].icon-xlg,[src$="aborted.png"][src*="48x"],[src$="analysis-24x24.png"].icon48x48,[src$="analysis-24x24.png"].icon-xlg,[src$="analysis-24x24.png"][src*="48x"],[src$="analysis-48x48.png"].icon48x48,[src$="analysis-48x48.png"].icon-xlg,[src$="analysis-48x48.png"][src*="48x"],[src$="blue.png"].icon48x48,[src$="blue.png"].icon-xlg,[src$="blue.png"][src*="48x"],[src$="blue_anime.gif"].icon48x48,[src$="blue_anime.gif"].icon-xlg,[src$="blue_anime.gif"][src*="48x"],[src$="checkstyle-24x24.png"].icon48x48,[src$="checkstyle-24x24.png"].icon-xlg,[src$="checkstyle-24x24.png"][src*="48x"],[src$="checkstyle-48x48.png"].icon48x48,[src$="checkstyle-48x48.png"].icon-xlg,[src$="checkstyle-48x48.png"][src*="48x"],[src$="clipboard.png"].icon48x48,[src$="clipboard.png"].icon-xlg,[src$="clipboard.png"][src*="48x"],[src$="clock.png"].icon48x48,[src$="clock.png"].icon-xlg,[src$="clock.png"][src*="48x"],[src$="computer.png"].icon48x48,[src$="computer.png"].icon-xlg,[src$="computer.png"][src*="48x"],[src$="confighistory.png"].icon48x48,[src$="confighistory.png"].icon-xlg,[src$="confighistory.png"][src*="48x"],[src$="credentials.png"].icon48x48,[src$="credentials.png"].icon-xlg,[src$="credentials.png"][src*="48x"],[src$="disabled.png"].icon48x48,[src$="disabled.png"].icon-xlg,[src$="disabled.png"][src*="48x"],[src$="diskusage48.png"].icon48x48,[src$="diskusage48.png"].icon-xlg,[src$="diskusage48.png"][src*="48x"],[src$="domain.png"].icon48x48,[src$="domain.png"].icon-xlg,[src$="domain.png"][src*="48x"],[src$="dry-24x24.png"].icon48x48,[src$="dry-24x24.png"].icon-xlg,[src$="dry-24x24.png"][src*="48x"],[src$="dry-48x48.png"].icon48x48,[src$="dry-48x48.png"].icon-xlg,[src$="dry-48x48.png"][src*="48x"],[src$="edit-delete.png"].icon48x48,[src$="edit-delete.png"].icon-xlg,[src$="edit-delete.png"][src*="48x"],[src$="findbugs-24x24.png"].icon48x48,[src$="findbugs-24x24.png"].icon-xlg,[src$="findbugs-24x24.png"][src*="48x"],[src$="findbugs-48x48.png"].icon48x48,[src$="findbugs-48x48.png"].icon-xlg,[src$="findbugs-48x48.png"][src*="48x"],[src$="fingerprint.png"].icon48x48,[src$="fingerprint.png"].icon-xlg,[src$="fingerprint.png"][src*="48x"],[src$="folder.png"].icon48x48,[src$="folder.png"].icon-xlg,[src$="folder.png"][src*="48x"],[src$="gear2.png"].icon48x48,[src$="gear2.png"].icon-xlg,[src$="gear2.png"][src*="48x"],[src$="gear.png"].icon48x48,[src$="gear.png"].icon-xlg,[src$="gear.png"][src*="48x"],[src$="git-32x32.png"].icon48x48,[src$="git-32x32.png"].icon-xlg,[src$="git-32x32.png"][src*="48x"],[src$="go-24x24.png"].icon48x48,[src$="go-24x24.png"].icon-xlg,[src$="go-24x24.png"][src*="48x"],[src$="go-48x48.png"].icon48x48,[src$="go-48x48.png"].icon-xlg,[src$="go-48x48.png"][src*="48x"],[src$="graph.png"].icon48x48,[src$="graph.png"].icon-xlg,[src$="graph.png"][src*="48x"],[src$="grey.png"].icon48x48,[src$="grey.png"].icon-xlg,[src$="grey.png"][src*="48x"],[src$="grey_anime.gif"].icon48x48,[src$="grey_anime.gif"].icon-xlg,[src$="grey_anime.gif"][src*="48x"],[src$="help.png"].icon48x48,[src$="help.png"].icon-xlg,[src$="help.png"][src*="48x"],[src$="idea-24x24.png"].icon48x48,[src$="idea-24x24.png"].icon-xlg,[src$="idea-24x24.png"][src*="48x"],[src$="idea-48x48.png"].icon48x48,[src$="idea-48x48.png"].icon-xlg,[src$="idea-48x48.png"][src*="48x"],[src$="java-24x24.png"].icon48x48,[src$="java-24x24.png"].icon-xlg,[src$="java-24x24.png"][src*="48x"],[src$="java-48x48.png"].icon48x48,[src$="java-48x48.png"].icon-xlg,[src$="java-48x48.png"][src*="48x"],[src$="logov3.png"].icon48x48,[src$="logov3.png"].icon-xlg,[src$="logov3.png"][src*="48x"],[src$="monitor.png"].icon48x48,[src$="monitor.png"].icon-xlg,[src$="monitor.png"][src*="48x"],[src$="network.png"].icon48x48,[src$="network.png"].icon-xlg,[src$="network.png"][src*="48x"],[src$="new-package.png"].icon48x48,[src$="new-package.png"].icon-xlg,[src$="new-package.png"][src*="48x"],[src$="nobuilt.png"].icon48x48,[src$="nobuilt.png"].icon-xlg,[src$="nobuilt.png"][src*="48x"],[src$="notepad.png"].icon48x48,[src$="notepad.png"].icon-xlg,[src$="notepad.png"][src*="48x"],[src$="package.gif"].icon48x48,[src$="package.gif"].icon-xlg,[src$="package.gif"][src*="48x"],[src$="plugin.png"].icon48x48,[src$="plugin.png"].icon-xlg,[src$="plugin.png"][src*="48x"],[src$="pmd-24x24.png"].icon48x48,[src$="pmd-24x24.png"].icon-xlg,[src$="pmd-24x24.png"][src*="48x"],[src$="pmd-48x48.png"].icon48x48,[src$="pmd-48x48.png"].icon-xlg,[src$="pmd-48x48.png"][src*="48x"],[src$="red.png"].icon48x48,[src$="red.png"].icon-xlg,[src$="red.png"][src*="48x"],[src$="red_anime.gif"].icon48x48,[src$="red_anime.gif"].icon-xlg,[src$="red_anime.gif"][src*="48x"],[src$="refresh.png"].icon48x48,[src$="refresh.png"].icon-xlg,[src$="refresh.png"][src*="48x"],[src$="resharper-24x24.png"].icon48x48,[src$="resharper-24x24.png"].icon-xlg,[src$="resharper-24x24.png"][src*="48x"],[src$="resharper-48x48.png"].icon48x48,[src$="resharper-48x48.png"].icon-xlg,[src$="resharper-48x48.png"][src*="48x"],[src$="scala-24x24.png"].icon48x48,[src$="scala-24x24.png"].icon-xlg,[src$="scala-24x24.png"][src*="48x"],[src$="scala-48x48.png"].icon48x48,[src$="scala-48x48.png"].icon-xlg,[src$="scala-48x48.png"][src*="48x"],[src$="search.png"].icon48x48,[src$="search.png"].icon-xlg,[src$="search.png"][src*="48x"],[src$="secure.png"].icon48x48,[src$="secure.png"].icon-xlg,[src$="secure.png"][src*="48x"],[src$="setting.png"].icon48x48,[src$="setting.png"].icon-xlg,[src$="setting.png"][src*="48x"],[src$="system-log-out.png"].icon48x48,[src$="system-log-out.png"].icon-xlg,[src$="system-log-out.png"][src*="48x"],[src$="tasks-24x24.png"].icon48x48,[src$="tasks-24x24.png"].icon-xlg,[src$="tasks-24x24.png"][src*="48x"],[src$="tasks-48x48.png"].icon48x48,[src$="tasks-48x48.png"].icon-xlg,[src$="tasks-48x48.png"][src*="48x"],[src$="terminal.png"].icon48x48,[src$="terminal.png"].icon-xlg,[src$="terminal.png"][src*="48x"],[src$="user.png"].icon48x48,[src$="user.png"].icon-xlg,[src$="user.png"][src*="48x"],[src$="warnings-24x24.png"].icon48x48,[src$="warnings-24x24.png"].icon-xlg,[src$="warnings-24x24.png"][src*="48x"],[src$="warnings-48x48.png"].icon48x48,[src$="warnings-48x48.png"].icon-xlg,[src$="warnings-48x48.png"][src*="48x"],[src$="yellow.png"].icon48x48,[src$="yellow.png"].icon-xlg,[src$="yellow.png"][src*="48x"],[src$="yellow_anime.gif"].icon48x48,[src$="yellow_anime.gif"].icon-xlg,[src$="yellow_anime.gif"][src*="48x"]{padding-left:57.6px!important;padding-top:57.6px!important;height:0!important;width:0!important;background-size:100% 100%!important;font-size:0!important}#description-link img.icon32x32,#description-link img.icon-lg,#description-link img[src*="32x"],#description-link img[style*="width: 32p"],#description-link img[width="32"],.icon-aborted-anime.icon32x32,.icon-aborted-anime.icon-lg,.icon-aborted-anime[src*="32x"],.icon-aborted-anime[style*="width: 32p"],.icon-aborted-anime[width="32"],.icon-blue-anime.icon32x32,.icon-blue-anime.icon-lg,.icon-blue-anime[src*="32x"],.icon-blue-anime[style*="width: 32p"],.icon-blue-anime[width="32"],.icon-clipboard.icon32x32,.icon-clipboard.icon-lg,.icon-clipboard[src*="32x"],.icon-clipboard[style*="width: 32p"],.icon-clipboard[width="32"],.icon-clock-anime.icon32x32,.icon-clock-anime.icon-lg,.icon-clock-anime[src*="32x"],.icon-clock-anime[style*="width: 32p"],.icon-clock-anime[width="32"],.icon-clock.icon32x32,.icon-clock.icon-lg,.icon-clock[src*="32x"],.icon-clock[style*="width: 32p"],.icon-clock[width="32"],.icon-collapse.icon32x32,.icon-collapse.icon-lg,.icon-collapse[src*="32x"],.icon-collapse[style*="width: 32p"],.icon-collapse[width="32"],.icon-computer-x.icon32x32,.icon-computer-x.icon-lg,.icon-computer-x[src*="32x"],.icon-computer-x[style*="width: 32p"],.icon-computer-x[width="32"],.icon-computer.icon32x32,.icon-computer.icon-lg,.icon-computer[src*="32x"],.icon-computer[style*="width: 32p"],.icon-computer[width="32"],.icon-document.icon32x32,.icon-document.icon-lg,.icon-document[src*="32x"],.icon-document[style*="width: 32p"],.icon-document[width="32"],.icon-edit-delete.icon32x32,.icon-edit-delete.icon-lg,.icon-edit-delete[src*="32x"],.icon-edit-delete[style*="width: 32p"],.icon-edit-delete[width="32"],.icon-expand.icon32x32,.icon-expand.icon-lg,.icon-expand[src*="32x"],.icon-expand[style*="width: 32p"],.icon-expand[width="32"],.icon-fingerprint.icon32x32,.icon-fingerprint.icon-lg,.icon-fingerprint[src*="32x"],.icon-fingerprint[style*="width: 32p"],.icon-fingerprint[width="32"],.icon-folder-delete.icon32x32,.icon-folder-delete.icon-lg,.icon-folder-delete[src*="32x"],.icon-folder-delete[style*="width: 32p"],.icon-folder-delete[width="32"],.icon-folder.icon32x32,.icon-folder.icon-lg,.icon-folder[src*="32x"],.icon-folder[style*="width: 32p"],.icon-folder[width="32"],.icon-gear2.icon32x32,.icon-gear2.icon-lg,.icon-gear2[src*="32x"],.icon-gear2[style*="width: 32p"],.icon-gear2[width="32"],.icon-gear.icon32x32,.icon-gear.icon-lg,.icon-gear[src*="32x"],.icon-gear[style*="width: 32p"],.icon-gear[width="32"],.icon-go-next.icon32x32,.icon-go-next.icon-lg,.icon-go-next[src*="32x"],.icon-go-next[style*="width: 32p"],.icon-go-next[width="32"],.icon-graph.icon32x32,.icon-graph.icon-lg,.icon-graph[src*="32x"],.icon-graph[style*="width: 32p"],.icon-graph[width="32"],.icon-grey-anime.icon32x32,.icon-grey-anime.icon-lg,.icon-grey-anime[src*="32x"],.icon-grey-anime[style*="width: 32p"],.icon-grey-anime[width="32"],.icon-health-00to19.icon32x32,.icon-health-00to19.icon-lg,.icon-health-00to19[src*="32x"],.icon-health-00to19[style*="width: 32p"],.icon-health-00to19[width="32"],.icon-health-20to39.icon32x32,.icon-health-20to39.icon-lg,.icon-health-20to39[src*="32x"],.icon-health-20to39[style*="width: 32p"],.icon-health-20to39[width="32"],.icon-health-40to59.icon32x32,.icon-health-40to59.icon-lg,.icon-health-40to59[src*="32x"],.icon-health-40to59[style*="width: 32p"],.icon-health-40to59[width="32"],.icon-health-60to79.icon32x32,.icon-health-60to79.icon-lg,.icon-health-60to79[src*="32x"],.icon-health-60to79[style*="width: 32p"],.icon-health-60to79[width="32"],.icon-health-80plus.icon32x32,.icon-health-80plus.icon-lg,.icon-health-80plus[src*="32x"],.icon-health-80plus[style*="width: 32p"],.icon-health-80plus[width="32"],.icon-help.icon32x32,.icon-help.icon-lg,.icon-help[src*="32x"],.icon-help[style*="width: 32p"],.icon-help[width="32"],.icon-lock.icon32x32,.icon-lock.icon-lg,.icon-lock[src*="32x"],.icon-lock[style*="width: 32p"],.icon-lock[width="32"],.icon-monitor.icon32x32,.icon-monitor.icon-lg,.icon-monitor[src*="32x"],.icon-monitor[style*="width: 32p"],.icon-monitor[width="32"],.icon-network.icon32x32,.icon-network.icon-lg,.icon-network[src*="32x"],.icon-network[style*="width: 32p"],.icon-network[width="32"],.icon-new-computer.icon32x32,.icon-new-computer.icon-lg,.icon-new-computer[src*="32x"],.icon-new-computer[style*="width: 32p"],.icon-new-computer[width="32"],.icon-new-package.icon32x32,.icon-new-package.icon-lg,.icon-new-package[src*="32x"],.icon-new-package[style*="width: 32p"],.icon-new-package[width="32"],.icon-next.icon32x32,.icon-next.icon-lg,.icon-next[src*="32x"],.icon-next[style*="width: 32p"],.icon-next[width="32"],.icon-nobuilt-anime.icon32x32,.icon-nobuilt-anime.icon-lg,.icon-nobuilt-anime[src*="32x"],.icon-nobuilt-anime[style*="width: 32p"],.icon-nobuilt-anime[width="32"],.icon-notepad.icon32x32,.icon-notepad.icon-lg,.icon-notepad[src*="32x"],.icon-notepad[style*="width: 32p"],.icon-notepad[width="32"],.icon-package.icon32x32,.icon-package.icon-lg,.icon-package[src*="32x"],.icon-package[style*="width: 32p"],.icon-package[width="32"],.icon-plugin.icon32x32,.icon-plugin.icon-lg,.icon-plugin[src*="32x"],.icon-plugin[style*="width: 32p"],.icon-plugin[width="32"],.icon-previous.icon32x32,.icon-previous.icon-lg,.icon-previous[src*="32x"],.icon-previous[style*="width: 32p"],.icon-previous[width="32"],.icon-red-anime.icon32x32,.icon-red-anime.icon-lg,.icon-red-anime[src*="32x"],.icon-red-anime[style*="width: 32p"],.icon-red-anime[width="32"],.icon-refresh.icon32x32,.icon-refresh.icon-lg,.icon-refresh[src*="32x"],.icon-refresh[style*="width: 32p"],.icon-refresh[width="32"],.icon-save.icon32x32,.icon-save.icon-lg,.icon-save[src*="32x"],.icon-save[style*="width: 32p"],.icon-save[width="32"],.icon-search.icon32x32,.icon-search.icon-lg,.icon-search[src*="32x"],.icon-search[style*="width: 32p"],.icon-search[width="32"],.icon-secure.icon32x32,.icon-secure.icon-lg,.icon-secure[src*="32x"],.icon-secure[style*="width: 32p"],.icon-secure[width="32"],.icon-setting.icon32x32,.icon-setting.icon-lg,.icon-setting[src*="32x"],.icon-setting[style*="width: 32p"],.icon-setting[width="32"],.icon-stop.icon32x32,.icon-stop.icon-lg,.icon-stop[src*="32x"],.icon-stop[style*="width: 32p"],.icon-stop[width="32"],.icon-system-log-out.icon32x32,.icon-system-log-out.icon-lg,.icon-system-log-out[src*="32x"],.icon-system-log-out[style*="width: 32p"],.icon-system-log-out[width="32"],.icon-terminal.icon32x32,.icon-terminal.icon-lg,.icon-terminal[src*="32x"],.icon-terminal[style*="width: 32p"],.icon-terminal[width="32"],.icon-text.icon32x32,.icon-text.icon-lg,.icon-text[src*="32x"],.icon-text[style*="width: 32p"],.icon-text[width="32"],.icon-up.icon32x32,.icon-up.icon-lg,.icon-up[src*="32x"],.icon-up[style*="width: 32p"],.icon-up[width="32"],.icon-user.icon32x32,.icon-user.icon-lg,.icon-user[src*="32x"],.icon-user[style*="width: 32p"],.icon-user[width="32"],.icon-yellow-anime.icon32x32,.icon-yellow-anime.icon-lg,.icon-yellow-anime[src*="32x"],.icon-yellow-anime[style*="width: 32p"],.icon-yellow-anime[width="32"],[src$="/atom.gif"].icon32x32,[src$="/atom.gif"].icon-lg,[src$="/atom.gif"][src*="32x"],[src$="/atom.gif"][style*="width: 32p"],[src$="/atom.gif"][width="32"],[src$="/directory16.png"].icon32x32,[src$="/directory16.png"].icon-lg,[src$="/directory16.png"][src*="32x"],[src$="/directory16.png"][style*="width: 32p"],[src$="/directory16.png"][width="32"],[src$="/move.png"].icon32x32,[src$="/move.png"].icon-lg,[src$="/move.png"][src*="32x"],[src$="/move.png"][style*="width: 32p"],[src$="/move.png"][width="32"],[src$="/save.png"].icon32x32,[src$="/save.png"].icon-lg,[src$="/save.png"][src*="32x"],[src$="/save.png"][style*="width: 32p"],[src$="/save.png"][width="32"],[src$="aborted.png"].icon32x32,[src$="aborted.png"].icon-lg,[src$="aborted.png"][src*="32x"],[src$="aborted.png"][style*="width: 32p"],[src$="aborted.png"][width="32"],[src$="analysis-24x24.png"].icon32x32,[src$="analysis-24x24.png"].icon-lg,[src$="analysis-24x24.png"][src*="32x"],[src$="analysis-24x24.png"][style*="width: 32p"],[src$="analysis-24x24.png"][width="32"],[src$="analysis-48x48.png"].icon32x32,[src$="analysis-48x48.png"].icon-lg,[src$="analysis-48x48.png"][src*="32x"],[src$="analysis-48x48.png"][style*="width: 32p"],[src$="analysis-48x48.png"][width="32"],[src$="blue.png"].icon32x32,[src$="blue.png"].icon-lg,[src$="blue.png"][src*="32x"],[src$="blue.png"][style*="width: 32p"],[src$="blue.png"][width="32"],[src$="blue_anime.gif"].icon32x32,[src$="blue_anime.gif"].icon-lg,[src$="blue_anime.gif"][src*="32x"],[src$="blue_anime.gif"][style*="width: 32p"],[src$="blue_anime.gif"][width="32"],[src$="checkstyle-24x24.png"].icon32x32,[src$="checkstyle-24x24.png"].icon-lg,[src$="checkstyle-24x24.png"][src*="32x"],[src$="checkstyle-24x24.png"][style*="width: 32p"],[src$="checkstyle-24x24.png"][width="32"],[src$="checkstyle-48x48.png"].icon32x32,[src$="checkstyle-48x48.png"].icon-lg,[src$="checkstyle-48x48.png"][src*="32x"],[src$="checkstyle-48x48.png"][style*="width: 32p"],[src$="checkstyle-48x48.png"][width="32"],[src$="clipboard.png"].icon32x32,[src$="clipboard.png"].icon-lg,[src$="clipboard.png"][src*="32x"],[src$="clipboard.png"][style*="width: 32p"],[src$="clipboard.png"][width="32"],[src$="clock.png"].icon32x32,[src$="clock.png"].icon-lg,[src$="clock.png"][src*="32x"],[src$="clock.png"][style*="width: 32p"],[src$="clock.png"][width="32"],[src$="computer.png"].icon32x32,[src$="computer.png"].icon-lg,[src$="computer.png"][src*="32x"],[src$="computer.png"][style*="width: 32p"],[src$="computer.png"][width="32"],[src$="confighistory.png"].icon32x32,[src$="confighistory.png"].icon-lg,[src$="confighistory.png"][src*="32x"],[src$="confighistory.png"][style*="width: 32p"],[src$="confighistory.png"][width="32"],[src$="credentials.png"].icon32x32,[src$="credentials.png"].icon-lg,[src$="credentials.png"][src*="32x"],[src$="credentials.png"][style*="width: 32p"],[src$="credentials.png"][width="32"],[src$="disabled.png"].icon32x32,[src$="disabled.png"].icon-lg,[src$="disabled.png"][src*="32x"],[src$="disabled.png"][style*="width: 32p"],[src$="disabled.png"][width="32"],[src$="diskusage48.png"].icon32x32,[src$="diskusage48.png"].icon-lg,[src$="diskusage48.png"][src*="32x"],[src$="diskusage48.png"][style*="width: 32p"],[src$="diskusage48.png"][width="32"],[src$="domain.png"].icon32x32,[src$="domain.png"].icon-lg,[src$="domain.png"][src*="32x"],[src$="domain.png"][style*="width: 32p"],[src$="domain.png"][width="32"],[src$="dry-24x24.png"].icon32x32,[src$="dry-24x24.png"].icon-lg,[src$="dry-24x24.png"][src*="32x"],[src$="dry-24x24.png"][style*="width: 32p"],[src$="dry-24x24.png"][width="32"],[src$="dry-48x48.png"].icon32x32,[src$="dry-48x48.png"].icon-lg,[src$="dry-48x48.png"][src*="32x"],[src$="dry-48x48.png"][style*="width: 32p"],[src$="dry-48x48.png"][width="32"],[src$="edit-delete.png"].icon32x32,[src$="edit-delete.png"].icon-lg,[src$="edit-delete.png"][src*="32x"],[src$="edit-delete.png"][style*="width: 32p"],[src$="edit-delete.png"][width="32"],[src$="findbugs-24x24.png"].icon32x32,[src$="findbugs-24x24.png"].icon-lg,[src$="findbugs-24x24.png"][src*="32x"],[src$="findbugs-24x24.png"][style*="width: 32p"],[src$="findbugs-24x24.png"][width="32"],[src$="findbugs-48x48.png"].icon32x32,[src$="findbugs-48x48.png"].icon-lg,[src$="findbugs-48x48.png"][src*="32x"],[src$="findbugs-48x48.png"][style*="width: 32p"],[src$="findbugs-48x48.png"][width="32"],[src$="fingerprint.png"].icon32x32,[src$="fingerprint.png"].icon-lg,[src$="fingerprint.png"][src*="32x"],[src$="fingerprint.png"][style*="width: 32p"],[src$="fingerprint.png"][width="32"],[src$="folder.png"].icon32x32,[src$="folder.png"].icon-lg,[src$="folder.png"][src*="32x"],[src$="folder.png"][style*="width: 32p"],[src$="folder.png"][width="32"],[src$="gear2.png"].icon32x32,[src$="gear2.png"].icon-lg,[src$="gear2.png"][src*="32x"],[src$="gear2.png"][style*="width: 32p"],[src$="gear2.png"][width="32"],[src$="gear.png"].icon32x32,[src$="gear.png"].icon-lg,[src$="gear.png"][src*="32x"],[src$="gear.png"][style*="width: 32p"],[src$="gear.png"][width="32"],[src$="git-32x32.png"].icon32x32,[src$="git-32x32.png"].icon-lg,[src$="git-32x32.png"][src*="32x"],[src$="git-32x32.png"][style*="width: 32p"],[src$="git-32x32.png"][width="32"],[src$="go-24x24.png"].icon32x32,[src$="go-24x24.png"].icon-lg,[src$="go-24x24.png"][src*="32x"],[src$="go-24x24.png"][style*="width: 32p"],[src$="go-24x24.png"][width="32"],[src$="go-48x48.png"].icon32x32,[src$="go-48x48.png"].icon-lg,[src$="go-48x48.png"][src*="32x"],[src$="go-48x48.png"][style*="width: 32p"],[src$="go-48x48.png"][width="32"],[src$="graph.png"].icon32x32,[src$="graph.png"].icon-lg,[src$="graph.png"][src*="32x"],[src$="graph.png"][style*="width: 32p"],[src$="graph.png"][width="32"],[src$="grey.png"].icon32x32,[src$="grey.png"].icon-lg,[src$="grey.png"][src*="32x"],[src$="grey.png"][style*="width: 32p"],[src$="grey.png"][width="32"],[src$="grey_anime.gif"].icon32x32,[src$="grey_anime.gif"].icon-lg,[src$="grey_anime.gif"][src*="32x"],[src$="grey_anime.gif"][style*="width: 32p"],[src$="grey_anime.gif"][width="32"],[src$="help.png"].icon32x32,[src$="help.png"].icon-lg,[src$="help.png"][src*="32x"],[src$="help.png"][style*="width: 32p"],[src$="help.png"][width="32"],[src$="idea-24x24.png"].icon32x32,[src$="idea-24x24.png"].icon-lg,[src$="idea-24x24.png"][src*="32x"],[src$="idea-24x24.png"][style*="width: 32p"],[src$="idea-24x24.png"][width="32"],[src$="idea-48x48.png"].icon32x32,[src$="idea-48x48.png"].icon-lg,[src$="idea-48x48.png"][src*="32x"],[src$="idea-48x48.png"][style*="width: 32p"],[src$="idea-48x48.png"][width="32"],[src$="java-24x24.png"].icon32x32,[src$="java-24x24.png"].icon-lg,[src$="java-24x24.png"][src*="32x"],[src$="java-24x24.png"][style*="width: 32p"],[src$="java-24x24.png"][width="32"],[src$="java-48x48.png"].icon32x32,[src$="java-48x48.png"].icon-lg,[src$="java-48x48.png"][src*="32x"],[src$="java-48x48.png"][style*="width: 32p"],[src$="java-48x48.png"][width="32"],[src$="logov3.png"].icon32x32,[src$="logov3.png"].icon-lg,[src$="logov3.png"][src*="32x"],[src$="logov3.png"][style*="width: 32p"],[src$="logov3.png"][width="32"],[src$="monitor.png"].icon32x32,[src$="monitor.png"].icon-lg,[src$="monitor.png"][src*="32x"],[src$="monitor.png"][style*="width: 32p"],[src$="monitor.png"][width="32"],[src$="network.png"].icon32x32,[src$="network.png"].icon-lg,[src$="network.png"][src*="32x"],[src$="network.png"][style*="width: 32p"],[src$="network.png"][width="32"],[src$="new-package.png"].icon32x32,[src$="new-package.png"].icon-lg,[src$="new-package.png"][src*="32x"],[src$="new-package.png"][style*="width: 32p"],[src$="new-package.png"][width="32"],[src$="nobuilt.png"].icon32x32,[src$="nobuilt.png"].icon-lg,[src$="nobuilt.png"][src*="32x"],[src$="nobuilt.png"][style*="width: 32p"],[src$="nobuilt.png"][width="32"],[src$="notepad.png"].icon32x32,[src$="notepad.png"].icon-lg,[src$="notepad.png"][src*="32x"],[src$="notepad.png"][style*="width: 32p"],[src$="notepad.png"][width="32"],[src$="package.gif"].icon32x32,[src$="package.gif"].icon-lg,[src$="package.gif"][src*="32x"],[src$="package.gif"][style*="width: 32p"],[src$="package.gif"][width="32"],[src$="plugin.png"].icon32x32,[src$="plugin.png"].icon-lg,[src$="plugin.png"][src*="32x"],[src$="plugin.png"][style*="width: 32p"],[src$="plugin.png"][width="32"],[src$="pmd-24x24.png"].icon32x32,[src$="pmd-24x24.png"].icon-lg,[src$="pmd-24x24.png"][src*="32x"],[src$="pmd-24x24.png"][style*="width: 32p"],[src$="pmd-24x24.png"][width="32"],[src$="pmd-48x48.png"].icon32x32,[src$="pmd-48x48.png"].icon-lg,[src$="pmd-48x48.png"][src*="32x"],[src$="pmd-48x48.png"][style*="width: 32p"],[src$="pmd-48x48.png"][width="32"],[src$="red.png"].icon32x32,[src$="red.png"].icon-lg,[src$="red.png"][src*="32x"],[src$="red.png"][style*="width: 32p"],[src$="red.png"][width="32"],[src$="red_anime.gif"].icon32x32,[src$="red_anime.gif"].icon-lg,[src$="red_anime.gif"][src*="32x"],[src$="red_anime.gif"][style*="width: 32p"],[src$="red_anime.gif"][width="32"],[src$="refresh.png"].icon32x32,[src$="refresh.png"].icon-lg,[src$="refresh.png"][src*="32x"],[src$="refresh.png"][style*="width: 32p"],[src$="refresh.png"][width="32"],[src$="resharper-24x24.png"].icon32x32,[src$="resharper-24x24.png"].icon-lg,[src$="resharper-24x24.png"][src*="32x"],[src$="resharper-24x24.png"][style*="width: 32p"],[src$="resharper-24x24.png"][width="32"],[src$="resharper-48x48.png"].icon32x32,[src$="resharper-48x48.png"].icon-lg,[src$="resharper-48x48.png"][src*="32x"],[src$="resharper-48x48.png"][style*="width: 32p"],[src$="resharper-48x48.png"][width="32"],[src$="scala-24x24.png"].icon32x32,[src$="scala-24x24.png"].icon-lg,[src$="scala-24x24.png"][src*="32x"],[src$="scala-24x24.png"][style*="width: 32p"],[src$="scala-24x24.png"][width="32"],[src$="scala-48x48.png"].icon32x32,[src$="scala-48x48.png"].icon-lg,[src$="scala-48x48.png"][src*="32x"],[src$="scala-48x48.png"][style*="width: 32p"],[src$="scala-48x48.png"][width="32"],[src$="search.png"].icon32x32,[src$="search.png"].icon-lg,[src$="search.png"][src*="32x"],[src$="search.png"][style*="width: 32p"],[src$="search.png"][width="32"],[src$="secure.png"].icon32x32,[src$="secure.png"].icon-lg,[src$="secure.png"][src*="32x"],[src$="secure.png"][style*="width: 32p"],[src$="secure.png"][width="32"],[src$="setting.png"].icon32x32,[src$="setting.png"].icon-lg,[src$="setting.png"][src*="32x"],[src$="setting.png"][style*="width: 32p"],[src$="setting.png"][width="32"],[src$="system-log-out.png"].icon32x32,[src$="system-log-out.png"].icon-lg,[src$="system-log-out.png"][src*="32x"],[src$="system-log-out.png"][style*="width: 32p"],[src$="system-log-out.png"][width="32"],[src$="tasks-24x24.png"].icon32x32,[src$="tasks-24x24.png"].icon-lg,[src$="tasks-24x24.png"][src*="32x"],[src$="tasks-24x24.png"][style*="width: 32p"],[src$="tasks-24x24.png"][width="32"],[src$="tasks-48x48.png"].icon32x32,[src$="tasks-48x48.png"].icon-lg,[src$="tasks-48x48.png"][src*="32x"],[src$="tasks-48x48.png"][style*="width: 32p"],[src$="tasks-48x48.png"][width="32"],[src$="terminal.png"].icon32x32,[src$="terminal.png"].icon-lg,[src$="terminal.png"][src*="32x"],[src$="terminal.png"][style*="width: 32p"],[src$="terminal.png"][width="32"],[src$="user.png"].icon32x32,[src$="user.png"].icon-lg,[src$="user.png"][src*="32x"],[src$="user.png"][style*="width: 32p"],[src$="user.png"][width="32"],[src$="warnings-24x24.png"].icon32x32,[src$="warnings-24x24.png"].icon-lg,[src$="warnings-24x24.png"][src*="32x"],[src$="warnings-24x24.png"][style*="width: 32p"],[src$="warnings-24x24.png"][width="32"],[src$="warnings-48x48.png"].icon32x32,[src$="warnings-48x48.png"].icon-lg,[src$="warnings-48x48.png"][src*="32x"],[src$="warnings-48x48.png"][style*="width: 32p"],[src$="warnings-48x48.png"][width="32"],[src$="yellow.png"].icon32x32,[src$="yellow.png"].icon-lg,[src$="yellow.png"][src*="32x"],[src$="yellow.png"][style*="width: 32p"],[src$="yellow.png"][width="32"],[src$="yellow_anime.gif"].icon32x32,[src$="yellow_anime.gif"].icon-lg,[src$="yellow_anime.gif"][src*="32x"],[src$="yellow_anime.gif"][style*="width: 32p"],[src$="yellow_anime.gif"][width="32"]{padding-left:43.2px!important;padding-top:43.2px!important;height:0!important;width:0!important;background-size:100% 100%!important;font-size:0!important}#description-link img.icon24x24,#description-link img.icon-md,#description-link img[src*="24x"],#description-link img[style*="width: 24p"],#description-link img[width="24"],.icon-aborted-anime.icon24x24,.icon-aborted-anime.icon-md,.icon-aborted-anime[src*="24x"],.icon-aborted-anime[style*="width: 24p"],.icon-aborted-anime[width="24"],.icon-blue-anime.icon24x24,.icon-blue-anime.icon-md,.icon-blue-anime[src*="24x"],.icon-blue-anime[style*="width: 24p"],.icon-blue-anime[width="24"],.icon-clipboard.icon24x24,.icon-clipboard.icon-md,.icon-clipboard[src*="24x"],.icon-clipboard[style*="width: 24p"],.icon-clipboard[width="24"],.icon-clock-anime.icon24x24,.icon-clock-anime.icon-md,.icon-clock-anime[src*="24x"],.icon-clock-anime[style*="width: 24p"],.icon-clock-anime[width="24"],.icon-clock.icon24x24,.icon-clock.icon-md,.icon-clock[src*="24x"],.icon-clock[style*="width: 24p"],.icon-clock[width="24"],.icon-collapse.icon24x24,.icon-collapse.icon-md,.icon-collapse[src*="24x"],.icon-collapse[style*="width: 24p"],.icon-collapse[width="24"],.icon-computer-x.icon24x24,.icon-computer-x.icon-md,.icon-computer-x[src*="24x"],.icon-computer-x[style*="width: 24p"],.icon-computer-x[width="24"],.icon-computer.icon24x24,.icon-computer.icon-md,.icon-computer[src*="24x"],.icon-computer[style*="width: 24p"],.icon-computer[width="24"],.icon-document.icon24x24,.icon-document.icon-md,.icon-document[src*="24x"],.icon-document[style*="width: 24p"],.icon-document[width="24"],.icon-edit-delete.icon24x24,.icon-edit-delete.icon-md,.icon-edit-delete[src*="24x"],.icon-edit-delete[style*="width: 24p"],.icon-edit-delete[width="24"],.icon-expand.icon24x24,.icon-expand.icon-md,.icon-expand[src*="24x"],.icon-expand[style*="width: 24p"],.icon-expand[width="24"],.icon-fingerprint.icon24x24,.icon-fingerprint.icon-md,.icon-fingerprint[src*="24x"],.icon-fingerprint[style*="width: 24p"],.icon-fingerprint[width="24"],.icon-folder-delete.icon24x24,.icon-folder-delete.icon-md,.icon-folder-delete[src*="24x"],.icon-folder-delete[style*="width: 24p"],.icon-folder-delete[width="24"],.icon-folder.icon24x24,.icon-folder.icon-md,.icon-folder[src*="24x"],.icon-folder[style*="width: 24p"],.icon-folder[width="24"],.icon-gear2.icon24x24,.icon-gear2.icon-md,.icon-gear2[src*="24x"],.icon-gear2[style*="width: 24p"],.icon-gear2[width="24"],.icon-gear.icon24x24,.icon-gear.icon-md,.icon-gear[src*="24x"],.icon-gear[style*="width: 24p"],.icon-gear[width="24"],.icon-go-next.icon24x24,.icon-go-next.icon-md,.icon-go-next[src*="24x"],.icon-go-next[style*="width: 24p"],.icon-go-next[width="24"],.icon-graph.icon24x24,.icon-graph.icon-md,.icon-graph[src*="24x"],.icon-graph[style*="width: 24p"],.icon-graph[width="24"],.icon-grey-anime.icon24x24,.icon-grey-anime.icon-md,.icon-grey-anime[src*="24x"],.icon-grey-anime[style*="width: 24p"],.icon-grey-anime[width="24"],.icon-health-00to19.icon24x24,.icon-health-00to19.icon-md,.icon-health-00to19[src*="24x"],.icon-health-00to19[style*="width: 24p"],.icon-health-00to19[width="24"],.icon-health-20to39.icon24x24,.icon-health-20to39.icon-md,.icon-health-20to39[src*="24x"],.icon-health-20to39[style*="width: 24p"],.icon-health-20to39[width="24"],.icon-health-40to59.icon24x24,.icon-health-40to59.icon-md,.icon-health-40to59[src*="24x"],.icon-health-40to59[style*="width: 24p"],.icon-health-40to59[width="24"],.icon-health-60to79.icon24x24,.icon-health-60to79.icon-md,.icon-health-60to79[src*="24x"],.icon-health-60to79[style*="width: 24p"],.icon-health-60to79[width="24"],.icon-health-80plus.icon24x24,.icon-health-80plus.icon-md,.icon-health-80plus[src*="24x"],.icon-health-80plus[style*="width: 24p"],.icon-health-80plus[width="24"],.icon-help.icon24x24,.icon-help.icon-md,.icon-help[src*="24x"],.icon-help[style*="width: 24p"],.icon-help[width="24"],.icon-lock.icon24x24,.icon-lock.icon-md,.icon-lock[src*="24x"],.icon-lock[style*="width: 24p"],.icon-lock[width="24"],.icon-monitor.icon24x24,.icon-monitor.icon-md,.icon-monitor[src*="24x"],.icon-monitor[style*="width: 24p"],.icon-monitor[width="24"],.icon-network.icon24x24,.icon-network.icon-md,.icon-network[src*="24x"],.icon-network[style*="width: 24p"],.icon-network[width="24"],.icon-new-computer.icon24x24,.icon-new-computer.icon-md,.icon-new-computer[src*="24x"],.icon-new-computer[style*="width: 24p"],.icon-new-computer[width="24"],.icon-new-package.icon24x24,.icon-new-package.icon-md,.icon-new-package[src*="24x"],.icon-new-package[style*="width: 24p"],.icon-new-package[width="24"],.icon-next.icon24x24,.icon-next.icon-md,.icon-next[src*="24x"],.icon-next[style*="width: 24p"],.icon-next[width="24"],.icon-nobuilt-anime.icon24x24,.icon-nobuilt-anime.icon-md,.icon-nobuilt-anime[src*="24x"],.icon-nobuilt-anime[style*="width: 24p"],.icon-nobuilt-anime[width="24"],.icon-notepad.icon24x24,.icon-notepad.icon-md,.icon-notepad[src*="24x"],.icon-notepad[style*="width: 24p"],.icon-notepad[width="24"],.icon-package.icon24x24,.icon-package.icon-md,.icon-package[src*="24x"],.icon-package[style*="width: 24p"],.icon-package[width="24"],.icon-plugin.icon24x24,.icon-plugin.icon-md,.icon-plugin[src*="24x"],.icon-plugin[style*="width: 24p"],.icon-plugin[width="24"],.icon-previous.icon24x24,.icon-previous.icon-md,.icon-previous[src*="24x"],.icon-previous[style*="width: 24p"],.icon-previous[width="24"],.icon-red-anime.icon24x24,.icon-red-anime.icon-md,.icon-red-anime[src*="24x"],.icon-red-anime[style*="width: 24p"],.icon-red-anime[width="24"],.icon-refresh.icon24x24,.icon-refresh.icon-md,.icon-refresh[src*="24x"],.icon-refresh[style*="width: 24p"],.icon-refresh[width="24"],.icon-save.icon24x24,.icon-save.icon-md,.icon-save[src*="24x"],.icon-save[style*="width: 24p"],.icon-save[width="24"],.icon-search.icon24x24,.icon-search.icon-md,.icon-search[src*="24x"],.icon-search[style*="width: 24p"],.icon-search[width="24"],.icon-secure.icon24x24,.icon-secure.icon-md,.icon-secure[src*="24x"],.icon-secure[style*="width: 24p"],.icon-secure[width="24"],.icon-setting.icon24x24,.icon-setting.icon-md,.icon-setting[src*="24x"],.icon-setting[style*="width: 24p"],.icon-setting[width="24"],.icon-stop.icon24x24,.icon-stop.icon-md,.icon-stop[src*="24x"],.icon-stop[style*="width: 24p"],.icon-stop[width="24"],.icon-system-log-out.icon24x24,.icon-system-log-out.icon-md,.icon-system-log-out[src*="24x"],.icon-system-log-out[style*="width: 24p"],.icon-system-log-out[width="24"],.icon-terminal.icon24x24,.icon-terminal.icon-md,.icon-terminal[src*="24x"],.icon-terminal[style*="width: 24p"],.icon-terminal[width="24"],.icon-text.icon24x24,.icon-text.icon-md,.icon-text[src*="24x"],.icon-text[style*="width: 24p"],.icon-text[width="24"],.icon-up.icon24x24,.icon-up.icon-md,.icon-up[src*="24x"],.icon-up[style*="width: 24p"],.icon-up[width="24"],.icon-user.icon24x24,.icon-user.icon-md,.icon-user[src*="24x"],.icon-user[style*="width: 24p"],.icon-user[width="24"],.icon-yellow-anime.icon24x24,.icon-yellow-anime.icon-md,.icon-yellow-anime[src*="24x"],.icon-yellow-anime[style*="width: 24p"],.icon-yellow-anime[width="24"],[src$="/atom.gif"].icon24x24,[src$="/atom.gif"].icon-md,[src$="/atom.gif"][src*="24x"],[src$="/atom.gif"][style*="width: 24p"],[src$="/atom.gif"][width="24"],[src$="/directory16.png"].icon24x24,[src$="/directory16.png"].icon-md,[src$="/directory16.png"][src*="24x"],[src$="/directory16.png"][style*="width: 24p"],[src$="/directory16.png"][width="24"],[src$="/move.png"].icon24x24,[src$="/move.png"].icon-md,[src$="/move.png"][src*="24x"],[src$="/move.png"][style*="width: 24p"],[src$="/move.png"][width="24"],[src$="/save.png"].icon24x24,[src$="/save.png"].icon-md,[src$="/save.png"][src*="24x"],[src$="/save.png"][style*="width: 24p"],[src$="/save.png"][width="24"],[src$="aborted.png"].icon24x24,[src$="aborted.png"].icon-md,[src$="aborted.png"][src*="24x"],[src$="aborted.png"][style*="width: 24p"],[src$="aborted.png"][width="24"],[src$="analysis-24x24.png"].icon24x24,[src$="analysis-24x24.png"].icon-md,[src$="analysis-24x24.png"][src*="24x"],[src$="analysis-24x24.png"][style*="width: 24p"],[src$="analysis-24x24.png"][width="24"],[src$="analysis-48x48.png"].icon24x24,[src$="analysis-48x48.png"].icon-md,[src$="analysis-48x48.png"][src*="24x"],[src$="analysis-48x48.png"][style*="width: 24p"],[src$="analysis-48x48.png"][width="24"],[src$="blue.png"].icon24x24,[src$="blue.png"].icon-md,[src$="blue.png"][src*="24x"],[src$="blue.png"][style*="width: 24p"],[src$="blue.png"][width="24"],[src$="blue_anime.gif"].icon24x24,[src$="blue_anime.gif"].icon-md,[src$="blue_anime.gif"][src*="24x"],[src$="blue_anime.gif"][style*="width: 24p"],[src$="blue_anime.gif"][width="24"],[src$="checkstyle-24x24.png"].icon24x24,[src$="checkstyle-24x24.png"].icon-md,[src$="checkstyle-24x24.png"][src*="24x"],[src$="checkstyle-24x24.png"][style*="width: 24p"],[src$="checkstyle-24x24.png"][width="24"],[src$="checkstyle-48x48.png"].icon24x24,[src$="checkstyle-48x48.png"].icon-md,[src$="checkstyle-48x48.png"][src*="24x"],[src$="checkstyle-48x48.png"][style*="width: 24p"],[src$="checkstyle-48x48.png"][width="24"],[src$="clipboard.png"].icon24x24,[src$="clipboard.png"].icon-md,[src$="clipboard.png"][src*="24x"],[src$="clipboard.png"][style*="width: 24p"],[src$="clipboard.png"][width="24"],[src$="clock.png"].icon24x24,[src$="clock.png"].icon-md,[src$="clock.png"][src*="24x"],[src$="clock.png"][style*="width: 24p"],[src$="clock.png"][width="24"],[src$="computer.png"].icon24x24,[src$="computer.png"].icon-md,[src$="computer.png"][src*="24x"],[src$="computer.png"][style*="width: 24p"],[src$="computer.png"][width="24"],[src$="confighistory.png"].icon24x24,[src$="confighistory.png"].icon-md,[src$="confighistory.png"][src*="24x"],[src$="confighistory.png"][style*="width: 24p"],[src$="confighistory.png"][width="24"],[src$="credentials.png"].icon24x24,[src$="credentials.png"].icon-md,[src$="credentials.png"][src*="24x"],[src$="credentials.png"][style*="width: 24p"],[src$="credentials.png"][width="24"],[src$="disabled.png"].icon24x24,[src$="disabled.png"].icon-md,[src$="disabled.png"][src*="24x"],[src$="disabled.png"][style*="width: 24p"],[src$="disabled.png"][width="24"],[src$="diskusage48.png"].icon24x24,[src$="diskusage48.png"].icon-md,[src$="diskusage48.png"][src*="24x"],[src$="diskusage48.png"][style*="width: 24p"],[src$="diskusage48.png"][width="24"],[src$="domain.png"].icon24x24,[src$="domain.png"].icon-md,[src$="domain.png"][src*="24x"],[src$="domain.png"][style*="width: 24p"],[src$="domain.png"][width="24"],[src$="dry-24x24.png"].icon24x24,[src$="dry-24x24.png"].icon-md,[src$="dry-24x24.png"][src*="24x"],[src$="dry-24x24.png"][style*="width: 24p"],[src$="dry-24x24.png"][width="24"],[src$="dry-48x48.png"].icon24x24,[src$="dry-48x48.png"].icon-md,[src$="dry-48x48.png"][src*="24x"],[src$="dry-48x48.png"][style*="width: 24p"],[src$="dry-48x48.png"][width="24"],[src$="edit-delete.png"].icon24x24,[src$="edit-delete.png"].icon-md,[src$="edit-delete.png"][src*="24x"],[src$="edit-delete.png"][style*="width: 24p"],[src$="edit-delete.png"][width="24"],[src$="findbugs-24x24.png"].icon24x24,[src$="findbugs-24x24.png"].icon-md,[src$="findbugs-24x24.png"][src*="24x"],[src$="findbugs-24x24.png"][style*="width: 24p"],[src$="findbugs-24x24.png"][width="24"],[src$="findbugs-48x48.png"].icon24x24,[src$="findbugs-48x48.png"].icon-md,[src$="findbugs-48x48.png"][src*="24x"],[src$="findbugs-48x48.png"][style*="width: 24p"],[src$="findbugs-48x48.png"][width="24"],[src$="fingerprint.png"].icon24x24,[src$="fingerprint.png"].icon-md,[src$="fingerprint.png"][src*="24x"],[src$="fingerprint.png"][style*="width: 24p"],[src$="fingerprint.png"][width="24"],[src$="folder.png"].icon24x24,[src$="folder.png"].icon-md,[src$="folder.png"][src*="24x"],[src$="folder.png"][style*="width: 24p"],[src$="folder.png"][width="24"],[src$="gear2.png"].icon24x24,[src$="gear2.png"].icon-md,[src$="gear2.png"][src*="24x"],[src$="gear2.png"][style*="width: 24p"],[src$="gear2.png"][width="24"],[src$="gear.png"].icon24x24,[src$="gear.png"].icon-md,[src$="gear.png"][src*="24x"],[src$="gear.png"][style*="width: 24p"],[src$="gear.png"][width="24"],[src$="git-32x32.png"].icon24x24,[src$="git-32x32.png"].icon-md,[src$="git-32x32.png"][src*="24x"],[src$="git-32x32.png"][style*="width: 24p"],[src$="git-32x32.png"][width="24"],[src$="go-24x24.png"].icon24x24,[src$="go-24x24.png"].icon-md,[src$="go-24x24.png"][src*="24x"],[src$="go-24x24.png"][style*="width: 24p"],[src$="go-24x24.png"][width="24"],[src$="go-48x48.png"].icon24x24,[src$="go-48x48.png"].icon-md,[src$="go-48x48.png"][src*="24x"],[src$="go-48x48.png"][style*="width: 24p"],[src$="go-48x48.png"][width="24"],[src$="graph.png"].icon24x24,[src$="graph.png"].icon-md,[src$="graph.png"][src*="24x"],[src$="graph.png"][style*="width: 24p"],[src$="graph.png"][width="24"],[src$="grey.png"].icon24x24,[src$="grey.png"].icon-md,[src$="grey.png"][src*="24x"],[src$="grey.png"][style*="width: 24p"],[src$="grey.png"][width="24"],[src$="grey_anime.gif"].icon24x24,[src$="grey_anime.gif"].icon-md,[src$="grey_anime.gif"][src*="24x"],[src$="grey_anime.gif"][style*="width: 24p"],[src$="grey_anime.gif"][width="24"],[src$="help.png"].icon24x24,[src$="help.png"].icon-md,[src$="help.png"][src*="24x"],[src$="help.png"][style*="width: 24p"],[src$="help.png"][width="24"],[src$="idea-24x24.png"].icon24x24,[src$="idea-24x24.png"].icon-md,[src$="idea-24x24.png"][src*="24x"],[src$="idea-24x24.png"][style*="width: 24p"],[src$="idea-24x24.png"][width="24"],[src$="idea-48x48.png"].icon24x24,[src$="idea-48x48.png"].icon-md,[src$="idea-48x48.png"][src*="24x"],[src$="idea-48x48.png"][style*="width: 24p"],[src$="idea-48x48.png"][width="24"],[src$="java-24x24.png"].icon24x24,[src$="java-24x24.png"].icon-md,[src$="java-24x24.png"][src*="24x"],[src$="java-24x24.png"][style*="width: 24p"],[src$="java-24x24.png"][width="24"],[src$="java-48x48.png"].icon24x24,[src$="java-48x48.png"].icon-md,[src$="java-48x48.png"][src*="24x"],[src$="java-48x48.png"][style*="width: 24p"],[src$="java-48x48.png"][width="24"],[src$="logov3.png"].icon24x24,[src$="logov3.png"].icon-md,[src$="logov3.png"][src*="24x"],[src$="logov3.png"][style*="width: 24p"],[src$="logov3.png"][width="24"],[src$="monitor.png"].icon24x24,[src$="monitor.png"].icon-md,[src$="monitor.png"][src*="24x"],[src$="monitor.png"][style*="width: 24p"],[src$="monitor.png"][width="24"],[src$="network.png"].icon24x24,[src$="network.png"].icon-md,[src$="network.png"][src*="24x"],[src$="network.png"][style*="width: 24p"],[src$="network.png"][width="24"],[src$="new-package.png"].icon24x24,[src$="new-package.png"].icon-md,[src$="new-package.png"][src*="24x"],[src$="new-package.png"][style*="width: 24p"],[src$="new-package.png"][width="24"],[src$="nobuilt.png"].icon24x24,[src$="nobuilt.png"].icon-md,[src$="nobuilt.png"][src*="24x"],[src$="nobuilt.png"][style*="width: 24p"],[src$="nobuilt.png"][width="24"],[src$="notepad.png"].icon24x24,[src$="notepad.png"].icon-md,[src$="notepad.png"][src*="24x"],[src$="notepad.png"][style*="width: 24p"],[src$="notepad.png"][width="24"],[src$="package.gif"].icon24x24,[src$="package.gif"].icon-md,[src$="package.gif"][src*="24x"],[src$="package.gif"][style*="width: 24p"],[src$="package.gif"][width="24"],[src$="plugin.png"].icon24x24,[src$="plugin.png"].icon-md,[src$="plugin.png"][src*="24x"],[src$="plugin.png"][style*="width: 24p"],[src$="plugin.png"][width="24"],[src$="pmd-24x24.png"].icon24x24,[src$="pmd-24x24.png"].icon-md,[src$="pmd-24x24.png"][src*="24x"],[src$="pmd-24x24.png"][style*="width: 24p"],[src$="pmd-24x24.png"][width="24"],[src$="pmd-48x48.png"].icon24x24,[src$="pmd-48x48.png"].icon-md,[src$="pmd-48x48.png"][src*="24x"],[src$="pmd-48x48.png"][style*="width: 24p"],[src$="pmd-48x48.png"][width="24"],[src$="red.png"].icon24x24,[src$="red.png"].icon-md,[src$="red.png"][src*="24x"],[src$="red.png"][style*="width: 24p"],[src$="red.png"][width="24"],[src$="red_anime.gif"].icon24x24,[src$="red_anime.gif"].icon-md,[src$="red_anime.gif"][src*="24x"],[src$="red_anime.gif"][style*="width: 24p"],[src$="red_anime.gif"][width="24"],[src$="refresh.png"].icon24x24,[src$="refresh.png"].icon-md,[src$="refresh.png"][src*="24x"],[src$="refresh.png"][style*="width: 24p"],[src$="refresh.png"][width="24"],[src$="resharper-24x24.png"].icon24x24,[src$="resharper-24x24.png"].icon-md,[src$="resharper-24x24.png"][src*="24x"],[src$="resharper-24x24.png"][style*="width: 24p"],[src$="resharper-24x24.png"][width="24"],[src$="resharper-48x48.png"].icon24x24,[src$="resharper-48x48.png"].icon-md,[src$="resharper-48x48.png"][src*="24x"],[src$="resharper-48x48.png"][style*="width: 24p"],[src$="resharper-48x48.png"][width="24"],[src$="scala-24x24.png"].icon24x24,[src$="scala-24x24.png"].icon-md,[src$="scala-24x24.png"][src*="24x"],[src$="scala-24x24.png"][style*="width: 24p"],[src$="scala-24x24.png"][width="24"],[src$="scala-48x48.png"].icon24x24,[src$="scala-48x48.png"].icon-md,[src$="scala-48x48.png"][src*="24x"],[src$="scala-48x48.png"][style*="width: 24p"],[src$="scala-48x48.png"][width="24"],[src$="search.png"].icon24x24,[src$="search.png"].icon-md,[src$="search.png"][src*="24x"],[src$="search.png"][style*="width: 24p"],[src$="search.png"][width="24"],[src$="secure.png"].icon24x24,[src$="secure.png"].icon-md,[src$="secure.png"][src*="24x"],[src$="secure.png"][style*="width: 24p"],[src$="secure.png"][width="24"],[src$="setting.png"].icon24x24,[src$="setting.png"].icon-md,[src$="setting.png"][src*="24x"],[src$="setting.png"][style*="width: 24p"],[src$="setting.png"][width="24"],[src$="system-log-out.png"].icon24x24,[src$="system-log-out.png"].icon-md,[src$="system-log-out.png"][src*="24x"],[src$="system-log-out.png"][style*="width: 24p"],[src$="system-log-out.png"][width="24"],[src$="tasks-24x24.png"].icon24x24,[src$="tasks-24x24.png"].icon-md,[src$="tasks-24x24.png"][src*="24x"],[src$="tasks-24x24.png"][style*="width: 24p"],[src$="tasks-24x24.png"][width="24"],[src$="tasks-48x48.png"].icon24x24,[src$="tasks-48x48.png"].icon-md,[src$="tasks-48x48.png"][src*="24x"],[src$="tasks-48x48.png"][style*="width: 24p"],[src$="tasks-48x48.png"][width="24"],[src$="terminal.png"].icon24x24,[src$="terminal.png"].icon-md,[src$="terminal.png"][src*="24x"],[src$="terminal.png"][style*="width: 24p"],[src$="terminal.png"][width="24"],[src$="user.png"].icon24x24,[src$="user.png"].icon-md,[src$="user.png"][src*="24x"],[src$="user.png"][style*="width: 24p"],[src$="user.png"][width="24"],[src$="warnings-24x24.png"].icon24x24,[src$="warnings-24x24.png"].icon-md,[src$="warnings-24x24.png"][src*="24x"],[src$="warnings-24x24.png"][style*="width: 24p"],[src$="warnings-24x24.png"][width="24"],[src$="warnings-48x48.png"].icon24x24,[src$="warnings-48x48.png"].icon-md,[src$="warnings-48x48.png"][src*="24x"],[src$="warnings-48x48.png"][style*="width: 24p"],[src$="warnings-48x48.png"][width="24"],[src$="yellow.png"].icon24x24,[src$="yellow.png"].icon-md,[src$="yellow.png"][src*="24x"],[src$="yellow.png"][style*="width: 24p"],[src$="yellow.png"][width="24"],[src$="yellow_anime.gif"].icon24x24,[src$="yellow_anime.gif"].icon-md,[src$="yellow_anime.gif"][src*="24x"],[src$="yellow_anime.gif"][style*="width: 24p"],[src$="yellow_anime.gif"][width="24"]{padding-left:28.8px!important;padding-top:28.8px!important;height:0!important;width:0!important;background-size:100% 100%!important;font-size:0!important}#description-link img.icon16x16,#description-link img.icon-sm,#description-link img[src*="16x"],#description-link img[style*="width: 16p"],#description-link img[width="16"],.icon-aborted-anime.icon16x16,.icon-aborted-anime.icon-sm,.icon-aborted-anime[src*="16x"],.icon-aborted-anime[style*="width: 16p"],.icon-aborted-anime[width="16"],.icon-blue-anime.icon16x16,.icon-blue-anime.icon-sm,.icon-blue-anime[src*="16x"],.icon-blue-anime[style*="width: 16p"],.icon-blue-anime[width="16"],.icon-clipboard.icon16x16,.icon-clipboard.icon-sm,.icon-clipboard[src*="16x"],.icon-clipboard[style*="width: 16p"],.icon-clipboard[width="16"],.icon-clock-anime.icon16x16,.icon-clock-anime.icon-sm,.icon-clock-anime[src*="16x"],.icon-clock-anime[style*="width: 16p"],.icon-clock-anime[width="16"],.icon-clock.icon16x16,.icon-clock.icon-sm,.icon-clock[src*="16x"],.icon-clock[style*="width: 16p"],.icon-clock[width="16"],.icon-collapse.icon16x16,.icon-collapse.icon-sm,.icon-collapse[src*="16x"],.icon-collapse[style*="width: 16p"],.icon-collapse[width="16"],.icon-computer-x.icon16x16,.icon-computer-x.icon-sm,.icon-computer-x[src*="16x"],.icon-computer-x[style*="width: 16p"],.icon-computer-x[width="16"],.icon-computer.icon16x16,.icon-computer.icon-sm,.icon-computer[src*="16x"],.icon-computer[style*="width: 16p"],.icon-computer[width="16"],.icon-document.icon16x16,.icon-document.icon-sm,.icon-document[src*="16x"],.icon-document[style*="width: 16p"],.icon-document[width="16"],.icon-edit-delete.icon16x16,.icon-edit-delete.icon-sm,.icon-edit-delete[src*="16x"],.icon-edit-delete[style*="width: 16p"],.icon-edit-delete[width="16"],.icon-expand.icon16x16,.icon-expand.icon-sm,.icon-expand[src*="16x"],.icon-expand[style*="width: 16p"],.icon-expand[width="16"],.icon-fingerprint.icon16x16,.icon-fingerprint.icon-sm,.icon-fingerprint[src*="16x"],.icon-fingerprint[style*="width: 16p"],.icon-fingerprint[width="16"],.icon-folder-delete.icon16x16,.icon-folder-delete.icon-sm,.icon-folder-delete[src*="16x"],.icon-folder-delete[style*="width: 16p"],.icon-folder-delete[width="16"],.icon-folder.icon16x16,.icon-folder.icon-sm,.icon-folder[src*="16x"],.icon-folder[style*="width: 16p"],.icon-folder[width="16"],.icon-gear2.icon16x16,.icon-gear2.icon-sm,.icon-gear2[src*="16x"],.icon-gear2[style*="width: 16p"],.icon-gear2[width="16"],.icon-gear.icon16x16,.icon-gear.icon-sm,.icon-gear[src*="16x"],.icon-gear[style*="width: 16p"],.icon-gear[width="16"],.icon-go-next.icon16x16,.icon-go-next.icon-sm,.icon-go-next[src*="16x"],.icon-go-next[style*="width: 16p"],.icon-go-next[width="16"],.icon-graph.icon16x16,.icon-graph.icon-sm,.icon-graph[src*="16x"],.icon-graph[style*="width: 16p"],.icon-graph[width="16"],.icon-grey-anime.icon16x16,.icon-grey-anime.icon-sm,.icon-grey-anime[src*="16x"],.icon-grey-anime[style*="width: 16p"],.icon-grey-anime[width="16"],.icon-health-00to19.icon16x16,.icon-health-00to19.icon-sm,.icon-health-00to19[src*="16x"],.icon-health-00to19[style*="width: 16p"],.icon-health-00to19[width="16"],.icon-health-20to39.icon16x16,.icon-health-20to39.icon-sm,.icon-health-20to39[src*="16x"],.icon-health-20to39[style*="width: 16p"],.icon-health-20to39[width="16"],.icon-health-40to59.icon16x16,.icon-health-40to59.icon-sm,.icon-health-40to59[src*="16x"],.icon-health-40to59[style*="width: 16p"],.icon-health-40to59[width="16"],.icon-health-60to79.icon16x16,.icon-health-60to79.icon-sm,.icon-health-60to79[src*="16x"],.icon-health-60to79[style*="width: 16p"],.icon-health-60to79[width="16"],.icon-health-80plus.icon16x16,.icon-health-80plus.icon-sm,.icon-health-80plus[src*="16x"],.icon-health-80plus[style*="width: 16p"],.icon-health-80plus[width="16"],.icon-help.icon16x16,.icon-help.icon-sm,.icon-help[src*="16x"],.icon-help[style*="width: 16p"],.icon-help[width="16"],.icon-lock.icon16x16,.icon-lock.icon-sm,.icon-lock[src*="16x"],.icon-lock[style*="width: 16p"],.icon-lock[width="16"],.icon-monitor.icon16x16,.icon-monitor.icon-sm,.icon-monitor[src*="16x"],.icon-monitor[style*="width: 16p"],.icon-monitor[width="16"],.icon-network.icon16x16,.icon-network.icon-sm,.icon-network[src*="16x"],.icon-network[style*="width: 16p"],.icon-network[width="16"],.icon-new-computer.icon16x16,.icon-new-computer.icon-sm,.icon-new-computer[src*="16x"],.icon-new-computer[style*="width: 16p"],.icon-new-computer[width="16"],.icon-new-package.icon16x16,.icon-new-package.icon-sm,.icon-new-package[src*="16x"],.icon-new-package[style*="width: 16p"],.icon-new-package[width="16"],.icon-next.icon16x16,.icon-next.icon-sm,.icon-next[src*="16x"],.icon-next[style*="width: 16p"],.icon-next[width="16"],.icon-nobuilt-anime.icon16x16,.icon-nobuilt-anime.icon-sm,.icon-nobuilt-anime[src*="16x"],.icon-nobuilt-anime[style*="width: 16p"],.icon-nobuilt-anime[width="16"],.icon-notepad.icon16x16,.icon-notepad.icon-sm,.icon-notepad[src*="16x"],.icon-notepad[style*="width: 16p"],.icon-notepad[width="16"],.icon-package.icon16x16,.icon-package.icon-sm,.icon-package[src*="16x"],.icon-package[style*="width: 16p"],.icon-package[width="16"],.icon-plugin.icon16x16,.icon-plugin.icon-sm,.icon-plugin[src*="16x"],.icon-plugin[style*="width: 16p"],.icon-plugin[width="16"],.icon-previous.icon16x16,.icon-previous.icon-sm,.icon-previous[src*="16x"],.icon-previous[style*="width: 16p"],.icon-previous[width="16"],.icon-red-anime.icon16x16,.icon-red-anime.icon-sm,.icon-red-anime[src*="16x"],.icon-red-anime[style*="width: 16p"],.icon-red-anime[width="16"],.icon-refresh.icon16x16,.icon-refresh.icon-sm,.icon-refresh[src*="16x"],.icon-refresh[style*="width: 16p"],.icon-refresh[width="16"],.icon-save.icon16x16,.icon-save.icon-sm,.icon-save[src*="16x"],.icon-save[style*="width: 16p"],.icon-save[width="16"],.icon-search.icon16x16,.icon-search.icon-sm,.icon-search[src*="16x"],.icon-search[style*="width: 16p"],.icon-search[width="16"],.icon-secure.icon16x16,.icon-secure.icon-sm,.icon-secure[src*="16x"],.icon-secure[style*="width: 16p"],.icon-secure[width="16"],.icon-setting.icon16x16,.icon-setting.icon-sm,.icon-setting[src*="16x"],.icon-setting[style*="width: 16p"],.icon-setting[width="16"],.icon-stop.icon16x16,.icon-stop.icon-sm,.icon-stop[src*="16x"],.icon-stop[style*="width: 16p"],.icon-stop[width="16"],.icon-system-log-out.icon16x16,.icon-system-log-out.icon-sm,.icon-system-log-out[src*="16x"],.icon-system-log-out[style*="width: 16p"],.icon-system-log-out[width="16"],.icon-terminal.icon16x16,.icon-terminal.icon-sm,.icon-terminal[src*="16x"],.icon-terminal[style*="width: 16p"],.icon-terminal[width="16"],.icon-text.icon16x16,.icon-text.icon-sm,.icon-text[src*="16x"],.icon-text[style*="width: 16p"],.icon-text[width="16"],.icon-up.icon16x16,.icon-up.icon-sm,.icon-up[src*="16x"],.icon-up[style*="width: 16p"],.icon-up[width="16"],.icon-user.icon16x16,.icon-user.icon-sm,.icon-user[src*="16x"],.icon-user[style*="width: 16p"],.icon-user[width="16"],.icon-yellow-anime.icon16x16,.icon-yellow-anime.icon-sm,.icon-yellow-anime[src*="16x"],.icon-yellow-anime[style*="width: 16p"],.icon-yellow-anime[width="16"],[src$="/atom.gif"].icon16x16,[src$="/atom.gif"].icon-sm,[src$="/atom.gif"][src*="16x"],[src$="/atom.gif"][style*="width: 16p"],[src$="/atom.gif"][width="16"],[src$="/directory16.png"].icon16x16,[src$="/directory16.png"].icon-sm,[src$="/directory16.png"][src*="16x"],[src$="/directory16.png"][style*="width: 16p"],[src$="/directory16.png"][width="16"],[src$="/move.png"].icon16x16,[src$="/move.png"].icon-sm,[src$="/move.png"][src*="16x"],[src$="/move.png"][style*="width: 16p"],[src$="/move.png"][width="16"],[src$="/save.png"].icon16x16,[src$="/save.png"].icon-sm,[src$="/save.png"][src*="16x"],[src$="/save.png"][style*="width: 16p"],[src$="/save.png"][width="16"],[src$="aborted.png"].icon16x16,[src$="aborted.png"].icon-sm,[src$="aborted.png"][src*="16x"],[src$="aborted.png"][style*="width: 16p"],[src$="aborted.png"][width="16"],[src$="analysis-24x24.png"].icon16x16,[src$="analysis-24x24.png"].icon-sm,[src$="analysis-24x24.png"][src*="16x"],[src$="analysis-24x24.png"][style*="width: 16p"],[src$="analysis-24x24.png"][width="16"],[src$="analysis-48x48.png"].icon16x16,[src$="analysis-48x48.png"].icon-sm,[src$="analysis-48x48.png"][src*="16x"],[src$="analysis-48x48.png"][style*="width: 16p"],[src$="analysis-48x48.png"][width="16"],[src$="blue.png"].icon16x16,[src$="blue.png"].icon-sm,[src$="blue.png"][src*="16x"],[src$="blue.png"][style*="width: 16p"],[src$="blue.png"][width="16"],[src$="blue_anime.gif"].icon16x16,[src$="blue_anime.gif"].icon-sm,[src$="blue_anime.gif"][src*="16x"],[src$="blue_anime.gif"][style*="width: 16p"],[src$="blue_anime.gif"][width="16"],[src$="checkstyle-24x24.png"].icon16x16,[src$="checkstyle-24x24.png"].icon-sm,[src$="checkstyle-24x24.png"][src*="16x"],[src$="checkstyle-24x24.png"][style*="width: 16p"],[src$="checkstyle-24x24.png"][width="16"],[src$="checkstyle-48x48.png"].icon16x16,[src$="checkstyle-48x48.png"].icon-sm,[src$="checkstyle-48x48.png"][src*="16x"],[src$="checkstyle-48x48.png"][style*="width: 16p"],[src$="checkstyle-48x48.png"][width="16"],[src$="clipboard.png"].icon16x16,[src$="clipboard.png"].icon-sm,[src$="clipboard.png"][src*="16x"],[src$="clipboard.png"][style*="width: 16p"],[src$="clipboard.png"][width="16"],[src$="clock.png"].icon16x16,[src$="clock.png"].icon-sm,[src$="clock.png"][src*="16x"],[src$="clock.png"][style*="width: 16p"],[src$="clock.png"][width="16"],[src$="computer.png"].icon16x16,[src$="computer.png"].icon-sm,[src$="computer.png"][src*="16x"],[src$="computer.png"][style*="width: 16p"],[src$="computer.png"][width="16"],[src$="confighistory.png"].icon16x16,[src$="confighistory.png"].icon-sm,[src$="confighistory.png"][src*="16x"],[src$="confighistory.png"][style*="width: 16p"],[src$="confighistory.png"][width="16"],[src$="credentials.png"].icon16x16,[src$="credentials.png"].icon-sm,[src$="credentials.png"][src*="16x"],[src$="credentials.png"][style*="width: 16p"],[src$="credentials.png"][width="16"],[src$="disabled.png"].icon16x16,[src$="disabled.png"].icon-sm,[src$="disabled.png"][src*="16x"],[src$="disabled.png"][style*="width: 16p"],[src$="disabled.png"][width="16"],[src$="diskusage48.png"].icon16x16,[src$="diskusage48.png"].icon-sm,[src$="diskusage48.png"][src*="16x"],[src$="diskusage48.png"][style*="width: 16p"],[src$="diskusage48.png"][width="16"],[src$="domain.png"].icon16x16,[src$="domain.png"].icon-sm,[src$="domain.png"][src*="16x"],[src$="domain.png"][style*="width: 16p"],[src$="domain.png"][width="16"],[src$="dry-24x24.png"].icon16x16,[src$="dry-24x24.png"].icon-sm,[src$="dry-24x24.png"][src*="16x"],[src$="dry-24x24.png"][style*="width: 16p"],[src$="dry-24x24.png"][width="16"],[src$="dry-48x48.png"].icon16x16,[src$="dry-48x48.png"].icon-sm,[src$="dry-48x48.png"][src*="16x"],[src$="dry-48x48.png"][style*="width: 16p"],[src$="dry-48x48.png"][width="16"],[src$="edit-delete.png"].icon16x16,[src$="edit-delete.png"].icon-sm,[src$="edit-delete.png"][src*="16x"],[src$="edit-delete.png"][style*="width: 16p"],[src$="edit-delete.png"][width="16"],[src$="findbugs-24x24.png"].icon16x16,[src$="findbugs-24x24.png"].icon-sm,[src$="findbugs-24x24.png"][src*="16x"],[src$="findbugs-24x24.png"][style*="width: 16p"],[src$="findbugs-24x24.png"][width="16"],[src$="findbugs-48x48.png"].icon16x16,[src$="findbugs-48x48.png"].icon-sm,[src$="findbugs-48x48.png"][src*="16x"],[src$="findbugs-48x48.png"][style*="width: 16p"],[src$="findbugs-48x48.png"][width="16"],[src$="fingerprint.png"].icon16x16,[src$="fingerprint.png"].icon-sm,[src$="fingerprint.png"][src*="16x"],[src$="fingerprint.png"][style*="width: 16p"],[src$="fingerprint.png"][width="16"],[src$="folder.png"].icon16x16,[src$="folder.png"].icon-sm,[src$="folder.png"][src*="16x"],[src$="folder.png"][style*="width: 16p"],[src$="folder.png"][width="16"],[src$="gear2.png"].icon16x16,[src$="gear2.png"].icon-sm,[src$="gear2.png"][src*="16x"],[src$="gear2.png"][style*="width: 16p"],[src$="gear2.png"][width="16"],[src$="gear.png"].icon16x16,[src$="gear.png"].icon-sm,[src$="gear.png"][src*="16x"],[src$="gear.png"][style*="width: 16p"],[src$="gear.png"][width="16"],[src$="git-32x32.png"].icon16x16,[src$="git-32x32.png"].icon-sm,[src$="git-32x32.png"][src*="16x"],[src$="git-32x32.png"][style*="width: 16p"],[src$="git-32x32.png"][width="16"],[src$="go-24x24.png"].icon16x16,[src$="go-24x24.png"].icon-sm,[src$="go-24x24.png"][src*="16x"],[src$="go-24x24.png"][style*="width: 16p"],[src$="go-24x24.png"][width="16"],[src$="go-48x48.png"].icon16x16,[src$="go-48x48.png"].icon-sm,[src$="go-48x48.png"][src*="16x"],[src$="go-48x48.png"][style*="width: 16p"],[src$="go-48x48.png"][width="16"],[src$="graph.png"].icon16x16,[src$="graph.png"].icon-sm,[src$="graph.png"][src*="16x"],[src$="graph.png"][style*="width: 16p"],[src$="graph.png"][width="16"],[src$="grey.png"].icon16x16,[src$="grey.png"].icon-sm,[src$="grey.png"][src*="16x"],[src$="grey.png"][style*="width: 16p"],[src$="grey.png"][width="16"],[src$="grey_anime.gif"].icon16x16,[src$="grey_anime.gif"].icon-sm,[src$="grey_anime.gif"][src*="16x"],[src$="grey_anime.gif"][style*="width: 16p"],[src$="grey_anime.gif"][width="16"],[src$="help.png"].icon16x16,[src$="help.png"].icon-sm,[src$="help.png"][src*="16x"],[src$="help.png"][style*="width: 16p"],[src$="help.png"][width="16"],[src$="idea-24x24.png"].icon16x16,[src$="idea-24x24.png"].icon-sm,[src$="idea-24x24.png"][src*="16x"],[src$="idea-24x24.png"][style*="width: 16p"],[src$="idea-24x24.png"][width="16"],[src$="idea-48x48.png"].icon16x16,[src$="idea-48x48.png"].icon-sm,[src$="idea-48x48.png"][src*="16x"],[src$="idea-48x48.png"][style*="width: 16p"],[src$="idea-48x48.png"][width="16"],[src$="java-24x24.png"].icon16x16,[src$="java-24x24.png"].icon-sm,[src$="java-24x24.png"][src*="16x"],[src$="java-24x24.png"][style*="width: 16p"],[src$="java-24x24.png"][width="16"],[src$="java-48x48.png"].icon16x16,[src$="java-48x48.png"].icon-sm,[src$="java-48x48.png"][src*="16x"],[src$="java-48x48.png"][style*="width: 16p"],[src$="java-48x48.png"][width="16"],[src$="logov3.png"].icon16x16,[src$="logov3.png"].icon-sm,[src$="logov3.png"][src*="16x"],[src$="logov3.png"][style*="width: 16p"],[src$="logov3.png"][width="16"],[src$="monitor.png"].icon16x16,[src$="monitor.png"].icon-sm,[src$="monitor.png"][src*="16x"],[src$="monitor.png"][style*="width: 16p"],[src$="monitor.png"][width="16"],[src$="network.png"].icon16x16,[src$="network.png"].icon-sm,[src$="network.png"][src*="16x"],[src$="network.png"][style*="width: 16p"],[src$="network.png"][width="16"],[src$="new-package.png"].icon16x16,[src$="new-package.png"].icon-sm,[src$="new-package.png"][src*="16x"],[src$="new-package.png"][style*="width: 16p"],[src$="new-package.png"][width="16"],[src$="nobuilt.png"].icon16x16,[src$="nobuilt.png"].icon-sm,[src$="nobuilt.png"][src*="16x"],[src$="nobuilt.png"][style*="width: 16p"],[src$="nobuilt.png"][width="16"],[src$="notepad.png"].icon16x16,[src$="notepad.png"].icon-sm,[src$="notepad.png"][src*="16x"],[src$="notepad.png"][style*="width: 16p"],[src$="notepad.png"][width="16"],[src$="package.gif"].icon16x16,[src$="package.gif"].icon-sm,[src$="package.gif"][src*="16x"],[src$="package.gif"][style*="width: 16p"],[src$="package.gif"][width="16"],[src$="plugin.png"].icon16x16,[src$="plugin.png"].icon-sm,[src$="plugin.png"][src*="16x"],[src$="plugin.png"][style*="width: 16p"],[src$="plugin.png"][width="16"],[src$="pmd-24x24.png"].icon16x16,[src$="pmd-24x24.png"].icon-sm,[src$="pmd-24x24.png"][src*="16x"],[src$="pmd-24x24.png"][style*="width: 16p"],[src$="pmd-24x24.png"][width="16"],[src$="pmd-48x48.png"].icon16x16,[src$="pmd-48x48.png"].icon-sm,[src$="pmd-48x48.png"][src*="16x"],[src$="pmd-48x48.png"][style*="width: 16p"],[src$="pmd-48x48.png"][width="16"],[src$="red.png"].icon16x16,[src$="red.png"].icon-sm,[src$="red.png"][src*="16x"],[src$="red.png"][style*="width: 16p"],[src$="red.png"][width="16"],[src$="red_anime.gif"].icon16x16,[src$="red_anime.gif"].icon-sm,[src$="red_anime.gif"][src*="16x"],[src$="red_anime.gif"][style*="width: 16p"],[src$="red_anime.gif"][width="16"],[src$="refresh.png"].icon16x16,[src$="refresh.png"].icon-sm,[src$="refresh.png"][src*="16x"],[src$="refresh.png"][style*="width: 16p"],[src$="refresh.png"][width="16"],[src$="resharper-24x24.png"].icon16x16,[src$="resharper-24x24.png"].icon-sm,[src$="resharper-24x24.png"][src*="16x"],[src$="resharper-24x24.png"][style*="width: 16p"],[src$="resharper-24x24.png"][width="16"],[src$="resharper-48x48.png"].icon16x16,[src$="resharper-48x48.png"].icon-sm,[src$="resharper-48x48.png"][src*="16x"],[src$="resharper-48x48.png"][style*="width: 16p"],[src$="resharper-48x48.png"][width="16"],[src$="scala-24x24.png"].icon16x16,[src$="scala-24x24.png"].icon-sm,[src$="scala-24x24.png"][src*="16x"],[src$="scala-24x24.png"][style*="width: 16p"],[src$="scala-24x24.png"][width="16"],[src$="scala-48x48.png"].icon16x16,[src$="scala-48x48.png"].icon-sm,[src$="scala-48x48.png"][src*="16x"],[src$="scala-48x48.png"][style*="width: 16p"],[src$="scala-48x48.png"][width="16"],[src$="search.png"].icon16x16,[src$="search.png"].icon-sm,[src$="search.png"][src*="16x"],[src$="search.png"][style*="width: 16p"],[src$="search.png"][width="16"],[src$="secure.png"].icon16x16,[src$="secure.png"].icon-sm,[src$="secure.png"][src*="16x"],[src$="secure.png"][style*="width: 16p"],[src$="secure.png"][width="16"],[src$="setting.png"].icon16x16,[src$="setting.png"].icon-sm,[src$="setting.png"][src*="16x"],[src$="setting.png"][style*="width: 16p"],[src$="setting.png"][width="16"],[src$="system-log-out.png"].icon16x16,[src$="system-log-out.png"].icon-sm,[src$="system-log-out.png"][src*="16x"],[src$="system-log-out.png"][style*="width: 16p"],[src$="system-log-out.png"][width="16"],[src$="tasks-24x24.png"].icon16x16,[src$="tasks-24x24.png"].icon-sm,[src$="tasks-24x24.png"][src*="16x"],[src$="tasks-24x24.png"][style*="width: 16p"],[src$="tasks-24x24.png"][width="16"],[src$="tasks-48x48.png"].icon16x16,[src$="tasks-48x48.png"].icon-sm,[src$="tasks-48x48.png"][src*="16x"],[src$="tasks-48x48.png"][style*="width: 16p"],[src$="tasks-48x48.png"][width="16"],[src$="terminal.png"].icon16x16,[src$="terminal.png"].icon-sm,[src$="terminal.png"][src*="16x"],[src$="terminal.png"][style*="width: 16p"],[src$="terminal.png"][width="16"],[src$="user.png"].icon16x16,[src$="user.png"].icon-sm,[src$="user.png"][src*="16x"],[src$="user.png"][style*="width: 16p"],[src$="user.png"][width="16"],[src$="warnings-24x24.png"].icon16x16,[src$="warnings-24x24.png"].icon-sm,[src$="warnings-24x24.png"][src*="16x"],[src$="warnings-24x24.png"][style*="width: 16p"],[src$="warnings-24x24.png"][width="16"],[src$="warnings-48x48.png"].icon16x16,[src$="warnings-48x48.png"].icon-sm,[src$="warnings-48x48.png"][src*="16x"],[src$="warnings-48x48.png"][style*="width: 16p"],[src$="warnings-48x48.png"][width="16"],[src$="yellow.png"].icon16x16,[src$="yellow.png"].icon-sm,[src$="yellow.png"][src*="16x"],[src$="yellow.png"][style*="width: 16p"],[src$="yellow.png"][width="16"],[src$="yellow_anime.gif"].icon16x16,[src$="yellow_anime.gif"].icon-sm,[src$="yellow_anime.gif"][src*="16x"],[src$="yellow_anime.gif"][style*="width: 16p"],[src$="yellow_anime.gif"][width="16"]{padding-left:21.6px!important;padding-top:21.6px!important;height:0!important;width:0!important;background-size:100% 100%!important;font-size:0!important}#header .icon-help{filter:brightness(10000)}.icon-clock-anime{animation:b ease-in-out 2s;animation-iteration-count:infinite;transform-origin:50% 50%;animation-fill-mode:forwards}.icon-aborted-anime,.icon-blue-anime,.icon-grey-anime,.icon-nobuilt-anime,.icon-red-anime,.icon-yellow-anime,[src$="blue_anime.gif"],[src$="grey_anime.gif"],[src$="red_anime.gif"],[src$="yellow_anime.gif"]{animation:a 2s linear infinite}[src*="www.gravatar.com"]{height:auto!important;width:auto!important;padding:0!important}.task-icon-link[href="/"] img{padding:36px 0 0 36px!important;filter:brightness(10000)}.CodeMirror{background-color:#263238!important;color:#e9eded!important;font-size:14px;cursor:text}.CodeMirror *{font-family:monospace!important}.CodeMirror pre{line-height:20px!important}.CodeMirror-gutters{background:#263238!important;border:0}.CodeMirror-guttermarker,.CodeMirror-guttermarker-subtle,.CodeMirror-gutters,.CodeMirror-linenumber{color:#537f7e!important}.CodeMirror-cursor{border-left:1px solid #e9eded!important}.CodeMirror-focused div.CodeMirror-selected,.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection,div.CodeMirror-selected{background:hsla(0,0%,100%,.15)!important}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:hsla(0,0%,100%,.15)!important}.CodeMirror-activeline-background{background:#263238!important}.cm-keyword{color:#c792ea!important}.cm-operator{color:#fff!important}.cm-variable-2{color:#80cbc4!important}.cm-variable-3{color:#82b1ff!important}.cm-builtin{color:#decb6b!important}.cm-atom,.cm-number{color:#f77669!important}.cm-def{color:#e9eded!important}.cm-string{color:#decb6b!important}.cm-string-2{color:#80cbc4!important}.cm-comment{color:#537f7e!important}.cm-variable{color:#82b1ff!important}.cm-meta,.cm-tag{color:#80cbc4!important}.cm-attribute{color:#decb6b!important}.cm-property{color:#80cbc4!important}.cm-qualifier,.cm-variable-3{color:#decb6b!important}.cm-tag{color:#f77669!important}.cm-error{color:#e9eded!important;background-color:#f77669!important}.CodeMirror-matchingbracket{text-decoration:underline;color:#e9eded!important}:not(div.ace_editor){font-family:Roboto,sans-serif!important;outline:0}body,form,p,table,td,th{color:#444!important}body{font-family:Roboto,sans-serif!important;font-size:13px!important;line-height:20px!important;background-color:#fff}a,a:hover,a:link,a:visited{text-decoration:none!important;color:#673ab7}a:hover,a:hover:hover,a:link:hover,a:visited:hover{opacity:.75}.task-link[href="/"]{display:none}.task-icon-link[href="/"]{position:absolute;top:0;left:0;background-color:#673ab7;height:64px;width:250px;z-index:2;padding:12px}.task-icon-link[href="/"]:hover{opacity:1!important}#header{box-shadow:0 1px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);height:64px;background-color:#673ab7;text-transform:uppercase;right:0;left:0;top:0;letter-spacing:1px;padding:12px 10px;z-index:1}#header .login{top:inherit;margin-top:3px}#header .login b{font-weight:400}#header #search-box{background:#fff;padding-left:10px}#breadcrumbBar #breadcrumbs{border:0!important}#breadcrumb-menu[style*="top: -27px;"]{margin-top:26px}.top-sticker-inner{box-shadow:0 1px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);background:none repeat scroll 0 0 #fff!important}#breadcrumbs LI:hover,A.breadcrumbBarAnchor.mouseIsOverMenuSelector{background-color:transparent!important;color:#673ab7!important}#breadcrumbs{color:#888!important;text-decoration:none;text-shadow:0 1px #fff}table.pane tr:nth-child(odd) td{background-color:#fff}th.pane{background-color:transparent}#side-panel .task-link{color:#444}.bottom-sticker-edge{display:none}.bottom-sticker-inner{margin:0 0 0 -15px;padding-left:15px;background:none repeat scroll 0 0 #fff!important;box-shadow:0 3px 8px 1px #fff}#projectstatus td,#projectstatus th{color:#444}#projectstatus th a{color:#999;font-weight:400}#projectstatus th a:hover{color:#666}#projectstatus tr:hover,#projectstatus tr:hover td{background-color:#f0f0f0!important}#projectstatus .healthReportDetails table tbody tr:hover td,#projectstatus .healthReportDetails table tbody tr td{background-color:#fff!important;color:#444!important}a#jenkins-home-link{opacity:1!important}table.progress-bar.red td.progress-bar-done{background-color:#f44336!important;border-color:#f44336!important}td.progress-bar-done{background-color:#009688!important;border-color:#009688!important}td.progress-bar-left{border:0!important;background-color:#ccc!important}table.progress-bar{border-color:transparent!important}#main-panel-content>div:nth-child(2),.ygtvlabel,.ygtvlabel:hover,.ygtvlabel:link,.ygtvlabel:visited{background-color:transparent!important}#main-panel>pre{font-family:Roboto Mono,monospace!important}.yui-button button{text-decoration:none;text-align:center;letter-spacing:.5px;transition:.2s ease-out;cursor:pointer;border:0!important;border-radius:2px;display:inline-block;outline:0;padding:0 2rem;text-transform:uppercase;vertical-align:middle;-webkit-tap-highlight-color:transparent;box-shadow:0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12)}.yui-button.primary button{color:#fff!important;background-color:#673ab7!important}.yui-button+.yui-button{margin-left:1em}.console-output .error-inline{color:#f44336}.console-output,.console-output *{position:relative;font-family:Roboto Mono,monospace!important;font-size:14px;background:#263238;color:#e9eded;cursor:text}.console-output{padding:10px 20px}.ace_editor{font:12px/normal Roboto Mono,monospace}[style^="color:gray"]{color:#9e9e9e!important}[style^="color:red"]{color:#f44336!important}.jenkins_ver:after{margin-left:15px;content:"afonsof.com/jenkins-material-theme v. 1.3.3"}pre a{cursor:pointer!important}#console-outline-body>li{list-style-type:none}.left-bar{top:27px!important;left:16px!important}.yuimenuitem-selected{background-color:#673ab7!important}.yuimenuitem-selected>a{color:#fff!important}.yuimenuitem-selected>a>img{filter:brightness(10000)}.comboBoxList{color:#263238}.build-row-cell .pane .build-controls{width:25%!important}.build-row-cell .pane .build-details{width:45%!important}.build-row-cell .pane .build-name .display-name{margin-left:35%!important}#header{background-image: url('data:image/png;base64,/9j/4AAQSkZJRgABAQEASABIAAD/2wBDAAICAgICAQICAgIDAgIDAwYEAwMDAwcFBQQGCAcJCAgHCAgJCg0LCQoMCggICw8LDA0ODg8OCQsQERAOEQ0ODg7/2wBDAQIDAwMDAwcEBAcOCQgJDg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg7/wAARCAKAAoADASIAAhEBAxEB/8QAHgABAAEDBQEAAAAAAAAAAAAAAAoBAgkDBAUHCAb/xABPEAABAwMCBAQFAQQGBQkGBwAAAQIDBAURBgcIEiExCRNBURQiMmFxgRUjQpEWM1JigqEXJHLB8BglOENXlbHR8QoZNzl2tGaSk6TS0+H/xAAUAQEAAAAAAAAAAAAAAAAAAAAA/8QAFBEBAAAAAAAAAAAAAAAAAAAAAP/aAAwDAQACEQMRAD8Aj/gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwvsBQF7WOe5GtTmcvZETKnJU1ku9arvhLXWVSN+tYaR70b+cIBxQPoI9K6mkmbHHp26SPcuGtbb5VVV+ycpuKrRerqORrKvSt4pHuTLUmtczFVPwrQPlwc1Lp2+wQOlnstfFE36nPopGon6q04qSGSJyJLG6PPbnaqZA0gVwq9kyUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALmtc7smU9fsdjbcbQ7l7uazhsG3GjLpq65yOxyUFK57Gfd8n0tT8qgHXGF/yKoxyqnRevYzcbIeDZr6+NoLxvfrem0PSv5XyWWzRpV1qJ6sfKv7tiqntzYMtW0fh/8L2zc0VXp7bSgvd5a1M3TUWbhNlMfS2TLG/oiARV9r+GLfneK6wUu3u119vrJU5m1TqRaemRvfm82TlZjqnZVPf23Xg6cQ2p1bUa61Fp3bqlwmYnTurqhU+zY05U/VyEm2lt0FDQR0tJFHBAxiMbHGxGNa1EwiIidMenY3rI0aiIBhh0J4L+zFnuNJV673D1JrDkdmajpGRUMEn2yiK9E/CnrLT3hscG2nKmCen2dpLnNC5rmuulxqKpOZPVUc/Dk90xg94IiIvYu+X2A6M05w5bE6Tp4ItP7P6QtjYHq+F0Vgp3PYq9VVHuarv0Veh2HQaP0ra1nW3aYtNCsqp5nw1thjV2O2cNRFx9z7D5fYtXv2A4hLNa2qipa6RFT1+Fj/8A4l8lrt0ipz2+mkx6upmLj/I5T16l3y+wHztVpuw11DJTVljt9VTvTDopqKJzXflFafG3PZfaa8+V+19s9K3RY2qka1GnaV/lovdEVY+h2p8vsPl9gPF2pvD94RNVO57jsdY6aZsfKj7aslGqpzZz+7ciZPMu4Xg+cNGqKhtRo+4al23kbGqLFQ1rayGR6rlHKk6OVMdsIqIZaQBHF3F8FvcW2UlVV7Z7n2fVCMVViorxTOo5pE9udMs5vyiIeBt1eA7in2ipvjNUbUXKvtfNj4+xYuMX6pDlyfq0mYq1FTsbd8Sq52Mdsfn/APz7YAgOVlBXW65S0dwo56GsiXEkFRE6ORi+ytVEVP1NrhfYm9bo8MuxO89ulg3J2wsepJHNwlW6kSGqauMZSePlen4zj7GKze/waNK3RlTc9iteTaYqurm2S/o6opl9mtmb87f1RwEdhUVO5Q9O72cHvEHsDWSO3D2+raWzpI5kV5t6fF0MqJ15vMjzypj+1g8yqxUTOUAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOUtdqr7xeaW3WuimuNwqZGx09NTxOkkkeq4RGtaiq5fwBxiJlyJnB23tPsZunvfuBBprbHRtx1TcpH8r308CpT0/u6WZcMYiJ16rn7GWLhQ8JO/6sp7TrjiKqpNL2SREmg0nSLitqG9Fb57+0KKiovKnze+DPrt1tdoDanb6m0vt7pK36UscTERIKGmSPnx0y9e73L7rkDEHw3+D5ozTlNR6g4h75/TS6qzn/o3apXQ0ETumOeZMPkx9uVPyZhNBbbaF200BSaZ0HpW26UskDEaylt1K2Jq49XY6uVfdVVT7vy0ciLj/MryogGkkLE5e/Tthcf8IawAAAAAAAAAAAAAAAAAAYQACmELXRtenXKfgvAGwq7bRV1smo62miraSVqpLDURtkY9F75a5FRfwpjT4hPC44et36W4XbR1A7afWk0izLX2ZvPSzPx1a+mVeVEVeuWYXJk7LfLRfRVz9wIaPEPwMb9cOV7qZdT6Zl1BpBJHJS6lssbp6SVjeuXoic8K47o9ET7qeOns5cexPlr7fQ3G1VNDcKSGtoqiNY54J40eyRqphUc1eiphfUxBcVnhR7ebmRV+rdjpaXbjWb3OlltL2u/Zda5e+ETrC5fduWqvogEZQHaG62z24ey26dXo7cfS9Zpm9wLlGVMa+XOz+F8b/pe1U7Kh1evcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVRFVOiBEVVMgvBVwG654pNZwX66+bpXaKiqWtuN7exWyViphVhpUVPmd6K/s38gefuHnhq3T4k92maV25si1DIXItyu1VmOjt8a4y+STHf2YnzL6e5J74TuAnafhk0zS3OO3w6y3LkjRKzU9dDzPZ1yradjspE1O2U+ZfVT0/tPs5t/sptDbtE7b6bpdO2OlYiKyJmJKh6JhZJX93PXGVcuevY7VY1WsRFXOANROkaJ6gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv3AA6S3q2B2u3+2yn0nudpKkv9A5q/DVKtRlTRuXPzwyp8zHJ374X1QjIcYfh5bkcNVzq9TWFs2uNqnTfu7xBFmooEXqjKmNucYT+NOi49CW0qZU465Wmhu9nq7dc6OC4W+qiWKppqiNHxzMXorXIvRUVPRQIDfK7lVcLhO6+hQzu8dvhgTWeO87t8ONrfU2v95VXzR8P1UrETmdLSp3VvdfL7onbJgplp5IJXRyt8uZrla+NyKjmKi4VFT0XOen2A0AVVMKUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFyIiqidiiJn9exlD4AuAS68R2pqXcfX8Mto2bttThURVbLfJWL1hjVOrY0VMPf8AonVQNTgD4ALxxE6zpNxdw6Saz7O26oRUbK1WS32RvVYos9fKRcc8idO7U69SUbpvTNj0rpGhsGnLXTWay0UKRUlJRQpFFExEwiI1E6fk1bFp+zaZ0jbLFYLZT2mzUFO2noqOlhSKOGNqYRGtToiIc/2VMdOgFjW8pcM5AAAAAAAAAAAAAAAAAD16l3y+5oSu5YVXPKmMqp1zuBuxt5tVpxl33F1nadHW5/MkUlzrGxJKrUy5GIvzOVEwvRAOzfl9ymPZTxjbPEB4QbveorfRb5WH4mRytYs6Sws/V72o1v5VcHeelt7tpNbUzJdKblaZvqSKqRso73BJI5UXl+nmz3+ygdtA0mPR7WvaqOYvqi5Q1QAAAAAAAAAAAFc9OyFABtpYmujVucdERP8Ad+hhW8Qzw5aXcG1XLebYuyw2/WlLE6a/ado4UjiuzERVWeJqJhJsIqqidHY9zNg5qKimjIxqMRVToi5wBAaq6Soo7hNS1cElLUxPVksMrFa9jkXCtci9UVF7p6G1XopJE8RTw8abcOgum92ylphpNdU8Dp9RWGBnlsu7Gty6eNMI1kzURVVOz/TqRwKiJ8FbLDIx0Ukb1a9j2qjmqi4VFReqL9lA0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqiKvYImXIh3JsPspq3fzid0xtlo+FHXO61HLLO9F8ulgb1lmevojW5X7qmAPQ3Avwe3/im4io0rY5bdtnYp459R3Hy3fvmoqKlJGqfxyJ0yi/KmVJb+jtIae0LtzZ9KaSs9NYtPW2mbBRUVJGjI4WNTHRE7r9/VcqdfbB7H6M4f8AhpsG22iKZIqCgiR1TWKzEtdUL1kqJPdzlyv2TCHdjUwiAXgAAAAAAAAAAAUVUROoFQaT5msxnOFXGTgdQav0xpOwvuup79QaetrEVX1VyrI6eNuEyvzPcifoB9H2X7lqytRMq7Ce69jHjuV4nPCloaeottp1ZWbjahjekcdt0vbn1KyvX0SRcMXH2VTwju14yOrtP6muen9J7Crp65wLyOXV9dI2oiVeyrDGjcJjC/UBn786P1kan5ULMxkXOr0Rn9pVwhEh1b4p3GJqdJ2UevqXScMmcNs1ngY5iL6I57XL0weXtV8TnEFre9z3DU+8mrrlUzPV7+W9zQMVVTC4ZE5rU/CIiATY7hqTT9uoUmuV9t1BA9eVr6mtjia5fZFc5EVTy/xG7PcPHE/s43SO42o7I6emV0lou1LeadtVbpXJ1fGvP1Ttlq9FIdNw1fqi706Q3bUd1ukKO5mx1dxllai++HOwdgbR7p2zbbWN7ul90Ha9xoa6zVFBBR3qWTy6SSVvKk7OVc8zeuPyB7P364d90eEfhu3C0vHY9Lbm7V6wroPhtwaJjKipoUhflsfyqqwq5covdM5wY2aesqKKrSajqJaaVq5a+KVWOav5TBy1Rqm+1Fi/ZT7zcXWnpigdXSLTphcoiRqvL09OnQ+ecuXqvXr7gep9teNLia2ndTR6Q3dvjLfC5q/AXCp+Mp3I3CIzll5sNwmOmO5lz2B8ZGx3m509k4gtIppp7uVjdQ6eY6aBOyK6WBVVzU7rlqqn2I8hexUR/XKJ9gJ2m3u5ehNztvabU+gNV2zVdjnajmVVuqmytTPo5EXLF+yoin3nPhcZ6kNPQPErT7GbbbfXnYR1/wBEbsUtTL/TGonuLp7XeIs5ib8Oq8vbouW/7KovUkLcF3H/AKF4o7FDpe9tg0du3TQK+psr5F8mtaioiy0znfVnrmPun3AyNg00kauOip+UNQAAAAAAAAAAANGViv6Yy3HVPf8A4wR9fE84EY7Sty4h9ndPMgt2fM1nZLfAv7ly9Vro2J/CucSInRFXmJCBxtwtlNdLbV0VdDHV0dTE6KaCZvNHIxzVa5rm9lRUVUVO2AIDfI7CrjohaZKPES4N6jhu4gXaq0lQuk2m1PUvktjmIqpbKhcufSP6dE7ujX+yuOuDGwqYUCgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA16eCaproYIInzTSuRkccbeZznKuERE9VVcJgle+G3wiR8PXDA3VmrrdEm6OrYI6q4K9mX2+lVMxUqKqZTph7k/tKqfwmKPwtOFOn3i4npd2dW25tVoHRNRG+nhmZlldccc0bcL0ckafOv8AeRpKJhY1vVE6qiLlVyuPTr/MDUY3lT3/AELwAAAAAAAAAAAAtVyI1V7/AKHWm5u7egNodtqvVm42qLfpWxQNVyzVdQjXSqiZ5Y293uXH0tRV98Hj/jF4/du+F+x1GnqJY9Z7qz0/NSWCCX93So7KNkqXp9CZ7N+pfQjCb38QG6fEDufLqnc3VFRe6rmX4WkRytpaNi5w2KJF5WoiLjOMr6qBlu4jvGGule2u09w46eWzwvYsf9LL3Dz1Cdfqggzyp2/6xF/Bhz3L3q3U3f1fNetytdXfV9c92U+PrHuij+zI0VGMT8IdcsSF1HIsivWdFRIu3LjrnPr+Dau6vUDe0FzrLXeqO4UEy01ZSTsnp5G943scjmuT8KiKfR693A1fududcdZa6vc2otTV/J8XcKlG+ZLyMRjc4RE6NRE/Q+NAFyJlCi9FKouPuhq1ErJqpZGQsgav8DM4T8AaAKtRFeiKuE9VOw9Z7Wa70BorRuoNW6dqbLadVULq6w1E6IiVkCLhXt+2QPhaWmdUulRrmtVkbnrzvRqKieiZ9TbKmFCOVOy4KAE6qbuKGF1HPI+oRkrceXGrFXzOvXr6G0K5UCq9E6dc+6HOab1PftIa2tepNNXSos19t1S2ooq6lkVksMjVyjkVDglVVxkoBL34BOL+i4oeGpYb5LHTbpacjjp9R0zcIlWionLVsRP4X4wvs7KGQHKK1F9SFNwlb9Xnh445dF7hUMj5bWlWykvlH5ysZVUcq8j0dj+znnTPq0mhWm6Ul4sNDc7fUJU0NXSsqKaVrkVJI3tRzXIqdOqKi9PdAOXATsAAAAAAAAAAAA6Z3y2a0nvlwzap211jSNqrVdKRzYpXMRX0s6JmKZip1yx3Kv4THqQxt7dodW7F8SeqNsdaUvkXmzVasWVqfu6mJ3WKdi+rXtw5PyqehOdkRMdvsYifFR4UYN2eGX/THpG2rJr7RdKr6uKmiVz7lbsosjVx/FEmXovo1rkAi/gvkbyv6FgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPr9DaNv+4e6+ndE6WoX3G/3mvjo6KnYmVV73IiL9kTKqq+iIfIomUM4Hg78PMWoN1tT7/6htzn0unf+bdNOemGrVSN/fSp78kbuX8u+wGbzhx2SsvD9wg6L2wssTV/ZdE1a+pROtTVv+eeVfy9Vx9kad+fw/qPlRMIhQAAAAAAAAAAWPejG9UV3phEAK9Goq5REwYo/ED8QG2cP2nq/bHbKthue8FwpeWapjckkdgY5FTzHp2WZU+lnp9S+x9j4hPG5b+GnZddJ6MrIqzd7UNG9tuZHI1f2VF2WrkT0VOqMav1L17JkimXq93TUGq7he75X1F1u9bUOnrKuqkV8k0jlyrnKvVV6qB27bd76+PbPdezao07bNd37WzIlfqa9o6W426RsvmOkikVequVETC9E9Do1y5/H2LQAKoir6FDeU0tJHHOlRA+ZzolSJWycvI70VfdPsBq1dK2mo6ORKqnqHVEPmKyJyq6Lrjleip0d0z0z3OOK91RFX+foXOYrWoqr3XH/AB/MCwAAVauHoqpk+kvmr9Taj0/YbVfL/XXe22WmWntNNVVLpI6KNy8ysjRV+VueuEPmgAN3SQtnrYoHTMg8xyJ5krsMZn1d9kNoV/zA1uREq1j5myNRVTmb2VE9TNlwFcD+xPE3wu2PXur7Pf7LfNPX+Wlu0MFW5KLUUbcSM+pFVqIjka7y1Tq1U9zCOi4cinvfh78QjfvY+s0Dpmgv0dz2wsVSjJdMLb6eJk8DnfOnmI1Hc+VVyOVfq79APpvEM4VrjsTxc6i1NZrLRWfaa+VDXacbS1cb3QKkTUdC+Lm52JzI7C4VFQxxvVVlcqpyqq9vY7f3z3Mv26nFNrnWd9uFZWLc73U1NNBVVnn/AA0T5FWONq5VuGt5U+VETodPL36dgOxtrKHb67b62C27pX+v0xoWeZUut0ttKk89OxGquWsXPNlURMfclucAevrVr7w1tGT2i91OoaOyTVVjhrq1nLPNFSzOjgfInREVYUiXCdEIbzc+Y3HfPQk6+DPX1dR4d2tKKeodLSUmsZUpY17Ro+GNzv5quQMwSdkATsgAAAAAAAAAAAAbK5UkFdbaikqYWVFNNG6OWKRMte1yKioqeqKiqi/ZTelsmV6oiL9lAh1cfnDfPw58fGoLRbba6j0HfXOummZM5YsL3fvIk9ljeqt5V64wvY8Pr0cqEt3xMeH9N7fDrvVytFqSv1rozmvFp8tv718TEX4iLPdUWPmdj3YhEllbid6ezlTr3A0wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHK2W1V191RbbJbIHVNzr6uOlpIW95JZHIxjf1cqJ+pNb4YNmLfsNwPbf7b0MKQT2+1sfclVER8lXL+9nVyp3VHuVufZqEb7wr9lV3T8Sy2aluFClVprQ1Mt3rPNZmN06/u6dq+n1Krv8JLDhby0/L9gNYAAAAAAAAAAWOdhufT1PNvFHxE6X4Z+FC9biajVlVWtb8NZrWj057hWPRUZG1M9URervZEU9DXOsprdZKyvrZ2U1FTQPmnlkdytjY1quc5V9EREVckQzxAeKys4l+MCtWy18rts9NyvodNU6ojUlTtJUqid1kci4X0bj3A8obqboav3f301DuFri5SXXUN5qFmqJZHKqManSONqejGNw1qeiIh1y5cvVcY+wVyuXKrlSgAHIUlDJXSSsgRnMyN0jueRrE5U7rlV/yQ2KpgC0AAVRcORfY131Uz7eylVU8lr1eiY65VML1NuAANaOGR8EkrYnPjjxzuRqqjc9s/k0ndHqnYCgBv6VKL4OsSqjmdO6NPhXRuRGtdzJlXZ7pjKdMdcAbAH0ls0nqW9Uj6izabud4p2f1klFQSzsb/iY1TlNJbd601zuSzSGk9MV981M+OSRLbT0zln5Y2q568q9cNRMqB8RjoEXBydTzU9DNbJqJjKyGoVZJVavmMxlqxr6Yz1OLAqq5x9igNxHTSyUks7WK6GNUR7k7NyBot/rW9+/oSqfCJ0p+wfClivTqZkMmodSVlWkrX5dMxjvJaqp6Y5MIRj9Ibda113BqGfRuma7UCWKg/aF0+Di51pYOdGeY5E9OZyITJuEXblNqfDq2i0Ry4mo9NwTVKqmFWadqTyZ+6OkVP0A9Lp2QBOyAAAAAAAAAAAAAXsABsK2CKqopaeogZUU8sTmSxuTKPRyYVq/ZUVyENXjg2LXYLxG9e6Op/Mdp+sqP2vYpHQpGi0tQqvRmE7eW5XM/DSZsrWqioqZTHqYVfGO2TdqXho0fvPaaJrq/SlatDeJWtTm+CqFTlevqqNlRidf7YEbQDsoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGpGmZPTt6mmctYrVU33WdqslGzzKu4VkVJA1EyqvkejG4/VyASefCI2hXRHh31+4davPdNd3R1UxnLh0VLB+6jbn15la5+f7xllYi8i5T8HWey+g7ftlwt6D0BbaZlLTWOxU1GrGNwnmNiasjvy56uVfup2gAAAAAAAAAHZMheiHzWq9UWXR23V+1Tf6ltDZ7TQS1lZO9ejYo2K9y/nCdvdUAxP+K7xSP2w4aqXZjSN0Wl1prKFy3OWnmVk1FbUVWuwqLlHSqis+7eYj1Wfc6htHC1q/baTRFjudZe7hBVQamqafNwtrY+ixQvTs13XKfc5ziR3ou2/3GHrndC7PkRLrXO+Ap3u5kpqRi8kMae3yIirj1VTodreZfb9ADly/KIiJ6InobiBIXMn82VYlSJVYiJnmd6J9jbKmFKAVT6k64+5vJ6ySa2wUqq3yonucxEYmUV2M9e69kNkAByNHVxU9DWRPpoZ3TxtaySRq80Ko9HczcdMrjl6+iqccAOTdRsXTjrglZAj0qfJSl5l83HLnzMduX+Hv3OMLs9FNylFOtodXJy/DtmSJV50zzK1Xdu/ZF6gVgrKiCgqKaOokip6hW+fE1yo2RGrlOZPXC9UNq5cyKvfKloAuYvLK13bC5Pe20HEVsPXbvbR0G+2w9ir9F6Ytf7OnrLOj4JZpVm5m1tVG1cT8qKuWdlznC4weBy9juV+fT1wBOl21ZtrX7PWS4ba0Fk/oVV0jZrU6z0cTKZ0LkymGtbhPunouUXB8prnh62t11fXX2r0nTWjVqUz4abUtjRKK506PbyqrJo8KvT0dlFTp2I1vAXx437ho1/Fo/WNRU3jZy6VTUqqVHLJJZ3qvWphRV7J/Ezoi5VU6kqPSGr9P6027s+p9L3OmvNhuVMk9FWUkiPjlYvVMKntnqnovReoEYni28NTdPYSnvmu9ua6q3J28dG+Sukgi/5yoI3KvMk0Tej2Zzl7EXGOqJ3MVSsflOnrhCfLNSx1FO+KVjZInorXsc3KORUwqKnsqd0XKL6mB3xE/DoifTXffXYex+XVM/1nUulLfD8srUyr6mnYmOqYRXRp6ZVOwEfpWqiJlMZLkXCYU7h3g1Ttvqe6aTdtzt7Nt7HQWOKjvMEta6o+Nq2KqPqEVy5bzdMt9FQ6cXq5VA9f8EWntba38Q3Q2gNHajqtPUl+rGM1A6BVWKot8C/ETRSsTo9rkZhEX+JyL6EyqkgZTwMiiYjYmsRsaIiJhqJ0T7ke/wAGLZ6Os1/uTvXdrYkrbZDHZbHUysVOWWT95O5nv8nIxV/vKSGo/wCrToBqeiAAAAAAAAAAAAAAAAqnr+DqHfHbe3btcJu4W3VzhbNBfbJUUzOb+GXkVYnfpIjVO3SiouMp0cgEB682mqsmqLpZ65joq2gq5KWdjmq1WyRvVjkVF65yhxJ7x8R3bT/Rn4r+5tLT0C0Vnvk0d7tyozlZI2oYjpFavriXnRf8zwcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9T2X4f8AoGn3F8WvZ2yVlKlXQ012/aVSxzOZvLTMWbKp/tNb+uDxqn1dsmaXwXNIPuHGBuhrF1I2SC1aZZSRzuYuY5J5m9Gr2RVaxfuBJMhzhzvdf+PyaxpQ48romPt7GqAAAAAAB7gL2UCxzsdDER4u2+UuheB62bVWmfkvWvapY6pG9XMoIHI+VU9uZ6Nav2MuUi4VMqqZ6J/x/wAdyLzxtcUkcPjWayvKWC0bj6a0jaJ9L2y23dyvpInywq2plYjVzzJI9+F92p7AYl1VcdUNzSVLKZKnnpoqlZYFjasqL+6VVT524X6kx69OpoyuR8z3oxI2q5cNTs32Q0s4Aq5VV3VMFAAABexMqvTOEzjIFgOQq6CaloKGqkY1sNUx7oVR6Kqo1ytXKZy3qi9FwceBytXbWUtnoKptbBVOqYnPfDE5VfArX8vLImOiqmHJjPRUOLV2UwpVXOVOq5LQABv/ADKd1phhSkak7Huc+dHrl6L2aqdkxjv9wNgAALkcqdjJLwH8eGoeGjXMWjtZT1N72duc6JU0yuV77S9VTNRCn9n1cxO/fuY3I0RZEymUVex25u1bNpbTqLTUG0epLvqS3usVNJeKi60jYFirnMzNHGid2tcuM/YCbdpTVth1noWz6n0xdKa+afudOyooq6lfzRyxuaioqL+F7d0XouFQ+jnRr42sV3Kmf0Xp6kWrw8uPK5bA66t+1m41e6s2fulYrIamVVV1gmkXrKzH1Rudjnb2T6vclDW24Ud3s9LcaCqhr7fVQtkp6iB6PjmY5Mo9rkXDmqmFTAEaDxPuC521G6Tt79u7K6DbnUE//PNFTx4ZZ6565V2OyRyqqrnsjl+5jXu2x+5ljtGga656Vqqel1tyrpZ6SMe65I5/I1WMaqu+rCdUTvgm3az0dprX23d30lq+zU9+07cqV9PXUNVEj2SscmFT7L6ovoeLdqfDx2N2o34o9fUk991XPZpldpO26guC1NHp9qp8zYI16L82VRVzheqZUDt7hD2SZw98BOgdtpV57xT0nxd5kVEy+rnxJKnTujXLyf4T1EnRENNsTUd0bj9TVAAAAAAAAAAAAAAAAAAACPn41mgljr9l9y4Y0Vj4aqx1LkTrzIvxEeftyrJ+qGBMldeLLoqPU/hH3+8siSSp01eqO4xud1cjXSJC/C+mEk/yIoyphVQCgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKt+tPySSvBV0y2h4R92NUva1ZrpqaKnZIjlyscECYRU/2nux+SNs1MyIhK/8JizPtnhBacrHtiRbnfbhUo5ifM5Em5U5v5L+mAMm6dkATsgAAAAAAA9FAXsoHX+52raTQmw2tNY1sjY6ay2Grr3OeuEzHE5yJn7qiJ+pBg1HeanUe4N91DWOV1Xc7hNWTqvq+WRXu/zcS0PFA1x/QzwhNwYIZVjrtQSU1np0a/DlSWVHSY9V+Rju3uRGnNRZnIi4bnpnvgDTAAG5pahaasjlRjH8rs8sjOZrvynqa6fCuoJ5nVCx1SyojYWs+VWrlVXPphcIhx4AArjrgovRQAByLLbM/T7rik0DYkn8ny1lTzVXl5so3vjpjPuAfbapmnY7o5rEo5J3QsVJWq5XtRFVOXOU6KnVUx1OONRz0czHKiffBpgAAA9QqYU3NHHDNdKeKonSlgfIjZJlarkjRV6uwnVcCpjZHUSMil86JHqkb+VU5m5XC/r3A23qV5Vx2CdFN5LVxy0FJAlNHC6FrmukYi80uVyiu/HYDaNXEiKq4T39jNf4Z/Hh/Qe9Wrh93ZuqN0jWzrHpm/Vk6qlrkdjFPIqr0icv0rlOVy+xhONSNytermu5XImUXOOoE+inma+nbI2RsjHojmva7LVRUz0X1/JvO/Uwh+GZx3Lrq1W3h93auq/0wpI/J0jdZ+i3GBjM/DyvXp5rWp8qrjmRPczaRSc0PMi5RevcDcAAAAAAAAAAAAAAAAAAAAAPN3FzpNmufDW3s01JA2Zs+kayZqPfyoqwM89Ovp/V5ITblXkRPTOSeVrS2OvG0uqLQ1kcjq2z1VMjZfocr4Xtwv269SCZqC3y2nWV2tcytWWjrpqd/L25mSK1cfboBwoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL41xM1U7ovQmD+G1a6O1+DRsslHGsSVduqKudFcq80j6qXmXr27diHu3pI1V7ZJj/h5U01J4OmxMNQxY5f2A9ytX0R1TK5F/VFQD2unZAE7IAAAAAAAUcqIn3XsVLH/Si+ygYYPGM1nb7NsvsVpy70TrlZq3Vz6660bJvL+Jpqdic0eUVHNVefCKn3I/W7l9281FvxfbrtXpGfQ2h55GLbbPVVjqmWnbyfMjpHKuV5s/5GW3xr7u+TiU2YsisckcGmqmoR3OuFV9QrV6e/y9zCGrlV6qq9VA1GwyOgkka1XMYiczkToholyOcjFajlRq90z0UtAvazmbnv19FLVTDsG9t9ZNbrrS19OjfPp52yx87Ec3mauUyi9FTPoprtdSVVXXVFYsjJpEc+NKdjUbzqueqejf8AZAso2W/ya341ajzEhVKZIUbhZcpjmz15cZ7dexW601DS3V0durnXCl5GK2d0Sx8yqxFcnKvVMOVW59cZONRzk7KqFVc5yJzLnAFpXmVExkoAHqbiKnWWnnkR7GJE1HKjnYVeqJ0916m39SqKqAFTC4N5HQVMlrlrG08rqaNzWPmbGqsa52cIq+64XCepssqvc1m1E7KV8DZXJC5eZ0eflVcKiLj3wq9fuBpIuFybylpKqve9lNTyVMjGLI9sTFc5Gp9TsJ6J6qbI1Yp5oXOWGV0TlarVVjsKqL0VPwoFr2ta5ER3N069CiIioUVVcvVcm/pI6d7J/PSTpCqx+Xj6/wCHOf4ff1A48uYqI7rnH2LR2A7511uHoCstW1dRtToOfbTU2nbcxt8ukV1fM+5VrHo5Klmfowuf/QkreHxxrUXEvsMzTerquGm3d05TtZdY1w1LlD9LauNuevZEeno5e2OpE4hjkm50jVE5Wq5eZUToh2DtVujq/ZzfXTm4eh7nJatRWipSaCRn0yt/ijenZzXN5kVF9FAnXfqhU8y8LfEjpHib4ZbTr3TU0dPcGNbT321c+ZbdVoxFdG5O/KuUc1y90U9Nr6fgCgAAAAAAAAAAAAAAAAAA29VCyWjmjflWvjc1yIvoqKhBU3cpYqDij3JoIMrDTaruMUauXrytqpETP8idjL/VP/C/+BBW3p/6X+6v/wBY3P8A+7lA6yAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABc3+sTpnqTGvDrer/Bu2Jc9yvd+wpEyq9kSplTBDlZjzm57Z64JgPho3mO9eDNs46KF0PwdJVUT+b+J0VVKiuT7LkD3r6IB2RAAAAAAADTlRVamPz+voahY/wClAIyPjN1tTN4gegKGWRHU9NotiwsRMcquqZVX/Mw8L3MvnjL/APzHdGJ/+CoV/wD3MpiEXqoFO6lVRU7hqoj0VUynqmcG8qJ6aWgpY4aZYZ2I7z5Vkz5qquU6emE6AbIGssyfDtYkbWq1c8yd1NH1AvVjmu+ZFb+UN1UrRLUMWkWZI+RvN5uM82Pm7ensUqq2etqXTVMiySq1rVVUTs1MJ29kHwM/7EdcPk+HbMkKrzpzcyorvp74wi9QLql1G6ho1p/N+J5F+IRyIjEdzLjlx6cuO/XOTZYXPYqioiHI1Lrb+yLf8KtQtbyO+NSZG+Xzcy8vJjrjl759QONVqp3TBQ5CsuVVXUdFBUyrLHSw+TAioicjc5wmE+/rk4/uoAF6MVW57J6ZLPUDe0lFUVbah0TWubBEssiq9EVG++FXr3TohubhSU1PaLbPDcoqyepY589Oxio6lVHYRrl7LlMLlDi8p1KegGvS00tXXRU8DeeWR6MamUTKquETqaUjHR1D43ph7HK1yZz1Qo1UROqZKLhXrjomegFPUqqKiIq+puIEjirI5J4/Oia7L40dhXJ+TSkcx0r1Y1Ws5vlRVzhPYDTAAHsTg24ptR8LfFPQ6jo3z3DRdycym1RaGOw2qp+/mJ/fYuXIvrhU9SYForWOntd7a2TWGl7tDeNP3ihjq6GqhdlHxuRFRfz1RFTPRUwQg9qb9oPTe/8Apm87m6SqNcaFparnu9kpqtaeWqi5VTla9FTCoqovf0Mrnh48cuntsuJa+bO33zLBsvqe9yyaSWsqFd/R+WSRfLic9VXEb8ojsqqI7qi4UCSg1UVOi5LvU21PJHJD5kbkexURWq1coqY6G6X6gKAAAAAAAAAAAAAAAA05lTyX/hf/AAILO9P/AEvd1f8A6xuf/wB3KTn6uTy7bPIiK5Y4nPwi4zhFXH+RBQ3UrFuPEvuJcORI/idT183Ii9uapeoHwIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKt+tPz6kq/wir7+1PCborY6qWeS0ajrqdY1T+qRz0eiIv3zkipM/rW/7kySLvBS1clRw/7y6KllVZrffaa4QN50x5c0PIvKndfmjVVXt8yAZyPRCha13M1FxhfYuAAAAAABZIuGexeWSfSi+ygRn/GftKU/HptvdPOylZotG+WrcLH5dVIn65yYa3JyyOb7KSMvFgvlh0Fuvt1qrUm2Vq3Bob/o66afp5bjOrZLfOsiSMniRP4mcyL179iOa76lAoAbuipZKyuSCHk8xWucnmSIxMIiqvVenoBtCuOxc9vKqIntkvhk8qdj+VHqioqI7sv2UDTxj84/JRVVUwbqrqFqqyaoWKOJ0j1crIm8rW59ET0RDaAFXKj0NWNqO6KiZ+6m+utrqbRfJbfVtYlTHjnSKVsjUy1HJ1aqovRU7KBxgAA3i11U6zMt7pM0jZVlazCfUqImc9+yIbNe/sbny6f9nNkSVy1HmYWPl6I3HfP59Dbr9S4AoVRMqbuKKldR1LpZnMma1FhY1mUeueqKvphOpZGsHwsyPY5Z1x5aouGt98gVSKnW3LIs7kqfMwkPJ0VuPq5vz6G2XuanZcffsvoaa/UB3ZufBszDtZtmm2dbeqzVS2hXa1W5sRIGVauy1sHyplqIqpn7IdJF6OVz0Ry5Q7j05pHa6v4UNdav1FuFLZdxLfXwQ6d0pDblkS6Rv5fMkWVVwxGZX+QHTINSRqNkwiYVO/5NMAbimx8U1HSJC1Vwr1Rfl+/Tqbcua9zFy1ytXGOgEljw2eOSl1vYIOH3c7UMVVrCztWHS9+qJHNS+UzF6RfNj94xvRM9VTHdTM2x7XxI5PYgPWq53G0ago7ta6yagudLO2amqqeRWSRSNXLXNVOqKi4X9CUvwT8cNz3D0RpfbzfmzVegdw5qGP8AYd4u1M+mpNURtbjnjdI1qecuMq3+LqqdwMpoLWu5kz2LgAAAAAAAAAAAAAD4jcW6fsPYbW9589af4HT9bU+axuXR+XTvfzInumMkE+61stxv9dcJ5VnnqamSaSRf43PcrlX9ckznjT1j/QPwuN7dRtqFhlj0vPTRKyRGvc+oxAiNVe/9YQuZGq1c98r69wNMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFU6ORTMB4NuuKSweIBrLSFXVtgXUelXJSROTpNNTytkwn35OZf0MPx6s4JNwYNsvFF2b1VVv8qiZfo6KqfnCNjqUWnVV90/eIBNGhXmz0Nde5oU7kcqq1cp6L+hrAAAAAAAL2UDuigYcvGb0bJeeAvQuroImq7T2qUSeVG5c2OoidHjPsr0b/ACIyzkxIqdP0JnPHRtzUbo+Fxu9pWiiSa6NsrrhQpy5XzKVyVHTp35Y1IZDmr5jumF9sfzAt5XexRWqi4VML7GRPa/gjutLwf2Pij3mgqYtlEnWW6Wi0OVt5ShVVY2sY1zeVWrIrPlVc8q83Y8HamSxu1/ef6MMqI9OpWyfs1Kx2Zkh5l5OdUTGcYyB84v3Bv6q31FLbKCslWPyatjnw8sqK5Ua5WqqonVvVF6KbADdUcsENyp5KmH4inbKiyxZxztz1bn0ynTJZUPjfUPdGzkar1VE5ubCeiZ9ce/qaXL8mcpgtAFcLgIir26r7G+ovgkquW4JMkCMci+QicyuwvL3VOnNjP2A3FgpLdX60tVDdrj+x7XUVccVXXLGsnw0bnIjpOVO/KiquPsfdbw6T0TorfO6ae2+1/BuZpinbG6mv1NRvp45lcxHOajHdctVeVfuh1enVTtjbjZ7U+6Fh1vcdP11opYtLWV91uLblcmUznwtVEVsaO+t656NQDqYF72qxyIqov3T1LAL0arVRVyifY3zq+VLA+2tWNaZ06TLiJqO5karfqxzYwq9M49S+4VEdTJHJBRR0TGwsY5sSuVHuRMK5c+q9ziwN5DWzQW6qpo3okNQjUlTCfNyrzJ/mhq01fNSQVccXlq2ohWKRXxo/LVVF6Z+lfl7p1Nhyr+PyastNNDFC97cMlbzMVFzlANFPqyb6kp21EdY5amGn8inWVElcqLLhUTkb7quf5IpsDfW51C26s/aSzJRYXzPh0asi9OmObp3x+gHZ+1OjdC6y1HqOg11uTT7bwUllnqrbVVVE+dldVRtVWU+W/Qr8YRfdTrOvtVyt00CV1BU0aTwpNTrUQOj86Nez28yJlq+iobPnRFd3dlc9f9/+Z764eNz9pdy9p6Xhx4lokorA6RzdD6+jT/W9MVMuU8uR3eSmc7ryuXDVxjAHgFWuTuioUPUXEnwqbmcNW4LKDVNCl00pXqsli1PQJ5lDcYl+Zio9OjH8vVWKufU81y22vgs0Fxmo5o6Gd6shqHROSN7kRFVEdjCqmeyKBtGuRGY+/X3Oy9Vbw7k61oNG02p9Y3G6xaTo20mnfMlwtviaqK1I1TCoqKidc56HWaNVUynVM4KKio5U9QM23CB4r960dTW3QXEZ8Xqmwsc2Gi1ZA3nrKSPGOWoZn981P7SfN75JAW3+4+hd0NAUWqdA6nt2qLJUxJJHUUNSkisReqI9ucsd9nYUgjouHIvsdu7S7y7sbQbgxX7afVt20xd2fO9lvkV0UyJ3SSHqx6Y/tIoE5bzE6dS5rkVE/wDIwE7CeMfAiUll4gtEOiwkbF1HppvMj+6PfLTux1+0ff2MvW1XE5sTvNZqOp253Ks+oZp25ZQ/EJBWdMZRYJMPRUz2wB38DSWZiKidcqvRMdVKpIjl6NXHv6AagHT3AAAAAAvRAMUni764TTHha/0ZbP5VRqnUVNRo3HVzIlWd6L0/uN7EWRVz/vM5XjVa9dW7wbP7cwT5ht1qqLrUwo7KJJNJ5TFX78rFxn3MGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3dBWVFuvVJX0j1jqqaZk0Lk9Htcjmr/NENoXx/VlOqp17ATguG3cuk3b4Ittdw6N/Ol3sNPJP7JOxiRzJ/wDqNcd5mGXwct4p9UcHOr9prnNF5+jLn8RbsLh3wlVl6ovvyy838zMxGuYEVe+ALgAAAAAdkUADjq+miraOWmqGJNSyxPjmixnna5vVMfdMp+pEu3I4I9bW7xqE2Et1pmls+oNQJW2quhhckC2qV/mvkReyeUxXNVM/U1E9SW+rEdlMdMe5xjrXb5LzFXyUFM+uhYrIql0DVlY1e7UdjKIvtkDp7Xm1enqngO1XtRbra1LEui57TR0rGZREbSuZD39lRq/oQjK2mmt10q6GZqsngmfDK1yYVHNXlVFT8oT4aqNs1DJE9EVsjVaqOTp1THX7dSDrxB6VrNE8au6ulq+ldR1Nv1XXM8p6cqtY6Zz2dPZWua5PsqAdOK5VXOEz+C+NiSTNar2xovdzl6IaQyuMZ6AclHcJIbPXUbIYFjqkZzvdEivbyLlOV3dv3x3ONK5UoB2xs9fdrtPbm1Fdu7omv13pZ1unjjt1vr1pJEqFb+6k50VOjV6qh1lWuhlu1RJTQ/DU75XOihV2fLaq/K3PrhMIbZHOai8q4z3PstB3axWHdvT171NYItVWKjrmTV1pkkWNtZGi9Ylciorc+6AfHInKufVO3sfd7b3DSlJu1ama7oqiu0dO9YLqlJO+OaGORFZ57OXu6NVR6NXo7lx6nr/crhC3C1zsZScTWy+3bpto9S+bWRaftDnT1dhRsixujdGqufIxHMcqPblcKmUQ8FyRTU1ZLDLG6CeN3LJHIxWuaqd0VF7dfRQO8t+NhdS7I7iUFLXTN1Bo680ba/SupqNv+q3ejemWvavZHonRzM5aqKdCqmHKhlb4Gdw9Bb27Z1/BbxAukrNN3l7pdvru96fEWSvwqrHC930I5fmRueVVyi9FPMfFbwf7i8LW79Rbb/Ry3nRVVOv7D1PDTuSnqmdVRj/RkqJ9TF9U6ZA8lurql9rWic9PhvN83kx0R2MZ/kbVvdfwXIxyscrUV3KmXYRehp9l6dAO6db33Z64cPG3tt0Xom5WDcOibL/Su7VVx82nuOf6tYmZXkxlc/g6dRmWuVfQ0eZfVc/k7l201toHS+3W4tq1ntxBre4X6zpR2S4SV76d9lqEdzpO1E6PVVaiYUDpkHb2odo71aNlLLuRa5odS6Hr3Np5rnQIq/s+s5Ec+lqY1+aJyZ6K7DXp8zV9D4qo0bqml0JSarqdN3Gm0zVSLHTXSWhkbSSuRcKjZVTlVfwoHyx3RordC1aU4Zdy9BVG3ll1DddVJTNpdR1zFdV2dsT+ZfIx2Vy8uVX2OmXIiKmMlEcqJ0UDKbwncdVo0/oRuwnFBaG7k7F10aUtPLXRJPNZWq5fm6/M+NPdPmaiIidOh6I4o+B7W2p+ELS9Rwp6notztg7dPPe7VpqnSN1dSOmY50j4Z+9Q3lXCRvcj29sZMFaPdzIuevuex+FfjU3Z4WtbOk01WrqHRdVIjrppq4yqtNN2y+Ne8T8J0c39QPJ9xtFysd7mt13ttTbLhC5Umpa2nfFJGqd0cxyIqfyNlW1Dai4yTspoqNHYTyYUVGN6Y6ZXPpn9SULbJuB/xLdvIqivtsFp3Lgp186lSZtFfKF3d3K5uEqWL74d09EMee+fhA70aPutbcdnbrR7oWDzcw0UszKO5RNxleZrv3b1z0+VUVfYDD0XMe5j+ZjlauMdFwegrRw469i4lNP7cbk0Uuz0tzq/h/2tquilp6KDCKqudJjGOnoq9VQ6Z1NZmaf17erJFcKa7x0FdLStrqNVWGpRj1b5jFXu1cZT8gcMkrsqvT7/ACod3XjVe2UXDbt5HojT1501vDbquVdR6ibdn+TXRqrliWFjXZjc35UX8IdG4X2K5djGVwB7j2m8RHis2kpKe3WzcebU9jjeirbtSQNrmqifwpI794iKnT6jLBsh4uaastt1qNx9kbxR22z0rJr5fdKc9ZS0Eau5Ukkif8zWKqpjCqvXJgPn2h13ScL9LvFLaImaDnuy2uK4fHQq74lreZY1iR6vTphcqiHJ7V3Teqe16p0FtMy/19PqmlbS3y12OjfP8bCjkVEkRjV+VFXv0/IExnZXiO2f4gtF1N82r1pR6jgpXoyspkR0VTSuXqiSROw5vdOuFTr3O9GLln6GD3w1+BPdrZndqo3n3VqJNITz2x1Jb9MRVHNNM2TGZKlGrhMYy1nVcqZv4lVYMr3VMqBrAACqeptpHYReZcN9/wBDc/wnnXil3VpdleA7c7cWok5ZbbZZWUTebCvqpU8qFqfl7mqv2RQIqPHZudDuv4o27Wp6OoWqtsNz/ZVFLzZasVIiQfL9lcxy/qePjeVtXPXXSqrap6yVE8rpZXKvd7lyq/zVTZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7s8Ove2LZLxM9GV10q302mNSSfsK78rl5WpOvLE9U9eWVWfoqkwWFc0ze2Vb+CAxR1M1HcIaqnldDURSNkikYuHMc1UVqovphU7kyzgi32i4gPDs0JrSokY/UVLSpa77G2Tmcyqp8MVV9V50Rr8+vMvsB7CATqgAAAAAAAAA0ZmqtMqYzlMYIl3iq6PfpjxdtX3RIFipdSW6jukT/L5UkcsKRPXKdF6x9yWpIqeUqdTA341e289TojZ7dWnh52UVTUWOtka1OjZEWeJV9ky1//AOYCPdjALntVqpn1TJaBfyPRnMrVRMZRfc1qaompJnSQu5HuYrFXCL0Xovc9AV7NBU/h8WpZ9qr9Q6+q7+99JriSaRLZV06NRr4GIvyq9qt6on3PPLvpz9wLVVFxgp6gASlvCG1kzUnhc1OmHLzy6X1RV0uOuUZPy1CIqquF+tx3vxB+H3w98QkVxud30wmk9azRqkOorA1tPMju/NLGieXKue6uTP3MZ/gqa/fS7h7w7Z1EqNp6uip71SRerpGO8l6p/hcz+RIYamFwBG01F4P/ABCaG3Wsd42t1xp7VUFJcY6qCrqZnW+opHRva5jnIuUdhURfld/D9zPxqPbWxblbAM0TupYaHVNHV26OG6QVESOY+by8PkZ0yx3NlUVvVMna2CqYx2Aj07+cBG8PDxtxupJw52ag3J2y1jQObdbZW0Uct4skEarKiQOf1kai4+Zvz/L1RTBXXUVZRXCWkrKaWlq4ncs0M0Lo3xu9nI5EVF/JPikj543NVOi/c8dcQPAvsBxFUFRU6s0lDZdWujVsOpbGxKWtY5f4n8qcsv8AjRfyBDU5Xexcsb0TKtVE9FMwO9nhBb36Jr6m4bR3ai3VsSOzHRPkShuLW+qK1y+W9f8AZd+h4w4kdqK3R2sLDT2TYTV21dBQ2Wnp7y+9RSzsq65G/vZmy9WNa5cqic3YD57hz4grpshubUQ1lug1btnf0ZSax0pXxpLTXOlzhV5V7StyqsenzZ9TJDxB8G+tNwuCHSWrOE7W1buNw9sSa9W3QMsjUqbRI9Hul8n1mVFV6Kxy86dkRe5hctq09LqahfcoHyUbKhjqmJruRz2I5FciL3RVTPUkS+Fzupb9TcSe9Okds9DXbSex0lvprnaKOuqH1DLdVtRkUzGyKqtTzVVz1Yi/fpgCO5drPdrLf57XebZVWq5QO5Z6Wsp3QzRr7OY5EVF/JxnKuCa5vZwjbC8QtAjty9CUdzu8THsgvFJmlrolVMZ82PCuwvVEdlDE1uf4K0rZn1e0e7rFic9cW/U9AqcrcdESaLOevu0DAP6lVa5vdMfkyZXTwqeLXTOq4pXaGtmuLNSzRyVLLPf4WvqI+ZOeNrZFa5FVMp/vK7teHnxH6h3xutx2r4ZL1onRUjY0orVWahpamSJUYiPVXrMvd2VwigY5bBf7zpnU9Je9P3ersd3pJEkpq2hndFNE5PVrmqip/MzT8K/i1ays1Va9Eb/WafXNufI2GHUtrhzcIWrhE82FqYmRuO7cOPFH/u1+NL/sSuH/AHnSf/2ncuyvh8cd+id7dPa403oO3aQvVsqXfDVl+ulJJHArmKxXrEjnq5ERy46L1wBI90brPZ7iK2WpdR6bns24WlaxqtVlVSMn8t3VFjlikRVjemOqORF9TpnWnh+8I+vLqtZetl7TRVLmK10tofJQr9SrlUiciKv3wdWcDHBtr/hv1luHrfcfcWHU2o9XuR9VarUxzKCF/mc7puqIjpV+noiIjenUySp6IvbAGMmr8JTg8rLjLUM0zfqFj1+WCDUc3Iz8ZyptWeEfwgRVrZFsOopWNVHLG7UcvK7HdFwnqZQVxnoOmOqAeH9NeHjwm6VpYoKPatlypI5vOZR3a71VZTI/GFf5Mkisz98ZPUmkNudD6Et/wejdJWjTFNjCttltip8onvyNRV/XJ936lc/YCxG4z65XOS4AAAFA03dVwncwLeMxvhFBp7QGw1nrFWoqZlvl/jjkXHltRY6eJ6eqKqq/HorEM6V7ulHY9NXG83KoZS26hpZKqqmkdhscUbVc9y/hCFRxTb03Df3jq3B3KrHNSlr7i6G2RMzyRUcP7uBEz7sajl+7lA88gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABlz8JTiHg204vLhtLqGq8nTmvWMZQvllRIqa4RZWNy57eY3mj/KtMRhyNruVdZ79Q3S3VL6Svo6hlRTTxu5XRyMXma5FTsqL1AnxMciq3HtlUz7mqeRODDiMtPEnwR6V1jDUxrqejhbb9S0bHJzU9ZG1Ecqt9GydJG/Zx68X0/AFAAAAAAAAWq3J5j4u9q6PdrgH1xpaezQ3+emp2XSjop1VGzyUj0n8nmTqnmNY5mf7x6eNGdrF6Pajmr0w5Mov5+wEFnd3U+mdZ8QWodRaQ0PT7cWCqlRafT9LM6SOjVGojkRzlVVy5FU+GZbJ1sH7UTk+FbOkK/vW83MqZ+nOcYTvg9v+IjsDUbD+I3qqCjtyUej9TyOvdhkauWObK5Vmj6dlbLzpj2weEFVUk6dML0Ak3cJW0OiuJ7/ANm/0jtlqGka1GftGlpKtMeZQ1sdVI6Odn9lcuTPTq1VyR0N09uNVbSb8al281nb5LbqGy1z6aojkZjnRF+WRvu1zcORfVFM/vgva0ir+FndbQc9Y2SotWoIq6CFVw5sM8KNVfdU52LlV6HMeKtwjSbk7QN360TbnTax0xSK2/UsEWX3C3p2kRE7vh7r/cVV9AI1AN6nwzbfK18L3TqrfLka7DUT1ynrk2bsc647ZA9s+H1ulDtN4qu2F6r674Ky3SrdZrkqqvK6OparGc328xYyYtG5VXr3RCA9a7hU2rUdBc6N6x1dJUMngci/S9jkc1f5ohNp4ZN27ZvfwQ7c7jWyRZP2jZYmViO+plTEiRztd7KkjXfoqAegO6IAnZABVVynZC1URU9vwVAGmsTF7obSstlBcKJaevpYa6BUVFjnibI1UVML0cip26G/AHUVfsFsldLm+suO02kK2reiI+aXTlKrnY7ZXk64Pu9PaS0zpKwstWl7Db9O2xi5bS22jjp4k/wsaifr3PogBa1uEXqq5KciIvdce3opeANJImIiJhFREwiKidAkLETHKnfPZDVAGn5TE/hT+SFvks5lX0X0NYAafloagAAAAAAAAAAskfyNz7/z/QvPn9VX+06V0JdtR32rjoLNbKSSqraiV6NbHFG1XOVVXonRF7+uEAxW+LJxFt214Oabaew3B0GrtdIrKhKd3LJBbmOzI7m9OdzUZ0+5F7djzHY7Z6dD0xxcb+3DiN449XbjyvmjsssqUtjpJX5Smo4vljREyqNV2OdcerlPMqqqrlQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMhXh38VcnDhxl0tDfaxWbb6uliob8xcqlK9XYhqWp7tcuHe7VX2Jb9HNDUUcU9PK2ankja+KRiorXNVqKiovtjC/qhAYZlJW4756ElrwreMaHcTaWLYTcG7I7XWn4F/o9U1MuZLnQtTpFlfqfEnT3ViJ7AZnE7IDSikSRv0qxUXCopqgAAAAAAtcmWYLgvYDHJ4kvDM/f/garLlp6kZNr/RrZLrZ0wiOqYmtVainz3XLMuaifxNT3IlUkb453sexzHtdyq1yYVFTphU9yfNPAksatc1r2qmFRzcov2Isvib8I0+x/E5U7oaOtbKfbDV1W6RIqdqq221ytR0sbv7LZF5ntXt3QDk/B+3AZpjxKLto+eVI4tX6clp4mq7vLTuSdqflUR6En2soqe4W2akqoGVNNPEsc0UjUcx7XJhUci9FRUXsQveDfW/8Ao58T7ZLVTnuSni1RT00yt7qyoctOqKntmRM/YmmxJhys7KnpnIEULxGeDWr4dOIt+stI0Dv9FGqKl8ltbC3LbXULlz6ZfZvdWemFx3MZ7kxI5F9FJ0e8G0+j969idQbc66tzLlp+7UjopWu+uF31MlYvdrmuRqoqexDx4pOGjW3DDxNXDRGqYlqbfLmpsd2jY7ya+lVVVrkXH1tTCPb6L9lA89Wasprfq6119ZRtuNJTVcc01K9cNnY1yOVi/ZUTH6kijwxOK7SOsd8tyto6DTVJt1ZblI296R03RzLLBSO5WtrIYnO+Z3M7EuPROYji+p2Xs/uXftnuJTR+5Wm6h8F3sFyjq4kY/l81qLiSNV9nsVzV+ygTqInc7MpjP2U1TrbafczTm7PD5pTcbS1U2rsN9tzKuncxc8iqmHxr92v5mr+DsdrkczKf+OQLgAAAAAAAAAAAAAAAAAAAAAAAAABpSKnlOcueXHcwUeLjxXNtGj6Phs0bc2rcrkjarWckD+sVP9UVJn051w9fZEx6mTbi04lNN8MvCNd9f3hzai8yo6k0/bub5qytc1eRMf2W45nL7N+5Da1xrPUO4e6l/wBa6ruEt01DeK59XXVUrsq971VcfhEwiJ6IiAfKyLzK3rnoWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPU+w0JrfUu3W7lh1vpC5S2fUNnq2VdHUwOVFa5i9l92qmUVPVFU+PKoqouUAmdcHvFLpnii4X6LVNsfFRaroFbS6ms6ZR9HU8uconqx/1IvZM4zk9dMdljVznKZzjGSE9wu8SOteGPiVtuvdKzunt73tp75a3LmK4UqqnOxUzjmRMq1fRcehMG2Y3k0Rvpw/WTcTb25pcrDXx4w75ZaeVvR8MjfR7XfKv806AdvAJ1bkAAAAAAD0OuN0trdH7wbJah0Bri2R3XT13pXQzxuaiuicqKjZGL/C9qrlrjscYAi1a34K6Xhv3uv2nta6b1frOvrbzbpdrtTacp/MopP8AW4+eOtRrV8p6NarVzjOMpglC0LeWgh7tVImoqL74xn89DXdTQvxzMbJhyORHIiplOy/n7ms1iIvb/MCjmI5cr3ROh524juHDb3iW2Gr9Da4tsbqjy3SWa6xxp8TbJ8dJYne3Njmb6oejcGmrEyvTpnIEJXiD4ZdyuHTiNqNvdY2qWqmmkV1luFHC58N1hVcNfF06u7ZZ3Rf5nRd0tFzsF1kobvbqq117Mo+nq4HRSMX7tciKTb96tjdC76bdU1l1jQc1db6ltZZLvTLyVdrqmrlk0T07Y6czezkTCkX/AI+dgeIfbfieuOsd5Kx+uaC8PYy36ypKRI6WqaxiNax7WoiRSI1Eyi4yuVTIHqfwn+LtuityX8O2urh5WmNQVTpdLVc8nyUFa5Pmgyq/KyXuif2+ifUSR4lV0KqqYVe6L3QgN0dbVW2601ZQ1D6Ssp52zQTRryuje1ctci+ioqIv6Er3w8+M6m4j+HKLS2qq+OLdzTNMyK6wq5EW4wIqMZVMReq5TCOROzkVfUDJYAAAAAAAAAAAAAAAAAAAAAADKJjIFPc+P1rrbTu322d91jq65xWfTtoo31dfVy9o42p1/VV6Inqp9BX3Cmt1vqa2sqGUtHTQumnmlejGRsamXK5y9ETGV69sKRgPEc46f9PWvpdqtsrpJ/oms1T/AK3WRZZ+2qluWq/7wtz8qL3XqB5e40OKfUHFHxR1uopaiam0NbHvptLWly4bS0/NjzHIidXyY51VeqIuOx44XuXK5yoqZXBaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2twbcZOs+FLeWGopqia+bdXOZrdRade9eR7eyTQqq/JK1OqKndOi9zxSAJ0+1u6mit49mLHr7Qd7hvWnLnAj4ZY3JzRrj5o3t7te1eiop2flEVEz1wQ4uDbjN1nwqb5R1NM6e97c3SdrdQafdJ8r25T9/F/Zlb36d06KSwtnd5tvt89mrfr7bi/xagsNUmFc35ZYJP4o5GL1Y9OyovfHQDt0GmyRr0y3qmTUAAAAAAAAAAAAfHa20NpbcLbm5aT1nYqTUmnbhCsVZQVsSPjkRUxnr2VPRU6+x9iOi9wI1vGF4U+rdC1911zw8U82rtG4fPU6YWTmuFvanVfJz1mYidcfV3TqYytndfbk7H8WWm9V6Kpq6i1vaa9rP2e2mc2WfK4kppI+XOHt5mqmM9c+hOAfErn5Tp/x/6nlDd/g32g3b3EtuvZLX/QrdG2Tsqbbq/T7EhrYpmYVrpG/RMmUT62quMpnqB2HsNu/bN7OH606xpLfUWK69aa9WWtYsdTa6xnSSF7XfN3TLVXo5mFTp1O8k9PweCuGHha3X2Q4qd1Nf653qTc2h1kyN0sDqF9O9ahiojZ3t5ljR3InL8ieq+iIe9sdEUAAAAAAAAAAAAAAAAAAALXKiMVVXCGzrKmGno5KiWZkMcLVe+SRyNaxETKq5y9ERE7r6GncrhRW+wVdfX1UdDQ00DpqiolejGwsamXOcq9sIiqRyvEI8R924VLXbN7DXqeDRLlWLUWo6fmifclRcLTwr9TYkx1cmFdlfQDdeIn4ismtKi67H7GXqSHScbn02pdS0r1a66Ki4dTwO7pEiphzk+rrjpgwiuXL1LnuRzkVG8qY7Z7FgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEXC5PTfDPxU7ocMW8kepNEXJ1RZppEW86eqHr8HcmJ0w9qdnInZ6dUPMgzgCaPwwcXW1XE9tUl40XcEodR0sbf2xp2seiVlE/HfHeSP2e1F6d+p6sbJmBHdFVU/hXKEEPQO4es9stzbZrHQuoq3TOoqCVJKesoZlY5MLnlcidFavqi5Qka8HXilaM3RpLZoPfCal0JuAqNhpbuqo23XV+cdXf9TJ+flX3AzGA2cFTHUQxywzNlhexHse1Uc17V7Kip0VFN7/D+oFAAAAAAAAAABXP2KLhV7AAW8jfbqXemAAAAAAAAAAAAAAAAVTGepQ0plcjE5fqVcIirjIGqqoi9z4PcHcnSG122F11lrm+UmndOW6F0lTWVciNbhrc8rc9XPX0a3KqeYOKTjm2f4X9Kzw366M1Lr2WnWS3aWtj0dPKq/Ssy5VIWe6u6r6IRheJXiy3Y4oNzXXnXd3dBZaeRf2Tp6jkVtFQs9MJ/G/tl7uv4A9S8bviN6v4hq+t0LtxLV6Q2kY9Wva16x1d5TtzT4X5WezEx07mLlzld3Kcy4xnoUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFyOVrkVq4X3LQBki4V/El3i4en0Wmr/PJuZttGiRss9yqXfEULc94JlyvROzHKrfZEJF/DzxdbIcSmm0qtu9Vw/tqONi1en7iqQV9M5Uzy8ir+8RML8zMoQr06ORTmbLqG86c1JTXiwXWsst0p3I6Croal0Msap7OauUAntMka5eXmTmT09f5F+Uz3IyfDn4um52gbTQaZ3psv+k+wQI2OO7xTJBdIWJhOqr8kyonvhfuZ0Nj+L3YHf8AtET9u9fUVXdvLR09lrnfC10KqnZYn4V3+HIHp0GkkzFXHbrhPuXtcjs9MAXAqqYKAAAAAAAAAAAAAAAFcfcp6gAWucjUVV9C1ZWoiquUwmVyBqFvmt6/N2TK/Y643F3b242o0PPqHcXWVr0haIkVfNuFW1jn/ZjM8z1+yIphn4i/GKs9tdcNO8Ommlvc3WNNVXtix06L/bhp+jnL934/AGZ7cfdPb/ajbCt1buFqm36VsVNEr31NdOjefH8Mbfqkd9moqmBTin8XK836O56N4cKOTTtokVY5dXV8a/GyJn6qaJctjRUz1fl32QxF7qb17m71a+n1LuZrG5aruskivb8ZOqww/aOJPkYiJ0widk9TqtzuZfuBy1+vt31Lqmrvd+ulVebvVyLJVVlZO6WaVyrlVc53VVOHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqi49Mm+oLpcbXc4q221s9vrInc0VRSzOikjd6Kjmqiov4NgAMi+x3ic8TGz8lLQXTUEe5+moYEiZbdSZfJGiduWobiTKf3lchlv2f8X3h71hQ01HuVb7rtXelRrZHywuraF7l7ubJGnM1P9pqEXrK+5VHOavRyp+FAnUaD3l2u3Q07TXXb3Xlj1dRTt52Lb7gx8nL94886fqiHYzp0RFxhP9rKfj/1IE1nv180/d2V9hvFbZK5q/LU0FW+CRP8TFRT2Lt34hnFvtvaaa3WfdutvNsiX5aW/wAEdwRuVzjnkasmP8QExwqmM9SN5oLxqN0rYsNPuJtfYtVQo75qu1VUlFMqfdi8zF/kh6t0j4z+xV1+Hh1doDVmlpXva2SaFIKyKNFXq9cOR6onsjVUDMsuM9B0x1Ux42vxRODK5rGibpz29XycifHWCqjx/eX5cIh2fYuO7hL1LW1EFp3002ssDEfKtXUOpm4X2WRrUcv2blQPXwPNf/LB4Yf+3XRv/fcf/mP+WDww4/8Ajro3/vuP/wAwPShXpjqp5UvHGzwrWOxTXGu300otPGqcyU9xSd659msyv+R1jdPEu4MrXLyv3jp6/LOfNDaqmb/DlGdFA98FMoq9DExrLxh+GKwL5WmrdqvXUixI9X0lsbSRo7OOTMz0VFx1yiYPL+r/ABs7i+KWPQOylPFJlUbUX+7OciJnoqxwplenf5u4EgJ8itzjH26nBXvVmnNN2x1bqC+W+xUTfqqLlWMpo06f2nqiEUrXHincXur4p4aDXFHoumlarVZY7XCyRqKvo97XORcevc8Naw3J3A19eZa7Wmtr3qmd71dzXO5yzomfZHOwn4RAJVm6fif8Ju20tdRUetJtwL1T5a6j05RumZzIn0+c7Ef6o5UMTO9fjA71a0pKi0bT2G37WWlz15a9f9duD2denM/5GKvqqNynoph/5l9yquc7uuQPtNb7j663I1jPf9earuerbxKuX1VzrHTO9umVw3p7Ih8Xzqrs+paAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK5X3KZAAZGQAGSuVx3UoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/9k=');background-repeat:no-repeat;background-size: auto 40px, cover;background-position: 10px 10px;}#jenkins-home-link{display:none !important} -------------------------------------------------------------------------------- /personal/mc-backup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # This script assumes that the minecraft world is in the root dir 4 | mkdir backups 5 | cp -r world* backups/ 6 | cd backups 7 | 8 | # Nuke git everytime so we don't hit the repo file size limit 9 | sudo rm -rf .git 10 | git init 11 | 12 | # Add a README files 13 | echo "Backups for minecraftbutcursed.com world" > README.md 14 | 15 | # Zip all the world folders into a file 16 | zip -r -s 100m backup.zip * 17 | 18 | # Do Git thingies 19 | cd $HOME/backups 20 | git add README.md backup* 21 | git commit -m "New Backup" 22 | 23 | # Force push the file 24 | git push -f git@github.com:Dhruvgera/mc-backups.git HEAD:main 25 | cd $HOME 26 | 27 | # Clean up what you did 28 | rm -rf backups 29 | -------------------------------------------------------------------------------- /personal/release.py: -------------------------------------------------------------------------------- 1 | # Import basic modules 2 | import os,sys 3 | 4 | # Pass the name of the file 5 | filename=sys.argv[1] 6 | 7 | # Split the filename to get the devicename, we are using the 4th element aka 3rd index 8 | devicename=filename.split('-') 9 | devicename=devicename[3] 10 | 11 | # Declare a device list 12 | device_list=["beryllium","G","lavender","ginkgo","violet","r5x"] 13 | 14 | # Upload the actual build to your FTP 15 | for i in device_list: 16 | if i == devicename: 17 | os.environ["devicename"] = i 18 | os.environ["filename"] = filename 19 | os.system("ftp-upload -h IP -u USERNAME --password YOUR_PASS -d $devicename/ $filename") 20 | else: 21 | pass 22 | os.system("rm $filename") 23 | -------------------------------------------------------------------------------- /personal/setup.sh: -------------------------------------------------------------------------------- 1 | git clone https://github.com/akhilnarang/scripts 2 | cd scripts 3 | bash setup/android_build_env.sh 4 | mkdir -p ~/bin 5 | cd 6 | git clone https://android.googlesource.com/tools/repo bin/repo 7 | printf '\n' | tee -a ~/.bashrc 8 | sudo apt-get install cpufrequtils 9 | echo "sudo cpufreq-set -r -g performance" >> .bashrc 10 | echo 'deb http://deb.xanmod.org releases main' | sudo tee /etc/apt/sources.list.d/xanmod-kernel.list && wget -qO - https://dl.xanmod.org/gpg.key | sudo apt-key add - 11 | sudo apt update && sudo apt install linux-xanmod 12 | ccache -M 100G 13 | sudo reboot 14 | -------------------------------------------------------------------------------- /presets.py: -------------------------------------------------------------------------------- 1 | import os as e 2 | import time 3 | import glob 4 | import subprocess 5 | import select 6 | 7 | print("ROM Builder script by: ") 8 | print(" ______ __ __ ______ __ __ __ __ _______ _______ ______ _______ ") 9 | print("| | | | | || _ | | | | || | | | | || || _ | | _ |") 10 | print("| _ || |_| || | || | | | || |_| | | ___|| ___|| | || | |_| |") 11 | print("| | | || || |_||_ | |_| || | | | __ | |___ | |_||_ | |") 12 | print("| |_| || || __ || || | | || || ___|| __ || |") 13 | print("| || _ || | | || | | | | |_| || |___ | | | || _ |") 14 | print("|______| |__| |__||___| |_||_______| |___| |_______||_______||___| |_||__| |__|") 15 | print("")#I know that I can use the newline character, but yeah, I prefer this style of coding :) 16 | 17 | q=input("Select device: \n 1. santoni \n 2. falcon \n 3. beryllium \n 4. demn ") 18 | 19 | #Largest file finder code 20 | try: 21 | chex2=open("largest.py") 22 | chex2.close() 23 | except: 24 | codefs='''import os, glob 25 | largest = sorted( (os.path.getsize(s), s) for s in glob.glob('out/target/product/q/*.zip') )[-1][1] 26 | os.environ["largest"] = largest 27 | os.system("gdrive upload $largest") 28 | import subprocess 29 | import select 30 | cmd = subprocess.Popen(['bash'], stdin=subprocess.PIPE, stdout=subprocess.PIPE) 31 | command = "gdrive upload --share $largest" 32 | cmd.stdin.write(command) 33 | cmd.stdin.flush() # Must include this to ensure data is passed to child process 34 | if ready: 35 | result = cmd.stdout.readline() 36 | os.environ["link"]= result''' 37 | saveFile2=open("largest.py",'w') 38 | saveFile2.write(str(codefs)) 39 | saveFile2.close() 40 | rep = open("largest.py").read() 41 | rep = rep.replace('q',q) 42 | with open('largest.py', 'w') as file: 43 | file.write(rep) 44 | 45 | 46 | 47 | try: 48 | checko=open("sendlink.sh") 49 | checko.close() 50 | except: 51 | sendcode='''#!/bin/bASH 52 | function tg_SendMsg() { 53 | curl -s -X POST https://api.telegram.org/bot$BOT_API_KEY/sendMessage -d "parse_mode=markdown" -d text="$1 " -d chat_id=$CHAT_ID} 54 | tg_SendMsg "$link Enjoy your freshly cooked ROM!!!!"''' 55 | se=open("sendlink.sh",'w') 56 | se.write(str(sendcode)) 57 | se.close() 58 | 59 | try: 60 | chexlast=open("start.sh") 61 | chexlast.close() 62 | except: 63 | buildcode='''#!/bin/bash 64 | . b*/e* 65 | lunch cerberus_q-userdebug 66 | make cerberus -j$(nproc --all)''' 67 | saves=open("start.sh",'w') 68 | saves.write(str(buildcode)) 69 | saves.close() 70 | fixx = open("start.sh").read() 71 | fixx = fixx.replace('q',q) 72 | with open("start.sh",'w') as file: 73 | file.write(fixx) 74 | 75 | process = subprocess.Popen('start.sh', shell=True, stdout=subprocess.PIPE) 76 | process.wait() 77 | e.system("python3 largest.py") 78 | e.system("sendlink.sh") 79 | -------------------------------------------------------------------------------- /production.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) Dhruv Gera 2 | import os as e 3 | import time 4 | import glob 5 | import subprocess 6 | import select 7 | 8 | print("ROM Builder script by: ") 9 | print(" ______ __ __ ______ __ __ __ __ _______ _______ ______ _______ ") 10 | print("| | | | | || _ | | | | || | | | | || || _ | | _ |") 11 | print("| _ || |_| || | || | | | || |_| | | ___|| ___|| | || | |_| |") 12 | print("| | | || || |_||_ | |_| || | | | __ | |___ | |_||_ | |") 13 | print("| |_| || || __ || || | | || || ___|| __ || |") 14 | print("| || _ || | | || | | | | |_| || |___ | | | || _ |") 15 | print("|______| |__| |__||___| |_||_______| |___| |_______||_______||___| |_||__| |__|") 16 | print(" ")#I know that I can use the newline character, but yeah, I prefer this style of coding :) 17 | #Largest file finder code 18 | 19 | listdevice=["beryllium","whyred","santoni","rosy","lavender","onclite"] 20 | 21 | n=len(listdevice) 22 | 23 | for i in range(0,n): 24 | devicename=listdevice[i] 25 | 26 | try: 27 | chex2=open("largest.py") 28 | chex2.close() 29 | except: 30 | codefs='''import os, glob 31 | objects = os.listdir("$PWD") 32 | 33 | sofar = 0 34 | name = "" 35 | 36 | for item in objects: 37 | size = os.path.getsize(item) 38 | if size > sofar: 39 | sofar = size 40 | name = "out/target/product/q/"+item 41 | 42 | os.environ["name"] = largest 43 | import subprocess 44 | import select 45 | cmd = subprocess.Popen(['bash'], stdin=subprocess.PIPE, stdout=subprocess.PIPE) 46 | os.system("bash $PWD/upload.sh")''' 47 | saveFile2=open("largest.py",'w') 48 | saveFile2.write(str(codefs)) 49 | saveFile2.close() 50 | fin = open("largest.py", "rt") 51 | data = fin.read() 52 | data = data.replace('q', devicename) 53 | fin.close() 54 | 55 | fin = open("largest.py", "wt") 56 | fin.write(data) 57 | fin.close() 58 | try: 59 | chex3=open("upload.sh") 60 | chex3.close() 61 | except: 62 | uploadcode='''export ZIPNAME=$largest 63 | curl -F chat_id="$CHAT_ID" -F document=@"$ZIPNAME" -F caption="Build completed for device q" https://api.telegram.org/bot$BOT_API_KEY/sendDocument 64 | curl -F chat_id="$CHAT_ID" -F document=@"$HOME/cygnus/log.txt" -F caption="Build Log" https://api.telegram.org/bot$BOT_API_KEY/sendDocument 65 | make clean 66 | rm -rf log.txt device/* vendor/* hardware/* commonsys* 67 | repo sync -j$(nproc --all) --force-sync --no-tags --no-clone-bundle --prune --optimized-fetch 68 | ''' 69 | saveFile69=open("upload.sh",'w') 70 | saveFile69.write(str(uploadcode)) 71 | saveFile69.close() 72 | fin = open("upload.sh", "rt") 73 | data = fin.read() 74 | data = data.replace('q', devicename) 75 | fin.close() 76 | 77 | fin = open("upload.sh", "wt") 78 | fin.write(data) 79 | fin.close() 80 | 81 | try: 82 | chexlast=pen("start.sh") 83 | chexlast.close() 84 | except: 85 | buildcode='''#!/bin/bash 86 | . b*/e* 87 | lunch cygnus_q-userdebug 88 | curl -s -X POST https://api.telegram.org/bot$BOT_API_KEY/sendMessage -d text="Build Scheduled for q has started" -d chat_id=$CHAT_ID 89 | mka cygnus | tee log.txt''' 90 | saves=open("start.sh",'w') 91 | saves.write(str(buildcode)) 92 | saves.close() 93 | fixx = open("start.sh").read() 94 | fixx = fixx.replace('q',devicename) 95 | with open("start.sh",'w') as file: 96 | file.write(fixx) 97 | e.system("chmod +x $PWD/start.sh") 98 | e.system("chmod +x $PWD/upload.sh") 99 | p=subprocess.Popen(['$PWD/start.sh'], shell=True, executable="/bin/bash") 100 | p.wait() 101 | e.system("python3 largest.py") 102 | -------------------------------------------------------------------------------- /push_repo.py: -------------------------------------------------------------------------------- 1 | import os 2 | repo_list=["build_soong","vendor_cygnus","vendor_qcom_opensource_data-ipa-cfg-mgr","vendor_qcom_opensource_commonsys_cryptfs_hw","vendor_qcom_opensource_interfaces","vendor_qcom_opensource_dataservices","vendor_qcom_opensource_recovery-ext","vendor_qcom_opensource_vibrator","frameworks_native","frameworks_base","frameworks_opt_telephony","frameworks_opt_net_ims","bootable_recovery","packages_apps_Settings","packages_providers_TelephonyProviders","packages_services_Telephony","device_qcom_sepolicy","system_core","system_vold","system_sepolicy","hardware_qcom_wlan","platform_testing","external_fastrpc","external_tinycompress","hardware_libhardware"] 3 | for i in repo_list: 4 | j=i.replace("_","/",4) 5 | os.system("cd "+j+" && git push https://github.com/cygnus-rom/"+i+" HEAD:caf-11") 6 | -------------------------------------------------------------------------------- /sftp.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2020 Dhruv Gera 2 | import subprocess 3 | import select 4 | import os 5 | import pysftp 6 | import sys 7 | import glob 8 | 9 | # Your particulars for accessing the sftp client 10 | myHostname = "frs.sourceforge.net" 11 | myUsername = "your username" 12 | myPassword = "your password" 13 | 14 | # Device name is here for rom builds, as we need it in the out folder's name 15 | listdevice=["beryllium"] 16 | 17 | n=len(listdevice) 18 | 19 | for i in range(0,n): 20 | devicename=listdevice[i] 21 | # Largest file finder 22 | objects = os.listdir("out/target/product/"+devicename+"/") # Replace with the dir you want to search in 23 | 24 | sofar = 0 25 | name = "" 26 | 27 | for item in objects: 28 | size = os.path.getsize("out/target/product/"+devicename+'/'+item) 29 | if size > sofar: 30 | sofar = size 31 | name = item 32 | 33 | # Sourceforge or any other sftp client uploader script 34 | 35 | with pysftp.Connection(host=myHostname, username=myUsername, password=myPassword) as sftp: 36 | print("Connection successful") 37 | 38 | # Switch to a remote directory 39 | sftp.cwd('/home/frs/project/pococustomroms/lineageos') # Add your dir here 40 | # Obtain structure of the remote directory 41 | directory_structure = sftp.listdir_attr() 42 | 43 | # Print data 44 | for attr in directory_structure: 45 | print (attr.filename, attr) 46 | 47 | localFilePath = ("out/target/product/"+devicename+"/"+name) # The path where your file is stored on your drive 48 | remoteFilePath = (name) # The path where you want to upload 49 | sftp.put(localFilePath, remoteFilePath) 50 | -------------------------------------------------------------------------------- /sshtunnel.ps1: -------------------------------------------------------------------------------- 1 | while($true) { 2 | echo "Starting Proxy" 3 | ssh -N -g -R 8096:192.168.1.21:8096 -R 7878:192.168.1.21:7878 -R 8989:192.168.1.21:8989 -R 9117:192.168.1.21:9117 -R 9091:192.168.1.21:9091 -o ExitOnForwardFailure=yes ubuntu@x.x.x.x 4 | echo "Connection Error" 5 | echo "Sleeping 10s" 6 | ssh ubuntu@x.x.x.x "sudo fuser -k 8096/tcp" 7 | Start-Sleep -Seconds 10 8 | } 9 | --------------------------------------------------------------------------------