Files
red-valley/cache/files/pma-voice/resource.rpf

1568 lines
204 KiB
Plaintext
Raw Normal View History

2026-03-29 21:41:17 +03:00
RPF2<00><00>z<00>
<00><00>
<00><00><00><00><00><00> <00>
<00>
= =!
<00>Q<00>l<00>&<(</<00>)0<00>)8<00>`<00>F<00><00><00>Xx<00>xb<00>(<00><00>(r<00><00><00><00><00><00><00><00><00><00><00><00><00><><00><00><><00><00>p<00><00>p<00>"<00>"<00><00><00><00><00><00><><00><>/clientcommands.luaevents.luainitinit.luamain.luaproximity.luasubmix.luamodulephone.luaradio.luautilsNui.luafxmanifest.luashared.luauicssapp.cssindex.htmljsapp.jschunk-vendors.jsmic_click_off.oggmic_click_on.ogglocal wasProximityDisabledFromOverride = false
disableProximityCycle = false
RegisterCommand('setvoiceintent', function(source, args)
if GetConvarInt('voice_allowSetIntent', 1) == 1 then
local intent = args[1]
if intent == 'speech' then
MumbleSetAudioInputIntent(`speech`)
elseif intent == 'music' then
MumbleSetAudioInputIntent(`music`)
end
LocalPlayer.state:set('voiceIntent', intent, true)
end
end)
TriggerEvent('chat:addSuggestion', '/setvoiceintent', 'Sets the players voice intent', {
{
name = "intent",
help = "speech is default and enables noise suppression & high pass filter, music disables both of these."
},
})
-- TODO: Better implementation of this?
RegisterCommand('vol', function(_, args)
if not args[1] then return end
setVolume(tonumber(args[1]))
end)
TriggerEvent('chat:addSuggestion', '/vol', 'Sets the radio/phone volume', {
{ name = "volume", help = "A range between 1-100 on how loud you want them to be" },
})
exports('setAllowProximityCycleState', function(state)
type_check({ state, "boolean" })
disableProximityCycle = state
end)
function setProximityState(proximityRange, isCustom)
local voiceModeData = Cfg.voiceModes[mode]
MumbleSetTalkerProximity(proximityRange + 0.0)
LocalPlayer.state:set('proximity', {
index = mode,
distance = proximityRange,
mode = isCustom and "Custom" or voiceModeData[2],
}, true)
sendUIMessage({
-- JS expects this value to be - 1, "custom" voice is on the last index
voiceMode = isCustom and #Cfg.voiceModes or mode - 1
})
end
exports("overrideProximityRange", function(range, disableCycle)
type_check({ range, "number" })
setProximityState(range, true)
if disableCycle then
disableProximityCycle = true
wasProximityDisabledFromOverride = true
end
end)
exports("clearProximityOverride", function()
local voiceModeData = Cfg.voiceModes[mode]
setProximityState(voiceModeData[1], false)
if wasProximityDisabledFromOverride then
disableProximityCycle = false
end
end)
RegisterCommand('cycleproximity', function()
-- Proximity is either disabled, or manually overwritten.
if GetConvarInt('voice_enableProximityCycle', 1) ~= 1 or disableProximityCycle then return end
local newMode = mode + 1
-- If we're within the range of our voice modes, allow the increase, otherwise reset to the first state
if newMode <= #Cfg.voiceModes then
mode = newMode
else
mode = 1
end
setProximityState(Cfg.voiceModes[mode][1], false)
TriggerEvent('pma-voice:setTalkingMode', mode)
end, false)
if gameVersion == 'fivem' then
RegisterKeyMapping('cycleproximity', 'Cycle Proximity', 'keyboard', GetConvar('voice_defaultCycle', 'F11'))
end
isInitialized = false
function handleInitialState()
local voiceModeData = Cfg.voiceModes[mode]
MumbleSetTalkerProximity(voiceModeData[1] + 0.0)
MumbleClearVoiceTarget(voiceTarget)
MumbleSetVoiceTarget(voiceTarget)
MumbleSetVoiceChannel(LocalPlayer.state.assignedChannel)
while MumbleGetVoiceChannelFromServerId(playerServerId) ~= LocalPlayer.state.assignedChannel do
Wait(100)
MumbleSetVoiceChannel(LocalPlayer.state.assignedChannel)
end
isInitialized = true
MumbleAddVoiceTargetChannel(voiceTarget, LocalPlayer.state.assignedChannel)
addNearbyPlayers()
end
AddEventHandler('mumbleConnected', function(address, isReconnecting)
logger.info('Connected to mumble server with address of %s, is this a reconnect %s',
GetConvarInt('voice_hideEndpoints', 1) == 1 and 'HIDDEN' or address, isReconnecting)
logger.log('Connecting to mumble, setting targets.')
-- don't try to set channel instantly, we're still getting data.
local voiceModeData = Cfg.voiceModes[mode]
LocalPlayer.state:set('proximity', {
index = mode,
distance = voiceModeData[1],
mode = voiceModeData[2],
}, true)
handleInitialState()
logger.log('Finished connection logic')
end)
AddEventHandler('mumbleDisconnected', function(address)
isInitialized = false
logger.info('Disconnected from mumble server with address of %s',
GetConvarInt('voice_hideEndpoints', 1) == 1 and 'HIDDEN' or address)
end)
-- TODO: Convert the last Cfg to a Convar, while still keeping it simple.
AddEventHandler('pma-voice:settingsCallback', function(cb)
cb(Cfg)
end)
AddEventHandler('onClientResourceStart', function(resource)
if resource ~= GetCurrentResourceName() then
return
end
-- print('Starting script initialization')
-- Some people modify pma-voice and mess up the resource Kvp, which means that if someone
-- joins another server that has pma-voice, it will error out, this will catch and fix the kvp.
local success = pcall(function()
local micClicksKvp = GetResourceKvpString('pma-voice_enableMicClicks')
if not micClicksKvp then
SetResourceKvp('pma-voice_enableMicClicks', "true")
micClicks = true
else
if micClicksKvp ~= 'true' and micClicksKvp ~= 'false' then
error('Invalid Kvp, throwing error for automatic fix')
end
micClicks = micClicksKvp == "true"
end
end)
if not success then
logger.warn(
'Failed to load resource Kvp, likely was inappropriately modified by another server, resetting the Kvp.')
SetResourceKvp('pma-voice_enableMicClicks', "true")
micClicks = true
end
sendUIMessage({
uiEnabled = GetConvarInt("voice_enableUi", 1) == 1,
voiceModes = json.encode(Cfg.voiceModes),
voiceMode = mode - 1
})
local radioChannel = LocalPlayer.state.radioChannel or 0
local callChannel = LocalPlayer.state.callChannel or 0
-- Reinitialize channels if they're set.
if radioChannel ~= 0 then
setRadioChannel(radioChannel)
end
if callChannel ~= 0 then
setCallChannel(callChannel)
end
if not LocalPlayer.state.disableRadio then
LocalPlayer.state:set("disableRadio", 0, true)
end
-- print('Script initialization finished.')
end)
local mutedPlayers = {}
-- we can't use GetConvarInt because its not a integer, and theres no way to get a float... so use a hacky way it is!
local volumes = {
-- people are setting this to 1 instead of 1.0 and expecting it to work.
['radio'] = GetConvarInt('voice_defaultRadioVolume', 60) / 100,
['call'] = GetConvarInt('voice_defaultCallVolume', 60) / 100,
['click_on'] = GetConvarInt('voice_onClickVolume', 10) / 100,
['click_off'] = GetConvarInt('voice_offClickVolume', 3) / 100,
}
radioEnabled, radioPressed, mode = true, false, GetConvarInt('voice_defaultVoiceMode', 2)
radioData = {}
callData = {}
submixIndicies = {}
--- function setVolume
--- Toggles the players volume
---@param volume number between 0 and 100
---@param volumeType string the volume type (currently radio & call) to set the volume of (opt)
function setVolume(volume, volumeType)
type_check({ volume, "number" })
local volumeFraction = volume / 100
if volumeType then
local volumeTbl = volumes[volumeType]
if volumeTbl then
LocalPlayer.state:set(volumeType, volume, true)
volumes[volumeType] = volumeFraction
resyncVolume(volumeType, volumeFraction)
else
error(('setVolume got a invalid volume type %s'):format(volumeType))
end
else
for volumeType, _ in pairs(volumes) do
volumes[volumeType] = volumeFraction
LocalPlayer.state:set(volumeType, volume, true)
end
resyncVolume("all", volumeFraction)
end
end
exports('setRadioVolume', function(vol)
setVolume(vol, 'radio')
end)
exports('getRadioVolume', function()
return volumes['radio'] * 100
end)
exports("setCallVolume", function(vol)
setVolume(vol, 'call')
end)
exports('getCallVolume', function()
return volumes['call'] * 100
end)
-- default submix incase people want to fiddle with it.
-- freq_low = 389.0
-- freq_hi = 3248.0
-- fudge = 0.0
-- rm_mod_freq = 0.0
-- rm_mix = 0.16
-- o_freq_lo = 348.0
-- o_freq_hi = 4900.0
local radioEffectId = CreateAudioSubmix('Radio')
SetAudioSubmixEffectRadioFx(radioEffectId, 0)
-- This is a GetHashKey on purpose, backticks break treesitter in nvim :|
SetAudioSubmixEffectParamInt(radioEffectId, 0, GetHashKey('default'), 1)
SetAudioSubmixOutputVolumes(
radioEffectId,
0,
1.0 --[[ frontLeftVolume ]],
0.25 --[[ frontRightVolume ]],
0.0 --[[ rearLeftVolume ]],
0.0 --[[ rearRightVolume ]],
1.0 --[[ channel5Volume ]],
1.0 --[[ channel6Volume ]]
)
AddAudioSubmixOutput(radioEffectId, 0)
submixIndicies['radio'] = radioEffectId
local callEffectId = CreateAudioSubmix('Call')
SetAudioSubmixOutputVolumes(
callEffectId,
1,
0.10 --[[ frontLeftVolume ]],
0.50 --[[ frontRightVolume ]],
0.0 --[[ rearLeftVolume ]],
0.0 --[[ rearRightVolume ]],
1.0 --[[ channel5Volume ]],
1.0 --[[ channel6Volume ]]
)
AddAudioSubmixOutput(callEffectId, 1)
submixIndicies['call'] = callEffectId
-- Callback is expected to return data in an array, this is for compatibility sake with js, index 0 should be the name and index 1 should be the submixId
-- the callback is sent the effectSlot it can register to, not sure if this is needed, but its here for safety
exports("registerCustomSubmix", function(callback)
local submixTable = callback()
type_check({ submixTable, "table" })
local submixName, submixId = submixTable[1], submixTable[2]
type_check({ submixName, "string" }, { submixId, "number" })
logger.info("Creating submix %s with submixId %s", submixName, submixId)
submixIndicies[submixName] = submixId
end)
TriggerEvent("pma-voice:registerCustomSubmixes")
--- export setEffectSubmix
--- Sets a user defined audio submix for radio and phonecall effects
---@param type string either "call" or "radio"
---@param effectId number submix id returned from CREATE_AUDIO_SUBMIX
exports("setEffectSubmix", function(type, effectId)
type_check({ type, "string" }, { effectId, "number" })
if submixIndicies[type] then
submixIndicies[type] = effectId
end
end)
function restoreDefaultSubmix(plyServerId)
local submix = Player(plyServerId).state.submix
local submixEffect = submixIndicies[submix]
if not submix or not submixEffect then
MumbleSetSubmixForServerId(plyServerId, -1)
return
end
MumbleSetSubmixForServerId(plyServerId, submixEffect)
end
-- used to prevent a race condition if they talk again afterwards, which would lead to their voice going to default.
local disableSubmixReset = {}
--- function toggleVoice
--- Toggles the players voice
---@param plySource number the players server id to override the volume for
---@param enabled boolean if the players voice is getting activated or deactivated
---@param moduleType string the volume & submix to use for the voice.
function toggleVoice(plySource, enabled, moduleType)
if mutedPlayers[plySource] then return end
logger.verbose('[main] Updating %s to talking: %s with submix %s', plySource, enabled, moduleType)
local distance = currentTargets[plySource]
if enabled and (not distance or distance > 4.0) then
print(volumes[moduleType])
MumbleSetVolumeOverrideByServerId(plySource, enabled and volumes[moduleType])
if GetConvarInt('voice_enableSubmix', 1) == 1 then
if moduleType then
disableSubmixReset[plySource] = true
if submixIndicies[moduleType] then
MumbleSetSubmixForServerId(plySource, submixIndicies[moduleType])
end
else
restoreDefaultSubmix(plySource)
end
end
elseif not enabled then
if GetConvarInt('voice_enableSubmix', 1) == 1 then
-- garbage collect it
disableSubmixReset[plySource] = nil
SetTimeout(250, function()
if not disableSubmixReset[plySource] then
restoreDefaultSubmix(plySource)
end
end)
end
MumbleSetVolumeOverrideByServerId(plySource, -1.0)
end
end
local function updateVolumes(voiceTable, override)
for serverId, talking in pairs(voiceTable) do
if serverId == playerServerId then goto skip_iter end
MumbleSetVolumeOverrideByServerId(serverId, talking and override or -1.0)
::skip_iter::
end
end
--- resyncs the call/radio/etc volume to the new volume
---@param volumeType any
function resyncVolume(volumeType, newVolume)
if volumeType == "all" then
resyncVolume("radio", newVolume)
resyncVolume("call", newVolume)
elseif volumeType == "radio" then
updateVolumes(radioData, newVolume)
elseif volumeType == "call" then
updateVolumes(callData, newVolume)
end
end
---Adds players voices to the local players listen channels allowing them to
---communicate at long range, ignoring proximity range.
---
---@diagnostic disable-next-line: undefined-doc-param
---@param targets table expects multiple tables to be sent over
function addVoiceTargets(...)
local targets = { ... }
local addedPlayers = {
[playerServerId] = true
}
for i = 1, #targets do
for id, _ in pairs(targets[i]) do
-- we don't want to log ourself, or listen to ourself
if addedPlayers[id] and id ~= playerServerId then
logger.verbose('[main] %s is already target don\'t re-add', id)
goto skip_loop
end
if not addedPlayers[id] then
logger.verbose('[main] Adding %s as a voice target', id)
addedPlayers[id] = true
MumbleAddVoiceTargetPlayerByServerId(voiceTarget, id)
end
::skip_loop::
end
end
end
--- function playMicClicks
---plays the mic click if the player has them enabled.
---@param clickType boolean whether to play the 'on' or 'off' click.
function playMicClicks(clickType)
if micClicks ~= true then return logger.verbose("Not playing mic clicks because client has them disabled") end
-- TODO: Add customizable radio click volumes
sendUIMessage({
sound = (clickType and "audio_on" or "audio_off"),
volume = (clickType and volumes['click_on'] or volumes['click_off'])
})
end
--- check if player is muted
exports('isPlayerMuted', function(source)
return mutedPlayers[source]
end)
--- getter for mutedPlayers
exports('getMutedPlayers', function()
return mutedPlayers
end)
--- toggles the targeted player muted
---@param source number the player to mute
function toggleMutePlayer(source)
if mutedPlayers[source] then
mutedPlayers[source] = nil
MumbleSetVolumeOverrideByServerId(source, -1.0)
else
mutedPlayers[source] = true
MumbleSetVolumeOverrideByServerId(source, 0.0)
end
end
exports('toggleMutePlayer', toggleMutePlayer)
--- function setVoiceProperty
--- sets the specified voice property
---@param type string what voice property you want to change (only takes 'radioEnabled' and 'micClicks')
---@param value any the value to set the type to.
function setVoiceProperty(type, value)
if type == "radioEnabled" then
radioEnabled = value
handleRadioEnabledChanged(value)
sendUIMessage({
radioEnabled = value
})
elseif type == "micClicks" then
micClicks = value == true or value == "true"
SetResourceKvp('pma-voice_enableMicClicks', tostring(micClicks))
end
end
exports('setVoiceProperty', setVoiceProperty)
-- compatibility
exports('SetMumbleProperty', setVoiceProperty)
exports('SetTokoProperty', setVoiceProperty)
-- cache their external servers so if it changes in runtime we can reconnect the client.
local externalAddress = ''
local externalPort = 0
CreateThread(function()
while true do
Wait(500)
-- only change if what we have doesn't match the cache
if GetConvar('voice_externalAddress', '') ~= externalAddress or GetConvarInt('voice_externalPort', 0) ~= externalPort then
externalAddress = GetConvar('voice_externalAddress', '')
externalPort = GetConvarInt('voice_externalPort', 0)
MumbleSetServerAddress(GetConvar('voice_externalAddress', ''), GetConvarInt('voice_externalPort', 0))
end
end
end)
if gameVersion == 'redm' then
function on_key_up() end
local KEY_F11 = 0x7A
RegisterRawKeymap("pma-voice_proximityCycle", on_key_up, function()
ExecuteCommand('cycleproximity')
end, KEY_F11, true)
local KEY_LEFT_ALT = 0xA4
RegisterRawKeymap("pma-voice_radioTalk", function()
ExecuteCommand('+radiotalk')
end, function()
ExecuteCommand('-radiotalk')
end, KEY_LEFT_ALT, true)
end
--- handles initializiation for whenever radio or call data changes
--- calls should always be last because they're assumed to always be enabled so
--- theres no delay in talking.
function handleRadioAndCallInit()
for tgt, enabled in pairs(radioData) do
if tgt ~= playerServerId then
toggleVoice(tgt, enabled, 'radio')
end
end
for tgt, enabled in pairs(callData) do
if tgt ~= playerServerId then
toggleVoice(tgt, true, 'call')
end
end
end
-- used when muted
local disableUpdates = false
local isListenerEnabled = false
local plyCoords = GetEntityCoords(PlayerPedId())
proximity = MumbleGetTalkerProximity()
currentTargets = {}
-- a list of all the players the current client us listening to
-- the value will be set to false if we didn't actually start listening to them (in situations where their channel didn't exist)
-- TODO: PR a native to let us get if we're listening to a certain channel.
local listeners = {}
function orig_addProximityCheck(ply)
local tgtPed = GetPlayerPed(ply)
local voiceRange = GetConvar('voice_useNativeAudio', 'false') == 'true' and proximity * 3 or proximity
local distance = #(plyCoords - GetEntityCoords(tgtPed))
return distance < voiceRange, distance
end
local addProximityCheck = orig_addProximityCheck
exports("overrideProximityCheck", function(fn)
addProximityCheck = fn
end)
exports("resetProximityCheck", function()
addProximityCheck = orig_addProximityCheck
end)
function addNearbyPlayers()
if disableUpdates then return end
-- update here so we don't have to update every call of addProximityCheck
plyCoords = GetEntityCoords(PlayerPedId())
proximity = MumbleGetTalkerProximity()
currentTargets = {}
MumbleClearVoiceTargetChannels(voiceTarget)
if LocalPlayer.state.disableProximity then return end
MumbleAddVoiceChannelListen(LocalPlayer.state.assignedChannel)
MumbleAddVoiceTargetChannel(voiceTarget, LocalPlayer.state.assignedChannel)
for source, _ in pairs(callData) do
if source ~= playerServerId then
local channel = MumbleGetVoiceChannelFromServerId(source)
if channel ~= -1 then
MumbleAddVoiceTargetChannel(voiceTarget, channel)
end
end
end
local players = GetActivePlayers()
for i = 1, #players do
local ply = players[i]
local serverId = GetPlayerServerId(ply)
local shouldAdd, distance = addProximityCheck(ply)
if shouldAdd then
-- if distance then
-- currentTargets[serverId] = distance
-- else
-- -- backwards compat, maybe remove in v7
-- currentTargets[serverId] = 15.0
-- end
-- logger.verbose('Added %s as a voice target', serverId)
local channel = MumbleGetVoiceChannelFromServerId(serverId)
if channel ~= -1 then
MumbleAddVoiceTargetChannel(voiceTarget, channel)
end
end
end
end
function addChannelListener(serverId)
-- not in the documentation, but this will return -1 whenever the client isn't in a channel
local channel = MumbleGetVoiceChannelFromServerId(serverId)
if channel ~= -1 then
MumbleAddVoiceChannelListen(channel)
logger.verbose("Adding %s to listen table", serverId)
end
listeners[serverId] = channel ~= -1
end
function removeChannelListener(serverId)
if listeners[serverId] then
local channel = MumbleGetVoiceChannelFromServerId(serverId)
if channel ~= -1 then
MumbleRemoveVoiceChannelListen(channel)
end
logger.verbose("Removing %s from listen table", serverId)
end
-- remove the listener if they exist
listeners[serverId] = nil
end
function setSpectatorMode(enabled)
logger.info('Setting spectate mode to %s', enabled)
isListenerEnabled = enabled
local players = GetActivePlayers()
if isListenerEnabled then
for i = 1, #players do
local ply = players[i]
local serverId = GetPlayerServerId(ply)
if serverId == playerServerId then goto skip_loop end
addChannelListener(serverId)
::skip_loop::
end
else
for i = 1, #players do
local ply = players[i]
local serverId = GetPlayerServerId(ply)
if serverId == playerServerId then goto skip_loop end
removeChannelListener(serverId)
::skip_loop::
end
-- cleanup table if we stop listening
listeners = {}
end
end
function tryListeningToFailedListeners()
for src, isListening in pairs(listeners) do
-- if we failed to listen before we'll be set to false
if not isListening then
addChannelListener(src)
end
end
end
RegisterNetEvent('onPlayerJoining', function(serverId)
if isListenerEnabled then
addChannelListener(serverId)
end
end)
RegisterNetEvent('onPlayerDropped', function(serverId)
if isListenerEnabled then
removeChannelListener(serverId)
end
end)
local listenerOverride = false
exports("setListenerOverride", function(enabled)
type_check({ enabled, "boolean" })
listenerOverride = enabled
end)
-- cache talking status so we only send a nui message when its not the same as what it was before
local lastTalkingStatus = false
local lastRadioStatus = false
local voiceState = "proximity"
CreateThread(function()
TriggerEvent('chat:addSuggestion', '/muteply', 'Mutes the player with the specified id', {
{ name = "player id", help = "the player to toggle mute" },
{ name = "duration", help = "(opt) the duration the mute in seconds (default: 900)" }
})
while true do
-- wait for mumble to reconnect
while not MumbleIsConnected() or not isInitialized do
Wait(100)
end
-- Leave the check here as we don't want to do any of this logic
if GetConvarInt('voice_enableUi', 1) == 1 then
local curTalkingStatus = MumbleIsPlayerTalking(PlayerId()) == 1
if lastRadioStatus ~= radioPressed or lastTalkingStatus ~= curTalkingStatus then
lastRadioStatus = radioPressed
lastTalkingStatus = curTalkingStatus
sendUIMessage({
usingRadio = lastRadioStatus,
talking = lastTalkingStatus
})
end
end
if voiceState == "proximity" then
addNearbyPlayers()
-- What a name, wowza
local cam = GetConvarInt("voice_disableAutomaticListenerOnCamera", 0) ~= 1 and GetRenderingCam() or -1
local isSpectating = NetworkIsInSpectatorMode() or cam ~= -1
if not isListenerEnabled and (isSpectating or listenerOverride) then
setSpectatorMode(true)
elseif isListenerEnabled and not isSpectating and not listenerOverride then
setSpectatorMode(false)
end
tryListeningToFailedListeners()
end
Wait(GetConvarInt('voice_refreshRate', 200))
end
end)
exports("setVoiceState", function(_voiceState, channel)
if _voiceState ~= "proximity" and _voiceState ~= "channel" then
logger.error("Didn't get a proper voice state, expected proximity or channel, got %s", _voiceState)
end
voiceState = _voiceState
if voiceState == "channel" then
type_check({ channel, "number" })
-- 65535 is the highest a client id can go, so we add that to the base channel so we don't manage to get onto a players channel
channel = channel + 65535
MumbleSetVoiceChannel(channel)
while MumbleGetVoiceChannelFromServerId(playerServerId) ~= channel do
Wait(250)
end
MumbleAddVoiceTargetChannel(voiceTarget, channel)
elseif voiceState == "proximity" then
handleInitialState()
end
end)
AddEventHandler("onClientResourceStop", function(resource)
if type(addProximityCheck) == "table" then
local proximityCheckRef = addProximityCheck.__cfx_functionReference
if proximityCheckRef then
local isResource = string.match(proximityCheckRef, resource)
if isResource then
addProximityCheck = orig_addProximityCheck
logger.warn(
'Reset proximity check to default, the original resource [%s] which provided the function restarted',
resource)
end
end
end
end)
exports("addVoiceMode", function(distance, name)
for i = 1, #Cfg.voiceModes do
local voiceMode = Cfg.voiceModes[i]
if voiceMode[2] == name then
logger.verbose("Already had %s, overwritting instead", name)
voiceMode[1] = distance
return
end
end
Cfg.voiceModes[#Cfg.voiceModes + 1] = { distance, name }
end)
exports("removeVoiceMode", function(name)
for i = 1, #Cfg.voiceModes do
local voiceMode = Cfg.voiceModes[i]
if voiceMode[2] == name then
table.remove(Cfg.voiceModes, i)
-- Reset our current range if we had it
if mode == i then
local newMode = Cfg.voiceModes[1]
mode = 1
setProximityState(newMode[mode], false)
end
return true
end
end
return false
end)
AddStateBagChangeHandler("submix", "", function(bagName, _, value)
local tgtId = tonumber(bagName:gsub('player:', ''), 10)
if not tgtId then return end
-- We got an invalid submix, discard we don't care about it
if value and not submixIndicies[value] then
return logger.warn("Player %s applied submix %s but it isn't valid",
tgtId, value)
end
-- we don't want to reset submix if the player is talking on the radio
if not value then
if not radioData[tgtId] and not callData[tgtId] then
logger.info("Resetting submix for player %s", tgtId)
MumbleSetSubmixForServerId(tgtId, -1)
end
return
end
logger.info("%s had their submix set to %s", tgtId, value)
MumbleSetSubmixForServerId(tgtId, submixIndicies[value])
end)
RegisterNetEvent("onPlayerDropped", function(tgtId)
if not radioData[tgtId] and not callData[tgtId] then
logger.info("Resetting submix for player %s", tgtId)
MumbleSetSubmixForServerId(tgtId, -1)
end
end)
local callChannel = 0
RegisterNetEvent('pma-voice:syncCallData', function(callTable, channel)
callData = callTable
handleRadioAndCallInit()
end)
RegisterNetEvent('pma-voice:addPlayerToCall', function(plySource)
toggleVoice(plySource, true, 'call')
callData[plySource] = true
end)
RegisterNetEvent('pma-voice:removePlayerFromCall', function(plySource)
if plySource == playerServerId then
for tgt, _ in pairs(callData) do
if tgt ~= playerServerId then
toggleVoice(tgt, false, 'call')
end
end
callData = {}
MumbleClearVoiceTargetPlayers(voiceTarget)
addVoiceTargets((radioPressed and isRadioEnabled()) and radioData or {}, callData)
else
callData[plySource] = nil
toggleVoice(plySource, radioData[plySource], 'call')
if MumbleIsPlayerTalking(PlayerId()) then
MumbleClearVoiceTargetPlayers(voiceTarget)
addVoiceTargets((radioPressed and isRadioEnabled()) and radioData or {}, callData)
end
end
end)
function setCallChannel(channel)
if GetConvarInt('voice_enableCalls', 1) ~= 1 then return end
TriggerServerEvent('pma-voice:setPlayerCall', channel)
callChannel = channel
sendUIMessage({
callInfo = channel
})
end
exports('setCallChannel', setCallChannel)
exports('SetCallChannel', setCallChannel)
exports('addPlayerToCall', function(_call)
local call = tonumber(_call)
if call then
setCallChannel(call)
end
end)
exports('removePlayerFromCall', function()
setCallChannel(0)
end)
RegisterNetEvent('pma-voice:clSetPlayerCall', function(_callChannel)
if GetConvarInt('voice_enableCalls', 1) ~= 1 then return end
callChannel = _callChannel
end)
local radioChannel = 0
local radioNames = {}
local disableRadioAnim = false
local radioAnim = {
dict = "random@arrests",
anim = "generic_radio_enter",
}
---@return boolean isEnabled if radioEnabled is true and LocalPlayer.state.disableRadio is 0 (no bits set)
function isRadioEnabled()
return radioEnabled and LocalPlayer.state.disableRadio == 0
end
--- event syncRadioData
--- syncs the current players on the radio to the client
---@param radioTable table the table of the current players on the radio
---@param localPlyRadioName string the local players name
function syncRadioData(radioTable, localPlyRadioName)
radioData = radioTable
logger.info('[radio] Syncing radio table.')
if GetConvarInt('voice_debugMode', 0) >= 4 then
print('-------- RADIO TABLE --------')
tPrint(radioData)
print('-----------------------------')
end
local isEnabled = isRadioEnabled()
if isEnabled then
handleRadioAndCallInit()
end
sendUIMessage({
radioChannel = radioChannel,
radioEnabled = isEnabled
})
if GetConvarInt("voice_syncPlayerNames", 0) == 1 then
radioNames[playerServerId] = localPlyRadioName
end
end
RegisterNetEvent('pma-voice:syncRadioData', syncRadioData)
--- event setTalkingOnRadio
--- sets the players talking status, triggered when a player starts/stops talking.
---@param plySource number the players server id.
---@param enabled boolean whether the player is talking or not.
function setTalkingOnRadio(plySource, enabled)
radioData[plySource] = enabled
if not isRadioEnabled() then return logger.info("[radio] Ignoring setTalkingOnRadio. radioEnabled: %s disableRadio: %s", radioEnabled, LocalPlayer.state.disableRadio) end
-- If we're on a call we don't want to toggle their voice disabled this will break calls.
local enabled = enabled or callData[plySource]
toggleVoice(plySource, enabled, 'radio')
playMicClicks(enabled)
end
RegisterNetEvent('pma-voice:setTalkingOnRadio', setTalkingOnRadio)
--- event addPlayerToRadio
--- adds a player onto the radio.
---@param plySource number the players server id to add to the radio.
function addPlayerToRadio(plySource, plyRadioName)
radioData[plySource] = false
if GetConvarInt("voice_syncPlayerNames", 0) == 1 then
radioNames[plySource] = plyRadioName
end
logger.info('[radio] %s joined radio %s %s', plySource, radioChannel,
radioPressed and " while we were talking, adding them to targets" or "")
if radioPressed then
addVoiceTargets(radioData, callData)
end
end
RegisterNetEvent('pma-voice:addPlayerToRadio', addPlayerToRadio)
--- event removePlayerFromRadio
--- removes the player (or self) from the radio
---@param plySource number the players server id to remove from the radio.
function removePlayerFromRadio(plySource)
if plySource == playerServerId then
logger.info('[radio] Left radio %s, cleaning up.', radioChannel)
for tgt, _ in pairs(radioData) do
if tgt ~= playerServerId then
toggleVoice(tgt, false, 'radio')
end
end
sendUIMessage({
radioChannel = 0,
radioEnabled = radioEnabled
})
radioNames = {}
radioData = {}
addVoiceTargets(callData)
else
toggleVoice(plySource, false, 'radio')
if radioPressed then
logger.info('[radio] %s left radio %s while we were talking, updating targets.', plySource, radioChannel)
addVoiceTargets(radioData, callData)
else
logger.info('[radio] %s has left radio %s', plySource, radioChannel)
end
radioData[plySource] = nil
if GetConvarInt("voice_syncPlayerNames", 0) == 1 then
radioNames[plySource] = nil
end
end
end
RegisterNetEvent('pma-voice:removePlayerFromRadio', removePlayerFromRadio)
RegisterNetEvent('pma-voice:radioChangeRejected', function()
logger.info("The server rejected your radio change.")
radioChannel = 0
end)
--- function setRadioChannel
--- sets the local players current radio channel and updates the server
---@param channel number the channel to set the player to, or 0 to remove them.
function setRadioChannel(channel)
if GetConvarInt('voice_enableRadios', 1) ~= 1 then return end
type_check({ channel, "number" })
TriggerServerEvent('pma-voice:setPlayerRadio', channel)
radioChannel = channel
end
--- exports setRadioChannel
--- sets the local players current radio channel and updates the server
exports('setRadioChannel', setRadioChannel)
-- mumble-voip compatability
exports('SetRadioChannel', setRadioChannel)
--- exports removePlayerFromRadio
--- sets the local players current radio channel and updates the server
exports('removePlayerFromRadio', function()
setRadioChannel(0)
end)
--- exports addPlayerToRadio
--- sets the local players current radio channel and updates the server
---@param _radio number the channel to set the player to, or 0 to remove them.
exports('addPlayerToRadio', function(_radio)
local radio = tonumber(_radio)
if radio then
setRadioChannel(radio)
end
end)
--- exports toggleRadioAnim
--- toggles whether the client should play radio anim or not, if the animation should be played or notvaliddance
exports('toggleRadioAnim', function()
disableRadioAnim = not disableRadioAnim
TriggerEvent('pma-voice:toggleRadioAnim', disableRadioAnim)
end)
exports("setDisableRadioAnim", function(shouldDisable)
disableRadioAnim = shouldDisable
end)
-- exports disableRadioAnim
--- returns whether the client is undercover or not
exports('getRadioAnimState', function()
return disableRadioAnim
end)
--- check if the player is dead
--- seperating this so if people use different methods they can customize
--- it to their need as this will likely never be changed
--- but you can integrate the below state bag to your death resources.
--- LocalPlayer.state:set('isDead', true or false, false)
function isDead()
if LocalPlayer.state.isDead then
return true
elseif IsPlayerDead(PlayerId()) then
return true
end
return false
end
function isRadioAnimEnabled()
if
GetConvarInt('voice_enableRadioAnim', 1) == 1
and not (GetConvarInt('voice_disableVehicleRadioAnim', 0) == 1
and IsPedInAnyVehicle(PlayerPedId(), false))
and not disableRadioAnim then
return true
end
return false
end
RegisterCommand('+radiotalk', function()
if GetConvarInt('voice_enableRadios', 1) ~= 1 then return end
if isDead() then return end
if not isRadioEnabled() then return end
if not radioPressed then
if radioChannel > 0 then
logger.info('[radio] Start broadcasting, update targets and notify server.')
addVoiceTargets(radioData, callData)
TriggerServerEvent('pma-voice:setTalkingOnRadio', true)
radioPressed = true
local shouldPlayAnimation = isRadioAnimEnabled()
playMicClicks(true)
-- localize here so in the off case someone changes this while its in use we
-- still remove our dictionary down below here
local dict = radioAnim.dict
local anim = radioAnim.anim
if shouldPlayAnimation then
RequestAnimDict(dict)
end
CreateThread(function()
TriggerEvent("pma-voice:radioActive", true)
LocalPlayer.state:set("radioActive", true, true);
local checkFailed = false
while radioPressed do
if radioChannel < 0 or isDead() or not isRadioEnabled() then
checkFailed = true
break
end
if shouldPlayAnimation and HasAnimDictLoaded(dict) then
if not IsEntityPlayingAnim(PlayerPedId(), dict, anim, 3) then
TaskPlayAnim(PlayerPedId(), dict, anim, 8.0, 2.0, -1, 50, 2.0, false,
false,
false)
end
end
SetControlNormal(0, 249, 1.0)
SetControlNormal(1, 249, 1.0)
SetControlNormal(2, 249, 1.0)
Wait(0)
end
if checkFailed then
logger.info("Canceling radio talking as the checks have failed.")
ExecuteCommand("-radiotalk")
end
if shouldPlayAnimation then
RemoveAnimDict(dict)
end
end)
else
logger.info("Player tried to talk but was not on a radio channel")
end
end
end, false)
RegisterCommand('-radiotalk', function()
if radioChannel > 0 and radioPressed then
radioPressed = false
MumbleClearVoiceTargetPlayers(voiceTarget)
addVoiceTargets(callData)
TriggerEvent("pma-voice:radioActive", false)
LocalPlayer.state:set("radioActive", false, true);
playMicClicks(false)
if GetConvarInt('voice_enableRadioAnim', 1) == 1 then
StopAnimTask(PlayerPedId(), radioAnim.dict, radioAnim.anim, -4.0)
end
TriggerServerEvent('pma-voice:setTalkingOnRadio', false)
end
end, false)
if gameVersion == 'fivem' then
RegisterKeyMapping('+radiotalk', 'Talk over Radio', 'keyboard', GetConvar('voice_defaultRadio', 'LMENU'))
end
local function setRadioTalkAnim(dict, anim)
type_check({dict, "string"}, {anim, "string"})
if not DoesAnimDictExist(dict) then
return error(("Dict: %s did not exist"):format(dict))
end
radioAnim.dict = dict
radioAnim.anim = anim
end
exports('setRadioTalkAnim', setRadioTalkAnim)
--- event syncRadio
--- syncs the players radio, only happens if the radio was set server side.
---@param _radioChannel number the radio channel to set the player to.
function syncRadio(_radioChannel)
if GetConvarInt('voice_enableRadios', 1) ~= 1 then return end
logger.info('[radio] radio set serverside update to radio %s', radioChannel)
radioChannel = _radioChannel
end
RegisterNetEvent('pma-voice:clSetPlayerRadio', syncRadio)
--- handles "radioEnabled" changing
---@param wasRadioEnabled boolean whether radio is enabled or not
function handleRadioEnabledChanged(wasRadioEnabled)
if wasRadioEnabled then
syncRadioData(radioData, "")
else
removePlayerFromRadio(playerServerId)
end
end
--- adds the bit to the disableRadio bits
---@param bit number the bit to add
local function addRadioDisableBit(bit)
local curVal = LocalPlayer.state.disableRadio or 0
curVal = curVal | bit
LocalPlayer.state:set("disableRadio", curVal, true)
end
exports("addRadioDisableBit", addRadioDisableBit)
--- removes the bit from disableRadio
---@param bit number the bit to remove
local function removeRadioDisableBit(bit)
local curVal = LocalPlayer.state.disableRadio or 0
curVal = curVal & (~bit)
LocalPlayer.state:set("disableRadio", curVal, true)
end
exports("removeRadioDisableBit", removeRadioDisableBit)
local uiReady = promise.new()
function sendUIMessage(message)
Citizen.Await(uiReady)
SendNUIMessage(message)
end
RegisterNUICallback("uiReady", function(data, cb)
uiReady:resolve(true)
cb('ok')
end)
game 'common'
fx_version 'cerulean'
author 'AvarianKnight'
description 'VOIP built using FiveM\'s built in mumble.'
dependencies {
'/onesync',
}
lua54 'yes'
shared_script 'shared.lua'
client_scripts {
'client/utils/*',
'client/init/proximity.lua',
'client/init/init.lua',
'client/init/main.lua',
'client/init/submix.lua',
'client/module/*.lua',
'client/*.lua',
}
server_scripts {
'server/**/*.lua',
'server/**/*.js'
}
files {
'ui/*.ogg',
'ui/css/*.css',
'ui/js/*.js',
'ui/index.html',
}
ui_page 'ui/index.html'
provides {
'mumble-voip',
'tokovoip',
'toko-voip',
'tokovoip_script'
}
convar_category 'PMA-Voice' {
"PMA-Voice Configuration Options",
{
{ "Use native audio", "$voice_useNativeAudio", "CV_BOOL", "false" },
{ "Use 2D audio", "$voice_use2dAudio", "CV_BOOL", "false" },
{ "Use sending range only", "$voice_useSendingRangeOnly", "CV_BOOL", "false" },
{ "Enable UI", "$voice_enableUi", "CV_INT", "1" },
{ "Enable F11 proximity key", "$voice_enableProximityCycle", "CV_INT", "1" },
{ "Proximity cycle key", "$voice_defaultCycle", "CV_STRING", "F11" },
{ "Voice radio volume", "$voice_defaultRadioVolume", "CV_INT", "30" },
{ "Voice call volume", "$voice_defaultCallVolume", "CV_INT", "60" },
{ "Enable radios", "$voice_enableRadios", "CV_INT", "1" },
{ "Enable calls", "$voice_enableCalls", "CV_INT", "1" },
{ "Enable submix", "$voice_enableSubmix", "CV_INT", "1" },
{ "Enable radio animation", "$voice_enableRadioAnim", "CV_INT", "0" },
{ "Radio key", "$voice_defaultRadio", "CV_STRING", "LMENU" },
{ "UI refresh rate", "$voice_uiRefreshRate", "CV_INT", "200" },
{ "Allow players to set audio intent", "$voice_allowSetIntent", "CV_INT", "1" },
{ "External mumble server address", "$voice_externalAddress", "CV_STRING", "" },
{ "External mumble server port", "$voice_externalPort", "CV_INT", "0" },
{ "Voice debug mode", "$voice_debugMode", "CV_INT", "0" },
{ "Disable players being allowed to join", "$voice_externalDisallowJoin", "CV_INT", "0" },
{ "Hide server endpoints in logs", "$voice_hideEndpoints", "CV_INT", "1" },
}
}
Cfg = {}
voiceTarget = 1
gameVersion = GetGameName()
-- these are just here to satisfy linting
if not IsDuplicityVersion() then
LocalPlayer = LocalPlayer
playerServerId = GetPlayerServerId(PlayerId())
if gameVersion == "redm" then
function CreateAudioSubmix(name)
return Citizen.InvokeNative(0x658d2bc8, name, Citizen.ResultAsInteger())
end
function AddAudioSubmixOutput(submixId, outputSubmixId)
Citizen.InvokeNative(0xAC6E290D, submixId, outputSubmixId)
end
function MumbleSetSubmixForServerId(serverId, submixId)
Citizen.InvokeNative(0xFE3A3054, serverId, submixId)
end
function SetAudioSubmixEffectParamFloat(submixId, effectSlot, paramIndex, paramValue)
Citizen.InvokeNative(0x9A209B3C, submixId, effectSlot, paramIndex, paramValue)
end
function SetAudioSubmixEffectParamInt(submixId, effectSlot, paramIndex, paramValue)
Citizen.InvokeNative(0x77FAE2B8, submixId, effectSlot, paramIndex, paramValue)
end
function SetAudioSubmixEffectRadioFx(submixId, effectSlot)
Citizen.InvokeNative(0xAAA94D53, submixId, effectSlot)
end
function SetAudioSubmixOutputVolumes(submixId, outputSlot, frontLeftVolume, frontRightVolume, rearLeftVolume,
rearRightVolume, channel5Volume, channel6Volume)
Citizen.InvokeNative(0x825DC0D1, submixId, outputSlot, frontLeftVolume, frontRightVolume, rearLeftVolume,
rearRightVolume, channel5Volume, channel6Volume)
end
end
end
Player = Player
Entity = Entity
if GetConvar('voice_useNativeAudio', 'false') == 'true' then
-- native audio distance seems to be larger then regular gta units
Cfg.voiceModes = {
{ 1.5, "Whisper" }, -- Whisper speech distance in gta distance units
{ 3.0, "Normal" }, -- Normal speech distance in gta distance units
{ 6.0, "Shouting" } -- Shout speech distance in gta distance units
}
else
Cfg.voiceModes = {
{ 3.0, "Whisper" }, -- Whisper speech distance in gta distance units
{ 7.0, "Normal" }, -- Normal speech distance in gta distance units
{ 15.0, "Shouting" } -- Shout speech distance in gta distance units
}
end
logger = {
log = function(message, ...)
print((message):format(...))
end,
info = function(message, ...)
if GetConvarInt('voice_debugMode', 0) >= 1 then
print(('[info] ' .. message):format(...))
end
end,
warn = function(message, ...)
print(('[^1WARNING^7] ' .. message):format(...))
end,
error = function(message, ...)
error((message):format(...))
end,
verbose = function(message, ...)
if GetConvarInt('voice_debugMode', 0) >= 4 then
print(('[verbose] ' .. message):format(...))
end
end,
}
function tPrint(tbl, indent)
indent = indent or 0
for k, v in pairs(tbl) do
local tblType = type(v)
local formatting = string.rep(" ", indent) .. k .. ": "
if tblType == "table" then
print(formatting)
tPrint(v, indent + 1)
elseif tblType == 'boolean' then
print(formatting .. tostring(v))
elseif tblType == "function" then
print(formatting .. tostring(v))
else
print(formatting .. v)
end
end
end
local function types(args)
local argType = type(args[1])
for i = 2, #args do
local arg = args[i]
if argType == arg then
return true, argType
end
end
return false, argType
end
--- does a type check and errors if an invalid type is sent
---@param ... table a table with the variable being the first argument and the expected type being the second
function type_check(...)
local vars = { ... }
for i = 1, #vars do
local var = vars[i]
local matchesType, varType = types(var)
if not matchesType then
table.remove(var, 1)
error(("Invalid type sent to argument #%s, expected %s, got %s"):format(i, table.concat(var, "|"), varType))
end
end
end
.voiceInfo{font-family:Avenir,Helvetica,Arial,sans-serif;position:fixed;text-align:right;bottom:5px;padding:0;right:5px;font-size:12px;font-weight:700;color:#949697;text-shadow:1.25px 0 0 #000,0 -1.25px 0 #000,0 1.25px 0 #000,-1.25px 0 0 #000}.talking{color:hsla(0,0%,100%,.822)}p{margin:0}<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="icon" href="favicon.ico"><title>voice-ui</title><link href="css/app.css" rel="preload" as="style"><link href="js/app.js" rel="preload" as="script"><link href="js/chunk-vendors.js" rel="preload" as="script"><link href="css/app.css" rel="stylesheet"></head><body><noscript><strong>We're sorry but voice-ui doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div><script src="js/chunk-vendors.js"></script><script src="js/app.js"></script></body></html>
//# sourceMappingURL=app.js.map(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-vendors"],{"7edb":function(e,t,n){"use strict";n.d(t,"g",(function(){return we})),n.d(t,"e",(function(){return o["I"]})),n.d(t,"h",(function(){return o["L"]})),n.d(t,"b",(function(){return Zn})),n.d(t,"c",(function(){return Dn})),n.d(t,"d",(function(){return Hn})),n.d(t,"f",(function(){return Ln})),n.d(t,"a",(function(){return is}));var o=n("e99b");let r;const s=[];class c{constructor(e=!1){this.active=!0,this.effects=[],this.cleanups=[],!e&&r&&(this.parent=r,this.index=(r.scopes||(r.scopes=[])).push(this)-1)}run(e){if(this.active)try{return this.on(),e()}finally{this.off()}else 0}on(){this.active&&(s.push(this),r=this)}off(){this.active&&(s.pop(),r=s[s.length-1])}stop(e){if(this.active){if(this.effects.forEach(e=>e.stop()),this.cleanups.forEach(e=>e()),this.scopes&&this.scopes.forEach(e=>e.stop(!0)),this.parent&&!e){const e=this.parent.scopes.pop();e&&e!==this&&(this.parent.scopes[this.index]=e,e.index=this.index)}this.active=!1}}}function i(e,t){t=t||r,t&&t.active&&t.effects.push(e)}const l=e=>{const t=new Set(e);return t.w=0,t.n=0,t},u=e=>(e.w&b)>0,a=e=>(e.n&b)>0,f=({deps:e})=>{if(e.length)for(let t=0;t<e.length;t++)e[t].w|=b},p=e=>{const{deps:t}=e;if(t.length){let n=0;for(let o=0;o<t.length;o++){const r=t[o];u(r)&&!a(r)?r.delete(e):t[n++]=r,r.w&=~b,r.n&=~b}t.length=n}},d=new WeakMap;let h=0,b=1;const v=30,g=[];let m;const O=Symbol(""),j=Symbol("");class y{constructor(e,t=null,n){this.fn=e,this.scheduler=t,this.active=!0,this.deps=[],i(this,n)}run(){if(!this.active)return this.fn();if(!g.includes(this))try{return g.push(m=this),k(),b=1<<++h,h<=v?f(this):_(this),this.fn()}finally{h<=v&&p(this),b=1<<--h,S(),g.pop();const e=g.length;m=e>0?g[e-1]:void 0}}stop(){this.active&&(_(this),this.onStop&&this.onStop(),this.active=!1)}}function _(e){const{deps:t}=e;if(t.length){for(let n=0;n<t.length;n++)t[n].delete(e);t.length=0}}let w=!0;const x=[];function C(){x.push(w),w=!1}function k(){x.push(w),w=!0}function S(){const e=x.pop();w=void 0===e||e}function E(e,t,n){if(!F())return;let o=d.get(e);o||d.set(e,o=new Map);let r=o.get(n);r||o.set(n,r=l());const s=void 0;A(r,s)}function F(){return w&&void 0!==m}function A(e,t){let n=!1;h<=v?a(e)||(e.n|=b,n=!u(e)):n=!e.has(m),n&&(e.add(m),m.deps.push(e))}function M(e,t,n,r,s,c){const i=d.get(e);if(!i)return;let u=[];if("clear"===t)u=[...i.values()];else if("length"===n&&Object(o["o"])(e))i.forEach((e,t)=>{("length"===t||t>=r)&&u.push(e)});else switch(void 0!==n&&u.push(i.get(n)),t){case"add":Object(o["o"])(e)?Object(o["s"])(n)&&u.push(i.get("length")):(u.push(i.get(O)),Object(o["t"])(e)&&u.push(i.get(j)));break;case"delete":Object(o["o"])(e)||(u.push(i.get(O)),Object(o["t"])(e)&&u.push(i.get(j)));break;case"set":Object(o["t"])(e)&&u.push(i.get(O));break}if(1===u.length)u[0]&&T(u[0]);else{const e=[];for(const t of u)t&&e.push(...t);T(l(e))}}function T(e,t){for(const n of Object(o["o"])(e)?e:[...e])(n!==m||n.allowRecurse)&&(n.scheduler?n.scheduler():n.run())}const L=Object(o["H"])("__proto__,__v_isRef,__isVue"),P=new Set(Object.getOwnPropertyNames(Symbol).map(e=>Symbol[e]).filter(o["E"])),N=U(),R=U(!1,!0),I=U(!0),D=B();function B(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...e){const n=Ae(this);for(let t=0,r=this.length;t<r;t++)E(n,"get",t+"");const o=n[t](...e);return-1===o||!1===o?n[t](...e.map(Ae)):o}}),["push","pop","shift","unshift","splice"].forEach(t=>{e[t]=function(...e){C();const n=Ae(this)[t].apply(this,e);return S(),n}}),e}function U(e=!1,t=!1){return function(n,r,s){if("__v_isReactive"===r)return!e;if("__v_isReadonly"===r)return e;if("__v_raw"===r&&s===(e?t?je:Oe:t?me:ge).get(n))return n;cons
//# sourceMappingURL=chunk-vendors.js.mapRIFF<46><46>WAVEfmt D<><00> datad<61><00><><00><> <00><> <00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><> <00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><>    <00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>  <00><><00><> <00><><00><><00><>  <00><><00><><00><><00><><00><><00><><00><>   <00><><00><><00><><00><> <00><><00><> <00><><00><><00><>  <00><><00><><00><><00><><00><><00><> 


 <00><><00><><00><><00><> <00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><>
<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><>  <00><><00><><00><><00><><00><><00><>
<00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>
<00><><00><><00><><00><><00><>
<00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>
<00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>  <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>
  <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>

<00><><00><><00><><00><><00><><00><>    <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><>
<00><><00><><00><><00><><00><><00><> 
<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>
<00><>
<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>
<00><><00><> $$-,89GIQQJKdc<00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00>uxvs}<00>~yjnhllkfide]_ee^a^_VYTNbaNP^]kpXVGJUTAAGD7147 !!$!#'%"   
 <00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><>
<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>
W`<00><00><00>
<00>
<00><00><00><00><00>%.&n,<00>,m+<00>+<00>%&<00><00><00> <00> <00><><00><><05><00><><00><>Y<><00><>w<><00><><00><>@<40>3<><00><00>u
<00>
<00> <00> <00><00><00><><00><>&<26>!<21>+<2B><15>)<29><08><02><00><><00><><00><>}<7D>Z<><14><00><>t<>`<60><00><>}<7D><0E><00><><00><>q<><00><><00><><00><><00><><02><00><>D<>,<2C><00><>o<><0E><00><><00><><00><><1A><02><00><><00><>F<>4<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><10><04>f<>Z<>pp[W<00><00>;B\[FH<00><00><00><00>36<00><00>
jj<00><00><00><00>_g<00><00>~<00><00><00><00><00><00><00><00><00><00><00>?F<00>Wq$<00><00><00><00>{-0<00><00>sz<00><><00><>b<>_<>'<27>&<26>g<>j<><00><><00><>u<>x<>!<21><1F> <0B><01><00><><00><><00><><00><><17><04><0E><00><><00><><00><>c<>A<>*<2A><08>}<7D>[<5B><00><><00><><00><><00><><00><><00><><00><><00><>D><00><00>ZeP
U
 / <00><00>9_<00><00><00>4 $S$<00>&'(t(;(<00>('b'R$<00>$0 } U<00><00>F<00>
<00>
<00><00><00><><00><><00><><00><><00><><00><>$<24><1B><1E><02><00><><00><><00><>}<7D>G<><02><00><><00><><00><>]<5D>W<><00><><00><><1E>}<7D><14><00><>F<>8<><00><><00><><00><>I<><00><><17><00><>d<><03>j<><11>b<><13><0E><00><><00><><00><><00><><00><><00><>d<><00><00>/ ( <00><00>'<00>"<00>"<00>())/X/<00>45<00>9:{=<00>=$@<00>@<00>A_B<00>BACqBCA<00>A<00>>-?/;<00>; 7<00>7'2<00>2B,<00>,X%<00>%<00><00>A<00><00> <00> Em<00><><00><><13><1D>L<>C<><00><><00><><00><><><00><>a<><00><><00><><00><><00><><00><>X<><00><>&<26><00><><19><00><>.<2E><00><>3<><00><><1C>=<3D>¿<00><>2<><10><00><>g<><00><><00><><<3C><00><>n<><00><>k<>a<><17><00><>d<> <0A><00><>k<>A<>sfI = <00><00>,<00>"#0)h)/j/<00>4<00>49<00>9=j=<00>?5@BA<00>A{ABv@Aq><00>>b;<00>;57<00>7<00>1Y2<00>+<00>+j$<00>$<00>6;|d <00> b<00>P<>k<>8<>D<>M<>G<><00><><00><>Q<>.<2E>`<60>/<2F><00><>><3E><00><>S<><00><>V<><00><><00><>N<><00><><00><>7<><05><00><>`<60><00><><00><>?<3F><00><>^<5E><00><>#<23><00><><00><><17><00><><00><>y<>O<><02>I<><0F><00><>x<>9<><16><00><00><00> <00> DU<00><00>r<00><00>%<00>%<00>+<00>+<00>001#5<00>5p8<00>8y:<00>:<00>;"<<00>;Y<;<00>;Z9<00>9<00>6F7+3<00>3<00>.<00>.3)<00>)#|#,<00>{<00>N <00> <00><00><00><><00><>X<>^<5E><>w<><06><00><><0F><00><><00><><00><><00><>=<3D><00><><00><><12><00><><00><><00><><00><>^<5E><00><>/<2F><00><>"<22><00><>+<2B><00><>=<3D><00><>8<>|<7C><0F>C<><00><><00><>I<><00><><00><>{<7B>/<2F><00><>|<7C>8<><05><14><00><><00><00>o c <00><00>?TUy<00>%&=,z,2Q2<00>6$7<00>:<00>:U=<00>=<00>>j?r?<00>?<00>>Q? =<00>=e:<00>:<00>6k7<00>23v-<00>-I'<00>' <00> $r?} 7 <00><00>!<21>0<><00><><00><><00><><00><><10><00><><1D><00><><18><00><><02><00><><00><><<3C><1E><00><><00><>I<>R<><00><><00><>r<>c<><00><><00><>e<>,<2C><00><>z<> <09><00><>D<><00><>(<28>;<3B><00><><00><>@<40><00><>W<><1E><00><>)<29><00><>><3E><1A>O2  <00><00><00><00><00>"<00>"<00>(<00>(l.<00>.3<00>3<00>7 8;<00>;x=<00>=<00>>2?<00>>g?<00>=\><00>;X<<00>8;9<00>4 5<00>/0<00>)9*N#<00>#$x<00><00><00> <00> <00><00>*<2A><<3C><00><><00><><00><>~<7E><00><>~<7E><19><00><>y<>A<><00><><00><>4<><00><>q<><17><00><>S<><08><00><>:<3A><00><>p<><00><><00><>"<22><00><>&<26>~<7E> <0B>7<><00><><00><>O<><18><00><>E<><00><><08><00><>\<5C><19> <0A><00><>
<EFBFBD><00><><00>
<00> <00><00>AR M |&<00>&c,<00>,<00>12T6<00>6<00>9E:o<<00><<00>=t>w><00>>><00>><00><=<00>9p:P6<00>6<00>1+2H,<00>,&e&)<00><00><00><00>X<>y<> <0A><15><00><><00><><00><><00><>T<>2<>f<>1<>Z<><1A>9<><00><><00><><00><><00><>K<>c<><00><>2<><00><><10><00><><00><>n<><00><><<3C>I<><00><><00><>N<><06><00><><05><00><><00><>c<>2<><00><>I<><00><><00><><00><><00><>s<><00><><00><><00><00><00><00>6H=Z<00>#<00>#<00>)*<00>/<00>/<00>4<00>4<00>89<00>;'<<00>=U><00>>S?<00>>R?<00>=>*;<00>;<00>7.8P3<00>32.<00>.N(<00>(<00>!"<00><00><00>; E <00><00><><00><>W<>Z<>8<>+<2B><00><>d<>R<>%<25><16><00><><00><>|<7C>G<><00><><00><>4<><00><>[<5B><00><><00><>.<2E><00><>d<><00><><00><><15><00><>J<><00><>c<><00><>i<><00><>T<>S<><00><><00><>H<>m<>!<21><00><>z<>Y<>'<27>3<><05><00><00><00>
<00>
JW<00><00>Q <00> <00>&<00>&<00>,<00>,32<00>2<00>6"7^:<00>:<00><\=_><00>><00>>*?<00>=`> <<00><<9<00>9<00>5<00>51m1}+<00>+J%<00>%f<00><00><00><00><00>0<>H<><00><><00><><00><><00><><00><><00><>{<7B>U<><00><><00><><06><00><> <09><00><><00><>z<><00><><1F>Y<><00><>%<25><00><><19><00><>"<22><00><><1B><00><><00><>{<7B><00><><1F><00><><00><><1B><00><><00><>y<>F<><00><>^<5E><13><00><><00><><00><><00><><00><><00><><00><00><D<00><00><00><00>E$r$U*<00>*0e05T5<00>8[9 <<00><<00>=q><00>>Y?<00>>?7=<00>=<00>:I;r7<00>73<00>3<00>-O.<00>'C(!x!<00>&S
E
<00><00>]<5D>q<><04><03><00><><00><><1B><00><><00><><00><><00><><00><><00><>U<>6<><00><><00><>c<>.<2E><00><><00><>H<>%<25><00><><00><>7<> <0A><00><>a<><00><><00><>(<28><00><>6<><00><><16><12><00><>m<><14>[<5B> <0B><00><><00><><00><>k<><00><>{<7B><00><00><00> <00> FJXn<00>!&"
(@(<00>-.<00>2I3`7<00>7<00>::;7=<00>=<00>>&?<00>>q?><00>><<00>< 9<00>95<00>50<00>0\*<00>*<00>#F$<00>&=<00>@ u <00>&<00><><00><>G<>N<><03><00><>$<24>
<EFBFBD><00><>x<><0F><00><>t<>-<2D><00><>Q<><00><>~<7E><00><><00><>!<21><00><>R<><00><>p<><00><>k<><00><>]<5D><00><>)<29><00><><00><>k<><00><><1A><00><><00><> <20><00><><00><><00><><12><00><><00><>s<>w<>C<>7<00><00><00><00>"4\<00>%&<00>+>,<00>1<00>1]6<00>6 :<00>:<00><)=5><00>><00>>?<00>=<00>>_<<00><<00>9Q:b6<00>62x2<00>,&-<00>& '<00>" d<00>v<00>=j<00><><00><><00><><00><>B<>@<40>W<>C<><00><><00><><00><><00><><00><><00><><00><>\<5C>`<60> <09><00><><00><><00><>:<3A>e<><00><> <20><00><><00><>k<>z<><04><00><><00><>9<><00><>[<5B><00><>`<60><00><>)<29><00><><00><>Y<><00><><00><><00><>I<>d<>.<2E>a<>E<>jN'(<00><00><00><00>g#<00>#m)<00>)/e/4j4A8<00>8m;<00>;<00>=><00>>?<00>>?<00>=>f;<00>;Y8<00>8&4<00>4/<00>/@)<00>)<00>"<00>"<<00>{<00>v <00> 1Q<00><><00><><00><><00><><00><><00><><1D><01><00><><00><><00><>H<><00><><00><><01><00><>#<23><00><>><3E><00><>t<><07><00><>R<><16><00><>r<><00><><00><><<3C><00><>h<><00><>J<>e<><00><><00><>s<><00><><00><><00><>m<><12><00><><00><><00><><00><><00><><00><00><00>
<00>
<00><00><00><00> <00> :'o' -P-h2<00>27c7<00>:;@=<00>=<00>>F?:?<00>?<00>>?<00><M=<00>9k:<00>5f61<00>1r+<00>+%s%<00>W<00><00><00><00><00><00>(<28>?<3F><00><><00><><00><><00><><00><><00><>
<EFBFBD><00><>]<5D>)<29><00><>]<5D><00><>w<><00><>m<><00><>[<5B><00><>;<3B>p<><00>@<40><00><><01><00><><00><>O<>g<><00><><00><>x<>B<><00><>z<><15><><1E>0<><00><>[<5B><14><11><00><><00><><00><><00><><00><><00><00>zu<00><00><00><00>)$e$*Z*<00>/ 0<00>4+5<00>8j9<<00><><00>>?<00>?<00>>{?<00>=)>@;<00>;<00>778[3<00>3.m.<00>'Y(-!<00>!<00>M
C
<00> <00><><00><><00><><00><><00><>q<><00><><00><>m<>=<3D>-<2D><00><><00><>k<>
<EFBFBD><00><>T<><00><><00><>N<>2<><00><><00><>Z<>x<><01><08><00><>v<><00><00><>B<><00><>O<><00><>.<2E>#<23><00><>I<><00><><00><00><>P<>
<EFBFBD><15><00><>2<> <0B><,Q K <00><00>*J<00>!".(e(<00>-3.H3<00>3<00>7<00>7;n;x=<00>=<00>>G?<00>><00>?#><00>>*<<00><'9<00>95<00>5C0<00>0<00>*<00>*$q$\U<00>T <00> C<00><><00><>w<>{<7B>D<>?<3F>V<><<3C><00><><00><>E<><10><00><>M<><00><>b<><00><>a<><00><>_<><00><>d<> <09><00><>$<24><00><>><3E><00><>?<3F><00><>+<2B><00><><00><>j<>l<><00><><00><>S<><00><>a<>X<><08><00><>c<>T<><1B>Z<>&<26>G,L > <00><00>fvEi<00>%<00>%<00>+<00>+41~1 6f6<00>9M:<00><!=v><00>>?<00>?<00>>?=<00>=~:<00>:<00>6j7r2<00>2-p-<00>&E' ^ <00><00><00><00><00>*J<00><><00><>m<>i<>g<>Q<><00><><00><><00><>u<><00><>p<><00><>><3E>B<><00><><00><><00><><00><>A<>O<><00><><00><>y<><00><><10><12><00><><00><>4<> <0B><00><>J<><00><>a<><00><>@<40><00><><00><>v<><00><><00><>[<5B><19><05><00><><00><><00><><00><00>j ^ To2#\#W)<00>)/o/R4<00>4<00>89<00>;6<<00>=7><00>>(?|>?Y=<00>=2;<00>;8<00>8'4<00>4F/<00>/<00>)<00>) #i#<00>CK<00>, [ <00><00>5<>L<><00><><00><><00><><00><><00><><00><><00><>^<5E>G<> <0A><00><><00><>W<><05><00><>:<3A><00><>`<60><00><><00><>#<23><00><>Y<><00><><00><><12><00><><1F><00><><0F>[<5B><00><><07><00><><00><>2<><00><><00><><00><>w<>&<26><00><><00><><00><><00><><00><><00>t_
X
<00><00>2F ? <00>&<00>&N,<00>,<00>1+2<00>6<00>6O:<00>:=x=<00>>? ?<00>?d><00>><00><)=<00>9Y:"6<00>6h1<00>1<00>+N,<00>%<00>%<00><00><00>@;<00> <00><><00><>]<5D>g<>1<>*<2A>H<>2<><00><><00><><00><><00><><<3C><00><><12><00><><00><>z<><00><>#<23>b<><00><><1F><00><><00><>v<><00><>G<>p<><00><><12><00><><00><>+<2B><1A><00><>z<><12>u<><12><1B><00><>#<23><00><><00><>f<>u<>F<>p<>I<>7%<00><00>kx<00><00>?$x$d*<00>*<00>/D0<00>4L5<00>8Q9<00>;\<<00>=^><00>>s?<00>>`?<00>=(>\;<00>;8<00>8<00>3B4z.<00>.\(<00>(n!<00>!<00>L)d
K
<00><00><><00><><00><><00><>~<7E>j<><00><><00><>L<><1B><00><><00><>s<>(<28><00><><00><>x<><18>+<2B><00><><00><>x<><00><><10><00><>|<7C>,<2C><00><>*<2A><00><><00><>x<><00><> <20>/<2F><00><><00><><00><>|<7C>"<22><00><><00><><00><><00><>E<> <0B>X<>6<>4d ` IH<00><00>
1 F&{&v,<00>,<00>23`8<00>8<00><[=@<00>@<00>ABA<00>A?<00>?<00>;*<Y7<00>7<00>2 3<00>-*.<00>(6)<00>#$ g<00><00>1c<00><00><00><><00><><00><><00><><00><><00><><00><><00><>-<2D><00><00><>^<5E><00><>E<><00><>g<>g<> <0C>5<><00><><00><>p<>m<><00>p<><00><>y<><00><>?<3F><00><><00><>z<> <0B><00><><00><><00><>S<><00><><00><><00><><00><><00><><00><>L<><00><><><00><><00><><00><><00><>x^'-(@(z3<00>36=<00>=yC<00>C'E<00>E^B<00>B9<<00><y4<00>4j-<00>-<00>(*)<00>'U(<00>**+<00>/P05<00>5h7<00>7W4<00>4H*<00>*c`<00><08><00><>[<5B><1E>H<><00><>ֶc<>k<><00><><00><><00><>s<>#<23><00><><00><>+<2B><1E><00> <00> 5<00> <00> <00><><00><>V<><1C><11><00><><12><00><><00><><00><><00><>\<5C><00><>j<><00><><00><>?<3F>.<2E> <00> <00><00><00><00><00> <00> <00><><00><><00><><00><><>N<>[<5B><1F><00><>J<><00><>s<><11><00><><00><00><00> <00> +]u<00><00>j|

zx<00><00>''<00><00><00> 
1=Mmz<00>b<00>ctF
Z
<00><00>FNNQ<00><00><00><00> <00> <00><00><00><00><00><00>yy!<21><1B><1C><19><00><><00><> <20><1D>
px<00><00><00><00>5<>/<2F><03><00><><00><><00><><00><><00><><04><00><><1D> <0A><00><><00><><00><><00><><00><><00><><00><00>#*<00><00><00><><00><>h<>[<5B><1F>
<EFBFBD><14><00><><00><><00><><14><00><><00><><00><><00><><00><>B;<00><00> opTQ]<5D>U<>\<5C>N<><00><><00><><00><><00><>'<27><15><00><><00><>y<>m<>p<>c<>1-$'<00><00><00><00><00><00>@9 <09>
<EFBFBD>v<>h<><00><><00><>A<>7<>fb<00><00> <00><00>ts<00><00><00><00><00><00>%%<00><00><00><00><00><00>mk" <00><00>HIrv<00><?<00><00>67<00><00><00><00>PM<00><><00><><00><><00><>J<>F<><1A><18><00><><00><><00><><00><><00><><00><>e<>\<5C>;<3B>2<><19><13><00><><00><><00><><00><><00><><00><>}<7D>w<>N<>B<><18> <0C><00><><00><><01><00><>(<28> <20>^<5E>U<><00><><00><><00><><00><><17><10>4<>+<2B>=<3D>0<>!<21><1B><00><><00><><00><><00><><00><><00><><00><><00><>C<>3<><00><><00><><00><><00><>d[zv<00><00><00><00><00><00>WV<00><00><00><00><00>z<00><00><00><00><00><00>01((<00><00>gf<00><00>'<00>}%!*%<00><00><00><00>to<00><00><00><00>AH<00><00><00><><00><>!<21><1F><00><><00><><0E><08><00><><00><><15><11><00><>y<> <0B><00><00><><00><><00><>(!<00><><00><>R<>P<><00><><00><><00><><00><>m<>c<>u<>s<><00><><00><>><3E>:<3A><00><><00><>fg<00><00><00><00><00><00><00><00>43<00><><00><><00><><00><><>~<7E><00><><00><><00><>ne<00><00><00><00><00><00>HI<00><><00><>h<>g<>"<22><1F><00><><00><><15> <0C>M<>M<><00><><00><><00><><00><> 5.<00><><00><><00><><00><>%<25>#<23><00><><00><>E<>;<3B><12><0F>1<>*<2A><00><>|<7C> <09><00><00><><00><> <00><00><00><00><00><00><00><00><00>}<00><><00><>|<7C>|<7C>u<>s<>}<7D>|<7C><00><><00><>21<00><00>45<00><00><00><00><00><00>]]<00><00>NM0+#%ql<00><00><00><00>  <00><00>LL<00><><00><>a<>]<5D><07><00><00><><00><><00><><00><><00><><00><>$<24>!<21>y<>q<><00><><00><><00><><00><><00><><00><><00><><00><>^<5E>`<60>A<>;<3B><14><16><02><00><><00><><00><><0E><05>B<>=<3D>w<>u<><00><><00><>
kf<00><00><00><00><00><00>oo-+62UQ{x<00><00><00><00><00><00><00><00><00><00>kiTRLJfatwwqffggYX?:<00><><00><><00><><>[<5B>]<5D>I<>E<>G<>L<>m<>d<>t<>r<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>z<>Z<>Z<>[<5B>V<>G<>G<>`<60>W<><>w<><00><><00><><00><><00><>]\<00><00><00><00><00><00><00><00><00><00><00><00><00><00>olKJ43ECMJY[{<00><00><00><00><00>~hd30<00><><00><><00><><00><>c<>`<60>7<>3<>%<25> <20>.<2E>-<2D>O<>M<>e<>`<60>x<>w<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>p<>g<>J<>I<>M<>J<>S<>R<><00><>{<7B><00><><00><><00><><00><> @9rm<00><00><00><00><00><00>snEH83::SHor<00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00>hie`gekj<00>{ssXU!<00><><00><><00><><00><><>x<>W<>T<>2<>4<><1C><18><1C><1B>0<>'<27>+<2B>(<28>8<>1<>8<>3<>=<3D>7<>O<>M<>r<>n<><00><><00><><00><><00><>&!DE[WTQNK)%<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>;:Z[<00><00><00><00>ssliZZ]Ycbonbd[[[\]_mfhjmiXT'"<00><><00><><00><><00><><00><>~<7E>y<>U<>Q<>R<>P<>Q<>L<><00><><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>y<><00><>{<7B><>z<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> OId]xx<00><00><00><00><00><00><00><00><00><00>yvpry<00><00><00><00><00><00><00><00><00><00><00><00>{xhf[[:6<00><><00><><00><><00><><00><><00><>t<>t<>~<7E>x<><00><><00><><00><><00><><00><>{<7B>{<7B>|<7C>y<>w<><00><><00><><00><><00><><00><><00><><00><><00><>o<>u<>u<>n<>u<>r<>m<>k<>}<7D>x<>l<>l<>T<>N<>T<>U<><00><><00><><00><><00><>53uw<00><00><00><00><00><00>yugj87<00><><00><><00><> HBrj<00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00>\W<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><>y<>q<>v<>w<><00><>~<7E><00><><00><><00><><00><><>~<7E>t<>q<>_<>\<5C>\<5C>X<>X<>Z<>u<>o<><00><><00><><00><><00><><00><><00><><00><><00><>%#*)IEbd<00><00><00><00><00><00><00><00><00><00><00><00>wtMO<00><><00><><00><><00><><00><><00><>$%.)>;)':906"<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><><00><><00><><00><><00><><00><><00><> 52 <00><><00><><00><><00><><00><><00><><00><><00><>l<>f<>a<>Y<>8<>:<3A>E<>B<>@<40>;<3B>V<>Q<>g<>c<><00><><00><><00><><00><><00><><00><>00ZX<00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00>tsgd`_]\\[DC #
<00><><00><><00><><00><><00><><00><><00><><00><><00><>z<>b<>c<>n<>j<><00><><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>w<>{<7B><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> 5-IMZVon<00><00><00><00><00><00><00><00>w{d_eckh]_<<!$!C?BCffpplkUS03<00><><00><><00><><00><><00><><00><>b<>c<>g<>b<>t<>r<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>}<7D>\<5C>U<>T<>N<>Z<>Z<><00><><00><><00><><00><><00><><00><>!#51**#<00><><00><><00><><00><><00><><00><><00><><00><>37tp<00><00><00><00><00><00><00><00><00><00><00><00><00>}trhi][pprquplkcb;9
<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>z<>w<>o<>g<>Y<>\<5C>V<>M<>A<>A<>b<>Y<>m<>k<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>BC<00><00><00><00><00><00><00><00><00><00><00><00><00><00>nkUVPM=;IIOLTUiivxvvY[+)<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>f<>f<>\<5C>Y<>O<>H<>V<>V<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> 5/`c<00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00>wvgfWTAD=7--&&0-
<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>w<>u<>m<>o<>o<>i<>^<5E>\<5C>^<5E>Y<>d<>c<>a<>^<5E>t<>o<>}<7D>}<7D><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>52\[vu<00><00><00><00><00><00><00><00><00><00><00><00><00>lode[[_]SRgc}|<00><00><00><00>~xQT <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>s<>s<>p<>h<>`<60>`<60>x<>t<>m<>k<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><>99nk<00><00><00><00><00><00><00><00><00><00><00><00>[Z <00><><00><> ABkm<00><00><00><00>cc74<00><><00><><00><><00><>u<>v<><>{<7B>x<>x<><00><><00><>+(<00><><00><><00><><00><>,<2C>,<2C><00><><00><><00><><00><><00><><00><><12><11><00><><00><><00><00>%$ii6<<00><00><00><><00><><00><><00><><00><><00><><00><>}<7D><00><><00><><00><><00><> <00><00><00><00>"<00><00><00><00><00><00>Y<>Z<><00><><00><>t<>s<><1C><1C>qo
np<00><00>CHPNc<>^<5E><07><02><00><><00><><00><><00><>A<>C<>QP <00><00><00><00><00><00><00><><00><>%<25><1D>@<40>8<> <20><15><00><><00><>)<29>'<27>16<00><00><00><00>BWYb_<>`<60><00><><00><><00><><00><>X<>;<3B>i<>S<><1A> <0B><00><><00><>CR<00><00> D>Jg<00><00><11> <09>|<7C>h<><0F><00><><00><>e<><00><><00><><00><00><00><00><00>!<00>!<00>-.<00>2:3}.<00>.<00> <00> <00>
<00>
<00><><00><><00><>S<><00><>p<><00><>0<><00><>,<2C>_<>޻<00><>T<>&<26><00><>[<5B>)<29><15><04>PG <00><><00><><00><><00><><00><><00><><15><00><> <0A><00><><00><><00><>b<>8<>vb"@i)<00>)a6<00>6H><00>><00>@)A><00>>^8<00>8<00>1R2<00>,:-Y*<00>*<00>*$+Y-<00>-<00>01<00>2N3<00>2 3<00>.j/<00>')(<00>,Q<00><00> <00><><00><><00><><00><><00><><00><>a<>Y<>b<>P<><00><><00><><00><>m<> <20><00><><00><>r<>C<><00><><00><><00><><00><><17><00><>&<26><1B><00><>w<><00><><10><00><>><3E><00><>M<><00><><00><>|<7C>4<><00><><00><>'<27><00><>d<><00><>:<3A>P<><00><><00><><00><><00><><00><><00><00><00><00><00><00><00><00>$%<00>(<00>(<00>+<00>+<00>.0/<00>2#3<00>7<00>7<00><b==B<00>B<00>F;G>I<00>IcI<00>I<00>F8GA<00>AZ9<00>9X0<00>0'_'d<00><00>1<00><00><00>
/ <00><00>/<00><><00><><00><><00><><00><00><>`<60>=<3D><00><><00><>7<><00><>`<60> <0B>S<><00><>h<><00><><00><>-<2D>p<><00><><00><>#<23>x<><04><00><>V<>@<40><00><><00><>k<><00><>E<><00><><00><><00><><00><><00><>Q<>|<7C>4<>Z<><1D><00><><00><><00><00><00> <00> 23<00> !4!,'e'<00>,<00>,<00>1<00>1l5<00>5Y8<00>8<00>:;<00>;d<<00><=B<<00><;<00>;<00>8 95<00>5<00>0 1!+<00>+<00>$8%<00>Cn<00><00><00><00><00><00><><00><><><00><><00><><00><><00><><00><>D<>!<21>n<>9<><00><>q<><00><><00><><00><>~<7E><00><><><00><><00><><1D><00><>A<><00><>[<5B><00><>2<><00><><00><>e<>-<2D><00><>a<><00><>{<7B><16>e<><0E><1C><00><>^<5E><1C>9<><02>P<>'<27>]KN
=
<00><00><00><00>K%J%<00>*<00>*0_0<00>4<00>4u8<00>8E;<00>;@=<00>=1><00>>><00>><00><E=9:<00>:<00>6
7<00>1<2<00>+X,T%<00>%#x<00><00><00><00>5<>R<>n<>z<><00><><00><>,<2C><1B><00><><00><>i<>8<><00><><00><><1F><00><>3<><00><>d<><02><00><>w<><00><>E<><00><>T<><04><00><>Z<><00><>i<><00><>8<><00><><00><>)<29>p<> <0C><00><>i<><00><>h<>P<><06>m<>*<2A><00><><00><><04><00><>/o d |<00>9$?$T*<00>*0R0<00>4!5<00>89p;<00>;F=<00>=O><00>>n><00>><00>=8><<00><M9<00>9<00>56<00>01<00>*.+<00>#@$M<00> j<00> <00> %G<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>S<><1C><00><>6<><00><><01><00><><00><>P<>s<><07>L<><00><>W<><00><><00><><1A><00><>e<>@<40><00><><00><>*<2A><00><>`<60><00><>'<27><00><>m<>k<><1E>e<><1D><00><>R<><00><><00><>ub0  <00><00>Qb<00><00>i&<00>&<00>,-<00>2<00>2S7<00>7<00>:\;c=<00>=<00>>#?<00>><?<00>=]><00>;x<89<00>9<00>5681<00>1,q,&|&_<00><00>L M<00><00>'<27>D<><00><><00><>1<>1<><18><02><00><>d<><00><><00><><1F><00><>F<><00><>9<><00><><14><00><><00><>t<><00><>-<2D>R<><00><><00><>}<7D><00><><16><07><00><>t<><01><00><>L<><00><><00><><00><><00><><00><>L<><00><><00><>t<>5<>2<>
<EFBFBD>!<21><00><><00><00>yu<00><00><00><00>8#f#H)<00>)/X/?4<00>4<00>8<00>8<00>;S<><00>>6?<00>?*?<00>?<00>=o><00>;<;8<00>8<00>304{.<00>.<00>(<00>(<00>!G"<00> D<00>
 <00><00>3<>A<><00><><00><><00><><00><><00><><00><><00><><00><><00><>`<60>8<><00><><00><>s<>7<><00><><00><>+<2B><00><><00><>?<3F><00><><00><>'<27><00><><00><>)<29><00><>8<><00><><1B><00><><00><>S<>;<3B><00><>y<>!<21>j<><19><00><><00><><00><><00><><00><><00><><00><00><00> <00> R]Lb<00> <00> <00>&<00>&:,,<00>1<00>16t6<00>9^:<00><I=<00>>2?a?<00>?<00>>q?!=<00>=*:<00>:6<00>61v1++v$<00>$P<00><00><00> 3<00>$<00><><17><05><0E><1F><17>N<>7<><00><><00><><00><><00><><00><><00><><00><><00><><00><>;<3B>H<><00><><17><00><><08><00><><15><00><><0E><00><><10><00><><00><>j<><00><><16><00><>}<7D><14><00><><04><00><><00><>6<><00><>d<><1F><00><><00><><00><><00><><00><><00><00>hh<00><00><00> h$<00>$n*<00>*"0e05`59q9<00>;m<<00>=?><00>>?_><00>>/=<00>=<00>:R;m7<00>7<00>2o3<00>-<00>-u'<00>'<00> !g<00><00><00><00> <00> <00><00>_<>r<>;<3B>;<3B>B<>5<><00><>h<>R<> <20><0F><00><><00><>l<>G<><00><><00><>s<>H<><00><><00><>h<>a<><00><><00><>[<5B>.<2E><00><><00><><0E><00><>'<27><00><><10>j<><01><00><><00><>j<><12>|<7C>/<2F><03><00><><00><><00><><00><><00><><00><00>p g  >Q<00>!+">(|(.f.<00>3<00>3<00>7Q8m;<00>;<00>=)><00>>S?<00>>m?<00>=S><00>;?<<00>89<00>45<00>/R0D*<00>*<00>#4$<00>1s P <00><00>V<>p<><07><0E><00><><00><><13><00><><00><><00><>2<><00><><00><>s<><00><><00><><12><00><>!<21><00><>><3E><00><>F<><00><>^<5E><00><>u<><00>|<7C><07>H<><00><><00><00><><00><>$<24><07><00><>0<><00><><00><><00><>B<><00><><00><><00><><00><><00><><00>hD = <00><00>-G1Q<00>%<00>%<00>+<00>+m1<00>146<00>6<00>9_:<00><=O><00>><00>>V?O><00>><00>< =:}:n6<00>6<00>1m2<00>,-c&<00>&|<00>R6mD<00><><00><><00><>[<5B>Y<>]<5D>H<><00><><00><><00><><00><><00><><><00><>8<>-<2D><00><><00><>^<5E>j<><03>1<><00><><00><><00><><00><>V<>o<><00><><12><00><><00><><16><00><>l<><00><00><><00><><00><>P<><00><>J<><00><><00><>d<>W<>#<23>0<><0F><00><00> <00> hu<00><00>o#<00>#<00>)<00>)<00>/<00>/<00>45<00>8/9<w<><00>> ?<00>?<00>>c?=>;<00>;<00>7K8<00>3$4<00>. /<00>(")3"<00>" T_<00>s <00> :W<00><><07><00><><00><>U<>I<><00><>h<>@<40><15><01><00><><00><>N<><00><><00><> <0A><00><>E<><00><><00><><19><00><>u<>Q<><00><><00><>8<><00><>v<><0F><00><><00><><00><><00><>D<>><3E><00><>|<7C>#<23>H<><00><><00><>g<>i<>0<>N<>+<2B>V81 , <00><00>&<00> !'9'<00>,
-#2w2<00>67:<00>:!=<00>=<00>>/??<00>?Z><00>><00><=<00>94:6{6C1<00>1<00>+,K%<00>%[<00><00>(<00><00><00><08><1F><00><><00><>_<>X<>c<>K<><00><><00><>3<><00><>z<>7<><00><>A<><00><>L<><00><><1E>[<5B><00><><1A><00><><00><>~<7E><00><>1<>f<><00><><00><><00><><00><><14><01><00><>T<><00><><00><>(<28>`<60><12><00><><00><><00><>b<><00><>S<>rYeP<00><00>y<00>%4%<00>*6+y0<00>0Z5<00>5/9<00>9<00>;u<<00>=Y>x><00>><><00>><00><v=<00>:0;b7<00>7?3<00>3 .x.<00>'f(7!<00>!<00><00><00><00>I | <00><00>p<><00><>I<>G<><00><>o<><0E><00><>D<><14>W<><1E>/<2F><00><><00><>o<>!<21><00><>H<><00><><00><>&<26><00><>e<>%<25><00><>s<><00><><00><>a<>,<2C><00><>k<><00><><00><><1F>h<><07><00><><00><><06><00><><00><>?<3F>><3E><0E>"<22><00><><00><00><00> <00> 6N<00>!/"7(u(<00>-A.H3<00>3<00>7<00>7<00>:e;V=<00>=<00>>7?<00>>b?<00>=t><00>;z<<00>8r9<00>4v5&0<00>0c*<00>*<00>#@$<00>&o5 o 6<00><><00><>H<>N<><00><><00><><00><><00><>n<>?<3F><00><><00><>C<><00><><>.<2E><00><>b<><00><><00><>4<><00><>p<><00><><00><><0F><00><><0F>h<><00><>;<3B><00><><00><>|<7C>g<><00><><00><>N<><00><>Q<>b<><0F><00><>i<>h<>*<2A>J<> <20>dG_ T FI<00><00><00><00>&V&<00>+;,l1<00>126<00>6<00>9e:<00><B=^><00>><00>>q?\><00>><00><6= :<00>:{6<00>6<00>1h2<00>,-y&<00>&<00>( <00><00><00><00><00>5<00><><00><>)<29>(<28>#<23><11>m<>J<>f<>5<><00><>I<>y<>-<2D>_<><07>6<><00><><19><00><><00><>U<>f<><00><><00><>~<7E>p<><00><><00><>_<>6<><00><>i<><00><>o<><04>M<><00><><00><><00><><13><00><><00><>s<>|<7C>R<>u<>M<></<00><00><00><00>O#{#R)<00>)<00>.;/4`4G8<00>8y;<00>;<00>=6><00>>O?<00>>[?<00>=:><00>;<68<00>8<00>3r4<00>.;/<00>(S)b"<00>"V<00><00><00><00>  <00><00><1B>.<2E><00><><00><>m<>_<>j<>K<> <0A><00><><00><><00><>y<>0<><00><><00><>^<5E><02><00><>Z<><00><><00><>@<40><00><><00><><16><00><>H<><00><>d<><00><>o<><00><>Y<>p<><03><00><><00><><1C><00><><00><><00><>P<><0E><12><00><><1C><00><><00><00>
<00>
<00><00>.<00> !'b'<00>,#-32~2<00>67S:<00>:<00><9=F><00>><00>>8?!><00>>b<<00><<00>9:<00>5D61<00>1<00>+<00>+Z%<00>%e<00><00>?K<00><00>Q<>l<><00><><00><><00><><00><><00><><00><>-<2D><06><00><>o<><00><><00><> <0A><00><> <0B><00><><00><><00><><00><>C<>X<><00><><1E><00><><00><>c<><00><>3<>a<><00><><00><><00><>Z<><00><><00><>%<25>y<><1D><12><00><>6<><00><><00><><00><><00><>q<><00><>k<>mlg<00>-~$<00>$d*<00>*<00>/00<00>4(5<00>889<00>;J<<00>=f><00>>V?<00>>.?y=<00>=9;<00>;<00>7M8l3<00>3!.<00>.<00>'c(9!<00>!<00>3=v
L
<00><00>j<>y<>/<2F>.<2E><1A> <0C>x<>V<>a<>1<>E<><05><00><><00><>m<><16><00><>t<>3<><00><><00><><17><00><><00><>Z<><00><><00><>Z<>$<24><00><>q<><00><><00><>+<2B><00><><1E>&<26><00><>}<7D>"<22>_<><10><00><>k<>n<>:<3A>P<>,<2C>H0 <00><00><00><00>!<00>!(>(<00>-.73<00>3<00>7!8;<00>;<00>=><00>>N?<00>>v?<00>=r><00>;S<<00>8&9<00>4750|0<00>*+e$<00>$_<00><00><00> <00> ?a<00><><00><>?<3F>D<><00><><00><>K<>1<><00><><00><><00><><00><>9<><00><>{<7B>*<2A>_<><04><1C><00><><00><>d<><00><><1F><00><>,<2C><00><>c<>0<><00><>t<><00><><00><><1C>5<><00><>`<60><00><><00><><00><><00><><00><><00><>4<><00><>b<><00><>Y<><00><><00><><00><00><00><00>[s"-"{(<00>(<00>-.I2<00>2<00>5<00>5]8<00>8d:<00>:=<<00><<00>=9><00>>?L><00>><00><C=<00>9:d4<00>4<00>-.<00>%&(<00><00><00>  <00><00><00><><12><00><><00><><00><><00><>|<7C>l<>M<>.<2E><00><><00><><00><>X<>v<>#<23><00><><00><><00><>K<><00><>t<> <09><00><>~<7E> <0A>i<><00><><00><><00><><00><>L<><00><>C<>G<><00><><00><><1E><00><>)<29>L<><00><>0<><00><><00><><00><>n<>G<><00><00><00><00>+E<00> !G!<00><00><00><00>8b<00><00><00>%&<00>/<00>/;<00>;<00>E<00>FbM N<00>NZOH(I<00>:/;<00>&<00>&Aov<>v<>*<2A><0F><00><>l<>{<7B>E<><00><><00><>i<>Y<><00><00><00><00><00>!<00>!K<00><00>z<><00><><00><><00><><07><00><>C<><00><>e<><17><00><><00><><1D><00><><10><00><>4<>4<><00><00>9
Q
<00><00> #<00><><00><><1A><00><><00><><00><><00><>U<>F<><04>W<><1A>e<>=<3D>_<>A<> <20><12><00><00>( z<>m<>]<5D>G<>8<><1C>0<><13><00><><00><>3<>"<22> <00><00>Z\<00> <00> 9 =  
TN<00><><00><><00><><00><>|rIGLL<00> <00> <00>
<00>

$,<00><00>LG<00><00><00><00>44cm<00><00> ) <00><00>!(<00><00><00><><00><><00><><00><><04><00><> <20><1D><00><><00><>fj<00><00>mx<00><00><00><00><00><><00><><00><><00><>q<>a<><00><><00><><00><00><><00><>u<><00><><00><><00><00><00><00>9>%+<00><00><00><><00><><00><><00><>4<><1F><00><><00><><00><><00><>F<>5<><00><><00><>[<5B>M<><00><><00><><00><00>96<00><00><00><00><00><><00><>K<>A<><14><06><>l<><00><><00><>t<>e<><00><><00><>4<>-<2D><00><00>kh<00><00><00><00>e^<00><><00><>m<>e<>=<3D>3<>X<>U<><00><><00><><00><00>wtPL<00><00>VS<00><00><00><00>olHK&$<00><00><00><00><00><00>pqejcbAE#%<00><00><00><00><00><00>klSP%#<00><00><00><00>Z^<00><><00><><00><>:<3A>5<><00><><00><><00><><00><><00><>|<7C>s<>m<>x<>s<>r<>k<>S<>O<>6<>-<2D><01><00><><00><><00><>4<>0<><00><><00><><00><>x<>o<>b<><00><><00><><00><><00><>t<>l<>)<29>!<21><00><><00><>;<3B>5<>e<>c<>J<>A<><00><><00><><00><><00><>O<>L<>F<>><3E><00><><><00><><00><><00><>}<7D>72<00><00><00><00><00><00>
 <00><00><00><00><00><00><00>5181<00><00>)"<00><00>kk<00><00><00><00>eg<00><00><00><00>(%e<>d<><05><00><><00><><00><> <0B> <0B>s<>o<><00><><00><>pm<00><00><00><00>nk<00><><00><>z<>o<><00><><00><><00><><00><><00><><00><><00><><00><><06><00><><00><><><00><00><00><00><00><00><00><00>LG<00><><00><>t<>j<>M<>E<>R<>K<><00><><00><><00><><00><>wt<00><00><00><00><00><00>A><00><00><00><><00><>v<>m<>m<>i<><00><><00><> <00>z<00><00> <00><00><00><00>e<>`<60><00><><00><><00><>}<7D>I<>E<>W<>K<><00><><00><><05><01>r<>m<><00><><00><><00><><00><><00><><00><><00><><00><>`<60>[<5B><0F><08><00><><00><><00><><00><><00><><00><><00><><00><>k<>g<><00><><00><><6<00><00><00><00><00><00><00><00><00><00>SQ)+ !B@<00>|<00><00><00><00>
  <00><00><00><00>_['$<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>x<>u<>c<>^<5E>J<>E<>O<>G<>[<5B>S<>r<>l<><00><>|<7C><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>1,ki<00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00>ba<00><><00><><00><><00><>|<7C>v<>d<>^<5E>]<5D>V<>f<>b<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>D<>?<3F><1A><14><00><><00><><00><><00><><0E> <09>P<>L<><00><><00><>" up<00><00><00><00><00><00><00><00>b] <00><><00><><00><><00><><00><><00><><00><><00><>FG<00><00> BG^`CF<00><00><00>}<00><><00><>H<>E<>><3E>7<>Y<>W<><00><><00><><00><><00><>!D;FB42 <00><><00><>j<>e<>.<2E>)<29><13><0F>$<24><1E><<3C>;<3B>U<>V<>z<>w<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> ,*>8a^nk<00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00>ooeb;:"<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>|<7C>w<>q<>p<>r<>h<><00><><00><><00><><00><><00><><00><>$!)%<00><><00><><00><><00><><00><><00><>w<>q<><00><><00><><00><><00><><00><><00><>[Yroyta`/3>;c`<00><00><00><00><00><00><00><00><00><00>tq?=<00><><00><>%%<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>u<>m<>r<>o<>m<>f<>r<>q<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>("A?SRjjlg}wlpmiigji^aUVPRSS\YieopywfdXWEIJG&*
<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>`<60>Z<>f<>^<5E>N<>G<>I<>F<>E<>><3E>c<>_<><00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>?9ih<00><00><00><00><00><00><00><00><00><00><00><00><00><00>adKE46IBQPSTb`\[PM3.<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>v<>s<>Y<>X<>U<>L<>N<>H<>U<>W<>_<>Z<>n<>l<>z<>v<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>1-FC98<00><><00><><00><><00><><00><><00><>
3+MLzy<00><00><00><00><00><00>hkJD.,& 4312<<2150'(*)42;:RQUTJI+(<00><><00><><00><><00><>B<>@<40><14><11><00><><00><><00><><00><> <0B><07>=<3D>:<3A>u<>o<>|<7C>|<7C><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>][<00><00><00><00>~|zznn<00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00>WY-+<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>x<>y<>j<>j<>U<>V<>R<>O<>L<>K<>U<>Q<>U<>W<>|<7C>y<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>!TP<00><00><00><00><00><00><00><00><00><00>^\b`ae_anm}~<00><00><00>}uy\^./<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>z<>x<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>x<>u<>w<>u<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>;<cc<00><00><00><00><00><00><00><00><00><00><00><00>ttGH/+31VXxt<00><00><00><00><00>ec<00><><00><><00><><00><>w<>q<>[<5B>X<>h<>c<>b<>b<>}<7D>{<7B><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>z<>v<>h<>d<>\<5C>U<>a<>\<5C>t<>q<>]<5D>[<5B>k<>i<><00><><00><><00><><00><><00><><00><>QMjf<00>~oopkmhdgqodcvt<00><00><00><00><00><00><00><00><00><00><00><00>wyps<00><00><00><00><00><00>VW.,<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>o<>n<>a<>`<60>X<>[<5B>N<>M<>@<40>><3E>5<>4<>G<>C<>Y<>V<>}<7D>v<><00><><00><><00><><00><><00><><00><><00><><00><><00><> DB]^<00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00>~<00>uqTSB@"&3.86-. <00><><00><><00><>{<7B>O<>M<>C<>?<3F>B<>B<>P<>H<>l<>k<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>~<7E><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>"28NISU\[XV\[YUWXih<00><00><00><00><00><00><00><00><00><00><00><00>VV..<00><><00><><00><><00><> 11;8>><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>{<7B>y<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>9:VUst<00><00><00><00>rq``YV]\rq<00><00><00><00><00><00><00><00><00><00>vz*,<00><><00><><00><><00><><00><><00><><00><><00><>`^|rt&!<00><><00><><00><><00><>v<>q<>U<>T<><00><><00><>0<>,<2C><00><><00><><00><00>67<00><00><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>m<>h<><00><><00><><00><><00><>.-<00><00><00><00><00><00><00>`<60>`<60>U<>L<><00><><00><>L<>F<><00><><00><>LJ -3mu<00><00>KP<00><00><00><><00><><00><><00><><00><><00><><00><><00><><00><00><00><00>Y`<00><00>yz<19><15>W<>K<><00><><00><><00><><00><><00><>w<><00><><00><><00><00>OW<00><00><00><00>Z<>Z<><00><><00><><00><><00><><00><><00><><04><00><><03><00><><00><><00><>EK<00><00><00><00><00><00><00><00>gpc<>`<60><00><><00><>1<><13><03><00><><00><><00><>  <00><00>5+<00>+%9<00>9<00>?_@F=<00>=1w1<00><00><00><00><><00><><00><>@<40><00><>v<> <09><00><><00><>D<><00><>F<><00><>x<><1F><00><><00><>a<><00><><00><>?<3F><16><00><>N<><12><00><>|<7C><11><00><>k<><1E><00><> <09><00><>C<><00><>q<><1C><00><><00><><00><00>FGco<00><00><00><00><00><00><00> 5!4!<00>'<00>'0c0<00>8`9<00>@)A<00>EbF<00>G H<00>E<00>F<00>A,B<00>;<*5<00>5U/<00>/<00>*+<00>&?'s#<00>#<00><00>H<00>O<00> <00> <06>'<27><00><><00><><00><><00><><05><00><><1C><00><>e<>-<2D>v<>1<>R<><04><00><>2<><00><>A<>S<><00><>.<2E><00><><00><>$<24>m<><00><>4<><00><><00><>y<><00><>|<7C><00><><<3C><00><>&<26><00><>5<>'<27><00><><00><>e<>q<>1<><00><>a<><00><><00><><00><><00><>( <00> <00> <00><00>
"5"<00>+ ,b4<00>4;<00>;t?<00>?8A<00>A<00>@_A&?<00>?<00><U=<00>:;<00>8E9j7<00>7G6<00>6<00>4-5<00>1j2<00>-<00>-'}'<00><00><00><00><00> <00> <00><><00><>"<22>.<2E><00><><00><><00><><00><><00><><00><><00><>_<><00><>K<><01><00><><00><><00><><00><>{<7B><0F><00><><00><>j<><00><><0F>"<22><00><><1B><00><>v<><00><><1A><00><>#<23><00><>3<><00><><11><00><>X<><0E><00><><00><>R<><1F><00><><00><><00><><00><>099+9<00>d"<00>"{(<00>(^.<00>.e3<00>3f7<00>7G:<00>: <~<<00><^=o<<00><;<00>;<00>869y5<00>5G1<00>1<,<00>,W&<00>&<00><00>?<00>_<00>/[<00><><00><><00><><00><><00><><00><><00><><00><>i<>H<><00><>|<7C><00><><00><><00><><00><><00><>g<>O<><00><><00><>d<>F<><00><><00><>\<5C>q<><00><><18><00><><00><>\<5C><00><><18>!<21><00><><00><>-<2D><00><>`<60>J<><00><>"<22><00><><17><00><>@<40><0F>f<>J<><00><00>c d <00>_<00><00>#<00>#R*<00>*<00>0<00>0 6n6B:<00>:=<00>=<00>>?<00>><00>?d><00>><00><X=q:<00>:Z7<00>7<00>34/<00>/<00>)%*<00>#<00>#<00><00><00>a <00> <00><00><00><><00><><00><><00><><11><07><15><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>-<2D><04><00><>A<><00><>B<><00><><13><00><><00><>N<><00><><0E>E<><00><> <09><00><><00><>l<><00><>S<>_<> <09><00><>q<>v<>8<>r<><<3C>=<3D><19><00><00>\
S
<00><00>v<00>/V<00>%<00>%<00>+<00>+<00>1<00>1<00>687;w;><00>><00>?A@@<00>@?<00>?<00><<00>=<00>9K:<00>5&6<00>0P1e+<00>+S%<00>%<00><00> 7r0c<00><><00><><00><><00><><00><><00><><00><><00><>S<><1E>V<><13>f<><18>o<><16><00><>6<><00><>I<><00><>R<><00><>S<><00><>.<2E>9<><00><><00><>0<><00><>R<><00><>P<><00><>3<>b<><00><00><><00><>I<><00><><1B><00><>K<><19>}<7D>a<><00><00><00><00><00><00>@$i$"*b*<00>/<00>/<00>4<00>4<00>8<00>8<00>;<<00>=2><00>>`?<00>>\?<00>=D><00>; <78<00>8<00>3S4<00>./{(<00>(<00>!"/<00>Z<00>D
t
#?<00><><04><00><><00><><00><><00><>l<>P<>9<> <0A><00><><00><>U<><11><00><>B<><00><>Q<><00><>i<><1E><00><><00><><16> <09><00><><00><><19><12><00><>b<><00><>}<7D> <0A>L<><00><><00><>`<60><00><>e<>V<>
<EFBFBD><00><>M<><<3C> <09>5<> <0C>X=j d KZ<00><00><00>!<00>!*(k(.A.+33k7<00>7<00>:;==n><00>><00>>K?><00>>V<<00><<00>9:<00>506<00>0m1F+<00>+<00>$%<00><00><00><00> <00> z<00>:<3A>R<><16><1E><1C><13>o<>R<><1A><00><>z<>D<><00><>s<><00><>^<5E>a<><08><0F><00><><00><>p<><00><>Y<><00><>L<><00><>s<><00><><00><><00><>}<7D><00><>T<>N<><00><><00><>.<2E>{<7B><1F><0E><00><><07><00><>{<7B><<3C><12><00><><00><><00><>um94<00><00><00><00><00>$<00>$<00>*.+<00>01<00>586<00>9=:<00><=S><00>><00>>]?6><00>><00><=:<00>:<00>6B7<00>23<00>-.<00>'J(R!<00>!n\<00>
=
<00><00><><00><>h<>h<>N<>;<3B><00><>v<><00><>^<5E><00><>X<><00><>R<>\<5C><06><03><00><><00><>%<25><00><>~<7E>A<><00><><00><><1E><00><>\<5C> <0B><00><>?<3F><00><>Z<><00><>Y<><00><>P<><00><><00><><00><><15><00><><00><>j<>]<5D>+<2B>"<22><00><><00><00><00> <00> <00><00>#3<00>!"%(Y(.P.o3<00>3<00>7,8(;<00>;}=<00>=<00>>?<00>>@?<00>=S><00>;[<<00>8B9<00>4P50d0>*<00>*<00>#9$<00> <00>E 5 <00><00>Z<>w<> <0C><11><00><><00><><1E><05><00><><00><>G<> <0A><00><>s<><00><><00><><00><>t<><00><>Q<><00><>F<><00><>]<5D><00><><00><><14><00><>3<><00><>%<25><00><><06><00><><00><>I<><1F><00><><10><00><><00><>v<><00><><00><>p<>4<>X<>0<>}cr h GN<00><00><00> j&<00>&\,<00>,<00>12Z6<00>6<00>9R:<00><<00><3><00>><00>><?M><00>><00><?=6:<00>:<00>67 2<00>2<00>,*-&<00>&<00><00>S&^<00><00><><00><><18>&<26><00><><00><><00><><00><>d<>E<><00><>X<><00><>n<><00><>S<>W<><01><08><00><><00><>V<><><12>.<2E><00><><00><>v<><00><>$<24><1F><00><><00><><11><00><>W<><00><>e<><00><>B<>&<26><00><>5<><00><><00><>y<><00><>M<>Q<>8<>?)<00> <00> <00><00><00><00>c#<00>#|)<00>)H/<00>/i4<00>4<00>89<00>;U<<00>=[><00>>f?<00>>N?<00>=/>r;<00>;98<00>8<00>3l4<00>.D/<00>(O)B"<00>"UO<00>% Z <00><00>m<>~<7E>1<>/<2F><18> <09>Y<>;<3B><19><00><><00><><00><>S<> <09><00><>{<7B>?<3F><00><><00><>7<><00><><00><>T<><00><><00><>+<2B><00><>i<><0F><00><><1C><00><><00><>z<><00><>+<2B><00><><00><>-<2D><00><><00><><00><>q<>+<2B><1F><00><>/<2F><00>C/^ O "/<00><00>!<00>!<00>'(<00>-.3Q3=7<00>7<00>:<00>:<00><H=(><00>><00>>?<00>={>M<<00><<00>9:<00>5m6X1<00>1<00>+3,h%<00>%?<00><00><00>K~<00><00>Z<>p<><00><><00><><00><><00><><00><><00><><00><>t<> <0C><00><><00><>M<><00><>n<><00><>W<><00><>-<2D>L<><00><><1D><00><><00><><00><><00><>a<><00><>-<2D><00><> <0A>2<><00><><00><>N<>)<29><00><>/<2F><00><><00><>f<><00><><00><>Q<><14><03><00><><00><><00><><00><00>``<00><00>#<00>$<00>$<00>*"+<00>01<00>56<00>9:<00><=<00>>?R?<00>?<00>><00>?<00>=>;<00>;<00>78.3<00>3<00>-_.<00>'T(!s!<00><00><00><00><00> <00> -O<00><><07><00><><00><><00><><00><><00><><00><><00><><00><><00><>J<><1B><00><><00><>1<><00><>s<>2<><00><><00><><<3C>R<><00><><03><00><><00><>O<>f<><00><><00><>v<>-<2D><00><>-<2D><00><><00><>x<>'<27><00><><00><><00><>R<><0E><00><><00><><00><><00><><00><00> <00> <00><00><00><00><00>"<00>"<00>(<00>(S.<00>.n3<00>3<00>78
;<00>;i=<00>=<00>>8?<00>>i?<00>=r><00>;o<<00>8N9<00>4%5<00>/0<00>)O*|#<00>#z<00><00>E, ^ <00><00><><00><> <20>!<21><00><><00><><00><><00><>a<>4<><00><><00><>?<3F><00><>s<><1F><00><>G<><00><>_<><00><>r<><00><><00><><00><><00><> <09><00><><1C><00><>'<27><00><> <0C><00><><00><>V<>(<28><00><>E<><00><><13><00><>V<><12><03><00><><00><><00><><00><00><00> <00> *1<00><00>n<00><00>%
&<00>+<00>+=1<00>16w6:t:=n=<00>>=?f?<00>?<00>>R?$=<00>=X:<00>:<00>6 7<00>1X2z,<00>,O&<00>&n<00>d$`<00>m<><00><> <0C><17><00><><00><><00><><00><>[<5B>5<><00><>_<><00><><00><><00><>^<5E>X<><01><00><><>r<><08><00><><00><><00><>0<>U<><00><><1E><00><><00><>Z<>V<><00><><00><>9<><00><>a<><00><>?<3F><1F><00><>"<22><00><><00><>S<>X<>+<2B>n<>J<>p<00><00>3Ek<00><00>#8$*E*<00>/<00>/<00>4<00>4<00>8<00>8<00>;<<00>=><00>>?<00>>2?<00>=0><00>;'<89M4<00>4#/<00>/()<00>)g"<00>"<00>J;<00>
<00><00>8<>L<> <0C> <0A> <0C><00><>\<5C>;<3B>4<><07> <0A><00><><00><>\<5C><00><><00><>*<2A><00><>K<><00><><00><><18><00><>V<><1E><00><>^<5E><00><><00><> <20><00><>R<><00><>g<><00><>l<><00><>)<29><00><>p<><00><>L<><00><><00><>f<>0<>C<><19>3 <00>
<00><00><00><00> <00> 2'i'"-d-z2<00>2<00>6I7e:<00>:<00><Z=u><00>><00>>m?Q><00>><00><
=<00>90:<00>5K61<00>1<00>+<00>+%<00>%t<00><00><00><00>a<00><1B>2<><00><><00><><00><><00><><00><>s<><00><00><>7<><01>t<>0<><00><>4<><00><>/<2F><00><>#<23>w<> <0C>[<5B><00><>6<><00><>
<EFBFBD><00><><00><>g<><00><>><3E>K<><00><><00><>\<5C> <0C><00><><02><00><><00><>A<><00><><00><>Y<><1A><1B><00><><00><><00><><00><00><00><00> -U<00>$<00>$<00>* +[0<00>0g5<00>5b9<00>9S<<00><><00>><00>>a?<00>> ?=<00>=<00>:!;87<00>7<00>263<00>-<00>-<00>'<00>'<00> T!<00>&b
1
<00><00>.<2E>?<3F><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>[<5B>\<5C><08><00><><00><>y<><12><00><>p<>9<><00><><00><>(<28><00><>l<><1A><00><>F<><00><>p<><00><>w<> <0A>V<><00><><00><><00><><00><><00><>]<5D><1C><00><><00><><00><><00><><00><00>c [ <00><00> .<00>!<00>! (I(<00>-0.\3<00>3<00>780;<00>;v=<00>=<00>>0?<00>>Z?>><00>;q<<00>8i9<00>4]50<00>0<00>*<00>*$<00>$ cs<00>W <00> <00><00><><00><>&<26>*<2A><00><><00><><00><><00><><00><>k<>4<><00><><00><>|<7C> <0C><00><><14><00><><02><00><><06><00><><07><00><><19><00><>1<><00><>"<22><00><><00><>x<><00><>/<2F>9<><00><><00><>:<3A><00><>n<><00><>T<><00><><00><><00><>|<7C><00><>z<><00>uk _ <00>K_4W<00>%<00>%<00>+<00>+$1n16p6:n:<00><Q=<00>>??<00>?P><00>><00><=<00>9|:m6<00>62<00>2<00>,`-<00>&Y': <00> <00><00><00><00><>`<60>p<><06><00><>
<EFBFBD><00><><00><>m<><00><><00><>A<><01>9<><00><><00><><00><>n<> <0C><00><>e<>,<2C><00><><00><>?<3F>=<3D><00><><00><>d<>x<><03><0F><00><>u<><07><00><>6<>}<7D><1E><00><><00><><00><><00><>T<><13><08><00><><00><><00><><00><00><00> <00> CRh<00> #?#&)])<00>./<00>3Y4-8<00>8<00>;<00>;<00>=L> ?<00>? ?<00>?<00>=n><00>;'<K8<00>8 4<00>4/e/)l){"<00>"G<00><00><00> <00><00>\<5C>l<><01><05><00><><00><><00><><00><><00><>_<><1F><00><><00><>]<5D><00><><00><>@<40><00><><00><>3<><00><>~<7E>2<><00><><00><><10><00><>*<2A><00><>P<><00><>V<><00><>#<23>J<><00><><00><>Y<><00><><00><><00><>J<><00><><00><><00><>K<><00><>f<><00><00><00>
<00>
_j<00><00><00> <00> <00>&'<00>,<00>, 2R26<00>64:<00>:<00><F=b><00>><00>>o?k><00>><00><:=<00>9p:6<00>6<00>1<00>1<00>+W,<00>%<00>%<00><00>K W<00><00><><00><>2<>><3E><06><00><><10><00><><00><>q<><00><><00><><13><00><><00><><00><><00><>n<>{<7B><18>F<><00><><1B><00><><00><><00><><00><>S<><00><>!<21>V<><00><><00><>}<7D>`<60><00><><00><>7<><00><>(<28><00><><00><><13><00><><00><>i<>]<5D>0<>L<>!<21>'<00><00><Od<00>$=$*c*<00>/0<00>4;5<00>8V9<x< >><00>><00>?<00>>;?W=<00>=<00>:x;<00>7 8x3<00>3[.<00>.<00>(<00>(<00>!T"<00><00><00>
<00>
<00>a<>n<><00><><00><><00><><00><>9<><17>*<2A><00><>-<2D><00><><00><><00><><00><>><3E><15><00><>n<><07><00><>N<><16><00><>X<><00><><00><>(<28><00><><00><><<3C><00><>B<><00><><1E><00><><00><>Y<><00><00><><00><><00><>@<40><00><0F><00><><00><><00><><00><00><00> <00> <00><00><00><00><00>!<00>! (L(<00>-.3b3v7<00>7<00>:Y;O=<00>=<00>>>??}?><00>><<00><<00>8y95<00>5R0<00>0<00>*.+t$<00>$u<00><00>(<00> <00><00>6<>N<><00><><00><>h<>^<5E>g<>O<><00><><00><>l<>4<><00><><00><>+<2B><00><>Q<><00><>M<><00><>U<><00><>S<><00><>S<><00><>@<40><00><>
<EFBFBD><00><><00><>E<>i<><00><><00><><00><>\<5C><00><>h<><07>"<22><00><>T<><0F><12><00><><00><><00><><00><00><00><00>di<00><00><00><00>G%u%9+v+<00>01<00>5<00>5<00>9<00>9w<<00><o><00>>1?<00>?<00>>B?4=<00>=<00>:*;7<00>7<00>2 3=-<00>-'i'' | <00><00>1<00><00><00><00>*<2A>9<><00><><00><><00><><00><>Y<>3<>w<>F<><00><>P<>D<><00><><00><>}<7D>V<><00><><00><>f<>V<><00><><00><>f<>r<><00><><00><><00><><00><> <0A><00><><00><>(<28><00><>0<><00><><00><>y<>.<2E><00><><1F><00><><00><>j<>u<>D<><00><>V<>vcc R <00><00>,A<00>"#<00>(-)}.<00>.<00>3<00>3<00>7<8S;<00>;<00>=
><00>>K?<00>>y?<00>=v><00>;f<<00>8Q9<00>4/5<00>/0<00>);*>#<00>#*{<00><00><00> <00> n<00><07><17><00><><00><>7<>*<2A>&<26> <0C><00><><00><>><3E><02><00><>l<><10><00><>_<><01><00><>O<><10><00><>V<><00><><00><><11><00><>)<29><00><>!<21>p<><00><>*<2A><00><><00><>]<5D>.<2E><00><>`<60><03>%<25><00><>}<7D>5<>B<><07>B<><17>N0<
/
<00><00>Ga0 U w&<00>&D,|,<00>1<00>1f6<00>6-:<00>:<00><g=<00>>%?R?<00>?<00>>D?<00><<00>=7:<00>:p6<00>6<00>112,,<00>,<00>%^&j<00><00><00><00>j<00><0F>'<27><00><><00><>C<>><3E>F<>,<2C><00><><00><><00><><00><>!<21><00><><1A><00><><00><><00><><00><>C<>l<><01><1A><00><><00><>b<><00><>2<>e<><00><><0F><00><><00><><1C><00><>z<><0F><00><><00><><00><><00><>B<><00><>{<7B>P<><10><13><00><>#<23><00><><00><00><00><00>?$r$?*w*<00>/0<00>45<00>8L9<00>;i<>p><00>>g?<00>>C?<00>=,>];<00>;88<00>34d.<00>.Q(<00>(<00>!<00>!O<00><00><00><00>
<00>
Nq<00><><05><00><><00><><00><><00><><00><><00><><00><><00><><00><>Y<>+<2B><00><><00><>X<><0F><00><>b<><00><><00><>R<> <0C><00><>d<><00><><00><>=<3D><04><00><>%<25><00><><17><00><><00><>r<>b<><00><><00><>I<><00><>E<><00><><00><><00><><00><><00><><00><><00><00><00> <00> <00><00><00>r!<00>!<00>'<00>'a-<00>-<00>23c7<00>7<00>:Q;a=<00>=<00>>Y?%?<00>?^><00>>p<<00><m9<00>9w5<00>5<00>01 +x+<00>$%<00>!@{-c<00>e<>{<7B><00><><00><><00><><00><><00><><00><>0<><05><00><>w<><05><00><>><3E><00><>A<><00><>A<><00><>!<21><00><><1A><00><> <0B><00><><00><><00><><00><>y<><00><>J<>t<><00><><00><><00><>,<2C><00><>/<2F><00><><00><><00><><13><00><><00><>a<>}<7D>Q<>hEVE%<00><00><00>c%<00>%U+<00>+<00>01<00>56<00>9<00>9v<<00><D><00>>?|?<00>>?2=<00>=<00>:c;z7<00>73|3<00>-".<00>'<00>'<00> <00> *}Z<00>3 ] <00><00>L<>V<><0E><11>1<><1E><00><>w<><00><>q<><00><>T<>/<2F><00><><00><>Q<>#<23><00><><00><>)<29> <0B><00><><00><><18>/<2F><00><><00><>W<>f<><00><><00><>D<><00><><><00><><00><><00><>Q<>$<24><00><>(<28><00><><00><>q<>g<>7<>R<>'<27>  <00> r<00><00><00>U"<00>"<00>(<00>(e.<00>.<00>34)8<00>8<00>;<<00>=`>&?<00>?8?<00>?4><00>>3<<00><9<00>9<00>4Q5<00>/90<00>)`*{#<00>#T<00><00><00> <00> <00><00>5<>F<><00><><00><><00><><00><><00><>x<><00><><00><>J<><11><00><>Z<><00><>o<><00><><00><>3<><00><><00><><16><00><><00><>\<5C><00><><00><>)<29><00><>=<3D><00><><19>)<29><00><><00><>)<29><00><>x<><00><>|<7C><00><>H<><00><><00><><00><><00><><00><><00><>;
-
8R<00>& A&v&,J,<00>1<00>1:6<00>6:}:<00><]=<00>>K??@?<00>?w=<00>=<00>:1;<00>6e72<00>2|,<00>,D&<00>&_<00><00> C<00>}<7D><00><> <20>'<27><00><><00><><00><><00><><04><00><><0F><00><>'<27><00><> <0A><00><><00><>z<><00><>;<3B>b<><00><>(<28><00><><00><>t<><00><>5<>`<60><00><><00><>j<>X<><00><><00><>6<><00><>]<5D><00><>B<>=<3D><00><>^<5E><15><00><><00><><00><>t<><00><>l<>~ng^<00>AT<00>#$*8*<00>/<00>/<00>4<00>4<00>89<00>;S<>~> ?<00>??<00>?<00>=m><00>;D<<00>89i4<00>42/<00>/#)<00>)a"<00>"eK<00> I <00><00>Q<>]<5D><00><><00><><00><><00><>K<>-<2D><1F><00><><00><><00><>Y<><10><00><>D<><00><>W<><00><>w<><1D><00><>v<><00><00><>\<5C>N<><00><><00><>8<><00><><00><><12><00><><00><>l<>_<><00><><00><>)<29>N<><00><><00><>N<>O<><0E>+<2B><07><  <00><00>Yvi!<00>!<00>' (<00>-<00>-<00>233S7<00>7<00>:9;B=<00>=<00>>.??<00>?A><00>><00><=<00>9c:D6<00>6<00>12,w,<00>% &<00><00><00>"<00><00>Dm<00><><00><><1C>&<26><00><><00><><00><><00><>e<>:<3A><00><><00><>S<><10>t<>"<22>x<><1C>W<><00><>'<27><00><><01><00><><00><>m<><00><>:<3A><00><><07>?<3F><00><><00><>o<>t<><03><00><>b<><00><>h<><>*<2A><00><><>L<><13>0<><00><>%#<00><00>?N@b<00>$<00>$<00>*<00>*]0<00>0e5<00>5|9<00>9<00><<00><<00>>?P?<00>??<00>?<00>=G>H;<00>;<00>7D8^3<00>3.<00>.(j(0!<00>!<00><00><00> <00> Hc<00><><00><><00><>}<7D>d<>T<><00><><00><><00><><00><><00><>e<>e<><1A><00><><00><>h<><06><00><>]<5D>E<><00><><00><>><3E>/<2F><00><><00><>/<2F><1B><00><>`<60><00><><00><><1B><00><>#<23>X<><00><><00><>n<><00><>Q<><00><><00><><00><><00><><00><><00><><00><00><00> <00> ;Bo<00>8"]"`(<00>(0.l.r3<00>3<00>7U8l;<00>;<00>=?>?<00>?*?<00>?6><00>>9<<00><9<00>9"5<00>5:0<00>0s*<00>*$n$<00>Qg<00>R <00> <00>b<>v<><00><><00><><00><><00><><00><><00><>K<><1E><00><><00><>r<>)<29><00><>a<><00><>q<><00><>k<><00><>m<><00><>l<><00><>c<><00><>_<><00><>><3E><00><>4<><00><><10>U<><00><><00><>e<><05><00><><00><>d<><03><00><><00><>X<>q<>A<>W>R F 5;<00><00><00><00>H&|&@,<00>,<00>12s6<00>6<:<00>:<00><U=<00>><00>>?<00>?<00>>-?U=<00>=<00>:W;37<00>7<00>2$3,-<00>-<00>&7'<00> <<00>3l<00><00>z<><00><>/<2F>:<3A><07><00><>'<27><0E><00><>l<><00><>v<><00><>u<><00><>@<40>?<3F><00><><00><>f<>[<5B><00><><00><>x<><00><><1B>\<5C><00><><12><00><><00><>K<>><3E><00><><00><><1B><00><><1A>Z<><00><><00><>d<><00><>j<>K<><08>#<23><00><>(<28><00><>040<00><00>%K<00>#$*7*<00>/<00>/<00>4<00>4<00>89<00>;B<>~>?<00>? ?<00>?<00>={><00>;K<<00>8 9w4<00>4a/<00>/k)<00>)<00>"#g<00><00><00><00> <00> +J<00><><00><>C<>D<><00><><00><><1A><00><><00><><00><><00><><00><>_<><16><00><><00><><12><00><>S<><00><><00><>%<25><00><>N<><00><>{<7B>%<25><00><>2<><00><>2<><00><>0<><00><><07><00><><00><>K<>!<21><00><>0<><00><><00><>c<>b<>'<27>3<> <09><00><00>
<00>
vq<00><00><00> <00> -'`'-Q-<00>2<00>2a7<00>7 ;q;<00>=><00>><00>?P?<00>?q><00>><00><9=<00>9h:/6<00>6<00>1<00>1,g,<00>%&<00>eB<00><00>'<27>><3E><00><><00><>c<>Y<>w<>^<5E><01><00><>m<>4<><00><>b<><00><>N<>t<><1A>=<3D><00><><07><00><><00><>d<><00><>><3E><00><><13>d<><00><><15><00><><00><>T<>7<><00><>s<> <09>j<>
<EFBFBD><00><><00><><00><><00><><00><>N<>i<>=<3D><00><>x<><00><00><00><00><Ou<00> %B%<00>*3+[0<00>075<00>5 9~9<<00><><00>>B?<00>?8?<00>?#><00>><00>;=<\8<00>8<00>3B4f.<00>.((5!<00>!<00>?<00> "
<00><00><00><><00><>:<3A>;<3B> <0B><00><>#<23><00><><00><><00><><00><><00><>k<> <20><00><><00><>j<> <09><00><>k<>J<><00><><00><>K<>"<22><00><>q<><00><><00><>0<><00><>F<><00><>i<><00><>m<><00><>Q<>^<5E><00><00><>;<3B><11><00><><00><><00><><00><><00><><00><00>` Z <00><00>3<00>!"<(q(!.h.<00>34d8<00>8<00>;e<f><00>><00>?@? @J><00>>"<<00><<00>8w9<00>4W50r0v*<00>*0$<00>$Z<00><00>3<00> Eki<>{<7B><00><><00><><00><><00><><00><><00><>e<>6<>G<><0E>/<2F><00><><00><><00><>i<> <0B><00><>;<3B><00><>/<2F>?<3F><00><><00><>[<5B>k<><00><>*<2A><00><> <20><00><>M<><00><><00><><1C><00><>F<>m<><0F>w<>'<27><00><>e<><00><><00><><0E><00><>gL<00><00><00><00>ap M '<00>' .c.4M4{8<00>8~;<00>;=<00>=<00>=)><00>=><00><A=<00>;4<:<00>:<00>7r8<00>4J5D0<00>0<00>)P*<00>!2"^<00>P<00><00><<3C>R<><00><><00><><12><06><00><><00><>O<>0<><00><>U<><00><>]<5D><00><><00><><00><><00><><00><>b<><00><>u<>g<><00><>@<40><00><><1B><00><>8<><00><><>
<EFBFBD>?<3F><00><>M<><00><><14><00><><15><00><>i<>><3E><00><><00><><04><00><>J<>$<24><00><><00><><00><>\<5C> <0A><00><> <0C><00><><00><><00><><00>q<00> u jq%><00><00>0<00> <00><00><00>i<00><00><00><00><00>.L<`:b~<00>8x<00><00>d<00>X<00><00><00>L|<00><00><00> <00> 
+
<00><00>= W <00>
<00>
<00> <00> c<00>&M7^p <00> <00>oyQ<>V<><00><><00><><00><><00><><00><><00><><00><><00><> <0B><00><><>e<>|<7C>b<>c<>P<><00><><00><>><3E>,<2C><00><><00><><00><><00><> <0A><00><>O<>3<><00><><00><>,<2C> <0B>b<><<3C>Y<>2<><00><><00><><00><><00><><00><><00><><00><><00><>8<>#<23>O<>9<><05><00><>Z<>C<><00><>l<><00><><00><><00><><00><>C<>2<><00><><00><><00><><00><><00><><00><><00><><00><>
<EFBFBD><00><>G;ofmgD><00><00>d]<00><00><00><00><00><00><00><00><00><00><00><00>>@<00><00><00><00>UY<00><00><00><00>CMmx<00><00>nw<00><00>.276<00><00><00><00>ck<00><00><00><00> GJ<00><00><00><><00><><00><><00><>&<26>!<21> <20><16>=<3D>9<><00><><00><><00><><00><><11> <0C> <09><05><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>#<23><17><00><><00><><00><><00><><00><><00><>p<>c<>"<22><10><00><><00><> <09><00><>A<>2<>2<>&<26>.<2E>"<22>.<2E>#<23>,<2C><1D>D<>6<><00><>u<><00><><00><>v<>g<><0E><03><00><><00><>g<>^<5E><00><><00><>ys<00><00>dZ<00><00><00>98xq<00><00>#<00><00><00><00>dc<00><00><00><00><00><00><00><00><00><00><00><00>muGS <00><00><00><00>EL<00><00><00><00>DH<00><00><00><00>ad<00><00>yx<00><><00><><00><><01><00><><00><><00><>!<21><18><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>}<7D>x<>H<>?<3F>5<>,<2C>'<27><1D>I<>@<40><00><><00><><00><><00><>`<60>X<><00><><00><><16><13>Q<>M<>Y<>V<>Y<>R<>R<>H<>7<>0<>=<3D>5<>9<>.<2E>P<>I<><00><><00><><00><><00><>61vr<00><00><00><00><00><00><00><00>|( <00><><00><><00><><00><>p<>j<>k<>d<>z<>u<><00><><00><><00><><00><>JIQO/*<00><><00><><00><><00><>i<>_<>J<>?<3F>J<>G<>p<>i<><00><><00><><00><><00><>WP<00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00>/2y{<00><00><00><00><00><00>||.)<00><00><00><00><00><00><00><00><00><00><00><00>  <00><00><00><00>rp<00><><00><><00><><00><>6<>3<><08><03><02><00><> <0B><05>1<>/<2F>E<>A<>S<>J<>Y<>T<>J<>D<>0<>-<2D><1B><13><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>3<>*<2A>s<>n<><00><><00><><00><><00><> $.*0.4-2/QNss<00><00><00><00> 
<00><00><00><00><00><00><00><00><00><00><00><00><00><00>|wkkys_aGA/- <00><><00><><00><><00><><00><><00><>o<>k<>Z<>Y<>S<>P<>7<>0<>"<22><1B><0F><0F><07><00><00><><00><> <0A><06> <20><1A>8<>2<>N<>G<>z<>u<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>87nk<00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00>YS <00><><00><><00><><00><>v<>r<>n<>h<><00><>{<7B>~<7E><00><><00><><00><><00><>~<7E>y<>q<>l<>i<>P<>I<>4<>1<> <20><17> <09><06><01><00><><16><0E>B<>:<3A>m<>i<><00><><00><><00><><00><>)#LJ`\YS52! 95us<00><00><00><00><00><00> <00><00><00><00><00><00><00><00><00><00><00><00><00><00>|daIF::! <00><><00><><00><><00><><00><><00><>S<>P<>0<>.<2E>)<29>%<25><1B><16><1B><1B>)<29>"<22>+<2B>&<26><<3C>7<>)<29>'<27><12><0F><00><><00><><00><><00><><07><04>#<23> <20>P<>L<><>z<><00><><00><><00><><00><><00><><00><> /0EDZV|y<00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00>xqnZXID64BAVVmglm;:<00><><00><><00><><00><>x<>v<>m<>k<>e<>`<60>_<>_<>e<>_<>z<>w<>s<>m<>q<>i<>\<5C>Y<>B<>A<>J<>C<>5<>8<>l<>f<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> 40HFRIaZzx|z<00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00>ythfgdgg<00><00><00><00>nk\_3/<00><><00><><00><><00><>~<7E>{<7B>]<5D>X<>?<3F>><3E>V<>P<>s<>l<><><><00><><00><><00><><00><><00><>~<7E>l<>e<>M<>K<><<3C>2<><1A><1B>"<22><1D>,<2C>(<28>V<>P<><00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>85b]<00><00><00><00><00><00><00><00><00><00><00><00><00>{<00><00><00><00><00><00><00><00>usacMF1. '#0-#!<00><><00><><00><><00><>|<7C>~<7E>d<>b<>Y<>X<>i<>d<>q<>k<><>{<7B>e<>g<>^<5E>[<5B>d<>`<60>M<>H<>;<3B>;<3B>D<>:<3A>R<>L<>g<>d<><00><>}<7D><00><><00><><00><><00><><00><><00><> 74>AKG??DAFDTRc]|x<00><00><00><00><00><00><00><00><00><00><00><00>xsturpY\WR>>$""<00><><00><><00><><00><><00><><00><>u<>s<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>}<7D>v<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>
1/54FF@=1/  <00><><00><>&!XRwr<00><00><00><00><00><00><00><00><00><00>lljg]X[ZZXECB>63<00><><00><><00><><00><><00><><00><><00><><00><><00><>}<7D>v<>o<>d<>c<>Z<>Y<>S<>P<>P<>I<>f<>`<60><00><><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>
!33?>7795*)1.FDkm~{<00><00><00><00><00><00><00><00><00><00><00><00>vvea^Z`b\\[\86<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>x<>u<>r<>r<>u<>s<>|<7C>z<>v<>n<>q<>o<>{<7B>y<><00><><00><><00><><00><><00><><00><>10EAG@?=/.
20WU<00><00><00><00><00><00><00><00><00><00>usLN,-"($42CBKGecaaZX:<<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>l<>i<>v<>t<>q<>o<>~<7E>{<7B><00><><00><>~<7E>w<>|<7C>{<7B><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>
#"<00><><00><><00><> '*B?dc~}<00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00>}xuOP@A+.-.')$% <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><><00><>~<7E><00><><00><><00><><00><><00><><00><><00><><00><><00><><>e<>_<>y<>{<7B>|<7C>{<7B><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>'(KJcacd{y<00><00>{<00>~<00><00><00><00><00><00><00><00><00><00><00><00>}utVW;5<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>y<>z<>m<>l<>Y<>W<>b<>^<5E>m<>k<>}<7D>v<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>2185EBJNWYggijnprsvvrpxssuSV@@;943.++*$"<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>  <00><><00><><00><><00><><00><><00><><00><><00><> LJvq<00><00><00><00><00><00>njPRDE\V[^romnb\UQKL:8<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><>@=cc|~yzddD@RIFF<46>pWAVEfmt D<><00> datazp<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>
<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>
<00><> * <00><> <00><><00><><00><><00><> <00><>
<00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>
<00><><00><><00><><00><><00><><00><><00><><00><> !<*4!O><00>n<00><00><00><00><00><00><00><00><00>~k
<00><><00><><00><>t<>7<>%<25><00><><00><><00><><00><><00><><00><><00><>t<><00><><00><><00><><00><><00><><00><><00><><00><><16><0E>E<>3<>O<>;<3B>P<>=<3D>]<5D>I<>N<>6<>W<>E<>S<><<3C><00><>m<><00><><00><>! cN<00><00><00><00><00><00><00><00><00><00><00><00><00><00><00>}mTS<3<00><><00><><00><><00><><00><>)* 4$<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>y<><00><>u<><00><><00><><00><><00><><00><>Se<00><00>9*<00><00><00><00>34<00><><00><><00><><00><><00><><00><><00><><00><><00><>*LIAP.<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>
<00><><00><> <00><><00><><00><><00><><00><><00><> <00><> .8>1E%'$<00><><00><><00><> "64.! <00><> <00><><00><><00><><00><> - <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> /<00><><00><><00><><00><> #(*)#)<00><><00><><00><>#2<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><>
  <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><>   <00><><00><><00><>&6 4#H9@/E3WJYJ<00><00><00><00><00><00><00><00><00><00><00><00>zlXR
<00><><00><>l<>m<>*<2A>*<2A>%<25>%<25><03><01><04><06><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><19>!<21>^<5E>`<60>e<>^<5E>l<>a<>g<>j<>j<>}<7D>k<>w<><00><><00><><00><><00><><00><><00><>?2_Z<00><00><00><00><00><00><00><00><00><00>ksGO>=+(/3#1%' <00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> &++-.7'%8=194G-@),%*%$", <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><>  <00><>
<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>
<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>! <00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>
<00><><00><><00><><00><> <00><>
<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><>  
 
<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>
<00><><00><><00><><00><><00><> ("! <00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>/*&<00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><><00><> <00><><00><>+$ <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>(<00><><00><><00><><00><><00><><00><>  <00><><00><><00><><00><> <00><>)!<00><><00><><00><><00><><00><>   <00><><00><><00><> "' <00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><>  
<00><><00><><00><>
<00><>
<00><><00><><00><><00><><00><> <00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> ->+B);(<00><>  !!0<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><>'(.# %+)0&!'%6?J[fgvhvpxt<00><00>o<00>gtXb+5<00><><00><><00><><00><><00><><00><>T<>Z<>B<>E<> <20>"<22><06> <0B><00><><00><><00><><00><><00><><00><><00><><00><><13> <0B>H<>H<>[<5B>]<5D>`<60>e<>Q<>S<>O<>P<>Z<>\<5C>y<><00><><00><><00><><00><><00><><00><><00><><00><><00><> !*2<QX]hgv|<00><00><00>joNYCL?E!&'!--58H0<*<00><><00><><00><><00><><00><><00><><00><><00><>  <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>
 #
($)$89/;&8 
<00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>
<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>'+ *#/<00><><00><><00><><00><><00><><00><><00><><00><>+ <00><> <00><><00><><00><> <00><><00><><00><>  <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>
<00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>  

<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>
<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>
<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>#) <00><> <00><><00><><00><><00><><00><># <00><><00><><00><><00><><00><>%#"<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>&&POrn{vjnnrPS{~y~mlAC<00><><00><><00><><00><><00><><00><>}<7D>y<>Z<>^<5E>I<>G<>%<25>!<21><11> <0C><0E> <09><15><11><1D><1C>@<40>7<>e<>b<>n<>k<><00><><00><><00><><00><><00><><00><><00><><00><>40VVcfU[gg<00><00><00><00><00><00><00><00><00><00><00><00><00>rjtodblgED12<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>~<7E><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> '&+&61gbtplikcTQ^U{s<00><00><00><00><00>~qprmWU84:53-41<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><>z<>x<>y<><00><><00><><00><><00><>o<><00><>l<>~<7E><><00><><00><>y<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>"='A*oX<00>n<00>{<00>|<00>w<00><00><00><00><00><00><00><00><00><00><00>z<00><00><00>v<00>xumibCF;<.0<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>|<7C>x<><00><>~<7E>q<>g<>r<>s<>|<7C><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>- 70PHngunm]q^}hr<00><00><00><00><00><00><00><00><00><00>ujrdnch[WG\K7%#"<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>s<><00><>r<><00><>w<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><>/#MESMUPyr<00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00>{wgaZ[ZGEA>:+ <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>.,)XE<00><00><00><00><00>z"<00> <00> <00> <00> Jb<00><00><00><00>
7<00><00><00> <00> {~@<40>@<40>p<>m<>F<>A<><04><00><>4<>1<><00><><00><>K<>L<><00><00><00><00><00><00><00><><00><>=<3D>6<><00><><00><>O<>G<>!<21><12>
<EFBFBD><00><><00><><00><>i<>Z<><00><><00><><00><><00><><00><><00><>m<>Y<>c<>T<><01><00><><13><01>c<>L<><00><>x<><00><><00><><00><>j<>c<>J<>*<2A> <0C> <0C><00><><18><00><>s<>T<><00><><00><><13><00><>6<><1D><00><><00><><00><>b<>G<>-<2D><00><><00><><00><>w<><00><00><00><00>4%?-  <00><00><00>
<00>Y T <00>
<00>
<00> <00>  <00> <00> <00> R | <00> <00> ( U <00>
 <00>
 0 ^ T <00>  J <00>
<00>
e <00> .k<00><00><00>Ip<00><00><00><00>B<>S<>6<>B<>D<>N<>u<>s<><00><><00><><00><><00><>L<>D<>i<>`<60><00><><00><><00><><00><>z<>j<><1B><04><10><00><>:<3A>%<25><00><><00><>~<7E>p<>m<>e<>j<>g<>l<>n<>J<>J<><0F><11><00><><00><><00><><00><>W<>l<><00><><00><>fx"<00><00><00><00><00><00><00><00><00> <00><00>*Ac<00>u<00>9<00><00>i<00><00><00><00>8K<00><00>OA<00><00><00><00><00><00><00><00><00><><00><><07><07>R<>O<><00><><00><><0E><10>G<>N<><00><><00><><00><><00><>f<>n<><1C><1F><00><><00><><00><><00><>%<25><1D>s<>j<><00><><00><>]<5D>T<><00><><00><>X<>R<><1D><1D><00><><00><>T<>T<><00><><00><>n<>k<>20<00><00><00><00><00><00>ZZ<00><00>,+<00><00><00><00><00><00><00><00><00><00><00>OR  <00><00>VZ<00><00><00><00><00><00><00><><00><><00><><00><><04><07><1E><1E><><00><><00><><00><><<3C>5<><00><><00><>P<>F<><00><><00><>{<7B>s<>\<5C>S<>D<>:<3A>:<3A>.<2E>l<>X<><00><><00><>W<>K<><00><><00><><00><><00><>j<>n<>@<40>N<>/<2F>;<3B><18>&<26><11>!<21><00><><00><00><00><00><00><00>}i\;?<00> <00><00>:a<00><00>Gk<00><00><00><00><00><00>j<00>+<00><00><00>2Efl<00><00><00><00><00><00><00><00><00><00><00><><00><>}<7D><00><>u<><00><>|<7C><00><><00><><00><><00><><00><>;<3B>:<3A><00><><00><>%<25>!<21><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><05><00><>^<5E>H<><00><><00><>T<>:<3A><15><00><><00><><00><><00><><00><>~<7E><00><>r<><00><>d<>w<>VkH_"9<00><00><00><00>Jj<00>t<00><00>^u<00><00><00><00><00><00><00><00>xy_c<00><00><00><00><00><00> 56dd<00><><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>'<27><1D><00><><00><>$<24><1B><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><13><05>j<>a<><00><><00><>`<60>P<><00><><00><><00><><00><>\<5C>T<>1<>)<29> <0A><05><05><00><><00><><00><><00><00><00><00><00><00><00><00>n~<00><00><00> +<00><00><00><00>0C`Zx-H<00><00><00><00>cZ<00><00><00><00><00><00><00>  <10><1F><1A>+<2B>+<2B>:<3A>O<>_<><00><><00><><00><><00><>3<>6<><00><><00><>2<>6<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>2<>)<29><00><><00><>C<>4<><00><><00><><00><><00><>b<>m<>,<2C>0<><1C><14><00><><00><><00><><00><><00><00><00><00><00><00>u<00><R<00><00>75<00><00>3D<00><00><00><00><00><00><00>/?<00><00>WN<00><00>CAl<00>|<00>q<00><00><00>r<><00><>v<><00><><00><><00><><00><><00><><00><><00><><00><><00><><19><11><00><>y<>1<>'<27><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>t<>|<7C><00><><04><00><><00><>><3E>G<><00><><00><><00><><00><>o<><00><>\<5C>n<>><3E>Q<>FY*>&<00><00><00><00><00><00>'?<00><00>R\<00><00>XSLB;5
<00><00>ti<00><00>aY<00><00><00><00><00><00><00><00><00><00><00><><00><><00><><00><><00><><00><><00><><00><><12><01>V<>@<40><00><><00><>!<21> <0A><00><><00><>9<><1A> <0B><00><><00><><00><><00><><00><><00><><00><> <0C> <0C>\<5C>Z<><00><><00><>]<5D>h<><13><19><00><><00><>l<>b<>2<>*<2A> <0C><01><00><><00><><00><><00><><00><00><00><00><00><00>Zf4F<00><00><00>-I<00><00>
+2YCiSw4T!<00><00>,Q<00><00><00><00><00>!!?3L,A;F2<>6<><0F><07> <20><14>U<>I<><00><><00><><00><><00><>f<>S<><00><><00><>i<>Z<> <0A><00><><00><><00><><00><><00><><00><><00><> <0A><00><>d<>D<><00><><00><><17> <0C><00><><00><>p<>t<> <20><1F><00><><00><><00><><00><><00><><00><><00><><00><><00><00>q<00>Hc6<00><00><00><00>-L<00><00>AX<00><00> DHRN65<00><00><00><00> ?<00><00><00> 8WUv<00><00>x<00><00><00>q<><00><>{<7B><00><><00><><00><><00><><00><><00><><00><><08><19>Y<>f<><00><><00><>l<>h<><12><02><00><><00><><00><><00><><00><><00><><00><><00><> <0A><00><>z<>g<> <0A><00><><00><><00><>_<>F<><11><03><00><><00><><00><><00><><00><>p<>P<>8<>*<00><00><00><00><00><00><00>Sk<00><00><00>Go<00><00>,.W]<00>Nv%G<00>s<00><00>
AX{<00><00><00><00><00><00><00><00><00><00><><00><><00><><00><><00><><00><><00><><00><>&<26>'<27>u<>v<><00><><00><>#<23>.<2E><00><><00><>C<>J<><00><><00><><00><><00><><00><><00><><00><><00><> <0A><12>Z<>[<5B><00><><00><>^<5E>C<><00><><00><><00><>w<>_<>E<>I<>.<2E>"<22><07><15><00><><00><><00><><00><00><00>lzc;&<00><00><00>}j_~n*I?bXWNF=;4<00><00>E?<00><00>54w<00><00><00><00><00>cTjX<>o<>a<>u<><00><><00><><00><><00><><00><><00><><00><><02>.<2E>1<><00><><00><>b<>d<><1C> <20><00><><00><><00><><00><><00><><00><><15> <0C>?<3F>7<><00><>~<7E><00><><00><><00><><00><>9<>?<3F><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>n<00>]t4N5<00><00><00><00>=]<00><00>k<00><00><00>&Lmk<00>m<00>Ng <00><00>LN<00><00><00><00><00><00><00><00><00><00><00><><00><><00><><00><><00><><00><><00><00>#<23>!<21>r<>k<><00><><00><>%<25><1B><00><><00><>1<>!<21><00><><00><><00><><00><><00><><00><><00><><00><><15><07>m<>i<><00><><00><>`<60>m<><00><><00><><00><><00><>{<7B><00><>L<>]<5D>,<2C>=<3D><03> <0A><00><><00><00><00><00><00><00>rk+$<00><00><00>w <00><00>
YN|v<00><00>kc71<00><00>_Z<00><00><00><00><00>4$L=TGNCa<>Q<>c<>T<>p<>a<><00><>v<><00><><00><>
<EFBFBD><00><>n<>Z<><00><><00><>]<5D>J<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>"<22><08><00><>}<7D>.<2E><1B><00><><00><>W<>E<>(<28><16><00><><00><><00><><00><><00><><00><><00><><00><>n`VEXI1"<00><00><00>;/<00><00>d\<00><00>1'<00><00><00><00>{t)(<00><00>]v<00><00>;^}<00><00><00><00><00><00><00><00><00><00><><00><><00><><00><><00><><00><><00><><00><><02><00>5<>;<3B><00><><00><><00><><00><>t<>~<7E>!<21>,<2C><00><><00><><00><><00><><00><><00><><00><><00><><02>
<EFBFBD>V<>\<5C><00><><00><>]<5D>b<><00><><03><00><><00><>o<>g<>5<>%<25>%<25> <0C>
<EFBFBD><00><><00><><00><><00><00><00><00><00><00><00><00>HO<00><00><00>$<00><00><00><00>>*K@\ +<00><00><00><00>*t<00><00><00><00>  &.:<1C>5<><10>%<25><1D>0<>;<3B>O<>s<><00><><00><><00><><1E>'<27><00><><00><>Q<>S<><1D>#<23> <0A> <0A><00><><00><><00><><00><><00><><00><><<3C>A<><00><><00><>*<2A>4<><00><><00><>Z<>e<><18>$<24><00><><00><><00><><00><><00><><00><><00><><00><><00><00><00><00>~<00>P] <00><00>@=<00><00>Q><00><00><00>C5[RSR32<00><00>f<00><00><00>4?PZachade`K<>F<>N<>M<>_<>`<60><00><><00><><00><><00><>8<>F<><00><><00><><00><><00><>n<>x<><1D>!<21><00><><00><><00><><00><><00><><00><><00><><00><><1F><00><>~<7E>Z<><00><><00><>V<>Q<><01><00><><00><><00><><00><><00><>s<>x<>S<>]<5D>-<2D>;<3B>$<00><00><00><00><00>v<00>+E<00><00><00>)J<00><00> (EcFR>B<00><00><00><00>Z` qv<00><00><00><00><00><00><00>3$?<06><1D><00><><11><15>&<26>7<>H<><00><><00><><04> <0A>=<3D>H<><00><><00><>)<29>2<><00><><00><><00><><00><><00><><00><><00><><00><><00><05>I<>K<><00><><00><>6<>$<24><00><><00><><00><>|<7C>?<3F>#<23><07><00><><00><><00><><00><><00><><00><>{<7B><00>x<00>cZ? <00><00><00><00>GZ<00><00>s<00><00><00>,PYze<00>Di@<00><00>,O<00><00><00>0OVxi<00><00><00><00><00><><00><>v<><00><>v<><><00><><00><><00><><00><><00><><00><>^<5E>V<><00><><00><>g<>T<><12><03><00><><00><><00><><00><><00><><00><><06><00><>><3E>5<><00><><00><><1D><19><00><><00><>A<>=<3D><03><02><00><><00><>s<>w<>]<5D>_<>><3E>@<40>.6&. <00><00><00><00>h<00>
<00><00>0P<00><00>6l<00><00><00>^~<W<00><00>`x<00><00> ES<00><00><00><00><00><00><00><00><00><><00><><00><><00><><00><><00><><00><><00><>&<26>!<21>p<>k<><00><><00><>"<22><19><00><><00><>1<>(<28><00><><00><><00><><00><><00><><00><><00><><00><>"<22><11><>p<><00><><00><>o<>f<>$<24>!<21><00><><00><><00><><00><>V<>]<5D>3<>;<3B><11><1B><00><00><00><00><00><00>k<00>:Q<00><00><00>$I<00><00><00>>[[{i<00>8\<00><00><00>0<00><00><00><00> !(1=,5*+<17><14>'<27> <20>1<>+<2B>F<>B<>z<>r<><00><><00><><1A> <0A><00><><00><>?<3F>/<2F><00><><00><><00><><00><><00><><00><><00><><00><> <0C><00><>L<><<3C><00><><00><>&<26><16><00><><00><>f<>\<5C><0E><00><00><><00><><00><><00><><00><><00><><00><>w<>rh[OIF<00><00><00><00>d]<00><00>yw<00><00># KNLJ75<00><00><00><00><:<00><00><00><00>./YW}x<00><00>zuv<>s<><00><>{<7B><00><><00><><00><><00><><00><><00><><02><00><>f<>^<5E><00><><00><>^<5E>L<><1B><0F><00><><00><><00><><00><><00><><00><><00><><00><>&<26>)<29>t<>{<7B><00><><00><>f<>n<>
<EFBFBD><14><00><><00><><00><><00><>w<><00><>c<>l<>T<>d<>@K%<00><00><00><00><00><00>Ob /<00><00>.E<00><00> ?PQWMP1.<00><00>=2<00><00><00><00><00><00><00> <00><><00><><00><><14><03><14><00><>*<2A><1B>r<>[<5B><00><><00><><0E><00><><00><><><1D> <0A><00><><00><><00><><00><><00><><00><><00><><00><><03><00><>G<>6<><00><><00><>4<> <20><00><><00><>a<>P<>=<3D>#<23><01><00><><00><><00><><00><><00><><00><><00><><00><00><00><00><00>r?+<00><00><00><00>ka<00><00>k<00><00> *Mf<00>]<00>On ><00><00>NV<00><00><00><00>9=`kgqy<00><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><1D><17><>q<><00><><00><>n<>X<>.<2E><16><00><><00><><00><><00><><00><><00><><00><><00><><<3C>"<22><00><>d<><00><><00><>x<>_<>.<2E><17><00><><00><><00><><00><><00><>w<>r<>U<>n<>R<>H7/3 <00><00><00><00>g<00>"=<00><00>b<00><00><00><T{j<00>Sj<00><00>FG<00><00>GR<00><00><00><00><00><00><00><00><><00><><00><><00><><00><><00><><00><><00><><10><02>Y<>[<5B><00><><00><> <20>.<2E><00><><00><>S<>N<><0F><04><00><><00><><00><><00><><00><><00><><05> <0B>\<5C>d<><00><><00><>_<>Y<><00><><00><><00><><00><>i<>N<>D<>+<2B>$<24><07><0E><00><><00><><00><><00><00><00><00><00><00>h|%;<00><00>dn  <00><00><00><00>6Ni<00>q<00>Ji<00><00><00>.D<00><00><00><00>+- S@Q<><<3C>^<5E>a<>U<>a<>n<><00><><00><><00><><00><>
<EFBFBD>I<>E<><00><><00><>5<>+<2B><04><00><><00><><00><><00><><00><><00><><00><><01><05>><3E>B<><00><><00><>$<24>%<25><00><><00><>|<7C>h<>5<><1C> <0A><00><><00><><00><><00><><00><><00><><00><><00>uqXA, <00><00><00><00>o9$<00><00><00>t<00><00>/&[SZOE9<00><00>cY<00><00>cW<00><00><00><00><00><00><00><00><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>3<>?<3F><00><><00><><00><><00><>f<>\<5C><16><05><00><><00><><00><><00><><00><><00><><00><><00><><1C> <0A><00><>}<7D><00><><00><><00><><00><>%<25>*<2A><00><><00><><00><><00><>m<>n<>Y<>Y<>2<>9<>#0<00><00><00><00><00><00><00>e<00>+<00><00>Ec<00><00>
*?_^<00>h<00>Ad<00><00><00><00>g<00><00><00><00><00><00>
#46<0F>'<27>(<28>=<3D>C<>U<>Y<>k<><00><><00><><00><><00><>@<40>C<><00><><00><>F<>S<><11><17><00><><00><><00><><00><><00><><00><><17><1A>e<>j<><00><><00><>H<>A<><00><><00><><00><>t<>D<>'<27><05><00><><00><><00><><00><><00><><00><><00><><00><00>z<00>mGN 
<00><00>\X<00><00>lh<00><00>KMOQNb1<00><00>@`<00><00><00>0LIgs<00><00><00><00><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <0C><15>[<5B>]<5D><00><><00><>T<>W<><04><0F><00><><00><><00><><00><><00><><00><><00><><00><>*<2A>/<2F><00><><00><><04> <0C><00><><00><>'<27>/<2F><00><><00><><00><><00><>s<><>_<>m<>:<3A>G<>&7 <00><00><00><00><00><00>J^<00><00><00>Lf<00><00><Tsh<00>Ml(G<00><00>o<00><00><00>A_{<00><00><00><00><00><00><00><00><00><><00><><00><> <0B><07> <09><1D><0F>3<>!<21>n<>S<><00><><00><>)<29> <0B><00><><00><>H<>+<2B><02><00><><00><><00><><00><><00><><00><><00><><10><00><>l<>_<><00><><00><>I<>H<><00><><00><><00><><00><>t<>o<>@<40>7<><1B><0E><00><><00><><00><><00><><00><00><00><00>w<00>@S<00><00>c{<00> s<00><00><00>$8BCF2-<00><00><00><00>&<00><00><00><00>'NCUJYPD0H<>3<>Q<>?<3F>k<>b<><00><>v<><00><><00><><0F><00><>^<5E>L<><00><><00><>u<>\<5C><1E><07><00><><00><><00><><00><><00><><00><><00><><00><>;<3B>!<21><00><><00><><16><00><><00><><00><>c<>@<40>(<28><08><00><><00><><00><><00><><00><><00><><00><><00><>t<00>V^1D<00><00><00>w<00>0J<00><00>So<00><00>(FGm^<00>Ms%J<00><00>c{<00><00>'CVsn<00><00><00><00><00><00><00><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>9<>-<2D><00><><00><> <0C> <09><00><><00><>-<2D>-<2D><00><><00><><00><><00><><00><><00><><00><><00><><16><0E>p<>k<><00><><00><>h<>b<><11><17><00><><00><><00><><00><>c<>W<>D<>;<3B><1A><13><00><><00><><00><00><00><00><00><00>~<00>CT<00><00><00>A<00><00><00><00> /:XC_!=<00><00><00>2s<00><00><00><00><00><00>   %,<1F>/<2F>3<>=<3D>E<>J<>t<><00><><00><><00><><00><><00><>%<25>/<2F><00><><00><>4<>3<><00><><00><><00><><00><><00><><00><><00><><00><><15><02>I<>9<><00><><00><> <0C><00><00><><00><>:<3A>'<27><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>lgHH')<00><00><00><00><00><00>D@<00><00>tt<00><00>/2UVFO.2<00><00><00><00>,-<00><00><00><00>0/``nqxyttr<>r<><00><><00><><00><><00><><00><><00><><00><><00><>5<>,<2C><00><><00><><00><><00><><00><><00><>-<2D>%<25><00><><00><><00><><00><><00><><00><><00><><00><>&<26><1A>x<>g<><00><><00><>Y<>G<><16><07><00><><00><><00><><00><>n<>b<>U<>O<>H<>A<>>C(;<00><00><00><00>Wq <00><00>8U<00><00>!7ROm/N!<00><00>Wt<00>=Z<00><00><00><00><00><00><00><00><><00><><02><00><> <0B><08><17>3<>A<>X<>f<><00><><00><>
<EFBFBD><11><00><><00><>4<>9<><00><><00><><00><><00><><00><><00><><00><><00><><1C> <0B>e<>R<><00><><00><>R<>@<40><00><><00><><00><>n<>Y<>=<3D>/<2F><14><1B><00><><00><><00><><00><><00><><00><00><00><00>~iN;<00><00><00>wb<00><00><00><00><00>@0^QlaLB<00><00>lb<00><00>9)TC_N`K_RZ<>M<>g<>Z<>u<>f<><00><><00><><00><><00><><1A> <0B>}<7D>l<><00><><00><>t<>a<><19><01><00><><00><><00><><00><><00><><00><>
<EFBFBD><00><>F<>-<2D><00><><00><>$<24><07><00><><00><>b<>B<><1B><03><00><><00><><00><><00><><00><>q<>m<>T<>X?A(<00><00><00><00>~j&<00><00>]K<00><00> <00>I:aUTH <00><00>h_<00><00>:.ym<00><00><00><00><00><00><00><00><00><><00><><00><><00><><00><><00><><03><00><>*<2A><15>f<>U<><00><><00><>#<23><10><00><>}<7D>&<26><0F><00><><00><><00><><00><><00><><00><><00><><00><><13><00><>l<>R<><00><><00><><00><>_<>%<25><05><00><><00><><00><><00><>h<>J<>R<>5<>'<27> <0B><00><00><00><00><00><00>q<00>D_<00><00><00>6<00><00><00><00>*DQ:; <00><00><00><00>\[<00><00><00><00><00><00><00><00>% #<23><1A>1<>(<28>`<60>^<5E><00><>|<7C><00><><00><><00><><00><>U<>L<><00><><00><>M<>A<><02><00><><00><><00><><00><><00><><00><><00><><00><><00><>7<>&<26><00><><00><><0F><12><00><><00><>r<>x<>#<23>(<28><00><00><><00><><00><><00><><00><><00><><00><><00>{}^bJ'<00><00><00><00>>C<00><00>d<00><00><00>,CY`mo`^$*<00><00>*,<00><00><00><00>$!<<bbxv<00><00><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>5<>-<2D>t<>n<><00><><00><>r<>d<><15> <0A><00><><00><><00><><00><><00><><00><><00><><00><> <20><16>y<>v<><00><><00><>c<>i<><14> <20><00><><00><><00><><00><><00><><00><>a<>s<><<3C>L<>/<00><00><00><00><00><00>QH<00><00><00>9+<00><00><00>90RId[70<00><00><00><00>`U<00><00><00><00><00><00>
<00> <00><08><00><><10><00><>/<2F><1E>W<>A<><00><>k<><00><><00><>:<3A>(<28><00><><00><>T<>;<3B><00><><00><><00><><00><><00><><00><><00><><00><><15><00>e<>J<><00><><00><>_<>D<><00><><00><><00><><00><>N<>1<><0E><00><><00><><00><><00><><00><><00><><00><><00><00>m}]sAZ!<00><00>s<00><00><00><00><00><00> ;4FCM02<00><00><00>;W<00><00><00> 52LH\NlJbY<>r<>r<><00><><00><><00><><00><><00><><00><><00><><10>$<24>j<>t<><00><><00><>Q<>[<5B><04> <0C><00><><00><><00><><00><><00><><00><><05><00><>D<>9<><00><><00><><1C><05><00><><00><>G<>+<2B><00><><00><><00><><00><><00><>s<>x<>]<5D>l<>P<>Z><!<00><00><00><00>|n2<00><00>ZN<00><00>* KGCF,<00><00>o<00><00>_<00><00><00><00><00><00><00><00><00><><00><><00><><05><00><><02><07><13>)<29>6<>j<>q<><00><><00><><13><19><00><><00><>O<>P<><10><15><00><><00><><00><><00><><00><><00><>6<><<3C>Y<>[<5B><00><><00><>R<>N<><02><00><><00><><00><>w<>m<><<3C>/<2F> <20><19><05><00><><00><><00><><00><00><00><00>ynPB<00><00>~v  ro<00><00>ABHM"<00><00><00><00>lk<00><00><00><00>  *--*/<2F>-<2D>C<>B<>s<>y<><00><><00><><00><><00><><11><1E>f<>p<><00><><00><>\<5C>S<> <0A><00><><00><><00><><00><><00><><00><><00><><16><04>f<>^<5E><00><><00><>D<>H<><00><><00><><00><><00><>(<28>/<2F><00><><03><00><><00><><00><><00><>c<>\<5C>]R:/!<00><00><00><00><00>z)*<00><00>GH<00><00>(ADgKj,<00><00>i<00><00><00>7c|z<00><00><00><00><00><00><00><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>G<>3<><00><><00><><13><00><><00><><00><>F<>/<2F><1D><00><><00><><00><><00><><00><><00><><00><>/<2F>8<><00><><00><><00><><00><>r<>f<><1B> <0B><00><><00><>y<>n<>[<5B>R<><<3C>0<><18><1B><00><><00><00><00><00><00><00>~<00>1=<00><00><00><00>3<00><00><00><00>MIm<00>j<00>1Y<00>!<00><00><00>In<00><00><00><00><00><00> ##8'<27>?<3F>9<>M<>P<>a<>m<>~<7E><00><><00><><00><><00><>,<2C> <20><00><><00><>,<2C>!<21><00><><00><><00><><00><><00><><00><><00><><00><>%<25><1B>o<>v<><00><><00><>c<>k<><00><><00><><00><><00><>U<>_<><13> <20><00><><00><><00><><00><><00><><00><><00><00>x<00>gz-<00><00><00>Rk<00><00>c<00><00><00>6FcD_9R<00><00>2J<00><00> A4ZNkYaSjY}<7D>h<>}<7D>l<><00><><00><><00><><00><><00><><00><>+<2B> <20><00><>z<><00><><00><><00><>x<>+<2B><15><00><><00><><00><><00><><00><><00><><00><><00><>6<><13><00><>x<> <0C><00><><00><><00><>S<>B<><10><00><><00><><00><><00><><00><><00><>s<>k<>O<>ZB(<00><00><00><00><00><00>cS<00><00>3#<00><00> dWnfZW <00><00>[T<00><00>9.s<00><00><00><00><00><00>
<00><00><><00><><00><><00><><15><00><><19><02>H<>2<>o<>`<60><00><><00><><14><0F><00><><00><>,<2C>,<2C><00><><00><><00><><00><><00><><00><><00><><00><>%<25><16>p<>b<><00><><00><>_<>V<><00><><00><><00><><00><>R<>T<>!<21>"<22><00><><02><00><><00><><00><><00><><00><00><00><00><00><00>[u7<00><00>k<00><00>Zl<00><00><00><00> <00><00><00><00> &q<00><00><00><00>!+A2E5WFF<>H<>B<>U<>V<>k<>{<7B><00><><00><><00><><00><><00><>9<>+<2B><00><><00><>Z<>J<><17><08><00><><00><><00><><00><><00><><00><><0F><10>@<40>E<><00><><00><> <0A><13><00><><00><>e<>T<>$<24> <0C><00><><00><><00><><00><><00><><00><><00><>k<>mRI/ <00><00><00><00>ra<00><00>AF<00><00><00>/P:T/><00><00><00><00>,)<00><00><00><00>5Bm<00><00><00><00><00><00><00><00><><00><><00><><00><><00><><00><><00><><00><><01><08>3<>-<2D><00><><00><><07><00><><00><>t<>-<2D><1A><0E><08><00><><00><><00><><00><> <09><08>7<>$<24>r<>d<><00><><00><>a<>O<><00><><00><><00><><00><>a<>W<>9<>0<>"<22><19><12><07><00><><00><><00><00><00><00><00><00>hs0B<00><00>p<00> *<00><00><00> (GDg?a:<00><00>a<00><00><\<00><00><00><00> .G3G7J-<2D>=<3D>"<22>-<2D>%<25>&<26>H<>D<>f<>X<><00><><00><><<3C>&<26><00><><00><>i<>L<>5<><19><04><00><><02><00><><00><00><>$<24><06>d<>B<><00><><00><>=<3D><18><00><><00><><00><><00><>6<>@<40><1C>'<27><00><><00><><00><><00><><00><><00><>mkXM)(<00><00><00><00>Un<00><00>n<00><00><00>(7PGe/T<00><00><00>$G<00><00><00>1QLi|<00>z<00>j<00>u<><00><><00><><00><><00><><00><><00><><00><><00><><00><><12><18>h<>p<><00><><00><>y<>w<><1D><1F><00><><00><><00><><00><><00><><00><> <09><04>F<>E<><00><><00><>&<26>(<28><00><><00><>D<>E<><00><><00><><00><><00><><00><><00><>p<>~<7E>E<>W<>(<00><00><00><00><00>k<00>>[<00> <00><00>.=<00><00>ZZ^ZZQ<00><00>]T<00><00>+ <00>~<00><00><00><00><00><00> <00><00><><05><00><02> <0C>-<2D>?<3F><<3C>H<>m<>w<><00><><00><>*<2A>,<2C><00><><00><>B<>E<><00><><00><><00><><00><><00><><00><><00><><00><><06><0F>c<>g<><00><><00><>Y<>K<><00><><00><><00><><00><>[<5B>P<>:<3A>,<2C><06><00><><00><><00><><00><><00><><00><00>oh[P& <00><00><00><00>d_}|<00><00>5755.<00><00><00><00>2<00><00><00><00>'8@XVQHbS[<5B>H<>i<>S<>n<>Z<><00><><00><><00><><00><> <0C><00><>a<>N<><00><><00><>c<>S<>-<2D><17><00><><00><><00><><00><><00><><00><><00><><00><>5<>#<23><00><><00><><12><02><00><><00><>Z<>D<> <20><07><04><00><><00><><00><><00><><00><><00><><00><>aLM4 
<00><00><00><00>gR&<00><00>H\<00><00>7X^}h}BJ<00><00><00><00>6P<00><00> (C^s<00><00><00><00><00><00><00><00><><00><><00><><00><><00><><00><><00><><05><00><> <0C>P<>T<><00><><00><><00> <0B><00><><00><><1C>"<22><00><><00><><00><><00><><00><><00><><00><><00><><1A><1B><00><><00><><00><><00><><00><><00><><1C><10><00><><00><><00><>{<7B>Y<>@<40>B<>%<25><16><00><><00><><00><00><00><00><00><00><00>zF1<00><00><00><00>&<00><00><00><00>@JQjc#J<00><00>{<00><00> Cb<00><00><00><00><00>  %"15H1<>=<3D>9<>G<>:<3A>G<>O<>M<><00><><><00><><00><><<3C>9<><00><><00><>U<>W<><10><11><00><><00><><00><><00><><00><><00><><18><11>_<>U<><00><><00><>X<>M<><00><><00><><00><><00><>D<>><3E><1C>#<23><00><><00><><00><><00><><00><><00><><00><00>i|=T5<00><00><00><00>\u<00><00><00><00> !F9^>b9<00><00><00>/<00><00><00>+Me<00><00><00><00><00><00><00><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>W<>J<><00><><00><>J<>?<3F><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>B<>4<><00><><00><> <0A><00><><00><>y<>#<23><18><00><><00><><00><><00><>d<>b<>R<>G<>A<>8<>.%<00><00><00><00><00><00>hc <00><00><00><00><00>'I:Y)E(<00><00>nc<00><00>@3tj<00><00><00><00><00><00><00><00><00><><00><><00><><00><><05><00><><0F><00><>?<3F>'<27>q<>X<><00><><00><>0<><15><00><><00><>P<>8<><11><00><><00><><00><><00><><00><><00><><00><><1A><15>v<>w<><00><><00><>\<5C>c<><10><1A><00><><00><><00><><00><>Q<>C<><1C><0F><00><><00><><00><><00><><00><00><00><00><00><00>kq0,<00><00><00>s <00>n<00><00>4)OHSJ:-<00><00><00><00>$<00><00><00><00> <00>)I9O?P:W<>D<>V<><<3C>o<>Y<><00><>f<><00><><00><><00><><00><>8<>0<><00><><00><>O<>E<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>F<>@<40><00><><00><>7<>4<><00><><00><>z<>w<>0<>3<><03><07><00><><00><><00><><00><><00><><00><>p_mIV3D#<00><00>|<00>$z<00><00><00><00>!(0<00><00><00><00>w<00><00>Vs}<00><00><00>qxSK5&R<>=<3D>g<>N<><00><><00><><16><00><>v<>h<><00><><00><>5<>:<3A><00><><00><><00><><00><>1<>4<><00><><00><><00><><00><><00><><00><> <20>"<22> <09>
<EFBFBD><18><11>\<5C>Y<><00><><00><><00><><00><><>q<><00><><00><><00><><00><>@<40>S<><00><><05><00><><00><><00><><00><>O<>C<><00><><00><>:"<00><00>(kQ<00><00><00><00><00><00>r<00>Ocn<00><00><00><00><00><00><00>2.<00><00><00><00><00><00><00><00><00><00><00><00>n]5)<00><00><00><00><00><00><00><00><00><00><00><00>q<00>E]-<00><00>z<00>0<00><><00><>|<7C><00><>K<>U<><13><14><00><><01><00><><00><><00><><00><><00><><00><><02><00><><05><00><><10><15><0E><0E> <0C><12>
<EFBFBD><15><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><0E><0E><1E><1B>,<2C> <0B><1C><16>*<2A><08><18><1D>1<> <20>6<>/<2F>?<3F>d<>z<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> ,#6IE[{<00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00><00>s<00>Zpgx<00><00><00><00><00><00><00><00><00><00><00><00><00>o<00>[mTj*B.A %<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>j<>u<>k<><>o<>z<><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>~<7E><>|<7C><00><>q<>x<>o<>|<7C>}<7D><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>&#0<CPVNPinkqr<00>nuv<00>y<00><00><00><00>v<00>~<00>Xlcm[gYdJXGY<PPfCUJ]BUDY7H';<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><><00><> <00><><00><><00><><00><><00><> #%4+89@)1*
<00><>
<00><> '%13@+<00><>
<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> #' <00><><00><><00><> <00><><00><>0#+&<00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><>  ,7"@*10& <00><><00><><00><><00><><00><><00><><00><>
<00><>/#<5<24%8$(  <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>  5*=1'"#+,+ <00><> <00><> !<00><><00><>$ <00><><00><><00><><00><><00><><00><><00><>%  
 <00><><00><>#<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>  %(0 
<00><><00><><00><><00><><00><><00><><00><>   <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><> <00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>#<00><>,"5) ! +<00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><><00><>)".)>$<00><>