text
stringlengths
1
1.05M
import numpy as np import cv2, os, sys, json from PIL import Image from matplotlib import pyplot as plt # 首先以灰色读取一张照片 img_path = r"E:\Projects\Fabric_Defect_Detection\model_proto\ShuffleNetV2_YOLOv3\v1.1\dataset\valid\valid_gray_1_1600.png" """ src = cv2.imread(img_path, 0) # 然后用ctvcolor()函数,进行图像变换。 src_RGB = cv2.cvtColor(src, cv2.COLOR_GRAY2BGR) """ # src = Image.open(img_path) # src_RGB = src.convert("RGB") # plt.imshow(src_RGB) # plt.show() # src_RGB = np.array(src_RGB) # print(sum(sum(src_RGB[:,:,0]-src_RGB[:,:,1]))) # print(sum(sum(src_RGB[:,:,1]-src_RGB[:,:,2]))) # print(sum(sum(src_RGB[:,:,0]-src_RGB[:,:,2]))) json_file = os.path.join(os.path.abspath(os.path.dirname(__file__)), "config.json") #with open (config_file, "r") as f: # self.config_matrix = json.load(f) js_obj = { "Camera": { "DeviceSerialNumber": "NR0190090349", "ExposureTime": 1000, "Gain": 20, "Binning": 4 }, "Lighting": { }, "Model": { "offsets": [0, 0, 0, 0], "image_raw_h": 352, "image_raw_w": 352, "input_h": 352, "input_w": 352, "channel": 3, "yolo_anchors": [(188,15), (351,16), (351,30)], "yolo_masks": [(0, 1, 2)], "output_shapes": [(1, 18, 11, 11)], "obj_threshold": 0.5, "nms_threshold": 0.2 }, "valid_dir": r"E:\Projects\Fabric_Defect_Detection\model_proto\ShuffleNetV2_YOLOv3\v1.1\dataset\valid", "valid_suffix": ".png" } with open(json_file, "w", encoding="utf-8") as ff: res = json.dumps(js_obj, indent=4) ff.write(res) ff.close()
// Import React import React from 'react' import ChangingWords from './changing-words' import WordCloud from './wordcloud' // Import Spectacle Core tags import { BlockQuote, Cite, Deck, Heading, Quote, Slide, Text, Appear, Image, Link, S, List, ListItem, Notes, ComponentPlayground } from 'spectacle' // Import image preloader util import preloader from 'spectacle/lib/utils/preloader' // Import theme import createTheme from 'spectacle/lib/themes/default' // Require CSS require('normalize.css') require('spectacle/lib/themes/default/index.css') require('./custom.css') const images = { city: require('../assets/city.jpg'), kat: require('../assets/kat.png'), logo: require('../assets/formidable-logo.svg'), markdown: require('../assets/markdown.png') } preloader(images) const theme = createTheme({ primary: 'white', secondary: '#1F2022', tertiary: '#03A9FC', quartenary: '#CECECE', jsYellow: '#F7DF1E' }, { primary: 'Montserrat', secondary: 'Helvetica' }) const Word = ({ children }) => <Heading size={2} textAlign='left' style={{display: 'inline'}} textColor='primary' fill>{children}</Heading> export default class Presentation extends React.Component { render () { return ( <Deck theme={theme}> <Slide bgColor='primary' transition={['fade']}> <Heading size={1} lineHeight={1} fit textColor='secondary'> Intro to JavaScript or: </Heading> <Text fit> How I Learned to Stop Worrying and Love JavaScript </Text> <Appear> <Text margin='1em 0 0 0' textColor='tertiary'> a short presentation by <NAME> </Text> </Appear> </Slide> <Slide transition={['zoom']} bgColor='tertiary'> <Heading textAlign='left' size={6} textColor='secondary'>Ok, so what can we build with this thing?</Heading> <div style={{ display: 'flex', justifyContent: 'left' }}> <ChangingWords words={['Web', 'Mobile', 'Desktop', 'Server', 'Toaster']} component={Word} delay={3000} /> <Heading size={2} textColor='primary' fill>Applications</Heading> </div> </Slide> <Slide transition={['fade']} bgColor='primary' textColor='tertiary'> <Heading size={5} textColor='tertiary' fit>2017 <Link href='https://stackoverflow.com' target='_blank'><S bold={false} textFont='Arimo' type='' textColor='#000000'>stack<S type='bold'>overflow</S></S></Link> Developer Survey</Heading> <Heading size={6} textColor='tertiary'>Programming Languages</Heading> <Link href='https://insights.stackoverflow.com/survey/2017#technology-programming-languages' target='_blank'> <Image src={require('../assets/insights.stackoverflow.com_survey_2017.png')} /> </Link> </Slide> <Slide transition={['fade']} bgColor='secondary' textColor='primary'> <BlockQuote> <Quote>Java is to JavaScript what Car is to Carpet.</Quote> <Cite><NAME></Cite> </BlockQuote> </Slide> <Slide transition={['zoom', 'fade']} bgImage={require('../assets/History-Channel-Alien-Guy.jpg')} bgDarken={0.4}> <Heading textColor='primary' fit>Let's Talk Ancient History</Heading> </Slide> <Slide transition={['slide']}> <Notes> <ul> <li><NAME>, Sun Microsystems 1992</li> <li>HotJava 1995</li> <li>decided to use it in the browser</li> <li>LiveScript in NetScape</li> <li>Sun wanted Java directly in the browser</li> <li>LiveScript changes to JavaScript</li> <li>Microsoft reverse-engineers JavaScript into JScript</li> </ul> </Notes> <List> <ListItem>C++++</ListItem> <ListItem>Oak</ListItem> <ListItem>HotJava</ListItem> <ListItem>JScript</ListItem> <ListItem>Mocha</ListItem> <ListItem>LiveScript</ListItem> <ListItem>ActionScript</ListItem> <ListItem>ECMAScript</ListItem> <Appear> <ListItem textColor='jsYellow'>JavaScript</ListItem> </Appear> </List> </Slide> <Slide transition={['slide']} bgColor='secondary'> <Notes> <ul> <li>Everything is an object</li> <li>Functions are first-class objects</li> </ul> </Notes> <Heading size={3} textColor='tertiary' textAlign='left'>Key Features</Heading> <List> <ListItem textColor='primary'>Load and go delivery</ListItem> <ListItem textColor='primary'>Loose types</ListItem> <ListItem textColor='primary'>Objects as general containers</ListItem> <ListItem textColor='primary'>Prototypal inheritance</ListItem> <ListItem textColor='primary'>Lambda</ListItem> <ListItem textColor='primary'>Non-blocking, evented IO (in Node.js)</ListItem> <ListItem textColor='primary'>C-like syntax</ListItem> </List> </Slide> <Slide transition={['zoom']} bgColor='secondary'> <Notes> <ul> <li>Numbers</li> <li>Strings</li> <li>Operators</li> <li>Arrays</li> <li>Objects</li> <li>Ref vs copy</li> <li>Functions</li> </ul> </Notes> <ComponentPlayground code={` const c = 1 + 1 const Sandbox = () => (<span>{JSON.stringify(c)}</span>); render(<Sandbox />, mountNode); `} /> </Slide> <Slide transition={['slide']} className='spectacle-content--full'> <WordCloud /> </Slide> </Deck> ) } }
<reponame>Prospector/Routiduct package prospector.shootingstar; import net.minecraft.item.Item; import net.minecraft.util.ResourceLocation; public class ItemCompound { private String modid; private Item item; private ResourceLocation registryName; public ItemCompound(String modid, Item item) { this.modid = modid; this.item = item; registryName = item.getRegistryName(); } public Item getItem() { return item; } public ItemCompound setItem(Item item) { this.item = item; return this; } public String getModid() { return modid; } public ResourceLocation getRegistryName() { return registryName; } }
from typing import List def uniquePaths(grid: List[List[int]]) -> int: m, n = len(grid), len(grid[0]) dp = [[0] * n for _ in range(m)] for i in range(m): for j in range(n): if grid[i][j] == 1: # obstacle dp[i][j] = 0 elif i == 0 and j == 0: # start position dp[i][j] = 1 elif i == 0: # first row dp[i][j] = dp[i][j-1] elif j == 0: # first column dp[i][j] = dp[i-1][j] else: dp[i][j] = dp[i-1][j] + dp[i][j-1] return dp[m-1][n-1]
w.resize(*w.size_request()) # originally posted as http://code.activestate.com/recipes/523049-shrink-pygtk-window/
<filename>antiqueProjectApp/forms.py from django import forms from antiqueProjectApp.models import AntiqueSale class AntiquePurchaseForm(forms.ModelForm): class Meta: model = AntiqueSale fields = ('antique', 'customerFirstName', 'customerLastName', 'customerAddressLine1', 'customerAddressLine2', 'customerAddressCity', 'customerAddressCounty', 'customerAddressPostcode', 'customerEmail', 'customerTelephone') widgets = {'antique': forms.HiddenInput()} labels = { 'customerFirstName': 'First name*', 'customerLastName': 'Last name*', 'customerAddressLine1': 'Address line 1*', 'customerAddressLine2': 'Address line 2', 'customerAddressCity': 'City*', 'customerAddressCounty': 'County*', 'customerAddressPostcode': 'Postal code*', 'customerEmail': 'Email address*', 'customerTelephone': 'Telephone number*', }
kubectl run qotm --image=datawire/qotm:1.3 --port=5000 --expose
<filename>test/controllers/following_channels_controller_test.rb<gh_stars>0 require "test_helper" class FollowingChannelsControllerTest < ActionDispatch::IntegrationTest setup do @following_channel = following_channels(:one) end test "should get index" do get following_channels_url assert_response :success end test "should get new" do get new_following_channel_url assert_response :success end test "should create following_channel" do assert_difference('FollowingChannel.count') do post following_channels_url, params: { following_channel: { } } end assert_redirected_to following_channel_url(FollowingChannel.last) end test "should show following_channel" do get following_channel_url(@following_channel) assert_response :success end test "should get edit" do get edit_following_channel_url(@following_channel) assert_response :success end test "should update following_channel" do patch following_channel_url(@following_channel), params: { following_channel: { } } assert_redirected_to following_channel_url(@following_channel) end test "should destroy following_channel" do assert_difference('FollowingChannel.count', -1) do delete following_channel_url(@following_channel) end assert_redirected_to following_channels_url end end
def object_attributes(obj): attributes = {} for attr_name in dir(obj): if not attr_name.startswith("__"): # Exclude built-in attributes attr_value = getattr(obj, attr_name) if callable(attr_value): # Check if the attribute is a method attributes[attr_name] = "method" else: attributes[attr_name] = attr_value return attributes
import "../packages/style/lib/scss/reset.scss"; import "../packages/style/lib/scss/ant.scss"; import "../packages/style/lib/scss/colors.scss"; import "../packages/style/lib/scss/typography.scss";
<filename>gui/BalancesPanel.java package gui; import java.awt.Button; import java.awt.Font; import java.awt.event.ActionListener; import java.awt.image.BufferedImage; import java.io.File; import java.math.RoundingMode; import java.net.URL; import java.text.DecimalFormat; import java.util.LinkedList; import javax.imageio.ImageIO; import javax.swing.ImageIcon; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.JScrollPane; import javax.swing.JTable; import javax.swing.ListSelectionModel; import javax.swing.SwingConstants; import javax.swing.border.EmptyBorder; import javax.swing.table.DefaultTableModel; import server.Server; import storage.Store; public class BalancesPanel { public JTable table = null; public JLabel currentBalance = new JLabel("Loading your balances...", SwingConstants.CENTER); public JLabel currentRewards = new JLabel("", SwingConstants.CENTER); private Store store = null; public Button buttonCreateAddress = new Button("Create new address"); public Button buttonCopyToClipboard = new Button("Copy marked address to clipboard"); public Button buttonUpdateBalances = new Button("Update all balances"); public BalancesPanel(Store store) { this.store = store; } public JPanel get(JFrame frame) { JPanel panel = new JPanel(); panel.setLayout(null); try { URL url = Server.class.getResource("/resources/logo_new_small.png"); JLabel imglabel = new JLabel(new ImageIcon(url)); imglabel.setBounds(60, 25, 160, 160); panel.add(imglabel); } catch (Exception e) {e.printStackTrace();} currentBalance.setBounds(240, 20, 1370, 140); currentBalance.setBorder(new EmptyBorder(40, 40, 40, 40)); currentBalance.setFont(new Font("Mono", Font.PLAIN, 48)); panel.add(currentBalance); currentRewards.setBounds(240, 120, 1370, 40); currentRewards.setFont(new Font("Mono", Font.PLAIN, 20)); currentRewards.setOpaque(true); panel.add(currentRewards); String[] transferTableColumns = {"Your address", "Balance of this address"}; table = new JTable(new DefaultTableModel(transferTableColumns, 0)); table.setFont(new Font("Courier New", Font.PLAIN, 24)); table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF); table.getColumnModel().getColumn(0).setPreferredWidth(1200); table.getColumnModel().getColumn(1).setPreferredWidth(342); table.setRowHeight(40); table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION); JScrollPane transferScrollPane = new JScrollPane(table); transferScrollPane.setFont(new Font("Courier New", Font.PLAIN, 18)); transferScrollPane.setBounds(24, 210, 1546, 600); panel.add(transferScrollPane); buttonCreateAddress.setBounds(24, 830, 400, 60); buttonCreateAddress.setFont(new Font("Mono", Font.PLAIN, 16)); buttonCreateAddress.addActionListener((ActionListener) frame); panel.add(buttonCreateAddress); buttonCopyToClipboard.setBounds(600, 830, 400, 60); buttonCopyToClipboard.setFont(new Font("Mono", Font.PLAIN, 16)); buttonCopyToClipboard.addActionListener((ActionListener) frame); panel.add(buttonCopyToClipboard); buttonUpdateBalances.setBounds(1170, 830, 400, 60); buttonUpdateBalances.setFont(new Font("Mono", Font.PLAIN, 16)); buttonUpdateBalances.addActionListener((ActionListener) frame); panel.add(buttonUpdateBalances); return panel; } public void loadBalances() { while(!store.wallet.claim()) {try {Thread.sleep(10);} catch (InterruptedException e) {e.printStackTrace();}} LinkedList<String> addresses = store.wallet.getMyAddresses(); store.wallet.release(); DefaultTableModel model = (DefaultTableModel) table.getModel(); model.getDataVector().removeAllElements(); double sum = 0.0d; for(String addr : addresses) { sum += store.getMyBalance(addr); model.addRow(new String[]{addr, formatValue(store.getMyBalance(addr))}); } currentBalance.setText("Your total balance: " + formatValue(sum)); double[] rewards = store.getMyRewards(); currentRewards.setText("(reward of mining: " + formatValue(rewards[0]) + " / reward of cracking: " + formatValue(rewards[1]) + ")"); } private String formatValue(double balance) { DecimalFormat df = new DecimalFormat("#.####"); df.setRoundingMode(RoundingMode.DOWN); String t = df.format(balance); return t.replace(",", ".").replace("-", ""); } }
// // Copyright 2020 IBM Corporation // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // package staticroute import ( "net" iksv1 "github.com/IBM/staticroute-operator/pkg/apis/iks/v1" ) type routeWrapper struct { instance *iksv1.StaticRoute } //addFinalizer will add this attribute to the CR func (rw *routeWrapper) setFinalizer() bool { if len(rw.instance.GetFinalizers()) != 0 { return false } rw.instance.SetFinalizers([]string{"finalizer.iks.ibm.com"}) return true } func (rw *routeWrapper) isSameZone(zone, label string) bool { instanceZone := rw.instance.GetLabels()[label] return instanceZone == "" || instanceZone == zone } func (rw *routeWrapper) isChanged(hostname, gateway string) bool { for _, s := range rw.instance.Status.NodeStatus { if s.Hostname != hostname { continue } else if s.State.Subnet != rw.instance.Spec.Subnet || s.State.Gateway != gateway { return true } } return false } // Returns nil like the underlaying net.ParseIP() func (rw *routeWrapper) getGateway() net.IP { gateway := rw.instance.Spec.Gateway if len(gateway) == 0 { return nil } return net.ParseIP(gateway) } func (rw *routeWrapper) addToStatus(hostname string, gateway net.IP) bool { // Update the status if necessary for _, val := range rw.instance.Status.NodeStatus { if val.Hostname == hostname { return false } } spec := rw.instance.Spec spec.Gateway = gateway.String() rw.instance.Status.NodeStatus = append(rw.instance.Status.NodeStatus, iksv1.StaticRouteNodeStatus{ Hostname: hostname, State: spec, Error: "", }) return true } func (rw *routeWrapper) removeFromStatus(hostname string) (existed bool) { // Update the status if necessary statusArr := []iksv1.StaticRouteNodeStatus{} for _, val := range rw.instance.Status.NodeStatus { valCopy := val.DeepCopy() if valCopy.Hostname == hostname { existed = true continue } statusArr = append(statusArr, *valCopy) } rw.instance.Status = iksv1.StaticRouteStatus{NodeStatus: statusArr} return }
#!/bin/bash # # Copyright IBM Corp All Rights Reserved # # SPDX-License-Identifier: Apache-2.0 # # This script will orchestrate a sample end-to-end execution of the Hyperledger # Fabric network. # # The end-to-end verification provisions a sample Fabric network consisting of # two organizations, each maintaining two peers, and a “solo” ordering service. # # This verification makes use of two fundamental tools, which are necessary to # create a functioning transactional network with digital signature validation # and access control: # # * cryptogen - generates the x509 certificates used to identify and # authenticate the various components in the network. # * configtxgen - generates the requisite configuration artifacts for orderer # bootstrap and channel creation. # # Each tool consumes a configuration yaml file, within which we specify the topology # of our network (cryptogen) and the location of our certificates for various # configuration operations (configtxgen). Once the tools have been successfully run, # we are able to launch our network. More detail on the tools and the structure of # the network will be provided later in this document. For now, let's get going... # prepending $PWD/../bin to PATH to ensure we are picking up the correct binaries # this may be commented out to resolve installed version of tools if desired export PATH=${PWD}/bin:${PWD}:$PATH export FABRIC_CFG_PATH=${PWD}/channel # Print the usage message function printHelp () { echo "Usage: " echo " byfn.sh -m up|down|restart|generate [-c <channel name>] [-t <timeout>] [-d <delay>] [-f <docker-compose-file>] [-s <dbtype>]" echo " byfn.sh -h|--help (print this message)" echo " -m <mode> - one of 'up', 'down', 'restart' or 'generate'" echo " - 'up' - bring up the network with docker-compose up" echo " - 'down' - clear the network with docker-compose down" echo " - 'restart' - restart the network" echo " - 'generate' - generate required certificates and genesis block" echo " -c <channel name> - channel name to use (defaults to \"mychannel\")" echo " -t <timeout> - CLI timeout duration in seconds (defaults to 10000)" echo " -d <delay> - delay duration in seconds (defaults to 3)" echo " -f <docker-compose-file> - specify which docker-compose file use (defaults to docker-compose-cli.yaml)" echo " -s <dbtype> - the database backend to use: goleveldb (default) or couchdb" echo " -l <language> - the chaincode language: golang (default) or node" echo echo "Typically, one would first generate the required certificates and " echo "genesis block, then bring up the network. e.g.:" echo echo " byfn.sh -m generate -c mychannel" echo " byfn.sh -m up -c mychannel -s couchdb" echo " byfn.sh -m up -l node" echo " byfn.sh -m down -c mychannel" echo echo "Taking all defaults:" echo " byfn.sh -m generate" echo " byfn.sh -m up" echo " byfn.sh -m down" } # Ask user for confirmation to proceed function askProceed () { read -p "Continue (y/n)? " ans case "$ans" in y|Y ) echo "proceeding ..." ;; n|N ) echo "exiting..." exit 1 ;; * ) echo "invalid response" askProceed ;; esac } # Obtain CONTAINER_IDS and remove them # TODO Might want to make this optional - could clear other containers function clearContainers () { CONTAINER_IDS=$(docker ps -aq) if [ -z "$CONTAINER_IDS" -o "$CONTAINER_IDS" == " " ]; then echo "---- No containers available for deletion ----" else docker rm -f $CONTAINER_IDS fi } # Delete any images that were generated as a part of this setup # specifically the following images are often left behind: # TODO list generated image naming patterns function removeUnwantedImages() { DOCKER_IMAGE_IDS=$(docker images | grep "dev\|none\|test-vp\|peer[0-9]-" | awk '{print $3}') if [ -z "$DOCKER_IMAGE_IDS" -o "$DOCKER_IMAGE_IDS" == " " ]; then echo "---- No images available for deletion ----" else docker rmi -f $DOCKER_IMAGE_IDS fi } # Generate the needed certificates, the genesis block and start the network. function networkUp () { # generate artifacts if they don't exist if [ ! -d "./channel/crypto-config" ]; then generateCerts replacePrivateKey generateChannelArtifacts fi if [ "${IF_COUCHDB}" == "couchdb" ]; then CHANNEL_NAME=$CHANNEL_NAME TIMEOUT=$CLI_TIMEOUT DELAY=$CLI_DELAY LANG=$LANGUAGE docker-compose -f $COMPOSE_FILE -f $COMPOSE_FILE_COUCH up -d 2>&1 else CHANNEL_NAME=$CHANNEL_NAME TIMEOUT=$CLI_TIMEOUT DELAY=$CLI_DELAY LANG=$LANGUAGE docker-compose -f $COMPOSE_FILE up -d 2>&1 fi if [ $? -ne 0 ]; then echo "ERROR !!!! Unable to start network" #docker logs -f cli exit 1 fi #docker logs -f cli } # Tear down running network function networkDown () { # docker-compose -f $COMPOSE_FILE down # docker-compose -f $COMPOSE_FILE -f $COMPOSE_FILE_COUCH down # Don't remove containers, images, etc if restarting if [ "$MODE" != "restart" ]; then #Cleanup the chaincode containers clearContainers #Cleanup images removeUnwantedImages # remove orderer block and other channel configuration transactions and certs rm -rf channel/*.block channel/*.tx channel/crypto-config # remove the docker-compose yaml file that was customized to the example rm -f docker-compose.yaml fi } # Using docker-compose-e2e-template.yaml, replace constants with private key file names # generated by the cryptogen tool and output a docker-compose.yaml specific to this # configuration function replacePrivateKey () { # sed on MacOSX does not support -i flag with a null extension. We will use # 't' for our back-up's extension and depete it at the end of the function ARCH=`uname -s | grep Darwin` if [ "$ARCH" == "Darwin" ]; then OPTS="-it" else OPTS="-i" fi # Copy the template to the file that will be modified to add the private key cp docker-compose-e2e-template.yaml docker-compose.yaml # The next steps will replace the template's contents with the # actual values of the private key file names for the two CAs. CURRENT_DIR=$PWD cd ./channel/crypto-config/peerOrganizations/org1.example.com/ca/ PRIV_KEY=$(ls *_sk) cd "$CURRENT_DIR" sed $OPTS "s/CA1_PRIVATE_KEY/${PRIV_KEY}/g" docker-compose.yaml cd ./channel/crypto-config/peerOrganizations/org2.example.com/ca/ PRIV_KEY=$(ls *_sk) cd "$CURRENT_DIR" sed $OPTS "s/CA2_PRIVATE_KEY/${PRIV_KEY}/g" docker-compose.yaml # If MacOSX, remove the temporary backup of the docker-compose file if [ "$ARCH" == "Darwin" ]; then rm docker-compose.yamlt fi } # We will use the cryptogen tool to generate the cryptographic material (x509 certs) # for our various network entities. The certificates are based on a standard PKI # implementation where validation is achieved by reaching a common trust anchor. # # Cryptogen consumes a file - ``crypto-config.yaml`` - that contains the network # topology and allows us to generate a library of certificates for both the # Organizations and the components that belong to those Organizations. Each # Organization is provisioned a unique root certificate (``ca-cert``), that binds # specific components (peers and orderers) to that Org. Transactions and communications # within Fabric are signed by an entity's private key (``keystore``), and then verified # by means of a public key (``signcerts``). You will notice a "count" variable within # this file. We use this to specify the number of peers per Organization; in our # case it's two peers per Org. The rest of this template is extremely # self-explanatory. # # After we run the tool, the certs will be parked in a folder titled ``crypto-config``. # Generates Org certs using cryptogen tool function generateCerts (){ which cryptogen if [ "$?" -ne 0 ]; then echo "cryptogen tool not found. exiting" exit 1 fi echo echo "##########################################################" echo "##### Generate certificates using cryptogen tool #########" echo "##########################################################" if [ -d "crypto-config" ]; then rm -Rf ./channel/crypto-config fi cryptogen generate --config=./channel/crypto-config.yaml --output=./channel/crypto-config if [ "$?" -ne 0 ]; then echo "Failed to generate certificates..." exit 1 fi echo } # The `configtxgen tool is used to create four artifacts: orderer **bootstrap # block**, fabric **channel configuration transaction**, and two **anchor # peer transactions** - one for each Peer Org. # # The orderer block is the genesis block for the ordering service, and the # channel transaction file is broadcast to the orderer at channel creation # time. The anchor peer transactions, as the name might suggest, specify each # Org's anchor peer on this channel. # # Configtxgen consumes a file - ``configtx.yaml`` - that contains the definitions # for the sample network. There are three members - one Orderer Org (``OrdererOrg``) # and two Peer Orgs (``Org1`` & ``Org2``) each managing and maintaining two peer nodes. # This file also specifies a consortium - ``SampleConsortium`` - consisting of our # two Peer Orgs. Pay specific attention to the "Profiles" section at the top of # this file. You will notice that we have two unique headers. One for the orderer genesis # block - ``TwoOrgsOrdererGenesis`` - and one for our channel - ``TwoOrgsChannel``. # These headers are important, as we will pass them in as arguments when we create # our artifacts. This file also contains two additional specifications that are worth # noting. Firstly, we specify the anchor peers for each Peer Org # (``peer0.org1.example.com`` & ``peer0.org2.example.com``). Secondly, we point to # the location of the MSP directory for each member, in turn allowing us to store the # root certificates for each Org in the orderer genesis block. This is a critical # concept. Now any network entity communicating with the ordering service can have # its digital signature verified. # # This function will generate the crypto material and our four configuration # artifacts, and subsequently output these files into the ``channel-artifacts`` # folder. # # If you receive the following warning, it can be safely ignored: # # [bccsp] GetDefault -> WARN 001 Before using BCCSP, please call InitFactories(). Falling back to bootBCCSP. # # You can ignore the logs regarding intermediate certs, we are not using them in # this crypto implementation. # Generate orderer genesis block, channel configuration transaction and # anchor peer update transactions function generateChannelArtifacts() { which configtxgen if [ "$?" -ne 0 ]; then echo "configtxgen tool not found. exiting" exit 1 fi echo "##########################################################" echo "######### Generating Orderer Genesis block ##############" echo "##########################################################" # Note: For some unknown reason (at least for now) the block file can't be # named orderer.genesis.block or the orderer will fail to launch! configtxgen -profile TwoOrgsOrdererGenesis -outputBlock ./channel/genesis.block if [ "$?" -ne 0 ]; then echo "Failed to generate orderer genesis block..." exit 1 fi echo echo "#################################################################" echo "### Generating channel configuration transaction 'channel.tx' ###" echo "#################################################################" configtxgen -profile TwoOrgsChannel -outputCreateChannelTx ./channel/mychannel.tx -channelID $CHANNEL_NAME if [ "$?" -ne 0 ]; then echo "Failed to generate channel configuration transaction..." exit 1 fi echo echo "#################################################################" echo "####### Generating anchor peer update for Org1MSP ##########" echo "#################################################################" configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate ./channel/Org1MSPanchors.tx -channelID $CHANNEL_NAME -asOrg Org1MSP if [ "$?" -ne 0 ]; then echo "Failed to generate anchor peer update for Org1MSP..." exit 1 fi echo echo "#################################################################" echo "####### Generating anchor peer update for Org2MSP ##########" echo "#################################################################" configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate \ ./channel/Org2MSPanchors.tx -channelID $CHANNEL_NAME -asOrg Org2MSP if [ "$?" -ne 0 ]; then echo "Failed to generate anchor peer update for Org2MSP..." exit 1 fi echo } # Obtain the OS and Architecture string that will be used to select the correct # native binaries for your platform OS_ARCH=$(echo "$(uname -s|tr '[:upper:]' '[:lower:]'|sed 's/mingw64_nt.*/windows/')-$(uname -m | sed 's/x86_64/amd64/g')" | awk '{print tolower($0)}') # timeout duration - the duration the CLI should wait for a response from # another container before giving up CLI_TIMEOUT=10 #default for delay CLI_DELAY=3 # channel name defaults to "mychannel" CHANNEL_NAME="mychannel" # use this as the default docker-compose yaml definition COMPOSE_FILE=docker-compose.yaml # COMPOSE_FILE_COUCH=docker-compose-couch.yaml # use golang as the default language for chaincode LANGUAGE=golang # Parse commandline args while getopts "h?m:c:t:d:f:s:l:" opt; do case "$opt" in h|\?) printHelp exit 0 ;; m) MODE=$OPTARG ;; c) CHANNEL_NAME=$OPTARG ;; t) CLI_TIMEOUT=$OPTARG ;; d) CLI_DELAY=$OPTARG ;; f) COMPOSE_FILE=$OPTARG ;; s) IF_COUCHDB=$OPTARG ;; l) LANGUAGE=$OPTARG ;; esac done # Determine whether starting, stopping, restarting or generating for announce if [ "$MODE" == "up" ]; then EXPMODE="Starting" elif [ "$MODE" == "down" ]; then EXPMODE="Stopping" elif [ "$MODE" == "restart" ]; then EXPMODE="Restarting" elif [ "$MODE" == "generate" ]; then EXPMODE="Generating certs and genesis block for" else printHelp exit 1 fi # Announce what was requested if [ "${IF_COUCHDB}" == "couchdb" ]; then echo echo "${EXPMODE} with channel '${CHANNEL_NAME}' and CLI timeout of '${CLI_TIMEOUT}' seconds and CLI delay of '${CLI_DELAY}' seconds and using database '${IF_COUCHDB}'" else echo "${EXPMODE} with channel '${CHANNEL_NAME}' and CLI timeout of '${CLI_TIMEOUT}' seconds and CLI delay of '${CLI_DELAY}' seconds" fi # ask for confirmation to proceed askProceed #Create the network using docker compose if [ "${MODE}" == "up" ]; then ## networkUp ## echo "pls don't use this command" ## docker-compose -f docker-compose.yaml up -d if [ "${IF_COUCHDB}" == "couchdb" ]; then docker-compose -f $COMPOSE_FILE -f $COMPOSE_FILE_COUCH up -d 2>&1 else docker-compose -f $COMPOSE_FILE up -d 2>&1 fi elif [ "${MODE}" == "down" ]; then ## Clear the network networkDown elif [ "${MODE}" == "generate" ]; then ## Generate Artifacts generateCerts replacePrivateKey generateChannelArtifacts elif [ "${MODE}" == "restart" ]; then ## Restart the network ##networkDown ##networkUp echo "pls don't use this command" else printHelp exit 1 fi
set -euxo pipefail main() { local src=$(pwd) local td=$(mktemp -d) local version=0.1.8 local url=https://github.com/japaric/cortex-m-quickstart/archive/v$version.tar.gz pushd $td curl -L $url | tar --strip-components 1 -xz rm -rf build.rs examples memory.x src ln -s $src/examples . cat >>Cargo.toml <<EOF [dependencies.blue-pill] path = "$src" [dependencies.embedded-hal] git = "https://github.com/japaric/embedded-hal" rev = "5295697669f5b48a900aa325b8ebb4d4e8d4b236" [dependencies.cortex-m-rtfm] version = "0.1.1" [dependencies.futures] default-features = false version = "0.1.14" [dependencies.nb] git = "https://github.com/japaric/nb" EOF for path in $(ls examples/*); do local ex=$(basename $path) ex=${ex%.*} case $ex in *-await) continue ;; esac xargo check --example $ex --target $TARGET done popd rm -rf $td } main
python tf2pd.py ../uc-dpc/log_new/ucf11-128_r18_dpc-rnn_bs64_lr0.001_seq8_pred3_len5_ds3_train-all_loss-function-CE_distance-dot_distance-type_certain_positive_vs_negative_same_radius-type-linear_radius-which-pred/img/train/ --write-csv --no-write-pkl --out-dir converted --out-file certain_dot_train python tf2pd.py ../uc-dpc/log_new/ucf11-128_r18_dpc-rnn_bs64_lr0.001_seq8_pred3_len5_ds3_train-all_loss-function-CE_distance-dot_distance-type_certain_positive_vs_negative_same_radius-type-linear_radius-which-pred/img/val/ --write-csv --no-write-pkl --out-dir converted --out-file certain_dot_val python tf2pd.py ../uc-dpc/log_new/ucf11-128_r18_dpc-rnn_bs64_lr0.001_seq8_pred3_len5_ds3_train-all_loss-function-CE_distance-L2_distance-type_certain_positive_vs_negative_same_radius-type-linear_radius-which-pred/img/train/ --write-csv --no-write-pkl --out-dir converted --out-file certain_L2_train python tf2pd.py ../uc-dpc/log_new/ucf11-128_r18_dpc-rnn_bs64_lr0.001_seq8_pred3_len5_ds3_train-all_loss-function-CE_distance-L2_distance-type_certain_positive_vs_negative_same_radius-type-linear_radius-which-pred/img/val/ --write-csv --no-write-pkl --out-dir converted --out-file certain_L2_val python tf2pd.py ../uc-dpc/log_new/ucf11-128_r18_dpc-rnn_bs64_lr0.001_seq8_pred3_len5_ds3_train-all_loss-function-CE_distance-cosine_distance-type_certain_positive_vs_negative_same_radius-type-linear_radius-which-pred/img/train/ --write-csv --no-write-pkl --out-dir converted --out-file certain_cosine_train python tf2pd.py ../uc-dpc/log_new/ucf11-128_r18_dpc-rnn_bs64_lr0.001_seq8_pred3_len5_ds3_train-all_loss-function-CE_distance-cosine_distance-type_certain_positive_vs_negative_same_radius-type-linear_radius-which-pred/img/val/ --write-csv --no-write-pkl --out-dir converted --out-file certain_cosine_val python tf2pd.py ../uc-dpc/log_new/ucf11-128_r18_dpc-rnn_bs64_lr0.001_seq8_pred3_len5_ds3_train-all_loss-function-CE_distance-dot_distance-type_uncertain_positive_vs_negative_same_radius-type-linear_radius-which-pred/img/train/ --write-csv --no-write-pkl --out-dir converted --out-file uncertain_dot_train python tf2pd.py ../uc-dpc/log_new/ucf11-128_r18_dpc-rnn_bs64_lr0.001_seq8_pred3_len5_ds3_train-all_loss-function-CE_distance-dot_distance-type_uncertain_positive_vs_negative_same_radius-type-linear_radius-which-pred/img/val/ --write-csv --no-write-pkl --out-dir converted --out-file uncertain_dot_val python tf2pd.py ../uc-dpc/log_new/ucf11-128_r18_dpc-rnn_bs64_lr0.001_seq8_pred3_len5_ds3_train-all_loss-function-CE_distance-L2_distance-type_uncertain_positive_vs_negative_same_radius-type-linear_radius-which-pred/img/train/ --write-csv --no-write-pkl --out-dir converted --out-file uncertain_L2_train python tf2pd.py ../uc-dpc/log_new/ucf11-128_r18_dpc-rnn_bs64_lr0.001_seq8_pred3_len5_ds3_train-all_loss-function-CE_distance-L2_distance-type_uncertain_positive_vs_negative_same_radius-type-linear_radius-which-pred/img/val/ --write-csv --no-write-pkl --out-dir converted --out-file uncertain_L2_val python tf2pd.py ../uc-dpc/log_new/ucf11-128_r18_dpc-rnn_bs64_lr0.001_seq8_pred3_len5_ds3_train-all_loss-function-CE_distance-L2_distance-type_uncertain_positive_vs_negative_different_radius-type-linear_radius-which-pred/img/train/ --write-csv --no-write-pkl --out-dir converted --out-file uncertain_L2_different_train python tf2pd.py ../uc-dpc/log_new/ucf11-128_r18_dpc-rnn_bs64_lr0.001_seq8_pred3_len5_ds3_train-all_loss-function-CE_distance-L2_distance-type_uncertain_positive_vs_negative_different_radius-type-linear_radius-which-pred/img/val/ --write-csv --no-write-pkl --out-dir converted --out-file uncertain_L2_different_val python tf2pd.py ../uc-dpc/log_new/ucf11-128_r18_dpc-rnn_bs64_lr0.001_seq8_pred3_len5_ds3_train-all_loss-function-MSE_distance-L2_distance-type_uncertain_positive_vs_negative_different_radius-type-linear_radius-which-pred/img/train/ --write-csv --no-write-pkl --out-dir converted --out-file uncertain_L2_different_MSE_train python tf2pd.py ../uc-dpc/log_new/ucf11-128_r18_dpc-rnn_bs64_lr0.001_seq8_pred3_len5_ds3_train-all_loss-function-MSE_distance-L2_distance-type_uncertain_positive_vs_negative_different_radius-type-linear_radius-which-pred/img/val/ --write-csv --no-write-pkl --out-dir converted --out-file uncertain_L2_different_MSE_val
import Vue from "vue"; Vue.component('role', require('./components/role.vue').default); Vue.component('user', require('./components/user.vue').default);
# frozen_string_literal: true $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) require 'tapfiliate' require 'minitest/autorun' require 'dotenv' require 'webmock' require 'webmock/minitest' Dotenv.load('.env') Dotenv.load('.env.test') Tapfiliate.configure do |config| config.base_url = ENV['TAPFILIATE_API_BASE_URL'] config.api_key = ENV['TAPFILIATE_API_KEY'] end WebMock.allow_net_connect!
function onSignIn(googleUser) { if (! googleUser){ console.log("No google user in context.") return; } var id_token = googleUser.getAuthResponse().id_token; console.log('ID Token: ' + id_token); var profile = googleUser.getBasicProfile(); if (profile) { console.log('Client ID: ' + profile.getId()); console.log('Client Name: ' + profile.getName()); console.log('Client Image URL: ' + profile.getImageUrl()); console.log('Client Email: ' + profile.getEmail()); } var xhr = new XMLHttpRequest(); xhr.open('POST', '/gtokensignin'); xhr.setRequestHeader('Content-Type', 'text/plain'); xhr.onload = function() { var status = xhr.status; if(status == 200){ console.log('Google sign in success '); window.location = "/cfp/home" }else { console.log("Google sign in failed"); } }; xhr.send(id_token); } function signOut() { var auth2 = gapi.auth2.getAuthInstance(); auth2.signOut().then(function () { console.log('User signed out...'); }); } $( document ).ready(function() { console.log( "Loading Google Sign-In" ); var googleUser = {}; var client_id_content = $("meta[name=google-signin-client_id]").attr("content"); var startApp = function() { gapi.load('auth2', function(){ console.log("Loading google auth as client id "+ client_id_content); var auth2 = gapi.auth2.init({ client_id: client_id_content, cookiepolicy: 'single_host_origin', prompt: 'select_account' }); function attachSignin(element) { if(element){ console.log("Attaching Sign-In to element "+element.id); auth2.attachClickHandler(element, {}, onSignIn, function(error) { console.log(JSON.stringify(error, undefined, 2)); }); } } var sign_in_el = document.getElementById("btn-google-signin"); attachSignin(sign_in_el); var sign_up_el = document.getElementById("btn-google-signup"); attachSignin(sign_up_el); }); }; startApp(); });
package test.backend.www; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.boot.builder.SpringApplicationBuilder; import org.springframework.boot.context.properties.EnableConfigurationProperties; import org.springframework.boot.context.web.SpringBootServletInitializer; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; @Configuration @EnableConfigurationProperties @EnableAutoConfiguration @ComponentScan(basePackages = { "test.backend.www" }) public class Application extends SpringBootServletInitializer { private static Class<Application> appClass = Application.class; public static void main(final String[] args) { SpringApplication.run(appClass, args); } @Override protected SpringApplicationBuilder configure(final SpringApplicationBuilder application) { return application.sources(appClass); } }
<filename>frontend/src/components/search-input/index.js import React, { Component, PropTypes } from 'react' import { connect } from 'react-redux' import { changeSearchInputFilterType, changeSearchInputFilterValue } from 'actions/search-input-filter' import Paper from 'material-ui/Paper' import SelectField from 'material-ui/SelectField' import MenuItem from 'material-ui/MenuItem' import TextField from 'material-ui/TextField' import SearchSVG from 'material-ui/svg-icons/action/search' import RaisedButton from 'material-ui/RaisedButton' import CircularProgress from 'material-ui/CircularProgress' import { DEFAULT_FILTER_TYPE } from 'reducers/events-filters' export const ENTER_KEY = 13 const FILTER_TYPES = [ 'entity_id', 'event_type', 'group_id', 'topic' ] export class SearchInput extends Component { static get propTypes () { return { onChangeFilterType: PropTypes.func, onChangeFilterValue: PropTypes.func, isFetchingEvents: PropTypes.bool, triggerSearch: PropTypes.func.isRequired, filterType: PropTypes.string, filterValue: PropTypes.string } } render () { return ( <Paper className='search-input'> <SelectField style={{width: '140px'}} value={this.props.filterType || DEFAULT_FILTER_TYPE} onChange={(e, index, value) => this.changeFilterType(value)}> { FILTER_TYPES.map((type) => ( <MenuItem key={type} value={type} primaryText={type} /> )) } </SelectField> <TextField name='filterValue' style={{width: '100%'}} onChange={(e) => this.changeFilterValue(e.target.value)} onKeyDown={(e) => this.search(e)} value={this.props.filterValue || ''} hintText='Press ENTER to search' /> <RaisedButton primary onClick={() => this.search()} style={{height: '50px', marginLeft: '20px'}} icon={this.getButtonIcon()} /> </Paper> ) } changeFilterType (value) { this.props.onChangeFilterType(value) } changeFilterValue (value) { this.props.onChangeFilterValue(value) } search (e) { if (e && e.keyCode === ENTER_KEY || !e) { this.props.triggerSearch() } } getButtonIcon () { return this.props.isFetchingEvents ? <CircularProgress size={0.4}/> : <SearchSVG color={'#fff'} style={{width: 30, height: 50}}/> } } const mapStateToProps = (state, ownProps) => ( Object.assign({ isFetchingEvents: state.xhrStatus.isFetchingEvents }, ownProps) ) export default connect(mapStateToProps, { onChangeFilterType: changeSearchInputFilterType, onChangeFilterValue: changeSearchInputFilterValue })(SearchInput)
<gh_stars>1-10 package com.lightbend.hedgehog.generators.core import com.lightbend.hedgehog.generators.core.SeedGenerators._ import com.lightbend.hedgehog.scalamock.{GeneratorSpec, TestRunnerMock} import com.lightbend.hedgehog.testkit.Probabilities import hedgehog._ import hedgehog.core.Seed import hedgehog.runner.Test object SeedGeneratorsSpec extends TestRunnerMock with GeneratorSpec with Probabilities { override def tests: List[Test] = test("genSeed", genSeed) .addGenProbabilitiesWithConfig(_ + " generates a fair seed", propProbabilities, _.withTests(100000)) .tests private def propProbabilities(genSeed: Gen[Seed]): Property = { val gen = for { from <- Gen.long(Range.constant(Long.MinValue, Long.MaxValue - BirthdayDays + 1)) seed <- genSeed } yield { // Use the birthday paradox to get just over 50% probability of a match if the seed is random. val (_, _, hasMatch) = (1 to BirthdayPeople.toInt).foldLeft((seed, Set.empty[Long], false)) { case (acc @ (_, _, true), _) => acc case ((seed, values, false), _) => val (nextSeed, value) = seed.chooseLong(from, from + BirthdayDays - 1) val hasMatch = values.contains(value) (nextSeed, values + value, hasMatch) } hasMatch } gen.forAll .cover(BirthdayMatch, "match", identity) .cover(BirthdayNoMatch, "no match", hasMatch => !hasMatch) .map(_ => Result.success) } }
// Clientes.java import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; @Entity public class Clientes { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; private String name; private String email; private String phone; // Constructors, getters, setters, and other methods as per requirement } // ClientesService.java import java.util.List; public interface ClientesService { List<Clientes> findAll(); void save(Clientes cliente); } // ClientesServiceImpl.java import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @Service public class ClientesServiceImpl implements ClientesService { @Autowired private ClientesRepository clientesRepository; @Override public List<Clientes> findAll() { return clientesRepository.findAll(); } @Override public void save(Clientes cliente) { clientesRepository.save(cliente); } } // ClientesRepository.java import org.springframework.data.jpa.repository.JpaRepository; public interface ClientesRepository extends JpaRepository<Clientes, Long> { // Additional custom query methods if required }
var request = require('request') var ELK_Logs = require('../logs/ELK_Logs.js') var Remote_Write = function (){ var arr_indx = 0 var to_send = [] this.send_bulk_events = function(input_obj, reports){ console.log("INFO: REMOTE_WRITE entries: " + reports.length) to_send = reports this.send_event(input_obj, 0, this.send_event) } this.send_event = function(input_obj, index, callback_function){ if(!to_send || !to_send[index]){ return } var data_form = { ip: to_send[index].ip, confidence: to_send[index].confidence, lid: to_send[index].lid, notes: to_send[index].notes, source: to_send[index].source } request({ headers: { 'Content-Length': JSON.stringify(data_form).length, 'Content-Type': 'application/json; charset=utf-8', 'Authorization': input_obj.config.api_jwt_key }, uri: input_obj.config.api_url + "?gaid=" + input_obj.config.gaid, body: JSON.stringify(data_form), method: 'POST' }, function (err, res, body) { if(!err && ( res.statusCode == 200 || res.statusCode == 201)) { console.log("Send " + data_form.ip) try{ callback_function(input_obj, index+1, callback_function) new ELK_Logs().send_logs(input_obj,0,0,{"idata_formp":data_form}, "REMOTE_WRITE") }catch(e){ callback_function(input_obj, index+1, callback_function) new ELK_Logs().send_logs(input_obj,0,0,{"m":"ERROR: Remote Write " + e}, "ERROR") } }else{ try{ new ELK_Logs().send_logs(input_obj,0,0,{"m":"ERROR: REMOTE_WRITE StatusCode 1 " + res.statusCode}, "ERROR") }catch(err1){ new ELK_Logs().send_logs(input_obj,0,0,{"m":"ERROR: REMOTE_WRITE StatusCode 2 " + err1}, "ERROR") } callback_function(input_obj, index+1, callback_function) //console.error("ERROR: REMOTE_WRITE StatusCode 3: " + err) } }) } } module.exports = Remote_Write
curl http://localhost:8080/test1/500 curl http://localhost:8080/test1/500 curl http://localhost:8080/test1/500 curl http://localhost:8080/test1/500 curl http://localhost:8080/test1/500 sleep 12 curl http://localhost:8080/test1/200 curl http://localhost:8080/test1/200 curl http://localhost:8080/test1/500 curl http://localhost:8080/test1/500 curl http://localhost:8080/test1/500 curl http://localhost:8080/test1/500 curl http://localhost:8080/test1/500
#!/bin/bash # Copyright 2018 syzkaller project authors. All rights reserved. # Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. # Produces GCE image of syz-ci running on OpenBSD. # Mostly derived from Go buildlet generator with blessing from bradfitz@. set -eu -o pipefail readonly MIRROR="${MIRROR:-cdn.openbsd.org}" readonly VERSION="${VERSION:-6.7}" readonly DOWNLOAD_VERSION="${DOWNLOAD_VERSION:-snapshots}" readonly RELNO="${2:-${VERSION/./}}" # The only supported setting. readonly ARCH="amd64" readonly ISO="install${RELNO}-${ARCH}.iso" readonly ISO_PATCHED="install${RELNO}-${ARCH}-patched.iso" if [[ ! -f "${ISO}" ]]; then curl -o "${ISO}" "https://${MIRROR}/pub/OpenBSD/${DOWNLOAD_VERSION}/${ARCH}/install${RELNO}.iso" fi # Create custom siteXX.tgz set. rm -fr etc && mkdir -p etc cat >install.site <<EOF #!/bin/sh PKGS="bash gcc%8 git gmake go llvm nano wget" PKG_PATH=https://${MIRROR}/pub/OpenBSD/${DOWNLOAD_VERSION}/packages/${ARCH}/ pkg_add -I \$PKGS PKG_PATH= pkg_info -I \$PKGS && echo pkg_add OK echo 'set tty com0' > boot.conf echo 'PasswordAuthentication no' >> /etc/ssh/sshd_config echo 'pass in on egress proto tcp from any to any port 80 rdr-to 127.0.0.1 port 8080' >> /etc/pf.conf echo 'permit keepenv nopass syzkaller as root' > /etc/doas.conf mkdir /syzkaller echo '/dev/sd1a /syzkaller ffs rw,noauto 1 0' >> /etc/fstab EOF cat >etc/installurl <<EOF https://${MIRROR}/pub/OpenBSD EOF cat >etc/rc.local <<EOF ( nc metadata.google.internal 80 <<EOF2 | tail -n1 > /etc/myname.gce \ && echo >> /etc/myname.gce \ && mv /etc/myname{.gce,} \ && hostname \$(cat /etc/myname) GET /computeMetadata/v1/instance/hostname HTTP/1.0 Host: metadata.google.internal Metadata-Flavor: Google EOF2 set -eux echo "starting syz-ci" fsck -y /dev/sd1a mount /syzkaller su -l syzkaller <<EOF2 cd /syzkaller set -eux ulimit -d 8000000 test -x syz-ci || ( go get github.com/google/syzkaller/syz-ci && go build github.com/google/syzkaller/syz-ci) ./syz-ci -config ./config-openbsd.ci 2>&1 | tee syz-ci.log & EOF2 ) EOF chmod +x install.site cat >etc/rc.conf.local <<EOF slaacd_flags=NO smtpd_flags=NO sndiod_flags=NO EOF cat >etc/sysctl.conf <<EOF hw.smt=1 EOF tar --owner=root --group=root -zcvf site${RELNO}.tgz install.site etc/* # Autoinstall script. cat >auto_install.conf <<EOF System hostname = ci-openbsd DNS domain name = syzkaller Which network interface = vio0 IPv4 address for vio0 = dhcp IPv6 address for vio0 = none Password for root account = root Public ssh key for root account = ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJeLpmSq+Dgrk01Ht+QtY0GDsY2gcwhT12SqizmacAF67TCa0n8OcpjVOpiiurb01Aa5lcl2WbakUFYmsp1U1l8= Do you expect to run the X Window System = no Change the default console to com0 = yes Which speed should com0 use = 115200 Setup a user = syzkaller Full name for user syzkaller = Syz Kaller Password for user syzkaller = syzkaller Public ssh key for user syzkaller = ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJeLpmSq+Dgrk01Ht+QtY0GDsY2gcwhT12SqizmacAF67TCa0n8OcpjVOpiiurb01Aa5lcl2WbakUFYmsp1U1l8= Allow root ssh login = prohibit-password What timezone = US/Pacific Which disk = sd0 Use (W)hole disk or (E)dit the MBR = whole Use (A)uto layout, (E)dit auto layout, or create (C)ustom layout = auto URL to autopartitioning template for disklabel = file:/disklabel.template Set name(s) = +* -x* -game* done Directory does not contain SHA256.sig. Continue without verification = yes Location of sets = cd0 EOF # Disklabel template. cat >disklabel.template <<EOF / 5G-* 95% swap 1G EOF # Hack install CD a bit. echo 'set tty com0' > boot.conf dd if=/dev/urandom of=random.seed bs=4096 count=1 cp "${ISO}" "${ISO_PATCHED}" growisofs -M "${ISO_PATCHED}" -l -R -graft-points \ /${VERSION}/${ARCH}/site${RELNO}.tgz=site${RELNO}.tgz \ /auto_install.conf=auto_install.conf \ /disklabel.template=disklabel.template \ /etc/boot.conf=boot.conf \ /etc/random.seed=random.seed # Initialize disk image. rm -f disk.raw qemu-img create -f raw disk.raw 10G # Run the installer to create the disk image. expect 2>&1 <<EOF | tee install_log set timeout 1800 spawn qemu-system-x86_64 -nographic -smp 2 \ -drive if=virtio,file=disk.raw,format=raw -cdrom "${ISO_PATCHED}" \ -net nic,model=virtio -net user -boot once=d -m 4000 -enable-kvm expect timeout { exit 1 } "boot>" send "\n" # Need to wait for the kernel to boot. expect timeout { exit 1 } "\(I\)nstall, \(U\)pgrade, \(A\)utoinstall or \(S\)hell\?" send "s\n" expect timeout { exit 1 } "# " send "mount /dev/cd0c /mnt\n" send "cp /mnt/auto_install.conf /mnt/disklabel.template /\n" send "chmod a+r /disklabel.template\n" send "umount /mnt\n" send "exit\n" expect timeout { exit 1 } "CONGRATULATIONS!" proc login {} { send "root\n" expect "Password:" send "root\n" expect "# " send "cat /etc/ssh/ssh_host_*_key.pub\nhalt -p\n" expect eof } # There is some form of race condition with OpenBSD 6.2 MP # and qemu, which can result in init(1) failing to run /bin/sh # the first time around... expect { timeout { exit 1 } "Enter pathname of shell or RETURN for sh:" { send "\nexit\n" expect "login:" { login } } "login:" { login } } EOF grep 'pkg_add OK' install_log > /dev/null \ || { echo Package installation failed. Inspect install_log. 2>&1 ; exit 1; } # Create Compute Engine disk image. echo "Archiving disk.raw... (this may take a while)" i="openbsd-${ARCH}-${RELNO}-gce.tar.gz" tar -Szcf "$i" disk.raw cat <<EOF Done. To create GCE image run the following commands: gsutil cp -a public-read "$i" gs://syzkaller/ gcloud compute images create ci-openbsd-root --source-uri gs://syzkaller/"$i" EOF
<filename>provider/filesystem/filesystem.go<gh_stars>0 // Copyright 2012 Lightpoke. All rights reserved. // This source code is subject to the terms and // conditions defined in the "License.txt" file. // Package filesystem implements file-based session storage. package filesystem import ( "github.com/sinni800/organics" "fmt" "io/ioutil" "log" "net/url" "os" "path/filepath" "strings" "sync" ) func stringSections(s string, n int) []string { sections := make([]string, 0) for len(s) > n { sections = append(sections, s[:n]) s = s[n:] } sections = append(sections, s) return sections } func sessionKeyToPath(key string) string { keyPath := url.QueryEscape(key) sections := stringSections(keyPath, 10) return filepath.Join(sections...) } type provider struct { access sync.RWMutex stores map[string]*organics.Store fileWritingLocks map[string]*sync.Mutex directory string } func (p *provider) setStore(key string, store *organics.Store) { p.access.Lock() defer p.access.Unlock() p.stores[key] = store } func (p *provider) store(key string) (store *organics.Store, ok bool) { p.access.RLock() defer p.access.RUnlock() store, ok = p.stores[key] return } func (p *provider) getWriteLock(key string) *sync.Mutex { p.access.Lock() defer p.access.Unlock() lock, ok := p.fileWritingLocks[key] if !ok { lock = new(sync.Mutex) p.fileWritingLocks[key] = lock } return lock } func (p *provider) Save(key string, whatChanged string, s *organics.Store) error { p.setStore(key, s) lock := p.getWriteLock(key) lock.Lock() defer lock.Unlock() keyPath := filepath.Join(p.directory, sessionKeyToPath(key)) if _, err := os.Stat(keyPath); err != nil { if os.IsNotExist(err) { keyPathDir := strings.Split(keyPath, string(os.PathSeparator)) keyPathDir = keyPathDir[:len(keyPathDir)-1] dirPath := filepath.Join(keyPathDir...) err = os.MkdirAll(dirPath, os.ModeDir) if err != nil { return fmt.Errorf("Error saving session %v", err) } } else { return fmt.Errorf("Error saving session %v", err) } } data, err := s.GobEncode() if err != nil { return fmt.Errorf("Error saving session %v", err) } err = ioutil.WriteFile(keyPath, data, 0666) if err != nil { return fmt.Errorf("Error saving session %v", err) } return nil } func (p *provider) Load(key string) *organics.Store { store, ok := p.store(key) if ok { // We have it in memory already return store } // We don't have it in memory, so load it from file. keyPath := filepath.Join(p.directory, sessionKeyToPath(key)) file, err := os.Open(keyPath) if err != nil { if os.IsNotExist(err) { return nil } else { log.Println("Error reading session file", err) return nil } } store = organics.NewStore() data, err := ioutil.ReadAll(file) if err != nil { log.Println("Error reading session file", err) return nil } err = store.GobDecode(data) if err != nil { log.Println("Error decoding session file", err) return nil } p.stores[key] = store return store } func Provider(directory string) (organics.SessionProvider, error) { p := new(provider) p.stores = make(map[string]*organics.Store) p.fileWritingLocks = make(map[string]*sync.Mutex) p.directory = directory if _, err := os.Stat(directory); err != nil { if os.IsNotExist(err) { err = os.MkdirAll(directory, os.ModeDir) if err != nil { return nil, err } } else { return nil, err } } return p, nil }
#!/bin/bash grep -E -v '^(halt|sync|shutdown)' /etc/passwd | awk -F: '($7 != "'"$(which nologin)"'" && $7 != "/bin/false") { print $1 " " $6 }' | while read user dir; do if [ ! -d "$dir" ]; then echo "The home directory ($dir) of user $user does not exist." else dirperm=$(ls -ld $dir | cut -f1 -d" ") if [ $(echo $dirperm | cut -c6) != "-" ]; then echo "Group Write permission set on the home directory ($dir) of user $user" fi if [ $(echo $dirperm | cut -c8) != "-" ]; then echo "Other Read permission set on the home directory ($dir) of user $user" fi if [ $(echo $dirperm | cut -c9) != "-" ]; then echo "Other Write permission set on the home directory ($dir) of user $user" fi if [ $(echo $dirperm | cut -c10) != "-" ]; then echo "Other Execute permission set on the home directory ($dir) of user $user" fi fi done
<reponame>BiswaYT/Omni-Bot const { Event } = require('klasa'); module.exports = class extends Event { async run(member) { // Farewell Message const { guild } = member; if (!guild.settings.greet.leave.enabled) return; const channel = guild.channels.get(guild.settings.greet.leave.channel); if (!channel) return; if (!channel.postable) return; channel.send(this.replace(guild.settings.greet.leave.message, member)); } replace(msg, member) { return msg .replace(/{mention}/, member) .replace(/{user}/, member.user.username) .replace(/{guild}/, member.guild.name) .replace(/{tag}/g, member.user.tag) .replace(/{mCount}/g, member.guild.memberCount); } };
<filename>Algorithm/src/main/java/com/leetcode/Solution_516.java package com.leetcode; public class Solution_516 { public int longestPalindromeSubseq(String s) { int[][] dp = new int[s.length()][s.length()]; for (int i = 0; i < s.length(); i++) { int x = 0, y = i; while (x < s.length() && y < s.length()) { if (x == y) { dp[x][y] = 1; } else { dp[x][y] = s.charAt(x) == s.charAt(y) ? dp[x + 1][y - 1] + 2 : Math.max(dp[x + 1][y], dp[x][y - 1]); } x++; y++; } } return dp[0][s.length() - 1]; } }
#!/usr/bin/env bash #echo on set -x # "--network host" - Better performance than the default "bridge" driver docker run \ -d \ -it \ --init \ --name benchmarks-downstream \ --network host \ --restart always \ benchmarks-downstream \ --urls http://*:5001
package br.com.nova.roma.tap.projeto.interfaces.impl; import java.util.LinkedList; import java.util.Queue; import br.com.nova.roma.tap.projeto.entity.Caixa; import br.com.nova.roma.tap.projeto.interfaces.FuncoesLotericaControlador; public class FuncoesLotericaImpl implements FuncoesLotericaControlador { // MS - MEGASENA // LF - LOTOFACIL // QN - QUINA // LM - LOTOMANIA // DS - DUPLASENA // TM - TIMEMANIA public String[] siglaDeAceitacaoApostaCaixa1 = { "ms", "lf", "qn", "lm", "ds", "tm" }; private boolean aberto = true; private Queue<Caixa> filaDeCaixa = new LinkedList<Caixa>(); private Caixa c1 = new Caixa(1, siglaDeAceitacaoApostaCaixa1, false, "Luan"); public int quantidadeCaixa() { synchronized (this.filaDeCaixa) { return this.filaDeCaixa.size(); } } public Caixa obterCaixa() { this.filaDeCaixa.add(c1); Caixa c = null; try { synchronized (filaDeCaixa) { while(this.filaDeCaixa.isEmpty()) { if(!aberto) { System.out.println("Nenhum Caixa Disponivel!"); return null; } System.out.println(Thread.currentThread().getName()+" Esta Em Estado Wait!"); this.filaDeCaixa.wait(3000); } c = this.filaDeCaixa.poll(); } }catch(InterruptedException e) { e.getMessage(); } return c; } public void liberarCaixa(Caixa c) { synchronized (filaDeCaixa) { filaDeCaixa.add(c); System.out.println("Caixa :"+c.getNomeDoCaixa()+" Esta Liberada!"); filaDeCaixa.notify(); } } public void fecharLoterica() { aberto = false; synchronized (filaDeCaixa) { System.out.println("Fechando Os Caixas E Fechando Loterica"); filaDeCaixa.clear(); } System.exit(0); } public boolean isAberto() { return aberto; } public void setAberto(boolean aberto) { this.aberto = aberto; } }
#!/bin/bash # # Copyright 2017 Istio Authors # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. SCRIPTDIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) # only ask if in interactive mode if [[ -t 0 ]];then echo -n "namespace ? [default] " read -r NAMESPACE fi if [[ -z ${NAMESPACE} ]];then NAMESPACE=default fi echo "using NAMESPACE=${NAMESPACE}" protos=( destinationrules virtualservices gateways ) for proto in "${protos[@]}"; do for resource in $(kubectl get -n ${NAMESPACE} "$proto" -o name); do kubectl delete -n ${NAMESPACE} "$resource"; done done OUTPUT=$(mktemp) export OUTPUT echo "Application cleanup may take up to one minute" docker-compose -f "$SCRIPTDIR/bookinfo.sidecars.yaml" down > "${OUTPUT}" 2>&1 docker-compose -f "$SCRIPTDIR/bookinfo.yaml" down > "${OUTPUT}" 2>&1 ret=$? function cleanup() { rm -f "${OUTPUT}" } trap cleanup EXIT if [[ ${ret} -eq 0 ]];then cat "${OUTPUT}" else # ignore NotFound errors OUT2=$(grep -v NotFound "${OUTPUT}") if [[ -n ${OUT2} ]];then cat "${OUTPUT}" exit ${ret} fi fi echo "Application cleanup successful"
// @flow export default [ { DS100: 'AH', favendoId: 2514, id: '8002549', title: 'Hamburg Hbf' }, { DS100: 'ADF', favendoId: 2513, id: '8002548', title: 'Hamburg Dammtor' }, { DS100: 'AA', favendoId: 2517, id: '8098553', title: 'Hamburg-Altona' }, { DS100: 'AHAR', favendoId: 2519, id: '8000147', title: 'Hamburg-Harburg' }, { DS100: 'AHRF', favendoId: 2556, id: '8004267', title: 'Harburg Rathaus' }, { DS100: 'ABG', favendoId: 2518, id: '8002554', title: 'Hamburg-Bergedorf' }, { DS100: 'ARAL', favendoId: 2521, id: '8002558', title: 'Hamburg-Rahlstedt' }, { DS100: 'ANR', favendoId: 2520, id: '8002557', title: 'Hamburg-Neugraben' }, { DS100: 'AOW', favendoId: 6529, id: '8006197', title: 'Hamburg-Tonndorf' }, { DS100: 'AWN', favendoId: 2522, id: '8002560', title: 'Hamburg-Wandsbek' }, { DS100: 'FHO', favendoId: 284, id: '8000712', title: 'Bad Homburg' }, { DS100: 'NBA', favendoId: 393, id: '8000025', title: 'Bamberg' }, { DS100: 'SHO', favendoId: 2892, id: '8000176', title: 'Homburg (Saar) Hbf' }, { DS100: 'AAI', favendoId: 2458, id: '8002547', title: 'Hamburg Airport (Flughafen)' }, { DS100: 'FMBG', favendoId: 3943, id: '8000337', title: 'Marburg (Lahn)' }, { DS100: 'FL', favendoId: 3720, id: '8000229', title: 'Limburg (Lahn)' }, { DS100: 'FMBS', favendoId: 3944, id: '8003856', title: 'Marburg Süd' }, { DS100: 'NAM', favendoId: 134, id: '8000566', title: 'Amberg' }, { DS100: 'UNM', favendoId: 4309, id: '8010240', title: 'Naumburg (Saale) Hbf' }, { DS100: 'SLB', favendoId: 3717, id: '8003684', title: 'Limbach (b Homburg,Saar)' }, { DS100: 'RLI', favendoId: 3721, id: '8003687', title: 'Limburgerhof' }, { DS100: 'UCB', favendoId: 1026, id: '8013474', title: 'Camburg (Saale)' }, { DS100: 'HBHA', favendoId: 281, id: '8000019', title: 'Bad Harzburg' }, { DS100: 'HHSB', favendoId: 2576, id: '8002615', title: 'Hasbergen (Kr Osnabrück)' }, { DS100: 'HWAR', favendoId: 6537, id: '8000196', title: 'Warburg (Westf)' }, { DS100: 'FHDT', favendoId: 2482, id: '8002531', title: 'Hainburg Hainstadt' }, { DS100: 'SSAB', favendoId: 5456, id: '8005245', title: 'Saarburg (Bz Trier)' }, { DS100: 'FCA', favendoId: 261, id: '8001322', title: 'Bad Camberg' }, { DS100: 'MHRG', favendoId: 2555, id: '8002593', title: 'Harburg (Schwab)' }, { DS100: 'FSTM', favendoId: 6033, id: '8000347', title: 'Glauburg-Stockheim' }, { DS100: 'FLIS', favendoId: 3723, id: '8003680', title: 'Limburg Süd' }, { DS100: 'NNAB', favendoId: 4290, id: '8004191', title: 'Nabburg' }, { DS100: 'FGBG', favendoId: 2140, id: '8002288', title: 'Glauburg-Glauberg' }, { DS100: 'NHAP', favendoId: 8194, id: '8002578', title: 'Happurg' }, { DS100: 'UNMO', favendoId: 4310, id: '8012415', title: 'Naumburg (Saale) Ost' }, { DS100: 'FELS', favendoId: 1575, id: '8001765', title: 'Elz (Kr Limburg/Lahn) Süd' }, { DS100: 'FNSM', favendoId: 4448, id: '8004328', title: 'Neustadt (Kr Marburg)' }, { DS100: 'FELZ', favendoId: 1574, id: '8001764', title: 'Elz (Kr Limburg/Lahn)' }, { DS100: 'NHAL', favendoId: 2506, id: '8002542', title: 'Hallstadt (b Bamberg)' }, ];
class DecimalNumber: def __init__(self, value): self.value = value def add(self, other): return DecimalNumber(self.value + other.value) def subtract(self, other): return DecimalNumber(self.value - other.value) def multiply(self, other): return DecimalNumber(self.value * other.value) def divide(self, other): return DecimalNumber(self.value / other.value) def is_negative(self): return self.value < 0 # Test the implementation num1 = DecimalNumber(5.5) num2 = DecimalNumber(-3.2) sum_result = num1.add(num2) print(sum_result.value) # Output: 2.3 difference_result = num1.subtract(num2) print(difference_result.value) # Output: 8.7 product_result = num1.multiply(num2) print(product_result.value) # Output: -17.6 division_result = num1.divide(num2) print(division_result.value) # Output: -1.71875 is_negative_num1 = num1.is_negative() print(is_negative_num1) # Output: False is_negative_num2 = num2.is_negative() print(is_negative_num2) # Output: True
#!/usr/bin/env bash for config_name in "ccg_supertagging" "conjunct_identification" "conll2000_chunking" "ptb_pos_tagging" "ptb_syntactic_dependency_arc_classification" "ptb_syntactic_dependency_arc_prediction" "semantic_dependency_arc_classification" "semantic_dependency_arc_prediction" "syntactic_constituency_grandparent_prediction" "syntactic_constituency_greatgrandparent_prediction" "syntactic_constituency_parent_prediction"; do python scripts/evaluate_with_beaker.py "transfer_experiment_configs/elmo_small_randomly_initialized/${config_name}.json" \ --source "contexteval_data_resplit:./data" \ --source "contexteval_contextualizers_elmo_small_randomly_initialized_weights:./contextualizers/elmo_small_randomly_initialized/elmo_small_randomly_initialized_weights.hdf5" \ --source "contexteval_contextualizers_elmo_small_randomly_initialized_options:./contextualizers/elmo_small_randomly_initialized/elmo_small_randomly_initialized_options.json" \ --gpu-count 1 \ --desc "elmo_small_randomly_initialized on resplit ${config_name} with contextualizer elmo_small_randomly_initialized" \ --name "elmo_small_randomly_initialized_transfer_${config_name}" done
<reponame>ElianeBriand/SMolDock<gh_stars>1-10 var searchData= [ ['quaternionidentityinit',['QuaternionIdentityInit',['../namespace_smol_dock.html#a4b9f944b7ca507663d00cc948f0b90c7',1,'SmolDock']]] ];
<filename>src/users/users.controller.ts<gh_stars>0 import { Body, Controller, Get, Post, SetMetadata, UseGuards } from '@nestjs/common'; import { ApiBasicAuth, ApiTags } from '@nestjs/swagger'; import { AuthGuard } from 'src/utils/guards/auth.guard'; import { CreateUserDTO } from './dto/create-user.dto'; import { UsersService } from './users.service'; @ApiTags('users') @ApiBasicAuth('firebase') @Controller('users') export class UsersController { constructor(private usersService: UsersService) { } @UseGuards(AuthGuard) @SetMetadata('roles', ['admin']) @Post('create') async create(@Body() user: CreateUserDTO): Promise<void> { return await this.usersService.create(user); } @Get() async get() { return await this.usersService.get(); } }
density = mass/volume density = 3.2/0.4 density = 8 g/cc
package sort; import java.util.*; import java.util.function.IntPredicate; public class Sort { static Random rnd = new Random(1); public static void qSort(int[] a, int low, int high) { if (low >= high) return; int separator = a[low + rnd.nextInt(high - low + 1)]; int i = low; int j = high; do { while (a[i] < separator) ++i; while (a[j] > separator) --j; if (i > j) break; int t = a[i]; a[i] = a[j]; a[j] = t; ++i; --j; } while (i <= j); qSort(a, low, j); qSort(a, i, high); } public static void mergeSort(int[] a, int low, int high) { if (high - low < 2) return; int mid = (low + high) >>> 1; mergeSort(a, low, mid); mergeSort(a, mid, high); int[] b = Arrays.copyOfRange(a, low, mid); for (int i = low, j = mid, k = 0; k < b.length; i++) { if (j == high || b[k] <= a[j]) { a[i] = b[k++]; } else { a[i] = a[j++]; } } } public static void mergeSort2(int[] a, int low, int high) { int size = high - low; if (size < 2) return; int mid = (low + high) >>> 1; mergeSort2(a, low, mid); mergeSort2(a, mid, high); int[] b = new int[size]; int i = low; int j = mid; for (int k = 0; k < size; k++) { if (i < mid && (j == high || a[i] <= a[j])) { b[k] = a[i++]; } else { b[k] = a[j++]; } } System.arraycopy(b, 0, a, low, size); } public static void inPlaceMergeSort(int[] a, int low, int high) { if (low < high - 1) { int mid = (low + high) >>> 1; mergeSort(a, low, mid); mergeSort(a, mid, high); inPlaceMerge(a, low, mid, high); } } // O(n*log(n)) complexity static void inPlaceMerge(int[] a, int from, int mid, int to) { if (from >= mid || mid >= to) return; if (to - from == 2) { if (a[from] > a[mid]) swap(a, from, mid); return; } final int firstCut; final int secondCut; if (mid - from > to - mid) { firstCut = from + (mid - from) / 2; secondCut = binarySearchFirstTrue(i -> a[i] >= a[firstCut], mid, to); } else { secondCut = mid + (to - mid) / 2; firstCut = binarySearchFirstTrue(i -> a[i] > a[secondCut], from, mid); } if (mid != firstCut && mid != secondCut) { rotate(a, firstCut, mid, secondCut); } mid = firstCut + (secondCut - mid); inPlaceMerge(a, from, firstCut, mid); inPlaceMerge(a, mid, secondCut, to); } static void swap(int[] a, int i, int j) { int t = a[j]; a[j] = a[i]; a[i] = t; } static void rotate(int[] a, int first, int middle, int last) { int next = middle; while (first != next) { swap(a, first++, next++); if (next == last) next = middle; else if (first == middle) middle = next; } } static int binarySearchFirstTrue(IntPredicate predicate, int fromInclusive, int toExclusive) { int lo = fromInclusive - 1; int hi = toExclusive; while (lo < hi - 1) { int mid = (lo + hi) >>> 1; if (!predicate.test(mid)) { lo = mid; } else { hi = mid; } } return hi; } public static void heapSort(int[] a) { int n = a.length; for (int i = n / 2 - 1; i >= 0; i--) pushDown(a, i, n); while (n > 1) { swap(a, 0, n - 1); pushDown(a, 0, --n); } } static void pushDown(int[] h, int pos, int size) { while (true) { int child = 2 * pos + 1; if (child >= size) break; if (child + 1 < size && h[child + 1] > h[child]) child++; if (h[pos] >= h[child]) break; swap(h, pos, child); pos = child; } } public static void bubbleSort(int[] a) { for (int i = 0; i + 1 < a.length; i++) { for (int j = 0; j + 1 < a.length; j++) { if (a[j] > a[j + 1]) { swap(a, j, j + 1); } } } } public static void selectionSort(int[] a) { int n = a.length; int[] p = new int[n]; for (int i = 0; i < n; i++) p[i] = i; for (int i = 0; i < n - 1; i++) { for (int j = i + 1; j < n; j++) { if (a[p[i]] > a[p[j]]) { swap(p, i, j); } } } int[] b = a.clone(); for (int i = 0; i < n; i++) a[i] = b[p[i]]; } public static void insertionSort(int[] a) { for (int i = 1; i < a.length; i++) { for (int j = i; j > 0; j--) { if (a[j - 1] > a[j]) { swap(a, j - 1, j); } } } } public static void countingSort(int[] a) { int max = 0; for (int x : a) { max = Math.max(max, x); } int[] cnt = new int[max + 1]; for (int x : a) { ++cnt[x]; } for (int i = 1; i < cnt.length; i++) { cnt[i] += cnt[i - 1]; } int n = a.length; int[] b = new int[n]; for (int i = 0; i < n; i++) { b[--cnt[a[i]]] = a[i]; } System.arraycopy(b, 0, a, 0, n); } public static void radixSort(int[] a) { final int d = 8; final int w = 32; int[] t = new int[a.length]; for (int p = 0; p < w / d; p++) { // counting-sort int[] cnt = new int[1 << d]; for (int i = 0; i < a.length; i++) ++cnt[((a[i] ^ Integer.MIN_VALUE) >>> (d * p)) & ((1 << d) - 1)]; for (int i = 1; i < cnt.length; i++) cnt[i] += cnt[i - 1]; for (int i = a.length - 1; i >= 0; i--) t[--cnt[((a[i] ^ Integer.MIN_VALUE) >>> (d * p)) & ((1 << d) - 1)]] = a[i]; System.arraycopy(t, 0, a, 0, a.length); } } // random test public static void main(String[] args) { Random rnd = new Random(1); for (int step = 0; step < 1000; step++) { int n = rnd.nextInt(10) + 1; int[] a = rnd.ints(n, 0, 1000).toArray(); int[] s = a.clone(); Arrays.sort(s); int[] b = a.clone(); bubbleSort(b); if (!Arrays.equals(s, b)) throw new RuntimeException(); b = a.clone(); selectionSort(b); if (!Arrays.equals(s, b)) throw new RuntimeException(); b = a.clone(); insertionSort(b); if (!Arrays.equals(s, b)) throw new RuntimeException(); b = a.clone(); countingSort(b); if (!Arrays.equals(s, b)) throw new RuntimeException(); b = a.clone(); qSort(b, 0, b.length - 1); if (!Arrays.equals(s, b)) throw new RuntimeException(); } for (int step = 0; step < 10; step++) { int n = rnd.nextInt(50_000) + 100_000; int[] a = step == 0 ? new int[n] : rnd.ints(n).toArray(); int[] s = a.clone(); Arrays.sort(s); int[] b = a.clone(); qSort(b, 0, b.length - 1); if (!Arrays.equals(s, b)) throw new RuntimeException(); b = a.clone(); mergeSort(b, 0, b.length); if (!Arrays.equals(s, b)) throw new RuntimeException(); b = a.clone(); mergeSort2(b, 0, b.length); if (!Arrays.equals(s, b)) throw new RuntimeException(); b = a.clone(); inPlaceMergeSort(b, 0, b.length); if (!Arrays.equals(s, b)) throw new RuntimeException(); b = a.clone(); heapSort(b); if (!Arrays.equals(s, b)) throw new RuntimeException(); b = a.clone(); radixSort(b); if (!Arrays.equals(s, b)) throw new RuntimeException(); } } }
<filename>FPSLighting/Dependencies/DIRECTX/Samples/C++/Direct3D/HDRLighting/GlareDefD3D.cpp<gh_stars>10-100 // File provided by <NAME> // http://www.daionet.gr.jp/~masa/rthdribl/ // GlareDefD3D.cpp : Glare information definition // #include "DXUT.h" #include "GlareDefD3D.h" #define _Rad D3DXToRadian // Static star library information static STARDEF s_aLibStarDef[NUM_BASESTARLIBTYPES] = { // star name lines passes length attn rotate bRotate { TEXT( "Disable" ), 0, 0, 0.0f, 0.0f, _Rad( 00.0f ), false, }, // STLT_DISABLE { TEXT( "Cross" ), 4, 3, 1.0f, 0.85f, _Rad( 0.0f ), true, }, // STLT_CROSS { TEXT( "CrossFilter" ), 4, 3, 1.0f, 0.95f, _Rad( 0.0f ), true, }, // STLT_CROSS { TEXT( "snowCross" ), 6, 3, 1.0f, 0.96f, _Rad( 20.0f ), true, }, // STLT_SNOWCROSS { TEXT( "Vertical" ), 2, 3, 1.0f, 0.96f, _Rad( 00.0f ), false, }, // STLT_VERTICAL }; static int s_nLibStarDefs = sizeof( s_aLibStarDef ) / sizeof( STARDEF ); // Static glare library information static GLAREDEF s_aLibGlareDef[NUM_GLARELIBTYPES] = { // glare name glare bloom ghost distort star star type // rotate C.A current after ai lum { TEXT( "Disable" ), 0.0f, 0.0f, 0.0f, 0.01f, 0.0f, STLT_DISABLE, _Rad( 0.0f ), 0.5f, 0.00f, 0.00f, 0.0f, }, // GLT_DISABLE { TEXT( "Camera" ), 1.5f, 1.2f, 1.0f, 0.00f, 1.0f, STLT_CROSS, _Rad( 00.0f ), 0.5f, 0.25f, 0.90f, 1.0f, }, // GLT_CAMERA { TEXT( "Natural Bloom" ), 1.5f, 1.2f, 0.0f, 0.00f, 0.0f, STLT_DISABLE, _Rad( 00.0f ), 0.0f, 0.40f, 0.85f, 0.5f, }, // GLT_NATURAL { TEXT( "Cheap Lens Camera" ), 1.25f, 2.0f, 1.5f, 0.05f, 2.0f, STLT_CROSS, _Rad( 00.0f ), 0.5f, 0.18f, 0.95f, 1.0f, }, // GLT_CHEAPLENS /* { TEXT("Afterimage"), 1.5f, 1.2f, 0.5f, 0.00f, 0.7f, STLT_CROSS, _Rad(00.0f), 0.5f, 0.1f, 0.98f, 2.0f, }, // GLT_AFTERIMAGE */ { TEXT( "Cross Screen Filter" ), 1.0f, 2.0f, 1.7f, 0.00f, 1.5f, STLT_CROSSFILTER, _Rad( 25.0f ), 0.5f, 0.20f, 0.93f, 1.0f, }, // GLT_FILTER_CROSSSCREEN { TEXT( "Spectral Cross Filter" ), 1.0f, 2.0f, 1.7f, 0.00f, 1.8f, STLT_CROSSFILTER, _Rad( 70.0f ), 1.5f, 0.20f, 0.93f, 1.0f, }, // GLT_FILTER_CROSSSCREEN_SPECTRAL { TEXT( "Snow Cross Filter" ), 1.0f, 2.0f, 1.7f, 0.00f, 1.5f, STLT_SNOWCROSS, _Rad( 10.0f ), 0.5f, 0.20f, 0.93f, 1.0f, }, // GLT_FILTER_SNOWCROSS { TEXT( "Spectral Snow Cross" ), 1.0f, 2.0f, 1.7f, 0.00f, 1.8f, STLT_SNOWCROSS, _Rad( 40.0f ), 1.5f, 0.20f, 0.93f, 1.0f, }, // GLT_FILTER_SNOWCROSS_SPECTRAL { TEXT( "Sunny Cross Filter" ), 1.0f, 2.0f, 1.7f, 0.00f, 1.5f, STLT_SUNNYCROSS, _Rad( 00.0f ), 0.5f, 0.20f, 0.93f, 1.0f, }, // GLT_FILTER_SUNNYCROSS { TEXT( "Spectral Sunny Cross" ), 1.0f, 2.0f, 1.7f, 0.00f, 1.8f, STLT_SUNNYCROSS, _Rad( 45.0f ), 1.5f, 0.20f, 0.93f, 1.0f, }, // GLT_FILTER_SUNNYCROSS_SPECTRAL { TEXT( "Cine Camera Vertical Slits" ), 1.0f, 2.0f, 1.5f, 0.00f, 1.0f, STLT_VERTICAL, _Rad( 90.0f ), 0.5f, 0.20f, 0.93f, 1.0f, }, // GLT_CINECAM_VERTICALSLIT { TEXT( "Cine Camera Horizontal Slits" ), 1.0f, 2.0f, 1.5f, 0.00f, 1.0f, STLT_VERTICAL, _Rad( 00.0f ), 0.5f, 0.20f, 0.93f, 1.0f, }, // GLT_CINECAM_HORIZONTALSLIT }; static int s_nLibGlareDefs = sizeof( s_aLibGlareDef ) / sizeof( GLAREDEF ); //---------------------------------------------------------- // Information object for star generation CStarDef* CStarDef::ms_pStarLib = NULL; D3DXCOLOR CStarDef::ms_avChromaticAberrationColor[]; CStarDef::CStarDef() { Construct(); } CStarDef::CStarDef( const CStarDef& src ) { Construct(); Initialize( src ); } CStarDef::~CStarDef() { Destruct(); } HRESULT CStarDef::Construct() { ZeroMemory( m_strStarName, sizeof( m_strStarName ) ); m_nStarLines = 0; m_pStarLine = NULL; m_fInclination = 0.0f; m_bRotation = false; return S_OK; } void CStarDef::Destruct() { Release(); } void CStarDef::Release() { SAFE_DELETE_ARRAY( m_pStarLine ); m_nStarLines = 0; } HRESULT CStarDef::Initialize( const CStarDef& src ) { if( &src == this ) { return S_OK; } // Release the data Release(); // Copy the data from source wcscpy_s( m_strStarName, 256, src.m_strStarName ); m_nStarLines = src.m_nStarLines; m_fInclination = src.m_fInclination; m_bRotation = src.m_bRotation; m_pStarLine = new STARLINE[m_nStarLines]; if( m_pStarLine == NULL ) return E_OUTOFMEMORY; for( int i = 0; i < m_nStarLines; i ++ ) { m_pStarLine[i] = src.m_pStarLine[i]; } return S_OK; } /// generic simple star generation HRESULT CStarDef::Initialize( const TCHAR* szStarName, int nStarLines, int nPasses, float fSampleLength, float fAttenuation, float fInclination, bool bRotation ) { // Release the data Release(); // Copy from parameters wcscpy_s( m_strStarName, 256, szStarName ); m_nStarLines = nStarLines; m_fInclination = fInclination; m_bRotation = bRotation; m_pStarLine = new STARLINE[m_nStarLines]; if( m_pStarLine == NULL ) return E_OUTOFMEMORY; float fInc = D3DXToRadian( 360.0f / ( float )m_nStarLines ); for( int i = 0; i < m_nStarLines; i ++ ) { m_pStarLine[i].nPasses = nPasses; m_pStarLine[i].fSampleLength = fSampleLength; m_pStarLine[i].fAttenuation = fAttenuation; m_pStarLine[i].fInclination = fInc * ( float )i; } return S_OK; } /// Specific start generation // Sunny cross filter HRESULT CStarDef::Initialize_SunnyCrossFilter( const TCHAR* szStarName, float fSampleLength, float fAttenuation, float fLongAttenuation, float fInclination ) { // Release the data Release(); // Create parameters wcscpy_s( m_strStarName, 256, szStarName ); m_nStarLines = 8; m_fInclination = fInclination; // m_bRotation = true ; m_bRotation = false; m_pStarLine = new STARLINE[m_nStarLines]; if( m_pStarLine == NULL ) return E_OUTOFMEMORY; float fInc = D3DXToRadian( 360.0f / ( float )m_nStarLines ); for( int i = 0; i < m_nStarLines; i ++ ) { m_pStarLine[i].fSampleLength = fSampleLength; m_pStarLine[i].fInclination = fInc * ( float )i + D3DXToRadian( 0.0f ); if( 0 == ( i % 2 ) ) { m_pStarLine[i].nPasses = 3; m_pStarLine[i].fAttenuation = fLongAttenuation; // long } else { m_pStarLine[i].nPasses = 3; m_pStarLine[i].fAttenuation = fAttenuation; } } return S_OK; } HRESULT CStarDef::InitializeStaticStarLibs() { if( ms_pStarLib ) { return S_OK; } ms_pStarLib = new CStarDef[NUM_STARLIBTYPES]; if( ms_pStarLib == NULL ) return E_OUTOFMEMORY; // Create basic form for( int i = 0; i < NUM_BASESTARLIBTYPES; i ++ ) { ms_pStarLib[i].Initialize( s_aLibStarDef[i] ); } // Create special form // Sunny cross filter ms_pStarLib[STLT_SUNNYCROSS].Initialize_SunnyCrossFilter(); // Initialize color aberration table /* { D3DXCOLOR(0.5f, 0.5f, 0.5f, 0.0f), D3DXCOLOR(1.0f, 0.2f, 0.2f, 0.0f), D3DXCOLOR(0.2f, 0.6f, 0.2f, 0.0f), D3DXCOLOR(0.2f, 0.2f, 1.0f, 0.0f), } ; */ D3DXCOLOR avColor[8] = { /* D3DXCOLOR(0.5f, 0.5f, 0.5f, 0.0f), D3DXCOLOR(0.3f, 0.3f, 0.8f, 0.0f), D3DXCOLOR(0.2f, 0.2f, 1.0f, 0.0f), D3DXCOLOR(0.2f, 0.4f, 0.5f, 0.0f), D3DXCOLOR(0.2f, 0.6f, 0.2f, 0.0f), D3DXCOLOR(0.5f, 0.4f, 0.2f, 0.0f), D3DXCOLOR(0.7f, 0.3f, 0.2f, 0.0f), D3DXCOLOR(1.0f, 0.2f, 0.2f, 0.0f), */ D3DXCOLOR( 0.5f, 0.5f, 0.5f, 0.0f ), // w D3DXCOLOR( 0.8f, 0.3f, 0.3f, 0.0f ), D3DXCOLOR( 1.0f, 0.2f, 0.2f, 0.0f ), // r D3DXCOLOR( 0.5f, 0.2f, 0.6f, 0.0f ), D3DXCOLOR( 0.2f, 0.2f, 1.0f, 0.0f ), // b D3DXCOLOR( 0.2f, 0.3f, 0.7f, 0.0f ), D3DXCOLOR( 0.2f, 0.6f, 0.2f, 0.0f ), // g D3DXCOLOR( 0.3f, 0.5f, 0.3f, 0.0f ), }; memcpy( ms_avChromaticAberrationColor, avColor, sizeof( D3DXCOLOR ) * 8 ); /* ms_avChromaticAberrationColor[0] = D3DXCOLOR(0.5f, 0.5f, 0.5f, 0.0f) ; ms_avChromaticAberrationColor[1] = D3DXCOLOR(0.7f, 0.3f, 0.3f, 0.0f) ; ms_avChromaticAberrationColor[2] = D3DXCOLOR(1.0f, 0.2f, 0.2f, 0.0f) ; ms_avChromaticAberrationColor[3] = D3DXCOLOR(0.5f, 0.5f, 0.5f, 0.0f) ; ms_avChromaticAberrationColor[4] = D3DXCOLOR(0.2f, 0.6f, 0.2f, 0.0f) ; ms_avChromaticAberrationColor[5] = D3DXCOLOR(0.2f, 0.4f, 0.5f, 0.0f) ; ms_avChromaticAberrationColor[6] = D3DXCOLOR(0.2f, 0.3f, 0.8f, 0.0f) ; ms_avChromaticAberrationColor[7] = D3DXCOLOR(0.2f, 0.2f, 1.0f, 0.0f) ; */ return S_OK; } HRESULT CStarDef::DeleteStaticStarLibs() { // Delete all libraries SAFE_DELETE_ARRAY( ms_pStarLib ); return S_OK; } //---------------------------------------------------------- // Glare definition CGlareDef* CGlareDef::ms_pGlareLib = NULL; CGlareDef::CGlareDef() { Construct(); } CGlareDef::CGlareDef( const CGlareDef& src ) { Construct(); Initialize( src ); } CGlareDef::~CGlareDef() { Destruct(); } HRESULT CGlareDef::Construct() { ZeroMemory( m_strGlareName, sizeof( m_strGlareName ) ); m_fGlareLuminance = 0.0f; m_fBloomLuminance = 0.0f; m_fGhostLuminance = 0.0f; m_fStarLuminance = 0.0f; m_fStarInclination = 0.0f; m_fChromaticAberration = 0.0f; m_fAfterimageSensitivity = 0.0f; m_fAfterimageRatio = 0.0f; m_fAfterimageLuminance = 0.0f; return S_OK; } void CGlareDef::Destruct() { m_starDef.Release(); } void CGlareDef::Release() { } HRESULT CGlareDef::Initialize( const CGlareDef& src ) { if( &src == this ) { return S_OK; } // Release the data Release(); // Copy data from source wcscpy_s( m_strGlareName, 256, src.m_strGlareName ); m_fGlareLuminance = src.m_fGlareLuminance; m_fBloomLuminance = src.m_fBloomLuminance; m_fGhostLuminance = src.m_fGhostLuminance; m_fGhostDistortion = src.m_fGhostDistortion; m_fStarLuminance = src.m_fStarLuminance; m_fStarLuminance = src.m_fStarLuminance; m_fStarInclination = src.m_fStarInclination; m_fChromaticAberration = src.m_fChromaticAberration; m_fAfterimageSensitivity = src.m_fStarLuminance; m_fAfterimageRatio = src.m_fStarLuminance; m_fAfterimageLuminance = src.m_fStarLuminance; m_starDef = src.m_starDef; return S_OK; } HRESULT CGlareDef::Initialize( const TCHAR* szStarName, float fGlareLuminance, float fBloomLuminance, float fGhostLuminance, float fGhostDistortion, float fStarLuminance, ESTARLIBTYPE eStarType, float fStarInclination, float fChromaticAberration, float fAfterimageSensitivity, // Current weight float fAfterimageRatio, // Afterimage weight float fAfterimageLuminance ) { // Release the data Release(); // Create parameters wcscpy_s( m_strGlareName, 256, szStarName ); m_fGlareLuminance = fGlareLuminance; m_fBloomLuminance = fBloomLuminance; m_fGhostLuminance = fGhostLuminance; m_fGhostDistortion = fGhostDistortion; m_fStarLuminance = fStarLuminance; m_fStarInclination = fStarInclination; m_fChromaticAberration = fChromaticAberration; m_fAfterimageSensitivity = fAfterimageSensitivity; m_fAfterimageRatio = fAfterimageRatio; m_fAfterimageLuminance = fAfterimageLuminance; // Create star form data m_starDef = CStarDef::GetLib( eStarType ); return S_OK; } HRESULT CGlareDef::InitializeStaticGlareLibs() { if( ms_pGlareLib ) { return S_OK; } CStarDef::InitializeStaticStarLibs(); ms_pGlareLib = new CGlareDef[NUM_GLARELIBTYPES]; if( ms_pGlareLib == NULL ) return E_OUTOFMEMORY; // Create glare form for( int i = 0; i < NUM_GLARELIBTYPES; i ++ ) { ms_pGlareLib[i].Initialize( s_aLibGlareDef[i] ); } return S_OK; } HRESULT CGlareDef::DeleteStaticGlareLibs() { // Delete all libraries SAFE_DELETE_ARRAY( ms_pGlareLib ); return S_OK; } //---------------------------------------------------------- // Dummy to generate static object for glare __CGlare_GenerateStaticObjects __CGlare_GenerateStaticObjects::ms_staticObject;
import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.IOException; import java.io.InputStreamReader; import java.io.OutputStreamWriter; public class Main { public static void main(String[] args) throws NumberFormatException, IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); String[] alphabet = {"c=", "c-", "dz=", "d-", "lj", "nj", "s=", "z="}; char[] str = br.readLine().toCharArray(); int result = 0; int count = 0; for (int i = 0; i < str.length; i++) { int state = 0; if (i < str.length - 2) { String comp = "" + str[i] + str[i+1] + str[i+2]; for (int j = 0; j < alphabet.length; j++) { if (comp.equals(alphabet[j])) { i = i + 2; result++; state = 1; break; } } } if (i < str.length - 1 && state != 1) { String comp = "" + str[i] + str[i+1]; for (int j = 0; j < alphabet.length; j++) { if (comp.equals(alphabet[j])) { i = i + 1; result++; state = 1; break; } } } if (state != 1) result++; } bw.write(result + "\n"); bw.flush(); bw.close(); } }
function largestNumber(num1, num2) { return Math.max(num1, num2); }
<reponame>coignetp/jua package jua.token; public class TokenOperator extends Token { private Operator operator; protected TokenOperator(Operator operator, int line, int position) { super(operator.toString(), line, position); this.operator = operator; } public Operator getOperator() { return operator; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; if (!super.equals(o)) return false; TokenOperator that = (TokenOperator) o; return operator == that.operator; } @Override public int hashCode() { int result = super.hashCode(); result = 31 * result + operator.hashCode(); return result; } }
//no renderening data, no state necessary //hence we need only a functional component import _ from 'lodash'; import React from 'react'; import { Sparklines, SparklinesLine, SparklinesReferenceLine } from 'react-sparklines';//check out the documentation!! function average(data) { return _.round(_.sum(data)/data.length); //calculating the average and round it up/down } //Remember!!! Every time you see yourself in replicating //markup in your file, you should do a refactor into //a seperate reusable component. //here we copy and paste the code from the weather_list.js as //that code is a reusable one. export default (props) => { return ( <div> <Sparklines height={120} width={180} data={props.data}> <SparklinesLine color={props.color} /> <SparklinesReferenceLine type="avg" /> </Sparklines> <div>{average(props.data)} {props.units}</div> </div> ) }
<gh_stars>0 package htmlparse; import java.io.IOException; import java.net.MalformedURLException; import java.net.URL; import org.apache.log4j.Logger; import org.jsoup.Jsoup; import org.jsoup.nodes.Document; import org.jsoup.parser.Parser; import org.jsoup.select.Elements; public class ChsiUtil { private static final Logger log = Logger.getLogger(ChsiUtil.class); public static void main(String[] args){ /*TUsrChsi bak = new TUsrChsi(); bak.setChsiCode("123"); ChsiUtil.getResultByChsiCode(bak);*/ try { Document doc = Jsoup.parse("<dict><br/><abc>aaa</abc><abc>abb</abc></dict>", "", Parser.xmlParser()); Elements a = doc.select("dict > abc"); if(!a.isEmpty()){ System.out.println(a.html()); } } catch (Exception e) { e.printStackTrace(); } } /** * 使用html解析学信网数据 * @param chsi * @param content */ public static void getResultByChsiContent(TUsrChsi chsi, String content) { try { Document doc = Jsoup.parse(content, "UTF-8"); fillChsiByDoc(doc,chsi); } catch (Exception e) { chsi.setChsiType(3); chsi.setChsiException(e.getMessage()); } } /** * 根据Document得到学信网数据 * @param doc * @param bak */ private static void fillChsiByDoc(Document doc, TUsrChsi bak){ //log.info(doc.html()); //System.out.println(doc.html()); // 获取内容的所有的tbody Elements eletBodys = doc.select( "div[id=resultTable],[class=clearfix]").select("tbody"); if (eletBodys.isEmpty()) { Elements eletAlert = doc.select( "div[class=alertTXT colorRed]").select("span[id=msgDiv]"); if(eletAlert!=null){ log.info("======学信网错误消息======"+eletAlert.html()); bak.setChsiException(eletAlert.html()); if(eletAlert.html()!=null && eletAlert.html().indexOf("您访问系统过于频繁")!=-1){ bak.setChsiType(3); bak.setChsiException("您访问系统过于频繁"); return; } } bak.setChsiType(2); return; } bak.setChsiType(1); String gender = eletBodys.get(0).select("tr").get(1).select("td") .get(1).select("div").text(); bak.setGender(gender); log.debug("性别:" + gender); String idCard = eletBodys.get(0).select("tr").get(1).select("td") .get(3).select("div").text(); bak.setIdCard(idCard); log.debug("身份证:" + idCard); String nation = eletBodys.get(0).select("tr").get(2).select("td") .get(1).select("div").text(); bak.setNation(nation); log.debug("民族:" + nation); String birthday = eletBodys.get(0).select("tr").get(2).select("td") .get(3).select("div").text(); bak.setBirthday(birthday);; log.debug("生日:" + birthday); String college = eletBodys.get(1).select("tr").get(0).select("td") .get(1).select("div").text(); bak.setCollege(college); log.debug("院校:" + college); String educationalBg = eletBodys.get(1).select("tr").get(0) .select("td").get(3).select("div").text(); bak.setEducationalBg(educationalBg); log.debug("学历:" + educationalBg); String major = eletBodys.get(1).select("tr").get(1).select("td") .get(1).select("div").text(); bak.setMajor(major); log.debug("院系:" + major); String clazz = eletBodys.get(1).select("tr").get(1).select("td") .get(3).select("div").text(); bak.setClazz(clazz); log.debug("班级:" + clazz); String specialty = eletBodys.get(1).select("tr").get(2) .select("td").get(1).select("div").text(); bak.setSpecialty(specialty); log.debug("专业:" + specialty); String studentNo = eletBodys.get(1).select("tr").get(2) .select("td").get(3).select("div").text(); bak.setStudentNo(studentNo); log.debug("学号:" + studentNo); String educationalForm = eletBodys.get(1).select("tr").get(3) .select("td").get(1).select("div").text(); bak.setEducationalForm(educationalForm); log.debug("形式:" + educationalForm); String entranceTime = eletBodys.get(1).select("tr").get(3) .select("td").get(3).select("div").text(); bak.setEntranceTime(entranceTime); log.debug("入学日期:" + entranceTime); String educationalSystem = eletBodys.get(1).select("tr").get(3) .select("td").get(5).select("div").text(); bak.setEducationalSystem(educationalSystem); log.debug("学制:" + educationalSystem); String educationalType = eletBodys.get(1).select("tr").get(4) .select("td").get(1).select("div").text(); bak.setEducationalType(educationalType); log.debug("类型:" + educationalType); String educationalStatus = eletBodys.get(1).select("tr").get(4) .select("td").get(3).select("div").text(); bak.setEducationalStatus(educationalStatus); log.debug("学籍状态:" + educationalStatus); } }
import {Component, Input, OnInit} from '@angular/core'; import {MatDialogRef} from '@angular/material/dialog'; @Component({ selector: 'app-confirmation-dialog', templateUrl: './confirmation-dialog.component.html', styleUrls: ['./confirmation-dialog.component.css'] }) export class ConfirmationDialogComponent implements OnInit { @Input() confirmMessage: string; constructor(private dialogRef: MatDialogRef<ConfirmationDialogComponent>) { } ngOnInit(): void { } abort() { this.dialogRef.close(false); } accept() { this.dialogRef.close(true); } }
<filename>incubator/net/src/main/java/org/onosproject/incubator/net/virtual/impl/intent/VirtualIntentSkipped.java /* * Copyright 2017-present Open Networking Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.onosproject.incubator.net.virtual.impl.intent; import org.onosproject.incubator.net.virtual.impl.intent.phase.VirtualFinalIntentProcessPhase; import org.onosproject.net.intent.IntentData; /** * Represents a phase where an intent is not compiled for a virtual network. * This should be used if a new version of the intent will immediately override * this one. */ public final class VirtualIntentSkipped extends VirtualFinalIntentProcessPhase { private static final VirtualIntentSkipped SINGLETON = new VirtualIntentSkipped(); /** * Returns a shared skipped phase. * * @return skipped phase */ public static VirtualIntentSkipped getPhase() { return SINGLETON; } // Prevent object construction; use getPhase() private VirtualIntentSkipped() { } @Override public IntentData data() { return null; } }
<gh_stars>0 /* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package objects1; /** * * @author Tyler */ public class Salad { public int percRemaining= 100; public String name; public boolean containsNuts; public String lettuceType; public boolean vegetarian; public void eatSalad(int percEaten){ percRemaining= percRemaining-percEaten; }//close method public void addMeat(){ vegetarian=true; }//close method }//close class
<gh_stars>0 import time import papermill from papermill.exceptions import PapermillExecutionError import jobs from settings import huey from settings import logger from utils import write_nb_to_html @huey.task() def job_runner(job_id, input_notebook, output_notebook, output_dir, parameters, **papermill_args): """ Task to execute notebooks. Parameters ---------- job_id: str, uuid4 the job id input_notebook: str location of input notebook to run output_notebook: str location to put output_notebook parameters: dict notebook parameters papermill_args: **kwargs extra parameters to pass too papermill execution """ log_context = dict( parameters=parameters, input_notebook=input_notebook, output_notebook=output_notebook, output_dir=output_dir, papermill_args=papermill_args ) job_status = jobs.JobStatus.RUNNING # Execute Notebook try: logger.info('notebooks.executing.started', extra=log_context) papermill.execute_notebook( input_notebook, output_notebook, parameters=parameters, **papermill_args ) job_status = jobs.JobStatus.SUCCESS log_context.update(dict(job_status=job_status)) logger.info('notebooks.executing.finished', extra=log_context) except PapermillExecutionError as e: job_status = jobs.JobStatus.FAILED log_context.update(dict(job_status=job_status)) logger.exception('notebooks.executing.error', extra=log_context) raise e return { "job_status": job_status, "output_notebook": output_notebook } @huey.task() def task_write_nb_to_html(filename): write_nb_to_html(filename) @huey.task() def fake_quick_task(): logger.info('Consumer Logging fake quick task') return { "fake": "task", "task_length": "quick" } @huey.task() def fake_long_task(): logger.info('Consumer Logging fake long task: wait 10 seconds') time.sleep(10) logger.info('End of fake long task') return { "fake": "task", "task_length": "10 seconds" }
public static int maxProfit(int[] prices) { int minprice = Integer.MAX_VALUE; int maxprofit = 0; for (int price : prices) { if (price < minprice) minprice = price; else if (price - minprice > maxprofit) maxprofit = price - minprice; } return maxprofit; }
import { ContractKit } from '@celo/contractkit' import { isValidAddress } from 'ethereumjs-util' import { MultiSigAccount, Account } from '../../../lib/accounts/accounts' import * as React from 'react' import { Dialog, DialogTitle, DialogContent, DialogActions, Button, Box, LinearProgress, TextField } from '@material-ui/core' import useOnChainState from '../../state/onchain-state' import AddressAutocomplete from '../../components/address-autocomplete' import Alert from '@material-ui/lab/Alert' const ImportMultiSigAccount = (props: { accounts: Account[], onAdd: (a: MultiSigAccount) => void, onCancel: () => void, }): JSX.Element => { const [address, setAddress] = React.useState("") const multiSigAddress = isValidAddress(address) ? address : undefined const { fetched, isFetching, } = useOnChainState(React.useCallback( async (kit: ContractKit) => { if (!multiSigAddress) { return {} } const multiSig = await kit.contracts.getMultiSig(multiSigAddress) const owners = await multiSig.getOwners() return {owners} }, [multiSigAddress] )) const [_ownerAddress, setOwnerAddress] = React.useState("") const accounts = props.accounts const ownerOptions = fetched?.owners ? accounts.filter((a) => fetched.owners.indexOf(a.address) >= 0) : [] const ownerAddress = ownerOptions.find((a) => a.address === _ownerAddress) ? _ownerAddress : ownerOptions[0]?.address const canAdd = !!multiSigAddress && !!ownerAddress const handleAdd = () => { if (!multiSigAddress || !ownerAddress) { return } props.onAdd({ type: "multisig", name: `MultiSig/${ownerAddress.slice(0, 6)}`, address: multiSigAddress, ownerAddress: ownerAddress, }) } return ( <Dialog open={true} onClose={props.onCancel}> <DialogTitle>Import MultiSig account</DialogTitle> <DialogContent> <Box display="flex" flexDirection="column" width={420}> <TextField id="multisig-address-input" margin="dense" size="medium" fullWidth={true} inputProps={{style: {fontFamily: "monospace"}, spellCheck: false}} InputLabelProps={{shrink: true}} label="MultiSig address" placeholder="0x..." value={address} onChange={(e) => { setAddress(e.target.value) }} /> {isFetching && <LinearProgress />} <Box display="flex" flexDirection="column" marginTop={1}> {fetched?.owners && (ownerOptions.length === 0 ? <Alert severity="error">None of your accounts have access to this MultiSig contract.</Alert> : <AddressAutocomplete id="multisig-owner-input" textFieldProps={{label: "Owner account"}} noFreeSolo={true} addresses={ownerOptions} address={ownerAddress} onChange={setOwnerAddress} /> )} </Box> </Box> </DialogContent> <DialogActions> <Button onClick={props.onCancel}>Cancel</Button> <Button onClick={handleAdd} disabled={!canAdd}>Import</Button> </DialogActions> </Dialog> ) } export default ImportMultiSigAccount
#!/bin/sh # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License # WARNING: This script is performed not only on uninstall, but also # during package update. See http://www.ibm.com/developerworks/library/l-rpm2/ # for details if [ "$1" -eq 0 ]; then # Action is uninstall /usr/sbin/ambari-server stop > /dev/null 2>&1 if [ -d "/etc/ambari-server/conf.save" ]; then mv /etc/ambari-server/conf.save /etc/ambari-server/conf_$(date '+%d_%m_%y_%H_%M').save fi if [ -e "/etc/init.d/ambari-server" ]; then # Remove link created during install rm /etc/init.d/ambari-server fi mv /etc/ambari-server/conf /etc/ambari-server/conf.save if [ -f "/var/lib/ambari-server/install-helper.sh" ]; then /var/lib/ambari-server/install-helper.sh remove fi chkconfig --list | grep ambari-server && chkconfig --del ambari-server fi exit 0
import { moduleMetadata } from '@storybook/angular'; import { OcFormComponentsModule, OcRadioButtonListComponent } from '@openchannel/angular-common-components/src/lib/form-components'; const modules = { imports: [OcFormComponentsModule], }; export default { title: 'Radio Button List [BEM]', component: OcRadioButtonListComponent, decorators: [moduleMetadata(modules)], }; const RadioButtonListComponent = (args: OcRadioButtonListComponent) => ({ component: OcRadioButtonListComponent, moduleMetadata: modules, props: args, }); export const RadioGroup = RadioButtonListComponent.bind({}); RadioGroup.args = { itemsArray: [ { label: 'Angular', value: 'angular', }, { label: 'React', value: 'react', }, { label: 'Vue', value: 'vue', }, ], value: 'angular', radioButtonGroup: 'frameworks', };
#!/bin/bash set -e host="server" port="8082" cmd="$@" >&2 echo "!!!!!!!! Check conteiner_a for available !!!!!!!!" until curl http://"$host":"$port"; do >&2 echo "Conteiner_A is unavailable - sleeping" sleep 1 done >&2 echo "Conteiner_A is up - executing command" java -jar parser.jar
#!/usr/bin/env bash # Copyright 2021 The Go Authors. All rights reserved. # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. EXIT_CODE=0 # Support ** in globs. shopt -s globstar main() { verify_header **/*.go go vet -all ./... | warnout ensure_go_binary honnef.co/go/tools/cmd/staticcheck staticcheck ./... | warnout ensure_go_binary github.com/client9/misspell/cmd/misspell misspell **/*.{go,sh,md} | warnout ensure_go_binary mvdan.cc/unparam unparam ./... | warnout go test ./... || err "go test failed" (cd _skiptest && ./run.sh) || err "skip test failed" (cd _changetest && ./run.sh) || err "change test failed" exit $EXIT_CODE } if [ -t 1 ] && which tput >/dev/null 2>&1; then RED="$(tput setaf 1)" GREEN="$(tput setaf 2)" YELLOW="$(tput setaf 3)" NORMAL="$(tput sgr0)" else RED="" GREEN="" YELLOW="" NORMAL="" fi info() { echo -e "${GREEN}$@${NORMAL}" 1>&2; } warn() { echo -e "${YELLOW}$@${NORMAL}" 1>&2; } err() { echo -e "${RED}$@${NORMAL}" 1>&2; EXIT_CODE=1; } die() { err $@ exit 1 } warnout() { while read line; do warn "$line" done } # ensure_go_binary verifies that a binary exists in $PATH corresponding to the # given go-gettable URI. If no such binary exists, it is fetched via `go get`. ensure_go_binary() { local binary=$(basename $1) if ! [ -x "$(command -v $binary)" ]; then info "Installing: $1" # Run in a subshell for convenience, so that we don't have to worry about # our PWD. (set -x; cd && env GO111MODULE=on go get -u $1) fi } # verify_header checks that all given files contain the standard header for Go # projects. verify_header() { if [[ "$@" != "" ]]; then for FILE in $@ do # Allow for the copyright header to start on either of the first two # lines, to accommodate conventions for CSS and HTML. line="$(head -3 $FILE)" if [[ ! $line == *"The Go Authors. All rights reserved."* && ! $line == *"Code generated by"* ]]; then err "missing license header: $FILE" fi done fi } main $@
package objects; import java.util.Collections; import java.util.HashMap; import java.util.Iterator; import java.util.Map; import java.util.Map.Entry; import javax.servlet.http.HttpServlet; public class ShoppingCart extends HttpServlet { private static final long serialVersionUID = 1L; private Map<String, String> map; private String customer; @SuppressWarnings({ "rawtypes", "unchecked" }) public ShoppingCart(String customer) { if (customer == null) this.customer = "Anonymous"; else this.customer = customer; map = Collections.synchronizedMap(new HashMap()); } public String getCustomer() { return this.customer; } public void put(String key, String value) { if (key == null || value == null) return; String currentValue; if ((currentValue = map.get(key)) != null) { Integer currentAmount = Integer.parseInt(currentValue) + Integer.parseInt(value); map.put(key, currentAmount + ""); } else { map.put(key, value); } } public void remove(String key) { if (key == null) return; if (map.containsKey(key)) { map.remove(key); } } public void removeAll() { if (map != null) map.clear(); } public Map<String, String> getMap() { return map; } public String getValues() { StringBuffer content = new StringBuffer("<tr><th>Product</th><th>Amount</th></tr>"); // Here we explicitly synchronise since we use an iterator // This makes the the map thread safe so that only one thread a time // can access the map synchronized (map) { // Iterator i=keys.iterator(); Iterator<Entry<String, String>> iterator = map.entrySet().iterator(); while (iterator.hasNext()) { Map.Entry<String, String> me = (Map.Entry<String, String>) iterator.next(); content.append( "<tr><form method='post' action='handle_shopping_cart'><td><input type='text' name='product' value='" + me.getKey() + "' readonly></td><td><input type='text' name='amount' value='" + me.getValue() + "' readonly></td><td><input type='submit' name='submit' value='Delete'></form></td></tr>"); } } // end of synchronised return content.toString(); } public String checkOut() { StringBuffer content = new StringBuffer(); content.append("<style>" + "body {background-color: #f4f7c5; text-align: center;}" + "h1 {color: #ea907a}" + ".order_history {bottom: 80%} </style>"); content.append( "<form class='login-form' action='checkout' method='post' enctype='multipart/form-data'><label for='fullname'>Full name:</label>" + "<input type='text' id='fullname' name='fullname'></br>" + "<label for='address'>Address:</label><input type='text' id='address' name='address'></br>"); content.append("Product: </br>"); synchronized (map) { // Iterator i=keys.iterator(); Iterator<Entry<String, String>> iterator = map.entrySet().iterator(); while (iterator.hasNext()) { Map.Entry<String, String> me = (Map.Entry<String, String>) iterator.next(); content.append(me.getValue() + ": " + me.getKey() + "</br>"); } } content.append("<input class='login-button' type='submit' value='Buy'></form>"); return content.toString(); } public int getSize() { return map.size(); } public double getTotalPrice() { double totalPrice = 0; synchronized (map) { // Iterator i=keys.iterator(); Iterator<Entry<String, String>> iterator = map.entrySet().iterator(); while (iterator.hasNext()) { Map.Entry<String, String> me = (Map.Entry<String, String>) iterator.next(); if (me.getKey().toString().equals("TV")) { totalPrice += 100.50 * Integer.parseInt(me.getValue()); } else if (me.getKey().toString().equals("Digibox")) { totalPrice += 80.15 * Integer.parseInt(me.getValue()); } else if (me.getKey().toString().equals("Freezer")) { totalPrice += 170.80 * Integer.parseInt(me.getValue()); } else if (me.getKey().toString().equals("Digicamera")) { totalPrice += 300.75 * Integer.parseInt(me.getValue()); } else if (me.getKey().toString().equals("PlayStation")) { totalPrice += 160.15 * Integer.parseInt(me.getValue()); } else { totalPrice += 50.30 * Integer.parseInt(me.getValue()); } } } totalPrice = (double) Math.round(totalPrice * 100) / 100; return totalPrice; } public String getAllProduct() { StringBuffer content = new StringBuffer(); synchronized (map) { // Iterator i=keys.iterator(); Iterator<Entry<String, String>> iterator = map.entrySet().iterator(); while (iterator.hasNext()) { Map.Entry<String, String> me = (Map.Entry<String, String>) iterator.next(); content.append(me.getValue() + ":" + me.getKey() + "&"); } } return content.toString(); } @Override public String toString() { return getClass().getName() + "[" + map + "]"; } }
#!/bin/bash ##Kør på gpu #BSUB -q gpuv100 ##Antal gpuer vi vil bruge. Kommenter ud hvis cpu. #BSUB -gpu "num=1:mode=exclusive_process" ##Kør på cpu ##BSUB -q hpc ##Navn på job #BSUB -J NN_04-01 ##Output fil #BSUB -o output/NN_04-01-%J.out ##Antal kerner #BSUB -n 5 ##Om kernerne må være på forskellige computere #BSUB -R "span[hosts=1]" ##Ram pr kerne #BSUB -R "rusage[mem=6GB]" ##Hvor lang tid må den køre hh:mm #BSUB -W 20:00 ##Email når jobbet starter #BSUB -B ##og stopper #BSUB -N module purge #module load tensorflow/1.5-cpu-python-3.6.2 module load tensorflow/1.5-gpu-python-3.6.2 for drop in 0.35 0.60 do for N in 100 400 1000 do for act in relu sigmoid do for nhidden in 1 2 3 do for feature_matrix_shape in atomic_number group_period_2x2 group_period_x_group_period do python3 NN/NN_script.py $drop $N $act $nhidden 04-01-2019\ 21.56 $feature_matrix_shape done done done done done
# frozen_string_literal: true require_relative 'lib/yabeda/http_requests/version' Gem::Specification.new do |spec| spec.name = 'yabeda-http_requests' spec.version = Yabeda::HttpRequests::VERSION spec.authors = ['<NAME>'] spec.email = ['<EMAIL>'] spec.summary = 'Monitoring of external services HTTP/HTTPS calls' spec.description = 'Extends Yabeda metrics to collect external calls' spec.homepage = 'https://github.com/yabeda-rb/yabeda-http_requests' spec.license = 'MIT' spec.required_ruby_version = Gem::Requirement.new('>= 2.5') spec.metadata['homepage_uri'] = spec.homepage spec.metadata['source_code_uri'] = 'https://github.com/yabeda-rb/yabeda-http_requests' spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features|example|docs)/}) end end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_runtime_dependency 'sniffer' spec.add_runtime_dependency 'yabeda' end
package discord_cmd import ( "encoding/json" "fmt" "net/http" "io/ioutil" "time" // fpmodel "fpbot/pkg/model" "github.com/spf13/cobra" dgo "github.com/bwmarrin/discordgo" ) const dadJokeBaseURL = "https://icanhazdadjoke.com/" type jokeCommand struct { DiscordCommand } func (c *jokeCommand) run() { if time.Since(c.BotData.LastRateLimitedCommandTime).Seconds() < 5 { c.Session.ChannelMessageSend(c.Message.ChannelID, "Slow down on the jokes!") return } client := &http.Client{} req, err := http.NewRequest("GET", dadJokeBaseURL, nil) if err != nil { c.Session.ChannelMessageSend(c.Message.ChannelID, fmt.Sprintf("Cannot create GET request: %s", err.Error())) return } req.Header.Set("User-Agent", "Friendly Potato Discord Bot (https://github.com/you-win/fpbot)") req.Header.Set("Accept", "application/json") res, err := client.Do(req) if err != nil { c.Session.ChannelMessageSend(c.Message.ChannelID, fmt.Sprintf("Error when sending GET request: %s", err.Error())) return } defer res.Body.Close() body, err := ioutil.ReadAll(res.Body) var jsonBody map[string]interface{} err = json.Unmarshal(body, &jsonBody) if err != nil { c.Session.ChannelMessageSend(c.Message.ChannelID, fmt.Sprintf("Error when unmarshalling response: %s", err.Error())) return } if jsonBody["status"].(float64) != 200 { c.Session.ChannelMessageSend(c.Message.ChannelID, fmt.Sprintf("Non-200 response code: %s", jsonBody)) return } c.Session.ChannelMessageSend(c.Message.ChannelID, fmt.Sprintf("```%s```", jsonBody["joke"].(string))) c.BotData.LastRateLimitedCommandTime = time.Now() } func NewJokeCommand(s *dgo.Session, m *dgo.Message, b *BotData) *cobra.Command { dc := &jokeCommand{ DiscordCommand: DiscordCommand{ Session: s, Message: m, BotData: b, }, } c := &cobra.Command{ Use: "joke", Short: "Have the bot tell a joke", Run: func(cmd *cobra.Command, args []string){ dc.run() }, } modifyUsageFunc(c, s, m) return c }
<reponame>chiragshahklc/spfx-react-redux-boilerplate<filename>src/webparts/spfxDemoWp/pages/Home.tsx import * as React from "react"; import { Container, Row, Col, FormGroup, Card, CardBody, Label, Alert, Button, Tooltip } from "reactstrap"; import { RouteComponentProps } from "react-router-dom"; import { SPHttpClient, SPHttpClientResponse } from "@microsoft/sp-http"; // HOC required for connecting redux store with component import { connect } from "react-redux"; // Action from redux store import { toggleAlert } from "../store/actions/home"; import { getAllCountries } from "../helper/countries"; interface IHomeProp extends RouteComponentProps { isAlert: boolean; toggleAlert(value: boolean): any; httpClient: SPHttpClient; } interface IHomeState { callAxiosTooltip: boolean; callSPRestTooltip: boolean; axiosStatus: string; spRestStatus: string; } class Home extends React.Component<IHomeProp, IHomeState> { constructor(props: IHomeProp) { super(props); this.state = { callAxiosTooltip: false, callSPRestTooltip: false, axiosStatus: "", spRestStatus: "" } as IHomeState; } toggleCallAxiosTooltip = () => { this.setState((state, prop) => ({ callAxiosTooltip: !state.callAxiosTooltip })); }; toggleCallSPRestTooltip = () => { this.setState((state, prop) => ({ callSPRestTooltip: !state.callSPRestTooltip })); }; // This is example of calling SharePoint rest api getAllLists = async () => { let response: SPHttpClientResponse = await this.props.httpClient .get( "https://contoso.sharepoint.com/sites/SubSite/_api/web/lists", SPHttpClient.configurations.v1, { headers: { Accept: "application/json;odata=nometadata", "odata-version": "" } } ) .catch(err => { throw err; }); let result = await response.json(); return result; }; public render(): React.ReactElement<IHomeProp> { return ( <React.Fragment> <Container fluid> <h1>Home</h1> <Card> <CardBody> <Row> <Col xs="12"> <FormGroup> <Label>Welcome to SPFx React Homepage.</Label> </FormGroup> </Col> <Col xs="12"> <FormGroup> {this.props.isAlert ? ( <Alert color="info"> This is alert. Toggle using redux. </Alert> ) : null} <Button size="sm" color="primary" onClick={() => this.props.toggleAlert(!this.props.isAlert) } > Toggle </Button> </FormGroup> </Col> <Col xs="12"> <FormGroup> <Button id="callAxios" color="info" size="sm" onClick={() => { this.setState({ axiosStatus: "Please wait" }); getAllCountries().then(countries => { this.setState({ axiosStatus: "Done. (Please check console)" }); console.log({ countries }); }); }} > Call Axios </Button> <Tooltip placement="right" target="callAxios" isOpen={this.state.callAxiosTooltip} toggle={this.toggleCallAxiosTooltip} > This will call 3<sup>rd</sup> party api call and return result in console </Tooltip> <p> Axios Status: <strong>{this.state.axiosStatus}</strong> </p> </FormGroup> </Col> <Col xs="12"> <FormGroup> <Button id="callSPRest" color="info" size="sm" onClick={() => { this.setState({ spRestStatus: "Please wait" }); this.getAllLists() .then(result => { this.setState({ spRestStatus: "Done. (Please check console)" }); console.log({ result }); }) .catch(err => { this.setState({ spRestStatus: "Error. Please follow tooltip" }); }); }} > Get All Lists </Button> <Tooltip placement="right" target="callSPRest" isOpen={this.state.callSPRestTooltip} toggle={this.toggleCallSPRestTooltip} > This won't work on localhost workbench. You need SPO Workbench. </Tooltip> <p> SP Rest Status: <strong>{this.state.spRestStatus}</strong> </p> </FormGroup> </Col> </Row> </CardBody> </Card> </Container> </React.Fragment> ); } } // Bind state from redux store to props const mapStateToProps = state => ({ isAlert: state.Home.alert, // state.<Name of Reducer>.<Name of state from initalState> eg. state.Home.alert httpClient: state.Home.httpClient }); // Bind actions from redux store to props const mapActionsToProps = { toggleAlert }; export default connect(mapStateToProps, mapActionsToProps)(Home);
#pragma once #include <string> #include <iostream> #include <sstream> using namespace std; class PhoneNumber { public: explicit PhoneNumber(const string &international_number); string GetCountryCode() const; string GetCityCode() const; string GetLocalNumber() const; string GetInternationalNumber() const; private: string country_code_; string city_code_; string local_number_; };
<reponame>tentone/covid19 /** * Governor applies measures to increase hospital capacity, increase transmission protection, etc. * * It controls the simulation parameters to prevent the disease. * * @constructor */ function Governor() { // Actuation frequency of the governor in days. It takes action each n days. this.frequency = 3; // Number of days of the governor in the simulation. this.days = 0; // Last values for reference this.last = null; // Governor storage data this.data = {}; // Governor JS code used control the governor behavior. this.code = ""; } /** * Method where the governor analyses data and applies measures. * * @param raw Raw actual epidemic data. * @param diff Diff compared to last analysis. * @param config Current measures applied by the governor. */ Governor.prototype.act = function(raw, diff, config) { /* // Emergency First Stage if(this.lockdownStage === 0) { config.measures.limitMovement = 0.7; config.measures.limitInfectedMovement = 0.8; config.measures.limitCrossDistrictMovement = 0.5; config.measures.limitForeigners = 0.7; config.measures.hospitalExtraCapacity += 5000; this.lockdownStage++; } // Emergency First Stage if(this.lockdownStage === 1 && raw.deaths > 100) { config.measures.limitMovement = 0.8; config.measures.limitInfectedMovement = 0.9; config.measures.limitCrossDistrictMovement = 0.7; config.measures.limitForeigners = 0.9; config.measures.reduceTransmission = 0.3; config.measures.hospitalExtraCapacity += 5000; this.lockdownStage++; } */ }; /** * Governor steps each couple of days to adjust the measure taken to control the virus. * * This method should be called every day. */ Governor.prototype.step = function(simulation, config) { if(this.days === 0) { this.last = simulation.data[simulation.data.length - 1]; } else if(this.days % this.frequency === 0) { var raw = simulation.data[simulation.data.length - 1]; var diff = raw.diff(simulation.data[simulation.data.length - (this.frequency)]); this.act(raw, diff, config); this.last = diff; } this.days++; }; /** * Load governor state data from JSON file. */ Governor.prototype.fromJSON = function(data) { // TODO <ADD CODE HERE> }; /** * Store governor state and results into a JSON object. */ Governor.prototype.toJSON = function() { // TODO <ADD CODE HERE> return null; }; export {Governor};
#!/bin/sh set -e git clone https://github.com/nanomsg/nnpy.git # top of tree won't install cd nnpy git checkout c7e718a5173447c85182dc45f99e2abcf9cd4065 sudo pip3 install cffi sudo pip3 install . cd ..
<reponame>terrycojones/describejson<gh_stars>1-10 #!/usr/bin/env python from types import ( BooleanType, DictType, FloatType, IntType, ListType, LongType, NoneType, UnicodeType) _typeToString = { BooleanType: 'boolean', DictType: 'dict', FloatType: 'float', IntType: 'int', ListType: 'list', LongType: 'long', NoneType: 'None', UnicodeType: 'unicode', } class JsonItem(object): DEFAULT_STRICTNESS = 'length' def __init__(self, item, indent=0, strictness=None): self._strictness = strictness or self.DEFAULT_STRICTNESS self._compare = getattr(self, '_eq_%s' % self._strictness) self._indent = indent self._duplications = 1 self._type = type(item) if self._type == DictType: self._len = len(item) if strictness == 'keys': self._keys = sorted(item.keys()) elif strictness == 'equal': self._item = item self._summarize(item.itervalues()) elif self._type == ListType: self._len = len(item) if strictness in ('keys', 'equal'): self._item = item self._summarize(item) def _summarize(self, items): self._contents = [] for i, item in enumerate(items): jsonItem = JsonItem(item, self._indent + 2, self._strictness) if i == 0: self._contents.append(jsonItem) else: if self._contents[-1] == jsonItem: self._contents[-1]._duplications += 1 else: self._contents.append(jsonItem) def __eq__(self, other): return self._compare(other) def _eq_type(self, other): """Equality only according to item type.""" return self._type == other._type def _eq_length(self, other): """Dicts and lists must have the same number of keys.""" if self._type == other._type: if self._type == DictType or self._type == ListType: return self._len == other._len else: return True else: return False def _eq_keys(self, other): """Lists must be equal, dicts must have the same keys.""" if self._type == other._type: if self._type == ListType: return self._item == other._item elif self._type == DictType: return self._keys == other._keys else: return True else: return False def _eq_equal(self, other): """Lists and dicts must be equal.""" if self._type == other._type: if self._type in (DictType, ListType): return self._item == other._item else: return True else: return False def _strList(self): prefix = '%s%s %s%s' % ( self._indent * ' ', self._duplications, _typeToString[self._type], '' if self._duplications == 1 else 's') if self._type in (DictType, ListType): result = ['%s of length %d.%s' % ( prefix, self._len, ' Values:' if self._len else '')] for item in self._contents: result.extend(item._strList()) else: result = [prefix] return result def __str__(self): return '\n'.join(self._strList()) if __name__ == '__main__': from json import loads import optparse import sys opts = optparse.OptionParser() opts.add_option('-s', '--strictness', default=JsonItem.DEFAULT_STRICTNESS, help=("How strictly to compare dicts and lists to " "each other. Possible values are 'type': by type " "only. 'length': by length. 'keys': lists by " "equality, dicts by keys. 'equal': dicts and list " "by equality. (default is '%default').")) args, opt = opts.parse_args() if args.strictness not in ('type', 'length', 'keys', 'equal'): print >>sys.stderr, 'Unknown strictness argument value.' sys.stdout = sys.stderr opts.print_help() sys.exit(1) try: j = loads(sys.stdin.read()) except ValueError, e: print >>sys.stderr, 'Could not load JSON object from stdin.' sys.exit(1) print JsonItem(j, indent=0, strictness=args.strictness)
"""Leetcode 1024. Video Stitching Medium URL: https://leetcode.com/problems/video-stitching/ You are given a series of video clips from a sporting event that lasted T seconds. These video clips can be overlapping with each other and have varied lengths. Each video clip clips[i] is an interval: it starts at time clips[i][0] and ends at time clips[i][1]. We can cut these clips into segments freely: for example, a clip [0, 7] can be cut into segments [0, 1] + [1, 3] + [3, 7]. Return the minimum number of clips needed so that we can cut the clips into segments that cover the entire sporting event ([0, T]). If the task is impossible, return -1. Example 1: Input: clips = [[0,2],[4,6],[8,10],[1,9],[1,5],[5,9]], T = 10 Output: 3 Explanation: We take the clips [0,2], [8,10], [1,9]; a total of 3 clips. Then, we can reconstruct the sporting event as follows: We cut [1,9] into segments [1,2] + [2,8] + [8,9]. Now we have segments [0,2] + [2,8] + [8,10] which cover the sporting event [0, 10]. Example 2: Input: clips = [[0,1],[1,2]], T = 5 Output: -1 Explanation: We can't cover [0,5] with only [0,1] and [0,2]. Example 3: Input: clips = [[0,1],[6,8],[0,2],[5,6],[0,4],[0,3],[6,7],[1,3], [4,7],[1,4],[2,5],[2,6],[3,4],[4,5],[5,7],[6,9]], T = 9 Output: 3 Explanation: We can take clips [0,4], [4,7], and [6,9]. Example 4: Input: clips = [[0,4],[2,8]], T = 5 Output: 2 Explanation: Notice you can have extra video after the event ends. Note: - 1 <= clips.length <= 100 - 0 <= clips[i][0], clips[i][1] <= 100 - 0 <= T <= 100 """ class SolutionSortStartDPGreedy(object): def videoStitching(self, clips, T): """ :type clips: List[List[int]] :type T: int :rtype: int Time complexity: O(n*logn+n*T), where n is clips length. Space complexity: O(T). """ # Sort clips by start. clips = sorted(clips) # Create dp table, where dp[t] is min number of clips to cover [0, t]. dp = [101] * 101 dp[0] = 0 # For each clip, loop over clip[0] ~ clip[1] to update dp[clip[0]] ~ dp[clip[1]]. for c in clips: for t in range(c[0] + 1, c[1] + 1): dp[t] = min(dp[t], dp[c[0]] + 1) if dp[T] >= T: # If dp at minute T is not updated. return -1 else: return dp[T] class SolutionDPGreedy(object): def videoStitching(self, clips, T): """ :type clips: List[List[int]] :type T: int :rtype: int Time complexity: O(n*T), where n is clips length. Space complexity: O(T). """ # Create dp table, where dp[t] is min number of clips to cover [0, t]. dp = [T + 1] * (T + 1) dp[0] = 0 # For each minute t, loop over clips to update t if clip[0] <= t <= clip[1]. for t in range(1, T + 1): if dp[t - 1] < T: for c in clips: if c[0] <= t <= c[1]: dp[t] = min(dp[t], dp[c[0]] + 1) else: break if dp[T] == T + 1: return -1 else: return dp[T] class SolutionSortStartBFSGreedy(object): def videoStitching(self, clips, T): """ :type clips: List[List[int]] :type T: int :rtype: int Time complexity: O(n*logn), where n is clips length. Space complexity: O(1). """ # Sort clips by start. clips = sorted(clips) # Apply greedy algorithm to check (start, end) in prev_end and end. prev_end, end = -1, 0 counter = 0 for s, e in clips: if end >= T or s > end: # If reached T already or s falls behind end. break elif prev_end < s: # If s falls in between prev_end and end. counter += 1 prev_end = end # Update end by new clip. end = max(end, e) # Check if end passes T. if end >= T: return counter else: return -1 def main(): # Output: 3 clips = [[0,2],[4,6],[8,10],[1,9],[1,5],[5,9]] T = 10 print SolutionSortStartDPGreedy().videoStitching(clips, T) print SolutionDPGreedy().videoStitching(clips, T) print SolutionSortStartBFSGreedy().videoStitching(clips, T) # # Output: -1 clips = [[0,1],[1,2]] T = 5 print SolutionSortStartDPGreedy().videoStitching(clips, T) print SolutionDPGreedy().videoStitching(clips, T) print SolutionSortStartBFSGreedy().videoStitching(clips, T) # Output: 3 clips = [[0,1],[6,8],[0,2],[5,6],[0,4],[0,3],[6,7],[1,3], [4,7],[1,4],[2,5],[2,6],[3,4],[4,5],[5,7],[6,9]] T = 9 print SolutionSortStartDPGreedy().videoStitching(clips, T) print SolutionDPGreedy().videoStitching(clips, T) print SolutionSortStartBFSGreedy().videoStitching(clips, T) # Output: 2 clips = [[0,4],[2,8]] T = 5 print SolutionSortStartDPGreedy().videoStitching(clips, T) print SolutionDPGreedy().videoStitching(clips, T) print SolutionSortStartBFSGreedy().videoStitching(clips, T) if __name__ == '__main__': main()
package com.github.teocci.camera.console.net; import com.github.teocci.camera.console.Main; import com.github.teocci.camera.console.controllers.ConnectController; import com.github.teocci.camera.console.controllers.SendMessageController; import com.github.teocci.camera.console.controllers.ConnectController; import com.github.teocci.camera.console.controllers.SendMessageController; /** * Created by teocci. * * @author <EMAIL> on 2017-May-19 */ public class SocketManager extends BaseCore implements Runnable { private Main application; private ConnectController connectController; private SendMessageController sendMessageController; private String host; private int port; private boolean isSSL = false; public SocketManager(Main application, String host, int port) { this.application = application; this.host = host; this.port = port; this.connectController = application.getConnectController(); this.sendMessageController = application.getSendMessageController(); } public void writeData(String str) throws Exception { write(str); application.getSendMessageController().addMessage("SEND", str); } public void writeByteData(byte[] msg) throws Exception { writeByte(msg); application.getSendMessageController().addMessage("SEND", msg.toString()); } @Override public void run() { try { setHost(host, port, isSSL); Boolean isConn = connect(); if (isConn) { application.setSocketManager(this); application.communicateSocket(); readMessage(); } if (application.getSendMessageController() != null) { application.getSendMessageController().setState("Reconnect succeeded"); } connectController.setConnResultLabel(isConn, null); } catch (Exception e) { if (application.getSendMessageController() != null) { application.getSendMessageController().setState(e.toString()); } if (connectController != null) { connectController.setConnResultLabel(false, e.toString()); } System.out.println("SocketManager: run | " + e.toString()); } } public boolean isConn() { return socket.isConnected(); } }
<filename>config/initializers/omniauth.rb require 'rollbar/rails' Rails.application.config.middleware.use OmniAuth::Builder do provider :twitch, ENV['TWITCH_CLIENT_ID'], ENV['TWITCH_CLIENT_SECRET'] provider :google_oauth2, ENV['GOOGLE_CLIENT_ID'], ENV['GOOGLE_CLIENT_SECRET'], { name: 'google' } end
#!/bin/bash # Based on script by William Lam - http://engineering.ucsb.edu/~duonglt/vmware/ # Bring CPUs online for CPU_DIR in /sys/devices/system/cpu/cpu[0-9]* do CPU=${CPU_DIR##*/} echo "Found cpu: '${CPU_DIR}' ..." CPU_STATE_FILE="${CPU_DIR}/online" if [ -f "${CPU_STATE_FILE}" ]; then if grep -qx 1 "${CPU_STATE_FILE}"; then echo -e "\t${CPU} already online" else echo -e "\t${CPU} is new cpu, onlining cpu ..." echo 1 > "${CPU_STATE_FILE}" fi else echo -e "\t${CPU} already configured prior to hot-add" fi done # Bring all new Memory online for RAM in $(grep line /sys/devices/system/memory/*/state) do echo "Found ram: ${RAM} ..." echo "${RAM}" | grep offline > /dev/null if [ $? -eq 0 ]; then echo "Bringing online" #echo $RAM | sed "s/:offline$//"|sed "s/^/echo online > /"|source /dev/stdin RAMFILE=$(echo "${RAM}" | awk -F ':' '{print $1}') echo online > "${RAMFILE}" else echo "Already online" fi done
package hu.unideb.inf.model; import javafx.beans.property.SimpleStringProperty; import javafx.beans.property.StringProperty; import javax.xml.bind.annotation.adapters.XmlAdapter; /** * This class enables for JAXB to marshal and unmarshal StringProperty objects. * @author <NAME> * */ public class StringPropertyAdapter extends XmlAdapter<String, StringProperty> { /** * This method returns the {@code String} value of a {@code StringProperty}. * @param stringProperty to marshal * @throws Exception may be threw by this method */ @Override public String marshal(StringProperty stringProperty) throws Exception { return stringProperty.get(); } /** * This method returns a {@code StringProperty} from a {@code String}. * @param string which is used to create the {@code StringProperty} * @throws Exception may be threw by this method */ @Override public StringProperty unmarshal(String string) throws Exception { return new SimpleStringProperty(string); } }
#!/bin/bash echo "* Add hosts ..." echo "192.168.99.100 docker.do1.lab docker" >> /etc/hosts echo "* Add Docker repository ..." dnf config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo echo "* Install Docker ..." dnf install -y docker-ce docker-ce-cli containerd.io echo "* Enable and start Docker ..." systemctl enable docker systemctl start docker echo "* Firewall - open port 8080 ..." firewall-cmd --add-port=8080/tcp –permanent firewall-cmd --reload echo "* Add vagrant user to docker group ..." usermod -aG docker vagrant
<gh_stars>10-100 import Radium from 'radium'; import Avatar from './component'; export default Radium(Avatar);
def levenshtein_distance(s1, s2): if len(s1) == 0: return len(s2) if len(s2) == 0: return len(s1) if s1[-1] == s2[-1]: cost = 0 else: cost = 1 res = min([levenshtein_distance(s1[:-1], s2)+1, levenshtein_distance(s1, s2[:-1])+1, levenshtein_distance(s1[:-1], s2[:-1]) + cost]) return res
import { Injectable } from '@angular/core'; import { HttpClient, HttpHeaders } from '@angular/common/http'; import { ConfigService } from '../../config/config.service'; import { SessionService } from '../../session/session.service'; import { BonitaActivity, BonitaError } from '../bonita-shared.model'; import { BonitaHumanTask, BonitaHumanTaskSetState } from './bonita-human-task.model'; import { BonitaActitivyService } from '../activity/bonita-actitivy.service'; @Injectable({ providedIn: 'root' }) export class BonitaHumanTaskService { private apiUrl: string; constructor( private http: HttpClient, private configService: ConfigService, private sessionService: SessionService, private bonitaActivityService: BonitaActitivyService ) { this.apiUrl = this.configService.Config.bonita.urls.humanTasks; } async delay(ms: number) { return new Promise( resolve => setTimeout(resolve, ms) ); } public async whaitFor(caseId: string, name: string, anotherId?: string): Promise<BonitaActivity> { let result; let cantidadIntentos = this.configService.Config.bonita.cantidadIntentosPolling; const reintentoPolling = this.configService.Config.bonita.reintentoPolling; let fin = false; while (!fin && cantidadIntentos > 0) { await this.getCurrent(caseId).then( task => { if (task && (task.name === name && (!anotherId || (task.id !== anotherId)))) { result = task; fin = true; } else { cantidadIntentos--; } }, error => { throw new BonitaError('Ha ocurrido un error inesperado'); } ); if (!result) { await this.delay(this.configService.Config.bonita.msDelayPolling); if (cantidadIntentos === 0) { const activities = await this.bonitaActivityService.getForCase(caseId); if (activities) { const failedIndex = activities.findIndex(a => a.state === 'failed'); if (failedIndex !== -1) { throw new BonitaError('Ha ocurrido un error ' + activities[failedIndex].description); } else { if (reintentoPolling) { cantidadIntentos = this.configService.Config.bonita.cantidadIntentosPolling; } } } } } } return result; } public getCurrent(caseId: string): Promise<BonitaHumanTask> { const promise = new Promise<BonitaHumanTask>((resolve, reject) => { const headers: HttpHeaders = new HttpHeaders().set( this.configService.Config.bonita.apiTokenHeader, this.sessionService.currentBonitaApiToken); const params = '?p=0&c=10&f=rootCaseId=' + caseId; this.http.get<BonitaHumanTask[]>(this.apiUrl + params, { headers: headers }).toPromise().then( resp => { resolve(resp[0]); // this.sessionService.currentActivity = resp; // if (resp) { // if (resp?.state === 'failed') { // reject('fallo la actividad!!'); // } else { // resolve(resp); // } // } }, err => { reject(err); } ); }); return promise; } public complete(taskId: number): Promise<string> { return new Promise<string>((resolve, reject) => { const headers: HttpHeaders = new HttpHeaders() .set( this.configService.Config.bonita.apiTokenHeader, this.sessionService.currentBonitaApiToken) .set('Content-Type', 'application/json'); const params = '/' + taskId; const body = new BonitaHumanTaskSetState(this.configService.Config.bonita.humanTaskAssignedId, 'completed'); this.http.put(this.apiUrl + params, body, { headers: headers }).toPromise().then( res => resolve('OK'), error => reject(error) ); }); } }
// Copyright (c) 2015-2016, ETH Zurich, <NAME>, Zurich Eye // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above copyright // notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the distribution. // * Neither the name of the ETH Zurich, Wyss Zurich, Zurich Eye nor the // names of its contributors may be used to endorse or promote products // derived from this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND // ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE // DISCLAIMED. IN NO EVENT SHALL ETH Zurich, <NAME>urich, Zurich Eye BE LIABLE FOR ANY // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND // ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include <gtest/gtest.h> // system includes #include <assert.h> #include <cstdint> #include <iostream> #include <random> #include <functional> #include <type_traits> #include <ze/common/random.hpp> #include <ze/common/test_entrypoint.hpp> #include <ze/common/test_utils.hpp> #include <ze/common/types.hpp> #include <imp/core/memory_storage.hpp> #include <imp/core/image_raw.hpp> #include <imp/core/roi.hpp> #include <imp/core/size.hpp> DEFINE_bool(visualize, false, "Show input images and results"); template <typename Pixel> class ImageRawTest : public ::testing::Test { protected: ImageRawTest() : image_512_(size_512_) , image_511_(size_511_) { using T = typename Pixel::T; auto random_val_generator = ze::uniformDistribution<T>(ZE_DETERMINISTIC); // initialize two random value and ensure that they are reasonably different T val1 = random_val_generator(); T val2; do { val2 = random_val_generator(); } while(std::fabs(val1-val2) < std::numeric_limits<T>::epsilon()); random_value1_ = Pixel(val1); random_value2_ = Pixel(val2); } void setValue() { image_512_.setValue(random_value1_); image_511_.setValue(random_value1_); } void setRoi() { image_512_.setRoi(roi_); image_511_.setRoi(roi_); } void setValueRoi() { this->setRoi(); image_512_.setValue(random_value2_); image_511_.setValue(random_value2_); } protected: uint8_t pixel_size_ = sizeof(Pixel); size_t pixel_bit_depth_ = 8*sizeof(Pixel); ze::Size2u size_512_{512u,512u}; ze::Size2u size_511_{511u,512u}; ze::Roi2u roi_{128,128,256,256}; ze::ImageRaw<Pixel> image_512_; ze::ImageRaw<Pixel> image_511_; Pixel random_value1_; Pixel random_value2_; }; // The list of types we want to test. typedef testing::Types< ze::Pixel8uC1, ze::Pixel8uC2, ze::Pixel8uC3, ze::Pixel8uC4, ze::Pixel16uC1, ze::Pixel16uC2, ze::Pixel16uC3, ze::Pixel16uC4, ze::Pixel16sC1, ze::Pixel16sC2, ze::Pixel16sC3, ze::Pixel16sC4, ze::Pixel32sC1, ze::Pixel32sC2, ze::Pixel32sC3, ze::Pixel32sC4, ze::Pixel32fC1, ze::Pixel32fC2, ze::Pixel32fC3, ze::Pixel32fC4> PixelTypes; TYPED_TEST_CASE(ImageRawTest, PixelTypes); TYPED_TEST(ImageRawTest, CheckMemforyAlignment) { EXPECT_EQ(0u, (std::uintptr_t)reinterpret_cast<void*>(this->image_512_.data()) % 32); // EXPECT_TRUE(ze::MemoryStorage::isAligned(this->image_512_.data())); EXPECT_EQ(0u, (std::uintptr_t)reinterpret_cast<void*>(this->image_511_.data()) % 32); // EXPECT_TRUE(ze::MemoryStorage::isAligned(this->image_511_.data())); EXPECT_EQ(512u, this->image_512_.stride()); EXPECT_EQ(512u, this->image_511_.stride()); EXPECT_EQ(512u*this->pixel_size_, this->image_512_.pitch()); EXPECT_EQ(512u*this->pixel_size_, this->image_511_.pitch()); } TYPED_TEST(ImageRawTest, CheckSize) { EXPECT_EQ(this->size_512_, this->image_512_.size()); EXPECT_EQ(this->size_511_, this->image_511_.size()); } TYPED_TEST(ImageRawTest, CheckNoRoi) { EXPECT_EQ(ze::Roi2u(0,0,512,512), this->image_512_.roi()); EXPECT_EQ(ze::Roi2u(this->size_511_), this->image_511_.roi()); } TYPED_TEST(ImageRawTest, CheckRoi) { this->setRoi(); EXPECT_EQ(this->roi_, this->image_512_.roi()); EXPECT_EQ(this->roi_, this->image_511_.roi()); } TYPED_TEST(ImageRawTest, CheckBytes) { EXPECT_EQ(512u*512u*this->pixel_size_, this->image_512_.bytes()); EXPECT_EQ(512u*512u*this->pixel_size_, this->image_511_.bytes()); EXPECT_EQ(this->size_512_[0]*this->pixel_size_, this->image_512_.rowBytes()); EXPECT_EQ(this->size_511_[0]*this->pixel_size_, this->image_511_.rowBytes()); } TYPED_TEST(ImageRawTest, CheckPixelBitDepth) { EXPECT_EQ(this->pixel_bit_depth_, this->image_512_.bitDepth()); EXPECT_EQ(this->pixel_bit_depth_, this->image_511_.bitDepth()); } TYPED_TEST(ImageRawTest, ReturnsFalseForNonGpuMemory) { ASSERT_FALSE(this->image_512_.isGpuMemory()); ASSERT_FALSE(this->image_511_.isGpuMemory()); } TYPED_TEST(ImageRawTest, CheckValues) { this->setValue(); for (ze::uint32_t y=0u; y<512; ++y) { for (ze::uint32_t x=0u; x<512; ++x) { EXPECT_EQ(this->image_512_(x,y), this->random_value1_); EXPECT_EQ(this->image_512_[y][x], this->random_value1_); EXPECT_EQ(*this->image_512_.data(x,y), this->random_value1_); if (x<511) { EXPECT_EQ(this->image_511_(x,y), this->random_value1_); EXPECT_EQ(this->image_511_[y][x], this->random_value1_); EXPECT_EQ(*this->image_511_.data(x,y), this->random_value1_); } } } } //----------------------------------------------------------------------------- TYPED_TEST(ImageRawTest, CheckRoiValues) { this->setValue(); this->setValueRoi(); for (ze::uint32_t y=0u; y<512; ++y) { for (ze::uint32_t x=0u; x<512; ++x) { if (x>=this->roi_.x() && x<(this->roi_.x()+this->roi_.width()) && y>=this->roi_.y() && y<(this->roi_.y()+this->roi_.height())) { EXPECT_EQ(this->image_512_(x,y), this->random_value2_); EXPECT_EQ(this->image_512_[y][x], this->random_value2_); EXPECT_EQ(*this->image_512_.data(x,y), this->random_value2_); if (x<511) { EXPECT_EQ(this->image_511_(x,y), this->random_value2_); EXPECT_EQ(this->image_511_[y][x], this->random_value2_); EXPECT_EQ(*this->image_511_.data(x,y), this->random_value2_); } } else { EXPECT_EQ(this->image_512_(x,y), this->random_value1_); EXPECT_EQ(this->image_512_[y][x], this->random_value1_); EXPECT_EQ(*this->image_512_.data(x,y), this->random_value1_); if (x<511) { EXPECT_EQ(this->image_511_(x,y), this->random_value1_); EXPECT_EQ(this->image_511_[y][x], this->random_value1_); EXPECT_EQ(*this->image_511_.data(x,y), this->random_value1_); } } } } } ZE_UNITTEST_ENTRYPOINT
<filename>app/controllers/AuthenticationController.scala package controllers import com.google.inject._ import play.api._ import play.api.mvc._ import play.api.data._ import play.api.data.Forms._ import play.api.i18n.Messages @Singleton class AuthenticationController @Inject() (cc: ControllerComponents) extends AbstractController(cc) with i18n.I18nSupport { val loginForm = Form(tuple("username" -> text, "password" -> text)) def login() = Action { implicit request: Request[AnyContent] => Ok(views.html.loginPage(loginForm)) } def loginPost() = Action { implicit request: Request[AnyContent] => { loginForm.bindFromRequest.fold( formWithErrors => BadRequest(views.html.loginPage(formWithErrors)), tuple => { val (username, password) = tuple if (Seq(("admin", "123"), ("tester", "456")) contains (username, password)) Redirect(routes.HomeController.index()).withSession(request.session + ("username" -> username) + ("password" -> password)) else BadRequest(views.html.loginPage(loginForm.fill(tuple).withError(FormError("", Messages("error.login"))))) }) } } def logout() = Action { implicit request: Request[AnyContent] => { Redirect(routes.HomeController.index()).withSession(request.session - "username" - "password") } } }
// // Created by ooooo on 2020/2/2. // #ifndef CPP_1071__SOLUTION2_H_ #define CPP_1071__SOLUTION2_H_ #include <iostream> #include <math.h> #include <numeric> using namespace std; /** * gcd */ class Solution { public: string gcdOfStrings(string str1, string str2) { if (str1 + str2 != str2 + str1) return ""; return str1.substr(0, gcd(str1.size(), str2.size())); } }; #endif //CPP_1071__SOLUTION2_H_
#!/bin/bash docker run -d --name dc-server --net caching_network -d --security-opt "apparmor=cloudsuitedata-cachingserver_profile" cloudsuite/data-caching:server -t 4 -m 4096 -n 550 docker run -d -t --name dc-client --net caching_network -v /home/ubuntu/SecureWilly/Benchmarks/data-caching/scripts:/scripts --security-opt "apparmor=cloudsuitedata-cachingclient_profile" cloudsuite/data-caching:client bash docker exec -t dc-client ./scripts/1_create_dataset.sh docker exec -t dc-client ./scripts/2_run.sh docker exec -t dc-client ./scripts/3_run.sh docker stop dc-client docker stop dc-server
<?php // Create a class to represent a digital clock class DigitalClock { // Declare the properties private $hours; private $minutes; private $seconds; // Define the constructor public function __construct(){ $this->hours = 0; $this->minutes = 0; $this->seconds = 0; } // Define the functions public function start(){ while(true){ // Increase the seconds $this->seconds++; if($this->seconds == 60){ // Increase the minutes $this->minutes++; $this->seconds = 0; } if($this->minutes == 60){ // Increase the hours $this->hours++; $this->minutes = 0; } // Display the time echo $this->hours.':'.$this->minutes.':'.$this->seconds; // Delay for 1 second sleep(1); } } } // Create an instance of the DigitalClock class $clock = new DigitalClock(); // Start the clock $clock->start(); ?>
from tkinter import messagebox import bcrypt class Authenticator(object): def __init__(self, db): self._db = db def validate_login(self, username, password): user = self._db.get_user(username) if user is None: messagebox.showinfo( title="Information", message="Invalid username or password" ) return None password_bytes = password.encode("utf-8") new_key = bcrypt.hashpw(password_bytes, user.salt) if bcrypt.hashpw(password_bytes, new_key) == user.salt: return user else: messagebox.showinfo( title="Information", message="Invalid username or password" ) return None def register_user( self, username, password, oanda_account, oanda_api, news_api, alpha_vantage_api ): if len(password) < 4 or len(username) < 4: messagebox.showinfo( title="Information", message="The username and password must be greater than 3 characters", ) return False is_valid_user = self._db.validate_registration(username) if is_valid_user: hash = self._hash_password(password) self._db.store_user_credentials( username, hash, oanda_account, oanda_api, news_api, alpha_vantage_api ) messagebox.showinfo( title="Information", message=f"An account for {username} has now been created.", ) return True else: messagebox.showinfo( title="Information", message="This username already exists" ) return False def _hash_password(self, password): password_bytes = password.encode("utf-8") salt = bcrypt.gensalt() key = bcrypt.hashpw(password_bytes, salt) hash = {"salt": salt, "key": key} return hash
<filename>src/main/java/es/upm/etsisi/cf4j/recommender/matrixFactorization/URP.java package es.upm.etsisi.cf4j.recommender.matrixFactorization; import es.upm.etsisi.cf4j.util.process.Parallelizer; import es.upm.etsisi.cf4j.util.process.Partible; import es.upm.etsisi.cf4j.data.DataModel; import es.upm.etsisi.cf4j.data.Item; import es.upm.etsisi.cf4j.data.User; import es.upm.etsisi.cf4j.recommender.Recommender; import org.apache.commons.math3.special.Gamma; import java.util.Arrays; import java.util.Map; import java.util.Random; import java.util.concurrent.ConcurrentHashMap; /** * Implements <NAME>. (2004). Modeling user rating profiles for collaborative filtering. In * Advances in neural information processing systems (pp. 627-634). */ public class URP extends Recommender { protected static final double DEFAULT_H = 0.1; protected static final double EPSILON = 1E-2; /** Number of iterations */ protected final int numIters; /** Number of latent factors */ protected final int numFactors; /** Heuristic factor to control number of iterations during E-Step */ protected final double H; /** Plausible ratings (must be sorted in ascending order) */ protected final double[] ratings; /** Gamma parameter */ protected final double[][] gamma; /** Beta parameter */ protected final double[][][] beta; /** Alpha parameter */ protected final double[] alpha; /** Phi parameter */ protected final Map<Integer, double[][]> phi; /** * Model constructor from a Map containing the model's hyper-parameters values. Map object must * contains the following keys: * * <ul> * <li><b>numFactors</b>: int value with the number of latent factors. * <li><b>ratings</b>: double array with the plausible ratings of the DataModel. * <li><b>numIters:</b>: int value with the number of iterations. * <li><b><em>H</em></b> (optional): double value that represents the heuristic factor to * control the number of iterations during E-Step. The number of iterations is defined by H * * number_of_user_ratings. * <li><b><em>seed</em></b> (optional): random seed for random numbers generation. If missing, * random value is used. * </ul> * * @param datamodel DataModel instance * @param params Model's hyper-parameters values */ public URP(DataModel datamodel, Map<String, Object> params) { this( datamodel, (int) params.get("numFactors"), (double[]) params.get("ratings"), (int) params.get("numIters"), params.containsKey("H") ? (double) params.get("H") : DEFAULT_H, params.containsKey("seed") ? (long) params.get("seed") : System.currentTimeMillis()); } /** * Model constructor * * @param datamodel DataModel instance * @param numFactors Number of latent factors * @param ratings Plausible ratings (must be sorted in ascending order) * @param numIters Number of iterations */ public URP(DataModel datamodel, int numFactors, double[] ratings, int numIters) { this(datamodel, numFactors, ratings, numIters, System.currentTimeMillis()); } /** * Model constructor * * @param datamodel DataModel instance * @param numFactors Number of latent factors * @param ratings Plausible ratings (must be sorted in ascending order) * @param numIters Number of iterations * @param seed Seed for random numbers generation */ public URP(DataModel datamodel, int numFactors, double[] ratings, int numIters, long seed) { this(datamodel, numFactors, ratings, numIters, DEFAULT_H, seed); } /** * Model constructor * * @param datamodel DataModel instance * @param numFactors Number of latent factors * @param ratings Plausible ratings (must be sorted in ascending order) * @param numIters Number of iterations * @param H Heuristic factor to control number of iterations during E-Step. The number of * iterations is defined by H * number_of_user_ratings */ public URP(DataModel datamodel, int numFactors, double[] ratings, int numIters, double H) { this(datamodel, numFactors, ratings, numIters, H, System.currentTimeMillis()); } /** * Model constructor * * @param datamodel DataModel instance * @param numFactors Number of latent factors * @param ratings Plausible ratings (must be sorted in ascending order) * @param numIters Number of iterations * @param H Heuristic factor to control number of iterations during E-Step. The number of * iterations is defined by H * number_of_user_ratings * @param seed Seed for random numbers generation */ public URP( DataModel datamodel, int numFactors, double[] ratings, int numIters, double H, long seed) { super(datamodel); this.numFactors = numFactors; this.numIters = numIters; this.ratings = ratings; this.H = H; int numRatings = ratings.length; int numUsers = datamodel.getNumberOfUsers(); int numItems = datamodel.getNumberOfItems(); Random rand = new Random(seed); this.gamma = new double[numUsers][numFactors]; for (int i = 0; i < this.gamma.length; i++) { for (int j = 0; j < this.gamma[i].length; j++) { this.gamma[i][j] = rand.nextDouble(); } } this.beta = new double[numItems][numRatings][numFactors]; for (int i = 0; i < this.beta.length; i++) { for (int j = 0; j < this.beta[i].length; j++) { for (int k = 0; k < this.beta[i][j].length; k++) { this.beta[i][j][k] = rand.nextDouble(); } } } this.alpha = new double[numFactors]; for (int i = 0; i < this.alpha.length; i++) { this.alpha[i] = rand.nextDouble(); } this.phi = new ConcurrentHashMap<>(); } /** * Get the number of factors of the model * * @return Number of factors */ public int getNumFactors() { return this.numFactors; } /** * Get the number of iterations * * @return Number of iterations */ public int getNumIters() { return this.numIters; } /** * Get the plausible ratings * * @return Plausible ratings */ public double[] getRatings() { return ratings; } /** * Get the H value * * @return H value */ public double getH() { return H; } @Override public void fit() { System.out.println("\nFitting " + this.toString()); for (int iter = 1; iter <= this.numIters; iter++) { Parallelizer.exec(this.datamodel.getUsers(), new UpdatePhiGamma()); Parallelizer.exec(this.datamodel.getItems(), new UpdateBeta()); double diff; do { diff = 0; double as = 0; // alpha sum for (int z = 0; z < this.numFactors; z++) { as += this.alpha[z]; } for (int z = 0; z < this.numFactors; z++) { double gs = 0; // gamma sum for (int userIndex = 0; userIndex < datamodel.getNumberOfUsers(); userIndex++) { gs += this.gamma[userIndex][z]; } double sum = 0; for (int userIndex = 0; userIndex < datamodel.getNumberOfUsers(); userIndex++) { sum += Gamma.digamma(this.gamma[userIndex][z]) - Gamma.digamma(gs); } double psiAlpha = Gamma.digamma(as) + sum / datamodel.getNumberOfUsers(); double newAlpha = this.inversePsi(psiAlpha); diff += Math.abs(this.alpha[z] - newAlpha); this.alpha[z] = newAlpha; } } while (diff > EPSILON); if ((iter % 10) == 0) System.out.print("."); if ((iter % 100) == 0) System.out.println(iter + " iterations"); } } @Override public double predict(int userIndex, int itemIndex) { double[] pd = this.getPredictionProbabilityDistribution(userIndex, itemIndex); double acc = 0; int v = -1; do { v++; acc += pd[v]; } while (acc < 0.5); return this.ratings[v]; } /** * Returns the probability distribution of a prediction. Each position of the returned array * corresponds with the probability that the user (defined by userIndex) rates the item (defined * by itemIndex) with the rating value that is in the same position in the array returned by * getRatings() * * @param userIndex User * @param itemIndex Item * @return Probability distribution of the prediction */ public double[] getPredictionProbabilityDistribution(int userIndex, int itemIndex) { double sumGamma = 0; for (int j = 0; j < this.numFactors; j++) { sumGamma += this.gamma[userIndex][j]; } double[] probabilities = new double[this.ratings.length]; double sumProbabilities = 0; for (int v = 0; v < this.ratings.length; v++) { for (int z = 0; z < this.numFactors; z++) { probabilities[v] += this.beta[itemIndex][v][z] * this.gamma[userIndex][z] / sumGamma; } sumProbabilities += probabilities[v]; } for (int v = 0; v < this.ratings.length; v++) { probabilities[v] /= sumProbabilities; } return probabilities; } @Override public String toString() { return "URP(" + "numFactors=" + this.numFactors + "; " + "numIters=" + this.numIters + "; " + "ratings=" + Arrays.toString(this.ratings) + "; " + "H=" + this.H + ")"; } /** * Computes the inverse of the PSI function. Source: * http://bariskurt.com/calculating-the-inverse-of-digamma-function/ * * @param value value * @return PSI^-1(value) */ private double inversePsi(double value) { double inv = (value >= -2.22) ? Math.exp(value) + 0.5 : -1.0 / (value - Gamma.digamma(1)); for (int i = 0; i < 3; i++) { inv -= (Gamma.digamma(inv) - value) / Gamma.trigamma(inv); } return inv; } /** Auxiliary inner class to parallelize user factors computation */ private class UpdatePhiGamma implements Partible<User> { @Override public void beforeRun() {} @Override public void run(User user) { int userIndex = user.getUserIndex(); double[][] userPhi = new double[user.getNumberOfRatings()][numFactors]; for (int h = 0; h < Math.max(1, H * user.getNumberOfRatings()); h++) { // update phi double gs = 0; // gamma sum for (int z = 0; z < numFactors; z++) { gs += gamma[userIndex][z]; } for (int pos = 0; pos < user.getNumberOfRatings(); pos++) { int itemIndex = user.getItemAt(pos); double rating = user.getRatingAt(pos); int v = Arrays.binarySearch(ratings, rating); for (int z = 0; z < URP.this.numFactors; z++) { userPhi[pos][z] = Math.exp(Gamma.digamma(gamma[userIndex][z]) - Gamma.digamma(gs)) * beta[itemIndex][v][z]; } } // update gamma for (int z = 0; z < numFactors; z++) { gamma[userIndex][z] = URP.this.alpha[z]; for (int pos = 0; pos < user.getNumberOfRatings(); pos++) { gamma[userIndex][z] += userPhi[pos][z]; } } } phi.put(userIndex, userPhi); } @Override public void afterRun() {} } /** Auxiliary inner class to parallelize item factors computation */ private class UpdateBeta implements Partible<Item> { @Override public void beforeRun() {} @Override public void run(Item item) { int itemIndex = item.getItemIndex(); beta[itemIndex] = new double[ratings.length][numFactors]; // reset beta for (int pos = 0; pos < item.getNumberOfRatings(); pos++) { int userIndex = item.getUserAt(pos); User user = datamodel.getUser(userIndex); int p = user.findItem(itemIndex); double[][] userPhi = phi.get(userIndex); double rating = item.getRatingAt(pos); int v = Arrays.binarySearch(ratings, rating); for (int z = 0; z < numFactors; z++) { beta[itemIndex][v][z] += userPhi[p][z]; } } } @Override public void afterRun() {} } }
package design.sterereotypes; /** * Transforms information and request between distinct parts of the system */ public interface Interfacer { }
var inputString = "This is an example string"; var outputString = inputString.replace(/\b\w/g, function(l){ return l.toUpperCase() }); $('#output').html(outputString);
#!/usr/bin/env bash set -e import com.encodeering.ci.config import com.encodeering.ci.docker docker-pull "$REPOSITORY/alpine-$ARCH:3.11" "alpine:3.11" docker-build "$PROJECT/${VERSION%.*}/alpine3.11"
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2010.01.26 at 12:40:25 PM MST // package net.opengis.ows._110; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * Contents of typical Contents section of an OWS service metadata (Capabilities) document. This type shall be extended and/or restricted if needed for specific OWS use to include the specific metadata needed. * * <p>Java class for ContentsBaseType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;complexType name="ContentsBaseType"> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.opengis.net/ows/1.1}DatasetDescriptionSummary" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.opengis.net/ows/1.1}OtherSource" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ContentsBaseType", propOrder = { "datasetDescriptionSummary", "otherSource" }) public class ContentsBaseType { @XmlElement(name = "DatasetDescriptionSummary") protected List<DatasetDescriptionSummaryBaseType> datasetDescriptionSummary; @XmlElement(name = "OtherSource") protected List<MetadataType> otherSource; /** * Unordered set of summary descriptions for the datasets available from this OWS server. This set shall be included unless another source is referenced and all this metadata is available from that source. Gets the value of the datasetDescriptionSummary property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the datasetDescriptionSummary property. * * <p> * For example, to add a new item, do as follows: * <pre> * getDatasetDescriptionSummary().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link DatasetDescriptionSummaryBaseType } * * */ public List<DatasetDescriptionSummaryBaseType> getDatasetDescriptionSummary() { if (datasetDescriptionSummary == null) { datasetDescriptionSummary = new ArrayList<DatasetDescriptionSummaryBaseType>(); } return this.datasetDescriptionSummary; } /** * Unordered set of references to other sources of metadata describing the coverage offerings available from this server. Gets the value of the otherSource property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the otherSource property. * * <p> * For example, to add a new item, do as follows: * <pre> * getOtherSource().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link MetadataType } * * */ public List<MetadataType> getOtherSource() { if (otherSource == null) { otherSource = new ArrayList<MetadataType>(); } return this.otherSource; } }
import { BitDirection, Glyph } from "./glyph"; import { BitmapFont } from "./bitmap_font"; import { range } from "./arrays"; export interface ImportOptions { // width of each cell in the grid cellWidth: number; // height of each cell in the grid cellHeight: number; // rows or columns? columns?: boolean; // big or little endian? direction?: BitDirection; // add an extra row/column? pad?: boolean; // where to log debug messages logger?: (text: string) => void; } // 0xHH or DD optionally followed by commas and whitespace // (the "g" is necessary to make matchAll work, because the ES6 engine keeps // mutable state in the regex itself to track successive matches) O_o const DATA_REGEX = /\b(?:(0x[0-9a-fA-F]+|\d+)\s*(?:$|,))/g; export function importHeader(content: string, options: ImportOptions): BitmapFont { let data: number[] = []; let found_data = false; const lines = content.split("\n").map(line => line.trim()); lines.forEach((line, i) => { // get rid of C-style comments line = line.replace(/\/\/(.*?)$/, ""); const fields = matchAll(DATA_REGEX, line).map(m => { if (m[1].startsWith("0x")) { return parseInt(m[1].slice(2), 16); } else { return parseInt(m[1], 10); } }); if (fields.length >= 1) { if (!found_data) { found_data = true; if (options.logger) options.logger(`Found data starting at line ${i + 1}`); } data.push(...fields); } }); // is this plausible? const glyph_size = options.columns ? options.cellWidth : options.cellHeight; if (data.length % glyph_size != 0) { if (options.logger) options.logger(`Expected multiple of ${glyph_size} bytes, found ${data.length}`); throw new Error("Invalid data"); } const glyph_count = data.length / glyph_size; options.logger?.(`Found ${glyph_count} glyphs (${options.cellWidth} x ${options.cellHeight})`); const font = new BitmapFont(true); for (const i of range(0, glyph_count)) { const offset = i * glyph_size; const glyph_data = data.slice(offset, offset + glyph_size); if (options.pad) glyph_data.push(0); const glyph = options.columns ? Glyph.fromColumns(glyph_data, options.cellHeight, options.direction) : Glyph.fromRows(glyph_data, options.cellWidth, options.direction); font.add(glyph, [ i ]); } return font; } // not all ES6 engines have matchAll (?!) export function matchAll(r: RegExp, s: string): RegExpExecArray[] { const rv: RegExpExecArray[] = []; let m = r.exec(s); while (m != null) { rv.push(m); m = r.exec(s); } return rv; }
SELECT * FROM employees WHERE salary > 50000 ORDER BY salary DESC;
<reponame>sagarl/Raigad<filename>raigad-es-extensions/src/main/java/org/elasticsearch/discovery/custom/CustomUnicastHostsProvider.java<gh_stars>0 /** * Copyright 2014 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.elasticsearch.discovery.custom; import org.elasticsearch.Version; import org.elasticsearch.cluster.node.DiscoveryNode; import org.elasticsearch.common.collect.Lists; import org.elasticsearch.common.component.AbstractComponent; import org.elasticsearch.common.inject.Inject; import org.elasticsearch.common.settings.Settings; import org.elasticsearch.common.transport.TransportAddress; import org.elasticsearch.discovery.zen.ping.unicast.UnicastHostsProvider; import org.elasticsearch.discovery.zen.ping.unicast.UnicastZenPing; import org.elasticsearch.transport.TransportService; import java.util.List; public class CustomUnicastHostsProvider extends AbstractComponent implements UnicastHostsProvider { private final TransportService transportService; private final Version version; private final Settings settings; @Inject public CustomUnicastHostsProvider(Settings settings, TransportService transportService, Version version) { super(settings); this.transportService = transportService; this.version = version; this.settings = settings; } @Override public List<DiscoveryNode> buildDynamicNodes() { List<DiscoveryNode> discoNodes = Lists.newArrayList(); try { //Extract tribe id from Name field of Settings and query accordingly String strNodes; if (isCurrentNodeTribe(settings)) { String nodeName = settings.get("name"); //TODO: Check for Null Node Name ?? String tribeId = nodeName.substring(nodeName.indexOf("/") + 1); logger.debug("Tribe Node Name = {}, Tribe Id = {}",nodeName,tribeId); strNodes = DataFetcher.fetchData("http://127.0.0.1:8080/Raigad/REST/v1/esconfig/get_tribe_nodes/" + tribeId, logger); }else strNodes = DataFetcher.fetchData("http://127.0.0.1:8080/Raigad/REST/v1/esconfig/get_nodes",logger); List<RaigadInstance> instances = ElasticsearchUtil.getRaigadInstancesFromJsonString(strNodes, logger); for (RaigadInstance instance : instances) { try { TransportAddress[] addresses = transportService.addressesFromString(instance.getHostIP()); // we only limit to 1 addresses, makes no sense to ping 100 ports for (int i = 0; (i < addresses.length && i < UnicastZenPing.LIMIT_PORTS_COUNT); i++) { logger.debug( "adding {}, address {}, transport_address {}", instance.getId(), instance.getHostIP(),addresses[i]); discoNodes.add(new DiscoveryNode(instance.getId(),addresses[i], version.minimumCompatibilityVersion())); } } catch (Exception e) { logger.warn("failed to add {}, address {}", e,instance.getId(), instance.getHostIP()); } } } catch (Exception e) { logger.error("Caught an exception while trying to add buildDynamicNodes", e); throw new RuntimeException(e); } logger.info("using dynamic discovery nodes {}", discoNodes); return discoNodes; } private boolean isCurrentNodeTribe(Settings settings) { boolean currentNodeTribe = false; if(settings!=null && settings.get("name") != null && !settings.get("name").isEmpty()) { String tribeName = settings.get("name"); if (tribeName.contains("/t")) currentNodeTribe = true; } return currentNodeTribe; } }
# !/bin/bash # https://coreos.com/os/docs/latest/sdk-modifying-coreos.html # The cork utility, included in the CoreOS mantle project, can be used to create and work with an SDK chroot. # In order to use this utility, you must additionally have the golang toolchain installed and configured correctly. # First, install the cork utility: git clone https://github.com/coreos/mantle cd mantle ./build cork mkdir ~/bin mv ./bin/cork ~/bin export PATH=$PATH:$HOME/bin # You may want to add the PATH export to your shell profile (e.g. .bashrc). # Next, the cork utility can be used to create an SDK chroot: mkdir coreos-sdk cd coreos-sdk cork create cork enter
<gh_stars>0 const toIterable = require('callbag-to-iterable') const toArray = source => Array.from(toIterable(source)) module.exports = toArray
rm buf_que ctrl data_ram ex ex_mem id id_ex if_id inst_rom mem mem_wb openmips openmips_min_sopc openmips_min_sopc_tb pc_reg pdt regfile uart_com *~
<filename>Example/ExamplePlugin.cpp<gh_stars>1-10 /* * Copyright 2013 <NAME>, <EMAIL> * All rights reserved. Distributed under the terms of the MIT License. */ #include "ExamplePlugin.h" #include <Directory.h> #include <Entry.h> #include <File.h> #include <List.h> #include <Path.h> #include "BlogPositiveBlog.h" #include "BlogPositivePost.h" bool ExamplePlugin::Supports(int32 Code) { return Code == 'BACN'; } uint32 ExamplePlugin::MainHandler() { return 'BACN'; } PostList* ExamplePlugin::GetBlogPosts(BlogPositiveBlog* blog) { PostList* list = new PostList(); BDirectory Dir(blog->Authentication()); BEntry entry; while (Dir.GetNextEntry(&entry) == B_OK) { char name[B_FILE_NAME_LENGTH]; entry.GetName(name); BFile file(&entry, B_READ_ONLY); off_t size; file.GetSize(&size); char* pointer = new char[size]; file.Read(reinterpret_cast<void*>(pointer), size); BlogPositivePost* post = new BlogPositivePost(blog); post->SetName(name); post->SetPage(reinterpret_cast<const char*>(pointer)); list->AddItem(post); } return list; } BlogPositivePost* ExamplePlugin::CreateNewPost(BlogPositiveBlog* blog, const char* name) { BPath path(blog->Authentication()); path.Append(name); BFile file(path.Path(), B_WRITE_ONLY | B_ERASE_FILE | B_CREATE_FILE); char a = '\0'; file.Write(static_cast<void*>(&a), sizeof(a)); BlogPositivePost* p = new BlogPositivePost(blog); p->SetName(name); p->SetPage(""); return p; } void ExamplePlugin::RemovePost(BlogPositivePost* post) { BPath path(post->Blog()->Authentication()); path.Append(post->Name()); BEntry entr(path.Path()); entr.Remove(); } void ExamplePlugin::SavePost(BlogPositivePost* post) { BPath path(post->Blog()->Authentication()); path.Append(post->Name()); BFile file(path.Path(), B_WRITE_ONLY | B_ERASE_FILE); char* page = const_cast<char*>(post->Page()); file.Write(reinterpret_cast<void*>(page), post->PageSize()+1); }
require 'rails_helper' RSpec.describe User, type: :model do context 'Validations user test' do fixtures :users before :each do @user = users(:first) @user_new = User.create(name: 'User1001') end it 'should be valid' do expect(@user).to be_valid end it 'should be present' do expect(@user_new).to be_present end it 'name should not be spaces' do @user.name = ' ' expect(@user).to_not be_valid end end context 'Associations user test' do it 'has many invites' do assc = User.reflect_on_association(:attendances) expect(assc.macro).to eq :has_many end it 'has many events_as_creator' do assc = User.reflect_on_association(:events_as_creator) expect(assc.macro).to eq :has_many end it 'has many events_as_guest' do assc = User.reflect_on_association(:events_as_guest) expect(assc.macro).to eq :has_many end end end
<reponame>heylenz/python27<filename>Lib/site-packages/PySide/examples/tools/qtdemo/qtdemo_rc.py<gh_stars>0 # -*- coding: utf-8 -*- # Resource object code # # Created: Thu May 29 21:25:23 2008 # by: The Resource Compiler for PyQt (Qt v4.4.0) # # WARNING! All changes made in this file will be lost! from PySide import QtCore qt_resource_data = "\ \x00\x00\x1e\x55\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ \x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x69\x73\x6f\ \x2d\x38\x38\x35\x39\x2d\x31\x22\x3f\x3e\x0a\x3c\x63\x61\x74\x65\ \x67\x6f\x72\x69\x65\x73\x3e\x0a\x20\x20\x3c\x63\x61\x74\x65\x67\ \x6f\x72\x79\x20\x64\x69\x72\x6e\x61\x6d\x65\x3d\x22\x64\x65\x73\ \x69\x67\x6e\x65\x72\x22\x20\x6e\x61\x6d\x65\x3d\x22\x51\x74\x20\ \x44\x65\x73\x69\x67\x6e\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\ \x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\ \x3d\x22\x63\x61\x6c\x63\x75\x6c\x61\x74\x6f\x72\x62\x75\x69\x6c\ \x64\x65\x72\x22\x20\x6e\x61\x6d\x65\x3d\x22\x43\x61\x6c\x63\x75\ \x6c\x61\x74\x6f\x72\x20\x42\x75\x69\x6c\x64\x65\x72\x22\x20\x2f\ \x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\ \x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x63\x61\x6c\x63\x75\x6c\x61\ \x74\x6f\x72\x66\x6f\x72\x6d\x22\x20\x6e\x61\x6d\x65\x3d\x22\x43\ \x61\x6c\x63\x75\x6c\x61\x74\x6f\x72\x20\x46\x6f\x72\x6d\x22\x20\ \x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\ \x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x63\x6f\x6e\x74\x61\x69\ \x6e\x65\x72\x65\x78\x74\x65\x6e\x73\x69\x6f\x6e\x22\x20\x6e\x61\ \x6d\x65\x3d\x22\x43\x6f\x6e\x74\x61\x69\x6e\x65\x72\x20\x45\x78\ \x74\x65\x6e\x73\x69\x6f\x6e\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ \x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\ \x65\x3d\x22\x70\x6c\x75\x67\x69\x6e\x73\x22\x20\x6e\x61\x6d\x65\ \x3d\x22\x43\x75\x73\x74\x6f\x6d\x20\x57\x69\x64\x67\x65\x74\x20\ \x50\x6c\x75\x67\x69\x6e\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ \x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\ \x65\x3d\x22\x74\x61\x73\x6b\x6d\x65\x6e\x75\x65\x78\x74\x65\x6e\ \x73\x69\x6f\x6e\x22\x20\x6e\x61\x6d\x65\x3d\x22\x54\x61\x73\x6b\ \x20\x4d\x65\x6e\x75\x20\x45\x78\x74\x65\x6e\x73\x69\x6f\x6e\x22\ \x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\ \x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x77\x6f\x72\x6c\x64\ \x74\x69\x6d\x65\x63\x6c\x6f\x63\x6b\x62\x75\x69\x6c\x64\x65\x72\ \x22\x20\x6e\x61\x6d\x65\x3d\x22\x57\x6f\x72\x6c\x64\x20\x54\x69\ \x6d\x65\x20\x43\x6c\x6f\x63\x6b\x20\x42\x75\x69\x6c\x64\x65\x72\ \x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\ \x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x77\x6f\x72\x6c\ \x64\x74\x69\x6d\x65\x63\x6c\x6f\x63\x6b\x70\x6c\x75\x67\x69\x6e\ \x22\x20\x6e\x61\x6d\x65\x3d\x22\x57\x6f\x72\x6c\x64\x20\x54\x69\ \x6d\x65\x20\x43\x6c\x6f\x63\x6b\x20\x50\x6c\x75\x67\x69\x6e\x22\ \x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x63\x61\x74\x65\x67\x6f\x72\x79\ \x3e\x0a\x20\x20\x3c\x63\x61\x74\x65\x67\x6f\x72\x79\x20\x64\x69\ \x72\x6e\x61\x6d\x65\x3d\x22\x64\x65\x73\x6b\x74\x6f\x70\x22\x20\ \x6e\x61\x6d\x65\x3d\x22\x44\x65\x73\x6b\x74\x6f\x70\x22\x3e\x0a\ \x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\ \x65\x6e\x61\x6d\x65\x3d\x22\x73\x79\x73\x74\x72\x61\x79\x22\x20\ \x6e\x61\x6d\x65\x3d\x22\x53\x79\x73\x74\x65\x6d\x20\x54\x72\x61\ \x79\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x63\x61\x74\x65\x67\x6f\ \x72\x79\x3e\x0a\x20\x20\x3c\x63\x61\x74\x65\x67\x6f\x72\x79\x20\ \x64\x69\x72\x6e\x61\x6d\x65\x3d\x22\x64\x69\x61\x6c\x6f\x67\x73\ \x22\x20\x6e\x61\x6d\x65\x3d\x22\x44\x69\x61\x6c\x6f\x67\x73\x22\ \x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\ \x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x63\x6f\x6d\x70\x6c\x65\x78\ \x77\x69\x7a\x61\x72\x64\x22\x20\x6e\x61\x6d\x65\x3d\x22\x43\x6f\ \x6d\x70\x6c\x65\x78\x20\x57\x69\x7a\x61\x72\x64\x22\x20\x2f\x3e\ \x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\ \x6c\x65\x6e\x61\x6d\x65\x3d\x22\x63\x6f\x6e\x66\x69\x67\x64\x69\ \x61\x6c\x6f\x67\x22\x20\x6e\x61\x6d\x65\x3d\x22\x43\x6f\x6e\x66\ \x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x20\x44\x69\x61\x6c\x6f\x67\ \x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\ \x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x65\x78\x74\x65\ \x6e\x73\x69\x6f\x6e\x22\x20\x6e\x61\x6d\x65\x3d\x22\x45\x78\x74\ \x65\x6e\x73\x69\x6f\x6e\x20\x44\x69\x61\x6c\x6f\x67\x22\x20\x2f\ \x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\ \x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x66\x69\x6e\x64\x66\x69\x6c\ \x65\x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\x46\x69\x6e\x64\x20\x46\ \x69\x6c\x65\x73\x20\x44\x69\x61\x6c\x6f\x67\x22\x20\x2f\x3e\x0a\ \x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\ \x65\x6e\x61\x6d\x65\x3d\x22\x73\x69\x6d\x70\x6c\x65\x77\x69\x7a\ \x61\x72\x64\x22\x20\x6e\x61\x6d\x65\x3d\x22\x53\x69\x6d\x70\x6c\ \x65\x20\x57\x69\x7a\x61\x72\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\ \x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\ \x6d\x65\x3d\x22\x73\x74\x61\x6e\x64\x61\x72\x64\x64\x69\x61\x6c\ \x6f\x67\x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\x53\x74\x61\x6e\x64\ \x61\x72\x64\x20\x44\x69\x61\x6c\x6f\x67\x73\x22\x20\x2f\x3e\x0a\ \x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\ \x65\x6e\x61\x6d\x65\x3d\x22\x74\x61\x62\x64\x69\x61\x6c\x6f\x67\ \x22\x20\x6e\x61\x6d\x65\x3d\x22\x54\x61\x62\x20\x44\x69\x61\x6c\ \x6f\x67\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x63\x61\x74\x65\x67\ \x6f\x72\x79\x3e\x0a\x20\x20\x3c\x63\x61\x74\x65\x67\x6f\x72\x79\ \x20\x64\x69\x72\x6e\x61\x6d\x65\x3d\x22\x64\x72\x61\x67\x61\x6e\ \x64\x64\x72\x6f\x70\x22\x20\x6e\x61\x6d\x65\x3d\x22\x44\x72\x61\ \x67\x20\x61\x6e\x64\x20\x44\x72\x6f\x70\x22\x3e\x0a\x20\x20\x20\ \x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\ \x6d\x65\x3d\x22\x64\x72\x61\x67\x67\x61\x62\x6c\x65\x69\x63\x6f\ \x6e\x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\x44\x72\x61\x67\x67\x61\ \x62\x6c\x65\x20\x49\x63\x6f\x6e\x73\x22\x20\x2f\x3e\x0a\x20\x20\ \x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\ \x61\x6d\x65\x3d\x22\x64\x72\x61\x67\x67\x61\x62\x6c\x65\x74\x65\ \x78\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x44\x72\x61\x67\x67\x61\ \x62\x6c\x65\x20\x54\x65\x78\x74\x22\x20\x2f\x3e\x0a\x20\x20\x20\ \x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\ \x6d\x65\x3d\x22\x64\x72\x6f\x70\x73\x69\x74\x65\x22\x20\x6e\x61\ \x6d\x65\x3d\x22\x44\x72\x6f\x70\x20\x53\x69\x74\x65\x22\x20\x2f\ \x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\ \x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x66\x72\x69\x64\x67\x65\x6d\ \x61\x67\x6e\x65\x74\x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\x46\x72\ \x69\x64\x67\x65\x20\x4d\x61\x67\x6e\x65\x74\x73\x22\x20\x2f\x3e\ \x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\ \x6c\x65\x6e\x61\x6d\x65\x3d\x22\x70\x75\x7a\x7a\x6c\x65\x22\x20\ \x6e\x61\x6d\x65\x3d\x22\x50\x75\x7a\x7a\x6c\x65\x22\x20\x2f\x3e\ \x0a\x20\x20\x3c\x2f\x63\x61\x74\x65\x67\x6f\x72\x79\x3e\x0a\x20\ \x20\x3c\x63\x61\x74\x65\x67\x6f\x72\x79\x20\x64\x69\x72\x6e\x61\ \x6d\x65\x3d\x22\x67\x72\x61\x70\x68\x69\x63\x73\x76\x69\x65\x77\ \x22\x20\x6e\x61\x6d\x65\x3d\x22\x47\x72\x61\x70\x68\x69\x63\x73\ \x20\x56\x69\x65\x77\x22\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\ \x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x65\ \x6c\x61\x73\x74\x69\x63\x6e\x6f\x64\x65\x73\x22\x20\x6e\x61\x6d\ \x65\x3d\x22\x45\x6c\x61\x73\x74\x69\x63\x20\x4e\x6f\x64\x65\x73\ \x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\ \x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x63\x6f\x6c\x6c\ \x69\x64\x69\x6e\x67\x6d\x69\x63\x65\x22\x20\x6e\x61\x6d\x65\x3d\ \x22\x43\x6f\x6c\x6c\x69\x64\x69\x6e\x67\x20\x4d\x69\x63\x65\x22\ \x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\ \x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x64\x69\x61\x67\x72\ \x61\x6d\x73\x63\x65\x6e\x65\x22\x20\x6e\x61\x6d\x65\x3d\x22\x44\ \x69\x61\x67\x72\x61\x6d\x20\x53\x63\x65\x6e\x65\x22\x20\x2f\x3e\ \x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\ \x6c\x65\x6e\x61\x6d\x65\x3d\x22\x64\x72\x61\x67\x64\x72\x6f\x70\ \x72\x6f\x62\x6f\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x44\x72\x61\ \x67\x20\x61\x6e\x64\x20\x44\x72\x6f\x70\x20\x52\x6f\x62\x6f\x74\ \x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\ \x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x70\x6f\x72\x74\ \x65\x64\x63\x61\x6e\x76\x61\x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\ \x50\x6f\x72\x74\x65\x64\x20\x43\x61\x6e\x76\x61\x73\x22\x20\x2f\ \x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\ \x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x70\x6f\x72\x74\x65\x64\x61\ \x73\x74\x65\x72\x6f\x69\x64\x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\ \x50\x6f\x72\x74\x65\x64\x20\x41\x73\x74\x65\x72\x6f\x69\x64\x73\ \x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x63\x61\x74\x65\x67\x6f\x72\ \x79\x3e\x0a\x20\x20\x3c\x63\x61\x74\x65\x67\x6f\x72\x79\x20\x64\ \x69\x72\x6e\x61\x6d\x65\x3d\x22\x69\x74\x65\x6d\x76\x69\x65\x77\ \x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\x49\x74\x65\x6d\x20\x56\x69\ \x65\x77\x73\x22\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\ \x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x62\x61\x73\ \x69\x63\x73\x6f\x72\x74\x66\x69\x6c\x74\x65\x72\x6d\x6f\x64\x65\ \x6c\x22\x20\x6e\x61\x6d\x65\x3d\x22\x42\x61\x73\x69\x63\x20\x53\ \x6f\x72\x74\x2f\x46\x69\x6c\x74\x65\x72\x20\x4d\x6f\x64\x65\x6c\ \x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\ \x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x63\x68\x61\x72\ \x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x43\x68\x61\x72\x74\x22\x20\ \x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\ \x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x64\x69\x72\x76\x69\x65\ \x77\x22\x20\x6e\x61\x6d\x65\x3d\x22\x44\x69\x72\x65\x63\x74\x6f\ \x72\x79\x20\x56\x69\x65\x77\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ \x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\ \x65\x3d\x22\x70\x69\x78\x65\x6c\x61\x74\x6f\x72\x22\x20\x6e\x61\ \x6d\x65\x3d\x22\x50\x69\x78\x65\x6c\x61\x74\x6f\x72\x22\x20\x2f\ \x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\ \x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x70\x75\x7a\x7a\x6c\x65\x22\ \x20\x6e\x61\x6d\x65\x3d\x22\x50\x75\x7a\x7a\x6c\x65\x22\x20\x2f\ \x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\ \x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x73\x69\x6d\x70\x6c\x65\x64\ \x6f\x6d\x6d\x6f\x64\x65\x6c\x22\x20\x6e\x61\x6d\x65\x3d\x22\x53\ \x69\x6d\x70\x6c\x65\x20\x44\x4f\x4d\x20\x4d\x6f\x64\x65\x6c\x22\ \x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\ \x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x73\x69\x6d\x70\x6c\ \x65\x74\x72\x65\x65\x6d\x6f\x64\x65\x6c\x22\x20\x6e\x61\x6d\x65\ \x3d\x22\x53\x69\x6d\x70\x6c\x65\x20\x54\x72\x65\x65\x20\x4d\x6f\ \x64\x65\x6c\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\ \x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x73\ \x70\x69\x6e\x62\x6f\x78\x64\x65\x6c\x65\x67\x61\x74\x65\x22\x20\ \x6e\x61\x6d\x65\x3d\x22\x53\x70\x69\x6e\x20\x42\x6f\x78\x20\x44\ \x65\x6c\x65\x67\x61\x74\x65\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\ \x63\x61\x74\x65\x67\x6f\x72\x79\x3e\x0a\x20\x20\x3c\x63\x61\x74\ \x65\x67\x6f\x72\x79\x20\x64\x69\x72\x6e\x61\x6d\x65\x3d\x22\x6c\ \x61\x79\x6f\x75\x74\x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\x4c\x61\ \x79\x6f\x75\x74\x73\x22\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\ \x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x62\ \x61\x73\x69\x63\x6c\x61\x79\x6f\x75\x74\x73\x22\x20\x6e\x61\x6d\ \x65\x3d\x22\x42\x61\x73\x69\x63\x20\x4c\x61\x79\x6f\x75\x74\x73\ \x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\ \x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x62\x6f\x72\x64\ \x65\x72\x6c\x61\x79\x6f\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\ \x42\x6f\x72\x64\x65\x72\x20\x4c\x61\x79\x6f\x75\x74\x22\x20\x2f\ \x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\ \x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x66\x6c\x6f\x77\x6c\x61\x79\ \x6f\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x46\x6c\x6f\x77\x20\ \x4c\x61\x79\x6f\x75\x74\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x63\ \x61\x74\x65\x67\x6f\x72\x79\x3e\x0a\x20\x20\x3c\x63\x61\x74\x65\ \x67\x6f\x72\x79\x20\x64\x69\x72\x6e\x61\x6d\x65\x3d\x22\x6c\x69\ \x6e\x67\x75\x69\x73\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x51\x74\ \x20\x4c\x69\x6e\x67\x75\x69\x73\x74\x22\x3e\x0a\x20\x20\x20\x20\ \x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\ \x65\x3d\x22\x61\x72\x72\x6f\x77\x70\x61\x64\x22\x20\x6e\x61\x6d\ \x65\x3d\x22\x41\x72\x72\x6f\x77\x20\x50\x61\x64\x22\x20\x2f\x3e\ \x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\ \x6c\x65\x6e\x61\x6d\x65\x3d\x22\x68\x65\x6c\x6c\x6f\x74\x72\x22\ \x20\x6e\x61\x6d\x65\x3d\x22\x48\x65\x6c\x6c\x6f\x20\x57\x6f\x72\ \x6c\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\ \x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x74\x72\ \x6f\x6c\x6c\x70\x72\x69\x6e\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\ \x54\x72\x6f\x6c\x6c\x20\x50\x72\x69\x6e\x74\x22\x20\x2f\x3e\x0a\ \x20\x20\x3c\x2f\x63\x61\x74\x65\x67\x6f\x72\x79\x3e\x0a\x20\x20\ \x3c\x63\x61\x74\x65\x67\x6f\x72\x79\x20\x64\x69\x72\x6e\x61\x6d\ \x65\x3d\x22\x6d\x61\x69\x6e\x77\x69\x6e\x64\x6f\x77\x73\x22\x20\ \x6e\x61\x6d\x65\x3d\x22\x4d\x61\x69\x6e\x20\x57\x69\x6e\x64\x6f\ \x77\x73\x22\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\ \x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x61\x70\x70\x6c\ \x69\x63\x61\x74\x69\x6f\x6e\x22\x20\x6e\x61\x6d\x65\x3d\x22\x41\ \x70\x70\x6c\x69\x63\x61\x74\x69\x6f\x6e\x22\x20\x2f\x3e\x0a\x20\ \x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\ \x6e\x61\x6d\x65\x3d\x22\x64\x6f\x63\x6b\x77\x69\x64\x67\x65\x74\ \x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\x44\x6f\x63\x6b\x20\x57\x69\ \x64\x67\x65\x74\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\ \x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\ \x22\x6d\x64\x69\x22\x20\x6e\x61\x6d\x65\x3d\x22\x4d\x75\x6c\x74\ \x69\x70\x6c\x65\x20\x44\x6f\x63\x75\x6d\x65\x6e\x74\x20\x49\x6e\ \x74\x65\x72\x66\x61\x63\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ \x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\ \x65\x3d\x22\x6d\x65\x6e\x75\x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\ \x4d\x65\x6e\x75\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\ \x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\ \x22\x72\x65\x63\x65\x6e\x74\x66\x69\x6c\x65\x73\x22\x20\x6e\x61\ \x6d\x65\x3d\x22\x52\x65\x63\x65\x6e\x74\x20\x46\x69\x6c\x65\x73\ \x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\ \x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x73\x64\x69\x22\ \x20\x6e\x61\x6d\x65\x3d\x22\x53\x69\x6e\x67\x6c\x65\x20\x44\x6f\ \x63\x75\x6d\x65\x6e\x74\x20\x49\x6e\x74\x65\x72\x66\x61\x63\x65\ \x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x63\x61\x74\x65\x67\x6f\x72\ \x79\x3e\x0a\x20\x20\x3c\x63\x61\x74\x65\x67\x6f\x72\x79\x20\x64\ \x69\x72\x6e\x61\x6d\x65\x3d\x22\x6e\x65\x74\x77\x6f\x72\x6b\x22\ \x20\x6e\x61\x6d\x65\x3d\x22\x4e\x65\x74\x77\x6f\x72\x6b\x69\x6e\ \x67\x22\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\ \x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x62\x6c\x6f\x63\x6b\ \x69\x6e\x67\x66\x6f\x72\x74\x75\x6e\x65\x63\x6c\x69\x65\x6e\x74\ \x22\x20\x6e\x61\x6d\x65\x3d\x22\x42\x6c\x6f\x63\x6b\x69\x6e\x67\ \x20\x46\x6f\x72\x74\x75\x6e\x65\x20\x43\x6c\x69\x65\x6e\x74\x22\ \x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\ \x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x62\x72\x6f\x61\x64\ \x63\x61\x73\x74\x72\x65\x63\x65\x69\x76\x65\x72\x22\x20\x6e\x61\ \x6d\x65\x3d\x22\x42\x72\x6f\x61\x64\x63\x61\x73\x74\x20\x52\x65\ \x63\x65\x69\x76\x65\x72\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ \x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\ \x3d\x22\x62\x72\x6f\x61\x64\x63\x61\x73\x74\x73\x65\x6e\x64\x65\ \x72\x22\x20\x6e\x61\x6d\x65\x3d\x22\x42\x72\x6f\x61\x64\x63\x61\ \x73\x74\x20\x53\x65\x6e\x64\x65\x72\x22\x20\x2f\x3e\x0a\x20\x20\ \x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\ \x61\x6d\x65\x3d\x22\x66\x6f\x72\x74\x75\x6e\x65\x63\x6c\x69\x65\ \x6e\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x46\x6f\x72\x74\x75\x6e\ \x65\x20\x43\x6c\x69\x65\x6e\x74\x22\x20\x2f\x3e\x0a\x20\x20\x20\ \x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\ \x6d\x65\x3d\x22\x66\x6f\x72\x74\x75\x6e\x65\x73\x65\x72\x76\x65\ \x72\x22\x20\x6e\x61\x6d\x65\x3d\x22\x46\x6f\x72\x74\x75\x6e\x65\ \x20\x53\x65\x72\x76\x65\x72\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ \x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\ \x65\x3d\x22\x66\x74\x70\x22\x20\x63\x68\x61\x6e\x67\x65\x64\x69\ \x72\x65\x63\x74\x6f\x72\x79\x3d\x22\x66\x61\x6c\x73\x65\x22\x20\ \x6e\x61\x6d\x65\x3d\x22\x46\x54\x50\x20\x43\x6c\x69\x65\x6e\x74\ \x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\ \x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x68\x74\x74\x70\ \x22\x20\x63\x68\x61\x6e\x67\x65\x64\x69\x72\x65\x63\x74\x6f\x72\ \x79\x3d\x22\x66\x61\x6c\x73\x65\x22\x20\x6e\x61\x6d\x65\x3d\x22\ \x48\x54\x54\x50\x20\x43\x6c\x69\x65\x6e\x74\x22\x20\x2f\x3e\x0a\ \x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\ \x65\x6e\x61\x6d\x65\x3d\x22\x6c\x6f\x6f\x70\x62\x61\x63\x6b\x22\ \x20\x6e\x61\x6d\x65\x3d\x22\x4c\x6f\x6f\x70\x62\x61\x63\x6b\x22\ \x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\ \x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x74\x68\x72\x65\x61\ \x64\x65\x64\x66\x6f\x72\x74\x75\x6e\x65\x73\x65\x72\x76\x65\x72\ \x22\x20\x6e\x61\x6d\x65\x3d\x22\x54\x68\x72\x65\x61\x64\x65\x64\ \x20\x46\x6f\x72\x74\x75\x6e\x65\x20\x53\x65\x72\x76\x65\x72\x22\ \x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\ \x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x72\x72\x65\ \x6e\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x54\x6f\x72\x72\x65\x6e\ \x74\x20\x43\x6c\x69\x65\x6e\x74\x22\x20\x2f\x3e\x0a\x20\x20\x3c\ \x2f\x63\x61\x74\x65\x67\x6f\x72\x79\x3e\x0a\x20\x20\x3c\x63\x61\ \x74\x65\x67\x6f\x72\x79\x20\x64\x69\x72\x6e\x61\x6d\x65\x3d\x22\ \x6f\x70\x65\x6e\x67\x6c\x22\x20\x6e\x61\x6d\x65\x3d\x22\x4f\x70\ \x65\x6e\x47\x4c\x22\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\ \x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x32\x64\ \x70\x61\x69\x6e\x74\x69\x6e\x67\x22\x20\x6e\x61\x6d\x65\x3d\x22\ \x32\x44\x20\x50\x61\x69\x6e\x74\x69\x6e\x67\x22\x20\x2f\x3e\x0a\ \x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\ \x65\x6e\x61\x6d\x65\x3d\x22\x67\x72\x61\x62\x62\x65\x72\x22\x20\ \x6e\x61\x6d\x65\x3d\x22\x47\x72\x61\x62\x62\x65\x72\x22\x20\x2f\ \x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\ \x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x68\x65\x6c\x6c\x6f\x67\x6c\ \x22\x20\x6e\x61\x6d\x65\x3d\x22\x48\x65\x6c\x6c\x6f\x20\x47\x4c\ \x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\ \x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x6f\x76\x65\x72\ \x70\x61\x69\x6e\x74\x69\x6e\x67\x22\x20\x6e\x61\x6d\x65\x3d\x22\ \x4f\x76\x65\x72\x70\x61\x69\x6e\x74\x69\x6e\x67\x22\x20\x2f\x3e\ \x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\ \x6c\x65\x6e\x61\x6d\x65\x3d\x22\x70\x62\x75\x66\x66\x65\x72\x73\ \x22\x20\x6e\x61\x6d\x65\x3d\x22\x50\x69\x78\x65\x6c\x20\x42\x75\ \x66\x66\x65\x72\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\ \x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\ \x22\x73\x61\x6d\x70\x6c\x65\x62\x75\x66\x66\x65\x72\x73\x22\x20\ \x6e\x61\x6d\x65\x3d\x22\x53\x61\x6d\x70\x6c\x65\x20\x42\x75\x66\ \x66\x65\x72\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\ \x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\ \x74\x65\x78\x74\x75\x72\x65\x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\ \x54\x65\x78\x74\x75\x72\x65\x73\x22\x20\x2f\x3e\x0a\x20\x20\x3c\ \x2f\x63\x61\x74\x65\x67\x6f\x72\x79\x3e\x0a\x20\x20\x3c\x63\x61\ \x74\x65\x67\x6f\x72\x79\x20\x64\x69\x72\x6e\x61\x6d\x65\x3d\x22\ \x70\x61\x69\x6e\x74\x69\x6e\x67\x22\x20\x6e\x61\x6d\x65\x3d\x22\ \x50\x61\x69\x6e\x74\x69\x6e\x67\x22\x3e\x0a\x20\x20\x20\x20\x3c\ \x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\ \x3d\x22\x62\x61\x73\x69\x63\x64\x72\x61\x77\x69\x6e\x67\x22\x20\ \x6e\x61\x6d\x65\x3d\x22\x42\x61\x73\x69\x63\x20\x44\x72\x61\x77\ \x69\x6e\x67\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\ \x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x63\ \x6f\x6e\x63\x65\x6e\x74\x72\x69\x63\x63\x69\x72\x63\x6c\x65\x73\ \x22\x20\x6e\x61\x6d\x65\x3d\x22\x43\x6f\x6e\x63\x65\x6e\x74\x72\ \x69\x63\x20\x43\x69\x72\x63\x6c\x65\x73\x22\x20\x2f\x3e\x0a\x20\ \x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\ \x6e\x61\x6d\x65\x3d\x22\x70\x61\x69\x6e\x74\x65\x72\x70\x61\x74\ \x68\x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\x50\x61\x69\x6e\x74\x65\ \x72\x20\x50\x61\x74\x68\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ \x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\ \x65\x3d\x22\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x61\x74\x69\x6f\ \x6e\x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\x54\x72\x61\x6e\x73\x66\ \x6f\x72\x6d\x61\x74\x69\x6f\x6e\x73\x22\x20\x2f\x3e\x0a\x20\x20\ \x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\ \x61\x6d\x65\x3d\x22\x73\x76\x67\x76\x69\x65\x77\x65\x72\x22\x20\ \x6e\x61\x6d\x65\x3d\x22\x53\x56\x47\x20\x56\x69\x65\x77\x65\x72\ \x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x63\x61\x74\x65\x67\x6f\x72\ \x79\x3e\x0a\x20\x20\x3c\x63\x61\x74\x65\x67\x6f\x72\x79\x20\x64\ \x69\x72\x6e\x61\x6d\x65\x3d\x22\x70\x68\x6f\x6e\x6f\x6e\x22\x20\ \x6e\x61\x6d\x65\x3d\x22\x50\x68\x6f\x6e\x6f\x6e\x22\x3e\x0a\x20\ \x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\ \x6e\x61\x6d\x65\x3d\x22\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x69\ \x65\x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\x42\x61\x63\x6b\x65\x6e\ \x64\x20\x43\x61\x70\x61\x62\x69\x6c\x69\x74\x69\x65\x73\x22\x20\ \x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\ \x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x6d\x75\x73\x69\x63\x70\ \x6c\x61\x79\x65\x72\x22\x20\x6e\x61\x6d\x65\x3d\x22\x4d\x75\x73\ \x69\x63\x20\x50\x6c\x61\x79\x65\x72\x22\x20\x2f\x3e\x0a\x20\x20\ \x3c\x2f\x63\x61\x74\x65\x67\x6f\x72\x79\x3e\x0a\x20\x20\x3c\x63\ \x61\x74\x65\x67\x6f\x72\x79\x20\x64\x69\x72\x6e\x61\x6d\x65\x3d\ \x22\x72\x69\x63\x68\x74\x65\x78\x74\x22\x20\x6e\x61\x6d\x65\x3d\ \x22\x52\x69\x63\x68\x20\x54\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\ \x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\ \x6d\x65\x3d\x22\x63\x61\x6c\x65\x6e\x64\x61\x72\x22\x20\x6e\x61\ \x6d\x65\x3d\x22\x43\x61\x6c\x65\x6e\x64\x61\x72\x22\x20\x2f\x3e\ \x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\ \x6c\x65\x6e\x61\x6d\x65\x3d\x22\x6f\x72\x64\x65\x72\x66\x6f\x72\ \x6d\x22\x20\x6e\x61\x6d\x65\x3d\x22\x4f\x72\x64\x65\x72\x20\x46\ \x6f\x72\x6d\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\ \x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x73\ \x79\x6e\x74\x61\x78\x68\x69\x67\x68\x6c\x69\x67\x68\x74\x65\x72\ \x22\x20\x6e\x61\x6d\x65\x3d\x22\x53\x79\x6e\x74\x61\x78\x20\x48\ \x69\x67\x68\x6c\x69\x67\x68\x74\x65\x72\x22\x20\x2f\x3e\x0a\x20\ \x20\x3c\x2f\x63\x61\x74\x65\x67\x6f\x72\x79\x3e\x0a\x20\x20\x3c\ \x63\x61\x74\x65\x67\x6f\x72\x79\x20\x64\x69\x72\x6e\x61\x6d\x65\ \x3d\x22\x73\x71\x6c\x22\x20\x6e\x61\x6d\x65\x3d\x22\x53\x51\x4c\ \x22\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\ \x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x63\x61\x63\x68\x65\x64\ \x74\x61\x62\x6c\x65\x22\x20\x6e\x61\x6d\x65\x3d\x22\x43\x61\x63\ \x68\x65\x64\x20\x54\x61\x62\x6c\x65\x22\x20\x2f\x3e\x0a\x20\x20\ \x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\ \x61\x6d\x65\x3d\x22\x71\x75\x65\x72\x79\x6d\x6f\x64\x65\x6c\x22\ \x20\x6e\x61\x6d\x65\x3d\x22\x51\x75\x65\x72\x79\x20\x4d\x6f\x64\ \x65\x6c\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\ \x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x72\x65\ \x6c\x61\x74\x69\x6f\x6e\x61\x6c\x74\x61\x62\x6c\x65\x6d\x6f\x64\ \x65\x6c\x22\x20\x6e\x61\x6d\x65\x3d\x22\x52\x65\x6c\x61\x74\x69\ \x6f\x6e\x61\x6c\x20\x54\x61\x62\x6c\x65\x20\x4d\x6f\x64\x65\x6c\ \x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\ \x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x74\x61\x62\x6c\ \x65\x6d\x6f\x64\x65\x6c\x22\x20\x6e\x61\x6d\x65\x3d\x22\x54\x61\ \x62\x6c\x65\x20\x4d\x6f\x64\x65\x6c\x22\x20\x2f\x3e\x0a\x20\x20\ \x3c\x2f\x63\x61\x74\x65\x67\x6f\x72\x79\x3e\x0a\x20\x20\x3c\x63\ \x61\x74\x65\x67\x6f\x72\x79\x20\x64\x69\x72\x6e\x61\x6d\x65\x3d\ \x22\x74\x68\x72\x65\x61\x64\x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\ \x54\x68\x72\x65\x61\x64\x69\x6e\x67\x22\x3e\x0a\x20\x20\x20\x20\ \x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\ \x65\x3d\x22\x6d\x61\x6e\x64\x65\x6c\x62\x72\x6f\x74\x22\x20\x6e\ \x61\x6d\x65\x3d\x22\x4d\x61\x6e\x64\x65\x6c\x62\x72\x6f\x74\x22\ \x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\ \x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x61\x70\ \x68\x6f\x72\x65\x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\x53\x65\x6d\ \x61\x70\x68\x6f\x72\x65\x73\x22\x20\x65\x78\x65\x63\x75\x74\x61\ \x62\x6c\x65\x3d\x22\x66\x61\x6c\x73\x65\x22\x20\x2f\x3e\x0a\x20\ \x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\ \x6e\x61\x6d\x65\x3d\x22\x77\x61\x69\x74\x63\x6f\x6e\x64\x69\x74\ \x69\x6f\x6e\x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\x57\x61\x69\x74\ \x20\x43\x6f\x6e\x64\x69\x74\x69\x6f\x6e\x73\x22\x20\x65\x78\x65\ \x63\x75\x74\x61\x62\x6c\x65\x3d\x22\x66\x61\x6c\x73\x65\x22\x20\ \x2f\x3e\x0a\x20\x20\x3c\x2f\x63\x61\x74\x65\x67\x6f\x72\x79\x3e\ \x0a\x20\x20\x3c\x63\x61\x74\x65\x67\x6f\x72\x79\x20\x64\x69\x72\ \x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x73\x22\x20\x6e\x61\x6d\ \x65\x3d\x22\x54\x6f\x6f\x6c\x73\x22\x3e\x0a\x20\x20\x20\x20\x3c\ \x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\ \x3d\x22\x63\x6f\x64\x65\x63\x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\ \x43\x6f\x64\x65\x63\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ \x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\ \x3d\x22\x69\x31\x38\x6e\x22\x20\x6e\x61\x6d\x65\x3d\x22\x49\x6e\ \x74\x65\x72\x6e\x61\x74\x69\x6f\x6e\x61\x6c\x69\x7a\x61\x74\x69\ \x6f\x6e\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\ \x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x70\x6c\ \x75\x67\x61\x6e\x64\x70\x61\x69\x6e\x74\x22\x20\x6e\x61\x6d\x65\ \x3d\x22\x50\x6c\x75\x67\x20\x61\x6e\x64\x20\x50\x61\x69\x6e\x74\ \x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\ \x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x71\x74\x64\x65\ \x6d\x6f\x22\x20\x6e\x61\x6d\x65\x3d\x22\x51\x74\x20\x44\x65\x6d\ \x6f\x22\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x3d\x22\x66\ \x61\x6c\x73\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\ \x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\ \x72\x65\x67\x65\x78\x70\x22\x20\x6e\x61\x6d\x65\x3d\x22\x52\x65\ \x67\x75\x6c\x61\x72\x20\x45\x78\x70\x72\x65\x73\x73\x69\x6f\x6e\ \x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\ \x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x73\x65\x74\ \x74\x69\x6e\x67\x73\x65\x64\x69\x74\x6f\x72\x22\x20\x6e\x61\x6d\ \x65\x3d\x22\x53\x65\x74\x74\x69\x6e\x67\x73\x20\x45\x64\x69\x74\ \x6f\x72\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x63\x61\x74\x65\x67\ \x6f\x72\x79\x3e\x0a\x20\x20\x3c\x63\x61\x74\x65\x67\x6f\x72\x79\ \x20\x64\x69\x72\x6e\x61\x6d\x65\x3d\x22\x77\x69\x64\x67\x65\x74\ \x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\x57\x69\x64\x67\x65\x74\x73\ \x22\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\ \x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x61\x6e\x61\x6c\x6f\x67\ \x63\x6c\x6f\x63\x6b\x22\x20\x6e\x61\x6d\x65\x3d\x22\x41\x6e\x61\ \x6c\x6f\x67\x20\x43\x6c\x6f\x63\x6b\x22\x20\x2f\x3e\x0a\x20\x20\ \x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\ \x61\x6d\x65\x3d\x22\x63\x61\x6c\x63\x75\x6c\x61\x74\x6f\x72\x22\ \x20\x6e\x61\x6d\x65\x3d\x22\x43\x61\x6c\x63\x75\x6c\x61\x74\x6f\ \x72\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\ \x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x63\x68\x61\ \x72\x61\x63\x74\x65\x72\x6d\x61\x70\x22\x20\x6e\x61\x6d\x65\x3d\ \x22\x43\x68\x61\x72\x61\x63\x74\x65\x72\x20\x4d\x61\x70\x22\x20\ \x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\ \x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x64\x69\x67\x69\x74\x61\ \x6c\x63\x6c\x6f\x63\x6b\x22\x20\x6e\x61\x6d\x65\x3d\x22\x44\x69\ \x67\x69\x74\x61\x6c\x20\x43\x6c\x6f\x63\x6b\x22\x20\x2f\x3e\x0a\ \x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\ \x65\x6e\x61\x6d\x65\x3d\x22\x67\x72\x6f\x75\x70\x62\x6f\x78\x22\ \x20\x6e\x61\x6d\x65\x3d\x22\x47\x72\x6f\x75\x70\x20\x42\x6f\x78\ \x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\ \x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x69\x63\x6f\x6e\ \x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\x49\x63\x6f\x6e\x73\x22\x20\ \x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\ \x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x69\x6d\x61\x67\x65\x76\ \x69\x65\x77\x65\x72\x22\x20\x6e\x61\x6d\x65\x3d\x22\x49\x6d\x61\ \x67\x65\x20\x56\x69\x65\x77\x65\x72\x22\x20\x2f\x3e\x0a\x20\x20\ \x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\ \x61\x6d\x65\x3d\x22\x6c\x69\x6e\x65\x65\x64\x69\x74\x73\x22\x20\ \x6e\x61\x6d\x65\x3d\x22\x4c\x69\x6e\x65\x20\x45\x64\x69\x74\x73\ \x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\ \x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x6d\x6f\x76\x69\ \x65\x22\x20\x6e\x61\x6d\x65\x3d\x22\x4d\x6f\x76\x69\x65\x20\x50\ \x6c\x61\x79\x65\x72\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\ \x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\ \x22\x73\x63\x72\x65\x65\x6e\x73\x68\x6f\x74\x22\x20\x6e\x61\x6d\ \x65\x3d\x22\x53\x63\x72\x65\x65\x6e\x73\x68\x6f\x74\x22\x20\x2f\ \x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\ \x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x73\x63\x72\x69\x62\x62\x6c\ \x65\x22\x20\x6e\x61\x6d\x65\x3d\x22\x53\x63\x72\x69\x62\x62\x6c\ \x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\ \x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x73\x68\x61\ \x70\x65\x64\x63\x6c\x6f\x63\x6b\x22\x20\x6e\x61\x6d\x65\x3d\x22\ \x53\x68\x61\x70\x65\x64\x20\x43\x6c\x6f\x63\x6b\x22\x20\x2f\x3e\ \x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\ \x6c\x65\x6e\x61\x6d\x65\x3d\x22\x73\x6c\x69\x64\x65\x72\x73\x22\ \x20\x6e\x61\x6d\x65\x3d\x22\x53\x6c\x69\x64\x65\x72\x73\x22\x20\ \x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\ \x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x73\x70\x69\x6e\x62\x6f\ \x78\x65\x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\x53\x70\x69\x6e\x20\ \x42\x6f\x78\x65\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\ \x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\ \x22\x73\x74\x79\x6c\x65\x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\x53\ \x74\x79\x6c\x65\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\ \x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\ \x22\x74\x65\x74\x72\x69\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\x54\ \x65\x74\x72\x69\x78\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\ \x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\ \x22\x74\x6f\x6f\x6c\x74\x69\x70\x73\x22\x20\x6e\x61\x6d\x65\x3d\ \x22\x54\x6f\x6f\x6c\x20\x54\x69\x70\x73\x22\x20\x2f\x3e\x0a\x20\ \x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\ \x6e\x61\x6d\x65\x3d\x22\x77\x69\x67\x67\x6c\x79\x22\x20\x6e\x61\ \x6d\x65\x3d\x22\x57\x69\x67\x67\x6c\x79\x22\x20\x2f\x3e\x0a\x20\ \x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\ \x6e\x61\x6d\x65\x3d\x22\x77\x69\x6e\x64\x6f\x77\x66\x6c\x61\x67\ \x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\x57\x69\x6e\x64\x6f\x77\x20\ \x46\x6c\x61\x67\x73\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x63\x61\ \x74\x65\x67\x6f\x72\x79\x3e\x0a\x20\x20\x3c\x63\x61\x74\x65\x67\ \x6f\x72\x79\x20\x64\x69\x72\x6e\x61\x6d\x65\x3d\x22\x78\x6d\x6c\ \x22\x20\x6e\x61\x6d\x65\x3d\x22\x58\x4d\x4c\x22\x3e\x0a\x20\x20\ \x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\ \x61\x6d\x65\x3d\x22\x73\x61\x78\x62\x6f\x6f\x6b\x6d\x61\x72\x6b\ \x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\x53\x41\x58\x20\x42\x6f\x6f\ \x6b\x6d\x61\x72\x6b\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ \x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\ \x3d\x22\x64\x6f\x6d\x62\x6f\x6f\x6b\x6d\x61\x72\x6b\x73\x22\x20\ \x6e\x61\x6d\x65\x3d\x22\x44\x4f\x4d\x20\x42\x6f\x6f\x6b\x6d\x61\ \x72\x6b\x73\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x63\x61\x74\x65\ \x67\x6f\x72\x79\x3e\x0a\x3c\x2f\x63\x61\x74\x65\x67\x6f\x72\x69\ \x65\x73\x3e\x0a\ \x00\x00\x03\x50\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ \x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x69\x73\x6f\ \x2d\x38\x38\x35\x39\x2d\x31\x22\x3f\x3e\x0a\x3c\x63\x61\x74\x65\ \x67\x6f\x72\x69\x65\x73\x3e\x0a\x20\x20\x3c\x63\x61\x74\x65\x67\ \x6f\x72\x79\x20\x64\x69\x72\x6e\x61\x6d\x65\x3d\x22\x2e\x22\x20\ \x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x64\x65\x6d\x6f\x73\x22\x20\ \x6e\x61\x6d\x65\x3d\x22\x44\x65\x6d\x6f\x6e\x73\x74\x72\x61\x74\ \x69\x6f\x6e\x73\x22\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\ \x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x61\x66\ \x66\x69\x6e\x65\x22\x20\x6e\x61\x6d\x65\x3d\x22\x41\x66\x66\x69\ \x6e\x65\x20\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x61\x74\x69\x6f\ \x6e\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\ \x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x61\x72\ \x74\x68\x75\x72\x70\x6c\x75\x67\x69\x6e\x22\x20\x6e\x61\x6d\x65\ \x3d\x22\x41\x72\x74\x68\x75\x72\x20\x50\x6c\x75\x67\x69\x6e\x22\ \x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\ \x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x63\x6f\x6d\x70\x6f\ \x73\x69\x74\x69\x6f\x6e\x22\x20\x6e\x61\x6d\x65\x3d\x22\x43\x6f\ \x6d\x70\x6f\x73\x69\x74\x69\x6f\x6e\x20\x4d\x6f\x64\x65\x73\x22\ \x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\ \x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x67\x72\x61\x64\x69\ \x65\x6e\x74\x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\x47\x72\x61\x64\ \x69\x65\x6e\x74\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\ \x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\ \x22\x70\x61\x74\x68\x73\x74\x72\x6f\x6b\x65\x22\x20\x6e\x61\x6d\ \x65\x3d\x22\x50\x61\x74\x68\x20\x53\x74\x72\x6f\x6b\x69\x6e\x67\ \x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\ \x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x64\x65\x66\x6f\ \x72\x6d\x22\x20\x6e\x61\x6d\x65\x3d\x22\x56\x65\x63\x74\x6f\x72\ \x20\x44\x65\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x22\x20\x2f\x3e\ \x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\ \x6c\x65\x6e\x61\x6d\x65\x3d\x22\x62\x6f\x6f\x6b\x73\x22\x20\x6e\ \x61\x6d\x65\x3d\x22\x42\x6f\x6f\x6b\x73\x22\x20\x2f\x3e\x0a\x20\ \x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\ \x6e\x61\x6d\x65\x3d\x22\x6d\x61\x69\x6e\x77\x69\x6e\x64\x6f\x77\ \x22\x20\x6e\x61\x6d\x65\x3d\x22\x4d\x61\x69\x6e\x20\x57\x69\x6e\ \x64\x6f\x77\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\ \x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x73\ \x70\x72\x65\x61\x64\x73\x68\x65\x65\x74\x22\x20\x6e\x61\x6d\x65\ \x3d\x22\x53\x70\x72\x65\x61\x64\x73\x68\x65\x65\x74\x22\x20\x2f\ \x3e\x0a\x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\ \x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x73\x71\x6c\x62\x72\x6f\x77\ \x73\x65\x72\x22\x20\x6e\x61\x6d\x65\x3d\x22\x53\x51\x4c\x20\x42\ \x72\x6f\x77\x73\x65\x72\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ \x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\ \x3d\x22\x74\x65\x78\x74\x65\x64\x69\x74\x22\x20\x6e\x61\x6d\x65\ \x3d\x22\x54\x65\x78\x74\x20\x45\x64\x69\x74\x22\x20\x2f\x3e\x0a\ \x20\x20\x20\x20\x3c\x65\x78\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\ \x65\x6e\x61\x6d\x65\x3d\x22\x65\x6d\x62\x65\x64\x64\x65\x64\x64\ \x69\x61\x6c\x6f\x67\x73\x22\x20\x6e\x61\x6d\x65\x3d\x22\x45\x6d\ \x62\x65\x64\x64\x65\x64\x20\x44\x69\x61\x6c\x6f\x67\x73\x22\x20\ \x2f\x3e\x0a\x20\x20\x3c\x2f\x63\x61\x74\x65\x67\x6f\x72\x79\x3e\ \x0a\x3c\x2f\x63\x61\x74\x65\x67\x6f\x72\x69\x65\x73\x3e\x0a\ \x00\x00\x2a\x14\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x2e\x23\x00\x00\x2e\x23\ \x01\x78\xa5\x3f\x76\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd5\x08\ \x08\x0f\x1b\x36\x16\x33\x5d\x2c\x00\x00\x00\x1d\x74\x45\x58\x74\ \x43\x6f\x6d\x6d\x65\x6e\x74\x00\x43\x72\x65\x61\x74\x65\x64\x20\ \x77\x69\x74\x68\x20\x54\x68\x65\x20\x47\x49\x4d\x50\xef\x64\x25\ \x6e\x00\x00\x29\x8a\x49\x44\x41\x54\x78\xda\xed\x9d\x79\xbc\x1c\ \x65\x99\xef\xbf\x6f\x55\x75\xf7\x39\x7d\x36\xc8\x4e\x16\xb3\x02\ \x61\x0b\x21\x91\x4d\x10\x46\x51\x84\xcf\x04\x17\x64\x9c\xc5\x91\ \xeb\x32\x5e\x9d\xe5\xc3\x75\x74\x44\xe7\x08\x6e\x28\xc2\x38\x57\ \xc7\xab\x33\x23\x2a\xf7\x8e\xeb\x8c\xa0\x32\x33\xa0\xa0\x28\x12\ \x08\x3b\x24\x21\x84\x84\x6c\x90\x04\xb2\x9d\xac\x67\xe9\xa5\xba\ \xaa\xde\xf7\xfe\x51\x4b\xbf\xb5\xf5\x09\x21\x21\x27\x87\x53\x50\ \xe9\xee\xaa\x3e\x5d\xdd\xf5\xfc\x9e\xdf\xb3\xbe\xef\x2b\x38\x94\ \x6d\x09\xa7\x5f\x77\x6b\xf1\xc9\x72\x97\x58\x01\x2c\x05\xee\x07\ \x96\xf7\x96\xed\x3e\xc6\xb6\x63\x6a\x13\x87\x20\x7c\x80\xc7\x3f\ \x7d\x4b\xf1\xec\xee\xe3\x63\x7f\x3e\x08\xac\x0d\x00\xb1\x14\x78\ \x18\x18\xe8\x2d\xdb\xde\xd8\x6d\x1e\x5d\x00\xb8\x1c\xf8\xd5\xa7\ \x6f\x29\x92\x00\x40\xd6\xf6\x2c\xb0\x2c\x04\x44\x6f\xd9\xde\x32\ \x76\xcb\x8f\x65\x00\x2c\xa1\x23\x10\xe8\xc2\x83\x04\x80\xbe\x39\ \xc0\x0b\x09\x86\xd8\xde\x5b\xb6\xed\x31\x31\x1c\xbd\xcd\x7a\x99\ \xef\xff\x00\xb0\xf0\x10\xaf\x55\x00\x4e\x0a\xf6\x0f\x07\xc7\xb6\ \xde\x58\x2d\x3d\xa2\x81\x62\x7d\x6f\xd9\x76\xc7\xc4\x32\x12\x19\ \x60\x09\xe5\x80\xd2\x67\x01\x1c\x02\x03\x1c\xcc\xb6\x23\x60\x98\ \xe5\x81\x63\xb9\xaa\xb7\x6c\x57\xc7\xc4\x34\x32\x18\xe0\xcb\xa1\ \xf0\x8f\xe0\x76\x02\xf0\x47\xc1\x0e\xb0\xff\xc6\x6a\xe9\x09\x2d\ \xd2\x58\xdd\x5b\xb6\x07\xc6\xc4\xf6\x6a\x33\xc0\x12\xa6\x02\xeb\ \x81\x8e\xf0\xd0\x11\x62\x80\xe1\xb6\xbd\xc0\x0a\x8d\x21\x96\xf5\ \x96\xed\xc1\x31\x31\x1e\x79\x00\xdc\x19\x05\x80\x2d\x00\x50\x10\ \x02\x4f\x29\xe4\xab\xf7\xfd\xdd\x00\x0c\xa1\x0f\xf1\x54\x6f\xd9\ \xde\x39\x26\xd6\xc3\x09\x80\x25\x9c\x03\x3c\x94\x34\x17\x79\x0c\ \x30\xbf\x50\x66\x9c\x69\x01\x8a\x7e\xe9\xe1\x2a\xc9\x01\xe9\xd1\ \x50\x92\x01\x29\x91\x28\xd4\x91\xfb\x3d\x43\xc0\x73\x1a\x43\x2c\ \x05\xfa\xc6\x1c\xcb\x57\x06\x80\x07\x81\x0b\x93\x87\xb3\x00\x50\ \x14\x06\x17\xb4\x8d\xc3\x40\x41\x24\x68\x15\xec\xfe\xf3\x9a\xf2\ \xa8\x2b\x49\xbf\xf4\xa8\x48\x8f\x9a\x52\x0c\x49\xef\x48\xb2\xc6\ \x5a\x2d\x17\xf1\x48\x6f\xd9\x7e\x7e\x4c\xec\x07\x0b\x80\x25\xfc\ \x11\xf0\xd3\xac\xf7\x65\x01\xe0\x04\xb3\x9d\xd3\x8a\x3d\x31\x81\ \xfb\x40\x50\x89\xe7\xf1\x73\x1e\x8a\xaa\x94\x54\x94\xc7\x01\xcf\ \x63\x50\x79\xd8\x4a\xe1\xa8\xc3\xce\x15\x0d\xe0\xc5\x80\x21\x7e\ \x1f\x80\xe2\xf9\xde\xb2\x5d\x1f\x03\x40\x76\xd8\xb7\x0a\x98\x9b\ \x75\x3a\x0b\x00\xb3\xac\x2e\x4e\x2c\xf4\x64\x08\x9e\x83\x00\x45\ \xf3\xbc\x42\xe1\x2a\x85\x8d\x64\x28\x60\x8a\x41\x25\xd9\xef\x79\ \x47\xc2\x7c\x6c\x05\x1e\xd7\x4c\xc6\xb3\xbd\x65\x5b\xbd\x56\x00\ \xd0\x2a\x0c\xbc\x26\x4f\xf8\x79\x5b\xb7\xd1\x86\xc0\xd2\x68\x3f\ \x2e\x74\x5d\xd8\x42\x03\x85\x48\x9d\x53\x14\x84\xa2\x80\xa2\xd3\ \x2c\x80\xd9\x3c\x57\x55\x1e\x15\xe9\xfb\x15\x07\xa4\x47\x4d\xfa\ \x0c\xf2\x0a\xb6\xd7\x05\xfb\x55\xc1\xeb\x3d\x37\x56\x4b\x2b\x02\ \x40\xdc\x0f\x3c\x33\x9a\x23\x0d\x91\xa3\xfd\x13\x80\x67\x80\x29\ \x79\x7f\x98\xc5\x00\x67\x15\x4f\x60\x92\xd9\x91\xab\xe9\x59\x26\ \x20\x9b\x29\xe2\x6c\x90\xf5\x39\xe1\x59\x57\x49\xea\x4a\x32\xa4\ \x3c\xf6\x7b\x1e\x43\x4a\x52\x57\x3e\x83\x1c\xa6\x6d\x5f\x22\xd2\ \x58\x39\x9a\x00\x91\xc7\x00\x37\xb4\x12\x7e\xde\x36\xde\xe8\x46\ \x60\xc4\x04\x25\x12\x82\x14\x19\xc2\x14\x29\x87\x31\xcd\x14\x22\ \x07\x30\x05\xe1\xb3\x45\x17\x8a\x29\xa6\x7f\x5c\xa2\x18\x0c\x18\ \x62\x50\x7a\x54\xa5\xa2\xa2\x0e\xd9\xcd\x1c\x07\xbc\x25\xd8\x01\ \xfa\x6f\xac\x96\x36\x68\x3e\xc4\x23\xbd\x65\x7b\xdf\x68\x63\x00\ \x0f\x30\x5a\xfd\x61\x16\x03\xbc\xa5\xed\x54\x0a\xc2\x6c\xa9\xed\ \xc3\xfb\x01\x2f\x97\x29\x86\xf7\x27\x42\x50\xec\xf7\x3c\x0e\x48\ \x97\x8a\x52\x54\xa4\xcf\x1c\x87\xc9\xb1\x5c\xa5\x31\xc4\xb3\xc7\ \x52\xa4\x91\xc7\x00\xc6\xa1\xa1\xc9\x44\x60\x46\xc2\x13\xc3\xd0\ \xba\x7e\x3e\xcb\x0f\x48\x33\x05\x99\x40\x11\x19\x4c\xa3\x9b\x09\ \x50\x18\x28\x26\x98\x16\x13\xcc\x62\x74\xbc\xa6\x3c\x86\x02\x7f\ \xa2\x22\x3d\xfa\x83\x3c\xc5\xcb\xdc\x8a\xc0\xeb\x83\xfd\x13\x80\ \xba\xb1\x5a\xda\xa4\x31\xc4\x52\x60\xc7\x48\xed\x8b\xb0\x0e\xd7\ \x07\x1d\x67\x74\x50\x14\xa5\x4c\x81\xc7\x73\x02\x68\x74\x4e\x0b\ \xe7\x30\x0d\x0a\x32\xfc\x00\x91\x02\x03\x99\x26\x28\x79\x1d\x85\ \xa2\x43\x98\x74\x98\x8a\x49\x9a\xe9\xe8\x0f\xcc\x46\x45\xfa\xb9\ \x8a\xea\xcb\x67\x09\x01\xcc\x0b\xf6\xb0\xea\xb9\xfe\xc6\x6a\xe9\ \x41\x8d\x21\x96\x8f\x3a\x00\x80\x08\x22\x80\xb8\x80\x55\xae\x9d\ \x27\x46\xf5\x22\xc7\x5c\xa8\x84\xfd\x8f\xbf\x4f\xa6\xae\x91\x05\ \x2c\x91\x01\x30\xfd\xb8\xfe\xf7\xe3\x0c\x8b\xe3\x8d\x26\x20\xfc\ \x4c\xa6\x1b\xb0\x84\x64\x50\xc9\x43\x71\x30\xc3\x32\xf8\x87\x00\ \x6e\xac\x96\xf6\x6a\x0c\x71\x3f\xb0\xa9\xb7\x6c\xd7\x46\x0d\x00\ \x54\xa6\x86\x26\xc3\xbd\x56\xbe\x01\x39\x1a\x1c\x17\x1e\x2d\xc0\ \xe3\x57\x24\x92\x4e\x64\x5a\xf8\x22\x76\x2e\x34\x00\x32\x38\x27\ \x31\x85\x62\x92\x69\x31\xc9\x0c\x93\x56\x92\x9a\x16\x86\x1e\x90\ \xde\xa1\x24\xac\xc6\x07\x61\x67\x18\x7a\xbe\x74\x63\xb5\xf4\x78\ \x00\x88\xd5\xbd\x65\xfb\xbe\x63\x1a\x00\xe4\x84\x75\xf9\x34\x4f\ \xca\x0c\xa8\xdc\x5c\x42\xbe\x6f\x91\xcc\x2f\xa8\x9c\x08\x23\x2b\ \xbc\x54\x01\xa3\x88\x04\xc0\x92\xe7\x0d\x14\x96\x21\xe9\x32\x60\ \x7a\x70\xcc\x56\x1a\x20\x3c\x0f\x5b\x49\x5e\xa6\xc1\x9f\x1e\xec\ \x57\x06\x0c\xf1\x44\x6f\xd9\x3e\xe7\x98\x02\x40\xb7\xe8\x44\x50\ \x68\x91\x04\x3a\x18\x60\x24\x9d\x42\x32\xed\x7e\xfe\xe7\xe9\x9b\ \x0f\x06\x91\xe3\x14\xea\x40\x48\x0a\x59\x7f\x14\xd1\x63\xd3\xc7\ \x08\xd9\x25\x7c\x6c\x13\x7e\x08\x3a\xc5\x54\xa8\x82\xc2\x51\x92\ \x81\x88\x21\x5c\x2a\x2f\x3f\x59\x65\x1c\xaa\x1c\xe6\xce\xbb\xae\ \x6d\xd3\xc6\x2f\xd5\x5f\x75\x00\xb4\x8b\x72\x4b\x1f\x60\x78\x20\ \x1c\xec\xb9\xf8\xa3\x48\x08\x3d\xbc\xbe\xca\x31\x1f\x59\xd1\x48\ \x1a\x08\x3a\x08\x64\x70\x26\xce\x0e\x2a\x87\x2d\x04\x8a\x92\x50\ \x4c\x30\xfd\x3d\x3c\x3e\x20\x5d\xf6\x49\x8f\x03\x9e\x7b\xa8\x7e\ \x44\x2b\xa1\x2f\x06\x2e\x02\x2e\x3e\xf7\xdc\x73\xcf\xb9\xea\xaa\ \x95\x9b\xb5\xd3\x5b\x80\x75\xc1\xf3\x15\xc0\xaf\x6f\xbe\x69\x61\ \xfd\x08\x98\x00\xa3\x85\x0f\x40\x2e\xdd\xeb\x94\x2f\x32\xfd\x03\ \x72\xa8\x9f\x16\x9f\x9f\x04\x01\x2d\x99\x27\xae\xf9\x2a\xf6\x1f\ \x1a\x00\x94\x06\x88\xe6\xe7\xcb\xcc\x28\x25\x09\x8a\xe3\x0c\x8b\ \x1e\x43\x81\xe5\xfb\x11\xfb\x3c\x37\x72\x2e\x87\xe4\xc1\xf3\xc3\ \xdc\x79\xd7\xb5\x07\x11\xc6\xc5\xc1\x7e\x29\xd0\x05\x88\x19\x33\ \x66\x30\x7d\xfa\x74\xf0\x3b\xab\xc2\xed\xfc\xc4\x47\xcc\x03\x36\ \x1d\x76\x00\x08\x04\x60\xe6\x0a\x2a\xe9\xe0\x89\x4c\xbb\xae\x12\ \x5a\x45\x06\x08\x5a\x01\x20\xce\x0a\x22\x87\x35\x5a\xa5\x9a\x9b\ \x1a\x9f\x7e\xee\x93\xbf\xd4\x40\x11\x32\x81\x4c\x45\x1b\xb4\x00\ \x85\x40\x31\xc9\x2c\x30\xd1\xf4\x01\x56\x51\x1e\x5b\x1c\x9b\x9d\ \x5e\x63\x38\xe1\x7f\x0b\x78\x47\xe0\x2f\xc4\x93\x11\xc5\x22\x67\ \x9d\x75\x16\x42\x88\xa3\xe3\x03\x34\x19\x20\x7e\xc3\xd5\xb0\x5a\ \xac\x52\xac\x61\x24\x84\xd4\x14\xa4\x48\x80\x25\x4b\xe0\xd9\xa0\ \x48\x83\x91\x54\xc4\x10\xd7\xff\x38\xfd\xab\x84\xc6\xab\x18\x63\ \x48\xed\x33\xb2\x9d\xca\x56\x80\xe8\x12\x8a\x93\x0b\x45\xfa\xbc\ \x7d\xb9\x89\xa8\xb9\xf3\xae\xfb\x53\xe0\xa3\x91\x96\xe9\xca\x27\ \x04\x8b\x17\x2f\xa6\x58\x2c\x1e\x3d\x27\x50\x68\x26\x20\xa9\xd9\ \xaa\x85\xd0\xc5\x30\xe0\x10\x9a\xe8\x45\x86\xa6\x8b\x88\x7f\x54\ \xe2\x98\x0a\x58\x29\x1b\x0c\x2a\x27\x11\x15\x17\xb8\x4c\xfc\x2b\ \x35\x28\xc8\x98\xe0\x45\xf0\x4a\xa4\x4c\x80\xcc\xc8\x72\xa6\xcd\ \x46\x41\x28\x0c\x21\x90\x19\xbe\xc1\xdc\x79\xd7\xcd\x05\xfe\x4f\ \x96\xf0\x01\xe6\xce\x9d\xcb\xb4\x69\xd3\x8e\x76\x18\x98\x04\x00\ \xc3\x7a\xff\xd9\xb1\x3c\x29\x07\xcf\xc8\xd0\xf4\xf8\xf3\xbc\x73\ \x49\xb3\xe1\xdf\xfc\xb8\x09\xd0\x8d\x93\xca\xa0\x7f\x89\xa1\x09\ \x5e\xe0\x25\x38\xc1\x8b\x5e\x99\x09\x67\xb2\xb5\x5f\x20\x53\xa0\ \x38\xce\x28\xb1\xc7\xab\x25\x85\xdf\x01\x7c\x1b\x98\x90\x75\xd7\ \xbb\xba\xba\x38\xfd\xf4\xd3\x8f\x7e\x18\x28\x5e\x16\x00\xf2\xcf\ \x89\x14\x08\x44\x42\xb3\x7d\x7d\x17\xa9\x63\x09\xe1\x2b\x68\xd4\ \x3a\xa8\x0f\xf6\xd0\xa8\x8c\xa7\x7a\x60\x0a\xb5\xc1\x13\xfc\xbf\ \x15\x80\xf0\x3f\x59\x08\xe1\x3f\x17\x36\x56\xa9\x42\xc7\xf8\x17\ \x68\xeb\xd9\x4e\xa9\xfb\x25\x84\x69\x47\xda\x1f\x82\xc0\x7f\x94\ \xd1\xa3\xc2\x8c\x31\x84\x68\x09\x02\xfd\xf7\xca\x54\x95\xd3\xc8\ \x8e\xfe\xae\xd1\x2a\x91\xa9\x6d\xd1\xa2\x45\x58\x96\x75\xf4\x01\ \x30\x3c\x03\xb4\x06\x42\xda\x5b\x47\x8b\xe3\x43\x2d\x17\x29\x61\ \x8b\x08\x10\xc1\x7b\xa5\x60\xff\x8e\xa9\xec\xd9\x3a\x8f\x4a\xff\ \x24\x84\x10\xd1\x0e\x0a\x5f\xde\x4d\xd3\x10\xc8\x1f\x21\x4a\x38\ \x8d\x12\xf5\xa1\xf1\x08\x21\x30\x8b\x35\x4a\x9d\xbb\xe8\x98\xb0\ \x81\x8e\x89\x1b\x30\xcc\x46\x20\x5c\x2f\xa0\x7b\xdf\xf9\x6b\x3e\ \x2a\x2d\x42\x48\x47\x14\xad\xc1\x10\xb2\x80\x91\xd4\xfe\xd3\x80\ \xeb\xf2\xee\xf8\x9c\x39\x73\x98\x38\x71\xe2\x48\xc9\x04\x1a\x41\ \x22\x88\x8c\x5c\xfe\x70\x09\x21\x12\x20\x48\x0a\x3f\x4f\xe0\xcd\ \x5d\xb9\x82\xdd\x5b\xa7\xb2\x7d\xe3\x49\x34\xec\xf6\x40\xe8\x9e\ \x26\x7c\x52\xcf\xf3\x8e\x01\xb8\x6e\x01\xbb\x3a\x9d\xc1\xdd\x33\ \xb0\x36\x9d\xcf\xf8\xd9\x4f\xd0\x7d\xc2\x5a\x94\xf0\x30\x90\x78\ \x91\xc6\x87\x20\x08\x3d\x84\x34\x08\x44\x46\x6d\x22\x2b\x0f\xd1\ \x65\x94\xd9\xe5\x0d\x86\xc2\xef\x04\x7e\x06\x94\xb3\xee\xf6\xb8\ \x71\xe3\x58\xb0\x60\xc1\xc8\xc9\x04\xe6\x99\x00\x91\x11\x09\xe4\ \xe7\xf9\xf3\x84\x2f\xf2\x85\xaf\x60\xfb\xc6\xc9\xbc\xb4\x61\x26\ \x8d\x7a\x39\x25\xf8\xe4\x9e\x14\x74\x16\x20\x92\x8f\x5e\xad\xc8\ \xf6\x35\x17\xb0\x6f\xeb\x29\x8c\x9f\xbd\x92\xae\x89\x5b\x10\x86\ \x17\x69\xff\x70\x20\x18\xce\x27\x08\x01\x60\x45\x0a\x04\xf8\x4d\ \x39\xf3\x33\x55\xcd\x30\x58\xbc\x78\xf1\x2b\xa2\xfe\xc3\x0e\x80\ \x89\xc6\x74\x44\xe4\xa4\xaa\x94\x33\xa7\x72\x72\x03\x22\xc3\x0c\ \xe4\xd9\xf6\x24\x00\x64\x43\xb0\xe2\x81\x13\xe9\xdf\x7b\x1c\x86\ \x61\x20\x84\x6c\x29\xf4\x56\x42\x4e\xc6\xcf\x59\x20\xa9\xf4\xf7\ \x50\x59\x79\x31\x1d\xe3\xb7\x32\xfd\xb4\x27\xb1\xda\xab\x88\xc0\ \x24\xf8\x20\xf0\x62\x20\xc8\x4a\x35\xb7\x2a\x71\x87\xf7\x6f\xf3\ \xbd\x27\x9d\x4a\x8b\x41\xb8\xf3\xe7\xcf\xa7\xa7\xa7\x67\x64\xd5\ \x02\x2c\x51\x8a\x7e\x80\x1a\x46\xd0\x69\xbb\x4f\x2a\x79\x13\x17\ \x76\x9c\x01\x0c\x14\xfd\xbb\x8b\x3c\xfd\xd0\x4c\xea\xd5\x76\x84\ \x90\x31\x41\x1e\x8c\xf0\x5b\x69\x7d\xd6\x31\xa5\x54\xf4\x7c\xa0\ \x6f\x1a\x1b\x07\x7b\x78\xdd\x82\x27\xe8\x18\xbf\x27\x62\x81\x90\ \x09\xf4\xec\x61\xab\xec\x60\xb2\x01\xc6\xa2\x48\x63\xa0\x8d\x65\ \x5f\x7c\x5b\x7b\xde\x7d\x3e\xfe\xf8\xe3\x39\xf5\xd4\x53\x47\x5e\ \x31\x48\x60\x69\xc5\x20\x86\x7d\x14\xa9\xbf\x27\xe1\xf1\x67\xd3\ \xbe\x81\xe2\xf9\xd5\x9d\x3c\xb7\x62\x12\x4a\x59\x18\x86\xc4\x30\ \x0c\xa4\x6c\x6a\xbf\x61\x18\x31\xa1\xe9\xc2\x1b\x4e\xd0\x79\xef\ \x49\x7e\x56\x75\xb0\x8d\xf5\x8f\x5c\xc0\xdc\xd7\x3f\x49\xcf\xe4\ \x5d\x08\xe1\x45\xde\x7d\xdc\x29\xd4\xcd\x00\x2d\xcd\x80\x50\x45\ \xee\xbb\xf6\x0a\xec\xfe\xb6\xcc\x7b\x5c\x28\x14\x58\xb4\x68\xd1\ \xc8\xac\x06\xfa\xed\x60\x96\x96\xfc\xc9\xf7\x05\x44\x94\xda\x51\ \x09\xad\xcf\xb3\xf5\x81\xff\xef\xc1\x53\x0f\x76\xb1\x75\x63\x37\ \xa6\x29\x30\x0c\x85\x52\x0a\x29\x65\x24\x74\x00\x29\x65\xae\xa0\ \x87\xd3\xfc\x56\x7f\x17\x0b\x50\x95\xc2\xf3\x60\xed\xc3\x8b\x98\ \x7a\xe2\x0b\xcc\x3c\x63\x63\x50\x2e\x96\x78\x78\x1a\xfd\x7b\x89\ \xda\x42\x7e\x6e\x64\xf5\xed\x67\xb0\xed\xe1\x19\xb9\xf7\x78\xc1\ \x82\x05\x1c\x7f\xfc\xf1\x99\xe7\x5e\x78\x7e\x3d\xb3\xe7\x9c\x34\ \x32\xc2\x40\x95\x61\xdb\x55\xac\x3c\x9b\x4d\xfd\x69\xbb\xef\x07\ \x46\x02\x50\x9e\xe2\x91\xdf\x74\xb0\x7d\x6b\x39\x12\x7c\xb8\x87\ \x9a\x99\xa4\xea\x83\x02\x6e\x0b\x53\x91\x07\x90\xf0\x3a\xe1\xe3\ \x8b\xcf\xcd\x40\x4a\x98\xbd\x60\x0b\x52\x78\x29\x16\x90\x89\xfc\ \x80\xc8\xe8\x5d\xdc\xb4\xa6\xc8\xbf\x7d\x39\x3f\x9b\x37\x79\xf2\ \x64\x66\xcd\x9a\x95\x79\x6e\xc7\x8e\x97\x78\xe4\xd1\xfb\x8f\x2e\ \x00\x84\x32\x50\x4a\x17\xa1\xaf\xe5\xe1\xbd\x13\x39\x59\x3e\xa1\ \xe5\xf7\xb3\x6d\xbe\x9f\x09\x5c\xb3\x52\xb0\xf5\xf9\x22\xa6\xa9\ \x52\x82\x48\x0a\x5f\x7f\x9d\x14\x58\x1e\x48\xc2\xd7\x21\x93\xe4\ \xf9\x13\x49\xbf\x20\xdc\xb7\xac\x99\x4a\xcf\xc4\x21\xc6\x4d\xdd\ \x1f\x24\x79\xfc\x3d\x4c\x1e\x29\xad\x85\x2d\xd9\xf4\xea\x3a\xf0\ \x8d\xbf\x9f\x84\xd3\xc8\x06\xae\x69\x9a\x2c\x5a\xb4\x28\x13\x88\ \x8d\x86\xcd\xaf\xef\xb9\x83\xc2\x21\xd4\x01\x0e\x33\x03\x98\x5a\ \x18\xa8\x51\x9c\x22\x23\x34\x14\x5a\x46\x4f\x80\xd0\xed\xbe\x48\ \x69\xff\xda\xe5\x92\x27\x1e\x2c\x60\x59\x2a\x25\xf8\x50\xe0\xa1\ \x80\x93\x00\xc8\xda\xb3\x40\x90\x14\xb6\x1f\x55\xc4\x7d\x0a\x1d\ \x1c\xc9\xef\xa1\x94\xe2\xe9\xfb\x67\xb3\xe8\x12\x45\xcf\xe4\xa1\ \x14\x08\xf4\xcc\x5f\xb2\x4f\xf2\xdb\x37\x74\xb1\x69\x4d\xbe\x00\ \xcf\x3c\xf3\x4c\x3a\x3a\x3a\x32\xcf\x3d\xfe\xf8\x83\xec\xda\xb5\ \x9d\xe9\x33\x66\x8d\x04\x1f\xa0\x30\xac\x03\xa8\x57\xf6\xf4\xb4\ \x6d\x96\xdd\x07\xd8\xb3\x53\xf2\xe4\x43\x06\x86\x61\xc4\x84\x92\ \xd4\xc2\x24\x2d\x87\xbe\x41\xfc\xd1\xc3\x30\x1d\xca\xdd\x55\x26\ \x9e\x20\xe9\xea\x31\xe8\xec\x32\x40\x15\x00\x41\xdf\x36\x83\xbe\ \x9d\x0e\x76\xd5\x44\x36\xba\xa2\x6b\xea\x7b\x16\x23\x84\xd7\xf3\ \x3c\x58\xb5\x6c\x2a\xe7\x5e\xf6\x12\xa5\x8e\x46\x04\x80\x78\x7e\ \x20\xee\x08\x2e\x5f\x66\x71\xcf\x4f\xcb\xb9\xf7\x75\xc6\x8c\x19\ \xcc\x9e\x3d\x3b\xf3\xdc\xae\x9d\xdb\x79\xf4\x91\xfb\x47\x92\x13\ \x68\x66\x94\x5c\xf5\x52\xae\x3a\x28\xbb\x1f\x3e\x77\x6d\xc5\x7d\ \x77\x39\x78\xae\x45\xa1\x70\x70\x42\x90\x52\x46\xbb\xe7\x79\xc1\ \x73\x87\x8e\x9e\x41\x16\x9e\x57\x62\xd2\x54\xe8\xea\x6e\xcb\x0c\ \x55\x67\x9e\xe4\x22\x10\x0c\x0d\x56\xd9\xbd\xdd\xe5\xf9\xb5\xd0\ \xb7\xbd\x8c\x61\x14\x30\x4d\x33\xda\xf5\xef\x91\x04\xe1\x50\xbf\ \xc5\xe3\xbf\x99\xcc\x1b\xdf\xd1\x87\x61\x78\x90\xd9\x5d\xe4\x5f\ \x6f\xb0\x1f\xbe\x7c\x4d\x3b\x32\xa7\xf3\xbc\x58\x2c\xe6\x52\xbf\ \xe7\x79\xfc\xea\x57\x3f\xc3\xf3\xbc\x91\x01\x80\x8a\xea\xcf\x49\ \x04\x91\xeb\xf4\x65\x65\xfa\x08\xa8\xdf\x10\xf0\xc8\x83\x43\xf4\ \xef\x57\x14\x8b\xad\x9d\xb0\xd0\xf3\xd7\x05\xef\x79\x1e\xae\xeb\ \xd2\x3d\xae\xc6\x82\x73\xeb\xcc\x3b\x79\x02\x88\xa0\x40\xab\x34\ \xf1\x0b\x95\x0a\x49\x3b\xba\x3a\xe8\x3c\x19\x66\x9f\x04\xbb\xb6\ \x55\x79\xfa\x31\x93\xbe\xed\x16\xa6\x59\xc4\xb2\x2c\x2c\xcb\x8a\ \x80\x90\xe5\x4b\xec\xdf\x5d\x60\xeb\xba\x0e\x66\x9d\x52\x8f\xe5\ \x06\xa4\x56\xf9\x73\x3d\xf8\x5a\xaf\x49\x65\x50\xe4\x3a\xa7\x8b\ \x17\x2f\xa6\x50\x28\x64\x9e\x5f\xb6\xec\xb7\xf4\xf5\xed\x18\x39\ \x61\x60\xbf\xda\x9d\xe1\x03\x90\x53\xe2\x15\x5a\xaa\x37\x2b\xf4\ \x13\xec\xef\x73\x78\xe6\xa9\x3a\x96\x55\xca\x74\xc6\x74\xdb\xab\ \x0b\xde\x75\x5d\x5c\xd7\x45\xaa\x0a\xa7\xbe\x7e\x88\x73\x2e\x98\ \x85\x69\x91\xc8\xca\x35\x5f\xfb\xff\xab\x84\xeb\xda\x7c\x9c\x32\ \xbd\x8d\x29\xd3\x60\xcb\xa6\x06\x0f\xdc\xd3\xc0\xb3\xdb\x91\x52\ \x62\x9a\x26\x96\x65\xe5\x32\xc1\x33\x8f\xb6\x33\x6d\xb6\xa2\xd0\ \xe6\x69\xfe\x40\xb3\x60\xb4\xf4\x2e\xc9\xb2\xdf\xe4\x47\x2b\xd3\ \xa7\x4f\xcf\xad\xf1\xbf\xf0\xc2\x06\x1e\x7b\x74\xe9\x48\xcb\x03\ \x18\x89\x44\x10\x19\x39\xfe\x78\x57\x8f\xd0\xe2\x00\x1d\x00\xa6\ \x10\xdc\x7b\x57\x1f\x4a\x19\x91\x13\x96\xa5\x6d\xbe\xdd\xf5\x62\ \x82\x77\x1c\x07\xa3\xb8\x93\xcb\xde\x35\x8d\xe9\x33\x4f\xd0\x08\ \x57\x4f\xc9\xd2\xf2\x7b\xea\xc7\x94\xf2\x23\x99\x59\xf3\x0a\x4c\ \xb8\xda\xe1\xee\x5f\xbc\xc4\xd0\x81\x13\xa2\xee\x9b\x90\x0d\x42\ \xad\x0d\xbf\xa7\x5d\x33\x79\xfa\xa1\x02\xe7\x5c\x62\xa6\x00\xb0\ \xe5\x79\xc9\xd7\xae\xcf\x6f\xff\xea\xea\xea\xca\x2d\xf4\xd4\x6a\ \x55\x7e\x7d\xcf\x1d\xb1\xa8\xe6\x95\x05\xef\x87\x39\x0f\x20\x28\ \x04\x8f\xe1\xf3\xe4\x6b\x0b\x03\x0b\x41\x51\x3b\x5f\xd0\xce\x15\ \xd8\xbc\xa1\xc6\xf6\x17\xed\x94\x37\x1e\xee\xa1\xd6\x87\xc2\x77\ \x1c\x87\x46\xa3\x41\xbd\x5e\xa7\xbd\x6b\x80\xcb\xdf\x3d\x89\x19\ \x33\xc7\xe3\x37\xd0\x98\xc1\xc8\x40\x23\x78\x6e\x05\xc7\xad\x60\ \xd7\x9f\xeb\xaf\x0b\x40\x01\x85\x85\x52\x16\x0a\x8b\xae\xee\x76\ \xae\x7c\xef\x2c\xa6\xce\xec\xa7\x56\xab\xd2\x68\x34\x70\x5d\x37\ \x66\x87\x75\xc0\x6e\x5c\x63\x32\xb0\xcf\x44\x28\x0b\xa1\x0a\x08\ \x65\x61\xd7\x2c\xbe\x76\xbd\x47\xbd\x96\x9f\x97\x58\xb4\x68\x11\ \xed\xed\xd9\xd9\xe0\x07\x1e\xf8\x0d\xfd\xfd\xfb\x0f\xa3\xd4\x0e\ \x73\x35\x30\x0d\x82\xe4\x5e\x00\xed\xb9\x11\x3c\x37\x34\x10\x2c\ \xfb\xfd\x1e\x84\x48\x7b\xdf\x49\x67\xcf\x75\x5d\x1a\x8d\x46\x24\ \xfc\x72\xf7\x10\xef\x7e\xef\x6c\x66\xcc\x98\x0e\x58\x81\xb0\xad\ \x0c\x01\x87\xbb\x11\x3d\x17\xc1\xb9\xe6\xa3\x7e\xdc\x02\xe5\x83\ \xc7\x2a\x94\xb8\xf4\x8a\x69\x8c\x9b\xd2\x47\xb5\x5a\xc5\xb6\x6d\ \x1c\xc7\xc1\xf3\xbc\x58\x28\x2a\x84\x00\x25\x78\xf4\x77\x32\x02\ \xbb\x41\x81\x1f\x7c\xcb\x65\xe5\xe3\xf9\x8e\xdb\xec\xd9\xb3\x73\ \x6b\xfc\x5b\x36\x6f\xe4\x99\x55\x4f\x1e\xd6\x54\xf0\x11\x60\x00\ \x2b\x4a\x0b\x67\x09\xbf\x29\xec\xe6\x71\x43\x3b\xbe\x65\x53\x85\ \x17\x37\x57\x73\x43\x30\x9d\xfa\x43\x00\xd4\x6a\x35\x3c\xf6\x72\ \xc9\x1f\x4e\xa2\xb3\xbb\x0b\x15\x68\x6e\x53\xe8\x85\x14\xf0\xb2\ \xd8\x27\xff\x78\x13\x04\x60\x61\x5a\x45\xde\x76\xc5\x4c\x4a\xed\ \x03\xd4\x6a\xb5\x88\x09\xc2\x70\x53\x67\x81\x9d\x2f\x79\x0c\x1d\ \x30\x31\x28\xb2\xf6\x69\xc1\xcf\x7e\x98\x3f\x35\x72\x67\x67\x27\ \x67\x9e\x79\x66\xe6\x39\xc7\x71\xf8\xe5\x2f\x5f\xb9\xd7\xff\xaa\ \xd4\x02\xf2\x7d\x80\xd6\x11\x80\x21\xe0\x81\xdf\x6e\xcb\x8d\xbd\ \x43\xe1\xeb\x0e\x5f\xa3\xd1\xa0\x6e\x57\x78\xe3\xa5\xdd\xcc\x9c\ \x35\x63\xd8\x7c\x7b\xf2\x7b\xc5\x33\x92\x2a\xd5\x76\xf6\xfb\xbb\ \xb7\x70\xea\x59\xc7\x31\x79\x4a\x8f\x16\xd1\x0a\xba\xbb\x8f\xe7\ \xaa\x3f\x6f\xe7\xdf\xfe\x65\x4b\x14\x1e\x0a\x21\x52\xfe\x80\xe7\ \x0a\x36\xac\x6e\xb0\xf8\xc2\x4e\x56\x3c\xbe\x8d\x75\x6b\x57\xa5\ \xee\x5d\x5b\x7b\x17\x42\x08\x16\x2e\xbc\x22\xfa\xfb\xe4\xb6\x77\ \x6f\x1f\xe7\x9e\x7b\x91\x1f\xff\xf7\x6d\xc7\xae\xd7\x63\xb5\x0f\ \x79\x90\xa3\x98\x5d\xd7\xbd\xf9\xe3\x9f\x78\x62\x00\xb0\x0b\x85\ \xc2\xd2\xc3\x3c\x36\xd0\xcc\x10\xb7\x8a\xa5\x7c\x69\x11\xfb\x57\ \x06\x6d\xb6\x6e\x1e\xa0\x54\x2a\x67\xc6\xdc\x3a\xfd\x7b\x9e\x47\ \xa3\xd1\xc0\xb6\x6b\xcc\x98\x5b\xe7\xc2\x8b\x2e\x48\xe5\xd7\xe3\ \x23\x79\xb2\xc6\x14\xd0\xe2\x3b\xc1\x53\x0f\xef\xe0\xa1\xdf\xef\ \x65\xc3\xba\xfd\xbc\xff\x2f\x17\x52\x2a\x59\xfe\xa7\x2a\xbf\x8d\ \xac\xfb\xb8\x02\x17\x5e\xd2\xcd\x03\xf7\x56\xa2\xef\x98\xf4\x59\ \x4c\xd3\x64\xf5\xf2\x0a\x67\x5f\x38\x0e\x25\x05\xae\xeb\xa4\xee\ \xdc\xd0\xe0\xbe\x40\x90\xf9\xd3\x19\x4e\x99\x32\x8d\x29\x53\xa6\ \xbd\x72\x8d\xb7\xac\x77\x6b\x2f\x3f\x7a\x84\x7c\x00\x2b\x4a\x0c\ \x35\x29\xd4\xd4\x8e\x99\x18\xb1\xf3\xfe\xe3\xea\x95\x7d\x78\x1e\ \xb9\xda\x1f\xa2\x3d\xd4\x7c\xdb\xb6\x51\x62\x90\x2b\xdf\x73\x71\ \xcc\x71\x23\xa0\x6e\x22\x9f\x43\xa7\xf4\xa6\x3d\x6e\xfa\x21\x85\ \xd8\xa3\xa0\xc0\x13\x0f\x6d\xe3\x57\xff\xb9\x05\xd3\xb4\xd8\xb3\ \x53\x70\xcf\x7f\xad\x07\xd5\x34\x09\x4a\xf9\xd7\x3b\xe3\xac\x19\ \xf4\x8c\xf7\x4d\x41\xe8\x0b\x84\x0c\x10\x82\xb8\x32\x28\x59\xff\ \x6c\x25\x83\x21\x8f\xfe\x66\x1c\x4e\x06\x20\xd7\xf1\xb3\x22\x67\ \x4f\xb7\xa9\xba\x8d\x35\x84\xc9\xd3\xcb\xb7\xa7\x32\x6e\x21\xb5\ \xea\xf4\xef\xba\x2e\xb6\x6d\x53\xab\x55\x59\x7c\xde\x14\x3a\x3a\ \x3a\x23\x07\xaf\x99\x91\xd4\x1d\xce\x42\xce\x5e\xc4\xd0\x00\x61\ \x04\xaf\x77\xbe\x58\xe1\xd7\xff\xbd\x15\xd3\x2c\x44\x89\x9f\x55\ \x4f\x0d\xb2\xf2\xa9\x97\x02\x80\x35\xfd\x8b\x62\xb1\xcc\xc5\x6f\ \x9e\x47\xa5\x3a\x80\x6d\xdb\x91\x2f\x10\xb2\x41\xf8\x5b\xd6\x3d\ \x33\x98\x60\xc8\x51\x07\x00\xcd\x63\xd6\x3c\xee\xb8\xc0\xad\x0c\ \x96\xf0\x05\x34\x70\xa0\xc1\xe6\xe7\xd3\x73\x2d\xe9\x19\xbe\x30\ \xce\xb7\x6d\x9b\x7a\xbd\x8e\xa4\x9f\x0b\xde\xb8\x20\x26\x7c\xb4\ \x6b\x11\x73\x46\x75\xf6\xb1\x32\x9c\x50\x1f\x8c\x3b\x5e\xec\xe7\ \xd6\x7f\x7e\x02\x21\x0a\x14\x8b\x45\x0a\x85\x02\x85\x42\x81\x62\ \xa1\x8d\x3b\x6f\xdf\x4c\xdf\x8e\x5a\xc4\x22\x04\x2c\x30\xef\xe4\ \x59\x4c\x9d\x56\xa6\x5a\xad\xe2\x38\x4e\xd4\x8f\xa0\x03\xe0\xf9\ \x0d\x07\xf0\x5c\x31\x7a\x01\xb0\x4f\x6e\x8e\x34\xcb\x08\xc2\x3b\ \x23\xd3\xbb\xb6\x32\xbd\xec\x17\x36\xed\xc5\x71\xbc\x98\xa6\xeb\ \x19\xbe\x30\xd6\xf7\x35\xbf\x46\xa5\x52\xe1\xec\xf3\xe6\xd0\xd9\ \xd9\x13\xf7\xd4\x73\x01\x57\xd0\xc2\xce\xf8\xf7\x0c\x9f\xd7\xab\ \x1e\xb7\xff\x78\x15\xae\x6b\xc6\x84\x1f\xb2\x80\xc0\xe4\xfb\xdf\ \x79\x22\x10\x64\x3c\x32\x78\xfd\xf9\x53\xa9\x56\x2b\xd4\xeb\xf5\ \x98\x19\x08\x41\xe0\x34\x04\xfd\xfb\x9d\xd1\x0b\x80\x2a\xfb\x33\ \x6f\xb8\xc8\x11\x44\xec\xb9\xb0\x58\xbf\x76\x67\xaa\x6c\x1b\x7a\ \xfa\x8e\xe3\xc4\x92\x3d\x7e\xe8\x55\xe7\xbc\x0b\xce\x48\xc4\xf5\ \x96\x16\xbf\x9b\x99\x3e\x09\x09\x36\x08\x5f\xd7\x6b\x1e\xb7\x7c\ \x63\x29\xbb\x76\x54\x22\xe1\xeb\xf9\xfe\x50\x98\xfb\xf7\xd6\xf8\ \xfe\x77\x1e\x42\x7a\x22\xba\x16\xca\x64\xfe\x29\xaf\xa3\x50\xf4\ \xa2\xb0\x30\x04\x81\xce\x02\x9b\x37\xed\x1f\x71\x00\x38\x42\x33\ \x84\x24\x3b\x7f\x44\x6e\x18\x08\x02\xa4\x62\xdd\x73\xdb\x33\xab\ \x7a\xe1\xb1\xd0\xee\x87\x00\xe8\xe8\x76\x99\x38\x71\x62\xce\x1c\ \x43\xf9\x29\xde\x64\x08\x1a\x5c\x80\x5f\xde\xf1\x38\xdb\x5e\x1a\ \xa0\x5c\x2e\xc7\x84\x9f\x55\x5e\x5e\xf1\xe4\x56\x66\xce\x59\xcb\ \x5b\x2e\x5b\xa8\x55\xee\x0a\x9c\x7a\xc6\x64\x96\x3f\xde\x47\x5b\ \x5b\x1b\xa6\xe9\xb3\x48\x98\x20\x12\x42\xb0\x77\xf7\x20\xc5\xa2\ \x49\xa3\x71\x54\x27\x0c\xdb\x05\xec\x3f\x02\x00\x20\xc7\xcb\x55\ \x31\xf1\x8b\x8c\xf8\xdb\x71\x1a\x3c\xbf\x69\x07\x3d\x3d\x3d\xb1\ \x30\xcf\x30\x8c\xe8\x75\xd2\x04\x9c\x76\xe6\xd4\x40\x7b\xb3\x07\ \x9a\x66\x7f\xbf\x44\x1f\x42\xf0\xea\xb6\x7f\xbf\x9f\x07\xef\x5f\ \x47\x67\x67\x27\xc5\x62\x31\x56\xe4\x09\x85\x1e\xd6\x1a\xc2\xfd\ \xe1\x65\xab\x79\xeb\x65\xe7\x68\xd7\x13\x9c\xb9\x70\x0e\x0f\xdc\ \xb7\x91\x72\xb9\x1c\xeb\xd9\x0f\xc1\x7c\xd6\xa2\xf1\x7c\xe3\x3b\ \x7f\xc2\x86\xf5\x7b\x59\xb3\xba\x8f\x07\x97\x6e\x61\xeb\x96\x03\ \xac\x7f\x6e\x2f\x95\xa1\xdc\xda\x40\x43\x4a\x29\x5d\xd7\x89\x3a\ \x45\x0f\x1c\xd8\xc7\xfe\xfd\x7b\x53\x6f\x3c\xf9\xe4\x83\x1a\x23\ \xf8\x96\x9b\x6f\x5a\xb8\xfa\x08\x31\x80\x99\xa9\x6d\xc9\x77\x25\ \x01\x50\xad\x54\x86\xa9\xe7\xcb\x98\x09\xa8\xdb\x35\xce\x5a\x74\ \x9a\x1f\x8e\xc5\x66\xfe\x82\xf4\xf8\x42\x72\x92\x3e\xfe\xeb\xe5\ \x4f\x3c\xc7\xd2\xfb\x9e\xa5\xbd\xbd\x1c\xd9\xfb\x30\xf2\xc8\x03\ \x5f\x7b\x87\xe0\x63\x9f\xf8\x93\x00\x80\x4d\xb2\x99\x30\x69\x02\ \xae\x57\xa3\x5a\xad\x52\x2a\x95\xa2\x50\x36\x64\x81\x03\xfb\x87\ \x68\x2f\x59\x5c\xf4\x07\xf3\x78\xe3\x1f\xcc\xe5\x23\x7f\x73\x3e\ \x0a\x89\xe7\x29\x9e\x7c\x6c\x1b\xdb\x8b\x6b\xd8\xda\xf3\x4f\x28\ \xa7\x6d\x5d\xe5\x47\xdf\xfc\x60\xf0\xc9\xdb\xbf\xfa\x0f\x9f\x39\ \x07\x7f\xd6\xf6\xfc\xea\xe1\x8c\x59\x07\x0b\x80\xda\x11\x31\x01\ \x7d\x72\x2d\x0e\x35\x8a\x74\xb5\x04\x41\x16\x00\xd6\x3f\xb7\x2d\ \x26\xec\x50\xf8\xa1\x23\xd5\x4c\xfa\xd8\xd8\xb6\x0d\xa2\xce\x89\ \x27\xcd\x8d\x18\xa0\x39\x7c\x3c\xb9\x18\x85\x4a\x71\x8f\x5e\x81\ \x7c\xe2\xb1\xd5\xfc\xf3\x37\xee\xa0\x5c\xee\x88\xd5\xf8\x75\xda\ \x0f\x7d\x90\x10\x7c\x52\x36\xf8\xe8\xdf\xbc\x87\xe3\x8e\x1f\x9f\ \xba\x07\xc7\xf5\x8c\x67\xdc\xb8\x32\x43\x83\x55\xda\xdb\xdb\x23\ \xdb\x1f\x16\xad\x6c\xdb\xc1\x69\x88\xc0\xf7\x69\x02\xd6\x32\xe1\ \xbc\x37\xcc\xe1\x29\xf7\x21\xb6\xb9\xab\x00\x86\x6e\xbe\x69\xe1\ \xc3\xcd\x4f\xbe\xfc\x9c\x11\xef\x03\x28\x24\x28\x13\x21\xac\x0c\ \x00\x88\x5c\x73\x20\x84\x60\xa0\xbf\x9a\xaa\xeb\xeb\x39\x6f\x3d\ \xed\x6b\xdb\x36\xe3\xc7\x8d\xa7\xb3\xf3\xb8\x66\x66\x36\x63\x3e\ \x81\x34\x00\x45\x0c\x8c\xbb\x77\xed\xe5\x96\x7f\xf9\x4f\x2c\xab\ \x40\xa9\x54\x8a\xec\x7e\x98\x73\xd0\xb3\x8d\xf5\x7a\x9d\x4a\xa5\ \xc2\xc0\xe0\x01\xfe\xf8\xcf\xde\xc4\x69\xa7\x9d\x92\x82\x5a\xf8\ \xe9\x73\xe7\xbd\x8e\x47\x1e\xda\x10\x99\x01\xcb\xb2\xa2\xdf\x23\ \xa5\x7f\x8f\x0c\x0a\x31\xb6\x6a\x3e\x7f\xf5\xf3\x04\x87\xd5\x07\ \x70\xb0\x69\x6b\xf1\x91\x22\xe3\x86\x81\x60\xfd\xfa\xad\x29\xe1\ \x87\x00\xd0\xb5\x30\xcc\x01\x14\x4a\xc5\x8c\x71\x88\xba\x35\xa6\ \x65\xba\x77\xe7\x8e\xdd\x5c\xff\xf7\xdf\xc4\xae\xbb\x74\x77\x97\ \x53\xda\x1f\xda\x7d\xc7\x71\x22\xe1\xf7\xf7\xf7\x73\xe1\x45\xa7\ \xf3\xf6\x77\x5c\x9e\x99\x56\xf6\x5f\x0a\x26\x4c\x18\x47\xb5\x5a\ \xa5\x5e\xaf\x53\x2c\x16\x63\xd1\x8c\xe7\x79\xac\x5c\xb1\x91\xcb\ \xa7\x9e\x40\x72\x6e\x24\x3f\x92\xda\x77\x6c\x03\x60\x87\x7c\x86\ \x6e\xf3\x75\x19\x1e\xb8\xc8\x1c\x09\x14\x9e\x51\x92\x98\xe0\xc3\ \x3d\x8b\x86\x1b\x8d\x06\x53\x26\x9f\x80\xa0\xa0\x4d\xdb\xa6\x7f\ \x66\x9e\xe7\xef\xff\xeb\x3a\x0e\xdf\xfc\xa7\x1f\x71\xe0\x40\x85\ \xae\xae\xae\x58\x43\x47\xd2\x07\x09\x6d\xfe\xc0\xc0\x00\x27\x9e\ \x3c\x95\x0f\x7d\xf8\x7d\x41\x5a\x39\xbd\xee\x51\xf8\x7b\x4e\x98\ \x76\x02\xf5\x7a\x1d\xdb\xb6\x69\x34\x1a\xb1\xf4\xb5\xeb\xba\x3e\ \x4b\x06\x8d\x33\x49\x20\x0d\xaa\xbe\x63\x1b\x00\xf1\x11\xc2\xad\ \x18\x20\x3e\xce\xdf\xf3\xd2\x5e\x76\x98\x4b\x0f\x35\x51\x67\x80\ \xae\x20\xf9\x43\x0b\xc1\xab\x0c\xd8\x39\x8e\xc3\x17\x3e\xfb\x0d\ \x56\x3d\xbd\x9e\xee\xee\xee\x18\xed\x87\x40\x8b\xfe\x5e\x29\x6c\ \xdb\xa6\x52\xa9\x60\x59\x8a\xbf\xfd\xf8\x47\x69\x6f\xeb\x8c\xfa\ \x09\x45\x66\xd5\x53\xa0\x3c\x23\x62\x80\xb6\xb6\xb6\x08\x00\x8d\ \x46\x23\xc8\x12\x0a\x04\xc5\x14\xfd\x47\x66\xf4\x58\x06\xc0\x56\ \xf9\x30\xf3\xcd\x77\x1d\x94\x09\xd0\x8f\x4a\x99\x0d\x00\x3d\x04\ \xd3\x41\xe0\xa7\x07\x0a\x5a\x08\x48\xcb\x78\x3f\x84\xc2\xed\x3f\ \xbd\x83\x47\x1f\x59\x49\x4f\x4f\x4f\x4a\xf8\x49\xbf\x23\x14\x5a\ \xa5\x32\xc4\xf5\x9f\xfb\x18\xe3\xc7\x4d\x4a\xf9\x1b\x59\x1c\x57\ \x2c\x96\xa3\x7c\x85\x1d\x2c\x8b\xac\x94\x8a\x00\xb0\x73\xfb\x6e\ \xad\x7d\x9e\x18\x83\x39\x2a\x77\x7e\xc7\x87\x80\xaf\xe0\x4f\x0b\ \x77\x1a\xd0\x33\x22\x01\x50\x51\x7b\x82\x8c\x9c\x38\x08\xc1\x37\ \xe3\xf0\x90\x01\x1c\xc7\x89\x1e\xc3\x2c\x9a\x1e\x83\x87\xe7\xa5\ \x24\x98\x96\xbe\xf5\xe7\xeb\xc2\xf9\xf7\x9f\xdc\xce\x2d\xff\xfa\ \x43\x3a\x3b\x3b\x33\x43\x3d\x99\xe8\xcd\x0e\x69\x5b\x29\xf8\xf1\ \x8f\x7e\xce\x57\x6e\x5a\x10\x38\x88\x32\xf7\xba\x02\x98\x31\x7d\ \x66\x64\xaa\x1a\x8d\x46\x74\x8d\xd0\x84\x6d\xdc\xb8\x39\x00\x6f\ \x9a\x41\x76\xca\x15\x39\xbf\xe0\xee\x6d\x40\x6f\x10\x11\x4c\x00\ \xce\xa2\x39\x4f\xe0\xb9\x41\x85\x2a\xdf\x3f\x87\xb0\x0b\xe5\x45\ \xa0\x72\xc4\x00\xb0\x53\xad\x40\xe2\x60\xd1\x3e\x4c\xd5\x30\xfe\ \x4c\x7a\x4d\x0d\x71\x1c\x27\x12\x4e\x38\xea\x37\x8c\x00\x42\x10\ \x48\x29\xe2\x31\x78\x8b\xeb\x08\x60\xe5\xca\xa7\xb9\xe5\xdb\xff\ \x16\x6b\xe9\x4e\xc6\xf9\x59\x45\xa8\xd0\x24\x3c\xf6\xe8\x0a\xbe\ \xfa\x0f\xff\xc4\x27\x3f\xf9\x09\x84\x30\x5b\x5e\x71\xfd\xfa\x17\ \xa2\xdf\x62\xdb\x76\xc4\x64\x61\x08\x3b\x7f\xfe\x29\x18\x81\x09\ \xd0\x81\x34\xa8\xb6\xe1\x71\x30\xcb\x1b\xde\xbd\x07\xb8\x37\xd8\ \x81\xcb\xa7\x03\x6f\x28\x97\x3b\x2f\x06\x06\x68\x8e\x3f\xbb\x0f\ \x7f\xc5\xf6\xea\xcd\x37\x2d\x7c\xf2\x55\x61\x80\xaa\xda\xc3\x26\ \xef\x77\xcc\x37\xdf\x79\x90\xe5\xe3\x90\x01\x64\xcc\xc9\xd3\x87\ \x62\x25\x4d\x80\xeb\xba\x48\x8f\x18\x8d\xe6\x05\x7e\x00\x2b\x96\ \xaf\xe0\xaf\xff\xfa\x6f\x91\x52\xd1\xd9\xd9\x79\x50\xc2\x0f\x69\ \xdb\xf3\xfc\x99\x46\x8a\xc5\x22\x3f\xbb\xfd\x4e\x16\x9c\x71\x16\ \x97\x5f\x7e\x59\xcb\x5f\xa4\xa4\x19\x01\xd6\x71\x9c\xe8\x5a\x21\ \x00\x4a\x1d\x2e\xdb\xe4\xbd\xd4\xe9\xc7\x55\x8a\x7e\x5e\x64\x8f\ \x5c\xc7\x6e\xb5\x0e\xc9\xa1\x14\x8b\xee\x7e\x09\xb8\x6d\xfd\xba\ \xbb\x6f\xbb\xf9\xa6\xaf\x1e\x5d\x13\x00\xf0\xdf\xce\x07\x78\xd4\ \xfd\x47\xda\x44\x0f\xdd\x62\x2a\x02\x41\xa7\x98\x82\x89\x89\x89\ \xc0\x10\x7e\x19\x66\x92\x58\x8c\x25\x2c\x0c\x24\x15\x6f\x53\x24\ \x7c\xdb\xb6\x23\x00\x84\x4e\x60\xd2\x04\xec\xd8\xf7\x02\x7b\xd5\ \xc3\x99\xeb\x83\xe8\x2d\x66\x8d\x01\xb8\xf6\xda\x2f\x51\xad\xd6\ \x22\xe1\xeb\xc2\xd5\x41\x16\x26\x9d\xf4\x76\xeb\xf0\x3d\xa6\x69\ \x52\x28\x14\xf8\xdc\xe7\x6e\xa0\xf3\xc4\x15\x14\x66\xaf\xa4\xa6\ \xf6\x45\x83\xc0\x8d\xa0\xfc\x54\x14\x26\x8f\xed\xdf\x13\x63\xad\ \x90\x4d\x42\x00\xac\x71\xbe\x4a\xc9\xab\x50\x55\x1e\x75\xe5\xd1\ \xc0\x9f\x5c\x5a\xc6\xc6\x2c\x1c\xa3\x4e\x60\x94\x64\x51\xcf\x62\ \x28\xc1\x76\x08\x04\x6e\x44\x75\x37\x4b\xf8\x2d\x18\x1b\x84\xdf\ \x7e\x51\x12\x06\xd3\x2e\x00\xe7\x8e\x49\x91\x96\x87\x79\xf4\x50\ \x60\x61\x1c\x1d\x3a\x85\x0f\x3c\xfc\x4b\xde\xe8\xfc\x1c\xcf\xf0\ \x27\x5d\xf6\xb4\x5b\x17\x0a\xc3\x39\xa0\xf8\xe7\xf7\x5b\xf4\x6d\ \x3b\x2e\xb2\xfb\x61\x6a\x36\x04\x40\x72\x34\x71\x08\x82\xe4\xac\ \x20\x96\x65\xd1\xd6\xd6\x46\x7f\x7f\x3f\xd7\xbc\xef\x7b\x5c\x7b\ \x7b\x83\xee\x29\xe0\x2a\x19\x85\x72\x05\x61\xe0\x62\xb2\x66\x65\ \x0d\x21\xa6\xc7\xc2\x4a\x7d\xdc\x82\xd5\xe6\x65\xce\x5a\x7c\xcc\ \x97\x83\xd3\x9e\x87\x1a\x76\xf1\xb7\xf0\x5c\xcf\x04\x19\x4b\x96\ \xe8\x99\xb3\x70\xd7\x47\xdd\x6c\xdb\xea\x52\xe9\xf7\x35\x2f\x14\ \xb8\xde\xe0\x5d\x54\x8a\xff\xbe\xc9\x60\xfb\xfa\x4e\x4a\xa5\x52\ \xa6\xdd\x0f\x7b\x0c\xea\xf5\x3a\xf5\x7a\x9d\x6a\xb5\x4a\xad\x56\ \x8b\xe2\xf7\x10\x70\x21\x10\x8b\xc5\x22\xe5\x72\x19\x59\x3d\x9e\ \x1f\x7e\xba\x80\xac\x0b\x0a\xc2\xa4\x20\x8c\x60\x37\x29\x08\x78\ \xe9\x05\x99\x79\xad\x70\x9f\xbd\xc8\x4b\x8c\x51\x3a\xba\x10\x30\ \x8e\xf4\x05\x54\xc6\x0c\xa0\x49\x60\x4c\x9f\xaf\x22\xe1\x87\x9a\ \x92\x04\x42\x28\x7c\xc3\x30\x28\x28\x93\x17\x56\x7a\x7e\x45\x5f\ \x08\x0d\x04\x7e\x32\xf5\xb6\xcf\x4a\x1e\xfa\x45\xb3\xac\x9b\x4c\ \xf1\x46\xdd\xc4\x41\x69\x79\x68\x68\x88\xc1\xc1\x41\x86\x86\x86\ \xa8\x54\xfc\xa6\x8e\x66\xdc\x2e\x23\x16\x28\x16\x8b\xb4\xb7\xb7\ \xb3\x79\x79\x17\xff\xf5\x35\x41\x49\x18\x14\x85\x49\x51\x98\x58\ \x42\x20\x1d\xc5\xee\x4d\xc5\x54\x78\xa9\xfb\x30\x52\xa9\x96\xab\ \x1c\x8c\x3a\x00\x90\xa0\xbb\xac\xe9\x13\x8d\x22\x4c\x99\xed\xc4\ \xf2\x00\x49\x16\x08\xe9\x58\x08\x81\x29\x4a\x6c\x5f\x67\x60\x08\ \x03\x03\x81\x21\xfc\x1f\x62\x01\x6b\x7e\x29\xf9\xdd\x8f\xda\x52\ \xdd\xc4\xc9\xce\x22\x5d\xf8\x07\x0e\x1c\x60\xa8\xb6\x9b\xfd\xfb\ \xf7\x33\x38\x38\x18\x03\x81\x6e\x2a\x0a\x85\x02\x6d\x6d\x6d\x94\ \xcb\x65\x1e\xfc\x49\x27\xcb\x7e\x6a\x04\x20\xf0\xcd\xd9\xf3\x6b\ \x1a\x1c\xd8\xde\x16\xbb\x6e\x6c\xa0\xea\x24\x87\xf1\x33\x83\xa1\ \xea\x39\xf3\xa6\x8d\x3e\x00\xa8\x61\x96\x82\x50\x20\x0d\x41\xb9\ \xc7\x8d\x99\x81\x24\x0b\xe8\x13\x42\x98\xa6\xc9\x53\xbf\x36\x62\ \x5d\x7e\x86\x10\x58\x06\xac\x79\x48\xcb\x0d\x26\xda\xc8\x43\x4d\ \x0c\x85\x5f\xa9\x54\x18\x1c\x1c\xc4\xea\xea\xe3\x53\x3f\xd8\x8d\ \x28\xef\xa0\xbf\xbf\x9f\x4a\xa5\x92\x1a\xf5\x13\xb2\x4f\xe8\x0f\ \x94\xdb\x3b\xf8\x8f\x1b\x2d\xd6\x3d\xea\x51\x0c\x9a\xcb\xd6\x3c\ \xea\x50\x30\xdb\x52\xa9\xe5\x50\xfb\x27\xcc\x6a\xf8\xfd\x2f\x09\ \x45\x18\x35\x0c\x90\x1e\x76\xa9\x52\x93\xc6\x47\x0b\xae\xa8\xe6\ \x68\x79\x47\x19\x9c\x71\x81\x13\xdd\xec\x24\x13\x84\x37\x52\xef\ \xb1\xdb\xb1\xce\x62\xf3\x73\x0e\x66\xc8\x02\x08\xa4\x12\xfc\xf9\ \x57\x4c\x2e\xba\xca\x49\x65\x16\xf5\x9a\x7e\x68\xf3\x2b\x95\x0a\ \x9e\xb9\x97\x6b\x6f\xf5\x98\x3a\xa7\xc8\x27\xbf\xe7\x50\x73\x7d\ \x16\x08\x7d\x82\x7a\xbd\x1e\x1b\xff\x17\x46\x04\x6d\x6d\x6d\x58\ \xa2\x93\x6f\x5e\x63\x31\xb8\x4b\x60\x09\xc9\x63\xbf\xb4\x28\x16\ \x9a\x26\x40\xaf\x01\x34\x1a\x0d\x66\xbf\xde\x6d\xce\x12\xa0\xb2\ \x4b\xd7\xa3\xc8\x09\xcc\x86\x47\x72\x97\x80\xa7\x60\xda\x49\x5e\ \x2c\xd4\xcb\x2b\x0c\x45\xa3\x6f\x64\x81\x65\xbf\xf0\x7c\xfb\x2f\ \x7c\x00\x08\x04\x2e\x82\xff\x71\x33\x9c\xff\xf6\x46\x2c\xb7\xa0\ \x0b\x3f\x72\xfa\xec\x01\xae\xfe\x92\xc3\xb8\xd7\x41\x03\xc9\x09\ \xf3\x4a\xfc\xd5\xd7\x6b\xd4\x9d\x01\x2a\x95\x4a\x4b\xa7\xb0\x50\ \x28\xd0\xde\xde\x8e\x5b\xed\xe4\x86\xf7\xbb\xac\x7a\xb2\xc6\xb6\ \xb5\x65\x8a\xc5\x62\xc4\x00\x7a\x27\xb3\xe3\x38\x4c\x9e\xe7\x44\ \x53\x48\x46\x2c\xa0\xd4\x68\x33\x01\xaa\xb5\xe0\x95\x8a\x2d\xd1\ \x10\xce\x9d\x31\x7b\xa1\xc2\xb0\xdc\x94\xe6\x26\x9d\xc0\x90\x05\ \x0a\x56\x91\x65\xb7\x99\xe0\x05\x2d\xa0\x01\x13\x08\x04\xca\x34\ \x78\xcf\x67\x60\xf2\xec\x5a\x14\x7f\xeb\x00\xa8\xd5\x6a\x54\x6b\ \x43\xbc\xfd\xe3\x35\x16\xbe\xd5\xc0\x56\xfe\xca\x5f\x0d\x25\x59\ \x74\x69\x1b\xef\xbe\xb6\x42\xa5\x32\x14\x8b\x0c\xf4\x01\xa0\xba\ \x53\x58\x2e\x97\xd9\xbd\xb5\x8b\x9b\x3e\x54\xa2\xdc\xd6\x45\xb1\ \x58\x8c\x85\x9a\xa1\xf6\x9b\xa5\x06\x27\xbd\x41\xa1\xcf\x19\x72\ \xf4\x0d\xc0\x11\xf6\x01\xe2\x73\xf1\xeb\xc7\xe2\x93\xa6\x48\xa5\ \xe8\x98\x24\x38\xe5\x3c\x3b\x93\x05\xf4\x5c\x7d\xc8\x00\x96\x65\ \xe1\x0d\x75\x70\xcf\xf7\x1b\x51\x38\xe8\x3b\x85\xfe\xd6\x39\x51\ \xd0\xfb\x1f\x92\xc9\xb3\x6a\x31\xcd\x0f\x4b\xbc\xe7\x5c\x55\xe5\ \xcd\x1f\x14\xd8\xca\xc3\x56\x2e\x0d\xe5\x05\x40\x50\xbc\xed\xfd\ \xed\x5c\xf2\xfe\xfe\x88\x05\xc2\x4e\xdf\x2c\x10\x94\x4a\x25\x3a\ \x3b\x3b\x69\x37\x27\xd2\xd1\xd1\x99\x02\x40\xc8\x42\xf3\x2f\x6c\ \x60\x96\xfc\xf5\x82\xd2\x93\xc5\x8c\xe2\x30\xb0\xe9\x08\xaa\xf4\ \xfc\xd8\x8a\x88\x12\x1b\x4a\xf0\x96\xf7\x36\xd3\xbd\xc9\x68\x40\ \x37\x01\xa1\x1f\x60\x59\x16\x77\x7c\x1d\x06\xf7\x35\x73\x02\x42\ \xf8\x3c\xa0\x94\xa2\x34\xce\xe4\x53\x3f\x91\x4c\x9e\x55\x8f\x98\ \xa0\x5e\xaf\x33\xf5\xf4\x2a\x57\x7e\xca\xc0\x13\x12\x27\x58\xc1\ \xcb\x7f\xf4\x77\x4f\x28\xde\x7b\x5d\x3b\x27\xbe\x61\x20\xea\xf5\ \x0f\xa3\x02\xdd\x14\x84\x4e\x61\xa9\x54\xa2\x5c\x2e\x47\x7d\x80\ \xfa\x08\xa6\x10\x00\x67\x5e\xea\x06\xbe\x4f\xd6\xc4\xf1\xa3\x28\ \x11\x94\xdd\x9c\x9d\x36\x03\x4d\x5b\xe8\x3f\xba\x0a\x4e\x3a\x57\ \xd1\xde\xed\xc4\x4a\xbf\x49\x10\x24\x59\xc0\xa9\xb4\xf1\xdd\x2f\ \x54\x31\x82\x7c\x80\x11\xa6\x74\x01\xa9\x14\x6d\x13\x0c\x3e\xf2\ \x4d\x0f\xc3\xf2\x05\x68\x76\xd6\xf8\xe0\x37\x15\xa5\x1e\x70\x14\ \x38\x28\x1c\x64\xf0\xe8\x03\xa1\xa1\x3c\x5c\x21\xf8\xf8\xbf\x16\ \x99\x76\xca\x40\x54\xdf\xcf\x9a\x0b\x40\x07\x63\x56\xfc\xdf\x68\ \x34\x10\x96\xcd\xa9\x17\x69\xbf\x39\xb4\xfb\xea\x68\x1b\x80\x23\ \xc6\x00\xf9\xab\x04\xab\x98\xe0\x7d\xfa\x0f\x6f\x8c\xd1\x61\x72\ \xd1\x95\x76\xae\xf0\x93\x2c\xe0\xdb\xe1\x36\x96\xdf\x59\xe4\xc1\ \x7b\xea\x18\x22\x3e\xdd\x4c\x38\x23\xcf\xa4\xf9\x06\x7f\xf7\x03\ \x49\xa1\xc3\xe6\x23\xb7\x28\xc6\xcf\x30\x70\x51\xb8\xc8\x8c\x5d\ \xe1\x29\x7f\xcd\xe0\x62\xa7\xc9\x75\x3f\x2e\x50\x1e\x3f\x14\x45\ \x04\x21\x08\x74\xff\x44\xaf\x20\xea\x71\x7f\xa8\xfd\xe7\xbe\xb3\ \x41\xb1\x43\x65\x4e\x1e\xcf\x68\xf6\x01\x62\x70\x50\x2a\x33\x02\ \x88\xc0\xa0\x14\xb6\x14\x9c\x77\x85\x97\xcb\x00\xba\x1f\x10\x02\ \xa0\x50\x28\x50\x34\x3a\xb8\xe5\x63\x2e\x7b\xb6\xc9\x20\x24\xf4\ \x6b\x10\x7a\xaf\xd0\xcc\x73\x0d\x6e\x78\xc0\xe4\xa4\xf3\x0d\xbc\ \x60\x06\x5f\x0f\x89\x54\x0a\x4f\xf9\x5a\x19\xda\x67\x4f\xfb\x5e\ \x6d\x3d\x05\xae\xfd\x1e\x88\xe2\x60\x26\x00\x74\x81\x67\x09\xbf\ \xde\xa8\x73\xce\x15\x32\x97\xf6\x47\xa5\x13\x98\x9f\xf8\xd1\x9c\ \x3f\x4d\xf3\x9b\x02\x51\x4c\x5f\x60\x30\x63\x7e\x23\xd3\x17\xc8\ \x8a\x06\x42\x6f\xdc\xa8\x77\x73\xc3\x9f\xd8\xec\xdb\x21\xa3\x19\ \x46\x0d\xad\x1b\x59\x02\xdd\x13\x45\x6c\x29\x48\xdf\x07\xd1\x56\ \xf0\x51\x24\xd6\x0e\xf3\xb7\x13\x17\xb4\x73\xed\xf7\x24\x35\x7b\ \x28\xe6\x0b\x64\x25\xad\xf4\x63\x8e\xe3\x70\xfa\x1b\x5c\x4e\x39\ \xdb\x4a\x65\x44\x46\x82\xf6\x1f\x61\x06\x50\x99\x46\x21\x99\x12\ \xd6\xc1\xe0\x29\x45\x5d\x1a\xbc\xe7\x13\x2e\xae\x1b\x67\x81\xe1\ \x98\xa0\x54\x2a\xb1\x6f\x6b\x99\x2f\xfc\x71\x8d\xfd\x7d\x32\x62\ \x01\x43\x9b\x7e\x36\xbf\x2b\x81\xd4\xa2\x54\xc9\x6d\xf1\x05\x5d\ \x7c\xe0\x0b\x0e\x8d\x46\x2d\x36\x39\x54\x56\x0d\x43\x07\xee\x82\ \x4b\xbc\x98\x23\x3c\xd2\x36\xe3\x55\x20\xff\x84\x1f\xd0\x9a\x05\ \x5c\x14\xa7\xbd\xd5\x64\xe1\x9b\x9c\x94\xf6\xeb\x2c\xa0\xd7\x06\ \x74\x47\x6c\xcf\x0b\xed\x7c\xf6\x4f\x07\x58\xbd\xbc\xe1\x57\x07\ \xc3\xfc\x40\xe0\x1f\x84\x59\x43\x23\xe8\x4d\x88\xaa\x88\x42\x07\ \x4c\xf3\x7d\xfa\xac\xc6\x97\xbc\xab\xcc\xb4\x33\x87\x32\x3b\x98\ \x93\x55\xbf\x30\x74\xfd\xf7\xaf\xd7\xd8\xb5\xdd\xcd\x05\xd6\xa8\ \x05\x40\xa6\x19\x50\xf1\x88\x20\xb4\xb3\x5e\xa0\xfd\xe1\xa3\x2d\ \x05\xef\xbd\x5e\xa1\x44\x3c\x22\xc8\xaa\x10\xea\x13\x32\x85\x3e\ \xc1\x9e\xe7\x3a\xb9\xf1\xcf\x86\xf8\xc5\xad\x95\x20\x53\xe8\x0f\ \x56\x37\x45\x72\xec\xb0\x81\x29\x4c\x4c\x61\x60\x62\x36\xa7\xb1\ \x10\xcd\xf1\xc3\x61\x85\x71\xd5\xaa\x2a\x7f\x79\xd5\x5e\x5e\x78\ \xaa\x2d\xe5\xf0\x65\xd5\x2e\x42\xc7\xb5\xd6\xd7\xc6\x17\xde\x53\ \xc1\x69\xc4\x39\x47\xbc\x36\x18\x20\x1d\x11\xe8\xf6\x35\x46\xff\ \x09\x5f\xe0\xf8\x39\x06\x57\x7d\xac\x41\xc3\x69\xc4\xfa\x05\x75\ \x46\x48\x96\x89\x43\x16\x28\x16\x4b\x30\xd8\xc3\x4f\x3e\x23\xf9\ \xfc\xfb\xfa\x59\xf7\x84\x83\x3f\x1e\xc7\xc4\x12\x06\x96\x48\x0e\ \x50\xd7\xa6\x88\x10\xc1\x2c\x02\xc2\xc0\x14\xb0\x6b\x87\xcb\x4d\ \x5f\xdc\xc3\xb5\x57\x0e\xb2\x7f\x75\x27\x45\xab\x94\xe9\xf1\x27\ \xa9\x3f\xfc\x6e\x86\x61\xb0\x7b\x7d\x81\x6f\x7d\xa4\x8a\xf4\x54\ \xee\xf8\x88\xa3\xb5\xbd\x2a\x93\xd6\x28\x6d\x8a\x78\xa5\x40\x89\ \xe6\x78\x98\x78\x48\x08\x9e\x50\xb8\x4a\x61\x20\xb8\xe2\x1a\xc1\ \xfd\xb7\x39\xf4\x6d\x8d\x4f\x11\xa3\x8f\xe2\x09\x8f\xeb\xf9\x81\ \xa6\x89\xe8\xe0\xb9\x7b\x1d\x3e\xfb\xfb\x21\x4e\x7d\x33\xbc\xe3\ \x23\x65\x4e\x3b\xbb\x48\xb1\x18\x5f\xfe\x39\xa4\x67\x23\xe8\x2f\ \x30\x11\xac\x7a\xdc\x66\xd9\x6f\x6b\x3c\xfa\x73\x8f\xea\xd6\x36\ \x0a\x56\x73\xce\x00\x20\xea\x17\xcc\x5b\x9b\x20\xee\xab\x18\x2c\ \xbf\x53\xf0\xbb\x5b\x1b\x5c\xf8\xe1\x91\x35\x4f\x90\x75\xa4\x75\ \x5f\xc4\x2a\x02\x5a\x99\x56\xf8\xab\xee\x09\xfc\x30\x4c\x08\x15\ \xd8\x5c\x3f\x94\x73\x95\xa4\xea\x19\xfc\xc5\x4d\x2e\x5f\xfc\xe3\ \x46\x2c\xd6\xd6\xa9\x3f\x0b\x04\xa1\x39\x88\x7c\x04\xcf\xe4\xb9\ \x5f\xbb\x3c\x7b\x9f\x4d\xc7\x84\x0a\xf3\xce\x37\x98\x31\xd7\x62\ \xe6\x7c\x13\x65\x81\x70\x14\xa2\x6e\xb2\x6f\x9f\xc3\xd6\x75\x1e\ \x2b\x1f\x73\x19\x7c\xd1\xc0\xa8\x15\x31\x8d\x76\x8a\x05\x33\xd6\ \x58\xa2\x33\x8f\x5e\x76\xd6\xbf\x47\x92\xa1\x40\xf0\xfb\xef\x4a\ \x2e\xf8\xb0\x7a\xed\x00\x20\x1f\x0c\xf1\x15\x74\x85\xe6\x0b\x08\ \x25\x70\x85\x0c\x2c\xb0\x62\xce\x1b\x2c\xde\xff\x79\x97\xff\x7b\ \x7d\x03\xa5\x14\x96\x65\x45\xd4\x9a\x9c\x3f\x38\x09\x82\xc8\xce\ \x05\xef\x95\xd2\xc2\xde\xe1\xb1\xfa\xe7\x1e\xab\x24\x28\xc3\x43\ \x09\x89\x1f\xf8\x7b\x3e\x0f\x08\x0b\xc3\x28\x52\x30\x0c\x0c\xcb\ \x88\x4c\x4b\xb2\xb9\x44\x17\x7c\x2b\x00\xe8\xe6\xea\xaa\x2f\x5a\ \x39\x6b\xaa\x8f\x62\x00\xe4\xb2\x40\xb4\xda\xb6\xd0\xe8\x5f\x22\ \x30\x30\x14\xfe\x1a\x80\xca\xa0\x01\xbc\xe9\x43\x05\x10\x0e\xff\ \xef\x7a\x95\x32\x03\x59\x20\xd0\xb5\x33\x0b\x08\x4a\x59\x31\xed\ \x54\xa6\x02\x33\xbe\x88\x54\xde\xe2\x14\xfa\xe8\x21\x7d\x50\x49\ \xf2\xba\x49\x3f\xe1\xc2\xf7\x1a\x2c\xb8\xcc\xa0\x9e\xbb\x40\xfc\ \x28\x67\x80\x26\x18\x82\x7f\x15\x20\x54\xc0\x00\x22\xd0\x7e\xdf\ \x07\xf0\x57\x04\x55\x18\x42\xe1\xfa\x69\x44\xde\xfc\x41\x8b\xad\ \x6b\x1d\xee\xfd\x51\x53\xbb\xb2\x16\x90\xc8\x5a\x2e\x26\x14\x6a\ \x08\x82\x56\x6b\x0b\xe9\xef\xd5\x05\xd9\x6a\x71\x0a\x4f\x7a\x4c\ \x9c\x26\xe9\x7b\x31\xf0\x26\xb4\xcf\xf6\x3c\x8f\xe3\xa7\x49\xde\ \xfd\xd9\x92\x56\x05\x1c\x19\xa5\xe0\x57\x37\x15\x9c\x91\x11\xd4\ \x7b\x03\xfc\x5c\x00\x78\xc8\x28\x1f\xe0\xe0\xe1\xe0\xe7\xe5\x6d\ \xa5\x78\xdf\x97\x2d\xce\xbe\x2c\x3e\x4e\x30\xaf\x7a\xa8\x6b\x65\ \xde\xd4\xea\xad\x96\x97\x4d\x6a\x78\x32\xcd\xab\x77\x18\xbd\xeb\ \x2f\x4d\xbe\xff\x74\x17\x27\x9f\x13\xff\x4e\x8e\xe3\x60\x14\x3c\ \xae\xfe\x6a\x81\xf2\x44\x3f\xca\xf1\xa3\x9e\x64\x54\x34\xca\x01\ \x40\x0a\x00\xe9\xca\x60\x33\x39\x44\x94\xa7\xf7\x14\xb8\x61\xa5\ \x4e\x29\xdc\x02\x5c\xf3\xdd\x02\xe7\x2d\xf1\x70\xbd\x34\x08\xb2\ \x72\xf4\x7a\x6b\x79\x16\x55\xe7\x2d\x2c\x95\x9c\xad\x24\x39\x40\ \x35\xdc\xaf\xfc\x5f\x16\x57\x7f\xbe\x0d\x5b\xc1\x67\x7f\xda\xcd\ \xa9\xe7\xca\xd8\x77\x78\xf3\x07\x4d\x4e\x7f\x9b\x19\x8c\x5f\x90\ \xcd\x15\x05\xd5\xc8\x30\x04\xaf\x6a\x57\x70\x7e\x7e\x40\xc6\x33\ \x82\x4a\x05\xd5\x3a\x3f\x24\x74\x03\x26\x70\x94\xa2\x61\xc2\x35\ \xb7\x96\xf8\xf8\xb7\xa1\xd8\xee\xa4\x86\x8d\x65\xed\x79\x60\xd0\ \x99\x22\x6b\xc9\x99\x64\x6c\xaf\x83\x4c\x09\x87\x0f\xff\x63\x91\ \x3f\xff\x7c\x3b\xb6\xf0\xa8\x2b\x17\xd1\xa9\xf8\x9b\x5b\xda\xe9\ \x38\xce\xff\x8c\x49\xb3\x15\xef\xe8\x2d\xfa\xbd\x06\xc1\x6f\x49\ \x9a\x81\xd7\xa0\x0f\x90\x9c\xd3\x43\x80\x02\x29\xe2\xee\xa2\x08\ \x9c\x42\x30\x40\x09\x10\x1e\x60\x46\x05\x9b\x45\xef\x2c\xf2\x8f\ \x0b\x3d\xbe\xf5\xd7\x36\xab\x1f\x69\x3a\x78\x3a\xb5\x1f\xd4\x77\ \xca\xf1\x19\xf2\x96\x9e\x93\x52\x32\x69\x96\xe0\x53\x3f\xee\x64\ \xf6\x02\x93\xba\x72\xb5\x26\x57\xe8\x9c\x69\x72\xc3\xdd\x65\xbe\ \xf0\xf6\x0a\x1f\xba\xa5\x1d\xb3\xc3\x67\x30\x37\x30\x6d\x61\xf2\ \x6b\xa4\x94\x83\x8f\x5a\x56\x42\xa5\x25\x81\x12\x32\xc8\x02\xf8\ \x4c\xe0\xe3\xa3\x09\x02\x25\xfc\xb8\x41\x29\xc3\x1f\x51\x34\xcb\ \xe4\x73\x77\xb6\x73\xdb\x8d\x36\x77\x7c\xcb\xc5\xb1\x5b\x2f\x15\ \x9f\x95\xb0\x19\xee\x51\xdf\xad\x22\xbc\xf3\x9a\x12\xef\xbe\xb6\ \x9d\x62\x97\xa2\xae\xbc\x40\xa8\xf1\x7e\x87\x9e\x53\x05\x5f\x59\ \xd1\x81\xd9\x25\x68\x84\x7d\x07\x2a\xdd\x0f\xf8\x9a\x08\x03\x87\ \xcb\x07\x84\x03\x3a\xc3\x0e\x1e\x43\x48\xbc\xc8\x32\x05\x8b\x3a\ \x09\x19\x44\x0e\xbe\xe0\x95\x08\x16\x67\x55\x12\x69\x08\xae\xba\ \xae\x8d\xcb\x3f\x2c\xf9\xd9\xff\xb6\xf9\xcd\x0f\x5c\xec\x5a\xeb\ \xf5\x7f\x5b\xad\x28\x9a\xc5\x06\x5d\xe3\x05\x67\x5f\x5e\xe0\xaa\ \x4f\xb5\x33\x71\x8e\x88\x9c\x52\x37\x34\x5d\x2a\xed\xd0\xa9\x2e\ \x68\xe0\x05\x35\x0e\x46\xa4\xf6\x1f\x35\x06\xc8\x4a\x0a\x85\x47\ \xb2\x40\x10\x86\x8c\xd1\x7a\x9b\x4a\x22\x45\xb0\x60\xbb\x32\xf0\ \x80\xd2\x64\xc1\xd5\xff\xd0\xce\xd5\x37\x28\x7e\x73\xab\xcd\x5d\ \xdf\x6d\xf0\xd2\x06\xd9\x72\xf1\xe7\x56\xa0\x50\x4a\x31\x7e\xba\ \xc1\x1f\xfe\xcf\x36\x2e\xff\x48\x3b\xc5\x6e\xdf\x86\xdb\xca\xef\ \x1c\xd2\x05\xab\x92\x4b\x42\x86\xc9\xa0\x28\xc1\x15\x3c\x2a\x39\ \xa2\xb4\xff\xa8\x9b\x00\x91\x72\x07\xd3\x20\x68\x36\x90\x6a\x26\ \x00\x03\x19\x36\x94\x0a\xe5\x8f\x3e\x56\xfe\x9c\x21\x46\x49\xf0\ \xd6\xbf\x6a\xe3\xb2\x8f\xb6\xb1\xe2\xb7\x0e\x2f\xae\x71\x59\xfd\ \xb0\xc7\xce\xe7\x5d\xb6\x6d\x94\x5a\x55\x2e\x2e\x74\xc3\x54\xb4\ \x75\x08\xce\xb8\xa8\xc8\xc2\x4b\x0a\x9c\x71\x71\x91\xc9\x73\x04\ \x46\x09\xbc\x48\xe3\x7d\x21\xea\x45\x2b\x3d\xac\x23\x63\x91\xf8\ \x70\xc5\xc0\x50\xf3\xe5\x08\xeb\x0a\x18\x11\x95\x89\xa6\x73\x18\ \x07\x81\x08\xa9\x3f\x3c\xab\x82\x35\x40\x84\xef\x29\xf8\x0c\x80\ \xbf\x60\x7b\x50\xc4\x31\x54\xb3\xa8\x73\xda\xa5\x16\x67\x5c\x6a\ \xb1\xe4\x63\x7e\x3d\x5f\x36\x24\x6b\x1f\xf3\x62\x8e\x68\x90\x67\ \x62\xd2\x4c\xc1\xc4\x99\x66\xac\x4a\xe9\xa1\x68\x84\x02\x0f\xcb\ \xd5\x61\xae\x42\x35\x2b\x9a\x2a\x33\xd7\xa1\xf5\x3f\x64\x08\x5f\ \x8d\x01\x20\x3e\xbd\x5b\x16\x08\x50\xbe\x86\x1b\x18\x78\x08\x8c\ \x28\x81\x84\xbf\x10\x5c\x60\x06\x3c\x04\x66\x90\x3f\x08\x9b\x3a\ \x0c\x84\x9f\x52\x0e\xfe\x4e\x00\xa2\x20\x38\xf1\x8d\xa6\xff\xe9\ \xc1\xba\x2f\x2a\x40\x80\x04\xea\x4a\xc6\xab\x93\x81\xe0\xa5\x96\ \xa0\xd2\x05\x9f\x35\xc6\x2f\xf6\x6f\x66\x0b\x38\x63\x0c\xf0\x72\ \x98\xc0\x0f\x11\xc3\xba\xa1\x3f\xf0\x23\x9c\x95\xc3\x50\x60\x04\ \x55\x44\x19\x09\x5d\x45\x2b\x8f\x1b\x22\xbd\x22\x39\x4a\xab\xc1\ \xab\xe4\xbc\x05\xa1\x43\xa7\x12\xf6\x3b\x68\x1e\xd5\x04\x2f\x13\ \xda\xad\x5a\x00\x5c\x8d\x40\xcd\x1f\x91\x26\x80\xac\x1c\x41\xa8\ \xac\xf8\x26\x41\x05\x82\xd6\x05\x66\x04\x86\x22\x6c\xf1\x0a\x6b\ \xfb\xcd\x55\xc9\x55\x6a\x96\xf2\xa4\x90\x24\xad\x1b\x57\xe3\x5a\ \xdf\xb4\xe9\x59\xa9\xee\xf8\xe7\xab\x16\xc9\xb0\x31\x00\x64\x82\ \x20\x49\xa5\xba\x49\x00\x85\x14\xe1\xa2\x6e\x22\x2a\x25\x0b\xd0\ \xb4\x3f\x98\x2b\x48\x10\x6b\x08\xcd\xea\xc9\x8b\x0f\xcf\x6a\x32\ \x80\xde\xb6\x1e\x1b\xcb\x18\x98\x09\x20\xc3\xf6\xab\x83\xcc\x82\ \x8e\x01\x60\x58\x9f\x40\xbf\xc1\x42\x9f\x89\x13\xbf\x52\xe8\x33\ \x82\x88\xf5\xfc\x86\xef\xf5\x82\xcf\x10\x2a\x4b\xfb\x85\xf6\x4e\ \x95\xaa\x4f\xa0\x79\xef\x71\xd3\xd0\x0c\xe0\x0e\x76\x58\xd7\x48\ \x16\xfc\x88\x04\x40\x6b\x36\x48\xb4\x96\x05\x40\x20\x02\x42\x38\ \xf9\xaa\xc8\xa1\x7d\x91\xfa\x34\x32\x8e\xc4\x67\x30\x51\x51\x23\ \x2b\xa4\x47\x3a\x1d\x2b\x42\x3e\xe6\x00\x90\xc7\x06\xfa\xad\xd7\ \xe9\x5c\x29\x15\x09\x1d\x81\xee\xf2\xa1\xaf\x56\xde\x4a\x43\x63\ \x03\x37\x14\xa9\x84\x8d\x22\x6b\xe2\x8b\x57\x2f\x53\xfe\x9a\x03\ \xc0\x21\x01\x41\xfb\x47\xe8\x8b\x45\x08\x91\xa6\x95\x30\xd3\xac\ \x25\x05\x92\x9f\xad\x72\xae\x79\x04\x36\x0f\x78\x16\xf8\x2d\xb0\ \x14\x78\x70\x0c\x00\x07\x09\x84\xe6\x94\xf1\xd9\xc3\x2e\x62\xa3\ \x70\x73\x62\x35\x95\x69\x6e\x38\x08\xf7\xee\x90\xb7\x01\xe0\x29\ \x60\x75\x20\xf0\x65\xbd\x65\x7b\xd7\x98\x09\x38\x04\x20\x90\x48\ \xc3\x8a\xc4\xe4\xf1\xf1\x24\x13\xa9\x15\x45\x86\xe3\xdd\xc3\x24\ \x7a\x17\x7f\xc6\xef\xdf\x05\x02\x5f\xd1\x5b\xb6\x07\xc7\x7c\x80\ \xc3\x68\x24\x45\x4a\x60\x22\x53\xa3\xd5\x41\x7d\xf6\x2b\x16\xfa\ \x36\xe0\xf1\x40\xd8\xab\x03\x0d\xb7\x8f\x25\x27\x30\x28\xc2\x1f\ \xcb\x80\x68\x25\x44\x71\x38\x05\xae\x80\x21\xfc\xd9\xb9\x7f\x07\ \xdc\x0f\x6c\xec\x2d\xdb\xb5\x63\x39\x0a\xf8\x0e\xf0\xd1\x63\x39\ \xbc\x51\x47\xd6\xc9\x5e\x17\x50\xfa\x52\x60\x4d\x6f\xd9\x7e\x72\ \xb4\x85\x81\x37\x03\x57\x03\x65\xc6\x36\x17\xd8\x11\x68\x77\x68\ \xc3\x77\xf6\x96\x6d\x67\x34\xfc\xb8\x6c\x00\xdc\xc5\x66\x96\xf0\ \x75\xe0\x33\xaf\x51\xa1\x3f\x15\x08\x7a\x29\xf0\x5c\x6f\xd9\x5e\ \x3f\x5a\x7f\x68\x2b\x27\xf0\x46\xe0\x2f\x80\xc9\xa3\x5c\xd8\x8d\ \x80\xd2\x75\x0d\x1f\xec\x2d\xdb\xaf\x09\xa4\xe7\x03\xe0\x2e\xaa\ \x2c\xe1\x93\xc0\xf7\x61\x04\xce\x6c\x70\xe8\xdb\xa0\xe6\xa1\x2f\ \x05\xd6\xf7\x96\xed\x9d\xaf\x55\xfb\xd6\x3a\x0c\xbc\x8b\x1f\xb2\ \x84\x6b\x81\xd3\x8f\xe1\xdf\xb8\x03\xd8\xa0\x69\xf8\xf2\x63\xc5\ \x43\x1f\x29\x79\x80\x5e\xe0\x17\xc7\x50\xce\x60\x3b\xf0\x48\x10\ \x8e\x85\x1a\x6e\x8f\x89\xfa\x50\x01\x70\x17\x77\xb2\x84\x7b\x80\ \x25\x23\xf0\xfb\x4b\x60\x33\x7e\xb2\x25\xd4\xf0\x0d\xbd\x65\xbb\ \x31\x26\xda\xc3\xc7\x00\x00\xd7\x8d\x20\x00\x3c\x07\x2c\x0b\xb4\ \xfb\xc1\xde\xb2\xbd\x65\x4c\x8c\x47\x1e\x00\xab\x80\x7f\x01\xfe\ \xea\x55\xfe\x7e\x95\x40\xe0\xa1\x86\xdf\x07\xec\xea\x2d\xdb\xee\ \x98\xe8\x5e\x4d\x00\xdc\x85\x62\x09\x5f\x02\x3e\x00\x2d\x57\x85\ \x3c\x1c\xdb\xe3\xc0\x03\x81\x86\x3f\x71\xb4\xaa\x64\x63\x00\x48\ \x83\x60\x07\x4b\xf8\x34\xf0\x8d\xc3\x78\xfd\x3d\xc0\xd3\x09\x1b\ \x5e\xeb\x2d\xdb\x6a\x4c\x34\x23\x0d\x00\xfe\x76\x2b\xf0\x77\xc0\ \x8c\x43\xbc\x5e\x95\x66\x0e\xfd\x7e\xe0\xd9\xde\xb2\x7d\x60\x4c\ \x0c\xc7\x0a\x00\xee\xa2\xc2\x12\x7a\x81\x1f\x1e\xe4\x5f\xbc\x04\ \x3c\x1a\x08\x7c\x25\xf0\xe8\x98\xfd\x3e\xb6\x19\x00\xe0\x47\xc0\ \x35\xc0\xd9\x19\xe7\x76\xe0\xb7\x33\x85\x59\xb6\x4d\xbd\x65\xbb\ \x3e\x76\x9b\x47\x13\x00\xee\x02\x96\x70\xad\x65\x71\x0f\xb0\x55\ \x13\xf6\x4a\x60\x6d\x6f\xd9\xf6\xc6\x6e\xeb\xb1\xb3\xfd\x7f\xd1\ \xc4\x69\xbf\xbc\x70\x16\xb1\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ \x42\x60\x82\ \x00\x00\x29\xf7\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x02\x00\x00\x00\x4c\x5c\xf6\x9c\ \x00\x00\x29\xbe\x49\x44\x41\x54\x78\x9c\xac\x8e\xbf\x4a\xc3\x60\ \x1c\x45\xcf\xef\xcb\x97\x34\x1a\x5a\x34\x50\xa7\xa0\xd9\xec\xe0\ \xe0\xd0\xd1\x37\xa8\x8b\x4f\xe3\x03\xf8\x42\x2d\xf4\x35\x04\x5d\ \x74\x8b\x10\xb7\x64\x10\x1a\x44\x93\x7e\x7f\x1c\x94\xc6\xe0\x26\ \xbd\xe3\xe5\x72\xee\x11\xef\x3d\xfb\xc8\x37\x46\x84\xc7\xb2\xb9\ \x5b\x15\xf5\xa6\xd3\x81\xec\xd8\x81\x92\xce\xb8\xf7\xd6\x66\x69\ \x7c\x7d\x39\xbd\x99\x9f\xa4\x49\x88\x20\x03\x86\xc3\x3b\x44\x20\ \xf8\xd5\x35\x98\x92\xed\x13\xdd\x33\xe6\x05\xfb\x8a\x29\xb1\x6f\ \xd0\xe2\x9a\x7e\x26\x09\x72\x80\x9a\xa0\x4f\xd1\x19\x3a\x27\x9c\ \x11\x5d\xa0\xcf\x50\x47\x7f\x2e\x14\xa8\xde\x1c\xf0\x34\x9f\x66\ \xfd\x50\x2f\xef\xab\xa2\xfa\x38\x8c\x82\x51\xa8\xac\xfb\xb1\x17\ \xb0\xde\x8f\x63\x7d\xbb\xc8\xaf\xce\x8f\x01\xe7\x51\x43\xf5\x7f\ \xe7\x0b\x00\x00\xff\xff\xac\x91\x3d\x0e\x01\x61\x18\x84\x9f\x77\ \x7f\x6c\x24\x68\x44\x96\xc2\x09\x14\xa2\xf1\xd3\xea\x95\x5c\xc1\ \xb9\x68\x1c\xc1\x01\x48\xa8\xb9\x82\x20\x11\x0a\x0a\x76\xb3\xdf\ \xf7\x2a\x08\x8b\xd6\x14\x4f\x37\x93\xc9\x8c\xfc\xe5\x00\x6b\xd5\ \x71\x04\x18\xcd\xb7\xe3\xd9\x36\x36\x9a\xf1\x9e\xeb\x3b\x22\xc0\ \xf9\x9a\x94\xf2\x7e\xbf\x55\xee\x35\x4a\xc5\x9c\xff\xe9\x56\xb0\ \x20\xef\x51\xcc\x81\x78\x4d\xb4\x20\x5a\x12\xad\x30\x7b\x34\xe6\ \x51\x53\x52\xfc\x95\xa6\x28\x20\x1e\x6e\x48\xa6\x46\xd0\x21\x68\ \x13\xd4\x71\x2b\xaf\xca\xa0\xe0\x7c\x65\x5d\xae\xc9\x74\x75\x9c\ \x2c\x77\x9b\xd3\xad\x90\xf5\x04\xb1\xaa\x80\x08\x89\x51\x85\x41\ \x33\x1c\x76\xab\xbe\x2b\xc6\xaa\xfb\x8f\x13\xee\x00\x00\x00\xff\ \xff\xac\x92\x31\x0a\xc2\x50\x10\x44\xdf\x4f\x82\x24\x10\x4c\x23\ \x58\x89\x5a\x5a\x59\x58\x5a\x89\x9d\x08\x1e\xc3\x4b\x58\x7b\x0c\ \x8f\x60\x21\xd6\x42\xac\x3d\x80\x95\x56\x16\x62\x11\x41\x0c\x51\ \xf2\xff\x5a\xe4\x47\x3d\x40\x60\x59\xb6\x98\x1d\x76\x67\xa6\x02\ \x03\x8a\x53\x6e\x8f\xf7\x72\x73\x8e\x8f\x49\x14\x78\xae\x83\x11\ \x14\x38\x8e\x4a\x5f\x5a\x8b\x4c\xfa\x8d\xf9\xa8\xd5\x8c\x6a\x80\ \x11\x94\xcd\xbe\x80\x06\xcf\x12\xe5\x27\x9e\x5b\xb2\x1d\xd9\x1e\ \x9d\x58\x53\x8a\xfa\x29\x25\xa5\xc0\xfc\x0d\xf6\x97\xb2\x7f\x91\ \xc6\xc2\x05\x14\xb8\x21\xfe\x90\x60\x4c\x30\xa5\xd6\x2b\x39\x72\ \x94\x5b\xac\x18\x91\x22\x2e\xf7\x34\x5f\xc5\x97\xf5\xe1\xaa\x0d\ \xa1\xef\x1a\x11\x11\x94\x02\x21\x49\xf3\x41\xa7\xbe\x98\x75\xdb\ \x8d\xa0\x12\x0f\x3e\x00\x00\x00\xff\xff\xa4\x94\xbd\x6d\x02\x51\ \x10\x84\xbf\x5d\x3d\x23\x1d\x87\x0e\x8b\xd4\x4e\x48\x08\x68\x81\ \xc4\xe4\x8e\x1c\xba\x00\x6a\x70\xee\x2a\x68\x80\xd8\xc4\x48\xae\ \x00\x44\x07\xfe\x11\x89\x53\x7c\x27\x0c\xd2\xbd\x5d\x07\xf7\x88\ \x88\x80\x2d\x60\xa4\xf9\x66\x67\xae\x0d\xa0\xf9\xfd\xe5\xe7\xef\ \xeb\xdb\xc7\xcf\xf6\xd0\xcd\x42\x34\x77\x50\x91\x68\x5e\xed\xeb\ \xe1\x5d\x67\x32\xbe\x1f\x0d\x6e\x81\x68\xae\x22\x22\x80\x81\x25\ \xf4\x7e\x60\x37\xa7\x9a\xf1\xb7\x20\xee\xa0\x69\x82\x22\x8a\x37\ \xe5\xe0\x84\xf5\x19\x06\x41\x11\xc1\x0d\x2c\x89\xe9\x0d\xd9\x03\ \xf9\x33\xf9\x13\x5a\x00\x50\x83\x82\x3a\xd8\x11\xeb\xfa\xbb\x9c\ \xbe\x6f\x56\x5f\x65\xbb\xa5\xad\x90\x16\x29\xa8\x94\xfb\xba\xc8\ \xc2\xcb\x63\x7f\x3c\xec\x99\x7b\x32\x74\xe9\xfd\x03\x00\x00\xff\ \xff\x22\x3f\x02\xe0\x6e\x5d\x75\xf2\xc5\xc4\x9d\x8f\x98\x99\x18\ \xe1\xe5\x26\x0b\x13\xe3\x97\x9f\x7f\x39\x59\x99\x12\xed\xa4\xc3\ \x2d\x24\x58\x99\x19\xff\xfd\xff\xcf\xc8\x00\x71\x29\x24\x4c\x99\ \x19\x18\x18\x18\xfe\xbe\x66\xf8\x3c\x8f\xe1\xcb\x22\x86\x9f\xd7\ \x18\x18\x20\xa9\x9c\x05\x16\xe8\xd4\xa9\x99\x50\x01\x3c\x32\xfe\ \x40\x63\x82\x4d\x91\x81\x27\x96\x81\x37\x99\x81\x45\x8e\x81\x81\ \x81\x81\xe1\x2f\xc4\x11\xff\xff\x33\xfc\xfb\x0f\x8d\x86\x0d\x67\ \x5f\xcd\xda\xff\xe4\xdd\xd7\xdf\x7c\x1c\x2c\x7f\xfe\xfd\x67\x60\ \x60\x60\x66\x62\xfc\xfd\xe7\xdf\xf7\xdf\xff\x92\xec\xa5\xd3\x1d\ \x65\x20\x79\x9d\xec\x48\x00\x00\x00\x00\xff\xff\x22\x33\x02\xfe\ \xff\x67\xf8\xcf\xf0\x9f\x89\x91\x71\xfa\xde\xc7\x73\x0f\x3e\xe5\ \xe7\x64\x61\x64\x84\x84\x32\x03\x13\x13\xe3\xfb\xaf\xbf\x35\xa5\ \xb8\x6b\xfc\x95\xd4\x25\xb9\x19\x90\xb2\x36\x03\xc3\x5f\x68\xd0\ \xff\xb9\xcf\xf0\x69\x1e\xc3\x97\x39\x0c\xbf\x5f\x30\x30\x32\x30\ \x30\x42\x6a\x5d\x1a\x85\x3b\x26\x80\xc4\x04\x03\xc3\xbf\xbf\x0c\ \xff\x18\x18\x58\x05\x19\x78\x12\x18\xf8\x92\x19\x58\xb5\x19\x18\ \x18\x18\x18\xfe\x30\x30\x30\x33\x30\x20\x12\xcd\xe3\x77\x3f\xda\ \x36\xdd\x3f\x7d\xef\xa3\x00\x17\xeb\x7f\x06\x68\x71\xc4\xc8\xc0\ \xf8\xfe\xeb\xef\x60\x53\xf1\x2a\x3f\x45\x48\x80\x90\x17\x07\x00\ \x00\x00\x00\xff\xff\x22\x27\x02\xfe\xff\x67\x60\x60\xf8\xcf\xc8\ \xc8\xd8\xb7\xe3\xe1\xb2\x63\xcf\x05\xb8\x59\xff\xff\xff\xff\xff\ \x3f\x03\x13\x23\xc3\xbf\xff\x0c\x5f\x7e\xfc\xf5\x37\x16\x2d\xf2\ \x90\xe7\x64\x63\x46\x2a\x25\x61\x25\xfa\xbf\x4f\x0c\x9f\x66\x30\ \x7c\x68\x67\xf8\xfb\x81\x81\x91\x81\x81\x89\x05\x5a\x38\x0c\x0c\ \x80\x14\x74\x7f\x18\xfe\x31\x30\x30\x71\x32\x08\x14\x32\xf0\x15\ \x30\x30\x8b\xc2\x1c\xcc\xc4\x00\xab\xe1\xfe\xfe\xfb\x3f\x6d\xef\ \xe3\xa5\xc7\x9e\x73\xb0\x32\xb3\x30\x41\x6b\x66\x66\x26\xc6\xf7\ \x5f\x7f\x7b\xe9\x8b\xd6\x06\x28\xb1\x32\x33\x92\x17\x07\x00\x00\ \x00\x00\xff\xff\x22\x39\x02\xe0\xcd\xcd\xd6\x4d\xf7\xd6\x9c\x7a\ \x25\xc2\xcb\xfa\x17\x96\x31\x7f\xfe\xf9\xf7\xf7\xdf\xff\x7c\x37\ \xf9\x30\x73\x71\x06\x94\x84\xff\x07\x5a\xdc\x7f\x9a\xc2\xf0\xb1\ \x8f\xe1\xd7\x7d\x58\x69\xf3\x97\x5e\x49\x1e\x3f\x60\x64\x60\x64\ \x86\x46\x03\x8b\x04\x03\x7f\x2e\x83\x40\x19\x03\x03\x0b\xbc\x44\ \x82\x17\x32\x3b\x2f\xbf\xed\xd8\x72\xff\xf7\x9f\x7f\x90\xb4\xc5\ \xc0\xc0\xc0\xc2\xcc\xf8\xe6\xf3\x6f\x27\x2d\xa1\xf6\x30\x55\xf2\ \xe2\x00\x00\x00\x00\xff\xff\x22\x2d\x02\xe0\xe5\x7e\xeb\xc6\x7b\ \xeb\xce\xbc\x12\xe6\x65\xfd\xf3\x17\x1a\xfa\x5f\x7e\xfe\x15\xe1\ \x61\x6d\x0c\x52\x36\x52\xe0\x43\xaa\x6c\x61\x4d\xc2\xdf\xd7\x19\ \xde\x96\x32\x7c\xd9\xca\xc0\xc4\xc0\xc0\xc4\xcc\xf0\x9f\x6e\xa5\ \x0d\xf1\x80\x91\x81\x91\x09\x5a\x28\x71\xd9\x30\x08\xf7\x31\xb0\ \x9b\x32\x30\x30\x40\xb2\x02\xdc\xe3\xb7\x5e\x7c\xab\x5d\x73\xe7\ \xc1\x9b\xef\xfc\x9c\xd0\x2a\x81\x85\x99\xf1\xdd\x97\xdf\x0e\x9a\ \x42\x6d\xa1\x2a\xac\xcc\x4c\x0c\x24\xd6\x07\x00\x00\x00\x00\xff\ \xff\x22\x21\x02\xfe\x33\x30\xfc\xff\xff\x9f\x89\x91\xb1\x73\xcb\ \xfd\x95\x27\x5f\x8a\xf0\xb0\xfe\x81\x55\xb9\x1f\xbf\xff\x51\x93\ \xe0\x6a\x0f\x53\x95\x11\xe2\x40\x2a\x76\x20\x25\xfe\x7f\x86\xf7\ \x2d\x0c\x1f\x5a\x19\xfe\xfd\x64\x60\x62\x81\xb5\x7f\x06\x2d\x60\ \x64\x60\x64\x66\xf8\xf7\x87\x81\x81\x91\x81\xbf\x80\x41\xa8\x9d\ \x81\x91\x1d\x9e\x83\x21\x5e\x7b\xff\xf5\x77\xf5\x9a\x3b\x67\xee\ \x7d\x12\xe0\x42\x89\x03\x67\x6d\xe1\xce\x70\xd5\xff\xff\x19\x30\ \x3a\x98\xf8\x00\x00\x00\x00\xff\xff\x22\x21\x02\x20\xd6\x4f\xdb\ \xfb\x78\xde\xc1\xa7\x82\xdc\x88\x92\xe7\xe3\xb7\x3f\x7a\x72\x3c\ \x7d\x51\xea\x7c\x9c\x2c\x48\xa1\xff\x87\x81\x81\x85\xe1\xdf\x5b\ \x86\x57\xf1\x0c\x5f\xb6\x32\x30\x33\x30\x30\x30\x33\x30\xfc\x25\ \x31\x38\x06\x0a\x30\x31\x30\x30\x30\xfc\xfd\xc7\xc0\x65\xc9\x20\ \xb6\x82\x81\x45\x0e\xde\x7c\x80\x34\xbb\x7f\xfd\xf9\x57\xb9\xea\ \xf6\xc1\x1b\xef\xe1\xe1\x00\x89\x83\x40\x63\xb1\x6a\x7f\x25\x92\ \xda\xa6\x00\x00\x00\x00\xff\xff\x62\x22\xac\x84\x01\xe2\x98\xff\ \xcc\x4c\x8c\x4b\x8e\x3e\x9f\x73\x00\x11\xfa\x90\xb4\x6f\xa3\x26\ \x30\x29\x56\x83\x8f\x93\x05\xde\x74\x63\xf8\xff\x87\x81\x81\x85\ \xe1\xfb\x1e\x86\x27\x66\x0c\x5f\xb7\x32\x30\xb3\x40\xfa\xf3\xa4\ \x07\xc4\x40\x81\x7f\x0c\x0c\xff\x18\x58\x58\x18\xbe\x1f\x67\x78\ \x6a\xca\xf0\x75\x35\x03\x03\x33\xc3\xff\x3f\x0c\x0c\xff\x99\x98\ \x18\xff\xfd\xff\xcf\xc6\xc2\xd4\x15\xa1\xe6\x67\x24\xfa\xe1\xdb\ \x6f\x16\x26\x46\x06\x06\x86\x3f\x7f\xff\x0b\x71\xb3\xae\x39\xfd\ \x72\xe2\xce\x47\x4c\x8c\x8c\xff\xfe\x11\x9b\xac\x01\x00\x00\x00\ \xff\xff\x22\x2a\x02\x20\xa1\x7f\xe8\xe6\xfb\x49\xbb\x1e\x09\x71\ \xb3\xfe\x83\x85\xfe\x87\x6f\x7f\x8c\x15\xf8\x3a\xc2\x55\xb9\xd8\ \x98\x61\x55\xee\x7f\x06\x86\xbf\x0c\x8c\x2c\x0c\x5f\x97\x33\x3c\ \x77\x63\xf8\x73\x8f\x81\x99\x99\x81\xe1\xcf\xe0\x2b\xf1\x89\x00\ \xff\xff\x30\x30\x31\x33\xfc\x7d\xc5\xf0\x22\x8c\xe1\xd3\x44\x06\ \x46\x48\x8f\xfd\x3f\x13\x23\xe3\xff\xff\x0c\x4c\x8c\x8c\x75\x01\ \xca\x2e\xda\xc2\x6f\xbf\xfe\x66\x61\x66\x64\x60\x60\xf8\xf3\xef\ \xbf\x08\x2f\xdb\xa2\x23\xcf\xd6\x9f\x7d\x05\x69\x38\x11\x63\x09\ \x00\x00\x00\xff\xff\x22\x1c\x01\xff\xfe\x33\x30\x33\x31\x3e\x7e\ \xf7\xa3\x75\xe3\x3d\x2e\x76\xa6\xff\x0c\xff\xff\x33\x30\x30\x33\ \x31\x7e\xfa\xf1\x47\x5b\x86\xa7\x23\x5c\x95\x8d\x85\x09\x29\xf4\ \xff\x33\x30\x30\x33\xbc\xaf\x61\x78\x19\xc5\xc0\xc8\xc0\xc0\xc8\ \xc4\xf0\x7f\x08\x25\x7c\x4c\xf0\x97\x81\x91\x89\x81\x89\x99\xe1\ \x75\x01\xc3\x9b\x2c\x58\x26\xfe\x07\x29\x5f\xfe\xff\x67\x68\x08\ \x52\xb6\x53\x17\xfc\xf0\xf5\x0f\x24\x1f\xfc\xfb\xf7\x9f\x9f\x8b\ \xa5\x7f\xfb\xc3\xab\x4f\xbf\x30\xc3\x5a\xab\xf8\x01\x00\x00\x00\ \xff\xff\x22\x10\x01\xff\xff\x33\x30\xfc\xff\xff\xfb\xef\xff\xa6\ \xf5\x77\x3f\x7e\xff\xc3\xca\xcc\x04\x89\xfc\xef\xbf\xfe\x49\xf2\ \xb3\x77\x45\xa8\xf2\x73\xb2\x20\x85\xfe\x3f\x06\x06\x26\x86\x37\ \x29\x0c\x6f\x5b\x91\xfa\x56\x43\x1d\xfc\x63\x60\xf8\xcb\xc0\xc4\ \xcc\xf0\x61\x3a\xc3\xcb\x60\x86\xff\x7f\x19\x18\x18\xe1\x71\xc0\ \xce\xc2\xd4\x12\xa2\xa2\x21\xc5\xfd\xf9\xe7\x5f\x66\x26\x46\xe8\ \x18\xcc\xff\xff\x8d\xeb\xef\x7e\xfe\xfe\x97\x91\x81\x91\x60\x14\ \x00\x00\x00\x00\xff\xff\x22\x10\x01\xff\xfe\xff\x67\x62\x62\x9c\ \xba\xe7\xd1\xb9\x87\x9f\x21\x75\x2c\x23\x23\xc3\x9f\x7f\xff\x59\ \x99\x19\x3b\xc2\x55\x45\x79\xd9\x20\x2d\x4e\x44\xda\x7f\x93\xca\ \xf0\x61\x2e\x03\x0b\x2b\x1d\xbb\xb5\xf4\x01\x7f\x19\x58\x58\x19\ \xbe\x6c\x62\x78\x05\x8f\x83\xff\x8c\x8c\x0c\xff\xfe\xff\xe7\x66\ \x67\xee\x0c\x57\x15\xe2\x66\xf9\xf9\xfb\x1f\x13\x44\x84\x8d\xf9\ \xfe\xeb\xef\x5d\xdb\xee\x43\x14\xe0\x37\x17\x00\x00\x00\xff\xff\ \xc2\x17\x01\x90\x4a\xf5\xe4\xdd\x8f\x2b\x8e\xbf\x10\xe4\x82\x36\ \xf9\x19\x19\x19\xbf\xfd\xfc\x5b\xe6\xad\xa0\x2e\xc9\x0d\x6b\xf3\ \xfc\x67\xf8\xff\x17\x9a\xf6\x3f\xce\x61\x60\x61\x65\xf8\xff\x7b\ \x78\x85\x3e\x03\x03\x03\x03\xc3\xff\xdf\x0c\xcc\xf0\x38\xf8\x03\ \x49\x61\x90\x31\x47\x49\x01\xf6\xda\x00\x65\xc8\x28\x24\x23\x03\ \xc3\x9f\x7f\xff\x05\xb8\x58\xb7\x5f\x7c\xb3\xed\xe2\x1b\x82\x95\ \x01\x00\x00\x00\xff\xff\xc2\x19\x01\xff\xff\x33\x30\x32\x30\xbe\ \xfb\xfa\xbb\x6d\xd3\x3d\x36\x16\x26\x48\x80\xb2\x30\x31\x7e\xf8\ \xfa\x3b\xde\x56\xca\x53\x5f\x04\xa5\xbd\xcf\xc8\xc2\xf0\x36\x97\ \xe1\xc3\x5c\x06\x66\x48\xe8\x0f\x53\x00\x89\x83\xcf\x9b\x18\x5e\ \x47\xc1\x5a\xd5\xd0\x81\x0a\x0b\x65\xfe\x3c\x37\xb9\x8f\xdf\xfe\ \x40\xe6\x45\xfe\xfd\xff\xcf\xcb\xc1\xd2\xb7\xfd\xc1\xa3\xb7\x3f\ \x98\x99\x18\xf1\x44\x01\x00\x00\x00\xff\xff\xc2\x19\x01\xff\xfe\ \xff\x67\x64\x64\x98\xb8\xf3\xd1\xb3\x0f\x3f\x39\x58\x99\x20\x55\ \xf1\xa7\xef\x7f\xcc\x94\xf8\x33\x9c\x64\xfe\xc2\x66\x60\xa0\xed\ \xfd\x2f\x0b\x19\x3e\x4c\x19\xe6\xa1\x0f\x01\xff\x7f\x33\xb0\xb0\ \x32\x7c\x5a\xc3\xf0\xb1\x13\x36\x5c\xc1\x00\x89\x83\x70\x0b\x09\ \x0f\x3d\x91\x0f\xdf\xfe\x30\x33\x31\xfe\xff\xcf\xc0\xc2\xcc\xf8\ \xe5\xc7\xdf\xee\xad\x0f\xfe\x41\x46\xca\x70\x00\x00\x00\x00\x00\ \xff\xff\xc2\x1e\x01\x90\xd4\x7d\xf0\xc6\xfb\x6d\x17\x5f\x0b\x70\ \xb1\xfe\xf9\xf7\x9f\x91\x91\xe1\xd7\x9f\x7f\x82\x3c\xac\xb5\x01\ \x4a\xcc\x4c\x8c\xb0\x19\x95\xbf\x0c\x0c\x2c\x0c\xdf\x36\x32\xbc\ \x4a\x62\x60\x62\x61\x60\xf8\x43\x1b\x4f\x0f\x32\xf0\xff\x37\x03\ \x33\x0b\xc3\x9b\x0a\x86\xcf\x33\x19\x18\x58\x18\xfe\xff\x61\x60\ \x60\x80\xb4\x4d\xcb\xbc\x15\x14\x44\x38\x7e\xfc\xfa\xcb\xc4\xc8\ \xf0\xf7\xdf\x7f\x3e\x4e\x96\x63\x77\x3e\x6c\xc0\xdb\x2a\x05\x00\ \x00\x00\xff\xff\xc2\x12\x01\xff\x19\x18\x18\x19\x19\xbe\xff\xfa\ \x3b\x7d\xef\x63\x0e\x56\x26\x48\xec\x41\x5a\x3e\x25\x5e\x0a\x92\ \x02\xec\xb0\x8a\xf7\x1f\x03\x03\x33\xc3\x9f\xc7\x0c\xaf\xe2\x61\ \x4d\xa0\x61\x57\xee\xe3\x04\x7f\x19\x98\x98\x18\xde\xe4\x30\xfc\ \xba\xc0\xc0\xc8\xc2\xc0\xf0\x97\x91\x91\xe1\x3f\xc3\x7f\x3e\x4e\ \x96\x6a\x3f\x25\x78\x50\xff\xfd\xff\x9f\x87\x9d\x79\xee\xc1\x67\ \x6f\xbf\xfc\x86\xc4\x10\x26\x00\x00\x00\x00\xff\xff\xc2\x16\x01\ \xff\xfe\x33\x31\x32\x2e\x38\xfc\xec\xce\xcb\x6f\x9c\xac\xcc\xf0\ \xc2\xc7\x5e\x53\xd0\x59\x4b\x08\x51\xf1\x32\xfc\x67\xf8\xff\x8b\ \xe1\x75\x34\xc3\xdf\x8f\x0c\x8c\x4c\xc3\xa2\xc5\x49\x3c\xf8\xcf\ \xc0\xc0\xc8\xf0\xff\x0f\xc3\xab\x68\x86\x7f\x1f\x20\x8d\x22\x48\ \x85\x6c\x20\xcf\xeb\x67\x24\xfa\xf1\x3b\xb4\x20\x62\x63\x61\x7a\ \xf5\xe9\xe7\xb4\xbd\x8f\x19\x19\x19\xb0\x16\x44\x00\x00\x00\x00\ \xff\xff\x42\x8f\x80\x7f\xff\x19\x18\x99\x18\x1f\xbf\xfb\xb1\xfa\ \xd4\x4b\x3e\x4e\x96\x3f\xff\xfe\x33\x32\x30\xfc\xfd\xf7\x9f\x83\ \x95\x29\xd3\x49\xf6\x3f\x62\xa8\xef\x2f\x03\x03\x33\xc3\xbb\x22\ \x86\xaf\x87\x19\x98\x59\x86\xd4\x30\x03\xb5\xc0\x5f\x06\x26\x16\ \x86\x9f\xd7\x18\xde\x24\x31\x30\x40\xd3\x1f\x24\x99\x27\xdb\x4b\ \x8b\xf0\xb0\xfd\xfe\xf3\x8f\x91\x91\xe1\xef\xbf\xff\xfc\x9c\x2c\ \xdb\x2f\xbe\xb9\xfc\xf8\x0b\x13\xb6\xae\x19\x00\x00\x00\xff\xff\ \xc2\xcc\x01\xff\x19\x19\x18\x16\x1c\x7a\xf6\xf9\xc7\x5f\x48\x23\ \x87\x89\x89\xf1\xd3\xf7\x3f\xd1\x56\x92\x4a\x62\x9c\xff\xa0\x85\ \xcf\x5f\x06\x06\x16\x86\xef\x7b\x19\x3e\x4c\x65\x60\x86\x16\x82\ \x23\x11\xfc\xff\xc3\xc0\xcc\xca\xf0\x79\x3d\xc3\x97\xc5\x90\xc1\ \x22\x48\xc3\x5f\x84\x97\x2d\xd5\x51\xe6\xcb\xcf\xbf\x90\xe9\x10\ \x46\x46\xc6\x7f\xff\xfe\xcf\x3d\xf8\x94\x81\x81\x01\x73\x41\x07\ \x00\x00\x00\xff\xff\x42\x89\x80\x7f\xff\x19\x98\x18\x19\x1f\xbd\ \xfd\xb1\xf7\xda\x5b\x5e\x0e\xe6\xbf\xff\xfe\x33\x31\x32\x7c\xff\ \xf5\x57\x4d\x82\x2b\xce\x46\x0a\xa9\xc7\xcb\xc0\xf0\xff\x37\xc3\ \xbb\x12\x06\x38\x77\xc4\x82\xff\x7f\x19\x18\x99\x18\xde\xd5\x30\ \xfc\x83\x94\xc3\xff\x21\x23\x10\x01\xc6\x62\x66\x4a\xfc\x5f\x7e\ \xfc\x85\x94\x4b\x3c\x1c\x2c\x27\xef\x7d\xb8\xf0\xe8\x33\x13\x23\ \x03\xda\x38\x1d\x00\x00\x00\xff\xff\x42\xcb\x01\xff\x19\x18\x18\ \x56\x9c\x78\xf1\xed\x27\x34\xf9\x33\x32\x32\xfe\xfe\xfb\x3f\xd3\ \x59\x96\x83\x95\x09\x36\xdd\xf3\x8f\x81\x81\x99\xe1\x7d\x2d\xc3\ \x8f\x0b\x0c\x8c\x4c\x23\xb2\xf0\x41\x06\xff\x18\x18\x19\x19\x7e\ \x3f\x62\x78\x9b\x03\x2f\x88\x18\x18\x18\x98\x18\x19\xb2\x5d\x65\ \x99\x99\x18\xfe\x33\x40\x97\x15\xfd\xff\xcf\xb0\xfc\xf8\x73\x06\ \x06\xf4\x3c\x00\x00\x00\x00\xff\xff\x42\x44\x00\x24\xf9\x3f\x7e\ \xf7\x63\xfb\xc5\x37\x3c\x1c\x2c\x90\xe4\xff\xf5\xe7\x5f\x43\x79\ \x5e\x1b\x35\x41\xd8\x50\xf3\x3f\x06\x06\x26\x86\xdf\xf7\x18\x3e\ \xf6\x31\x30\x31\x8f\xb0\x8a\x17\x17\xf8\xcb\xc0\xc4\xcc\xf0\x79\ \x09\xc3\xcf\x93\x90\xde\x19\x13\x23\xe3\xbf\xff\xff\xb5\xa5\x79\ \xec\xd4\x05\xbf\xfc\xf8\x0b\x69\x83\xf2\xb0\x33\x1f\xba\xf1\xe1\ \xf2\xe3\x2f\x10\x59\xb8\x66\x00\x00\x00\x00\xff\xff\x42\x5a\xa1\ \xf7\xff\x3f\x03\x03\xc3\x8e\x4b\x6f\x3e\xff\xf8\x83\x94\xfc\xff\ \x85\x98\x8a\x43\x22\x10\xa2\x88\x81\x81\x91\xe1\x63\x2b\xc3\xbf\ \xdf\xa3\xe5\x0f\x0a\xf8\xcf\xc0\xf0\xbe\x01\x85\xcb\xc0\x10\x6a\ \x2e\xc1\xc4\xc4\x08\x9b\x45\x67\xfc\xf3\xef\xff\x96\x0b\xaf\xe1\ \xb2\x10\x00\x00\x00\x00\xff\xff\x42\x44\x00\x33\x13\xe3\x8f\xdf\ \xff\x76\x5f\x79\xc7\xc9\xc6\x0c\xe9\x06\x7f\xff\xf5\x57\x45\x9c\ \xcb\x56\x43\xf0\xff\x7f\x06\x66\x26\x46\xe8\xd8\xec\xcf\x93\x0c\ \x9f\x17\x32\x30\x31\x8d\xdc\xba\x17\x0b\xf8\xcb\xc0\xc4\xcc\xf0\ \x6d\x07\xc3\xb7\x4d\xd0\x4c\xc0\xc4\xf8\xff\x3f\x83\x81\x1c\xaf\ \x81\x1c\xef\xd7\x5f\xd0\x9a\x80\x9b\x9d\xe9\xf0\xcd\xf7\x6f\xbf\ \xfc\x86\xc7\x0a\x03\x03\x03\x00\x00\x00\xff\xff\x82\x46\x00\xa4\ \x9f\x76\xe8\xc6\xfb\xfb\xaf\xbf\x41\x8a\x7b\x26\x46\xc6\x1f\xbf\ \xff\x85\x99\x49\xb0\xb3\x30\x21\x65\x19\x46\x86\xf7\x0d\x0c\xff\ \xfe\x22\x2f\x6e\x1d\x05\x50\xf0\x9f\x81\xe1\x7d\x1d\x03\x03\x03\ \x7c\xa1\x23\x23\x23\x43\x94\xa5\xc4\xbf\x7f\xff\x21\x6d\x77\x56\ \x66\xa6\x57\x9f\x7e\xed\xb8\xf4\x06\x22\x0b\xd1\x04\x00\x00\x00\ \xff\xff\x82\x86\x23\x64\x5c\x67\xcb\x85\xd7\x90\x41\x6d\xc8\xc0\ \x83\x9c\x30\x87\x9b\xae\xf0\x7f\x06\x06\x26\x48\xf2\x67\x60\x62\ \xf8\x75\x99\xe1\xfb\x5e\x06\x26\xa6\x91\x32\xea\x40\x02\xf8\xcb\ \xc0\xc4\xcc\xf0\xf3\x22\xc3\xf7\x3d\x0c\x0c\x4c\xd0\x4c\xc0\xc0\ \x60\xa9\x22\xa0\x29\xc5\xfd\xfd\xd7\x5f\xc8\x48\x35\x3b\x2b\xd3\ \xce\xcb\x6f\xfe\xfc\x85\x8f\xa4\x31\x00\x00\x00\x00\xff\xff\x62\ \x62\x80\xae\x96\x65\x7c\xf0\xe6\xfb\xa5\x47\x9f\xb9\xd8\x98\x21\ \x8d\xfd\xaf\x3f\xff\xba\xea\x08\x73\xb3\x33\xff\xfb\xf7\x1f\x56\ \x6f\x33\x32\x7c\x6c\x63\xf8\xf7\x7b\x34\xf9\xe3\x04\xff\x19\x18\ \x3e\xb4\x30\x30\x30\x40\x3a\xac\xff\xfe\xfd\x67\x61\x66\xf4\x36\ \x10\xfd\xf1\xfb\x1f\x23\x23\xe3\xff\xff\x0c\x9c\xac\xcc\xb7\x5f\ \x7c\xbf\xf4\xf8\x0b\x23\x2c\x13\x00\x00\x00\x00\xff\xff\x62\x62\ \x80\x55\xbf\x87\x6f\x7e\xf8\x02\x6b\x7d\xfe\xfb\xf7\x9f\x8b\x8d\ \xd9\x45\x5b\x98\x81\x01\xb2\xa2\xf3\x1f\x03\x03\x33\xc3\xdf\x27\ \x0c\x5f\x37\x31\x30\x0d\xad\xe9\x75\x7a\x82\xbf\x0c\x4c\x4c\x0c\ \xdf\x0f\x33\xfc\xba\x00\xcd\x04\x8c\x8c\x0c\x0c\x0c\xf6\x1a\x82\ \xc2\x3c\xac\x7f\xfe\xfe\x67\x84\x2e\x73\xff\x77\xf0\xc6\x3b\x06\ \xd8\x12\x37\x00\x00\x00\x00\xff\xff\x62\x62\x60\x60\x80\xcc\xe2\ \x1f\xb8\xfe\x8e\x9d\x85\x09\xb2\xf2\xe7\xdb\xaf\x7f\x86\x0a\x7c\ \xaa\x12\x5c\xd0\x9d\x08\xff\xff\x31\x30\x30\x30\x7c\x9a\xca\xf0\ \xf7\x1b\x03\x23\xf3\x68\xe3\x07\x27\x60\x64\x62\xf8\xff\x8f\xe1\ \x63\x1f\x03\x03\x03\xc3\x7f\x06\x48\xc7\x58\x8c\x8f\xcd\x5a\x55\ \xf0\xeb\xcf\xbf\x90\xa1\x08\x0e\x36\xe6\xa3\xb7\x3f\x7c\xfb\x05\ \x9d\xc2\x04\x00\x00\x00\xff\xff\x62\x82\xd4\x15\x77\x5f\x7f\xbf\ \xfd\xf2\x1b\x07\x1b\x13\x64\xf1\xfe\xef\xbf\xff\x1c\x34\x04\x19\ \xa0\x99\xe3\x3f\x03\x23\x33\xc3\xff\x1f\x0c\x5f\x96\x33\xc0\x23\ \x63\x14\x60\x05\xff\xff\x32\x30\x31\x30\x7c\xdb\xc8\xf0\xf7\x0d\ \x24\xa5\x42\x92\xb9\xa3\x96\x20\x23\x23\x64\x65\x1b\x03\x3b\x2b\ \xd3\x93\x77\x3f\x2e\x3f\xfe\xc2\xc0\xc0\xf0\xef\xdf\x7f\x00\x00\ \x00\x00\xff\xff\x62\x82\xa8\x38\x75\xf7\xe3\x37\xd8\xd8\xc5\x9f\ \xbf\xff\x05\xb9\x59\x2d\x54\xf9\x19\xa0\xfb\x5b\xfe\x31\x30\x30\ \x32\xfc\xd8\xc7\xf0\xfb\x21\x03\xe3\x68\xe7\x0b\x3f\xf8\xcf\xc0\ \xc8\xc2\xf0\xe7\x13\xc3\xb7\x0d\x0c\x0c\x0c\xf0\x52\xc8\x50\x81\ \x4f\x52\x80\x1d\x32\x3c\xc7\xc8\xc0\xf0\xf7\xef\xff\x13\x77\x3e\ \x40\x34\x00\x00\x00\x00\xff\xff\x62\x82\xa8\x38\x79\xf7\x23\x64\ \x6d\x29\x13\x23\xe3\xf7\xdf\x7f\x75\x65\x79\x24\xf9\xd9\x51\x96\ \x9a\x7e\x5e\xcc\xf0\x9f\x11\x73\x2c\x69\x14\xa0\x03\x48\x5f\xf5\ \xcb\x12\x06\x06\x06\x48\x02\xfe\xf7\xef\x3f\x0f\x3b\xb3\xa9\x12\ \xdf\xf7\x5f\x7f\x99\x18\x19\xff\xff\xff\xcf\xce\xca\x74\xe6\xfe\ \x27\x48\x5b\x08\x00\x00\x00\xff\xff\xec\x98\x31\x12\x40\x30\x00\ \x04\xef\x12\x93\x32\x5f\xe0\x0b\xfc\xbf\xd2\xfa\x83\x4a\x81\x42\ \x41\x21\x42\x9c\x22\x1e\xe0\x01\xf6\x0d\x37\xb3\x73\x6b\x48\x6c\ \xe1\xea\xe7\xdd\x15\x46\x10\x89\x33\xa9\x2e\x3d\x5e\x4d\x0b\xb0\ \x50\xc0\xd1\x82\xfa\xe7\xff\x81\x1b\x14\x62\x87\x34\xe5\x3a\x94\ \x85\xd9\x54\x5e\xca\xff\x00\xce\x9a\x61\x39\xc6\x35\x12\x78\x00\ \x00\x00\xff\xff\x62\x62\x60\x60\xb8\xf1\xfc\xdb\xdb\x2f\xbf\x21\ \x6b\x7e\xfe\xff\xff\xcf\xc9\xca\xa4\x27\xcb\xc3\xc0\x00\x1f\x7a\ \x63\x60\xf8\x79\x8c\xe1\xf7\xb3\x91\x37\xeb\x42\x1e\xf8\xcf\xc0\ \xc4\xcc\xf0\xe7\x1b\xc3\xf7\x3d\x0c\x0c\x0c\x0c\xff\xff\x41\x96\ \x89\x6a\x4b\x73\xf3\x71\x42\x17\xb5\x33\x33\x33\x7e\xf9\xf9\xf7\ \xea\x93\x2f\x0c\x0c\x0c\x00\x00\x00\x00\xff\xff\x62\x62\x60\x60\ \xb8\xf4\xe8\xf3\xaf\xbf\xff\x18\x19\x21\xfd\xaf\xff\x12\xfc\xec\ \x90\x9d\x2d\x8c\xf0\x31\xa0\xef\x07\x18\xfe\x33\x30\x30\x8e\x36\ \xff\x89\x04\x8c\x0c\x0c\x0c\x0c\x3f\xf6\x41\x98\x90\x2e\x97\xac\ \x10\xa7\x82\x28\x27\x64\xed\x10\x03\x03\xc3\xff\xff\xff\x2f\x3e\ \xfa\xcc\xc0\xc0\x00\x00\x00\x00\xff\xff\x62\x62\x60\x60\x78\xf8\ \xe6\x3b\x33\x23\xa4\x03\xcc\xf8\xeb\xcf\x3f\x45\x31\x4e\x0e\x56\ \x26\xc8\x7e\x23\x68\xa0\xff\x3c\x06\xd1\x34\x00\x7e\x19\x8a\xe0\ \xff\x3f\x06\x46\x06\x86\x1f\x27\xe1\xbb\xe1\x20\x0b\xda\x54\x25\ \xb8\x7e\xfd\x85\xf4\xc8\xfe\xb3\x32\x33\x3d\x7a\xfb\x83\x81\x81\ \x01\x00\x00\x00\xff\xff\x62\xfa\xf3\xf7\xff\x83\x37\x3f\x58\x99\ \x19\xff\xff\xff\x0f\x59\x54\xa4\x2a\xce\xc5\x00\xdb\x87\xc4\xc0\ \xc0\xc4\xf0\xef\x33\xc3\xaf\x8b\x0c\xf0\xe2\x68\x14\x10\x06\xff\ \x19\x18\x19\x18\xfe\xdc\x61\xf8\xf3\x18\xb2\x8e\x11\x22\xaa\x26\ \xc1\x0d\x1f\x53\x66\x65\x66\x7c\xfa\xee\xc7\xa7\xef\x7f\x00\x00\ \x00\x00\xff\xff\x62\x7a\xfe\xf1\xe7\xab\x8f\xbf\x58\x59\x18\xff\ \xff\x67\xf8\xff\x9f\x81\x85\x89\x51\x53\x8a\x1b\x66\xd0\x3f\x06\ \x06\x06\x86\x5f\x17\x19\xfe\xbc\x81\x4c\xf7\x0c\x80\x5f\x86\x24\ \xf8\xcf\xc0\xc0\xcc\xf0\xf7\x27\xc3\xcf\xd3\x0c\x0c\x0c\x0c\xff\ \xa1\x83\x71\xea\x92\x5c\x9c\xac\x4c\xff\xfe\xfd\xff\xcf\xc0\xc0\ \xc2\xcc\xf8\xfe\xeb\x9f\x07\x6f\xbe\x03\x00\x00\x00\xff\xff\x62\ \x7a\xfa\xee\x07\x62\x04\xe2\xff\x7f\x0e\x36\x66\x19\x21\x0e\x06\ \x48\x0d\x0c\x29\x73\x7e\x5f\x65\x80\x0d\x5a\x8c\x02\x62\x01\x24\ \xc8\x7f\x5d\x64\x60\x60\x60\x60\xf8\x0f\x59\x45\x25\x29\xc0\xce\ \xcb\xc1\xf2\xf7\x1f\x03\x23\x03\x03\x13\x23\xe3\xcf\x3f\xff\x1e\ \xbe\xf9\x01\x00\x00\x00\xff\xff\x62\x7a\xf1\xf1\xd7\xdf\x7f\xd0\ \xfd\x98\x7f\xff\xfd\xe7\xe7\x64\x16\xe1\x65\x63\x80\x0e\x01\x31\ \x30\x30\x30\x30\xfc\xba\xcc\xc0\x30\xda\x01\x20\x11\x40\xd2\xee\ \xaf\xab\x0c\x0c\x0c\x0c\xb0\xed\x32\xfc\x9c\x2c\xc2\x3c\xac\x7f\ \xfe\xc1\x57\xb7\xff\x7f\xf1\xe1\x27\x00\x00\x00\xff\xff\x62\xba\ \xff\xfa\x3b\x74\xde\x92\x81\xe1\xf7\xdf\xff\xe2\xfc\xec\xbc\x1c\ \xcc\x90\x45\xa6\xd0\x1a\xf8\xd7\x35\x84\x89\xa3\x80\x58\xf0\x9f\ \x81\x91\x81\xe1\xf7\x4d\x58\x3d\xfc\x1f\xb2\xbc\x4a\x4a\x90\xe3\ \xf7\xdf\xff\xd0\x75\x44\x4c\x8c\xf7\x5e\x7f\x07\x00\x00\x00\xff\ \xff\x62\x7a\xf9\xf1\x27\x6c\xad\x03\xe3\xdf\x7f\xff\x05\xb8\x58\ \x18\x90\x6b\xe0\xff\xff\x18\xfe\x3e\x63\x40\xec\x77\x1c\x05\x44\ \x82\xff\x0c\x0c\x0c\x0c\xff\x5e\x31\xfc\xfb\x02\xe5\xff\xff\xcf\ \xc0\xc0\x20\xcc\xc3\x0a\x19\x6d\xfb\xcf\xc0\xc0\xc4\xc8\xf0\xfa\ \xf3\x2f\x00\x00\x00\x00\xff\xff\x62\x7a\xf7\xf5\x0f\x13\x23\x74\ \x39\xe2\xbf\xff\x0c\x90\xf2\x07\xb1\x86\xeb\xff\x67\x86\xbf\x6f\ \x10\x26\x8e\x02\xe2\x01\x23\x03\xc3\xdf\x0f\x0c\xff\xde\x32\x30\ \x30\xc0\x43\x4f\x84\x97\x0d\x1a\xb6\xff\x19\x98\x98\x18\x3f\x7c\ \xfd\x03\x00\x00\x00\xff\xff\x62\xfa\xf0\xf5\x37\x13\x24\x46\x18\ \x18\xfe\xff\xff\x0f\x89\x00\x84\x9e\xbf\x6f\x18\xfe\x7d\x18\xad\ \x00\x48\x07\x90\xf2\xe3\x0f\xc3\x9f\xe7\x30\x2e\x03\x03\x03\x83\ \x08\x2f\x2b\xb4\x02\x60\x60\x60\x66\x64\xfc\xf4\xe3\x0f\x00\x00\ \x00\xff\xff\x62\xfa\xfd\xf7\x3f\xf2\x8e\x4a\x3e\x4e\x66\x24\x23\ \x18\x18\xfe\xbe\x80\x6e\xbe\x18\xcd\x01\x24\x03\x46\x86\xff\x0c\ \x0c\x7f\x9f\x31\x30\x30\xc0\x43\x8f\x8f\x83\x05\x76\x7a\x00\x64\ \xd8\xff\x3f\x00\x00\x00\xff\xff\x62\xfa\xf5\xe7\x1f\x3c\x02\x18\ \x19\x18\x58\x99\xd1\x52\xfb\xe8\xdc\x2f\x85\x00\x25\x00\x59\x98\ \x51\x36\x10\x33\x32\x30\x00\x00\x00\x00\xff\xff\x62\xfa\xf6\xeb\ \x1f\x13\x23\x23\x24\x82\x98\x98\x18\x05\x38\xe1\xc7\x59\x41\x72\ \xc0\x6b\x58\x13\x69\x14\x90\x08\x20\x21\xfd\xe7\x15\x03\x03\x74\ \x76\x8c\x81\x81\x41\x80\x93\x05\x6d\xf7\x24\x00\x00\x00\xff\xff\ \x62\x62\x44\x0d\x5b\x8c\x82\x66\x74\xf8\x81\x42\x80\x12\x80\x98\ \xe5\x38\x00\x00\x00\xff\xff\x1a\xed\xdf\x0e\x30\x00\x00\x00\x00\ \xff\xff\x42\x8f\x00\x8c\xb2\x66\x34\x07\x50\x08\x50\x02\x10\xb3\ \x28\x07\x00\x00\x00\xff\xff\x42\x8f\x80\x3f\x68\x5b\x99\x18\xb9\ \xa8\xee\xa2\x91\x05\x18\xb9\x91\x79\x7f\x30\x76\x68\x00\x00\x00\ \x00\xff\xff\x62\xe2\xe5\x60\xf9\x0b\x5b\x7a\xf5\xf7\xdf\xff\x0f\ \xdf\xe0\xdb\x1c\x19\x19\x18\x18\x18\x98\x04\x47\xbb\xc1\x64\x02\ \x48\x50\x33\x0b\x32\x30\x30\x30\xc0\x66\xb6\x3e\x7e\xfb\xf3\xf7\ \xef\x7f\xe4\x8a\x17\x00\x00\x00\xff\xff\x82\x2f\x91\x83\x82\xbf\ \x68\x31\xc4\xc8\x01\x31\x8c\x96\x2e\x1d\xd6\x00\x1a\x80\x50\x80\ \x16\xbc\xff\x19\x18\x00\x00\x00\x00\xff\xff\x62\xe2\x62\x67\xfe\ \xf7\xff\x3f\xbc\x70\x7a\xfb\x05\xde\x6e\x65\x62\x60\x60\x60\x60\ \x96\x62\x60\xe2\x80\xce\xf4\x8f\x02\x12\x00\x23\x03\xc3\x3f\x06\ \x26\x06\xd8\x79\x8c\xd0\xa2\xfe\xed\xd7\xdf\x90\x69\x61\xc8\xd2\ \x44\x2e\x56\x26\x00\x00\x00\x00\xff\xff\x62\x12\xe4\x66\xf9\x07\ \xab\x27\x98\x18\x19\xdf\x7c\xfe\x85\x62\x0e\x93\x10\x03\x93\x20\ \xcc\xc4\x51\x40\x0a\xf8\xff\x9f\x81\x91\x83\x81\x09\x72\x04\x20\ \x34\xf4\xde\x7c\x42\x6c\x64\xff\xfb\xef\x3f\x1f\x17\x0b\x00\x00\ \x00\xff\xff\x62\x12\xe2\x66\x85\x1c\x68\xf8\xff\x3f\x03\x13\x13\ \xc3\xbb\x2f\xbf\x19\xa0\x93\x01\x8c\x0c\x0c\xff\x19\x98\x38\x18\ \x98\xc5\x46\xfb\x62\xa4\x03\x48\x0d\x2a\xc4\xc0\x24\x84\x2c\xfa\ \xf6\xcb\x2f\x68\x05\xc0\xc8\xf0\xef\x3f\x83\x20\x37\x2b\x00\x00\ \x00\xff\xff\x62\x92\x11\xe2\xf8\xff\x0f\x3a\x42\xcd\xcc\xc4\xf8\ \xf6\xcb\xef\x7f\xff\xff\xc3\x2a\x86\x7f\x0c\x0c\x8c\xb0\x4c\x34\ \x0a\x48\x02\x8c\x0c\xff\x19\x18\x58\xa4\x19\x98\x38\xa1\x5b\xdf\ \x19\x19\x19\x18\x18\x5e\x7f\xfe\xc5\xc4\x04\x3d\x87\xe3\xdf\xbf\ \xff\x52\x02\xec\x00\x00\x00\x00\xff\xff\x62\x92\x17\xe1\x84\xc4\ \xc9\xff\xff\x0c\xac\x4c\x4c\xaf\x3f\xfd\x7a\xf7\xe5\x0f\x03\xec\ \xa4\x20\x06\x06\x06\x06\x36\x3d\x06\x06\x0a\x8e\x86\x1d\x99\x00\ \xba\x25\x43\x9b\x81\x81\x81\xe1\xff\x5f\xc8\xe8\xff\xcf\x3f\xff\ \x9e\xbd\xff\xc9\xca\xcc\x04\x99\x01\xfb\xff\x9f\x41\x41\x84\x13\ \x00\x00\x00\xff\xff\x62\x12\xe7\x63\x65\x65\x61\xfc\xf7\x1f\x72\ \x0e\x16\xc3\x97\x9f\x7f\x21\xd5\xc0\x7f\x78\xcb\x87\x55\x8b\x81\ \x61\xb4\x1d\x44\x16\x60\xd3\x82\x32\xfe\x33\x30\x30\x30\xbc\xff\ \xf2\xfb\xc3\xb7\x3f\x2c\x4c\xd0\xc1\x7f\x26\x26\x46\x09\x01\x36\ \x00\x00\x00\x00\xff\xff\x62\x92\x15\xe6\x84\x9c\xb8\xcd\xc8\xc0\ \xc0\xc4\xc4\xf8\xe3\xf7\xdf\x7b\xaf\xbf\x33\x40\x97\x38\x32\x31\ \x30\x30\x30\xb0\xeb\x33\x30\x0d\xa1\x03\x0f\x07\x07\x80\x2c\x0d\ \x62\x37\x66\x60\x60\x60\x80\x6d\x8b\x7c\xf8\xf6\xc7\x97\x1f\x7f\ \x20\xab\xd2\xff\xfe\xfb\xcf\xc5\xc6\xac\x28\xca\x09\x00\x00\x00\ \xff\xff\x62\x12\xe2\x61\x95\x12\xe4\xf8\xf5\x07\x31\x2b\x70\xfd\ \xd9\x57\x98\x31\x90\x7c\xa4\xce\xc0\x22\xcf\xf0\xff\xff\xe8\xc2\ \x08\xa2\x01\x23\x03\xc3\x3f\x06\x66\x01\x06\x36\x43\x06\x06\x06\ \x78\xb8\xdd\x7c\xfe\x15\x32\xfb\x02\xd9\x00\x20\xca\xc7\x26\x23\ \xc8\x01\x00\x00\x00\xff\xff\x62\x62\x64\x60\x50\x10\xe5\xf8\x83\ \xb4\x62\xeb\xce\xcb\x6f\x0c\xd0\x7d\x61\xb0\x53\x09\xd8\x8d\x19\ \xfe\x8f\x56\x03\xc4\x03\x26\x86\x7f\x0c\x0c\x6c\xba\x0c\x4c\x82\ \x90\x86\x0c\x24\xe4\x6e\xbe\xf8\x06\xdb\x82\xc7\xf8\xfb\xef\x7f\ \x59\x21\x76\x76\x56\x26\x00\x00\x00\x00\xff\xff\x62\x62\x60\x60\ \x50\x16\xe3\x82\x1e\xd2\xff\x9f\x81\x8d\x85\xf1\xe1\x9b\xef\xef\ \xbf\xfe\x66\x44\xae\x87\x39\x6c\x18\x18\x18\x46\x5b\xa2\xc4\x02\ \xe8\x81\x7e\x16\x0c\x0c\x90\xe5\x10\x0c\x4c\x8c\x8c\xbf\xfe\xfc\ \xbb\xf3\xe2\x1b\x1b\x0b\x13\x7c\x05\xa2\xa2\x28\x27\x03\x03\x03\ \x00\x00\x00\xff\xff\x62\x62\x60\x60\x30\x90\xe7\xe5\x61\x67\x86\ \xac\xd8\x62\x65\x66\x7a\xfb\xe5\x37\x64\xdd\xe8\xbf\xff\xff\xa1\ \xd5\x00\xa7\x0b\x03\x13\xcb\x10\x3f\x80\x92\x8e\x00\x52\x01\x70\ \x79\x30\x30\x30\x30\x30\x42\xcf\x26\xbe\xf9\xfc\xeb\xd3\xf7\x3f\ \xd8\x61\x2b\x10\x59\x99\x19\x8d\x15\xf9\x19\x18\x18\x00\x00\x00\ \x00\xff\xff\x62\x62\x60\x60\x90\x13\xe6\x10\xe5\x63\xfb\x05\x9b\ \x1c\xfe\xfb\xef\xff\x95\xa7\xc8\xd5\xc0\x7f\x06\x56\x2d\x06\x36\ \xb5\xd1\x6a\x80\x38\xc0\xc8\xf0\xff\x1f\x03\x8b\x18\x34\x07\x30\ \x40\xf7\x20\x5d\x7d\xf6\x15\xb2\x57\x92\x11\x76\xaa\x9f\x8a\x38\ \x27\x03\x03\x03\x00\x00\x00\xff\xff\x62\xfa\xf7\xef\x3f\x3b\x0b\ \x93\xb6\x34\xcf\xcf\x3f\xff\x20\xc7\x18\xb0\xb3\x30\x9d\xb9\xf7\ \xf1\xef\xbf\xff\xcc\x90\xfe\x30\x24\xe1\x73\x7a\x8f\xae\x50\x27\ \x0e\x30\x33\xfc\x67\x64\xe0\x74\x65\x60\xe4\x62\x60\xf8\xcb\xc0\ \xc0\x08\xdd\x83\x74\xe7\x23\x0b\xf4\x7c\x7b\xc6\x9f\xbf\xff\xa9\ \x8a\x73\x09\x71\xb3\xfe\xff\xcf\x00\x00\x00\x00\xff\xff\x62\x82\ \xb4\xef\x2d\x55\xf8\x21\x39\xe5\xff\x7f\x06\x0e\x36\xa6\x3b\x2f\ \xbf\xdd\x7a\xf1\x8d\x81\x11\xa9\x14\xe2\x89\x65\x60\x62\x1e\x2d\ \x85\x88\x00\xff\x18\x18\xff\x33\xf0\xc4\x43\x38\x90\x6d\x5e\xcf\ \x3f\xfc\xbc\xfc\xf8\x0b\x27\x2b\xf4\x0c\x88\xdf\x7f\xff\x99\x2b\ \xf3\x33\x30\x30\xfc\xfb\xff\x1f\x00\x00\x00\xff\xff\x82\xee\x11\ \x33\x52\xe0\x13\xe4\x66\xfd\xfd\x17\x7a\xec\xd3\x8f\xdf\xff\x0e\ \xdf\x7c\xcf\x00\xad\x83\x99\x18\x18\xfe\x31\xb0\xe9\x32\xb0\x9b\ \x40\x8e\x2d\x1e\x30\xaf\x0d\x01\xc0\xc4\xf0\xff\x1f\x03\x9b\x22\ \x03\x87\x3d\x64\xed\x0f\xa4\x07\x70\xe2\xce\xc7\x0f\xdf\xa0\x47\ \x4c\xff\xfb\xff\x9f\x8b\x8d\x19\x12\x01\x8c\x8c\x0c\x00\x00\x00\ \x00\xff\xff\x62\x82\xef\x65\x35\x94\xe7\xfd\xfe\xeb\x1f\x74\x2f\ \x2b\x2b\xf3\xc1\x1b\xef\x7f\xfe\xf9\x07\x9d\x2e\x80\x6c\x4d\xe5\ \xcb\x60\x18\x1d\x96\xc6\x0f\x18\x99\x18\xfe\x33\x30\xf0\x24\x33\ \x30\xb2\x41\x4a\x0b\xc8\x21\x66\x7b\xae\xbe\x65\x65\x86\xec\xc1\ \x66\xf8\xfe\xeb\x9f\xba\x14\xb7\xb2\x38\x27\x64\x4b\x24\x00\x00\ \x00\xff\xff\x82\xec\x94\x67\x60\x60\x60\x70\xd2\x12\x86\xdc\xd5\ \x01\x2f\x85\xce\xde\xff\xc4\x08\x39\xc7\x03\x72\x10\x34\x77\x04\ \x03\x9b\x34\xc3\xbf\x7f\xa3\x55\x31\x0e\xc0\xc8\xf0\xff\x2f\x03\ \x33\x0f\x03\x6f\x1a\x03\x03\x03\x03\x23\x74\xd3\xf5\xcd\x17\x5f\ \x2f\x3e\xfa\xcc\xc5\xce\x0c\x39\x12\xe2\xd7\x9f\x7f\x0e\x1a\x82\ \xf0\x53\x83\x00\x00\x00\x00\xff\xff\x82\xee\x94\x67\x60\x60\x30\ \x53\xe2\x17\xe3\x65\xfd\xf5\xe7\x1f\x7c\x33\x2a\xe4\x5c\x0f\xc8\ \xb9\x67\x0c\x0c\x7f\x18\x18\x39\x18\x78\xd3\x19\xe0\xb5\xc2\x28\ \x40\x07\xcc\x0c\xff\xfe\x33\xf0\x44\x31\x30\x8b\x42\xce\x36\x81\ \x54\xab\x3b\x2f\xbd\xfd\xf9\x07\xba\x35\xec\xef\xbf\xff\xbc\x1c\ \x2c\x36\x6a\x82\x0c\xb0\xee\x19\x00\x00\x00\xff\xff\x82\xde\x79\ \xf2\xef\xdf\x7f\x41\x6e\x16\x6b\x35\x81\x6f\xbf\xfe\x32\x31\x41\ \x0e\xb7\x61\x3e\x72\xeb\xc3\x93\x77\x3f\x98\x18\x21\x27\xef\x32\ \x33\x30\xfc\x67\xe0\xcb\x61\x60\x11\x66\xf8\xf7\x77\xb4\x24\xc2\ \x00\x90\x29\x30\x76\x06\x81\x72\x08\xf7\xff\x7f\x06\x26\x26\xc6\ \x8f\xdf\xfe\xec\xbe\xf2\x96\x1b\x72\x04\x0a\x13\xe3\xd7\x9f\x7f\ \x8d\x14\x78\xe5\x45\x38\xe0\x63\xfe\x00\x00\x00\x00\xff\xff\x42\ \x49\xcb\xbe\x86\x62\x6c\x2c\x4c\x90\x75\x11\xcc\x4c\x8c\x9f\xbf\ \xff\x59\x73\xfa\x25\x03\x03\x6c\xf3\x31\xc3\x5f\x06\x26\x41\x06\ \x9e\xd8\xd1\xaa\x18\x1b\x60\x66\xf8\xf7\x8f\x81\xdb\x97\x81\x45\ \x09\x92\xfc\x21\xbb\x1c\x37\x5f\x78\xfd\xe2\xe3\x4f\x56\x16\x26\ \xe8\x94\x0b\x03\x83\xaf\xa1\x18\x03\xd2\x76\x0b\x00\x00\x00\x00\ \xff\xff\x82\x9d\x17\xc4\xc4\xf8\xff\x3f\x83\xae\x2c\x8f\x81\x1c\ \xef\xb7\x5f\x7f\xa0\x27\x3c\x71\xb0\x6c\xbf\xf8\xe6\xf5\xa7\x5f\ \x8c\xd0\x13\x9e\x98\x19\x18\xfe\x31\x08\x54\x31\xb0\x8a\x33\xfc\ \x1f\xad\x09\x90\x01\x64\xf4\x8d\x8b\x41\xb0\x1d\x32\xfd\x02\xa9\ \x60\xbf\xfd\xfa\xbb\xfe\xcc\x2b\xc4\x09\x64\xbf\xff\xaa\x8a\x73\ \x59\xab\x0a\xfc\x67\x60\x80\x5f\x42\x09\x00\x00\x00\xff\xff\x42\ \x3e\xb4\xef\x3f\x03\x03\x83\x97\xbe\xc8\xef\x3f\xf0\x13\x9e\x18\ \xdf\x7e\xf9\xbd\xe5\xc2\x1b\x46\xa8\x2c\x23\xc3\xff\x7f\x0c\xcc\ \xa2\x0c\x02\x95\xb0\x4b\x61\x47\x01\x03\x03\x03\x03\x03\x23\x33\ \xc3\xbf\x7f\x0c\x7c\x59\x0c\xac\x2a\x90\xc5\xe4\x90\x10\xdf\x77\ \xed\xdd\xa3\xb7\xdf\x21\x27\x90\x31\x33\x32\x7e\xff\xf9\xcf\x55\ \x47\x88\x95\x05\xe5\x86\x19\x00\x00\x00\x00\xff\xff\x42\x04\x22\ \xe4\x84\x27\x7b\x0d\x21\x39\x61\x8e\x9f\x7f\xfe\x41\x9a\xa7\x5c\ \xec\xcc\x9b\xce\xbd\xfa\xfa\xf3\x2f\xf4\xe8\x63\xc8\x61\x1d\x3c\ \x29\x0c\xac\xd2\x0c\xff\xfe\x8c\x66\x02\x06\x06\x06\x58\xba\xe4\ \x61\xe0\x2f\x62\x60\xf8\xc7\xc0\xc8\x04\x19\x38\xfe\xfb\xef\xff\ \xea\x93\x2f\xe1\xa3\x6f\xbf\xff\xfe\x17\xe6\x65\xf5\xd0\x13\x65\ \x40\xde\x7f\xc7\xc0\x00\x00\x00\x00\xff\xff\x62\x42\x32\x86\xe1\ \xdf\xbf\xff\x3c\x1c\xcc\x91\x16\x92\xdf\x60\x21\xce\xce\xc2\xf4\ \xf8\xdd\x8f\x95\x27\x5f\xc0\x2e\x83\x80\xcc\xd4\x73\x33\x08\x4f\ \x81\x69\x1a\x05\x4c\x0c\xff\xfe\x31\x08\x75\x32\x30\x4b\x42\x56\ \xfa\x40\x8e\x1c\xdb\x76\xf1\xcd\xb5\xa7\x5f\xb8\xd8\x98\xff\xfd\ \x67\x60\x62\x62\xfc\xfc\xe3\x4f\x80\x91\x98\x04\x3f\xe4\xce\x11\ \x84\x66\x00\x00\x00\x00\xff\xff\x42\x49\xc2\x90\x40\xf7\xd0\x17\ \x96\x11\x82\x65\x82\x7f\xff\x79\x39\x59\x96\x1e\x7b\x0e\xbb\x88\ \xe0\x3f\xf4\x42\x27\xee\x00\x06\xde\x18\x86\x7f\x7f\x61\x77\x0b\ \x8d\x58\xc0\xcc\xf0\xef\x2f\x03\xb7\x13\x03\x5f\x16\xc3\xff\xbf\ \x0c\x0c\xcc\x90\xd2\xff\xfd\xd7\xdf\xb3\xf6\x3f\xe1\x64\x67\x86\ \x54\xc5\x90\x13\x80\x02\x4d\xc4\xfe\xc3\x1a\xfd\x70\x00\x00\x00\ \x00\xff\xff\x42\x89\x00\x48\x32\xe7\xe5\x60\x09\x31\x13\x87\x66\ \x02\xc8\xdd\xb4\x3f\xfe\x4e\xda\xf5\x88\x81\x01\x36\x33\x0c\x39\ \xb5\x43\xb0\x95\x81\x99\x9f\xe1\xdf\xbf\x11\x9c\x0f\x20\x0d\x49\ \x16\x06\xa1\x5e\xe8\xb6\x48\xd8\x61\x89\x33\xf6\x3d\x79\xf1\xf1\ \x27\x3b\x0b\xd3\x7f\x58\xf2\xf7\xd6\x17\x91\x14\x60\x87\x9f\xa0\ \x08\x07\x00\x00\x00\x00\xff\xff\x42\x2f\xc4\x21\x99\x20\xd8\x44\ \x4c\x49\x94\xeb\xc7\xaf\xbf\x8c\xb0\x8b\x08\x0e\xde\x78\xb7\xef\ \xda\x3b\x26\xe8\x45\x04\x4c\x0c\x0c\xff\x19\x58\xe4\x18\x44\xa7\ \x33\xfc\xff\x37\x72\x9b\xa4\x8c\xcc\x0c\xff\xfe\x32\x08\x75\x32\ \xb0\x19\x40\xb6\xa3\x42\xce\x17\xbe\xf8\xe8\xf3\xa6\x73\xaf\xf8\ \x39\x59\x21\x47\x44\xfc\xfe\xf3\x4f\x94\x97\x2d\xd6\x46\x0a\x92\ \x39\xd0\xcc\x00\x00\x00\x00\xff\xff\xc2\x58\x9e\xce\xc8\xf0\xff\ \xff\x7f\x4e\x36\xe6\x0c\x67\x99\x5f\xb0\x65\xa4\x90\xd1\xa1\x99\ \xfb\x9e\x7c\xff\xf5\x17\x76\x82\x0a\x33\x03\xc3\x1f\x06\xee\x48\ \x06\xa1\x72\x86\x7f\x7f\x18\x18\xd1\xae\x89\x1f\x01\x80\x91\x85\ \xe1\xef\x1f\x06\xbe\x38\x06\xfe\x22\xc8\x15\xc4\x90\xad\xbd\xff\ \xfe\xff\x9f\xba\xe7\x31\xbc\x9a\x85\x9c\x3f\x99\x68\x2f\x2d\xcc\ \xc3\xfa\xff\x3f\x7a\xf2\x67\x60\x60\x00\x00\x00\x00\xff\xff\xc2\ \xd2\x8c\x81\x8c\xc7\x39\x69\x09\x39\x68\x0a\x7d\x82\x5d\x44\xc0\ \xc1\xca\x74\xef\xd5\xb7\x39\x07\x9e\x22\x1d\x7d\xcc\xcc\xc0\xf0\ \x97\x41\xb0\x95\x81\xd3\x9c\xe1\xef\xef\x11\x56\x19\x30\x33\xfc\ \xfb\xc3\xc0\xa6\xcc\x20\x3c\x15\x7e\x24\x0a\xa4\xaf\xbb\xf2\xc4\ \xcb\xf3\x0f\x3e\x71\xb3\x33\x43\x86\x9a\xbf\xfe\xfc\x6b\x20\xcf\ \x17\x62\x2a\xf6\xef\xff\x7f\x46\x6c\x17\xd0\x03\x00\x00\x00\xff\ \xff\xc2\x7d\x8b\x12\x03\x43\x96\x8b\x2c\x37\x3b\x33\xfc\x0e\x07\ \x7e\x2e\x96\xa5\xc7\x9e\x1f\xbe\xf9\x1e\x76\x23\x0a\x64\xd0\x88\ \x89\x41\x6c\x35\x03\x9b\xca\x48\x6a\x95\x32\x31\xfc\xff\xcf\xc0\ \x2c\xc6\x20\xbe\x81\x81\x89\x87\x81\x81\x81\x81\x81\x11\x72\xd9\ \xed\x95\x27\x5f\xa6\xed\x7d\xcc\xcb\xc9\x02\xbd\x31\xe6\x3f\x03\ \x23\x03\x43\xae\x9b\x2c\x13\x6c\x40\x0d\x13\x00\x00\x00\x00\xff\ \xff\xc2\x1e\x64\x90\x83\x2c\xe5\x85\x39\xd2\x9d\x64\x3e\x7d\x83\ \x9e\xe5\xfd\x9f\x81\x81\x9d\x95\xa9\x6d\xd3\xfd\xe7\x1f\x7e\xc2\ \xae\x66\x62\x62\x60\xf8\xc7\xc0\x22\xcb\x20\xb1\x95\x81\x91\x6b\ \x64\xcc\x59\x32\x42\xfb\xbd\x12\xeb\x18\xd8\x74\x18\x18\xfe\x40\ \x26\x1d\x19\x19\x19\x3f\x7d\xff\xd3\xb8\xfe\xee\x7f\xd8\x35\xd6\ \x2c\xcc\x8c\xef\xbf\xfe\x8e\xb2\x92\xd4\x93\xe5\x85\xdd\xba\x83\ \x05\x00\x00\x00\x00\xff\xff\xc2\x19\x5e\x90\x64\x1e\x66\x26\x61\ \xaf\x29\x88\x7c\x23\xca\x87\x6f\xbf\x9b\xd6\xdf\xfb\xfd\xf7\x3f\ \x6c\x3f\x3d\x33\x03\xc3\x1f\x06\x56\x35\x06\xf1\xc5\x48\x4e\x1c\ \xae\x80\x91\x81\x81\x89\xe1\xdf\x5f\x06\xd1\x69\x0c\xec\xd6\x90\ \x2b\xbc\xfe\xc3\x5a\x3e\x1d\x5b\xee\x3f\x7c\xf3\x03\x7a\xaf\x29\ \x13\xe3\x97\x1f\x7f\xf5\xe4\x78\x52\xec\xa5\x91\x6e\x16\xc7\x02\ \x00\x00\x00\x00\xff\xff\xc2\x97\x60\x19\x19\x19\x19\x19\x19\x2a\ \x7c\x14\x05\xb9\x59\x7f\xc1\x6e\x44\xe1\xe5\x60\x39\x75\xff\x63\ \xcf\xb6\x07\x48\x95\x01\x0b\x03\xc3\x1f\x06\xae\x20\x06\xf1\x15\ \xb0\x61\xbb\x61\x99\x0f\xe0\xa1\x3f\x99\x81\x37\x13\x7a\x65\x2f\ \xec\xca\xaf\xd9\x07\x9e\xec\xbc\xf4\x16\x72\xc5\x33\xa4\x4b\xcb\ \xc2\xc4\x58\xed\xa7\xc4\xce\x4a\xe0\x8e\x6d\x00\x00\x00\x00\xff\ \xff\xc2\x17\x52\x90\xcb\xb0\xc4\xf8\xd8\x4a\xbd\x14\xbe\xff\x82\ \x1e\x3e\xf7\xe7\xdf\x7f\x21\x6e\xd6\x75\x67\x5e\xae\x39\xf5\x92\ \x99\x89\x11\xb6\xa7\x8c\x85\x81\xe1\x37\x03\x77\x18\x2c\x0e\x86\ \xdf\x70\x29\x13\x2c\xf4\xa7\x30\xf0\xe5\x30\x30\xfc\x81\x34\x3a\ \xfe\xfc\xfb\xcf\xc2\xc4\xb8\xef\xda\xbb\xb9\x07\x9f\x0a\x72\x43\ \xaf\x18\x67\x62\x62\xfc\xf8\xfd\x4f\x8e\xab\x9c\x8a\x38\x17\x9e\ \xc2\x07\x02\x00\x00\x00\x00\xff\xff\x22\x90\x54\x21\x05\x91\xb3\ \xb6\x50\x94\x95\xc4\xfb\x2f\xb0\x59\xcd\x7f\xff\xf9\x38\x58\x7a\ \xb7\x3f\x3c\x72\xeb\x03\x0b\xe2\x8a\x32\x56\x86\xff\xf0\x38\x60\ \x66\xf8\xff\x17\x76\xa1\xea\x30\x00\x4c\x0c\xff\xff\x41\xd3\x3e\ \x5f\x36\x72\xda\x67\x61\x62\xbc\xf2\xe4\x4b\xd3\xfa\xbb\x1c\xac\ \xcc\xff\xe1\xb7\x3d\x7e\xfb\xed\xa5\x27\x12\x66\x2e\x8e\x74\xdb\ \x23\x4e\x00\x00\x00\x00\xff\xff\x22\x5c\x56\x40\x5a\xa5\xd9\x2e\ \x72\xa6\x4a\x7c\xd0\x56\x29\x03\x03\x03\x23\x03\x3b\x2b\x53\xcd\ \x9a\xdb\x67\xee\x7f\x42\xe4\x03\x46\x56\x06\x86\x3f\x0c\xdc\x61\ \x0c\xd2\x07\x19\x58\x95\x18\xfe\xfe\x1d\x0e\xfd\x03\x46\x16\xe8\ \x18\xb0\xd4\x56\xe4\xb4\x0f\x09\xdc\xdb\x2f\xbe\x95\xae\xb8\xf5\ \xef\x3f\x03\x0b\x13\x23\xe4\x9a\x8b\xaf\xbf\xfe\xaa\x88\x71\x95\ \xf9\x28\x62\xed\x76\x61\x02\x00\x00\x00\x00\xff\xff\x22\x1c\x01\ \x90\xfd\x1c\xac\xcc\x8c\xf5\x81\xca\xc2\x3c\xac\x3f\x7e\x43\x96\ \x0f\x31\xb0\x30\x31\xfe\xfb\xc7\x50\xb9\xea\xf6\xcd\xe7\x5f\x91\ \xf2\x01\x0b\x03\xc3\x1f\x06\x76\x2b\x06\xc9\x7d\x0c\xec\x3a\x0c\ \x7f\x7f\x33\x30\x30\x0f\xe1\x6a\x19\xd2\xdb\x62\x91\x63\x90\xdc\ \xcd\xc0\xe9\x05\xbd\x38\x13\x16\xfa\xcf\x3e\xfc\x2c\x5d\x71\xeb\ \xd3\xb7\x3f\xec\xac\x4c\x7f\xff\xff\x67\x62\x64\xf8\xfd\xf7\x3f\ \x1b\x33\x53\x43\x90\x32\x2f\x07\x33\xe4\x14\x5c\x82\x00\x00\x00\ \x00\xff\xff\x22\xaa\xb6\x84\x5c\xbe\x24\x29\xc0\xde\x11\xa6\xc6\ \xcc\xc4\xf0\xe7\xdf\x3f\x66\x46\x86\xbf\xff\xff\xb3\xb1\x32\xfd\ \xf8\xfd\xaf\x60\xc9\xcd\x0b\x0f\x3f\x33\xa3\xc5\x01\x8b\x3c\x83\ \xd4\x51\x06\xfe\x14\x86\x7f\x7f\x87\x66\x95\xc0\xcc\xc0\xc0\xc4\ \xf0\xf7\x0f\x03\x4f\x30\x83\xf4\x29\x06\x36\x7d\xb4\x5a\xf7\xce\ \xcb\x6f\xb9\x8b\x6e\xbc\xfe\xf4\x8b\x8b\x9d\xf9\xcf\xbf\xff\x4c\ \x8c\x0c\xff\xfe\x33\xfc\xfc\xfd\xaf\x29\x58\x19\x72\xd1\x2f\x31\ \xc9\x9f\x81\x81\x01\x00\x00\x00\xff\xff\x22\xb6\xb9\x02\x19\x05\ \xd2\x95\xe5\xe9\x8e\x50\xfb\xf7\x8f\xe1\xef\x3f\x06\x66\x46\x86\ \xbf\xff\xfe\xb3\xb3\x32\x7d\xf9\xf9\xb7\x60\xe9\xcd\x13\x77\x3e\ \x42\xe2\xe0\x3f\x03\x03\x03\x03\x0b\x03\xc3\x3f\x06\x26\x3e\x06\ \x91\xd9\x0c\xa2\x53\x18\x18\xd8\x18\xfe\xfd\x1d\x3a\x59\x81\x11\ \x3a\xc8\xf3\xff\x1f\x83\x50\x03\x83\xf8\x1a\x06\x66\x71\xe8\x95\ \xbd\xb0\xd0\xbf\xf6\xec\x6b\xee\xa2\x1b\x2f\x3e\xfc\x84\x87\x3e\ \x03\x03\xc3\xb7\x9f\x7f\x1b\x83\x95\x6d\xd5\x05\x89\x29\xfa\xe1\ \x00\x00\x00\x00\xff\xff\x62\xc4\x73\xd3\x2a\x26\x80\x18\xbd\xe7\ \xea\xbb\xda\xb5\xb7\x39\x59\x99\x99\x18\x19\xfe\xfe\x67\x60\x66\ \x64\xfc\xf3\xef\xff\xdf\x7f\xff\x4b\xbd\x15\xfc\x0c\x45\x61\x97\ \x06\x31\x30\x30\xfc\x87\xae\x6e\xff\x79\x9a\xe1\x6d\x09\xc3\xf7\ \x43\x0c\x4c\x90\x22\xf5\xef\xe0\xdd\x70\xc3\xc8\xc2\xf0\xff\x0f\ \xc3\x3f\x06\x06\x0e\x63\x06\xa1\x0e\x06\x4e\x17\xc8\xf2\x42\x48\ \x6f\xeb\x3f\xc3\x7f\x26\x46\xc6\x43\x37\xde\x37\x6e\xb8\xfb\xfb\ \xcf\x7f\x76\x56\x26\x78\xe8\x7f\xfa\xfe\xa7\xcc\x5b\x31\xd4\x8c\ \xa8\x8a\x17\x19\x00\x00\x00\x00\xff\xff\x22\x2d\x02\x18\x60\x71\ \xb0\xfb\xca\xdb\xfa\x75\x77\xd9\x59\x99\x98\xa1\x71\xc0\xf0\xef\ \x3f\xc3\xd7\x9f\x7f\x63\xad\x25\xb3\x5c\xe4\x20\xed\x57\xc4\x75\ \xcf\x90\xf2\xe7\xd3\x74\x86\x77\x65\x0c\x7f\xbf\x30\x30\x31\xc0\ \x6e\x43\x1e\x54\x80\x99\x81\xe1\x2f\xc3\x3f\x06\x06\x26\x56\x06\ \xc1\x06\x06\x81\x0a\xc8\x2d\x18\xd0\x71\x1e\x58\x67\x6a\xd1\x91\ \x67\x33\xf7\x3d\x61\x65\x61\x64\x61\x82\xce\x3b\x32\x30\x30\x7c\ \xfe\xfe\xb7\xc4\x4b\x3e\xcc\x5c\x82\xd4\xd0\x67\x60\x60\x00\x00\ \x00\x00\xff\xff\x22\x39\x02\x18\x50\xe3\x80\x8d\x85\x89\x85\x89\ \x11\xe2\x14\x46\x46\xc6\x77\x5f\x7e\x3b\x68\x08\xd6\x04\x28\x09\ \x71\xb3\x22\xb9\x06\xb2\xfd\x80\x89\xe1\xf7\x2d\x86\x8f\x7d\x0c\ \x9f\x17\x30\xfc\xfb\xc9\xc0\xc4\x08\xbb\x7a\x6e\xc0\x73\x03\x33\ \x03\xc3\x7f\x86\x7f\xff\x18\x98\x18\x19\xb8\x23\x19\x04\x4a\x19\ \xd8\x0c\x18\xa0\x17\xf4\x42\x0f\x1e\x66\x66\x62\xfc\xfe\xeb\x6f\ \xe7\xd6\x07\x9b\xcf\xbd\x16\xe0\x86\x9e\x6b\x08\x29\xf7\xbf\xfc\ \x20\x3f\xf4\x19\x18\x18\x00\x00\x00\x00\xff\xff\x22\x27\x02\xe0\ \x6e\x3a\x7e\xfb\x43\xd5\xea\x3b\x7f\xfe\xfd\xe7\x60\x65\x82\xd4\ \xc0\x2c\xcc\x8c\x1f\xbf\xfd\x91\x11\xe2\xa8\xf2\x55\x34\x56\xe4\ \x83\x67\x5b\x88\x26\x68\x56\xf8\x75\x99\xe1\x5d\x15\xc3\xb7\x2d\ \x90\x73\xd5\x06\xae\x50\x62\x84\xa6\x71\xc8\x94\x12\xa7\x3d\x83\ \x50\x1b\x03\xbb\x15\xb2\x53\xff\xfd\x67\x60\x60\xf8\xcf\xc4\xc8\ \x78\xf3\xf9\xd7\x96\x8d\xf7\x6e\x3c\xff\x26\xc0\x05\x1d\x68\x63\ \x62\x62\xfc\xf3\xf7\xdf\xaf\x3f\xff\x6b\xfd\x95\x50\x2f\x78\x27\ \x0d\x00\x00\x00\x00\xff\xff\x22\x33\x02\x18\x60\x71\x70\xe6\xfe\ \xa7\xea\xd5\xb7\x3f\xff\xf8\xcb\xc3\xce\x0c\xe9\x0d\x40\x2e\x84\ \xfb\xff\xff\x7f\x9a\xa3\x4c\x9c\x8d\x14\x03\x03\xc3\xbf\x7f\xff\ \x19\xa1\xfb\x64\xff\x21\x5a\x44\x3f\x4f\x31\x7c\x9c\xc8\xf0\x75\ \x15\xc3\xbf\x3f\x0c\x8c\x0c\xb0\x5e\x1b\x1d\x32\x04\x23\x03\x03\ \x13\x03\x23\x03\xc3\x7f\x58\xd0\x73\xfb\x31\xf0\x17\x31\x70\xd8\ \x43\xbc\x05\x2d\xf1\x19\x18\xfe\xc1\xc2\x74\xc3\xd9\x57\x93\x76\ \x3d\xfa\xf1\xfb\x1f\xdc\x8f\x2c\x4c\x8c\x90\x4b\x60\xea\x03\x95\ \x9d\x10\x77\x2c\x93\x03\x00\x00\x00\x00\xff\xff\x22\x3f\x02\x18\ \x60\x71\x70\xf7\xd5\xb7\xfa\x75\x77\x6f\x3e\xff\x26\xc0\xc5\x02\ \xd9\x66\x03\xc9\x9b\x9f\x7f\xfc\x31\x55\xe4\xcf\x70\x96\xd1\x93\ \xe5\x85\x2b\x66\x60\x60\x40\x94\x48\x0c\x0c\x0c\xbf\xae\x32\x7c\ \x9e\xcf\xf0\x65\x31\xf4\x68\x2f\x68\xf5\xc0\x00\x2b\x01\xa8\x08\ \x98\x60\x6d\xb0\xbf\x50\x83\x99\xf9\x19\x78\x22\x18\x78\x53\x18\ \xd8\x4d\x60\x36\x42\x47\x73\x21\x23\xfb\x0c\x0c\x0c\xb7\x5f\x7e\ \x9b\xb9\xef\xc9\xa1\x9b\xef\xb9\xd9\x98\x99\x99\xa1\xcb\x49\x58\ \x98\x18\x3f\x7c\xff\x23\x23\xc8\x5e\x17\xa8\x6c\x20\xc7\x4b\x49\ \xe8\x33\x30\x30\x00\x00\x00\x00\xff\xff\xa2\x28\x02\x18\x60\xc1\ \xfa\xed\xd7\xdf\xae\x2d\x0f\xb6\x5c\x78\xcd\xc7\xc9\x02\xef\x10\ \x30\x33\x31\x7e\xf9\xf1\x97\x99\x89\xc1\xd7\x50\x34\xd5\x51\x46\ \x88\x9b\xf5\x3f\x03\xc3\xff\x7f\xf0\x3b\xcc\x90\x72\xc3\xdf\x37\ \x0c\xdf\xb7\x30\x7c\x59\xc6\xf0\xfd\x10\xc3\xbf\x9f\x0c\x0c\xb0\ \x41\x5f\x06\x16\xe8\x6a\x61\x68\x98\x91\xe4\x54\x46\x68\xa0\x43\ \x12\xfb\x7f\xd8\xc6\x67\x26\x16\x06\x76\x4b\x06\x9e\x08\x06\x2e\ \x7f\x06\x16\x69\x34\x97\x40\x56\x7e\x30\x31\x32\x7c\xfb\xf9\x77\ \xfe\xe1\x67\x6b\x4e\xbd\xfc\xfe\xeb\x2f\x2f\x27\xcb\xbf\xff\xff\ \x21\x3d\xdb\xff\x0c\xff\x3f\x7e\xfb\x63\xa7\x21\x58\xed\xa7\x24\ \xcc\xc3\x4a\x61\xe8\x33\x30\x30\x00\x00\x00\x00\xff\xff\xa2\x34\ \x02\x18\x90\x5a\x08\x6b\x4e\xbd\x9c\xb2\xe7\xd1\xaf\x3f\xff\x79\ \x38\x98\xa1\x97\x64\x31\x32\xfc\xff\xcf\xf0\xf1\xfb\x1f\x19\x21\ \x8e\x14\x7b\x69\x4f\x7d\x11\x4c\xdd\x28\xdd\xb4\xdf\x77\x19\x7e\ \x1c\x65\xf8\xb6\x99\xe1\xd7\x59\x86\x3f\xf7\x11\x79\x00\x1a\x1f\ \x4c\xd0\xd2\x03\x02\x90\x1d\x8e\x22\xf8\x8f\x81\xe1\x1f\x54\xf6\ \x3f\x4c\x96\x45\x86\x81\xdd\x90\x81\xcb\x87\x81\xc3\x96\x81\x55\ \x13\xa6\xfa\x2f\xd6\xb1\xdb\x43\x37\xdf\xcf\xdc\xf7\xe4\xce\xcb\ \x6f\x7c\x9c\x2c\x90\xdc\xcc\xc0\xc0\xc0\xc8\xc8\xf0\xed\xe7\xdf\ \xff\xff\x19\x92\xed\xa5\x93\xec\xa5\x91\x3d\x4e\x09\x00\x00\x00\ \x00\xff\xff\xa2\x42\x04\x30\x30\x30\xc0\x2b\xdb\x1b\xcf\xbf\xf6\ \x6c\x7d\x70\xee\xe1\x67\xc8\x95\x40\x10\xc0\xcc\xc4\xf8\xf3\xcf\ \xbf\x1f\xbf\xff\x1a\xc9\xf3\x85\x59\x48\xd8\xaa\x09\x08\x72\xa3\ \x8d\x11\xfd\x87\x9e\x4b\x01\x0f\x8b\xff\x3f\x18\x7e\xdf\x64\xf8\ \x79\x9a\xe1\xc7\x31\x86\xdf\x37\x18\xfe\xdc\x65\xf8\xfb\x1a\x91\ \x8a\x09\x02\x26\x06\x06\x26\x61\x06\x56\x25\x06\x56\x75\x06\x76\ \x0b\x06\x76\x0b\x06\x56\x0d\x06\x26\xf8\xe1\x55\xff\x61\xd5\x2c\ \x4a\xf0\x7d\xf9\xf1\xf7\xf8\x9d\x0f\x2b\x4f\xbe\x38\x71\xe7\x23\ \x0b\x33\x23\x27\x2b\xf3\x5f\x98\x8d\x90\x33\x3e\xd5\x25\xb9\x4a\ \x3c\x15\x20\x8d\x0b\x06\x2a\x6d\xdb\x05\x00\x00\x00\xff\xff\xa2\ \x4e\x04\x40\x00\x24\x3f\xfe\xfe\xfb\x7f\xc1\xa1\xa7\x8f\xdf\xfd\ \x80\x1f\x8a\xc0\xf0\x1f\x3a\xb5\xf0\xf5\xe7\xdf\x7f\xff\xff\xab\ \x4b\x70\x7b\x1b\x88\x8a\xf1\xb3\x31\xfc\xc7\xf4\xc3\x3f\x58\x4c\ \xa0\x0e\x5d\xfc\xfb\xc4\xf0\xf7\x19\xc3\x9f\x67\x0c\x7f\x9f\x31\ \xfc\x79\xc8\xf0\xf7\x0d\xc3\xff\xef\x0c\xff\xde\x23\x14\x30\xf1\ \x31\x30\xf2\x30\x30\x0b\x32\xb0\xc8\x33\x30\x4b\x31\x30\x4b\x32\ \xb0\x48\xc3\x0e\xda\x41\x38\x10\x56\xca\xa3\x24\x79\x88\xff\x3f\ \x7c\xfd\xbd\xed\xe2\x9b\xcb\x4f\xbe\x30\xfc\x67\xe0\xe1\x60\x86\ \x94\x96\xd0\x81\x30\x06\xc6\x3f\xff\xfe\x0b\xf3\xb0\x26\xd9\x49\ \xf3\x70\x30\x53\x5e\xec\x20\x03\x00\x00\x00\x00\xff\xff\xa2\x66\ \x04\x30\x40\x6f\x85\x26\xac\xec\x3f\x96\xa0\x47\x57\xc2\xc0\xf0\ \x1f\xba\xdf\x93\xfc\x31\x8c\xff\x0c\x0c\xff\x60\x1b\x1a\x18\xf1\ \x1b\x42\x84\x93\x18\x18\xa8\x54\xec\x20\x03\x00\x00\x00\x00\xff\ \xff\xa2\x72\x04\x30\x40\x3c\xfd\x0f\x9f\x99\x4c\x8c\x8c\xa4\x7b\ \xe1\x3f\x02\xc1\xcd\x46\x31\xe5\x3f\xa2\xb8\x87\x86\x35\x81\x10\ \xc7\x6e\x07\xc6\xa1\x7a\x0c\x30\x53\xff\x93\xe9\x72\x02\x00\x00\ \x00\x00\xff\xff\x62\xfc\x37\x7a\x35\xe1\x80\x02\x00\x00\x00\x00\ \xff\xff\x62\x61\x1c\x1a\x23\x94\xc3\x16\x00\x00\x00\x00\xff\xff\ \x62\x79\xff\xf3\xd3\x40\xbb\x61\x44\x03\x00\x00\x00\x00\xff\xff\ \x62\x14\x5c\xe0\x38\xd0\x6e\x18\xd1\x00\x00\x00\x00\xff\xff\x62\ \x79\xff\xfd\xdd\x40\xbb\x61\x44\x03\x00\x00\x00\x00\xff\xff\x62\ \x61\x64\x1a\xfa\xf3\xe6\x43\x19\x00\x00\x00\x00\xff\xff\x62\x61\ \x1a\xdd\xea\x35\xa0\x00\x00\x00\x00\xff\xff\x62\xf9\xfb\xf3\xe3\ \x40\xbb\x61\x44\x03\x00\x00\x00\x00\xff\xff\x62\x5c\x79\x77\xf7\ \x40\xbb\x61\x44\x03\x00\x00\x00\x00\xff\xff\xa2\x7e\x4f\x78\x14\ \x90\x04\x00\x00\x00\x00\xff\xff\x62\xf9\x33\x7a\x04\xd0\x80\x02\ \x00\x00\x00\x00\xff\xff\x62\x61\xfc\x3f\x5a\x09\x0f\x24\x00\x00\ \x00\x00\xff\xff\x1a\x2d\x82\x06\x18\x00\x00\x00\x00\xff\xff\x62\ \x39\x70\xfd\x3d\x61\x55\xa3\x80\x66\x00\x00\x00\x00\xff\xff\x62\ \x34\xab\x3f\x31\xd0\x6e\x18\xd1\x00\x00\x00\x00\xff\xff\x62\xe1\ \xe3\x1c\x51\xbb\x1b\x07\x1d\x00\x00\x00\x00\xff\xff\x82\xed\xe7\ \x1b\x05\x03\x04\x00\x00\x00\x00\xff\xff\x1a\x6d\x02\x0d\x30\x00\ \x00\x00\x00\xff\xff\x1a\x8d\x80\x01\x06\x00\x00\x00\x00\xff\xff\ \x03\x00\x1f\xbf\x8a\x32\x7b\x4a\xae\xcd\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ " qt_resource_name = "\ \x00\x0c\ \x0f\x5b\x57\xdc\ \x00\x65\ \x00\x78\x00\x61\x00\x6d\x00\x70\x00\x6c\x00\x65\x00\x73\x00\x2e\x00\x78\x00\x6d\x00\x6c\ \x00\x09\ \x04\x66\x8a\xbc\ \x00\x64\ \x00\x65\x00\x6d\x00\x6f\x00\x73\x00\x2e\x00\x78\x00\x6d\x00\x6c\ \x00\x06\ \x07\x03\x7d\xc3\ \x00\x69\ \x00\x6d\x00\x61\x00\x67\x00\x65\x00\x73\ \x00\x0c\ \x0a\xf0\xbf\x27\ \x00\x71\ \x00\x74\x00\x34\x00\x2d\x00\x6c\x00\x6f\x00\x67\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x05\x52\xff\x27\ \x00\x72\ \x00\x62\x00\x2d\x00\x6c\x00\x6f\x00\x67\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ " qt_resource_struct = "\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x01\ \x00\x00\x00\x1e\x00\x00\x00\x00\x00\x01\x00\x00\x1e\x59\ \x00\x00\x00\x36\x00\x02\x00\x00\x00\x02\x00\x00\x00\x04\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x00\x66\x00\x00\x00\x00\x00\x01\x00\x00\x4b\xc5\ \x00\x00\x00\x48\x00\x00\x00\x00\x00\x01\x00\x00\x21\xad\ " def qInitResources(): QtCore.qRegisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) def qCleanupResources(): QtCore.qUnregisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) qInitResources()
/* Copyright 2021-Present Couchbase, Inc. Use of this software is governed by the Business Source License included in the file licenses/BSL-Couchbase.txt. As of the Change Date specified in that file, in accordance with the Business Source License, use of this software will be governed by the Apache License, Version 2.0, included in the file licenses/APL2.txt. */ var searchData= [ ['network_20listener_3a_20rest_20api_20and_20sync_20server',['Network Listener: REST API and Sync Server',['../group___listener.html',1,'']]] ];
<reponame>Bagnis-Gabriele/smistatore_rifiuti<gh_stars>1-10 import tensorflow.keras from PIL import Image, ImageOps import numpy as np import cv2 as cv import pyttsx3 # Disable scientific notation for clarity np.set_printoptions(suppress=True) # Load the model model = tensorflow.keras.models.load_model('keras_model.h5') # Create the array of the right shape to feed into the keras model # The 'length' or number of images you can put into the array is # determined by the first position in the shape tuple, in this case 1. data = np.ndarray(shape=(1, 224, 224, 3), dtype=np.float32) # Replace this with the path to your image #image = Image.open('test_photo.jpg') def SpeechText(text): engine = pyttsx3.init() engine.say(text) engine.runAndWait() capture = cv.VideoCapture(0) soglia = 0.9 materiale = "niente" pre_materiale = "niente" while True: #resize the image to a 224x224 with the same strategy as in TM2: #resizing the image to be at least 224x224 and then cropping from the center isTrue,image = capture.read() im_pil = Image.fromarray(image) size = (224, 224) image = ImageOps.fit(im_pil, size, Image.ANTIALIAS) #turn the image into a numpy array image_array = np.asarray(image) # display the resized image cv.imshow('Video',np.asarray(im_pil)) # Normalize the image normalized_image_array = (image_array.astype(np.float32) / 127.0) - 1 # Load the image into the array data[0] = normalized_image_array # run the inference prediction = model.predict(data) if prediction[0,3] >soglia: materiale="plastica" elif prediction[0,1] >soglia: materiale = "ferro" elif prediction[0,4] >soglia: materiale = "bio" elif prediction[0,2] >soglia: materiale = "vetro" elif prediction[0,0] >soglia: materiale = "carta" if materiale != pre_materiale: print(materiale) SpeechText(materiale) pre_materiale = materiale if cv.waitKey(27) & 0xFF==ord('d'): break capture.release() cv.destroyAllWindows()
#!/bin/bash start=`date +%s` # handle optional download dir if [ -z "$1" ] then # navigate to ~/data echo "navigating to ~/data/ ..." ##mkdir -p ~/data cd ~/data/ ##mkdir -p ./coco cd ./coco ##mkdir -p ./images ##mkdir -p ./annotations else # check if specified dir is valid if [ ! -d $1 ]; then echo $1 " is not a valid directory" exit 0 fi echo "navigating to " $1 " ..." cd $1 fi if [ ! -d images ] then mkdir -p ./images fi # Download the image data. cd ./images ##echo "Downloading MSCOCO train images ..." ##curl -LO http://images.cocodataset.org/zips/train2014.zip ##echo "Downloading MSCOCO val images ..." ##curl -LO http://images.cocodataset.org/zips/val2014.zip cd ../ ##if [ ! -d annotations ] ##then ##mkdir -p ./annotations ##fi # Download the annotation data. cd ./annotations echo "Downloading MSCOCO train/val annotations ..." ##curl -LO http://images.cocodataset.org/annotations/annotations_trainval2014.zip echo "Finished downloading. Now extracting ..." # Unzip data ##echo "Extracting train images ..." ##unzip ../images/train2014.zip -d ../images ##echo "Extracting val images ..." ##unzip ../images/val2014.zip -d ../images echo "Extracting annotations ..." ##unzip ./annotations_trainval2014.zip echo "Removing zip files ..." ##rm ../images/train2014.zip ##rm ../images/val2014.zip ##rm ./annotations_trainval2014.zip echo "Creating trainval35k dataset..." # Download annotations json echo "Downloading trainval35k annotations from S3" curl -LO https://s3.amazonaws.com/amdegroot-datasets/instances_trainval35k.json.zip # combine train and val ##echo "Combining train and val images" ##mkdir ../images/trainval35k cd ../images/train2014 ##find -maxdepth 1 -name '*.jpg' -exec cp -t ../trainval35k {} + # dir too large for cp cd ../val2014 ##find -maxdepth 1 -name '*.jpg' -exec cp -t ../trainval35k {} + end=`date +%s` runtime=$((end-start)) echo "Completed in " $runtime " seconds"
abstract class Hewan9 { name: string; constructor(name: string) { this.name = name; } eat(): void { console.log("Makan"); } abstract move(): void; } class Mamalia extends Hewan9 { constructor(name: string) { super(name); } move(): void { console.log(`${this.name} Walk`); } } class Unggas extends Hewan9 { constructor(name: string) { super(name); } move(): void { console.log(`${this.name} Fly`); } } const sapi = new Mamalia("Sapi"); sapi.eat(); sapi.move(); const elang = new Unggas("Elang"); elang.eat(); elang.move();
#!/bin/sh - #=============================================================================== # # FILE: runcommand-onstart.sh # # USAGE: ./runcommand-onstart.sh system emulator full_path_to_rom full_launch_cmd # # DESCRIPTION: runcommand script to swap HDMI timing per system # # OPTIONS: --- # REQUIREMENTS: --- # BUGS: --- # NOTES: --- # AUTHOR: Oliver Tautz # ORGANIZATION: # CREATED: 20/06/21 14:14:43 # REVISION: --- #=============================================================================== set -o nounset # Treat unset variables as an error system=$1 emulator=$2 case $system in atarijaguar) ;; nes) ;; zxspectrum) ;; atari7800) ;; fds) ;; n64) ;; Mupen64plus) ;; atari800) ;; pcengine) ;; atarilynx) ;; atari2600) ;; megadrive) ;; ngpc) ;; neogeo) ;; mastersystem) ;; gbc) ;; ngp) ;; atari5200) ;; snes) # vcgencmd hdmi_timings 320 1 15 29 40 224 1 10 14 16 0 0 0 60 0 6400000 1 # why is this working?! ;; arcade) ;; mame2003) ;; fba) ;; mame-libretro) ;; mame2003) ;; sg-1000) ;; sega32x) ;; gb) ;; segacd) ;; psp) ;; gba) ;; psx) ;; ports) ;; vectrex) ;; amstradcpc) ;; gamegear) ;; *) ;; esac echo "testmessage\n" > &2
func factorial(_ number: Int) -> Int { if number == 0 { return 1 } var result = 1 for i in 1...number { result *= i } return result } let num = 5 let factorialResult = factorial(num) print("The factorial of \(num) is \(factorialResult)") // Output: The factorial of 5 is 120
<reponame>gulayciragiloglu79/goLang<filename>load.js //k6 run -d 10s --vus 100 single-request.js import http from 'k6/http'; import { sleep, check } from 'k6'; import { Counter } from 'k6/metrics'; export default function () { const res = http.get(`http://1172.16.31.10:5000/api/v1/${__ENV.ID}`); const checkRes = check(res, { 'status is 200': (r) => r.status === 200, }); }