index
int64
0
10k
blob_id
stringlengths
40
40
step-1
stringlengths
13
984k
step-2
stringlengths
6
1.23M
step-3
stringlengths
15
1.34M
step-4
stringlengths
30
1.34M
step-5
stringlengths
64
1.2M
step-ids
sequencelengths
1
5
1,700
acbe4afee81cb6b9c0b8404d470c3f7f5685477c
<mask token>
<mask token> for num in nums: count = array.count(num) occ.append((int(num), int(count))) <mask token> print(occ) occ.sort(key=lambda x: x[1], reverse=True) print(occ) for number, count in occ: for i in range(count): ans.append(number) print(ans)
array = list(map(int, input().split(' '))) nums = list(set(array)) occ = [] for num in nums: count = array.count(num) occ.append((int(num), int(count))) ans = [] print(occ) occ.sort(key=lambda x: x[1], reverse=True) print(occ) for number, count in occ: for i in range(count): ans.append(number) print(ans)
array=list(map(int,input().split(" "))) nums=list(set(array)) occ=[] for num in nums: count=array.count(num) occ.append((int(num),int(count))) ans=[] print(occ) occ.sort(key=lambda x: x[1],reverse=True) print(occ) for number,count in (occ): for i in range(count): ans.append(number) print (ans)
null
[ 0, 1, 2, 3 ]
1,701
62cc731982846f08b3f3caace5df1bfafd421869
<mask token> def arribo(): global reloj global tiempoUltEvento global estadoServ global tiempoServicioTotal global areaQ global numCliEnCola global cola global tiempoLibre global completaronDemora listaEventos[0] = reloj + generarTiempoExponencial(tiempoEntreArribos) if estadoServ == 0: estadoServ = 1 tiempoLibre += reloj - tiempoUltEvento listaEventos[1] = reloj + generarTiempoExponencial(tiempoDeServicio) completaronDemora += 1 else: tiempoServicioTotal += reloj - tiempoUltEvento listaUsoServidores.append(tiempoServicioTotal / reloj) areaQ += numCliEnCola * (reloj - tiempoUltEvento) numCliEnCola += 1 cola.append(reloj) print(cola) def partida(): global numCliEnCola global tiempoServicioTotal global areaQ global demoraAcumulada global completaronDemora global estadoServ global listaUsoServidores if numCliEnCola > 0: listaEventos[1] = reloj + generarTiempoExponencial(tiempoDeServicio) demoraAcumulada += reloj - cola[len(cola) - 1] completaronDemora += 1 tiempoServicioTotal += reloj - tiempoUltEvento listaUsoServidores.append(tiempoServicioTotal / reloj) areaQ += numCliEnCola * (reloj - tiempoUltEvento) numCliEnCola -= 1 cola.pop() print(cola) else: estadoServ = 0 tiempoServicioTotal += reloj - tiempoUltEvento listaEventos[1] = 9999999.0 def generarHisotgrama(lista, tiempototal, reloj): utilizacionProm = tiempototal / reloj plt.title('Utilizacion promedio del servidor') plt.plot(lista) plt.xlabel('tiempo') plt.ylabel('Utilizacion promedio') plt.axhline(utilizacionProm, color='k', ls='dotted', xmax=1) plt.ylim(0, 1) plt.xlim(0, len(lista)) plt.show() def medidasDesempeño(): global listaUsoServidores global reloj global tiempoLibre global areaQ global tiempoServicioTotal global demoraAcumulada global completaronDemora print('Medidas de desempeño de la simulación: ') print('TIEMPO LIBRE DEL SERVIDOR %s' % tiempoLibre) print('PORCENTAJE DE TIEMPO LIBRE %s' % (tiempoLibre / reloj)) print() print('El reloj quedo en ', reloj) var1 = areaQ / reloj print('Nro promedio de cli en cola:', var1) var2 = tiempoServicioTotal / reloj print('Utilización promedio de los servidores:', var2) var3 = demoraAcumulada / completaronDemora print('Demora promedio por cliente:', var3) generarHisotgrama(listaUsoServidores, tiempoServicioTotal, reloj) def generarTiempoExponencial(media): return -(1 / media) * math.log(random.random()) def nuevoEvento(): global reloj global proximoEvento global listaEventos if listaEventos[0] <= listaEventos[1]: reloj = listaEventos[0] proximoEvento = 'ARRIBO' else: reloj = listaEventos[1] proximoEvento = 'PARTIDA' <mask token>
<mask token> def arribo(): global reloj global tiempoUltEvento global estadoServ global tiempoServicioTotal global areaQ global numCliEnCola global cola global tiempoLibre global completaronDemora listaEventos[0] = reloj + generarTiempoExponencial(tiempoEntreArribos) if estadoServ == 0: estadoServ = 1 tiempoLibre += reloj - tiempoUltEvento listaEventos[1] = reloj + generarTiempoExponencial(tiempoDeServicio) completaronDemora += 1 else: tiempoServicioTotal += reloj - tiempoUltEvento listaUsoServidores.append(tiempoServicioTotal / reloj) areaQ += numCliEnCola * (reloj - tiempoUltEvento) numCliEnCola += 1 cola.append(reloj) print(cola) def partida(): global numCliEnCola global tiempoServicioTotal global areaQ global demoraAcumulada global completaronDemora global estadoServ global listaUsoServidores if numCliEnCola > 0: listaEventos[1] = reloj + generarTiempoExponencial(tiempoDeServicio) demoraAcumulada += reloj - cola[len(cola) - 1] completaronDemora += 1 tiempoServicioTotal += reloj - tiempoUltEvento listaUsoServidores.append(tiempoServicioTotal / reloj) areaQ += numCliEnCola * (reloj - tiempoUltEvento) numCliEnCola -= 1 cola.pop() print(cola) else: estadoServ = 0 tiempoServicioTotal += reloj - tiempoUltEvento listaEventos[1] = 9999999.0 def generarHisotgrama(lista, tiempototal, reloj): utilizacionProm = tiempototal / reloj plt.title('Utilizacion promedio del servidor') plt.plot(lista) plt.xlabel('tiempo') plt.ylabel('Utilizacion promedio') plt.axhline(utilizacionProm, color='k', ls='dotted', xmax=1) plt.ylim(0, 1) plt.xlim(0, len(lista)) plt.show() def medidasDesempeño(): global listaUsoServidores global reloj global tiempoLibre global areaQ global tiempoServicioTotal global demoraAcumulada global completaronDemora print('Medidas de desempeño de la simulación: ') print('TIEMPO LIBRE DEL SERVIDOR %s' % tiempoLibre) print('PORCENTAJE DE TIEMPO LIBRE %s' % (tiempoLibre / reloj)) print() print('El reloj quedo en ', reloj) var1 = areaQ / reloj print('Nro promedio de cli en cola:', var1) var2 = tiempoServicioTotal / reloj print('Utilización promedio de los servidores:', var2) var3 = demoraAcumulada / completaronDemora print('Demora promedio por cliente:', var3) generarHisotgrama(listaUsoServidores, tiempoServicioTotal, reloj) def generarTiempoExponencial(media): return -(1 / media) * math.log(random.random()) def nuevoEvento(): global reloj global proximoEvento global listaEventos if listaEventos[0] <= listaEventos[1]: reloj = listaEventos[0] proximoEvento = 'ARRIBO' else: reloj = listaEventos[1] proximoEvento = 'PARTIDA' <mask token> listaEventos.append(generarTiempoExponencial(tiempoEntreArribos)) listaEventos.append(9999999.0) while True: nuevoEvento() if proximoEvento == 'ARRIBO': arribo() else: partida() tiempoUltEvento = reloj if reloj >= 1000: break medidasDesempeño()
<mask token> def arribo(): global reloj global tiempoUltEvento global estadoServ global tiempoServicioTotal global areaQ global numCliEnCola global cola global tiempoLibre global completaronDemora listaEventos[0] = reloj + generarTiempoExponencial(tiempoEntreArribos) if estadoServ == 0: estadoServ = 1 tiempoLibre += reloj - tiempoUltEvento listaEventos[1] = reloj + generarTiempoExponencial(tiempoDeServicio) completaronDemora += 1 else: tiempoServicioTotal += reloj - tiempoUltEvento listaUsoServidores.append(tiempoServicioTotal / reloj) areaQ += numCliEnCola * (reloj - tiempoUltEvento) numCliEnCola += 1 cola.append(reloj) print(cola) def partida(): global numCliEnCola global tiempoServicioTotal global areaQ global demoraAcumulada global completaronDemora global estadoServ global listaUsoServidores if numCliEnCola > 0: listaEventos[1] = reloj + generarTiempoExponencial(tiempoDeServicio) demoraAcumulada += reloj - cola[len(cola) - 1] completaronDemora += 1 tiempoServicioTotal += reloj - tiempoUltEvento listaUsoServidores.append(tiempoServicioTotal / reloj) areaQ += numCliEnCola * (reloj - tiempoUltEvento) numCliEnCola -= 1 cola.pop() print(cola) else: estadoServ = 0 tiempoServicioTotal += reloj - tiempoUltEvento listaEventos[1] = 9999999.0 def generarHisotgrama(lista, tiempototal, reloj): utilizacionProm = tiempototal / reloj plt.title('Utilizacion promedio del servidor') plt.plot(lista) plt.xlabel('tiempo') plt.ylabel('Utilizacion promedio') plt.axhline(utilizacionProm, color='k', ls='dotted', xmax=1) plt.ylim(0, 1) plt.xlim(0, len(lista)) plt.show() def medidasDesempeño(): global listaUsoServidores global reloj global tiempoLibre global areaQ global tiempoServicioTotal global demoraAcumulada global completaronDemora print('Medidas de desempeño de la simulación: ') print('TIEMPO LIBRE DEL SERVIDOR %s' % tiempoLibre) print('PORCENTAJE DE TIEMPO LIBRE %s' % (tiempoLibre / reloj)) print() print('El reloj quedo en ', reloj) var1 = areaQ / reloj print('Nro promedio de cli en cola:', var1) var2 = tiempoServicioTotal / reloj print('Utilización promedio de los servidores:', var2) var3 = demoraAcumulada / completaronDemora print('Demora promedio por cliente:', var3) generarHisotgrama(listaUsoServidores, tiempoServicioTotal, reloj) def generarTiempoExponencial(media): return -(1 / media) * math.log(random.random()) def nuevoEvento(): global reloj global proximoEvento global listaEventos if listaEventos[0] <= listaEventos[1]: reloj = listaEventos[0] proximoEvento = 'ARRIBO' else: reloj = listaEventos[1] proximoEvento = 'PARTIDA' tiempoEntreArribos = 7 tiempoDeServicio = 9 reloj = 0.0 estadoServ = 0 tiempoServicioTotal = 0.0 tiempoLibre = 0.0 demoraAcumulada = 0.0 proximoEvento = '' listaEventos = [] cola = [] numCliEnCola = 0 areaQ = 0.0 tiempoUltEvento = 0.0 completaronDemora = 0 listaUsoServidores = [] listaEventos.append(generarTiempoExponencial(tiempoEntreArribos)) listaEventos.append(9999999.0) while True: nuevoEvento() if proximoEvento == 'ARRIBO': arribo() else: partida() tiempoUltEvento = reloj if reloj >= 1000: break medidasDesempeño()
import numpy as np import random import math import matplotlib.pyplot as plt def arribo(): global reloj global tiempoUltEvento global estadoServ global tiempoServicioTotal global areaQ global numCliEnCola global cola global tiempoLibre global completaronDemora listaEventos[0] = reloj + generarTiempoExponencial(tiempoEntreArribos) if estadoServ == 0: estadoServ = 1 tiempoLibre += reloj - tiempoUltEvento listaEventos[1] = reloj + generarTiempoExponencial(tiempoDeServicio) completaronDemora += 1 else: tiempoServicioTotal += reloj - tiempoUltEvento listaUsoServidores.append(tiempoServicioTotal / reloj) areaQ += numCliEnCola * (reloj - tiempoUltEvento) numCliEnCola += 1 cola.append(reloj) print(cola) def partida(): global numCliEnCola global tiempoServicioTotal global areaQ global demoraAcumulada global completaronDemora global estadoServ global listaUsoServidores if numCliEnCola > 0: listaEventos[1] = reloj + generarTiempoExponencial(tiempoDeServicio) demoraAcumulada += reloj - cola[len(cola) - 1] completaronDemora += 1 tiempoServicioTotal += reloj - tiempoUltEvento listaUsoServidores.append(tiempoServicioTotal / reloj) areaQ += numCliEnCola * (reloj - tiempoUltEvento) numCliEnCola -= 1 cola.pop() print(cola) else: estadoServ = 0 tiempoServicioTotal += reloj - tiempoUltEvento listaEventos[1] = 9999999.0 def generarHisotgrama(lista, tiempototal, reloj): utilizacionProm = tiempototal / reloj plt.title('Utilizacion promedio del servidor') plt.plot(lista) plt.xlabel('tiempo') plt.ylabel('Utilizacion promedio') plt.axhline(utilizacionProm, color='k', ls='dotted', xmax=1) plt.ylim(0, 1) plt.xlim(0, len(lista)) plt.show() def medidasDesempeño(): global listaUsoServidores global reloj global tiempoLibre global areaQ global tiempoServicioTotal global demoraAcumulada global completaronDemora print('Medidas de desempeño de la simulación: ') print('TIEMPO LIBRE DEL SERVIDOR %s' % tiempoLibre) print('PORCENTAJE DE TIEMPO LIBRE %s' % (tiempoLibre / reloj)) print() print('El reloj quedo en ', reloj) var1 = areaQ / reloj print('Nro promedio de cli en cola:', var1) var2 = tiempoServicioTotal / reloj print('Utilización promedio de los servidores:', var2) var3 = demoraAcumulada / completaronDemora print('Demora promedio por cliente:', var3) generarHisotgrama(listaUsoServidores, tiempoServicioTotal, reloj) def generarTiempoExponencial(media): return -(1 / media) * math.log(random.random()) def nuevoEvento(): global reloj global proximoEvento global listaEventos if listaEventos[0] <= listaEventos[1]: reloj = listaEventos[0] proximoEvento = 'ARRIBO' else: reloj = listaEventos[1] proximoEvento = 'PARTIDA' tiempoEntreArribos = 7 tiempoDeServicio = 9 reloj = 0.0 estadoServ = 0 tiempoServicioTotal = 0.0 tiempoLibre = 0.0 demoraAcumulada = 0.0 proximoEvento = '' listaEventos = [] cola = [] numCliEnCola = 0 areaQ = 0.0 tiempoUltEvento = 0.0 completaronDemora = 0 listaUsoServidores = [] listaEventos.append(generarTiempoExponencial(tiempoEntreArribos)) listaEventos.append(9999999.0) while True: nuevoEvento() if proximoEvento == 'ARRIBO': arribo() else: partida() tiempoUltEvento = reloj if reloj >= 1000: break medidasDesempeño()
# Simulador de sistema M/M/1. # # Variables de respuesta: # - Demora promedio por cliente # - Número promedio de clientes en cola # - Utilización promedio de cliente # # Funciones: # arribo() # partida() # nuevoEvento() # medidasDesempeño() # generarTiempoExponencial(t) # generarHisotgrama(lista) import numpy as np import random import math import matplotlib.pyplot as plt def arribo(): global reloj global tiempoUltEvento global estadoServ global tiempoServicioTotal global areaQ global numCliEnCola global cola global tiempoLibre global completaronDemora # Siguiente arribo listaEventos[0] = reloj + generarTiempoExponencial(tiempoEntreArribos) if estadoServ == 0: # Servidor pasa a 1, ocupado estadoServ = 1 tiempoLibre += reloj - tiempoUltEvento # Programo el próximo evento partida listaEventos[1] = reloj + generarTiempoExponencial(tiempoDeServicio) # Actualizo la cantidad de clientes que completaron la demora completaronDemora += 1 else: # Acumulo el tiempo de servicio tiempoServicioTotal += (reloj - tiempoUltEvento) # Acumulo la utilizacion de cada servidor en t para hacer la grafica de como se llega al promedio de utilización. listaUsoServidores.append(tiempoServicioTotal / reloj) areaQ += (numCliEnCola * (reloj - tiempoUltEvento)) numCliEnCola += 1 # Agrego el cliente a la cola cola.append(reloj) print(cola) def partida(): global numCliEnCola global tiempoServicioTotal global areaQ global demoraAcumulada global completaronDemora global estadoServ global listaUsoServidores if numCliEnCola > 0: # Proxima partida listaEventos[1] = reloj + generarTiempoExponencial(tiempoDeServicio) # Acumulo la demora acumulada como el valor actual del reloj # menos el valor del reloj cuando el cliente ingresó a la cola demoraAcumulada += reloj - cola[len(cola)-1] # Actualizo el contador de clientes que completaron la demora completaronDemora += 1 # Acumulo el tiempo de servicio tiempoServicioTotal += (reloj - tiempoUltEvento) # Acumulo la utilizacion de cada servidor en t para hacer la grafica de como se llega al promedio de utilización. listaUsoServidores.append(tiempoServicioTotal/reloj) # Calculo el Área bajo Q(t) del período anterior (Reloj - TiempoUltimoEvento) areaQ += (numCliEnCola * (reloj - tiempoUltEvento)) numCliEnCola -= 1 # Saco el ultimo en llegar cola.pop() print(cola) else: # Al no haber clientes en cola, establezco el estado del servidor en "Desocupado" estadoServ = 0 # Acumulo el tiempo de servicio tiempoServicioTotal += (reloj - tiempoUltEvento) # Acumulo la utilizacion de cada servidor en t para hacer la grafica de como se llega al promedio de utilización. # listaUsoServidores.append(tiempoServicioTotal / reloj) listaEventos[1] = 9999999.0 def generarHisotgrama(lista, tiempototal, reloj): utilizacionProm=tiempototal/reloj plt.title('Utilizacion promedio del servidor') plt.plot(lista) plt.xlabel("tiempo") plt.ylabel("Utilizacion promedio") plt.axhline(utilizacionProm, color='k', ls="dotted", xmax=1) # Comando para linea horizontal constante plt.ylim(0, 1) # Limites para el eje Y plt.xlim(0, len(lista)) # Limites para el eje X plt.show() def medidasDesempeño(): global listaUsoServidores global reloj global tiempoLibre global areaQ global tiempoServicioTotal global demoraAcumulada global completaronDemora print("Medidas de desempeño de la simulación: ") print("TIEMPO LIBRE DEL SERVIDOR %s" % tiempoLibre) print("PORCENTAJE DE TIEMPO LIBRE %s" % (tiempoLibre / reloj)) print() print("El reloj quedo en ", reloj) var1 = areaQ / reloj print("Nro promedio de cli en cola:", var1) var2 = tiempoServicioTotal / reloj print("Utilización promedio de los servidores:", var2) var3 = demoraAcumulada / completaronDemora print("Demora promedio por cliente:", var3) generarHisotgrama(listaUsoServidores, tiempoServicioTotal, reloj) def generarTiempoExponencial(media): # return np.random.exponential(media) return -(1/media) * math.log(random.random()) def nuevoEvento(): global reloj global proximoEvento global listaEventos if listaEventos[0] <= listaEventos[1]: reloj = listaEventos[0] proximoEvento = "ARRIBO" else: reloj = listaEventos[1] proximoEvento = "PARTIDA" #Inicio del programa principal #Tiempo de arribo y servicio del modelo: tiempoEntreArribos = 7 tiempoDeServicio = 9 #Inicializacion de variables reloj = 0.0 estadoServ = 0 tiempoServicioTotal = 0.0 tiempoLibre = 0.0 demoraAcumulada = 0.0 proximoEvento = "" listaEventos = [] cola = [] numCliEnCola = 0 areaQ = 0.0 tiempoUltEvento = 0.0 completaronDemora = 0 listaUsoServidores = [] # Tiempo primer evento (arribo) listaEventos.append(generarTiempoExponencial(tiempoEntreArribos)) # # Infinito, ya que todavia no hay clientes en el sistema listaEventos.append(9999999.0) while True: nuevoEvento() # Llamada a la rutina correspondiente en función del tipo de evento if proximoEvento == "ARRIBO": arribo() else: partida() tiempoUltEvento = reloj if reloj >= 1000: break medidasDesempeño()
[ 6, 7, 8, 9, 10 ]
1,702
0e7732ffcada864fb83b59625c5b9abb01150aaa
<mask token> class TestRedisIntervalIADD(object): <mask token> <mask token> <mask token>
<mask token> class TestRedisIntervalIADD(object): <mask token> @classmethod def setup_class(cls): cls.redis = RedisInterval(host='localhost') def test_add_simple_text(self): """ Add simple text inside an interval """ value = self.redis.iadd('test', 0, 10, 'simple text') assert value == 'OK'
<mask token> class TestRedisIntervalIADD(object): """ Tests the IADD command """ @classmethod def setup_class(cls): cls.redis = RedisInterval(host='localhost') def test_add_simple_text(self): """ Add simple text inside an interval """ value = self.redis.iadd('test', 0, 10, 'simple text') assert value == 'OK'
from redis_interval.client import RedisInterval class TestRedisIntervalIADD(object): """ Tests the IADD command """ @classmethod def setup_class(cls): cls.redis = RedisInterval(host='localhost') def test_add_simple_text(self): """ Add simple text inside an interval """ value = self.redis.iadd('test', 0, 10, 'simple text') assert value == 'OK'
from redis_interval.client import RedisInterval class TestRedisIntervalIADD(object): """ Tests the IADD command """ @classmethod def setup_class(cls): cls.redis = RedisInterval(host="localhost") def test_add_simple_text(self): """ Add simple text inside an interval """ value = self.redis.iadd("test", 0, 10, "simple text") assert value == 'OK'
[ 1, 3, 4, 5, 6 ]
1,703
950929edc82bf78ee33df117fba370b937255adc
<mask token> class mutasibankjurnal(ReportXlsx): <mask token> <mask token>
<mask token> class mutasibankjurnal(ReportXlsx): def generate_xlsx_report(self, workbook, data, wizard): bold = workbook.add_format({'bold': True}) middle = workbook.add_format({'bold': True, 'top': 1}) left = workbook.add_format({'left': 1, 'top': 1, 'bold': True}) right = workbook.add_format({'right': 1, 'top': 1}) top = workbook.add_format({'top': 1}) report_format = workbook.add_format({'font_size': 24}) lang_code = self.env.user.lang or 'en_US' date_format = self.env['res.lang']._lang_get(lang_code).date_format report = '991' def get_date_format(date): if date: date = datetime.strptime(date, DEFAULT_SERVER_DATE_FORMAT) date = date.strftime('%d/%m/%Y') return date def _header_sheet(sheet): sheet.write_merge(0, 4, 'Mutasi Bank', report_format) sheet.write_merge(2, 0, _('Company:'), bold) sheet.write_merge(3, 0, self.env.user.company_id.name) head = [{'name': _('NO Bukti'), 'larg': 10, 'col': {}}, {'name': _( 'vendor /supplier'), 'larg': 10, 'col': {}}, {'name': _( 'Tanggal'), 'larg': 10, 'col': {}}, {'name': _('Nomor Cek'), 'larg': 15, 'col': {}}, {'name': _('Pemasukan'), 'larg': 10, 'col': {}}, {'name': _('Pengeluaran'), 'larg': 20, 'col': {}}, {'name': _('Saldo Akhir'), 'larg': 20, 'col': {}}, {'name': _( 'Keterangan'), 'larg': 10, 'col': {}}] table = [] for h in head: col = {'header': h['name']} col.update(h['col']) table.append(col) def _set_line(line): sheet.write(i, 0, line.get('name', '')) if line.get('nama_partner') == False: sheet.write(i, 1, line.get('', '')) else: sheet.write(i, 1, line.get('nama_partner', '')) sheet.write(i, 2, line.get('payment_date', '')) if line.get('nomor_cek') == False: sheet.write(i, 3, line.get('', '')) else: sheet.write(i, 3, line.get('nomor_cek', '')) if line.get('payment_type') == 'inbound': sheet.write(i, 4, line.get('amount', '')) else: sheet.write(i, 4, 0.0) if line.get('payment_type') == 'outbound': sheet.write(i, 5, line.get('amount', '')) else: sheet.write(i, 5, 0.0) sheet.write(i, 6, line.get('nsaldo_akhir', '')) if line.get('note') == False: sheet.write(i, 7, '') else: sheet.write(i, 7, line.get('note', '')) def _set_table(start_row, row): sheet.add_table(start_row - 1, 0, row, len(head) - 1, { 'columns': table, 'style': 'Table Style Light 9'}) all_lines2 = wizard._fill_details_dict() sheet = workbook.add_worksheet('Mutasi bank') if all_lines2: row = 9 start_row = row range_tanggal = get_date_format(wizard.date_from_mb ) + ' s.d ' + get_date_format(wizard.date_to_mb) sheet.write(0, 0, 'PT. PAN ASIA JAYA ABADI', bold) sheet.write(1, 0, 'MUTASI REKENING') sheet.write(2, 0, 'TANGGAL : ' + range_tanggal) if wizard.jenis_journal_mb.currency_id.name == False: sheet.write(3, 0, 'Mata Uang : IDR') else: sheet.write(3, 0, 'Mata Uang : %s' % wizard. jenis_journal_mb.currency_id.name) sheet.write(4, 0, 'Bank : %s ' % wizard.jenis_journal_mb. bank_account_id.sanitized_acc_number) sheet.write(5, 0, '' + wizard.jenis_journal_mb. default_debit_account_id.code + ' ' + wizard. jenis_journal_mb.name) for i, line in enumerate(all_lines2): i += row _set_line(line) row = i for j, h in enumerate(head): sheet.set_column(j, j, h['larg']) _set_table(start_row, row) sheet.merge_range('A' + str(start_row - 1) + ':D' + str(start_row - 1), 'Saldo Awal :') sheet.write(start_row - 2, 4, line.get('saldo_awal', '')) sheet.merge_range('A' + str(row + 2) + ':D' + str(row + 2), 'Total') sheet.write_formula(row + 1, 4, '=SUM(E10:E' + str(row + 1) + ')') sheet.write_formula(row + 1, 5, '=SUM(F10:F' + str(row + 1) + ')') sheet.write_formula(row + 1, 6, '=E' + str(start_row - 1) + '+SUM(E10:E' + str(row + 1) + ')-SUM(F10:F' + str(row + 1) + ')') <mask token>
<mask token> class mutasibankjurnal(ReportXlsx): def generate_xlsx_report(self, workbook, data, wizard): bold = workbook.add_format({'bold': True}) middle = workbook.add_format({'bold': True, 'top': 1}) left = workbook.add_format({'left': 1, 'top': 1, 'bold': True}) right = workbook.add_format({'right': 1, 'top': 1}) top = workbook.add_format({'top': 1}) report_format = workbook.add_format({'font_size': 24}) lang_code = self.env.user.lang or 'en_US' date_format = self.env['res.lang']._lang_get(lang_code).date_format report = '991' def get_date_format(date): if date: date = datetime.strptime(date, DEFAULT_SERVER_DATE_FORMAT) date = date.strftime('%d/%m/%Y') return date def _header_sheet(sheet): sheet.write_merge(0, 4, 'Mutasi Bank', report_format) sheet.write_merge(2, 0, _('Company:'), bold) sheet.write_merge(3, 0, self.env.user.company_id.name) head = [{'name': _('NO Bukti'), 'larg': 10, 'col': {}}, {'name': _( 'vendor /supplier'), 'larg': 10, 'col': {}}, {'name': _( 'Tanggal'), 'larg': 10, 'col': {}}, {'name': _('Nomor Cek'), 'larg': 15, 'col': {}}, {'name': _('Pemasukan'), 'larg': 10, 'col': {}}, {'name': _('Pengeluaran'), 'larg': 20, 'col': {}}, {'name': _('Saldo Akhir'), 'larg': 20, 'col': {}}, {'name': _( 'Keterangan'), 'larg': 10, 'col': {}}] table = [] for h in head: col = {'header': h['name']} col.update(h['col']) table.append(col) def _set_line(line): sheet.write(i, 0, line.get('name', '')) if line.get('nama_partner') == False: sheet.write(i, 1, line.get('', '')) else: sheet.write(i, 1, line.get('nama_partner', '')) sheet.write(i, 2, line.get('payment_date', '')) if line.get('nomor_cek') == False: sheet.write(i, 3, line.get('', '')) else: sheet.write(i, 3, line.get('nomor_cek', '')) if line.get('payment_type') == 'inbound': sheet.write(i, 4, line.get('amount', '')) else: sheet.write(i, 4, 0.0) if line.get('payment_type') == 'outbound': sheet.write(i, 5, line.get('amount', '')) else: sheet.write(i, 5, 0.0) sheet.write(i, 6, line.get('nsaldo_akhir', '')) if line.get('note') == False: sheet.write(i, 7, '') else: sheet.write(i, 7, line.get('note', '')) def _set_table(start_row, row): sheet.add_table(start_row - 1, 0, row, len(head) - 1, { 'columns': table, 'style': 'Table Style Light 9'}) all_lines2 = wizard._fill_details_dict() sheet = workbook.add_worksheet('Mutasi bank') if all_lines2: row = 9 start_row = row range_tanggal = get_date_format(wizard.date_from_mb ) + ' s.d ' + get_date_format(wizard.date_to_mb) sheet.write(0, 0, 'PT. PAN ASIA JAYA ABADI', bold) sheet.write(1, 0, 'MUTASI REKENING') sheet.write(2, 0, 'TANGGAL : ' + range_tanggal) if wizard.jenis_journal_mb.currency_id.name == False: sheet.write(3, 0, 'Mata Uang : IDR') else: sheet.write(3, 0, 'Mata Uang : %s' % wizard. jenis_journal_mb.currency_id.name) sheet.write(4, 0, 'Bank : %s ' % wizard.jenis_journal_mb. bank_account_id.sanitized_acc_number) sheet.write(5, 0, '' + wizard.jenis_journal_mb. default_debit_account_id.code + ' ' + wizard. jenis_journal_mb.name) for i, line in enumerate(all_lines2): i += row _set_line(line) row = i for j, h in enumerate(head): sheet.set_column(j, j, h['larg']) _set_table(start_row, row) sheet.merge_range('A' + str(start_row - 1) + ':D' + str(start_row - 1), 'Saldo Awal :') sheet.write(start_row - 2, 4, line.get('saldo_awal', '')) sheet.merge_range('A' + str(row + 2) + ':D' + str(row + 2), 'Total') sheet.write_formula(row + 1, 4, '=SUM(E10:E' + str(row + 1) + ')') sheet.write_formula(row + 1, 5, '=SUM(F10:F' + str(row + 1) + ')') sheet.write_formula(row + 1, 6, '=E' + str(start_row - 1) + '+SUM(E10:E' + str(row + 1) + ')-SUM(F10:F' + str(row + 1) + ')') mutasibankjurnal('report.dev_accounting_report.report_mutasi_bank_byjurnal', 'accounting.report.standard')
from datetime import datetime from odoo.addons.report_xlsx.report.report_xlsx import ReportXlsx from odoo.tools import DEFAULT_SERVER_DATE_FORMAT import xlwt from odoo import _ from odoo.exceptions import AccessError, UserError class mutasibankjurnal(ReportXlsx): def generate_xlsx_report(self, workbook, data, wizard): bold = workbook.add_format({'bold': True}) middle = workbook.add_format({'bold': True, 'top': 1}) left = workbook.add_format({'left': 1, 'top': 1, 'bold': True}) right = workbook.add_format({'right': 1, 'top': 1}) top = workbook.add_format({'top': 1}) report_format = workbook.add_format({'font_size': 24}) lang_code = self.env.user.lang or 'en_US' date_format = self.env['res.lang']._lang_get(lang_code).date_format report = '991' def get_date_format(date): if date: date = datetime.strptime(date, DEFAULT_SERVER_DATE_FORMAT) date = date.strftime('%d/%m/%Y') return date def _header_sheet(sheet): sheet.write_merge(0, 4, 'Mutasi Bank', report_format) sheet.write_merge(2, 0, _('Company:'), bold) sheet.write_merge(3, 0, self.env.user.company_id.name) head = [{'name': _('NO Bukti'), 'larg': 10, 'col': {}}, {'name': _( 'vendor /supplier'), 'larg': 10, 'col': {}}, {'name': _( 'Tanggal'), 'larg': 10, 'col': {}}, {'name': _('Nomor Cek'), 'larg': 15, 'col': {}}, {'name': _('Pemasukan'), 'larg': 10, 'col': {}}, {'name': _('Pengeluaran'), 'larg': 20, 'col': {}}, {'name': _('Saldo Akhir'), 'larg': 20, 'col': {}}, {'name': _( 'Keterangan'), 'larg': 10, 'col': {}}] table = [] for h in head: col = {'header': h['name']} col.update(h['col']) table.append(col) def _set_line(line): sheet.write(i, 0, line.get('name', '')) if line.get('nama_partner') == False: sheet.write(i, 1, line.get('', '')) else: sheet.write(i, 1, line.get('nama_partner', '')) sheet.write(i, 2, line.get('payment_date', '')) if line.get('nomor_cek') == False: sheet.write(i, 3, line.get('', '')) else: sheet.write(i, 3, line.get('nomor_cek', '')) if line.get('payment_type') == 'inbound': sheet.write(i, 4, line.get('amount', '')) else: sheet.write(i, 4, 0.0) if line.get('payment_type') == 'outbound': sheet.write(i, 5, line.get('amount', '')) else: sheet.write(i, 5, 0.0) sheet.write(i, 6, line.get('nsaldo_akhir', '')) if line.get('note') == False: sheet.write(i, 7, '') else: sheet.write(i, 7, line.get('note', '')) def _set_table(start_row, row): sheet.add_table(start_row - 1, 0, row, len(head) - 1, { 'columns': table, 'style': 'Table Style Light 9'}) all_lines2 = wizard._fill_details_dict() sheet = workbook.add_worksheet('Mutasi bank') if all_lines2: row = 9 start_row = row range_tanggal = get_date_format(wizard.date_from_mb ) + ' s.d ' + get_date_format(wizard.date_to_mb) sheet.write(0, 0, 'PT. PAN ASIA JAYA ABADI', bold) sheet.write(1, 0, 'MUTASI REKENING') sheet.write(2, 0, 'TANGGAL : ' + range_tanggal) if wizard.jenis_journal_mb.currency_id.name == False: sheet.write(3, 0, 'Mata Uang : IDR') else: sheet.write(3, 0, 'Mata Uang : %s' % wizard. jenis_journal_mb.currency_id.name) sheet.write(4, 0, 'Bank : %s ' % wizard.jenis_journal_mb. bank_account_id.sanitized_acc_number) sheet.write(5, 0, '' + wizard.jenis_journal_mb. default_debit_account_id.code + ' ' + wizard. jenis_journal_mb.name) for i, line in enumerate(all_lines2): i += row _set_line(line) row = i for j, h in enumerate(head): sheet.set_column(j, j, h['larg']) _set_table(start_row, row) sheet.merge_range('A' + str(start_row - 1) + ':D' + str(start_row - 1), 'Saldo Awal :') sheet.write(start_row - 2, 4, line.get('saldo_awal', '')) sheet.merge_range('A' + str(row + 2) + ':D' + str(row + 2), 'Total') sheet.write_formula(row + 1, 4, '=SUM(E10:E' + str(row + 1) + ')') sheet.write_formula(row + 1, 5, '=SUM(F10:F' + str(row + 1) + ')') sheet.write_formula(row + 1, 6, '=E' + str(start_row - 1) + '+SUM(E10:E' + str(row + 1) + ')-SUM(F10:F' + str(row + 1) + ')') mutasibankjurnal('report.dev_accounting_report.report_mutasi_bank_byjurnal', 'accounting.report.standard')
# -*- coding: utf-8 -*- from datetime import datetime from odoo.addons.report_xlsx.report.report_xlsx import ReportXlsx from odoo.tools import DEFAULT_SERVER_DATE_FORMAT import xlwt from odoo import _ from odoo.exceptions import AccessError, UserError class mutasibankjurnal(ReportXlsx): def generate_xlsx_report(self, workbook, data, wizard): # num_format = wizard.company_currency_id.excel_format bold = workbook.add_format({'bold': True}) middle = workbook.add_format({'bold': True, 'top': 1}) left = workbook.add_format({'left': 1, 'top': 1, 'bold': True}) right = workbook.add_format({'right': 1, 'top': 1}) top = workbook.add_format({'top': 1}) # currency_format = workbook.add_format({'num_format': num_format}) # c_middle = workbook.add_format({'bold': True, 'top': 1, 'num_format': num_format}) report_format = workbook.add_format({'font_size': 24}) # rounding = self.env.user.company_id.currency_id.decimal_places or 2 lang_code = self.env.user.lang or 'en_US' date_format = self.env['res.lang']._lang_get(lang_code).date_format report = '991' # def _get_data_float(data): ## if data == None or data == False: # return 0.0 # else: # return wizard.company_currency_id.round(data) + 0.0 def get_date_format(date): if date: date = datetime.strptime(date, DEFAULT_SERVER_DATE_FORMAT) date = date.strftime('%d/%m/%Y') return date def _header_sheet(sheet): sheet.write_merge(0, 4, 'Mutasi Bank', report_format) # style_title = xlwt.easyxf("font:height 300; font: name Liberation Sans, bold on,color black; align: horiz center") #sheet.write_merge(0, 1, 0, 5,'LAPORAN ', style = style_title) sheet.write_merge(2, 0, _('Company:'), bold) sheet.write_merge(3, 0, self.env.user.company_id.name,) #sheet.write(4, 0, _('Print on %s') % report.print_time) # sheet.write(2, 2, _('Start Date : %s ') % wizard.date_from if wizard.date_from else '') # sheet.write(3, 2, _('End Date : %s ') % wizard.date_to if wizard.date_to else '') # sheet.write(2, 4, _('Target Moves:'), bold) # sheet.write(3, 4, _('All Entries') if wizard.target_move == 'all' else _('All Posted Entries')) # sheet.write(2, 6, _('Only UnReconciled Entries') if wizard.reconciled is False else _('With Reconciled Entries'), bold) head = [ {'name': _('NO Bukti'), 'larg': 10, 'col': {}}, {'name': _('vendor /supplier'), 'larg': 10, 'col': {}}, {'name': _('Tanggal'), 'larg': 10, 'col': {}}, {'name': _('Nomor Cek'), 'larg': 15, 'col': {}}, {'name': _('Pemasukan'), 'larg': 10, 'col': {}}, {'name': _('Pengeluaran'), 'larg': 20, 'col': {}}, {'name': _('Saldo Akhir'), 'larg': 20, 'col': {}}, {'name': _('Keterangan'), 'larg': 10, 'col': {}}, ] table = [] for h in head: col = {'header': h['name']} col.update(h['col']) table.append(col) def _set_line(line): #sheet.write(i, 0, get_date_format(line.get('date', '')) if line.get('type_view') != 'init' else 'INIT') sheet.write(i, 0, line.get('name', '')) if line.get('nama_partner')==False: sheet.write(i, 1, line.get('', '')) else: sheet.write(i, 1, line.get('nama_partner', '')) sheet.write(i, 2, line.get('payment_date', '')) if line.get('nomor_cek')==False: sheet.write(i, 3, line.get('', '')) else: sheet.write(i, 3, line.get('nomor_cek', '')) if line.get('payment_type')=='inbound': sheet.write(i, 4, line.get('amount', '')) else: sheet.write(i, 4, (0.00),) if line.get('payment_type')=='outbound': sheet.write(i, 5, line.get('amount', '')) else: sheet.write(i, 5, (0.00),) sheet.write(i, 6, line.get('nsaldo_akhir', '')) if line.get('note')==False: sheet.write(i, 7, (''),) else: sheet.write(i, 7, line.get('note', '')) # buat formula untuk men-sum / mentotal sales per user # sheet.merge_range('A' + 4 + ':D' + 4, nsaldo_awal, text_style) # def _set_line2(line2): # sheet.merge_range('A' + str(start_row-1) + ':D' + str(start_row-1), '') # sheet.write(start_row-2, 4, line2, '') # [{'saldo_awal ': 0}]: None def _set_table(start_row, row): sheet.add_table(start_row - 1, 0, row, len(head) - 1, { 'columns': table, 'style': 'Table Style Light 9', }) # all_lines = wizard._sql_get_line_mutasibank() all_lines2 = wizard._fill_details_dict() # raise UserError(all_lines.saldo_awal) # saldoawal =all_lines.Total_saldo_awal # Pivot workbook sheet = workbook.add_worksheet('Mutasi bank') # _header_sheet(sheet) # Head # if all_lines: # for line2 in enumerate(all_lines): # _set_line(line2) # raise UserError(all_lines.saldo_awal) if all_lines2: row = 9 start_row = row range_tanggal = get_date_format(wizard.date_from_mb) + ' s.d '+get_date_format(wizard.date_to_mb) sheet.write(0, 0, ('PT. PAN ASIA JAYA ABADI'), bold) sheet.write(1, 0, ('MUTASI REKENING'),) sheet.write(2, 0,('TANGGAL : '+range_tanggal),) if wizard.jenis_journal_mb.currency_id.name==False: sheet.write(3, 0,('Mata Uang : IDR'),) else: sheet.write(3, 0,('Mata Uang : %s') % wizard.jenis_journal_mb.currency_id.name,) sheet.write(4, 0, ('Bank : %s ') % wizard.jenis_journal_mb.bank_account_id.sanitized_acc_number,) sheet.write(5, 0, ('' +wizard.jenis_journal_mb.default_debit_account_id.code+' '+wizard.jenis_journal_mb.name),) for i, line in enumerate(all_lines2): i += row _set_line(line) row = i for j, h in enumerate(head): sheet.set_column(j, j, h['larg']) _set_table(start_row, row) # raise UserError(st) # if all_lines: # for line2 in enumerate(all_lines): # raise UserError(line2) # _set_line2(line2) # raise UserError(line2.Total_saldo_awal) sheet.merge_range('A' + str(start_row-1) + ':D' + str(start_row-1), 'Saldo Awal :') sheet.write(start_row-2, 4, line.get('saldo_awal', '')) # # [{'saldo_awal ': 0}]: None sheet.merge_range('A' + str(row+2) + ':D' + str(row+2), 'Total') sheet.write_formula(row+1, 4, '=SUM(E10:E' + str(row+1) + ')') sheet.write_formula(row+1, 5, '=SUM(F10:F' + str(row+1) + ')') ##if line.get('saldo_awal')==0: # sheet.write_formula(row+1, 6, ('0.00'), ) #else: sheet.write_formula(row+1, 6, '=E' + str(start_row-1)+'+SUM(E10:E' + str(row+1)+ ')-SUM(F10:F' + str(row+1)+')' ) # sheet.write_formula(start_row-2, 4, line.get('saldo_awal', '') mutasibankjurnal('report.dev_accounting_report.report_mutasi_bank_byjurnal', 'accounting.report.standard')
[ 1, 2, 3, 4, 5 ]
1,704
e3ac8039ffb6787b0e3e80b234c2689c66a184bf
<mask token>
<mask token> db.news.drop() db.news.insert_many(scrape(info, url)) <mask token> db.images.drop() db.images.insert_many(scrape(info, url)) <mask token> db.weather.drop() db.weather.insert_many(scrape(info, url)) <mask token> db.facts.drop() <mask token> db.facts.insert(df_json_list) <mask token> db.hemis.drop() db.hemis.insert_many(scrape(info, url))
<mask token> conn = 'mongodb://localhost:27017' client = pymongo.MongoClient(conn) db = client.mars_db url = ( 'https://mars.nasa.gov/news/?page=0&per_page=40&order=publish_date+desc%2Ccreated_at+desc&search=&category=19%2C165%2C184%2C204&blank_scope=Latest' ) info = 'News' db.news.drop() db.news.insert_many(scrape(info, url)) url = 'https://www.jpl.nasa.gov/spaceimages/?search=&category=Mars' info = 'Images' db.images.drop() db.images.insert_many(scrape(info, url)) url = 'https://twitter.com/marswxreport?lang=en' info = 'Weather' db.weather.drop() db.weather.insert_many(scrape(info, url)) url = 'https://space-facts.com/mars/' info = 'Facts' db.facts.drop() df = pd.DataFrame(scrape(info, url)) df_json = df.to_json() df_json_list = json.loads(df_json).values() db.facts.insert(df_json_list) url = ( 'https://astrogeology.usgs.gov/search/results?q=hemisphere+enhanced&k1=target&v1=Mars' ) info = 'Hemis' db.hemis.drop() db.hemis.insert_many(scrape(info, url))
import pymongo import pandas as pd from scrape_mars import scrape import json conn = 'mongodb://localhost:27017' client = pymongo.MongoClient(conn) db = client.mars_db url = ( 'https://mars.nasa.gov/news/?page=0&per_page=40&order=publish_date+desc%2Ccreated_at+desc&search=&category=19%2C165%2C184%2C204&blank_scope=Latest' ) info = 'News' db.news.drop() db.news.insert_many(scrape(info, url)) url = 'https://www.jpl.nasa.gov/spaceimages/?search=&category=Mars' info = 'Images' db.images.drop() db.images.insert_many(scrape(info, url)) url = 'https://twitter.com/marswxreport?lang=en' info = 'Weather' db.weather.drop() db.weather.insert_many(scrape(info, url)) url = 'https://space-facts.com/mars/' info = 'Facts' db.facts.drop() df = pd.DataFrame(scrape(info, url)) df_json = df.to_json() df_json_list = json.loads(df_json).values() db.facts.insert(df_json_list) url = ( 'https://astrogeology.usgs.gov/search/results?q=hemisphere+enhanced&k1=target&v1=Mars' ) info = 'Hemis' db.hemis.drop() db.hemis.insert_many(scrape(info, url))
import pymongo import pandas as pd from scrape_mars import scrape import json # Create connection variable conn = 'mongodb://localhost:27017' # Pass connection to the pymongo instance. client = pymongo.MongoClient(conn) # Connect to a database. Will create one if not already available. db = client.mars_db #News url = "https://mars.nasa.gov/news/?page=0&per_page=40&order=publish_date+desc%2Ccreated_at+desc&search=&category=19%2C165%2C184%2C204&blank_scope=Latest" info = "News" # Drops collection if available to remove duplicates db.news.drop() #Insert info #print(scrape(info,url)) db.news.insert_many(scrape(info,url)) #Images url = "https://www.jpl.nasa.gov/spaceimages/?search=&category=Mars" info = "Images" # Drops collection if available to remove duplicates db.images.drop() #Insert info #print(scrape(info,url)) db.images.insert_many(scrape(info,url)) #Weather url = "https://twitter.com/marswxreport?lang=en" info = "Weather" # Drops collection if available to remove duplicates db.weather.drop() #Insert info #print(scrape(info,url)) db.weather.insert_many(scrape(info,url)) #Facts url = "https://space-facts.com/mars/" info = "Facts" # Drops collection if available to remove duplicates db.facts.drop() #Insert info #print(scrape(info,url)) df = pd.DataFrame(scrape(info,url)) df_json = df.to_json() df_json_list = json.loads(df_json).values() db.facts.insert(df_json_list) #Hemispheres url = "https://astrogeology.usgs.gov/search/results?q=hemisphere+enhanced&k1=target&v1=Mars" info = "Hemis" # Drops collection if available to remove duplicates db.hemis.drop() #Insert info #print(scrape(info,url)) db.hemis.insert_many(scrape(info,url))
[ 0, 1, 2, 3, 4 ]
1,705
8e0d729fa55aabede123d89a507296b7d8a45c8b
<mask token> def urls(): os.system('urls.bat') def urls_1(): os.system('urls_1.bat') <mask token> def urls_3(): os.system('urls_3.bat') def urls_4(): os.system('urls_4.bat') def urls_5(): os.system('urls_5.bat') def urls_6(): os.system('urls_6.bat') def urls_7(): os.system('urls_7.bat') def urls_8(): os.system('urls_8.bat') <mask token> def urls_11(): os.system('urls_11.bat') <mask token> def urls_13(): os.system('urls_13.bat') def urls_14(): os.system('urls_14.bat') def urls_15(): os.system('urls_15.bat') <mask token> def urls_17(): os.system('urls_17.bat') def urls_18(): os.system('urls_18.bat') def urls_19(): os.system('urls_19.bat') <mask token> def urls_21(): os.system('urls_22.bat') <mask token> def urls_23(): os.system('urls_23.bat') def urls_24(): os.system('urls_24.bat') <mask token> def urls_29(): os.system('urls_29.bat') <mask token> def urls_31(): os.system('urls_32.bat') def urls_32(): os.system('urls_32.bat') def urls_33(): os.system('urls_33.bat') <mask token> def urls_35(): os.system('urls_35.bat') def urls_36(): os.system('urls_36.bat') def urls_37(): os.system('urls_37.bat') <mask token> def urls_38(): os.system('urls_39.bat') <mask token> def urls_40(): os.system('urls_41.bat') <mask token> def urls_44(): os.system('urls_44.bat') <mask token> def urls_46(): os.system('urls_46.bat') <mask token> def urls_47(): os.system('urls_48.bat') def urls_48(): os.system('urls_49.bat') <mask token> def urls_52(): os.system('urls_52.bat') <mask token> def urls_55(): os.system('urls_55.bat') <mask token> def urls_57(): os.system('urls_58.bat') def urls_58(): os.system('urls_59.bat') <mask token> def urls_61(): os.system('urls_61.bat') def urls_62(): os.system('urls_62.bat') def urls_63(): os.system('urls_63.bat') def urls_64(): os.system('urls_64.bat') <mask token>
<mask token> def urls(): os.system('urls.bat') def urls_1(): os.system('urls_1.bat') <mask token> def urls_3(): os.system('urls_3.bat') def urls_4(): os.system('urls_4.bat') def urls_5(): os.system('urls_5.bat') def urls_6(): os.system('urls_6.bat') def urls_7(): os.system('urls_7.bat') def urls_8(): os.system('urls_8.bat') def urls_9(): os.system('urls_9.bat') <mask token> def urls_11(): os.system('urls_11.bat') def urls_12(): os.system('urls_12.bat') def urls_13(): os.system('urls_13.bat') def urls_14(): os.system('urls_14.bat') def urls_15(): os.system('urls_15.bat') def urls_16(): os.system('urls_16.bat') def urls_17(): os.system('urls_17.bat') def urls_18(): os.system('urls_18.bat') def urls_19(): os.system('urls_19.bat') def urls_20(): os.system('urls_20.bat') <mask token> def urls_21(): os.system('urls_22.bat') <mask token> def urls_23(): os.system('urls_23.bat') def urls_24(): os.system('urls_24.bat') def urls_25(): os.system('urls_25.bat') def urls_26(): os.system('urls_26.bat') def urls_27(): os.system('urls_27.bat') <mask token> def urls_29(): os.system('urls_29.bat') <mask token> def urls_31(): os.system('urls_32.bat') def urls_32(): os.system('urls_32.bat') def urls_33(): os.system('urls_33.bat') def urls_34(): os.system('urls_34.bat') def urls_35(): os.system('urls_35.bat') def urls_36(): os.system('urls_36.bat') def urls_37(): os.system('urls_37.bat') def urls_38(): os.system('urls_38.bat') def urls_38(): os.system('urls_39.bat') <mask token> def urls_40(): os.system('urls_41.bat') def urls_41(): os.system('urls_41.bat') <mask token> def urls_44(): os.system('urls_44.bat') <mask token> def urls_46(): os.system('urls_46.bat') def urls_47(): os.system('urls_47.bat') def urls_47(): os.system('urls_48.bat') def urls_48(): os.system('urls_49.bat') <mask token> def urls_51(): os.system('urls_51.bat') def urls_52(): os.system('urls_52.bat') def urls_53(): os.system('urls_53.bat') <mask token> def urls_55(): os.system('urls_55.bat') <mask token> def urls_56(): os.system('urls_57.bat') def urls_57(): os.system('urls_58.bat') def urls_58(): os.system('urls_59.bat') <mask token> def urls_61(): os.system('urls_61.bat') def urls_62(): os.system('urls_62.bat') def urls_63(): os.system('urls_63.bat') def urls_64(): os.system('urls_64.bat') <mask token>
<mask token> def urls(): os.system('urls.bat') def urls_1(): os.system('urls_1.bat') <mask token> def urls_3(): os.system('urls_3.bat') def urls_4(): os.system('urls_4.bat') def urls_5(): os.system('urls_5.bat') def urls_6(): os.system('urls_6.bat') def urls_7(): os.system('urls_7.bat') def urls_8(): os.system('urls_8.bat') def urls_9(): os.system('urls_9.bat') <mask token> def urls_11(): os.system('urls_11.bat') def urls_12(): os.system('urls_12.bat') def urls_13(): os.system('urls_13.bat') def urls_14(): os.system('urls_14.bat') def urls_15(): os.system('urls_15.bat') def urls_16(): os.system('urls_16.bat') def urls_17(): os.system('urls_17.bat') def urls_18(): os.system('urls_18.bat') def urls_19(): os.system('urls_19.bat') def urls_20(): os.system('urls_20.bat') <mask token> def urls_21(): os.system('urls_22.bat') <mask token> def urls_23(): os.system('urls_23.bat') def urls_24(): os.system('urls_24.bat') def urls_25(): os.system('urls_25.bat') def urls_26(): os.system('urls_26.bat') def urls_27(): os.system('urls_27.bat') def urls_28(): os.system('urls_28.bat') def urls_29(): os.system('urls_29.bat') <mask token> def urls_31(): os.system('urls_32.bat') def urls_32(): os.system('urls_32.bat') def urls_33(): os.system('urls_33.bat') def urls_34(): os.system('urls_34.bat') def urls_35(): os.system('urls_35.bat') def urls_36(): os.system('urls_36.bat') def urls_37(): os.system('urls_37.bat') def urls_38(): os.system('urls_38.bat') def urls_38(): os.system('urls_39.bat') <mask token> def urls_40(): os.system('urls_41.bat') def urls_41(): os.system('urls_41.bat') <mask token> def urls_43(): os.system('urls_43.bat') def urls_44(): os.system('urls_44.bat') def urls_45(): os.system('urls_45.bat') def urls_46(): os.system('urls_46.bat') def urls_47(): os.system('urls_47.bat') def urls_47(): os.system('urls_48.bat') def urls_48(): os.system('urls_49.bat') <mask token> def urls_51(): os.system('urls_51.bat') def urls_52(): os.system('urls_52.bat') def urls_53(): os.system('urls_53.bat') def urls_54(): os.system('urls_54.bat') def urls_55(): os.system('urls_55.bat') def urls_56(): os.system('urls_56.bat') def urls_56(): os.system('urls_57.bat') def urls_57(): os.system('urls_58.bat') def urls_58(): os.system('urls_59.bat') <mask token> def urls_60(): os.system('urls_60.bat') def urls_61(): os.system('urls_61.bat') def urls_62(): os.system('urls_62.bat') def urls_63(): os.system('urls_63.bat') def urls_64(): os.system('urls_64.bat') <mask token>
<mask token> def urls(): os.system('urls.bat') def urls_1(): os.system('urls_1.bat') <mask token> def urls_3(): os.system('urls_3.bat') def urls_4(): os.system('urls_4.bat') def urls_5(): os.system('urls_5.bat') def urls_6(): os.system('urls_6.bat') def urls_7(): os.system('urls_7.bat') def urls_8(): os.system('urls_8.bat') def urls_9(): os.system('urls_9.bat') <mask token> def urls_11(): os.system('urls_11.bat') def urls_12(): os.system('urls_12.bat') def urls_13(): os.system('urls_13.bat') def urls_14(): os.system('urls_14.bat') def urls_15(): os.system('urls_15.bat') def urls_16(): os.system('urls_16.bat') def urls_17(): os.system('urls_17.bat') def urls_18(): os.system('urls_18.bat') def urls_19(): os.system('urls_19.bat') def urls_20(): os.system('urls_20.bat') <mask token> def urls_21(): os.system('urls_22.bat') def urls_22(): os.system('urls_23.bat') def urls_23(): os.system('urls_23.bat') def urls_24(): os.system('urls_24.bat') def urls_25(): os.system('urls_25.bat') def urls_26(): os.system('urls_26.bat') def urls_27(): os.system('urls_27.bat') def urls_28(): os.system('urls_28.bat') def urls_29(): os.system('urls_29.bat') def urls_29(): os.system('urls_30.bat') def urls_30(): os.system('urls_31.bat') def urls_31(): os.system('urls_32.bat') def urls_32(): os.system('urls_32.bat') def urls_33(): os.system('urls_33.bat') def urls_34(): os.system('urls_34.bat') def urls_35(): os.system('urls_35.bat') def urls_36(): os.system('urls_36.bat') def urls_37(): os.system('urls_37.bat') def urls_38(): os.system('urls_38.bat') def urls_38(): os.system('urls_39.bat') <mask token> def urls_40(): os.system('urls_41.bat') def urls_41(): os.system('urls_41.bat') def urls_42(): os.system('urls_42.bat') def urls_43(): os.system('urls_43.bat') def urls_44(): os.system('urls_44.bat') def urls_45(): os.system('urls_45.bat') def urls_46(): os.system('urls_46.bat') def urls_47(): os.system('urls_47.bat') def urls_47(): os.system('urls_48.bat') def urls_48(): os.system('urls_49.bat') def urls_49(): os.system('urls_50.bat') def urls_50(): os.system('urls_50.bat') def urls_51(): os.system('urls_51.bat') def urls_52(): os.system('urls_52.bat') def urls_53(): os.system('urls_53.bat') def urls_54(): os.system('urls_54.bat') def urls_55(): os.system('urls_55.bat') def urls_56(): os.system('urls_56.bat') def urls_56(): os.system('urls_57.bat') def urls_57(): os.system('urls_58.bat') def urls_58(): os.system('urls_59.bat') def urls_59(): os.system('urls_59.bat') def urls_60(): os.system('urls_60.bat') def urls_61(): os.system('urls_61.bat') def urls_62(): os.system('urls_62.bat') def urls_63(): os.system('urls_63.bat') def urls_64(): os.system('urls_64.bat') def urls_65(): os.system('urls_65.bat') <mask token>
import os import multiprocessing import time import psycopg2 #os.system("myproject1\\runscrapy2.py") #from scrapy import cmdline #os.system("scrapy crawl parts") #cmdline.execute("cd myproject1".split()) #cmdline.execute("myproject1\\runscrapy.bat".split()) # start = time.perf_counter() connection = psycopg2.connect( host="localhost", user="postgres", database="SCRAPY_DB", password="yolo12", ) cursor = connection.cursor() cursor.execute("DROP TABLE IF EXISTS aa_otoyedekcim") cursor.execute("CREATE TABLE IF NOT EXISTS aa_otoyedekcim (part_no TEXT, description TEXT, price TEXT, cur_url TEXT)") connection.commit() connection.close() def urls(): os.system('urls.bat') def urls_1(): os.system('urls_1.bat') def urls_2(): os.system('urls_2.bat') def urls_3(): os.system('urls_3.bat') def urls_4(): os.system('urls_4.bat') def urls_5(): os.system('urls_5.bat') def urls_6(): os.system('urls_6.bat') def urls_7(): os.system('urls_7.bat') def urls_8(): os.system('urls_8.bat') def urls_9(): os.system('urls_9.bat') def urls_10(): os.system('urls_10.bat') def urls_11(): os.system('urls_11.bat') def urls_12(): os.system('urls_12.bat') def urls_13(): os.system('urls_13.bat') def urls_14(): os.system('urls_14.bat') def urls_15(): os.system('urls_15.bat') def urls_16(): os.system('urls_16.bat') def urls_17(): os.system('urls_17.bat') def urls_18(): os.system('urls_18.bat') def urls_19(): os.system('urls_19.bat') def urls_20(): os.system('urls_20.bat') def urls_20(): os.system('urls_21.bat') def urls_21(): os.system('urls_22.bat') def urls_22(): os.system('urls_23.bat') def urls_23(): os.system('urls_23.bat') def urls_24(): os.system('urls_24.bat') def urls_25(): os.system('urls_25.bat') def urls_26(): os.system('urls_26.bat') def urls_27(): os.system('urls_27.bat') def urls_28(): os.system('urls_28.bat') def urls_29(): os.system('urls_29.bat') def urls_29(): os.system('urls_30.bat') def urls_30(): os.system('urls_31.bat') def urls_31(): os.system('urls_32.bat') def urls_32(): os.system('urls_32.bat') def urls_33(): os.system('urls_33.bat') def urls_34(): os.system('urls_34.bat') def urls_35(): os.system('urls_35.bat') def urls_36(): os.system('urls_36.bat') def urls_37(): os.system('urls_37.bat') def urls_38(): os.system('urls_38.bat') def urls_38(): os.system('urls_39.bat') def urls_39(): os.system('urls_40.bat') def urls_40(): os.system('urls_41.bat') def urls_41(): os.system('urls_41.bat') def urls_42(): os.system('urls_42.bat') def urls_43(): os.system('urls_43.bat') def urls_44(): os.system('urls_44.bat') def urls_45(): os.system('urls_45.bat') def urls_46(): os.system('urls_46.bat') def urls_47(): os.system('urls_47.bat') def urls_47(): os.system('urls_48.bat') def urls_48(): os.system('urls_49.bat') def urls_49(): os.system('urls_50.bat') def urls_50(): os.system('urls_50.bat') def urls_51(): os.system('urls_51.bat') def urls_52(): os.system('urls_52.bat') def urls_53(): os.system('urls_53.bat') def urls_54(): os.system('urls_54.bat') def urls_55(): os.system('urls_55.bat') def urls_56(): os.system('urls_56.bat') def urls_56(): os.system('urls_57.bat') def urls_57(): os.system('urls_58.bat') def urls_58(): os.system('urls_59.bat') def urls_59(): os.system('urls_59.bat') def urls_60(): os.system('urls_60.bat') def urls_61(): os.system('urls_61.bat') def urls_62(): os.system('urls_62.bat') def urls_63(): os.system('urls_63.bat') def urls_64(): os.system('urls_64.bat') def urls_65(): os.system('urls_65.bat') u1 = multiprocessing.Process(target=urls) u2 = multiprocessing.Process(target=urls_1) u3 = multiprocessing.Process(target=urls_2) u4 = multiprocessing.Process(target=urls_3) u5 = multiprocessing.Process(target=urls_4) u6 = multiprocessing.Process(target=urls_5) u7 = multiprocessing.Process(target=urls_6) u8 = multiprocessing.Process(target=urls_7) u9 = multiprocessing.Process(target=urls_8) u10 = multiprocessing.Process(target=urls_9) u11 = multiprocessing.Process(target=urls_10) u12 = multiprocessing.Process(target=urls_11) u13 = multiprocessing.Process(target=urls_12) u14 = multiprocessing.Process(target=urls_13) u15 = multiprocessing.Process(target=urls_14) u16 = multiprocessing.Process(target=urls_15) u16 = multiprocessing.Process(target=urls_16) u17 = multiprocessing.Process(target=urls_17) u18 = multiprocessing.Process(target=urls_18) u19 = multiprocessing.Process(target=urls_19) u20 = multiprocessing.Process(target=urls_20) u21 = multiprocessing.Process(target=urls_21) u22 = multiprocessing.Process(target=urls_22) u23 = multiprocessing.Process(target=urls_23) u24 = multiprocessing.Process(target=urls_24) u25 = multiprocessing.Process(target=urls_25) u26 = multiprocessing.Process(target=urls_26) u27 = multiprocessing.Process(target=urls_27) u28 = multiprocessing.Process(target=urls_28) u29 = multiprocessing.Process(target=urls_29) u30 = multiprocessing.Process(target=urls_30) u31 = multiprocessing.Process(target=urls_31) u32 = multiprocessing.Process(target=urls_32) u33 = multiprocessing.Process(target=urls_33) u34 = multiprocessing.Process(target=urls_34) u35 = multiprocessing.Process(target=urls_35) u36 = multiprocessing.Process(target=urls_36) u37 = multiprocessing.Process(target=urls_37) u38 = multiprocessing.Process(target=urls_38) u39 = multiprocessing.Process(target=urls_39) u40 = multiprocessing.Process(target=urls_40) u41 = multiprocessing.Process(target=urls_41) u42 = multiprocessing.Process(target=urls_42) u43 = multiprocessing.Process(target=urls_43) u44 = multiprocessing.Process(target=urls_44) u45 = multiprocessing.Process(target=urls_45) u46 = multiprocessing.Process(target=urls_46) u47 = multiprocessing.Process(target=urls_47) u48 = multiprocessing.Process(target=urls_48) u49 = multiprocessing.Process(target=urls_49) u50 = multiprocessing.Process(target=urls_50) u51 = multiprocessing.Process(target=urls_51) u52 = multiprocessing.Process(target=urls_52) u53 = multiprocessing.Process(target=urls_53) u54 = multiprocessing.Process(target=urls_54) u55 = multiprocessing.Process(target=urls_55) u56 = multiprocessing.Process(target=urls_56) u57 = multiprocessing.Process(target=urls_57) u58 = multiprocessing.Process(target=urls_58) u59 = multiprocessing.Process(target=urls_59) u60 = multiprocessing.Process(target=urls_60) u61 = multiprocessing.Process(target=urls_61) u62 = multiprocessing.Process(target=urls_62) u63 = multiprocessing.Process(target=urls_63) u64 = multiprocessing.Process(target=urls_64) u65 = multiprocessing.Process(target=urls_65) if __name__ == '__main__': u1.start() u2.start() u3.start() u4.start() u5.start() u6.start() u7.start() u8.start() u9.start() u10.start() u11.start() u12.start() u13.start() u14.start() u15.start() u16.start() u17.start() u18.start() u19.start() u20.start() u21.start() u22.start() u1.join() u2.join() u3.join() u4.join() u5.join() u6.join() u7.join() u8.join() u9.join() u10.join() u11.join() u12.join() u13.join() u14.join() u15.join() u16.join() u17.join() u18.join() u19.join() u20.join() u21.join() u22.join() os.system('1_runmebaby_3.bat') ''' if __name__ == '__main__': u23.start() u24.start() u25.start() u26.start() u27.start() u28.start() u29.start() u30.start() u31.start() u32.start() u33.start() u34.start() u35.start() u36.start() u37.start() u38.start() u39.start() u40.start() u41.start() u42.start() u43.start() u44.start() u23.join() u24.join() u25.join() u26.join() u27.join() u28.join() u29.join() u30.join() u31.join() u32.join() u33.join() u34.join() u35.join() u36.join() u37.join() u38.join() u39.join() u40.join() u41.join() u42.join() u43.join() u44.join() if __name__ == '__main__': u45.start() u46.start() u47.start() u48.start() u49.start() u50.start() u51.start() u52.start() u53.start() u54.start() u55.start() u56.start() u57.start() u58.start() u59.start() u60.start() u61.start() u62.start() u63.start() u64.start() u65.start() u45.join() u46.join() u47.join() u48.join() u49.join() u50.join() u51.join() u52.join() u53.join() u54.join() u55.join() u56.join() u57.join() u58.join() u59.join() u60.join() u61.join() u62.join() u63.join() u64.join() u65.join() # finish = time.perf_counter() # print(f'Successfully finished in {round((finish-start)/60, 2)} minute(s) bro') '''
[ 39, 53, 59, 67, 75 ]
1,706
d14c22ba6db90a93a19d61e105e31b3eb8f3a206
<mask token>
{'filter': false, 'title': 'cash.py', 'tooltip': '/pset6/cash/cash.py', 'undoManager': {'mark': 100, 'position': 100, 'stack': [[{'start': { 'row': 12, 'column': 7}, 'end': {'row': 12, 'column': 8}, 'action': 'insert', 'lines': [' '], 'id': 308}, {'start': {'row': 12, 'column': 8 }, 'end': {'row': 12, 'column': 9}, 'action': 'insert', 'lines': ['>']} ], [{'start': {'row': 12, 'column': 9}, 'end': {'row': 12, 'column': 10 }, 'action': 'insert', 'lines': [' '], 'id': 309}], [{'start': {'row': 12, 'column': 9}, 'end': {'row': 12, 'column': 10}, 'action': 'remove', 'lines': [' '], 'id': 310}], [{'start': {'row': 12, 'column': 9}, 'end': {'row': 12, 'column': 10}, 'action': 'insert', 'lines': ['='], 'id': 311}], [{'start': {'row': 12, 'column': 10}, 'end': {'row': 12, 'column': 11}, 'action': 'insert', 'lines': [' '], 'id': 312}, {'start': {'row': 12, 'column': 11}, 'end': {'row': 12, 'column': 12}, 'action': 'insert', 'lines': ['q']}, {'start': {'row': 12, 'column': 12}, 'end': {'row': 12, 'column': 13}, 'action': 'insert', 'lines': ['u']}, { 'start': {'row': 12, 'column': 13}, 'end': {'row': 12, 'column': 14}, 'action': 'insert', 'lines': ['a']}, {'start': {'row': 12, 'column': 14 }, 'end': {'row': 12, 'column': 15}, 'action': 'insert', 'lines': ['r'] }, {'start': {'row': 12, 'column': 15}, 'end': {'row': 12, 'column': 16 }, 'action': 'insert', 'lines': ['t']}, {'start': {'row': 12, 'column': 16}, 'end': {'row': 12, 'column': 17}, 'action': 'insert', 'lines': [ 'e']}, {'start': {'row': 12, 'column': 17}, 'end': {'row': 12, 'column': 18}, 'action': 'insert', 'lines': ['r']}], [{'start': {'row': 14, 'column': 0}, 'end': {'row': 15, 'column': 13}, 'action': 'remove', 'lines': [' if c < quarter:', ' break'], 'id': 313}, {'start': {'row': 13, 'column': 19}, 'end': {'row': 14, 'column': 0}, 'action': 'remove', 'lines': ['', '']}], [{'start': {'row': 16, 'column': 6}, 'end': {'row': 16, 'column': 10}, 'action': 'remove', 'lines': ['True'], 'id': 314}, {'start': {'row': 16, 'column': 6}, 'end': {'row': 16, 'column': 7}, 'action': 'insert', 'lines': ['c']}, {'start': {'row': 16, 'column': 7}, 'end': {'row': 16, 'column': 8}, 'action': 'insert', 'lines': ['>']}], [{'start': {'row': 16, 'column': 8}, 'end': {'row': 16, 'column': 9}, 'action': 'insert', 'lines': ['='], 'id': 315}], [{ 'start': {'row': 16, 'column': 9}, 'end': {'row': 16, 'column': 10}, 'action': 'insert', 'lines': [' '], 'id': 316}, {'start': {'row': 16, 'column': 10}, 'end': {'row': 16, 'column': 11}, 'action': 'insert', 'lines': ['d']}, {'start': {'row': 16, 'column': 11}, 'end': {'row': 16, 'column': 12}, 'action': 'insert', 'lines': ['i']}, {'start': {'row': 16, 'column': 12}, 'end': {'row': 16, 'column': 13}, 'action': 'insert', 'lines': ['m']}, {'start': {'row': 16, 'column': 13}, 'end': {'row': 16, 'column': 14}, 'action': 'insert', 'lines': ['e']}], [{'start': {'row': 16, 'column': 7}, 'end': {'row': 16, 'column': 8}, 'action': 'insert', 'lines': [' '], 'id': 317}], [{'start': {'row': 18, 'column': 0}, 'end': {'row': 19, 'column': 13}, 'action': 'remove', 'lines': [ ' if c < dime:', ' break'], 'id': 318}, {'start': {'row': 17, 'column': 16}, 'end': {'row': 18, 'column': 0}, 'action': 'remove', 'lines': ['', '']}], [{'start': {'row': 20, 'column': 6}, 'end': {'row': 20, 'column': 10}, 'action': 'remove', 'lines': ['True'], 'id': 319}], [{'start': {'row': 20, 'column': 6}, 'end': {'row': 20, 'column': 7}, 'action': 'insert', 'lines': ['c'], 'id': 320}], [{'start': {'row': 20, 'column': 7}, 'end': {'row': 20, 'column': 8}, 'action': 'insert', 'lines': ['>'], 'id': 321}], [{'start': {'row': 20, 'column': 7}, 'end': {'row': 20, 'column': 8}, 'action': 'remove', 'lines': ['>'], 'id': 322 }], [{'start': {'row': 20, 'column': 7}, 'end': {'row': 20, 'column': 8 }, 'action': 'insert', 'lines': [' '], 'id': 323}, {'start': {'row': 20, 'column': 8}, 'end': {'row': 20, 'column': 9}, 'action': 'insert', 'lines': ['>']}], [{'start': {'row': 20, 'column': 9}, 'end': {'row': 20, 'column': 10}, 'action': 'insert', 'lines': ['='], 'id': 324}], [{ 'start': {'row': 20, 'column': 10}, 'end': {'row': 20, 'column': 11}, 'action': 'insert', 'lines': [' '], 'id': 325}, {'start': {'row': 20, 'column': 11}, 'end': {'row': 20, 'column': 12}, 'action': 'insert', 'lines': ['n']}, {'start': {'row': 20, 'column': 12}, 'end': {'row': 20, 'column': 13}, 'action': 'insert', 'lines': ['i']}, {'start': {'row': 20, 'column': 13}, 'end': {'row': 20, 'column': 14}, 'action': 'insert', 'lines': ['c']}, {'start': {'row': 20, 'column': 14}, 'end': {'row': 20, 'column': 15}, 'action': 'insert', 'lines': ['k']}, {'start': {'row': 20, 'column': 15}, 'end': {'row': 20, 'column': 16}, 'action': 'insert', 'lines': ['e']}, {'start': {'row': 20, 'column': 16}, 'end': {'row': 20, 'column': 17}, 'action': 'insert', 'lines': ['l']}], [{'start': {'row': 22, 'column': 1}, 'end': {'row': 23, 'column': 13}, 'action': 'remove', 'lines': [' if c < nickel:', ' break'], 'id': 326}, {'start': {'row': 22, 'column': 0}, 'end': {'row': 22, 'column': 1}, 'action': 'remove', 'lines': [' ']}, {'start': {'row': 21, 'column': 18}, 'end': {'row': 22, 'column': 0}, 'action': 'remove', 'lines': ['', '']}], [{ 'start': {'row': 24, 'column': 9}, 'end': {'row': 24, 'column': 10}, 'action': 'remove', 'lines': ['e'], 'id': 327}, {'start': {'row': 24, 'column': 8}, 'end': {'row': 24, 'column': 9}, 'action': 'remove', 'lines': ['u']}, {'start': {'row': 24, 'column': 7}, 'end': {'row': 24, 'column': 8}, 'action': 'remove', 'lines': ['r']}, {'start': {'row': 24, 'column': 6}, 'end': {'row': 24, 'column': 7}, 'action': 'remove', 'lines': ['T']}], [{'start': {'row': 24, 'column': 6}, 'end': {'row': 24, 'column': 7}, 'action': 'insert', 'lines': ['c'], 'id': 328}], [{ 'start': {'row': 24, 'column': 7}, 'end': {'row': 24, 'column': 8}, 'action': 'insert', 'lines': [' '], 'id': 329}, {'start': {'row': 24, 'column': 8}, 'end': {'row': 24, 'column': 9}, 'action': 'insert', 'lines': ['>']}, {'start': {'row': 24, 'column': 9}, 'end': {'row': 24, 'column': 10}, 'action': 'insert', 'lines': ['=']}], [{'start': {'row': 24, 'column': 10}, 'end': {'row': 24, 'column': 11}, 'action': 'insert', 'lines': [' '], 'id': 330}, {'start': {'row': 24, 'column': 11}, 'end': {'row': 24, 'column': 12}, 'action': 'insert', 'lines': ['p']}, { 'start': {'row': 24, 'column': 12}, 'end': {'row': 24, 'column': 13}, 'action': 'insert', 'lines': ['e']}, {'start': {'row': 24, 'column': 13 }, 'end': {'row': 24, 'column': 14}, 'action': 'insert', 'lines': ['n'] }, {'start': {'row': 24, 'column': 14}, 'end': {'row': 24, 'column': 15 }, 'action': 'insert', 'lines': ['n']}, {'start': {'row': 24, 'column': 15}, 'end': {'row': 24, 'column': 16}, 'action': 'insert', 'lines': [ 'i']}], [{'start': {'row': 24, 'column': 16}, 'end': {'row': 24, 'column': 17}, 'action': 'insert', 'lines': ['e'], 'id': 331}], [{ 'start': {'row': 26, 'column': 3}, 'end': {'row': 27, 'column': 13}, 'action': 'remove', 'lines': [' if c < 0:', ' break'], 'id': 332 }, {'start': {'row': 26, 'column': 2}, 'end': {'row': 26, 'column': 3}, 'action': 'remove', 'lines': [' ']}, {'start': {'row': 26, 'column': 1}, 'end': {'row': 26, 'column': 2}, 'action': 'remove', 'lines': [' ']}, { 'start': {'row': 26, 'column': 0}, 'end': {'row': 26, 'column': 1}, 'action': 'remove', 'lines': [' ']}, {'start': {'row': 25, 'column': 18 }, 'end': {'row': 26, 'column': 0}, 'action': 'remove', 'lines': ['', '']}], [{'start': {'row': 1, 'column': 0}, 'end': {'row': 2, 'column': 0}, 'action': 'insert', 'lines': ['', ''], 'id': 333}, {'start': {'row': 2, 'column': 0}, 'end': {'row': 3, 'column': 0}, 'action': 'insert', 'lines': ['', '']}], [{'start': {'row': 2, 'column': 0}, 'end': {'row': 2, 'column': 1}, 'action': 'insert', 'lines': ['d'], 'id': 334}, { 'start': {'row': 2, 'column': 1}, 'end': {'row': 2, 'column': 2}, 'action': 'insert', 'lines': ['e']}, {'start': {'row': 2, 'column': 2}, 'end': {'row': 2, 'column': 3}, 'action': 'insert', 'lines': ['f']}], [ {'start': {'row': 2, 'column': 3}, 'end': {'row': 2, 'column': 4}, 'action': 'insert', 'lines': [' '], 'id': 335}, {'start': {'row': 2, 'column': 4}, 'end': {'row': 2, 'column': 5}, 'action': 'insert', 'lines': ['m']}, {'start': {'row': 2, 'column': 5}, 'end': {'row': 2, 'column': 6}, 'action': 'insert', 'lines': ['a']}, {'start': {'row': 2, 'column': 6}, 'end': {'row': 2, 'column': 7}, 'action': 'insert', 'lines': ['i']}, {'start': {'row': 2, 'column': 7}, 'end': {'row': 2, 'column': 8}, 'action': 'insert', 'lines': ['n']}], [{'start': {'row': 2, 'column': 8}, 'end': {'row': 2, 'column': 10}, 'action': 'insert', 'lines': ['()'], 'id': 336}], [{'start': {'row': 2, 'column': 10}, 'end': {'row': 2, 'column': 11}, 'action': 'insert', 'lines': [':'], 'id': 337}], [{'start': {'row': 4, 'column': 0}, 'end': {'row': 4, 'column': 4}, 'action': 'insert', 'lines': [' '], 'id': 338}], [{ 'start': {'row': 5, 'column': 0}, 'end': {'row': 5, 'column': 4}, 'action': 'insert', 'lines': [' '], 'id': 339}], [{'start': {'row': 6, 'column': 0}, 'end': {'row': 6, 'column': 4}, 'action': 'insert', 'lines': [' '], 'id': 340}], [{'start': {'row': 7, 'column': 0}, 'end': {'row': 7, 'column': 4}, 'action': 'insert', 'lines': [' '], 'id': 341}], [{'start': {'row': 8, 'column': 0}, 'end': {'row': 8, 'column': 4}, 'action': 'insert', 'lines': [' '], 'id': 342}], [{ 'start': {'row': 10, 'column': 0}, 'end': {'row': 10, 'column': 4}, 'action': 'insert', 'lines': [' '], 'id': 343}], [{'start': {'row': 12, 'column': 0}, 'end': {'row': 12, 'column': 4}, 'action': 'insert', 'lines': [' '], 'id': 344}], [{'start': {'row': 14, 'column': 0}, 'end': {'row': 14, 'column': 4}, 'action': 'insert', 'lines': [' '], 'id': 345}], [{'start': {'row': 15, 'column': 4}, 'end': {'row': 15, 'column': 8}, 'action': 'insert', 'lines': [' '], 'id': 346}], [{ 'start': {'row': 16, 'column': 4}, 'end': {'row': 16, 'column': 8}, 'action': 'insert', 'lines': [' '], 'id': 347}], [{'start': {'row': 18, 'column': 0}, 'end': {'row': 18, 'column': 4}, 'action': 'insert', 'lines': [' '], 'id': 348}], [{'start': {'row': 19, 'column': 4}, 'end': {'row': 19, 'column': 8}, 'action': 'insert', 'lines': [' '], 'id': 349}], [{'start': {'row': 20, 'column': 4}, 'end': {'row': 20, 'column': 8}, 'action': 'insert', 'lines': [' '], 'id': 350}], [{ 'start': {'row': 22, 'column': 0}, 'end': {'row': 22, 'column': 4}, 'action': 'insert', 'lines': [' '], 'id': 351}], [{'start': {'row': 23, 'column': 4}, 'end': {'row': 23, 'column': 8}, 'action': 'insert', 'lines': [' '], 'id': 352}], [{'start': {'row': 24, 'column': 4}, 'end': {'row': 24, 'column': 8}, 'action': 'insert', 'lines': [' '], 'id': 353}], [{'start': {'row': 24, 'column': 8}, 'end': {'row': 24, 'column': 12}, 'action': 'insert', 'lines': [' '], 'id': 354}], [{ 'start': {'row': 24, 'column': 8}, 'end': {'row': 24, 'column': 12}, 'action': 'remove', 'lines': [' '], 'id': 355}], [{'start': {'row': 26, 'column': 0}, 'end': {'row': 26, 'column': 4}, 'action': 'insert', 'lines': [' '], 'id': 356}], [{'start': {'row': 27, 'column': 4}, 'end': {'row': 27, 'column': 8}, 'action': 'insert', 'lines': [' '], 'id': 357}], [{'start': {'row': 28, 'column': 4}, 'end': {'row': 28, 'column': 8}, 'action': 'insert', 'lines': [' '], 'id': 358}], [{ 'start': {'row': 30, 'column': 0}, 'end': {'row': 30, 'column': 4}, 'action': 'insert', 'lines': [' '], 'id': 359}], [{'start': {'row': 30, 'column': 25}, 'end': {'row': 31, 'column': 0}, 'action': 'insert', 'lines': ['', ''], 'id': 360}, {'start': {'row': 31, 'column': 0}, 'end': {'row': 31, 'column': 4}, 'action': 'insert', 'lines': [' ']}, {'start': {'row': 31, 'column': 4}, 'end': {'row': 32, 'column': 0}, 'action': 'insert', 'lines': ['', '']}, {'start': {'row': 32, 'column': 0}, 'end': {'row': 32, 'column': 4}, 'action': 'insert', 'lines': [ ' ']}], [{'start': {'row': 32, 'column': 0}, 'end': {'row': 32, 'column': 4}, 'action': 'remove', 'lines': [' '], 'id': 361}], [{ 'start': {'row': 32, 'column': 0}, 'end': {'row': 32, 'column': 1}, 'action': 'insert', 'lines': ['d'], 'id': 362}, {'start': {'row': 32, 'column': 1}, 'end': {'row': 32, 'column': 2}, 'action': 'insert', 'lines': ['e']}, {'start': {'row': 32, 'column': 2}, 'end': {'row': 32, 'column': 3}, 'action': 'insert', 'lines': ['f']}], [{'start': {'row': 32, 'column': 3}, 'end': {'row': 32, 'column': 4}, 'action': 'insert', 'lines': [' '], 'id': 363}], [{'start': {'row': 32, 'column': 4}, 'end': {'row': 32, 'column': 5}, 'action': 'insert', 'lines': ['g'], 'id': 364 }, {'start': {'row': 32, 'column': 5}, 'end': {'row': 32, 'column': 6}, 'action': 'insert', 'lines': ['e']}, {'start': {'row': 32, 'column': 6}, 'end': {'row': 32, 'column': 7}, 'action': 'insert', 'lines': ['t']}, { 'start': {'row': 32, 'column': 7}, 'end': {'row': 32, 'column': 8}, 'action': 'insert', 'lines': ['_']}, {'start': {'row': 32, 'column': 8}, 'end': {'row': 32, 'column': 9}, 'action': 'insert', 'lines': ['p']}, { 'start': {'row': 32, 'column': 9}, 'end': {'row': 32, 'column': 10}, 'action': 'insert', 'lines': ['o']}, {'start': {'row': 32, 'column': 10 }, 'end': {'row': 32, 'column': 11}, 'action': 'insert', 'lines': ['s'] }, {'start': {'row': 32, 'column': 11}, 'end': {'row': 32, 'column': 12 }, 'action': 'insert', 'lines': ['i']}, {'start': {'row': 32, 'column': 12}, 'end': {'row': 32, 'column': 13}, 'action': 'insert', 'lines': [ 't']}, {'start': {'row': 32, 'column': 13}, 'end': {'row': 32, 'column': 14}, 'action': 'insert', 'lines': ['i']}, {'start': {'row': 32, 'column': 14}, 'end': {'row': 32, 'column': 15}, 'action': 'insert', 'lines': ['v']}, {'start': {'row': 32, 'column': 15}, 'end': {'row': 32, 'column': 16}, 'action': 'insert', 'lines': ['e']}], [{'start': {'row': 32, 'column': 16}, 'end': {'row': 32, 'column': 17}, 'action': 'insert', 'lines': [' '], 'id': 365}, {'start': {'row': 32, 'column': 17}, 'end': {'row': 32, 'column': 18}, 'action': 'insert', 'lines': ['c']}, { 'start': {'row': 32, 'column': 18}, 'end': {'row': 32, 'column': 19}, 'action': 'insert', 'lines': ['h']}, {'start': {'row': 32, 'column': 19 }, 'end': {'row': 32, 'column': 20}, 'action': 'insert', 'lines': ['a'] }, {'start': {'row': 32, 'column': 20}, 'end': {'row': 32, 'column': 21 }, 'action': 'insert', 'lines': ['n']}, {'start': {'row': 32, 'column': 21}, 'end': {'row': 32, 'column': 22}, 'action': 'insert', 'lines': [ 'g']}, {'start': {'row': 32, 'column': 22}, 'end': {'row': 32, 'column': 23}, 'action': 'insert', 'lines': ['e']}], [{'start': {'row': 32, 'column': 22}, 'end': {'row': 32, 'column': 23}, 'action': 'remove', 'lines': ['e'], 'id': 366}, {'start': {'row': 32, 'column': 21}, 'end': {'row': 32, 'column': 22}, 'action': 'remove', 'lines': ['g']}, { 'start': {'row': 32, 'column': 20}, 'end': {'row': 32, 'column': 21}, 'action': 'remove', 'lines': ['n']}, {'start': {'row': 32, 'column': 19 }, 'end': {'row': 32, 'column': 20}, 'action': 'remove', 'lines': ['a'] }, {'start': {'row': 32, 'column': 18}, 'end': {'row': 32, 'column': 19 }, 'action': 'remove', 'lines': ['h']}, {'start': {'row': 32, 'column': 17}, 'end': {'row': 32, 'column': 18}, 'action': 'remove', 'lines': [ 'c']}, {'start': {'row': 32, 'column': 16}, 'end': {'row': 32, 'column': 17}, 'action': 'remove', 'lines': [' ']}], [{'start': {'row': 32, 'column': 16}, 'end': {'row': 32, 'column': 17}, 'action': 'insert', 'lines': ['_'], 'id': 367}, {'start': {'row': 32, 'column': 17}, 'end': {'row': 32, 'column': 18}, 'action': 'insert', 'lines': ['c']}, { 'start': {'row': 32, 'column': 18}, 'end': {'row': 32, 'column': 19}, 'action': 'insert', 'lines': ['h']}, {'start': {'row': 32, 'column': 19 }, 'end': {'row': 32, 'column': 20}, 'action': 'insert', 'lines': ['a'] }, {'start': {'row': 32, 'column': 20}, 'end': {'row': 32, 'column': 21 }, 'action': 'insert', 'lines': ['n']}, {'start': {'row': 32, 'column': 21}, 'end': {'row': 32, 'column': 22}, 'action': 'insert', 'lines': [ 'g']}, {'start': {'row': 32, 'column': 22}, 'end': {'row': 32, 'column': 23}, 'action': 'insert', 'lines': ['e']}, {'start': {'row': 32, 'column': 23}, 'end': {'row': 32, 'column': 24}, 'action': 'insert', 'lines': [':']}], [{'start': {'row': 32, 'column': 24}, 'end': {'row': 33, 'column': 0}, 'action': 'insert', 'lines': ['', ''], 'id': 368}, { 'start': {'row': 33, 'column': 0}, 'end': {'row': 33, 'column': 4}, 'action': 'insert', 'lines': [' ']}], [{'start': {'row': 33, 'column': 4}, 'end': {'row': 33, 'column': 8}, 'action': 'insert', 'lines': [' '], 'id': 369}], [{'start': {'row': 33, 'column': 4}, 'end': {'row': 33, 'column': 8}, 'action': 'remove', 'lines': [' '], 'id': 370}], [{'start': {'row': 10, 'column': 13}, 'end': {'row': 10, 'column': 39}, 'action': 'remove', 'lines': [ 'get_float("Change owed: ")'], 'id': 372}], [{'start': {'row': 10, 'column': 13}, 'end': {'row': 10, 'column': 14}, 'action': 'insert', 'lines': ['g'], 'id': 373}, {'start': {'row': 10, 'column': 14}, 'end': {'row': 10, 'column': 15}, 'action': 'insert', 'lines': ['e']}, { 'start': {'row': 10, 'column': 15}, 'end': {'row': 10, 'column': 16}, 'action': 'insert', 'lines': ['t']}, {'start': {'row': 10, 'column': 16 }, 'end': {'row': 10, 'column': 17}, 'action': 'insert', 'lines': ['_'] }, {'start': {'row': 10, 'column': 17}, 'end': {'row': 10, 'column': 18 }, 'action': 'insert', 'lines': ['p']}, {'start': {'row': 10, 'column': 18}, 'end': {'row': 10, 'column': 19}, 'action': 'insert', 'lines': [ 'o']}, {'start': {'row': 10, 'column': 19}, 'end': {'row': 10, 'column': 20}, 'action': 'insert', 'lines': ['s']}, {'start': {'row': 10, 'column': 20}, 'end': {'row': 10, 'column': 21}, 'action': 'insert', 'lines': ['i']}, {'start': {'row': 10, 'column': 21}, 'end': {'row': 10, 'column': 22}, 'action': 'insert', 'lines': ['t']}, {'start': {'row': 10, 'column': 22}, 'end': {'row': 10, 'column': 23}, 'action': 'insert', 'lines': ['i']}, {'start': {'row': 10, 'column': 23}, 'end': {'row': 10, 'column': 24}, 'action': 'insert', 'lines': ['v']}], [{'start': {'row': 10, 'column': 24}, 'end': {'row': 10, 'column': 25}, 'action': 'insert', 'lines': ['e'], 'id': 374}], [{'start': {'row': 10, 'column': 25}, 'end': {'row': 10, 'column': 26}, 'action': 'insert', 'lines': ['_'], 'id': 375}, {'start': {'row': 10, 'column': 26}, 'end': {'row': 10, 'column': 27}, 'action': 'insert', 'lines': ['c']}, {'start': {'row': 10, 'column': 27}, 'end': {'row': 10, 'column': 28}, 'action': 'insert', 'lines': ['h']}, {'start': {'row': 10, 'column': 28}, 'end': {'row': 10, 'column': 29}, 'action': 'insert', 'lines': ['a']}, {'start': {'row': 10, 'column': 29}, 'end': {'row': 10, 'column': 30}, 'action': 'insert', 'lines': ['n']}, {'start': {'row': 10, 'column': 30}, 'end': {'row': 10, 'column': 31}, 'action': 'insert', 'lines': ['g']}, {'start': {'row': 10, 'column': 31}, 'end': {'row': 10, 'column': 32}, 'action': 'insert', 'lines': ['e']}], [{'start': {'row': 10, 'column': 32}, 'end': {'row': 10, 'column': 34}, 'action': 'insert', 'lines': ['()'], 'id': 376}], [{ 'start': {'row': 32, 'column': 24}, 'end': {'row': 33, 'column': 0}, 'action': 'insert', 'lines': ['', ''], 'id': 377}, {'start': {'row': 33, 'column': 0}, 'end': {'row': 33, 'column': 4}, 'action': 'insert', 'lines': [' ']}], [{'start': {'row': 33, 'column': 4}, 'end': {'row': 33, 'column': 30}, 'action': 'insert', 'lines': [ 'get_float("Change owed: ")'], 'id': 378}], [{'start': {'row': 32, 'column': 24}, 'end': {'row': 33, 'column': 0}, 'action': 'insert', 'lines': ['', ''], 'id': 379}, {'start': {'row': 33, 'column': 0}, 'end': {'row': 33, 'column': 4}, 'action': 'insert', 'lines': [' ']}, {'start': {'row': 33, 'column': 4}, 'end': {'row': 33, 'column': 5}, 'action': 'insert', 'lines': ['w']}, {'start': {'row': 33, 'column': 5}, 'end': {'row': 33, 'column': 6}, 'action': 'insert', 'lines': ['h']}, { 'start': {'row': 33, 'column': 6}, 'end': {'row': 33, 'column': 7}, 'action': 'insert', 'lines': ['i']}, {'start': {'row': 33, 'column': 7}, 'end': {'row': 33, 'column': 8}, 'action': 'insert', 'lines': ['l']}, { 'start': {'row': 33, 'column': 8}, 'end': {'row': 33, 'column': 9}, 'action': 'insert', 'lines': ['e']}], [{'start': {'row': 33, 'column': 9}, 'end': {'row': 33, 'column': 10}, 'action': 'insert', 'lines': [' ' ], 'id': 380}], [{'start': {'row': 34, 'column': 4}, 'end': {'row': 34, 'column': 8}, 'action': 'insert', 'lines': [' '], 'id': 381}], [{ 'start': {'row': 34, 'column': 8}, 'end': {'row': 34, 'column': 9}, 'action': 'insert', 'lines': ['c'], 'id': 382}], [{'start': {'row': 34, 'column': 8}, 'end': {'row': 34, 'column': 9}, 'action': 'remove', 'lines': ['c'], 'id': 383}], [{'start': {'row': 34, 'column': 8}, 'end': {'row': 34, 'column': 9}, 'action': 'insert', 'lines': ['c'], 'id': 384 }, {'start': {'row': 34, 'column': 9}, 'end': {'row': 34, 'column': 10}, 'action': 'insert', 'lines': ['h']}, {'start': {'row': 34, 'column': 10 }, 'end': {'row': 34, 'column': 11}, 'action': 'insert', 'lines': ['a'] }, {'start': {'row': 34, 'column': 11}, 'end': {'row': 34, 'column': 12 }, 'action': 'insert', 'lines': ['n']}, {'start': {'row': 34, 'column': 12}, 'end': {'row': 34, 'column': 13}, 'action': 'insert', 'lines': [ 'g']}, {'start': {'row': 34, 'column': 13}, 'end': {'row': 34, 'column': 14}, 'action': 'insert', 'lines': ['e']}], [{'start': {'row': 34, 'column': 13}, 'end': {'row': 34, 'column': 14}, 'action': 'remove', 'lines': ['e'], 'id': 385}, {'start': {'row': 34, 'column': 12}, 'end': {'row': 34, 'column': 13}, 'action': 'remove', 'lines': ['g']}, { 'start': {'row': 34, 'column': 11}, 'end': {'row': 34, 'column': 12}, 'action': 'remove', 'lines': ['n']}, {'start': {'row': 34, 'column': 10 }, 'end': {'row': 34, 'column': 11}, 'action': 'remove', 'lines': ['a'] }, {'start': {'row': 34, 'column': 9}, 'end': {'row': 34, 'column': 10}, 'action': 'remove', 'lines': ['h']}, {'start': {'row': 34, 'column': 8}, 'end': {'row': 34, 'column': 9}, 'action': 'remove', 'lines': ['c']}], [{'start': {'row': 34, 'column': 8}, 'end': {'row': 34, 'column': 9}, 'action': 'insert', 'lines': ['r'], 'id': 386}, {'start': {'row': 34, 'column': 9}, 'end': {'row': 34, 'column': 10}, 'action': 'insert', 'lines': ['e']}, {'start': {'row': 34, 'column': 10}, 'end': {'row': 34, 'column': 11}, 'action': 'insert', 'lines': ['s']}, {'start': {'row': 34, 'column': 11}, 'end': {'row': 34, 'column': 12}, 'action': 'insert', 'lines': ['p']}, {'start': {'row': 34, 'column': 12}, 'end': {'row': 34, 'column': 13}, 'action': 'insert', 'lines': ['o']}, {'start': {'row': 34, 'column': 13}, 'end': {'row': 34, 'column': 14}, 'action': 'insert', 'lines': ['n']}, {'start': {'row': 34, 'column': 14}, 'end': {'row': 34, 'column': 15}, 'action': 'insert', 'lines': ['s']}, {'start': {'row': 34, 'column': 15}, 'end': {'row': 34, 'column': 16}, 'action': 'insert', 'lines': ['e']}], [{'start': {'row': 34, 'column': 15}, 'end': {'row': 34, 'column': 16}, 'action': 'remove', 'lines': ['e'], 'id': 387}, { 'start': {'row': 34, 'column': 14}, 'end': {'row': 34, 'column': 15}, 'action': 'remove', 'lines': ['s']}, {'start': {'row': 34, 'column': 13 }, 'end': {'row': 34, 'column': 14}, 'action': 'remove', 'lines': ['n'] }, {'start': {'row': 34, 'column': 12}, 'end': {'row': 34, 'column': 13 }, 'action': 'remove', 'lines': ['o']}, {'start': {'row': 34, 'column': 11}, 'end': {'row': 34, 'column': 12}, 'action': 'remove', 'lines': [ 'p']}, {'start': {'row': 34, 'column': 10}, 'end': {'row': 34, 'column': 11}, 'action': 'remove', 'lines': ['s']}, {'start': {'row': 34, 'column': 9}, 'end': {'row': 34, 'column': 10}, 'action': 'remove', 'lines': ['e']}, {'start': {'row': 34, 'column': 8}, 'end': {'row': 34, 'column': 9}, 'action': 'remove', 'lines': ['r']}], [{'start': {'row': 34, 'column': 8}, 'end': {'row': 34, 'column': 9}, 'action': 'insert', 'lines': ['r'], 'id': 388}, {'start': {'row': 34, 'column': 9}, 'end': {'row': 34, 'column': 10}, 'action': 'insert', 'lines': ['e']}, { 'start': {'row': 34, 'column': 10}, 'end': {'row': 34, 'column': 11}, 'action': 'insert', 'lines': ['s']}, {'start': {'row': 34, 'column': 11 }, 'end': {'row': 34, 'column': 12}, 'action': 'insert', 'lines': ['p'] }, {'start': {'row': 34, 'column': 12}, 'end': {'row': 34, 'column': 13 }, 'action': 'insert', 'lines': ['o']}, {'start': {'row': 34, 'column': 13}, 'end': {'row': 34, 'column': 14}, 'action': 'insert', 'lines': [ 'n']}, {'start': {'row': 34, 'column': 14}, 'end': {'row': 34, 'column': 15}, 'action': 'insert', 'lines': ['s']}, {'start': {'row': 34, 'column': 15}, 'end': {'row': 34, 'column': 16}, 'action': 'insert', 'lines': ['e']}], [{'start': {'row': 34, 'column': 16}, 'end': {'row': 34, 'column': 17}, 'action': 'insert', 'lines': [' '], 'id': 389}, { 'start': {'row': 34, 'column': 17}, 'end': {'row': 34, 'column': 18}, 'action': 'insert', 'lines': ['=']}], [{'start': {'row': 34, 'column': 18}, 'end': {'row': 34, 'column': 19}, 'action': 'insert', 'lines': [ ' '], 'id': 390}], [{'start': {'row': 33, 'column': 10}, 'end': {'row': 33, 'column': 11}, 'action': 'insert', 'lines': ['r'], 'id': 391}, { 'start': {'row': 33, 'column': 11}, 'end': {'row': 33, 'column': 12}, 'action': 'insert', 'lines': ['e']}, {'start': {'row': 33, 'column': 12 }, 'end': {'row': 33, 'column': 13}, 'action': 'insert', 'lines': ['s'] }, {'start': {'row': 33, 'column': 13}, 'end': {'row': 33, 'column': 14 }, 'action': 'insert', 'lines': ['p']}, {'start': {'row': 33, 'column': 14}, 'end': {'row': 33, 'column': 15}, 'action': 'insert', 'lines': [ 'o']}, {'start': {'row': 33, 'column': 15}, 'end': {'row': 33, 'column': 16}, 'action': 'insert', 'lines': ['n']}, {'start': {'row': 33, 'column': 16}, 'end': {'row': 33, 'column': 17}, 'action': 'insert', 'lines': ['s']}, {'start': {'row': 33, 'column': 17}, 'end': {'row': 33, 'column': 18}, 'action': 'insert', 'lines': ['e']}], [{'start': {'row': 33, 'column': 18}, 'end': {'row': 33, 'column': 19}, 'action': 'insert', 'lines': [' '], 'id': 392}, {'start': {'row': 33, 'column': 19}, 'end': {'row': 33, 'column': 20}, 'action': 'insert', 'lines': ['<']}], [{ 'start': {'row': 33, 'column': 20}, 'end': {'row': 33, 'column': 21}, 'action': 'insert', 'lines': [' '], 'id': 393}], [{'start': {'row': 33, 'column': 21}, 'end': {'row': 33, 'column': 22}, 'action': 'insert', 'lines': ['0'], 'id': 394}], [{'start': {'row': 33, 'column': 22}, 'end': {'row': 33, 'column': 23}, 'action': 'insert', 'lines': [':'], 'id': 395}], [{'start': {'row': 33, 'column': 4}, 'end': {'row': 34, 'column': 45}, 'action': 'remove', 'lines': ['while response < 0:', ' response = get_float("Change owed: ")'], 'id': 396}, {'start': {'row': 33, 'column': 4}, 'end': {'row': 37, 'column': 12}, 'action': 'insert', 'lines': ['while True:', ' n = get_int("Height: ")', ' if n > 0 and n <= 8:', ' break', ' return n']}], [{'start': {'row': 35, 'column': 17}, 'end': {'row': 35, 'column': 28}, 'action': 'remove', 'lines': ['and n <= 8:'], 'id': 397}, {'start': { 'row': 35, 'column': 16}, 'end': {'row': 35, 'column': 17}, 'action': 'remove', 'lines': [' ']}], [{'start': {'row': 32, 'column': 23}, 'end': {'row': 32, 'column': 24}, 'action': 'insert', 'lines': ['('], 'id': 398}, {'start': {'row': 32, 'column': 24}, 'end': {'row': 32, 'column': 25}, 'action': 'insert', 'lines': [')']}], [{'start': {'row': 38, 'column': 4}, 'end': {'row': 39, 'column': 0}, 'action': 'insert', 'lines': ['', ''], 'id': 399}, {'start': {'row': 39, 'column': 0}, 'end': {'row': 39, 'column': 4}, 'action': 'insert', 'lines': [' ']}, {'start': {'row': 39, 'column': 4}, 'end': {'row': 40, 'column': 0}, 'action': 'insert', 'lines': ['', '']}, {'start': {'row': 40, 'column': 0}, 'end': {'row': 40, 'column': 4}, 'action': 'insert', 'lines': [ ' ']}], [{'start': {'row': 40, 'column': 0}, 'end': {'row': 40, 'column': 4}, 'action': 'remove', 'lines': [' '], 'id': 400}], [{ 'start': {'row': 40, 'column': 0}, 'end': {'row': 40, 'column': 1}, 'action': 'insert', 'lines': ['m'], 'id': 401}], [{'start': {'row': 40, 'column': 0}, 'end': {'row': 40, 'column': 1}, 'action': 'remove', 'lines': ['m'], 'id': 402}, {'start': {'row': 39, 'column': 4}, 'end': {'row': 40, 'column': 0}, 'action': 'remove', 'lines': ['', '']}, { 'start': {'row': 39, 'column': 0}, 'end': {'row': 39, 'column': 4}, 'action': 'remove', 'lines': [' ']}], [{'start': {'row': 39, 'column': 0}, 'end': {'row': 39, 'column': 1}, 'action': 'insert', 'lines': ['m'], 'id': 403}, {'start': {'row': 39, 'column': 1}, 'end': {'row': 39, 'column': 2}, 'action': 'insert', 'lines': ['a']}, {'start': {'row': 39, 'column': 2}, 'end': {'row': 39, 'column': 3}, 'action': 'insert', 'lines': ['i']}, {'start': {'row': 39, 'column': 3}, 'end': { 'row': 39, 'column': 4}, 'action': 'insert', 'lines': ['n']}], [{ 'start': {'row': 39, 'column': 4}, 'end': {'row': 39, 'column': 6}, 'action': 'insert', 'lines': ['()'], 'id': 404}], [{'start': {'row': 35, 'column': 16}, 'end': {'row': 35, 'column': 17}, 'action': 'insert', 'lines': [':'], 'id': 405}], [{'start': {'row': 34, 'column': 16}, 'end': {'row': 34, 'column': 19}, 'action': 'remove', 'lines': ['int'], 'id': 406}, {'start': {'row': 34, 'column': 16}, 'end': {'row': 34, 'column': 17}, 'action': 'insert', 'lines': ['f']}, {'start': {'row': 34, 'column': 17}, 'end': {'row': 34, 'column': 18}, 'action': 'insert', 'lines': ['l']}, {'start': {'row': 34, 'column': 18}, 'end': {'row': 34, 'column': 19}, 'action': 'insert', 'lines': ['o']}, {'start': {'row': 34, 'column': 19}, 'end': {'row': 34, 'column': 20}, 'action': 'insert', 'lines': ['a']}, {'start': {'row': 34, 'column': 20}, 'end': {'row': 34, 'column': 21}, 'action': 'insert', 'lines': ['t']}], [{'start': {'row': 34, 'column': 23}, 'end': {'row': 34, 'column': 29}, 'action': 'remove', 'lines': ['Height'], 'id': 407}, {'start': {'row': 34, 'column': 23}, 'end': {'row': 34, 'column': 24}, 'action': 'insert', 'lines': ['C']}, {'start': {'row': 34, 'column': 24}, 'end': {'row': 34, 'column': 25}, 'action': 'insert', 'lines': ['h']}, {'start': {'row': 34, 'column': 25 }, 'end': {'row': 34, 'column': 26}, 'action': 'insert', 'lines': ['a'] }, {'start': {'row': 34, 'column': 26}, 'end': {'row': 34, 'column': 27 }, 'action': 'insert', 'lines': ['n']}, {'start': {'row': 34, 'column': 27}, 'end': {'row': 34, 'column': 28}, 'action': 'insert', 'lines': [ 'g']}, {'start': {'row': 34, 'column': 28}, 'end': {'row': 34, 'column': 29}, 'action': 'insert', 'lines': ['e']}], [{'start': {'row': 34, 'column': 29}, 'end': {'row': 34, 'column': 30}, 'action': 'insert', 'lines': [' '], 'id': 408}, {'start': {'row': 34, 'column': 30}, 'end': {'row': 34, 'column': 31}, 'action': 'insert', 'lines': ['o']}, { 'start': {'row': 34, 'column': 31}, 'end': {'row': 34, 'column': 32}, 'action': 'insert', 'lines': ['w']}, {'start': {'row': 34, 'column': 32 }, 'end': {'row': 34, 'column': 33}, 'action': 'insert', 'lines': ['e'] }, {'start': {'row': 34, 'column': 33}, 'end': {'row': 34, 'column': 34 }, 'action': 'insert', 'lines': ['d']}], [{'start': {'row': 35, 'column': 14}, 'end': {'row': 35, 'column': 15}, 'action': 'insert', 'lines': ['='], 'id': 409}]]}, 'ace': {'folds': [], 'scrolltop': 439.5, 'scrollleft': 0, 'selection': {'start': {'row': 35, 'column': 15}, 'end': {'row': 35, 'column': 15}, 'isBackwards': false}, 'options': { 'guessTabSize': true, 'useWrapMode': false, 'wrapToView': true}, 'firstLineState': {'row': 26, 'state': 'start', 'mode': 'ace/mode/python'}}, 'timestamp': 1595063222568, 'hash': '5e254036c6adabee2cc8fd34ca538d47c56fc31e'}
{"filter":false,"title":"cash.py","tooltip":"/pset6/cash/cash.py","undoManager":{"mark":100,"position":100,"stack":[[{"start":{"row":12,"column":7},"end":{"row":12,"column":8},"action":"insert","lines":[" "],"id":308},{"start":{"row":12,"column":8},"end":{"row":12,"column":9},"action":"insert","lines":[">"]}],[{"start":{"row":12,"column":9},"end":{"row":12,"column":10},"action":"insert","lines":[" "],"id":309}],[{"start":{"row":12,"column":9},"end":{"row":12,"column":10},"action":"remove","lines":[" "],"id":310}],[{"start":{"row":12,"column":9},"end":{"row":12,"column":10},"action":"insert","lines":["="],"id":311}],[{"start":{"row":12,"column":10},"end":{"row":12,"column":11},"action":"insert","lines":[" "],"id":312},{"start":{"row":12,"column":11},"end":{"row":12,"column":12},"action":"insert","lines":["q"]},{"start":{"row":12,"column":12},"end":{"row":12,"column":13},"action":"insert","lines":["u"]},{"start":{"row":12,"column":13},"end":{"row":12,"column":14},"action":"insert","lines":["a"]},{"start":{"row":12,"column":14},"end":{"row":12,"column":15},"action":"insert","lines":["r"]},{"start":{"row":12,"column":15},"end":{"row":12,"column":16},"action":"insert","lines":["t"]},{"start":{"row":12,"column":16},"end":{"row":12,"column":17},"action":"insert","lines":["e"]},{"start":{"row":12,"column":17},"end":{"row":12,"column":18},"action":"insert","lines":["r"]}],[{"start":{"row":14,"column":0},"end":{"row":15,"column":13},"action":"remove","lines":[" if c < quarter:"," break"],"id":313},{"start":{"row":13,"column":19},"end":{"row":14,"column":0},"action":"remove","lines":["",""]}],[{"start":{"row":16,"column":6},"end":{"row":16,"column":10},"action":"remove","lines":["True"],"id":314},{"start":{"row":16,"column":6},"end":{"row":16,"column":7},"action":"insert","lines":["c"]},{"start":{"row":16,"column":7},"end":{"row":16,"column":8},"action":"insert","lines":[">"]}],[{"start":{"row":16,"column":8},"end":{"row":16,"column":9},"action":"insert","lines":["="],"id":315}],[{"start":{"row":16,"column":9},"end":{"row":16,"column":10},"action":"insert","lines":[" "],"id":316},{"start":{"row":16,"column":10},"end":{"row":16,"column":11},"action":"insert","lines":["d"]},{"start":{"row":16,"column":11},"end":{"row":16,"column":12},"action":"insert","lines":["i"]},{"start":{"row":16,"column":12},"end":{"row":16,"column":13},"action":"insert","lines":["m"]},{"start":{"row":16,"column":13},"end":{"row":16,"column":14},"action":"insert","lines":["e"]}],[{"start":{"row":16,"column":7},"end":{"row":16,"column":8},"action":"insert","lines":[" "],"id":317}],[{"start":{"row":18,"column":0},"end":{"row":19,"column":13},"action":"remove","lines":[" if c < dime:"," break"],"id":318},{"start":{"row":17,"column":16},"end":{"row":18,"column":0},"action":"remove","lines":["",""]}],[{"start":{"row":20,"column":6},"end":{"row":20,"column":10},"action":"remove","lines":["True"],"id":319}],[{"start":{"row":20,"column":6},"end":{"row":20,"column":7},"action":"insert","lines":["c"],"id":320}],[{"start":{"row":20,"column":7},"end":{"row":20,"column":8},"action":"insert","lines":[">"],"id":321}],[{"start":{"row":20,"column":7},"end":{"row":20,"column":8},"action":"remove","lines":[">"],"id":322}],[{"start":{"row":20,"column":7},"end":{"row":20,"column":8},"action":"insert","lines":[" "],"id":323},{"start":{"row":20,"column":8},"end":{"row":20,"column":9},"action":"insert","lines":[">"]}],[{"start":{"row":20,"column":9},"end":{"row":20,"column":10},"action":"insert","lines":["="],"id":324}],[{"start":{"row":20,"column":10},"end":{"row":20,"column":11},"action":"insert","lines":[" "],"id":325},{"start":{"row":20,"column":11},"end":{"row":20,"column":12},"action":"insert","lines":["n"]},{"start":{"row":20,"column":12},"end":{"row":20,"column":13},"action":"insert","lines":["i"]},{"start":{"row":20,"column":13},"end":{"row":20,"column":14},"action":"insert","lines":["c"]},{"start":{"row":20,"column":14},"end":{"row":20,"column":15},"action":"insert","lines":["k"]},{"start":{"row":20,"column":15},"end":{"row":20,"column":16},"action":"insert","lines":["e"]},{"start":{"row":20,"column":16},"end":{"row":20,"column":17},"action":"insert","lines":["l"]}],[{"start":{"row":22,"column":1},"end":{"row":23,"column":13},"action":"remove","lines":[" if c < nickel:"," break"],"id":326},{"start":{"row":22,"column":0},"end":{"row":22,"column":1},"action":"remove","lines":[" "]},{"start":{"row":21,"column":18},"end":{"row":22,"column":0},"action":"remove","lines":["",""]}],[{"start":{"row":24,"column":9},"end":{"row":24,"column":10},"action":"remove","lines":["e"],"id":327},{"start":{"row":24,"column":8},"end":{"row":24,"column":9},"action":"remove","lines":["u"]},{"start":{"row":24,"column":7},"end":{"row":24,"column":8},"action":"remove","lines":["r"]},{"start":{"row":24,"column":6},"end":{"row":24,"column":7},"action":"remove","lines":["T"]}],[{"start":{"row":24,"column":6},"end":{"row":24,"column":7},"action":"insert","lines":["c"],"id":328}],[{"start":{"row":24,"column":7},"end":{"row":24,"column":8},"action":"insert","lines":[" "],"id":329},{"start":{"row":24,"column":8},"end":{"row":24,"column":9},"action":"insert","lines":[">"]},{"start":{"row":24,"column":9},"end":{"row":24,"column":10},"action":"insert","lines":["="]}],[{"start":{"row":24,"column":10},"end":{"row":24,"column":11},"action":"insert","lines":[" "],"id":330},{"start":{"row":24,"column":11},"end":{"row":24,"column":12},"action":"insert","lines":["p"]},{"start":{"row":24,"column":12},"end":{"row":24,"column":13},"action":"insert","lines":["e"]},{"start":{"row":24,"column":13},"end":{"row":24,"column":14},"action":"insert","lines":["n"]},{"start":{"row":24,"column":14},"end":{"row":24,"column":15},"action":"insert","lines":["n"]},{"start":{"row":24,"column":15},"end":{"row":24,"column":16},"action":"insert","lines":["i"]}],[{"start":{"row":24,"column":16},"end":{"row":24,"column":17},"action":"insert","lines":["e"],"id":331}],[{"start":{"row":26,"column":3},"end":{"row":27,"column":13},"action":"remove","lines":[" if c < 0:"," break"],"id":332},{"start":{"row":26,"column":2},"end":{"row":26,"column":3},"action":"remove","lines":[" "]},{"start":{"row":26,"column":1},"end":{"row":26,"column":2},"action":"remove","lines":[" "]},{"start":{"row":26,"column":0},"end":{"row":26,"column":1},"action":"remove","lines":[" "]},{"start":{"row":25,"column":18},"end":{"row":26,"column":0},"action":"remove","lines":["",""]}],[{"start":{"row":1,"column":0},"end":{"row":2,"column":0},"action":"insert","lines":["",""],"id":333},{"start":{"row":2,"column":0},"end":{"row":3,"column":0},"action":"insert","lines":["",""]}],[{"start":{"row":2,"column":0},"end":{"row":2,"column":1},"action":"insert","lines":["d"],"id":334},{"start":{"row":2,"column":1},"end":{"row":2,"column":2},"action":"insert","lines":["e"]},{"start":{"row":2,"column":2},"end":{"row":2,"column":3},"action":"insert","lines":["f"]}],[{"start":{"row":2,"column":3},"end":{"row":2,"column":4},"action":"insert","lines":[" "],"id":335},{"start":{"row":2,"column":4},"end":{"row":2,"column":5},"action":"insert","lines":["m"]},{"start":{"row":2,"column":5},"end":{"row":2,"column":6},"action":"insert","lines":["a"]},{"start":{"row":2,"column":6},"end":{"row":2,"column":7},"action":"insert","lines":["i"]},{"start":{"row":2,"column":7},"end":{"row":2,"column":8},"action":"insert","lines":["n"]}],[{"start":{"row":2,"column":8},"end":{"row":2,"column":10},"action":"insert","lines":["()"],"id":336}],[{"start":{"row":2,"column":10},"end":{"row":2,"column":11},"action":"insert","lines":[":"],"id":337}],[{"start":{"row":4,"column":0},"end":{"row":4,"column":4},"action":"insert","lines":[" "],"id":338}],[{"start":{"row":5,"column":0},"end":{"row":5,"column":4},"action":"insert","lines":[" "],"id":339}],[{"start":{"row":6,"column":0},"end":{"row":6,"column":4},"action":"insert","lines":[" "],"id":340}],[{"start":{"row":7,"column":0},"end":{"row":7,"column":4},"action":"insert","lines":[" "],"id":341}],[{"start":{"row":8,"column":0},"end":{"row":8,"column":4},"action":"insert","lines":[" "],"id":342}],[{"start":{"row":10,"column":0},"end":{"row":10,"column":4},"action":"insert","lines":[" "],"id":343}],[{"start":{"row":12,"column":0},"end":{"row":12,"column":4},"action":"insert","lines":[" "],"id":344}],[{"start":{"row":14,"column":0},"end":{"row":14,"column":4},"action":"insert","lines":[" "],"id":345}],[{"start":{"row":15,"column":4},"end":{"row":15,"column":8},"action":"insert","lines":[" "],"id":346}],[{"start":{"row":16,"column":4},"end":{"row":16,"column":8},"action":"insert","lines":[" "],"id":347}],[{"start":{"row":18,"column":0},"end":{"row":18,"column":4},"action":"insert","lines":[" "],"id":348}],[{"start":{"row":19,"column":4},"end":{"row":19,"column":8},"action":"insert","lines":[" "],"id":349}],[{"start":{"row":20,"column":4},"end":{"row":20,"column":8},"action":"insert","lines":[" "],"id":350}],[{"start":{"row":22,"column":0},"end":{"row":22,"column":4},"action":"insert","lines":[" "],"id":351}],[{"start":{"row":23,"column":4},"end":{"row":23,"column":8},"action":"insert","lines":[" "],"id":352}],[{"start":{"row":24,"column":4},"end":{"row":24,"column":8},"action":"insert","lines":[" "],"id":353}],[{"start":{"row":24,"column":8},"end":{"row":24,"column":12},"action":"insert","lines":[" "],"id":354}],[{"start":{"row":24,"column":8},"end":{"row":24,"column":12},"action":"remove","lines":[" "],"id":355}],[{"start":{"row":26,"column":0},"end":{"row":26,"column":4},"action":"insert","lines":[" "],"id":356}],[{"start":{"row":27,"column":4},"end":{"row":27,"column":8},"action":"insert","lines":[" "],"id":357}],[{"start":{"row":28,"column":4},"end":{"row":28,"column":8},"action":"insert","lines":[" "],"id":358}],[{"start":{"row":30,"column":0},"end":{"row":30,"column":4},"action":"insert","lines":[" "],"id":359}],[{"start":{"row":30,"column":25},"end":{"row":31,"column":0},"action":"insert","lines":["",""],"id":360},{"start":{"row":31,"column":0},"end":{"row":31,"column":4},"action":"insert","lines":[" "]},{"start":{"row":31,"column":4},"end":{"row":32,"column":0},"action":"insert","lines":["",""]},{"start":{"row":32,"column":0},"end":{"row":32,"column":4},"action":"insert","lines":[" "]}],[{"start":{"row":32,"column":0},"end":{"row":32,"column":4},"action":"remove","lines":[" "],"id":361}],[{"start":{"row":32,"column":0},"end":{"row":32,"column":1},"action":"insert","lines":["d"],"id":362},{"start":{"row":32,"column":1},"end":{"row":32,"column":2},"action":"insert","lines":["e"]},{"start":{"row":32,"column":2},"end":{"row":32,"column":3},"action":"insert","lines":["f"]}],[{"start":{"row":32,"column":3},"end":{"row":32,"column":4},"action":"insert","lines":[" "],"id":363}],[{"start":{"row":32,"column":4},"end":{"row":32,"column":5},"action":"insert","lines":["g"],"id":364},{"start":{"row":32,"column":5},"end":{"row":32,"column":6},"action":"insert","lines":["e"]},{"start":{"row":32,"column":6},"end":{"row":32,"column":7},"action":"insert","lines":["t"]},{"start":{"row":32,"column":7},"end":{"row":32,"column":8},"action":"insert","lines":["_"]},{"start":{"row":32,"column":8},"end":{"row":32,"column":9},"action":"insert","lines":["p"]},{"start":{"row":32,"column":9},"end":{"row":32,"column":10},"action":"insert","lines":["o"]},{"start":{"row":32,"column":10},"end":{"row":32,"column":11},"action":"insert","lines":["s"]},{"start":{"row":32,"column":11},"end":{"row":32,"column":12},"action":"insert","lines":["i"]},{"start":{"row":32,"column":12},"end":{"row":32,"column":13},"action":"insert","lines":["t"]},{"start":{"row":32,"column":13},"end":{"row":32,"column":14},"action":"insert","lines":["i"]},{"start":{"row":32,"column":14},"end":{"row":32,"column":15},"action":"insert","lines":["v"]},{"start":{"row":32,"column":15},"end":{"row":32,"column":16},"action":"insert","lines":["e"]}],[{"start":{"row":32,"column":16},"end":{"row":32,"column":17},"action":"insert","lines":[" "],"id":365},{"start":{"row":32,"column":17},"end":{"row":32,"column":18},"action":"insert","lines":["c"]},{"start":{"row":32,"column":18},"end":{"row":32,"column":19},"action":"insert","lines":["h"]},{"start":{"row":32,"column":19},"end":{"row":32,"column":20},"action":"insert","lines":["a"]},{"start":{"row":32,"column":20},"end":{"row":32,"column":21},"action":"insert","lines":["n"]},{"start":{"row":32,"column":21},"end":{"row":32,"column":22},"action":"insert","lines":["g"]},{"start":{"row":32,"column":22},"end":{"row":32,"column":23},"action":"insert","lines":["e"]}],[{"start":{"row":32,"column":22},"end":{"row":32,"column":23},"action":"remove","lines":["e"],"id":366},{"start":{"row":32,"column":21},"end":{"row":32,"column":22},"action":"remove","lines":["g"]},{"start":{"row":32,"column":20},"end":{"row":32,"column":21},"action":"remove","lines":["n"]},{"start":{"row":32,"column":19},"end":{"row":32,"column":20},"action":"remove","lines":["a"]},{"start":{"row":32,"column":18},"end":{"row":32,"column":19},"action":"remove","lines":["h"]},{"start":{"row":32,"column":17},"end":{"row":32,"column":18},"action":"remove","lines":["c"]},{"start":{"row":32,"column":16},"end":{"row":32,"column":17},"action":"remove","lines":[" "]}],[{"start":{"row":32,"column":16},"end":{"row":32,"column":17},"action":"insert","lines":["_"],"id":367},{"start":{"row":32,"column":17},"end":{"row":32,"column":18},"action":"insert","lines":["c"]},{"start":{"row":32,"column":18},"end":{"row":32,"column":19},"action":"insert","lines":["h"]},{"start":{"row":32,"column":19},"end":{"row":32,"column":20},"action":"insert","lines":["a"]},{"start":{"row":32,"column":20},"end":{"row":32,"column":21},"action":"insert","lines":["n"]},{"start":{"row":32,"column":21},"end":{"row":32,"column":22},"action":"insert","lines":["g"]},{"start":{"row":32,"column":22},"end":{"row":32,"column":23},"action":"insert","lines":["e"]},{"start":{"row":32,"column":23},"end":{"row":32,"column":24},"action":"insert","lines":[":"]}],[{"start":{"row":32,"column":24},"end":{"row":33,"column":0},"action":"insert","lines":["",""],"id":368},{"start":{"row":33,"column":0},"end":{"row":33,"column":4},"action":"insert","lines":[" "]}],[{"start":{"row":33,"column":4},"end":{"row":33,"column":8},"action":"insert","lines":[" "],"id":369}],[{"start":{"row":33,"column":4},"end":{"row":33,"column":8},"action":"remove","lines":[" "],"id":370}],[{"start":{"row":10,"column":13},"end":{"row":10,"column":39},"action":"remove","lines":["get_float(\"Change owed: \")"],"id":372}],[{"start":{"row":10,"column":13},"end":{"row":10,"column":14},"action":"insert","lines":["g"],"id":373},{"start":{"row":10,"column":14},"end":{"row":10,"column":15},"action":"insert","lines":["e"]},{"start":{"row":10,"column":15},"end":{"row":10,"column":16},"action":"insert","lines":["t"]},{"start":{"row":10,"column":16},"end":{"row":10,"column":17},"action":"insert","lines":["_"]},{"start":{"row":10,"column":17},"end":{"row":10,"column":18},"action":"insert","lines":["p"]},{"start":{"row":10,"column":18},"end":{"row":10,"column":19},"action":"insert","lines":["o"]},{"start":{"row":10,"column":19},"end":{"row":10,"column":20},"action":"insert","lines":["s"]},{"start":{"row":10,"column":20},"end":{"row":10,"column":21},"action":"insert","lines":["i"]},{"start":{"row":10,"column":21},"end":{"row":10,"column":22},"action":"insert","lines":["t"]},{"start":{"row":10,"column":22},"end":{"row":10,"column":23},"action":"insert","lines":["i"]},{"start":{"row":10,"column":23},"end":{"row":10,"column":24},"action":"insert","lines":["v"]}],[{"start":{"row":10,"column":24},"end":{"row":10,"column":25},"action":"insert","lines":["e"],"id":374}],[{"start":{"row":10,"column":25},"end":{"row":10,"column":26},"action":"insert","lines":["_"],"id":375},{"start":{"row":10,"column":26},"end":{"row":10,"column":27},"action":"insert","lines":["c"]},{"start":{"row":10,"column":27},"end":{"row":10,"column":28},"action":"insert","lines":["h"]},{"start":{"row":10,"column":28},"end":{"row":10,"column":29},"action":"insert","lines":["a"]},{"start":{"row":10,"column":29},"end":{"row":10,"column":30},"action":"insert","lines":["n"]},{"start":{"row":10,"column":30},"end":{"row":10,"column":31},"action":"insert","lines":["g"]},{"start":{"row":10,"column":31},"end":{"row":10,"column":32},"action":"insert","lines":["e"]}],[{"start":{"row":10,"column":32},"end":{"row":10,"column":34},"action":"insert","lines":["()"],"id":376}],[{"start":{"row":32,"column":24},"end":{"row":33,"column":0},"action":"insert","lines":["",""],"id":377},{"start":{"row":33,"column":0},"end":{"row":33,"column":4},"action":"insert","lines":[" "]}],[{"start":{"row":33,"column":4},"end":{"row":33,"column":30},"action":"insert","lines":["get_float(\"Change owed: \")"],"id":378}],[{"start":{"row":32,"column":24},"end":{"row":33,"column":0},"action":"insert","lines":["",""],"id":379},{"start":{"row":33,"column":0},"end":{"row":33,"column":4},"action":"insert","lines":[" "]},{"start":{"row":33,"column":4},"end":{"row":33,"column":5},"action":"insert","lines":["w"]},{"start":{"row":33,"column":5},"end":{"row":33,"column":6},"action":"insert","lines":["h"]},{"start":{"row":33,"column":6},"end":{"row":33,"column":7},"action":"insert","lines":["i"]},{"start":{"row":33,"column":7},"end":{"row":33,"column":8},"action":"insert","lines":["l"]},{"start":{"row":33,"column":8},"end":{"row":33,"column":9},"action":"insert","lines":["e"]}],[{"start":{"row":33,"column":9},"end":{"row":33,"column":10},"action":"insert","lines":[" "],"id":380}],[{"start":{"row":34,"column":4},"end":{"row":34,"column":8},"action":"insert","lines":[" "],"id":381}],[{"start":{"row":34,"column":8},"end":{"row":34,"column":9},"action":"insert","lines":["c"],"id":382}],[{"start":{"row":34,"column":8},"end":{"row":34,"column":9},"action":"remove","lines":["c"],"id":383}],[{"start":{"row":34,"column":8},"end":{"row":34,"column":9},"action":"insert","lines":["c"],"id":384},{"start":{"row":34,"column":9},"end":{"row":34,"column":10},"action":"insert","lines":["h"]},{"start":{"row":34,"column":10},"end":{"row":34,"column":11},"action":"insert","lines":["a"]},{"start":{"row":34,"column":11},"end":{"row":34,"column":12},"action":"insert","lines":["n"]},{"start":{"row":34,"column":12},"end":{"row":34,"column":13},"action":"insert","lines":["g"]},{"start":{"row":34,"column":13},"end":{"row":34,"column":14},"action":"insert","lines":["e"]}],[{"start":{"row":34,"column":13},"end":{"row":34,"column":14},"action":"remove","lines":["e"],"id":385},{"start":{"row":34,"column":12},"end":{"row":34,"column":13},"action":"remove","lines":["g"]},{"start":{"row":34,"column":11},"end":{"row":34,"column":12},"action":"remove","lines":["n"]},{"start":{"row":34,"column":10},"end":{"row":34,"column":11},"action":"remove","lines":["a"]},{"start":{"row":34,"column":9},"end":{"row":34,"column":10},"action":"remove","lines":["h"]},{"start":{"row":34,"column":8},"end":{"row":34,"column":9},"action":"remove","lines":["c"]}],[{"start":{"row":34,"column":8},"end":{"row":34,"column":9},"action":"insert","lines":["r"],"id":386},{"start":{"row":34,"column":9},"end":{"row":34,"column":10},"action":"insert","lines":["e"]},{"start":{"row":34,"column":10},"end":{"row":34,"column":11},"action":"insert","lines":["s"]},{"start":{"row":34,"column":11},"end":{"row":34,"column":12},"action":"insert","lines":["p"]},{"start":{"row":34,"column":12},"end":{"row":34,"column":13},"action":"insert","lines":["o"]},{"start":{"row":34,"column":13},"end":{"row":34,"column":14},"action":"insert","lines":["n"]},{"start":{"row":34,"column":14},"end":{"row":34,"column":15},"action":"insert","lines":["s"]},{"start":{"row":34,"column":15},"end":{"row":34,"column":16},"action":"insert","lines":["e"]}],[{"start":{"row":34,"column":15},"end":{"row":34,"column":16},"action":"remove","lines":["e"],"id":387},{"start":{"row":34,"column":14},"end":{"row":34,"column":15},"action":"remove","lines":["s"]},{"start":{"row":34,"column":13},"end":{"row":34,"column":14},"action":"remove","lines":["n"]},{"start":{"row":34,"column":12},"end":{"row":34,"column":13},"action":"remove","lines":["o"]},{"start":{"row":34,"column":11},"end":{"row":34,"column":12},"action":"remove","lines":["p"]},{"start":{"row":34,"column":10},"end":{"row":34,"column":11},"action":"remove","lines":["s"]},{"start":{"row":34,"column":9},"end":{"row":34,"column":10},"action":"remove","lines":["e"]},{"start":{"row":34,"column":8},"end":{"row":34,"column":9},"action":"remove","lines":["r"]}],[{"start":{"row":34,"column":8},"end":{"row":34,"column":9},"action":"insert","lines":["r"],"id":388},{"start":{"row":34,"column":9},"end":{"row":34,"column":10},"action":"insert","lines":["e"]},{"start":{"row":34,"column":10},"end":{"row":34,"column":11},"action":"insert","lines":["s"]},{"start":{"row":34,"column":11},"end":{"row":34,"column":12},"action":"insert","lines":["p"]},{"start":{"row":34,"column":12},"end":{"row":34,"column":13},"action":"insert","lines":["o"]},{"start":{"row":34,"column":13},"end":{"row":34,"column":14},"action":"insert","lines":["n"]},{"start":{"row":34,"column":14},"end":{"row":34,"column":15},"action":"insert","lines":["s"]},{"start":{"row":34,"column":15},"end":{"row":34,"column":16},"action":"insert","lines":["e"]}],[{"start":{"row":34,"column":16},"end":{"row":34,"column":17},"action":"insert","lines":[" "],"id":389},{"start":{"row":34,"column":17},"end":{"row":34,"column":18},"action":"insert","lines":["="]}],[{"start":{"row":34,"column":18},"end":{"row":34,"column":19},"action":"insert","lines":[" "],"id":390}],[{"start":{"row":33,"column":10},"end":{"row":33,"column":11},"action":"insert","lines":["r"],"id":391},{"start":{"row":33,"column":11},"end":{"row":33,"column":12},"action":"insert","lines":["e"]},{"start":{"row":33,"column":12},"end":{"row":33,"column":13},"action":"insert","lines":["s"]},{"start":{"row":33,"column":13},"end":{"row":33,"column":14},"action":"insert","lines":["p"]},{"start":{"row":33,"column":14},"end":{"row":33,"column":15},"action":"insert","lines":["o"]},{"start":{"row":33,"column":15},"end":{"row":33,"column":16},"action":"insert","lines":["n"]},{"start":{"row":33,"column":16},"end":{"row":33,"column":17},"action":"insert","lines":["s"]},{"start":{"row":33,"column":17},"end":{"row":33,"column":18},"action":"insert","lines":["e"]}],[{"start":{"row":33,"column":18},"end":{"row":33,"column":19},"action":"insert","lines":[" "],"id":392},{"start":{"row":33,"column":19},"end":{"row":33,"column":20},"action":"insert","lines":["<"]}],[{"start":{"row":33,"column":20},"end":{"row":33,"column":21},"action":"insert","lines":[" "],"id":393}],[{"start":{"row":33,"column":21},"end":{"row":33,"column":22},"action":"insert","lines":["0"],"id":394}],[{"start":{"row":33,"column":22},"end":{"row":33,"column":23},"action":"insert","lines":[":"],"id":395}],[{"start":{"row":33,"column":4},"end":{"row":34,"column":45},"action":"remove","lines":["while response < 0:"," response = get_float(\"Change owed: \")"],"id":396},{"start":{"row":33,"column":4},"end":{"row":37,"column":12},"action":"insert","lines":["while True:"," n = get_int(\"Height: \")"," if n > 0 and n <= 8:"," break"," return n"]}],[{"start":{"row":35,"column":17},"end":{"row":35,"column":28},"action":"remove","lines":["and n <= 8:"],"id":397},{"start":{"row":35,"column":16},"end":{"row":35,"column":17},"action":"remove","lines":[" "]}],[{"start":{"row":32,"column":23},"end":{"row":32,"column":24},"action":"insert","lines":["("],"id":398},{"start":{"row":32,"column":24},"end":{"row":32,"column":25},"action":"insert","lines":[")"]}],[{"start":{"row":38,"column":4},"end":{"row":39,"column":0},"action":"insert","lines":["",""],"id":399},{"start":{"row":39,"column":0},"end":{"row":39,"column":4},"action":"insert","lines":[" "]},{"start":{"row":39,"column":4},"end":{"row":40,"column":0},"action":"insert","lines":["",""]},{"start":{"row":40,"column":0},"end":{"row":40,"column":4},"action":"insert","lines":[" "]}],[{"start":{"row":40,"column":0},"end":{"row":40,"column":4},"action":"remove","lines":[" "],"id":400}],[{"start":{"row":40,"column":0},"end":{"row":40,"column":1},"action":"insert","lines":["m"],"id":401}],[{"start":{"row":40,"column":0},"end":{"row":40,"column":1},"action":"remove","lines":["m"],"id":402},{"start":{"row":39,"column":4},"end":{"row":40,"column":0},"action":"remove","lines":["",""]},{"start":{"row":39,"column":0},"end":{"row":39,"column":4},"action":"remove","lines":[" "]}],[{"start":{"row":39,"column":0},"end":{"row":39,"column":1},"action":"insert","lines":["m"],"id":403},{"start":{"row":39,"column":1},"end":{"row":39,"column":2},"action":"insert","lines":["a"]},{"start":{"row":39,"column":2},"end":{"row":39,"column":3},"action":"insert","lines":["i"]},{"start":{"row":39,"column":3},"end":{"row":39,"column":4},"action":"insert","lines":["n"]}],[{"start":{"row":39,"column":4},"end":{"row":39,"column":6},"action":"insert","lines":["()"],"id":404}],[{"start":{"row":35,"column":16},"end":{"row":35,"column":17},"action":"insert","lines":[":"],"id":405}],[{"start":{"row":34,"column":16},"end":{"row":34,"column":19},"action":"remove","lines":["int"],"id":406},{"start":{"row":34,"column":16},"end":{"row":34,"column":17},"action":"insert","lines":["f"]},{"start":{"row":34,"column":17},"end":{"row":34,"column":18},"action":"insert","lines":["l"]},{"start":{"row":34,"column":18},"end":{"row":34,"column":19},"action":"insert","lines":["o"]},{"start":{"row":34,"column":19},"end":{"row":34,"column":20},"action":"insert","lines":["a"]},{"start":{"row":34,"column":20},"end":{"row":34,"column":21},"action":"insert","lines":["t"]}],[{"start":{"row":34,"column":23},"end":{"row":34,"column":29},"action":"remove","lines":["Height"],"id":407},{"start":{"row":34,"column":23},"end":{"row":34,"column":24},"action":"insert","lines":["C"]},{"start":{"row":34,"column":24},"end":{"row":34,"column":25},"action":"insert","lines":["h"]},{"start":{"row":34,"column":25},"end":{"row":34,"column":26},"action":"insert","lines":["a"]},{"start":{"row":34,"column":26},"end":{"row":34,"column":27},"action":"insert","lines":["n"]},{"start":{"row":34,"column":27},"end":{"row":34,"column":28},"action":"insert","lines":["g"]},{"start":{"row":34,"column":28},"end":{"row":34,"column":29},"action":"insert","lines":["e"]}],[{"start":{"row":34,"column":29},"end":{"row":34,"column":30},"action":"insert","lines":[" "],"id":408},{"start":{"row":34,"column":30},"end":{"row":34,"column":31},"action":"insert","lines":["o"]},{"start":{"row":34,"column":31},"end":{"row":34,"column":32},"action":"insert","lines":["w"]},{"start":{"row":34,"column":32},"end":{"row":34,"column":33},"action":"insert","lines":["e"]},{"start":{"row":34,"column":33},"end":{"row":34,"column":34},"action":"insert","lines":["d"]}],[{"start":{"row":35,"column":14},"end":{"row":35,"column":15},"action":"insert","lines":["="],"id":409}]]},"ace":{"folds":[],"scrolltop":439.5,"scrollleft":0,"selection":{"start":{"row":35,"column":15},"end":{"row":35,"column":15},"isBackwards":false},"options":{"guessTabSize":true,"useWrapMode":false,"wrapToView":true},"firstLineState":{"row":26,"state":"start","mode":"ace/mode/python"}},"timestamp":1595063222568,"hash":"5e254036c6adabee2cc8fd34ca538d47c56fc31e"}
null
null
[ 0, 1, 2 ]
1,707
7a918518d8c9ff1184a634d1a5c799e735dfbc8a
<mask token>
<mask token> class MainWindow(Ui_MainWindow, QtCore.QObject): def __init__(self, qmain_window): super().__init__() self.setupUi(qmain_window) self._proxy_model = CustomSortFilterProxyModel(self) self._model = TreeModel(model_filename) self._proxy_model.setSourceModel(self._model) self.treeView.setModel(self._proxy_model) self.treeView.header().setSectionResizeMode(QtWidgets.QHeaderView. ResizeToContents) self.filterPatternEdit.editingFinished.connect(lambda : self. _proxy_model.update_filter_pattern(self.filterPatternEdit.text())) self.filterSyntaxComboBox.currentTextChanged.connect(self. _proxy_model.update_filter_syntax) self.filterColumnComboBox.currentTextChanged.connect(self. _proxy_model.update_filter_column) self.caseSensitiveFilterCB.stateChanged.connect(lambda state: self. _proxy_model.update_case_sensitive_filter(state)) self.caseSensitiveSortingCB.stateChanged.connect(lambda state: self ._proxy_model.update_case_sensitive_sort(state))
<mask token> model_filename = 'widgets/default.txt' class MainWindow(Ui_MainWindow, QtCore.QObject): def __init__(self, qmain_window): super().__init__() self.setupUi(qmain_window) self._proxy_model = CustomSortFilterProxyModel(self) self._model = TreeModel(model_filename) self._proxy_model.setSourceModel(self._model) self.treeView.setModel(self._proxy_model) self.treeView.header().setSectionResizeMode(QtWidgets.QHeaderView. ResizeToContents) self.filterPatternEdit.editingFinished.connect(lambda : self. _proxy_model.update_filter_pattern(self.filterPatternEdit.text())) self.filterSyntaxComboBox.currentTextChanged.connect(self. _proxy_model.update_filter_syntax) self.filterColumnComboBox.currentTextChanged.connect(self. _proxy_model.update_filter_column) self.caseSensitiveFilterCB.stateChanged.connect(lambda state: self. _proxy_model.update_case_sensitive_filter(state)) self.caseSensitiveSortingCB.stateChanged.connect(lambda state: self ._proxy_model.update_case_sensitive_sort(state))
from PyQt5 import QtCore, QtWidgets from .main_window_base import Ui_MainWindow from .custom_sort_filter_proxy_model import CustomSortFilterProxyModel from .tree_model import TreeModel model_filename = 'widgets/default.txt' class MainWindow(Ui_MainWindow, QtCore.QObject): def __init__(self, qmain_window): super().__init__() self.setupUi(qmain_window) self._proxy_model = CustomSortFilterProxyModel(self) self._model = TreeModel(model_filename) self._proxy_model.setSourceModel(self._model) self.treeView.setModel(self._proxy_model) self.treeView.header().setSectionResizeMode(QtWidgets.QHeaderView. ResizeToContents) self.filterPatternEdit.editingFinished.connect(lambda : self. _proxy_model.update_filter_pattern(self.filterPatternEdit.text())) self.filterSyntaxComboBox.currentTextChanged.connect(self. _proxy_model.update_filter_syntax) self.filterColumnComboBox.currentTextChanged.connect(self. _proxy_model.update_filter_column) self.caseSensitiveFilterCB.stateChanged.connect(lambda state: self. _proxy_model.update_case_sensitive_filter(state)) self.caseSensitiveSortingCB.stateChanged.connect(lambda state: self ._proxy_model.update_case_sensitive_sort(state))
from PyQt5 import QtCore, QtWidgets from .main_window_base import Ui_MainWindow from .custom_sort_filter_proxy_model import CustomSortFilterProxyModel from .tree_model import TreeModel model_filename = "widgets/default.txt" class MainWindow(Ui_MainWindow, QtCore.QObject): def __init__(self, qmain_window): super().__init__() self.setupUi(qmain_window) self._proxy_model = CustomSortFilterProxyModel(self) self._model = TreeModel(model_filename) self._proxy_model.setSourceModel(self._model) self.treeView.setModel(self._proxy_model) self.treeView.header().setSectionResizeMode(QtWidgets.QHeaderView.ResizeToContents) # Attach slot/signals self.filterPatternEdit.editingFinished.connect( lambda: self._proxy_model.update_filter_pattern(self.filterPatternEdit.text())) self.filterSyntaxComboBox.currentTextChanged.connect(self._proxy_model.update_filter_syntax) self.filterColumnComboBox.currentTextChanged.connect(self._proxy_model.update_filter_column) self.caseSensitiveFilterCB.stateChanged.connect( lambda state: self._proxy_model.update_case_sensitive_filter(state)) self.caseSensitiveSortingCB.stateChanged.connect( lambda state: self._proxy_model.update_case_sensitive_sort(state))
[ 0, 2, 3, 4, 5 ]
1,708
51cff2f7dd1fd10c6f447d62db3e98075caebe51
<mask token>
<mask token> @borg.on(admin_cmd(pattern='stupid$')) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 14) await event.edit('brain') animation_chars = [ 'YOᑌᖇ ᗷᖇᗩIᑎ âž¡ï¸\x8f ðŸ§\xa0\n\nðŸ§\xa0 <(^_^ <)🗑' , """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 🧠 <(^_^ <) 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 🧠 <(^_^ <) 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 🧠 <(^_^ <) 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 🧠 <(^_^ <) 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 🧠<(^_^ <) 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 (> ^_^)>🧠 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 (> ^_^)>🧠 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 (> ^_^)>🧠 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 (> ^_^)>🧠 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 (> ^_^)>🧠 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 (> ^_^)>🧠🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 (> ^_^)>🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 <(^_^ <)🗑"""] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 14]) @borg.on(admin_cmd(pattern=f'bombs$', outgoing=True)) async def _(event): if event.fwd_from: return await event.edit( """▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ """ ) await asyncio.sleep(0.5) await event.edit( """💣💣💣💣 ▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ """ ) await asyncio.sleep(0.5) await event.edit( """▪️▪️▪️▪️ 💣💣💣💣 ▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ """ ) await asyncio.sleep(0.5) await event.edit( """▪️▪️▪️▪️ ▪️▪️▪️▪️ 💣💣💣💣 ▪️▪️▪️▪️ ▪️▪️▪️▪️ """ ) await asyncio.sleep(0.5) await event.edit( """▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ 💣💣💣💣 ▪️▪️▪️▪️ """ ) await asyncio.sleep(0.5) await event.edit( """▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ 💣💣💣💣 """ ) await asyncio.sleep(1) await event.edit( """▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ 💥💥💥💥 """ ) await asyncio.sleep(0.5) await event.edit( """▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ 💥💥💥💥 💥💥💥💥 """ ) await asyncio.sleep(0.5) await event.edit( """▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ 😵😵😵😵 """ ) await asyncio.sleep(0.5) await event.edit('`RIP PLOXXX......`') await asyncio.sleep(2) @borg.on(admin_cmd(pattern=f'kill$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.7 animation_ttl = range(0, 12) await event.edit('ready to die dude.....') animation_chars = ['Fiiiiire', '( ・ิω・ิ)︻デâ•\x90一-->', '---->____________â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0' , '------>__________â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0' , '-------->â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0_________' , '---------->â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0_______' , '------------>â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0_____' , '-------------->â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0____' , '------------------>', '------>;(^。^)ノ', '( ̄ー ̄) DEAD', """`Targeted user killed by Headshot 😈.😈.😈.😈.😈.😈.😈......` '#Sad_Reacts_Online' """ ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 12]) @borg.on(admin_cmd(pattern='ding$')) async def _(event): animation_interval = 0.3 animation_ttl = range(0, 30) animation_chars = ['🔴⬛⬛⬜⬜\n⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜', """⬜⬜⬛⬜⬜ ⬜⬛⬜⬜⬜ 🔴⬜⬜⬜⬜""", """⬜⬜⬛⬜⬜ ⬜⬜⬛⬜⬜ ⬜⬜🔴⬜⬜""", """⬜⬜⬛⬜⬜ ⬜⬜⬜⬛⬜ ⬜⬜⬜⬜🔴""", """⬜⬜⬛⬛🔴 ⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜""", """⬜⬜⬛⬜⬜ ⬜⬜⬜⬛⬜ ⬜⬜⬜⬜🔴""", """⬜⬜⬛⬜⬜ ⬜⬜⬛⬜⬜ ⬜⬜🔴⬜⬜""", """⬜⬜⬛⬜⬜ ⬜⬛⬜⬜⬜ 🔴⬜⬜⬜⬜""", """🔴⬛⬛⬜⬜ ⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜""", """⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜ ⬜ [CAT IS BEST](https://github.com/Sur-vivor/CatUserbot) ⬜ ⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜""" ] if event.fwd_from: return await event.edit('ding..dong..ding..dong ...') await asyncio.sleep(4) for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 10]) @borg.on(admin_cmd(pattern=f'hypno$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 15) await event.edit('hypo....') animation_chars = [ """⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜""" , """⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬛⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜""" , """⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬛⬛⬛⬜⬜ ⬜⬜⬛⬜⬛⬜⬜ ⬜⬜⬛⬛⬛⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜""" , """⬜⬜⬜⬜⬜⬜⬜ ⬜⬛⬛⬛⬛⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬛⬛⬛⬛⬜ ⬜⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬛⬛⬛⬛⬛⬛""" , """⬛⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜⬛""" , """⬜⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛⬜""" , """⬜⬜⬜⬜⬜⬜⬜ ⬜⬛⬛⬛⬛⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬛⬛⬛⬛⬜ ⬜⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬜⬛⬛⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬛⬛⬜⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬛⬛⬛⬛⬛⬛""" , """⬜⬜⬜⬜⬜⬜⬜ ⬜⬛⬛⬛⬛⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬛⬛⬛⬛⬜ ⬜⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬜⬛⬛⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬛⬛⬜⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬛⬛⬛⬛⬛⬛""" , """⬜⬜⬜⬜⬜⬜⬜ ⬜⬛⬛⬛⬛⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬛⬛⬛⬛⬜ ⬜⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛ ⬛⬜⬜⬜⬛ ⬛⬜⬛⬜⬛ ⬛⬜⬜⬜⬛ ⬛⬛⬛⬛⬛""" , """⬜⬜⬜ ⬜⬛⬜ ⬜⬜⬜""", '[👉🔴👈])'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 15]) @borg.on(admin_cmd(pattern='gangasta$')) async def _(event): await event.edit('EVERyBOdy') await asyncio.sleep(0.3) await event.edit('iZ') await asyncio.sleep(0.2) await event.edit('GangSTur') await asyncio.sleep(0.5) await event.edit('UNtIL ') await asyncio.sleep(0.2) await event.edit('I') await asyncio.sleep(0.3) await event.edit('ArRivE') await asyncio.sleep(0.3) await event.edit('🔥🔥🔥') await asyncio.sleep(0.3) await event.edit('EVERyBOdy iZ GangSTur UNtIL I ArRivE 🔥🔥🔥') @borg.on(admin_cmd(pattern=f'charging$')) async def timer_blankx(e): txt = e.text[10:] + """ `Tesla Wireless Charging (beta) Started... Device Detected: Nokia 1100 Battery Percentage:` """ j = 10 k = j for j in range(j): await e.edit(txt + str(k)) k = k + 10 await asyncio.sleep(1) await asyncio.sleep(1) await e.edit( """`Tesla Wireless Charging (beta) Completed... Device Detected: Nokia 1100 (Space Grey Varient) Battery Percentage:` [100%](https://telegra.ph/file/a45aa7450c8eefed599d9.mp4) """ , link_preview=True) @borg.on(admin_cmd('bigoof')) async def _(event): if event.fwd_from: return animation_interval = 0.1 animation_ttl = range(0, 7) await event.edit( """┏━━━┓╋╋╋╋┏━━━┓ ┃┏━┓┃╋╋╋╋┃┏━┓┃ ┃┃╋┃┣┓┏┓┏┫┃╋┃┃ ┃┃╋┃┃┗┛┗┛┃┃╋┃┃ ┃┗━┛┣┓┏┓┏┫┗━┛┃ ┗━━━┛┗┛┗┛┗━━━┛""" ) animation_chars = [ """╭━━━╮╱╱╱╭━╮ ┃╭━╮┃╱╱╱┃╭╯ ┃┃╱┃┣━━┳╯╰╮ ┃┃╱┃┃╭╮┣╮╭╯ ┃╰━╯┃╰╯┃┃┃ ╰━━━┻━━╯╰╯ """ , """╭━━━╮╱╱╱╱╱╱╭━╮ ┃╭━╮┃╱╱╱╱╱╱┃╭╯ ┃┃╱┃┣━━┳━━┳╯╰╮ ┃┃╱┃┃╭╮┃╭╮┣╮╭╯ ┃╰━╯┃╰╯┃╰╯┃┃┃ ╰━━━┻━━┻━━╯╰╯""" , """╭━━━╮╱╱╱╱╱╱╱╱╱╭━╮ ┃╭━╮┃╱╱╱╱╱╱╱╱╱┃╭╯ ┃┃╱┃┣━━┳━━┳━━┳╯╰╮ ┃┃╱┃┃╭╮┃╭╮┃╭╮┣╮╭╯ ┃╰━╯┃╰╯┃╰╯┃╰╯┃┃┃ ╰━━━┻━━┻━━┻━━╯╰╯""" , """╭━━━╮╱╱╱╱╱╱╱╱╱╱╱╱╭━╮ ┃╭━╮┃╱╱╱╱╱╱╱╱╱╱╱╱┃╭╯ ┃┃╱┃┣━━┳━━┳━━┳━━┳╯╰╮ ┃┃╱┃┃╭╮┃╭╮┃╭╮┃╭╮┣╮╭╯ ┃╰━╯┃╰╯┃╰╯┃╰╯┃╰╯┃┃┃ ╰━━━┻━━┻━━┻━━┻━━╯╰╯""" , """╭━━━╮╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╭━╮ ┃╭━╮┃╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱┃╭╯ ┃┃╱┃┣━━┳━━┳━━┳━━┳━━┳╯╰╮ ┃┃╱┃┃╭╮┃╭╮┃╭╮┃╭╮┃╭╮┣╮╭╯ ┃╰━╯┃╰╯┃╰╯┃╰╯┃╰╯┃╰╯┃┃┃ ╰━━━┻━━┻━━┻━━┻━━┻━━╯╰╯""" , """╭━━━╮╱╱╱╱╱╱╱╱╱╱╱╱╭━╮ ┃╭━╮┃╱╱╱╱╱╱╱╱╱╱╱╱┃╭╯ ┃┃╱┃┣━━┳━━┳━━┳━━┳╯╰╮ ┃┃╱┃┃╭╮┃╭╮┃╭╮┃╭╮┣╮╭╯ ┃╰━╯┃╰╯┃╰╯┃╰╯┃╰╯┃┃┃ ╰━━━┻━━┻━━┻━━┻━━╯╰╯""" , """╭━━━╮╱╱╱╱╱╱╱╱╱╭━╮ ┃╭━╮┃╱╱╱╱╱╱╱╱╱┃╭╯ ┃┃╱┃┣━━┳━━┳━━┳╯╰╮ ┃┃╱┃┃╭╮┃╭╮┃╭╮┣╮╭╯ ┃╰━╯┃╰╯┃╰╯┃╰╯┃┃┃ ╰━━━┻━━┻━━┻━━╯╰╯""" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 7]) @borg.on(admin_cmd(pattern='g1 ?(.*)')) async def payf(event): paytext = event.pattern_match.group(1) pay = ( """{} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {}""" .format(paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1)) await event.edit(pay) @borg.on(admin_cmd(pattern='uff ?(.*)')) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 13) animation_chars = ['U', 'Uf', 'Uff', 'Ufffff', 'Uffffff', 'Ufffffff', 'Uffffffff', 'Ufffffffff', 'Uffffffffff', 'Ufffffffffff', 'Uffffffffffff', 'Ufffffffffffff', 'Uffffffffffffff'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 13]) @borg.on(admin_cmd(pattern='ctext ?(.*)')) async def payf(event): paytext = event.pattern_match.group(1) pay = '{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}'.format(paytext * 8, paytext * 8, paytext * 2, paytext * 2, paytext * 2, paytext * 2, paytext * 2, paytext * 2, paytext * 2, paytext * 2, paytext * 8, paytext * 8) await event.edit(pay) @borg.on(admin_cmd(pattern='ftext ?(.*)')) async def payf(event): paytext = event.pattern_match.group(1) pay = '{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}'.format(paytext * 8, paytext * 8, paytext * 2, paytext * 2, paytext * 2, paytext * 6, paytext * 6, paytext * 2, paytext * 2, paytext * 2, paytext * 2, paytext * 2) await event.edit(pay) @borg.on(admin_cmd(outgoing=True, pattern='kf$(.*)')) async def _(event): r = random.randint(0, 3) logger.debug(r) if r == 0: await event.edit( """┏━━━┓ ┃┏━━┛ ┃┗━━┓ ┃┏━━┛ ┃┃ â”—â”›""" ) else: r == 1 await event.edit( """╭━━━╮ ┃╭━━╯ ┃╰━━╮ ┃╭━━╯ ┃┃ ╰╯""" ) @borg.on(admin_cmd(pattern='f (.*)')) async def payf(e): paytext = e.pattern_match.group(1) pay = '{}\n{}\n{}\n{}\n{}\n{}\n{}'.format(paytext * 5, paytext * 1, paytext * 1, paytext * 4, paytext * 1, paytext * 1, paytext * 1) await e.edit(pay) @borg.on(admin_cmd(pattern=f'loading$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 20) animation_chars = ['â–®', 'â–¯', 'â–¬', 'â–\xad', '‎'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 4]) @borg.on(admin_cmd(pattern=f'square$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 20) animation_chars = ['â—§', 'â—¨', 'â—§', 'â—¨', '‎'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 4]) @borg.on(admin_cmd(pattern=f'up$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 20) animation_chars = ['╹', 'â•»', '╹', 'â•»', '‎'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 4]) @borg.on(admin_cmd(pattern=f'round$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 20) animation_chars = ['âš«', '⬤', 'â—\x8f', '∘', '‎'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 4]) @borg.on(admin_cmd(pattern=f'hart$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.5 animation_ttl = range(0, 20) animation_chars = ['🖤', 'â\x9d¤ï¸\x8f', '🖤', 'â\x9d¤ï¸\x8f', '‎'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 4]) @borg.on(admin_cmd(pattern=f'anim$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 11) animation_chars = ['ðŸ˜\x81', '😧', '😡', '😢', '‎**HellBoy Bolte Public**', 'ðŸ˜\x81', '😧', '😡', '😢', '[PAPA HERE](https://t.me/Kraken_The_BadASS)', '__**Good to See you Guys....**__'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 11]) @borg.on(admin_cmd(pattern=f'fnl$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 2 animation_ttl = range(0, 6) animation_chars = ['ðŸ˜\x81ðŸ\x8f¿', 'ðŸ˜\x81ðŸ\x8f¾', 'ðŸ˜\x81ðŸ\x8f½', 'ðŸ˜\x81ðŸ\x8f¼', '‎ðŸ˜\x81', '**Good to See you Guys....**'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 6]) @borg.on(admin_cmd(pattern=f'monkey$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 2 animation_ttl = range(0, 6) animation_chars = ['ðŸ\x90µ', '🙉', '🙈', '🙊', '🖕‎ðŸ\x90µðŸ–•', '**Good to See you Guys....**'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 6]) @borg.on(admin_cmd(pattern=f'herber$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 2 animation_ttl = range(0, 11) animation_chars = [ """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 10% ●○○○○○○○○○ **🔹cpu core** **🔹core_usage:** 5.9% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 8.13GB **🔹used:** 33.77GB **🔹total:** 60.0GB ●●●●●●●○○○ **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 158.98GB **🔹recv:** 146.27GB **🔹sent_packets:** 84518799 **🔹recv_packets:** 159720314 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 30% ●●●○○○○○○○ **🔹cpu core** **🔹core_usage:** 20.4% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 7.18GB **🔹used:** 28.26GB **🔹total:** 60.0GB ●●●●●●●●●● **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 146.27GB **🔹recv:** 124.33GB **🔹sent_packets:** 54635686 **🔹recv_packets:** 143565654 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 60% ●●●●●●○○○○ **🔹cpu core** **🔹core_usage:** 60.9% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 6.52GB **🔹used:** 35.78GB **🔹total:** 60.0GB ●●●○○○○○○○ **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 124.33GB **🔹recv:** 162.48GB **🔹sent_packets:** 25655655 **🔹recv_packets:** 165289456 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 100% ●●●●●●●●●● **🔹cpu core** **🔹core_usage:** 100.0% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 9.81GB **🔹used:** 30.11GB **🔹total:** 60.0GB ●●●●●●●●●● **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 162.48GB **🔹recv:** 175.75GB **🔹sent_packets:** 56565435 **🔹recv_packets:** 135345655 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 70% ●●●●●●●○○○ **🔹cpu core** **🔹core_usage:** 80.4% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 5.76GB **🔹used:** 29.35GB **🔹total:** 60.0GB ●●●●●●●○○○ **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 175.75GB **🔹recv:** 118.55GB **🔹sent_packets:** 36547698 **🔹recv_packets:** 185466554 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 60% ●●●●●●○○○○ **🔹cpu core** **🔹core_usage:** 62.9% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 8.23GB **🔹used:** 33.32GB **🔹total:** 60.0GB ●●●●●●○○○○ **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 118.55GB **🔹recv:** 168.65GB **🔹sent_packets:** 24786554 **🔹recv_packets:** 156745865 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 30% ●●●○○○○○○○ **🔹cpu core** **🔹core_usage:** 30.6% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 9.75GB **🔹used:** 36.54GB **🔹total:** 60.0GB ●●●●●●●●●● **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 168.65GB **🔹recv:** 128.35GB **🔹sent_packets:** 56565435 **🔹recv_packets:** 1475823589 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 10% ●○○○○○○○○○ **🔹cpu core** **🔹core_usage:** 10.2% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 10.20GB **🔹used:** 25.40GB **🔹total:** 60.0GB ●●●●●●○○○○ **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 128.35GB **🔹recv:** 108.31GB **🔹sent_packets:** 54635686 **🔹recv_packets:** 157865426 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 100% ●●●●●●●●●● **🔹cpu core** **🔹core_usage:** 100.0% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 5.25GB **🔹used:** 31.14GB **🔹total:** 60.0GB ●●●●●●●●●● **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 108.31GB **🔹recv:** 167.17GB **🔹sent_packets:** 84518799 **🔹recv_packets:** 124575356 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 70% ●●●●●●●○○○ **🔹cpu core** **🔹core_usage:** 76.2% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 8.01GB **🔹used:** 33.27GB **🔹total:** 60.0GB ●●●○○○○○○○ **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 167.17GB **🔹recv:** 158.98GB **🔹sent_packets:** 36547698 **🔹recv_packets:** 165455856 **===================** """ ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 11]) @borg.on(admin_cmd(pattern=f'hand$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 14) animation_chars = ['👈', '👉', 'â˜\x9dï¸\x8f', '👆', '🖕', '👇', '✌ï¸\x8f', '🤞', '🖖', '🤘', '🤙', 'ðŸ–\x90ï¸\x8f', '👌'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 14]) @borg.on(admin_cmd(pattern=f'gsg$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 13) animation_chars = ['🔟', '9ï¸\x8f⃣', '8ï¸\x8f⃣', '7ï¸\x8f⃣', '6ï¸\x8f⃣', '5ï¸\x8f⃣', '4ï¸\x8f⃣', '3ï¸\x8f⃣', '2ï¸\x8f⃣', '1ï¸\x8f⃣', '0ï¸\x8f⃣', '🆘'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 13]) @borg.on(admin_cmd(pattern='theart$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 54) animation_chars = ['â\x9d¤ï¸\x8f', '🧡', '💛', '💚', '💙', '💜', '🖤', '💘', 'ðŸ’\x9d', 'â\x9d¤ï¸\x8f', '🧡', '💛', '💚', '💙', '💜', '🖤', '💘', 'ðŸ’\x9d'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 18]) @borg.on(admin_cmd(pattern='fdance')) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 5) await event.edit('Connecting..') animation_chars = [ """⠀⠀⠀⣶⣿⣶ ⠀⠀⠀⣿⣿⣿⣀ ⠀⣀⣿⣿⣿⣿⣿⣿ ⣶⣿⠛⣭⣿⣿⣿⣿ ⠛⠛⠛⣿⣿⣿⣿⠿ ⠀⠀⠀⠀⣿⣿⣿ ⠀⠀⣀⣭⣿⣿⣿⣿⣀ ⠀⠤⣿⣿⣿⣿⣿⣿⠉ ⠀⣿⣿⣿⣿⣿⣿⠉ ⣿⣿⣿⣿⣿⣿ ⣿⣿⣶⣿⣿ ⠉⠛⣿⣿⣶⣤ ⠀⠀⠉⠿⣿⣿⣤ ⠀⠀⣀⣤⣿⣿⣿ ⠀⠒⠿⠛⠉⠿⣿ ⠀⠀⠀⠀⠀⣀⣿⣿ ⠀⠀⠀⠀⣶⠿⠿⠛ """ , """⠀⠀⠀⠀⠀⠀⠀⠀⠀⣤⣤ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿ ⠀⠀⣶⠀⠀⣀⣤⣶⣤⣉⣿⣿⣤⣀ ⠤⣤⣿⣤⣿⠿⠿⣿⣿⣿⣿⣿⣿⣿⣿⣀ ⠀⠛⠿⠀⠀⠀⠀⠉⣿⣿⣿⣿⣿⠉⠛⠿⣿⣤ ⠀⠀⠀⠀⠀⠀⠀⠀⠿⣿⣿⣿⠛⠀⠀⠀⣶⠿ ⠀⠀⠀⠀⠀⠀⠀⠀⣀⣿⣿⣿⣿⣤⠀⣿⠿ ⠀⠀⠀⠀⠀⠀⠀⣶⣿⣿⣿⣿⣿⣿⣿⣿ ⠀⠀⠀⠀⠀⠀⠀⠿⣿⣿⣿⣿⣿⠿⠉⠉ ⠀⠀⠀⠀⠀⠀⠀⠉⣿⣿⣿⣿⠿ ⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⠉ ⠀⠀⠀⠀⠀⠀⠀⠀⣛⣿⣭⣶⣀ ⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⣿⣿ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⠉⠛⣿ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⠀⠀⣿⣿ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣉⠀⣶⠿ ⠀⠀⠀⠀⠀⠀⠀⠀⣶⣿⠿ ⠀⠀⠀⠀⠀⠀⠀⠛⠿⠛ """ , """⠀⠀⠀⠀⠀⠀⠀⠀⠀⣤⣶ ⠀⠀⠀⠀⠀⣀⣀⠀⣶⣿⣿⠶ ⣶⣿⠿⣿⣿⣿⣿⣿⣿⣿⣿⣤⣤ ⠀⠉⠶⣶⣀⣿⣿⣿⣿⣿⣿⣿⠿⣿⣤⣀ ⠀⠀⠀⣿⣿⠿⠉⣿⣿⣿⣿⣭⠀⠶⠿⠿ ⠀⠀⠛⠛⠿⠀⠀⣿⣿⣿⣉⠿⣿⠶ ⠀⠀⠀⠀⠀⣤⣶⣿⣿⣿⣿⣿ ⠀⠀⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⠒ ⠀⠀⠀⠀⣀⣿⣿⣿⣿⣿⣿⣿ ⠀⠀⠀⠀⠀⣿⣿⣿⠛⣭⣭⠉ ⠀⠀⠀⠀⠀⣿⣿⣭⣤⣿⠛ ⠀⠀⠀⠀⠀⠛⠿⣿⣿⣿⣭ ⠀⠀⠀⠀⠀⠀⠀⣿⣿⠉⠛⠿⣶⣤ ⠀⠀⠀⠀⠀⠀⣀⣿⠀⠀⣶⣶⠿⠿⠿ ⠀⠀⠀⠀⠀⠀⣿⠛ ⠀⠀⠀⠀⠀⠀⣭⣶ """ , """⠀⠀⠀⠀⠀⠀⣶⣿⣶ ⠀⠀⠀⣤⣤⣤⣿⣿⣿ ⠀⠀⣶⣿⣿⣿⣿⣿⣿⣿⣶ ⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⣿ ⠀⠀⣿⣉⣿⣿⣿⣿⣉⠉⣿⣶ ⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⠿⣿ ⠀⣤⣿⣿⣿⣿⣿⣿⣿⠿⠀⣿⣶ ⣤⣿⠿⣿⣿⣿⣿⣿⠿⠀⠀⣿⣿⣤ ⠉⠉⠀⣿⣿⣿⣿⣿⠀⠀⠒⠛⠿⠿⠿ ⠀⠀⠀⠉⣿⣿⣿⠀⠀⠀⠀⠀⠀⠉ ⠀⠀⠀⣿⣿⣿⣿⣿⣶ ⠀⠀⠀⠀⣿⠉⠿⣿⣿ ⠀⠀⠀⠀⣿⣤⠀⠛⣿⣿ ⠀⠀⠀⠀⣶⣿⠀⠀⠀⣿⣶ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⣭⣿⣿ ⠀⠀⠀⠀⠀⠀⠀⠀⣤⣿⣿⠉ """ , """⠀⠀⠀⠀⠀⠀⣤⣶⣶ ⠀⠀⠀⠀⠀⠀⣿⣿⣿⣿⣀⣀ ⠀⠀⠀⠀⠀⣀⣶⣿⣿⣿⣿⣿⣿ ⣤⣶⣀⠿⠶⣿⣿⣿⠿⣿⣿⣿⣿ ⠉⠿⣿⣿⠿⠛⠉⠀⣿⣿⣿⣿⣿ ⠀⠀⠉⠀⠀⠀⠀⠀⠀⣿⣿⣿⣿⣤⣤ ⠀⠀⠀⠀⠀⠀⠀⣤⣶⣿⣿⣿⣿⣿⣿ ⠀⠀⠀⠀⠀⣀⣿⣿⣿⣿⣿⠿⣿⣿⣿⣿ ⠀⠀⠀⠀⣀⣿⣿⣿⠿⠉⠀⠀⣿⣿⣿⣿ ⠀⠀⠀⠀⣿⣿⠿⠉⠀⠀⠀⠀⠿⣿⣿⠛ ⠀⠀⠀⠀⠛⣿⣿⣀⠀⠀⠀⠀⠀⣿⣿⣀ ⠀⠀⠀⠀⠀⣿⣿⣿⠀⠀⠀⠀⠀⠿⣿⣿ ⠀⠀⠀⠀⠀⠉⣿⣿⠀⠀⠀⠀⠀⠀⠉⣿ ⠀⠀⠀⠀⠀⠀⠀⣿⠀⠀⠀⠀⠀⠀⣀⣿ ⠀⠀⠀⠀⠀⠀⣀⣿⣿ ⠀⠀⠀⠀⠤⣿⠿⠿⠿ """ ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 5]) @borg.on(admin_cmd(pattern=f'snake$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 27) await event.edit('snake..') animation_chars = [ """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◻️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◻️◻️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◻️◻️◻️️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◻️◻️◻️◻️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """‎◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◼️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◻️◻️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◼️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◻️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◼️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◼️◼️◻️◻️ ◻️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◼️◼️◻️◻️ ◻️◼️◼️◻️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◼️◼️◻️◻️ ◻️◼️◻️◻️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◼️◼️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◻️◼️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◼️◻️◼️◻️ ◻️◻️◻️◻️◻️ ◻️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 27]) @borg.on(admin_cmd(pattern=f'human$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.5 animation_ttl = range(0, 16) await event.edit('human...') animation_chars = [ """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛🚗 ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛🚗⬛ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛🚗⬛⬛ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🚗⬛⬛⬛ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛🚗⬛⬛⬛⬛ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛🚗⬛⬛⬛⬛⬛ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ 🚗⬛⬛⬛⬛⬛⬛ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬜⬜⬜😊⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛😊⬛⬛⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬛⬛⬜⬛⬛⬛ ⬛⬛⬜⬛⬜⬛⬛ ⬛⬛⬜⬛⬜⬛⬛ ⬛⬛⬜⬛⬜⬛⬛ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛😊⬛⬛⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬛⬛⬜⬛⬛⬛ ⬛⬛⬜⬛⬜⬛⬛ ⬛⬛⬜⬛⬛⬜⬛ ⬛⬛⬜⬛⬛⬛⬛ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛😊⬛⬛⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬛⬛⬜⬛⬛⬛ ⬛⬛⬜⬛⬜⬛⬛ ⬛⬜⬛⬛⬛⬜⬛ ⬛⬛⬛⬛⬛⬛⬛ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬜⬛😊⬛⬜⬛ ⬛⬛⬜⬜⬜⬛⬛ ⬛⬛⬛⬜⬛⬛⬛ ⬛⬛⬜⬛⬜⬛⬛ ⬛⬜⬛⬛⬛⬜⬛ ⬛⬛⬛⬛⬛⬛⬛ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛😊⬛⬛⬛ ⬛⬛⬜⬜⬜⬛⬛ ⬛⬜⬛⬜⬛⬜⬛ ⬛⬛⬜⬛⬜⬛⬛ ⬛⬛⬜⬛⬜⬛⬛ ⬛⬛⬜⬛⬜⬛⬛ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬜⬜⬜😊⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 16]) @borg.on(admin_cmd(pattern=f'mc$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 28) await event.edit('mc..') animation_chars = [ """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◻️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◻️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◻️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◻️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◻️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◻️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◻️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◻️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◻️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◻️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◻️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◻️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◻️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◻️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◻️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◻️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◻️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◻️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◻️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◻️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◻️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◻️◼️◻️◼️ ◼️◼️◼️◼️◼️ ◼️◻️◻️◻️◼️ ◼️◼️◼️◼️◼️""" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 28]) @borg.on(admin_cmd(pattern='virus$')) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 30) await event.edit('Injecting virus....') animation_chars = [ """🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """◼️◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """◼️◼️◼️️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """◼️◼️◼️◼️🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """‎◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️◼️""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️ ◼️🔴🔵🌕♓♎⛎◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️🔴🔵🌕♓♎⛎◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️ ◼️◼️◼️◼️ ◼️◼️◼️◼️ ◼️◼️◼️◼️""" , """◼️◼️◼️ ◼️◼️◼️ ◼️◼️◼️""", """◼️◼️ ◼️◼️""", 'â—¼ï¸\x8f'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 30]) @borg.on(admin_cmd(pattern='repe$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.2 animation_ttl = range(0, 30) await event.edit('repe') animation_chars = ['**r**', '**ra**', '**rap**', '**rape**', '**rape_**', '**rape_t**', '**rape_tr**', '**rape_tra**', '**rape_trai**', '**rape_train**', '**ape_train🚅**', '**pe_train🚅🚃🚃**', '**e_train🚅🚃🚃🚃**', '**_train🚅🚃🚃🚃🚃**', '**train🚅🚃🚃🚃🚃🚃**', '**rain🚅🚃🚃🚃🚃🚃🚃**', '**ain🚅🚃🚃🚃🚃🚃🚃🚃**', '**in🚅🚃🚃🚃🚃🚃🚃🚃🚃**', '**n🚅🚃🚃🚃🚃🚃🚃🚃🚃🚃**', '🚅🚃🚃🚃🚃🚃🚃🚃🚃🚃', '🚃🚃🚃🚃🚃🚃🚃🚃🚃', '🚃🚃🚃🚃🚃🚃🚃🚃', '🚃🚃🚃🚃🚃🚃🚃', '🚃🚃🚃🚃🚃🚃', '🚃🚃🚃🚃🚃', '🚃🚃🚃🚃', '🚃🚃🚃', '🚃🚃', '🚃', '**rApEd**'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 30]) @borg.on(admin_cmd(pattern=f'isro$')) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 24) await event.edit('Connecting..') animation_chars = [ """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ 🚀⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛🚀⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛🚀⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🚀⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛🚀⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛🚀 ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """🛸⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ 🛸⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛🛸⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛🛸⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛🛸⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🛸⬛⬛""" , """⬛⬛⬛🛸⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🛸⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🛸⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🛸⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🛸⬛⬛ ⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🛸⬛🚶‍♂️ ⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🛸🚶‍♂️⬛ ⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ 👽⬛⬛🛸🚶‍♂️⬛ ⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛👽⬛🛸🚶‍♂️⬛ ⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛👽🛸🚶‍♂️⬛ ⬜⬜⬜⬜⬜⬜""" , '__Signal Lost....__'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 24]) @borg.on(admin_cmd(pattern=f'nakal$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.5 animation_ttl = range(0, 6) await event.edit('nakal') animation_chars = [ """`⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀ ⠀⣴⠿⠏⠀⠀⠀⠀⠀ ⢳⡀⠀⡏⠀⠀⠀ ⠀⢷ ⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀⣧⠀⢸⠀⠀⠀ â € ⡇ ⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲⣿ ⣸ Nikal ⡇ ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀⠀ ⣿ ⢹⠀ ⡇ ⠙⢿⣯⠄⠀⠀⠀__⠀⠀⡿ ⠀⡇⠀⠀⠀⠀ ⡼ ⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀ ⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀ ⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀ ⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`""" , """`⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀ ⠀⣴⠿⠏⠀⠀⠀⠀⠀ ⠀⢳⡀⠀⡏⠀⠀⠀ ⠀⢷ ⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀⣧⠀⢸⠀⠀⠀ ⡇ ⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲⣿ ⣸ Lavde ⡇ ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀⠀ ⣿ ⢹⠀ ⡇ ⠙⢿⣯⠄⠀⠀|__|⠀⠀⡿ ⠀⡇⠀⠀⠀⠀ ⡼ ⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀ ⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀ ⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀ ⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`""" , """`⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀ ⠀⣴⠿⠏⠀⠀ ⠀⢳⡀⠀⡏⠀⠀ ⠀⢷ ⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀⣧⠀⢸⠀⠀⠀⠀ ⡇ ⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲⣿ ⣸ Pehli ⡇ ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀⠀ ⣿ ⢹⠀ ⡇ ⠙⢿⣯⠄⠀⠀(P)⠀⠀⡿ ⠀⡇⠀⠀⠀⠀ ⡼ ⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀ ⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀ ⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀ ⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`""" , """`⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀ ⠀⣴⠿⠏⠀⠀ ⠀⢳⡀⠀⡏⠀⠀ ⠀⢷ ⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀⣧⠀⢸⠀ â € ⡇ ⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲⣿ ⣸ Fursat ⡇ ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀ ⣿ ⢹⠀ ⡇ ⠙⢿⣯⠄⠀⠀⠀__ ⠀⠀⡿ ⠀⡇⠀⠀⠀⠀ ⡼ ⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀ ⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀ ⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀ ⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`""" , """`⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀ ⠀⣴⠿⠏⠀⠀⠀⠀⠀ ⢳⡀⠀⡏⠀⠀ ⠀⢷ ⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀⣧⠀⢸⠀⠀ â € ⡇ ⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲⣿ ⣸ Meeee ⡇ ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀⠀ ⣿ ⢹⠀ ⡇ ⠙⢿⣯⠄⠀⠀|__| ⠀⡿ ⠀⡇⠀⠀⠀⠀ ⡼ ⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀ ⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀ ⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀ ⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`""" , """`⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀ ⠀⣴⠿⠏⠀⠀⠀⠀⠀ ⠀⢳⡀⠀⡏⠀⠀ ⠀⢷ ⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀⣧⠀⢸⠀ â € ⡇ ⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲⣿ ⣸ Nikal ⡇ ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀ ⣿ ⢹⠀ ⡇ ⠙⢿⣯⠄⠀⠀lodu⠀⠀⡿ ⠀⡇⠀⠀⠀⠀ ⡼ ⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀ ⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀ ⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀ ⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`""" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 6]) @borg.on(admin_cmd(pattern=f'music$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 1.5 animation_ttl = range(0, 11) await event.edit('starting player...') animation_chars = [ """⬤⬤⬤ 81% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:00** ▱▱▱▱▱▱▱▱▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `▶️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤⬤ 81% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:01** ▰▱▱▱▱▱▱▱▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤⬤ 81% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:02** ▰▰▱▱▱▱▱▱▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤⬤ 81% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:03** ▰▰▰▱▱▱▱▱▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀ [Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:04** ▰▰▰▰▱▱▱▱▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:05** ▰▰▰▰▱▱▱▱▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:06** ▰▰▰▰▰▰▱▱▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:07** ▰▰▰▰▰▰▰▱▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:08** ▰▰▰▰▰▰▰▰▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:09** â–°â–°â–°â–°â–°â–°â–°â–°â–°â–± **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:10** â–°â–°â–°â–°â–°â–°â–°â–°â–°â–° **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏺️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 11]) @borg.on(admin_cmd(pattern=f'squ$', outgoing=True)) async def _(event): if event.fwd_from: return await event.edit( """╔═══════════════════╗ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(6) @borg.on(admin_cmd(pattern='star$', outgoing=True)) async def _(event): if event.fwd_from: return deq = deque(list('🦋✨🦋✨🦋✨🦋✨')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='boxs')) async def _(event): if event.fwd_from: return deq = deque(list('🟥🟧🟨🟩🟦🟪🟫⬛⬜')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern=f'rain$', outgoing=True)) async def _(event): if event.fwd_from: return deq = deque(list('🌬â˜\x81ï¸\x8f🌩🌨🌧🌦🌥⛅🌤')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='clol$')) async def _(event): if event.fwd_from: return deq = deque(list('🤔ðŸ§\x90🤨🤔ðŸ§\x90🤨')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='odra$')) async def _(event): if event.fwd_from: return deq = deque(list('🚶ðŸ\x8fƒðŸš¶ðŸ\x8fƒðŸš¶ðŸ\x8fƒðŸš¶ðŸ\x8fƒ')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='deploy$')) async def _(event): if event.fwd_from: return animation_interval = 3 animation_ttl = range(0, 12) await event.edit('Deploying...') animation_chars = ['**Heroku Connecting To Latest Github Build **', f'**Build started by user** @Kraken_The_BadASS', f'**Deploy** `535a74f0` for user by my master!!', '**Restarting Heroku Server...**', '**State changed from up to starting**', '**Stopping all processes with SIGTERM**', '**Process exited with** `status 143`', '**Starting process with command** `python3 -m stdborg`', '**State changed from starting to up**', '__INFO:Userbot:Logged in as 557667062__', '__INFO:Userbot:Successfully loaded all plugins__', '**Build Succeeded**'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 12]) @borg.on(admin_cmd(pattern='dump ?(.*)')) async def _(message): try: obj = message.pattern_match.group(1) if len(obj) != 3: raise IndexError inp = ' '.join(obj) except IndexError: inp = '🥞 🎂 ðŸ\x8d«' u, t, g, o, s, n = inp.split( ), '🗑', '<(^_^ <)', '(> ^_^)>', 'â\xa0€ ', '\n' h = [(u[0], u[1], u[2]), (u[0], u[1], ''), (u[0], '', '')] for something in reversed([y for y in ([''.join(x) for x in (f + (s, g, s + s * f.count(''), t), f + (g, s * 2 + s * f.count(''), t), f[:i] + (o, f[i], s * 2 + s * f.count(''), t), f[:i] + (s + s * f.count(''), o, f[i], s, t), f[:i] + (s * 2 + s * f.count(''), o, f[i], t), f[:i ] + (s * 3 + s * f.count(''), o, t), f[:i] + (s * 3 + s * f.count( ''), g, t))] for i, f in enumerate(reversed(h)))]): for something_else in something: await asyncio.sleep(0.3) try: await message.edit(something_else) except errors.MessageIdInvalidError: return @borg.on(admin_cmd(pattern='fleaveme$')) async def _(event): animation_interval = 1 animation_ttl = range(0, 10) animation_chars = ['⬛⬛⬛\n⬛⬛⬛\n⬛⬛⬛', '⬛⬛⬛\n⬛🔄⬛\n⬛⬛⬛', """⬛⬆️⬛ ⬛🔄⬛ ⬛⬛⬛""", """⬛⬆️↗️ ⬛🔄⬛ ⬛⬛⬛""", """⬛⬆️↗️ ⬛🔄➡️ ⬛⬛⬛""", """⬛⬆️↗️ ⬛🔄➡️ ⬛⬛↘️""", """⬛⬆️↗️ ⬛🔄➡️ ⬛⬇️↘️""", """⬛⬆️↗️ ⬛🔄➡️ ↙️⬇️↘️""", """⬛⬆️↗️ ⬅️🔄➡️ ↙️⬇️↘️""", """↖️⬆️↗️ ⬅️🔄➡️ ↙️⬇️↘️"""] if event.fwd_from: return await event.edit('fleaveme....') await asyncio.sleep(2) for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 10]) @borg.on(admin_cmd(pattern='loveu', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.5 animation_ttl = range(0, 70) await event.edit('loveu') animation_chars = ['😀', '👩â€\x8d🎨', 'ðŸ˜\x81', '😂', '🤣', '😃', '😄', '😅', '😊', '☺', '🙂', '🤔', '🤨', 'ðŸ˜\x90', '😑', '😶', '😣', '😥', '😮', 'ðŸ¤\x90', '😯', '😴', '😔', '😕', '☹', 'ðŸ™\x81', '😖', '😞', '😟', '😢', 'ðŸ˜\xad', '🤯', '💔', 'â\x9d¤', 'i Love Youâ\x9d¤' ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 35]) @borg.on(admin_cmd(pattern=f'plane', outgoing=True)) async def _(event): if event.fwd_from: retun await event.edit('✈-------------') await event.edit('-✈------------') await event.edit('--✈-----------') await event.edit('---✈----------') await event.edit('----✈---------') await event.edit('-----✈--------') await event.edit('------✈-------') await event.edit('-------✈------') await event.edit('--------✈-----') await event.edit('---------✈----') await event.edit('----------✈---') await event.edit('-----------✈--') await event.edit('------------✈-') await event.edit('-------------✈') await asyncio.sleep(3) await event.delete() @borg.on(admin_cmd(pattern='pulis')) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 12) await event.edit('Pulis') animation_chars = [ """🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵""" , """🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴""" , """🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵""" , """🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴""" , """🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵""" , """🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴""" , """🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵""" , """🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴""" , """🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵""" , """🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴""" , """🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵""" , f'{DEFAULTUSER} **Police iz Here**'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 12]) @borg.on(admin_cmd(pattern=f'jio$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 19) await event.edit('jio network boosting...') animation_chars = ['`Connecting To JIO NETWORK ....`', '`â–ˆ â–‡ â–† â–… â–„ â–‚ â–\x81`', '`â–’ â–‡ â–† â–… â–„ â–‚ â–\x81`', '`â–’ â–’ â–† â–… â–„ â–‚ â–\x81`', '`â–’ â–’ â–’ â–… â–„ â–‚ â–\x81`', '`â–’ â–’ â–’ â–’ â–„ â–‚ â–\x81`', '`â–’ â–’ â–’ â–’ â–’ â–‚ â–\x81`', '`â–’ â–’ â–’ â–’ â–’ â–’ â–\x81`', '`â–’ â–’ â–’ â–’ â–’ â–’ â–’`', '*Optimising JIO NETWORK...*', '`â–’ â–’ â–’ â–’ â–’ â–’ â–’`', '`â–\x81 â–’ â–’ â–’ â–’ â–’ â–’`', '`â–\x81 â–‚ â–’ â–’ â–’ â–’ â–’`', '`â–\x81 â–‚ â–„ â–’ â–’ â–’ â–’`', '`â–\x81 â–‚ â–„ â–… â–’ â–’ â–’`', '`â–\x81 â–‚ â–„ â–… â–† â–’ â–’`', '`â–\x81 â–‚ â–„ â–… â–† â–‡ â–’`', '`â–\x81 â–‚ â–„ â–… â–† â–‡ â–ˆ`', '**JIO NETWORK Boosted....**'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 19]) @borg.on(admin_cmd(pattern=f'solarsystem', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.1 animation_ttl = range(0, 80) await event.edit('solarsystem') animation_chars = [ """`◼️◼️◼️◼️◼️ ◼️◼️◼️◼️☀ ◼️◼️🌎◼️◼️ 🌕◼️◼️◼️◼️ ◼️◼️◼️◼️◼️`""" , """`◼️◼️◼️◼️◼️ 🌕◼️◼️◼️◼️ ◼️◼️🌎◼️◼️ ◼️◼️◼️◼️☀ ◼️◼️◼️◼️◼️`""" , """`◼️🌕◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️🌎◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️☀◼️`""" , """`◼️◼️◼️🌕◼️ ◼️◼️◼️◼️◼️ ◼️◼️🌎◼️◼️ ◼️◼️◼️◼️◼️ ◼️☀◼️◼️◼️`""" , """`◼️◼️◼️◼️◼️ ◼️◼️◼️◼️🌕 ◼️◼️🌎◼️◼️ ☀◼️◼️◼️◼️ ◼️◼️◼️◼️◼️`""" , """`◼️◼️◼️◼️◼️ ☀◼️◼️◼️◼️ ◼️◼️🌎◼️◼️ ◼️◼️◼️◼️🌕 ◼️◼️◼️◼️◼️`""" , """`◼️☀◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️🌎◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️🌕◼️`""" , """`◼️◼️◼️☀◼️ ◼️◼️◼️◼️◼️ ◼️◼️🌎◼️◼️ ◼️◼️◼️◼️◼️ ◼️🌕◼️◼️◼️`""" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 8]) @borg.on(admin_cmd(pattern='lul$')) async def _(event): if event.fwd_from: return deq = deque(list('😂🤣😂🤣😂🤣')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='nothappy$')) async def _(event): if event.fwd_from: return deq = deque(list('ðŸ˜\x81☹ï¸\x8fðŸ˜\x81☹ï¸\x8fðŸ˜\x81☹ï¸\x8fðŸ˜\x81') ) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(outgoing=True, pattern='clock$')) async def _(event): if event.fwd_from: return deq = deque(list('🕙🕘🕗🕖🕕🕔🕓🕒🕑ðŸ•\x90🕛')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='muah$')) async def _(event): if event.fwd_from: return deq = deque(list('😗😙😚😚😘')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='heart$')) async def _(event): if event.fwd_from: return deq = deque(list('â\x9d¤ï¸\x8f🧡💛💚💙💜🖤')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='gym$', outgoing=True)) async def _(event): if event.fwd_from: return deq = deque(list( 'ðŸ\x8fƒâ€\x8dðŸ\x8f‹â€\x8d🤸â€\x8dðŸ\x8fƒâ€\x8dðŸ\x8f‹â€\x8d🤸â€\x8dðŸ\x8fƒâ€\x8dðŸ\x8f‹â€\x8d🤸â€\x8d' )) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern=f'earth$', outgoing=True)) async def _(event): if event.fwd_from: return deq = deque(list('ðŸŒ\x8fðŸŒ\x8d🌎🌎ðŸŒ\x8dðŸŒ\x8fðŸŒ\x8d🌎')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(outgoing=True, pattern='moon$')) async def _(event): if event.fwd_from: return deq = deque(list('🌗🌘🌑🌒🌓🌔🌕🌖')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='candy$')) async def _(event): if event.fwd_from: return deq = deque(list( 'ðŸ\x8d¦ðŸ\x8d§ðŸ\x8d©ðŸ\x8dªðŸŽ‚ðŸ\x8d°ðŸ§\x81ðŸ\x8d«ðŸ\x8d¬ðŸ\x8d\xad' )) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern=f'smoon$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.1 animation_ttl = range(0, 101) await event.edit('smoon..') animation_chars = [ """🌗🌗🌗🌗🌗 🌓🌓🌓🌓🌓 🌗🌗🌗🌗🌗 🌓🌓🌓🌓🌓 🌗🌗🌗🌗🌗""" , """🌘🌘🌘🌘🌘 🌔🌔🌔🌔🌔 🌘🌘🌘🌘🌘 🌔🌔🌔🌔🌔 🌘🌘🌘🌘🌘""" , """🌑🌑🌑🌑🌑 🌕🌕🌕🌕🌕 🌑🌑🌑🌑🌑 🌕🌕🌕🌕🌕 🌑🌑🌑🌑🌑""" , """🌒🌒🌒🌒🌒 🌖🌖🌖🌖🌖 🌒🌒🌒🌒🌒 🌖🌖🌖🌖🌖 🌒🌒🌒🌒🌒""" , """🌓🌓🌓🌓🌓 🌗🌗🌗🌗🌗 🌓🌓🌓🌓🌓 🌗🌗🌗🌗🌗 🌓🌓🌓🌓🌓""" , """🌔🌔🌔🌔🌔 🌘🌘🌘🌘🌘 🌔🌔🌔🌔🌔 🌘🌘🌘🌘🌘 🌔🌔🌔🌔🌔""" , """🌕🌕🌕🌕🌕 🌑🌑🌑🌑🌑 🌕🌕🌕🌕🌕 🌑🌑🌑🌑🌑 🌕🌕🌕🌕🌕""" , """🌖🌖🌖🌖🌖 🌒🌒🌒🌒🌒 🌖🌖🌖🌖🌖 🌒🌒🌒🌒🌒 🌖🌖🌖🌖🌖""" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 8]) @borg.on(admin_cmd(pattern=f'tmoon$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.1 animation_ttl = range(0, 117) await event.edit('tmoon') animation_chars = ['🌗', '🌘', '🌑', '🌒', '🌓', '🌔', '🌕', '🌖', '🌗', '🌘', '🌑', '🌒', '🌓', '🌔', '🌕', '🌖', '🌗', '🌘', '🌑', '🌒', '🌓', '🌔', '🌕', '🌖', '🌗', '🌘', '🌑', '🌒', '🌓', '🌔', '🌕', '🌖'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 32]) @borg.on(admin_cmd(pattern=f'clown$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.5 animation_ttl = range(0, 16) animation_chars = ['COMMAND CREATE BY @Kraken_The_BadASS', '🤡ï¸\x8f', '🤡🤡', '🤡🤡🤡', '🤡🤡🤡🤡', '🤡🤡🤡🤡🤡', '🤡🤡🤡🤡🤡🤡', '🤡🤡🤡🤡🤡', '🤡🤡🤡🤡', '🤡🤡🤡', '🤡🤡', '🤡', 'You', 'You Are', 'You Are A', 'You Are A Clown 🤡'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 16]) @borg.on(admin_cmd(pattern='aheart$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 1.3 animation_ttl = range(0, 50) animation_chars = ['â\x9d¤ï¸\x8f', '🧡', '💛', '💚', '💙', '💜', '🖤', '💘', 'ðŸ’\x9d', '💔', 'â\x9d¤ï¸\x8f', '🧡', '💛', '💚', '💙', '💜', '🖤', '💘', 'ðŸ’\x9d', '💔'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 20])
<mask token> DEFAULTUSER = str(ALIVE_NAME) if ALIVE_NAME else 'Cat' @borg.on(admin_cmd(pattern='stupid$')) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 14) await event.edit('brain') animation_chars = [ 'YOᑌᖇ ᗷᖇᗩIᑎ âž¡ï¸\x8f ðŸ§\xa0\n\nðŸ§\xa0 <(^_^ <)🗑' , """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 🧠 <(^_^ <) 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 🧠 <(^_^ <) 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 🧠 <(^_^ <) 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 🧠 <(^_^ <) 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 🧠<(^_^ <) 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 (> ^_^)>🧠 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 (> ^_^)>🧠 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 (> ^_^)>🧠 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 (> ^_^)>🧠 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 (> ^_^)>🧠 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 (> ^_^)>🧠🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 (> ^_^)>🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 <(^_^ <)🗑"""] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 14]) @borg.on(admin_cmd(pattern=f'bombs$', outgoing=True)) async def _(event): if event.fwd_from: return await event.edit( """▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ """ ) await asyncio.sleep(0.5) await event.edit( """💣💣💣💣 ▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ """ ) await asyncio.sleep(0.5) await event.edit( """▪️▪️▪️▪️ 💣💣💣💣 ▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ """ ) await asyncio.sleep(0.5) await event.edit( """▪️▪️▪️▪️ ▪️▪️▪️▪️ 💣💣💣💣 ▪️▪️▪️▪️ ▪️▪️▪️▪️ """ ) await asyncio.sleep(0.5) await event.edit( """▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ 💣💣💣💣 ▪️▪️▪️▪️ """ ) await asyncio.sleep(0.5) await event.edit( """▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ 💣💣💣💣 """ ) await asyncio.sleep(1) await event.edit( """▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ 💥💥💥💥 """ ) await asyncio.sleep(0.5) await event.edit( """▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ 💥💥💥💥 💥💥💥💥 """ ) await asyncio.sleep(0.5) await event.edit( """▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ 😵😵😵😵 """ ) await asyncio.sleep(0.5) await event.edit('`RIP PLOXXX......`') await asyncio.sleep(2) @borg.on(admin_cmd(pattern=f'kill$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.7 animation_ttl = range(0, 12) await event.edit('ready to die dude.....') animation_chars = ['Fiiiiire', '( ・ิω・ิ)︻デâ•\x90一-->', '---->____________â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0' , '------>__________â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0' , '-------->â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0_________' , '---------->â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0_______' , '------------>â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0_____' , '-------------->â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0____' , '------------------>', '------>;(^。^)ノ', '( ̄ー ̄) DEAD', """`Targeted user killed by Headshot 😈.😈.😈.😈.😈.😈.😈......` '#Sad_Reacts_Online' """ ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 12]) @borg.on(admin_cmd(pattern='ding$')) async def _(event): animation_interval = 0.3 animation_ttl = range(0, 30) animation_chars = ['🔴⬛⬛⬜⬜\n⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜', """⬜⬜⬛⬜⬜ ⬜⬛⬜⬜⬜ 🔴⬜⬜⬜⬜""", """⬜⬜⬛⬜⬜ ⬜⬜⬛⬜⬜ ⬜⬜🔴⬜⬜""", """⬜⬜⬛⬜⬜ ⬜⬜⬜⬛⬜ ⬜⬜⬜⬜🔴""", """⬜⬜⬛⬛🔴 ⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜""", """⬜⬜⬛⬜⬜ ⬜⬜⬜⬛⬜ ⬜⬜⬜⬜🔴""", """⬜⬜⬛⬜⬜ ⬜⬜⬛⬜⬜ ⬜⬜🔴⬜⬜""", """⬜⬜⬛⬜⬜ ⬜⬛⬜⬜⬜ 🔴⬜⬜⬜⬜""", """🔴⬛⬛⬜⬜ ⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜""", """⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜ ⬜ [CAT IS BEST](https://github.com/Sur-vivor/CatUserbot) ⬜ ⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜""" ] if event.fwd_from: return await event.edit('ding..dong..ding..dong ...') await asyncio.sleep(4) for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 10]) @borg.on(admin_cmd(pattern=f'hypno$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 15) await event.edit('hypo....') animation_chars = [ """⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜""" , """⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬛⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜""" , """⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬛⬛⬛⬜⬜ ⬜⬜⬛⬜⬛⬜⬜ ⬜⬜⬛⬛⬛⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜""" , """⬜⬜⬜⬜⬜⬜⬜ ⬜⬛⬛⬛⬛⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬛⬛⬛⬛⬜ ⬜⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬛⬛⬛⬛⬛⬛""" , """⬛⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜⬛""" , """⬜⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛⬜""" , """⬜⬜⬜⬜⬜⬜⬜ ⬜⬛⬛⬛⬛⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬛⬛⬛⬛⬜ ⬜⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬜⬛⬛⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬛⬛⬜⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬛⬛⬛⬛⬛⬛""" , """⬜⬜⬜⬜⬜⬜⬜ ⬜⬛⬛⬛⬛⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬛⬛⬛⬛⬜ ⬜⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬜⬛⬛⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬛⬛⬜⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬛⬛⬛⬛⬛⬛""" , """⬜⬜⬜⬜⬜⬜⬜ ⬜⬛⬛⬛⬛⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬛⬛⬛⬛⬜ ⬜⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛ ⬛⬜⬜⬜⬛ ⬛⬜⬛⬜⬛ ⬛⬜⬜⬜⬛ ⬛⬛⬛⬛⬛""" , """⬜⬜⬜ ⬜⬛⬜ ⬜⬜⬜""", '[👉🔴👈])'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 15]) @borg.on(admin_cmd(pattern='gangasta$')) async def _(event): await event.edit('EVERyBOdy') await asyncio.sleep(0.3) await event.edit('iZ') await asyncio.sleep(0.2) await event.edit('GangSTur') await asyncio.sleep(0.5) await event.edit('UNtIL ') await asyncio.sleep(0.2) await event.edit('I') await asyncio.sleep(0.3) await event.edit('ArRivE') await asyncio.sleep(0.3) await event.edit('🔥🔥🔥') await asyncio.sleep(0.3) await event.edit('EVERyBOdy iZ GangSTur UNtIL I ArRivE 🔥🔥🔥') @borg.on(admin_cmd(pattern=f'charging$')) async def timer_blankx(e): txt = e.text[10:] + """ `Tesla Wireless Charging (beta) Started... Device Detected: Nokia 1100 Battery Percentage:` """ j = 10 k = j for j in range(j): await e.edit(txt + str(k)) k = k + 10 await asyncio.sleep(1) await asyncio.sleep(1) await e.edit( """`Tesla Wireless Charging (beta) Completed... Device Detected: Nokia 1100 (Space Grey Varient) Battery Percentage:` [100%](https://telegra.ph/file/a45aa7450c8eefed599d9.mp4) """ , link_preview=True) @borg.on(admin_cmd('bigoof')) async def _(event): if event.fwd_from: return animation_interval = 0.1 animation_ttl = range(0, 7) await event.edit( """┏━━━┓╋╋╋╋┏━━━┓ ┃┏━┓┃╋╋╋╋┃┏━┓┃ ┃┃╋┃┣┓┏┓┏┫┃╋┃┃ ┃┃╋┃┃┗┛┗┛┃┃╋┃┃ ┃┗━┛┣┓┏┓┏┫┗━┛┃ ┗━━━┛┗┛┗┛┗━━━┛""" ) animation_chars = [ """╭━━━╮╱╱╱╭━╮ ┃╭━╮┃╱╱╱┃╭╯ ┃┃╱┃┣━━┳╯╰╮ ┃┃╱┃┃╭╮┣╮╭╯ ┃╰━╯┃╰╯┃┃┃ ╰━━━┻━━╯╰╯ """ , """╭━━━╮╱╱╱╱╱╱╭━╮ ┃╭━╮┃╱╱╱╱╱╱┃╭╯ ┃┃╱┃┣━━┳━━┳╯╰╮ ┃┃╱┃┃╭╮┃╭╮┣╮╭╯ ┃╰━╯┃╰╯┃╰╯┃┃┃ ╰━━━┻━━┻━━╯╰╯""" , """╭━━━╮╱╱╱╱╱╱╱╱╱╭━╮ ┃╭━╮┃╱╱╱╱╱╱╱╱╱┃╭╯ ┃┃╱┃┣━━┳━━┳━━┳╯╰╮ ┃┃╱┃┃╭╮┃╭╮┃╭╮┣╮╭╯ ┃╰━╯┃╰╯┃╰╯┃╰╯┃┃┃ ╰━━━┻━━┻━━┻━━╯╰╯""" , """╭━━━╮╱╱╱╱╱╱╱╱╱╱╱╱╭━╮ ┃╭━╮┃╱╱╱╱╱╱╱╱╱╱╱╱┃╭╯ ┃┃╱┃┣━━┳━━┳━━┳━━┳╯╰╮ ┃┃╱┃┃╭╮┃╭╮┃╭╮┃╭╮┣╮╭╯ ┃╰━╯┃╰╯┃╰╯┃╰╯┃╰╯┃┃┃ ╰━━━┻━━┻━━┻━━┻━━╯╰╯""" , """╭━━━╮╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╭━╮ ┃╭━╮┃╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱┃╭╯ ┃┃╱┃┣━━┳━━┳━━┳━━┳━━┳╯╰╮ ┃┃╱┃┃╭╮┃╭╮┃╭╮┃╭╮┃╭╮┣╮╭╯ ┃╰━╯┃╰╯┃╰╯┃╰╯┃╰╯┃╰╯┃┃┃ ╰━━━┻━━┻━━┻━━┻━━┻━━╯╰╯""" , """╭━━━╮╱╱╱╱╱╱╱╱╱╱╱╱╭━╮ ┃╭━╮┃╱╱╱╱╱╱╱╱╱╱╱╱┃╭╯ ┃┃╱┃┣━━┳━━┳━━┳━━┳╯╰╮ ┃┃╱┃┃╭╮┃╭╮┃╭╮┃╭╮┣╮╭╯ ┃╰━╯┃╰╯┃╰╯┃╰╯┃╰╯┃┃┃ ╰━━━┻━━┻━━┻━━┻━━╯╰╯""" , """╭━━━╮╱╱╱╱╱╱╱╱╱╭━╮ ┃╭━╮┃╱╱╱╱╱╱╱╱╱┃╭╯ ┃┃╱┃┣━━┳━━┳━━┳╯╰╮ ┃┃╱┃┃╭╮┃╭╮┃╭╮┣╮╭╯ ┃╰━╯┃╰╯┃╰╯┃╰╯┃┃┃ ╰━━━┻━━┻━━┻━━╯╰╯""" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 7]) @borg.on(admin_cmd(pattern='g1 ?(.*)')) async def payf(event): paytext = event.pattern_match.group(1) pay = ( """{} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {}""" .format(paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1)) await event.edit(pay) @borg.on(admin_cmd(pattern='uff ?(.*)')) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 13) animation_chars = ['U', 'Uf', 'Uff', 'Ufffff', 'Uffffff', 'Ufffffff', 'Uffffffff', 'Ufffffffff', 'Uffffffffff', 'Ufffffffffff', 'Uffffffffffff', 'Ufffffffffffff', 'Uffffffffffffff'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 13]) @borg.on(admin_cmd(pattern='ctext ?(.*)')) async def payf(event): paytext = event.pattern_match.group(1) pay = '{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}'.format(paytext * 8, paytext * 8, paytext * 2, paytext * 2, paytext * 2, paytext * 2, paytext * 2, paytext * 2, paytext * 2, paytext * 2, paytext * 8, paytext * 8) await event.edit(pay) @borg.on(admin_cmd(pattern='ftext ?(.*)')) async def payf(event): paytext = event.pattern_match.group(1) pay = '{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}'.format(paytext * 8, paytext * 8, paytext * 2, paytext * 2, paytext * 2, paytext * 6, paytext * 6, paytext * 2, paytext * 2, paytext * 2, paytext * 2, paytext * 2) await event.edit(pay) @borg.on(admin_cmd(outgoing=True, pattern='kf$(.*)')) async def _(event): r = random.randint(0, 3) logger.debug(r) if r == 0: await event.edit( """┏━━━┓ ┃┏━━┛ ┃┗━━┓ ┃┏━━┛ ┃┃ â”—â”›""" ) else: r == 1 await event.edit( """╭━━━╮ ┃╭━━╯ ┃╰━━╮ ┃╭━━╯ ┃┃ ╰╯""" ) @borg.on(admin_cmd(pattern='f (.*)')) async def payf(e): paytext = e.pattern_match.group(1) pay = '{}\n{}\n{}\n{}\n{}\n{}\n{}'.format(paytext * 5, paytext * 1, paytext * 1, paytext * 4, paytext * 1, paytext * 1, paytext * 1) await e.edit(pay) @borg.on(admin_cmd(pattern=f'loading$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 20) animation_chars = ['â–®', 'â–¯', 'â–¬', 'â–\xad', '‎'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 4]) @borg.on(admin_cmd(pattern=f'square$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 20) animation_chars = ['â—§', 'â—¨', 'â—§', 'â—¨', '‎'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 4]) @borg.on(admin_cmd(pattern=f'up$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 20) animation_chars = ['╹', 'â•»', '╹', 'â•»', '‎'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 4]) @borg.on(admin_cmd(pattern=f'round$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 20) animation_chars = ['âš«', '⬤', 'â—\x8f', '∘', '‎'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 4]) @borg.on(admin_cmd(pattern=f'hart$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.5 animation_ttl = range(0, 20) animation_chars = ['🖤', 'â\x9d¤ï¸\x8f', '🖤', 'â\x9d¤ï¸\x8f', '‎'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 4]) @borg.on(admin_cmd(pattern=f'anim$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 11) animation_chars = ['ðŸ˜\x81', '😧', '😡', '😢', '‎**HellBoy Bolte Public**', 'ðŸ˜\x81', '😧', '😡', '😢', '[PAPA HERE](https://t.me/Kraken_The_BadASS)', '__**Good to See you Guys....**__'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 11]) @borg.on(admin_cmd(pattern=f'fnl$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 2 animation_ttl = range(0, 6) animation_chars = ['ðŸ˜\x81ðŸ\x8f¿', 'ðŸ˜\x81ðŸ\x8f¾', 'ðŸ˜\x81ðŸ\x8f½', 'ðŸ˜\x81ðŸ\x8f¼', '‎ðŸ˜\x81', '**Good to See you Guys....**'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 6]) @borg.on(admin_cmd(pattern=f'monkey$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 2 animation_ttl = range(0, 6) animation_chars = ['ðŸ\x90µ', '🙉', '🙈', '🙊', '🖕‎ðŸ\x90µðŸ–•', '**Good to See you Guys....**'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 6]) @borg.on(admin_cmd(pattern=f'herber$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 2 animation_ttl = range(0, 11) animation_chars = [ """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 10% ●○○○○○○○○○ **🔹cpu core** **🔹core_usage:** 5.9% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 8.13GB **🔹used:** 33.77GB **🔹total:** 60.0GB ●●●●●●●○○○ **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 158.98GB **🔹recv:** 146.27GB **🔹sent_packets:** 84518799 **🔹recv_packets:** 159720314 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 30% ●●●○○○○○○○ **🔹cpu core** **🔹core_usage:** 20.4% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 7.18GB **🔹used:** 28.26GB **🔹total:** 60.0GB ●●●●●●●●●● **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 146.27GB **🔹recv:** 124.33GB **🔹sent_packets:** 54635686 **🔹recv_packets:** 143565654 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 60% ●●●●●●○○○○ **🔹cpu core** **🔹core_usage:** 60.9% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 6.52GB **🔹used:** 35.78GB **🔹total:** 60.0GB ●●●○○○○○○○ **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 124.33GB **🔹recv:** 162.48GB **🔹sent_packets:** 25655655 **🔹recv_packets:** 165289456 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 100% ●●●●●●●●●● **🔹cpu core** **🔹core_usage:** 100.0% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 9.81GB **🔹used:** 30.11GB **🔹total:** 60.0GB ●●●●●●●●●● **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 162.48GB **🔹recv:** 175.75GB **🔹sent_packets:** 56565435 **🔹recv_packets:** 135345655 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 70% ●●●●●●●○○○ **🔹cpu core** **🔹core_usage:** 80.4% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 5.76GB **🔹used:** 29.35GB **🔹total:** 60.0GB ●●●●●●●○○○ **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 175.75GB **🔹recv:** 118.55GB **🔹sent_packets:** 36547698 **🔹recv_packets:** 185466554 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 60% ●●●●●●○○○○ **🔹cpu core** **🔹core_usage:** 62.9% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 8.23GB **🔹used:** 33.32GB **🔹total:** 60.0GB ●●●●●●○○○○ **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 118.55GB **🔹recv:** 168.65GB **🔹sent_packets:** 24786554 **🔹recv_packets:** 156745865 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 30% ●●●○○○○○○○ **🔹cpu core** **🔹core_usage:** 30.6% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 9.75GB **🔹used:** 36.54GB **🔹total:** 60.0GB ●●●●●●●●●● **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 168.65GB **🔹recv:** 128.35GB **🔹sent_packets:** 56565435 **🔹recv_packets:** 1475823589 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 10% ●○○○○○○○○○ **🔹cpu core** **🔹core_usage:** 10.2% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 10.20GB **🔹used:** 25.40GB **🔹total:** 60.0GB ●●●●●●○○○○ **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 128.35GB **🔹recv:** 108.31GB **🔹sent_packets:** 54635686 **🔹recv_packets:** 157865426 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 100% ●●●●●●●●●● **🔹cpu core** **🔹core_usage:** 100.0% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 5.25GB **🔹used:** 31.14GB **🔹total:** 60.0GB ●●●●●●●●●● **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 108.31GB **🔹recv:** 167.17GB **🔹sent_packets:** 84518799 **🔹recv_packets:** 124575356 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 70% ●●●●●●●○○○ **🔹cpu core** **🔹core_usage:** 76.2% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 8.01GB **🔹used:** 33.27GB **🔹total:** 60.0GB ●●●○○○○○○○ **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 167.17GB **🔹recv:** 158.98GB **🔹sent_packets:** 36547698 **🔹recv_packets:** 165455856 **===================** """ ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 11]) @borg.on(admin_cmd(pattern=f'hand$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 14) animation_chars = ['👈', '👉', 'â˜\x9dï¸\x8f', '👆', '🖕', '👇', '✌ï¸\x8f', '🤞', '🖖', '🤘', '🤙', 'ðŸ–\x90ï¸\x8f', '👌'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 14]) @borg.on(admin_cmd(pattern=f'gsg$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 13) animation_chars = ['🔟', '9ï¸\x8f⃣', '8ï¸\x8f⃣', '7ï¸\x8f⃣', '6ï¸\x8f⃣', '5ï¸\x8f⃣', '4ï¸\x8f⃣', '3ï¸\x8f⃣', '2ï¸\x8f⃣', '1ï¸\x8f⃣', '0ï¸\x8f⃣', '🆘'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 13]) @borg.on(admin_cmd(pattern='theart$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 54) animation_chars = ['â\x9d¤ï¸\x8f', '🧡', '💛', '💚', '💙', '💜', '🖤', '💘', 'ðŸ’\x9d', 'â\x9d¤ï¸\x8f', '🧡', '💛', '💚', '💙', '💜', '🖤', '💘', 'ðŸ’\x9d'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 18]) @borg.on(admin_cmd(pattern='fdance')) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 5) await event.edit('Connecting..') animation_chars = [ """⠀⠀⠀⣶⣿⣶ ⠀⠀⠀⣿⣿⣿⣀ ⠀⣀⣿⣿⣿⣿⣿⣿ ⣶⣿⠛⣭⣿⣿⣿⣿ ⠛⠛⠛⣿⣿⣿⣿⠿ ⠀⠀⠀⠀⣿⣿⣿ ⠀⠀⣀⣭⣿⣿⣿⣿⣀ ⠀⠤⣿⣿⣿⣿⣿⣿⠉ ⠀⣿⣿⣿⣿⣿⣿⠉ ⣿⣿⣿⣿⣿⣿ ⣿⣿⣶⣿⣿ ⠉⠛⣿⣿⣶⣤ ⠀⠀⠉⠿⣿⣿⣤ ⠀⠀⣀⣤⣿⣿⣿ ⠀⠒⠿⠛⠉⠿⣿ ⠀⠀⠀⠀⠀⣀⣿⣿ ⠀⠀⠀⠀⣶⠿⠿⠛ """ , """⠀⠀⠀⠀⠀⠀⠀⠀⠀⣤⣤ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿ ⠀⠀⣶⠀⠀⣀⣤⣶⣤⣉⣿⣿⣤⣀ ⠤⣤⣿⣤⣿⠿⠿⣿⣿⣿⣿⣿⣿⣿⣿⣀ ⠀⠛⠿⠀⠀⠀⠀⠉⣿⣿⣿⣿⣿⠉⠛⠿⣿⣤ ⠀⠀⠀⠀⠀⠀⠀⠀⠿⣿⣿⣿⠛⠀⠀⠀⣶⠿ ⠀⠀⠀⠀⠀⠀⠀⠀⣀⣿⣿⣿⣿⣤⠀⣿⠿ ⠀⠀⠀⠀⠀⠀⠀⣶⣿⣿⣿⣿⣿⣿⣿⣿ ⠀⠀⠀⠀⠀⠀⠀⠿⣿⣿⣿⣿⣿⠿⠉⠉ ⠀⠀⠀⠀⠀⠀⠀⠉⣿⣿⣿⣿⠿ ⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⠉ ⠀⠀⠀⠀⠀⠀⠀⠀⣛⣿⣭⣶⣀ ⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⣿⣿ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⠉⠛⣿ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⠀⠀⣿⣿ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣉⠀⣶⠿ ⠀⠀⠀⠀⠀⠀⠀⠀⣶⣿⠿ ⠀⠀⠀⠀⠀⠀⠀⠛⠿⠛ """ , """⠀⠀⠀⠀⠀⠀⠀⠀⠀⣤⣶ ⠀⠀⠀⠀⠀⣀⣀⠀⣶⣿⣿⠶ ⣶⣿⠿⣿⣿⣿⣿⣿⣿⣿⣿⣤⣤ ⠀⠉⠶⣶⣀⣿⣿⣿⣿⣿⣿⣿⠿⣿⣤⣀ ⠀⠀⠀⣿⣿⠿⠉⣿⣿⣿⣿⣭⠀⠶⠿⠿ ⠀⠀⠛⠛⠿⠀⠀⣿⣿⣿⣉⠿⣿⠶ ⠀⠀⠀⠀⠀⣤⣶⣿⣿⣿⣿⣿ ⠀⠀⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⠒ ⠀⠀⠀⠀⣀⣿⣿⣿⣿⣿⣿⣿ ⠀⠀⠀⠀⠀⣿⣿⣿⠛⣭⣭⠉ ⠀⠀⠀⠀⠀⣿⣿⣭⣤⣿⠛ ⠀⠀⠀⠀⠀⠛⠿⣿⣿⣿⣭ ⠀⠀⠀⠀⠀⠀⠀⣿⣿⠉⠛⠿⣶⣤ ⠀⠀⠀⠀⠀⠀⣀⣿⠀⠀⣶⣶⠿⠿⠿ ⠀⠀⠀⠀⠀⠀⣿⠛ ⠀⠀⠀⠀⠀⠀⣭⣶ """ , """⠀⠀⠀⠀⠀⠀⣶⣿⣶ ⠀⠀⠀⣤⣤⣤⣿⣿⣿ ⠀⠀⣶⣿⣿⣿⣿⣿⣿⣿⣶ ⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⣿ ⠀⠀⣿⣉⣿⣿⣿⣿⣉⠉⣿⣶ ⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⠿⣿ ⠀⣤⣿⣿⣿⣿⣿⣿⣿⠿⠀⣿⣶ ⣤⣿⠿⣿⣿⣿⣿⣿⠿⠀⠀⣿⣿⣤ ⠉⠉⠀⣿⣿⣿⣿⣿⠀⠀⠒⠛⠿⠿⠿ ⠀⠀⠀⠉⣿⣿⣿⠀⠀⠀⠀⠀⠀⠉ ⠀⠀⠀⣿⣿⣿⣿⣿⣶ ⠀⠀⠀⠀⣿⠉⠿⣿⣿ ⠀⠀⠀⠀⣿⣤⠀⠛⣿⣿ ⠀⠀⠀⠀⣶⣿⠀⠀⠀⣿⣶ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⣭⣿⣿ ⠀⠀⠀⠀⠀⠀⠀⠀⣤⣿⣿⠉ """ , """⠀⠀⠀⠀⠀⠀⣤⣶⣶ ⠀⠀⠀⠀⠀⠀⣿⣿⣿⣿⣀⣀ ⠀⠀⠀⠀⠀⣀⣶⣿⣿⣿⣿⣿⣿ ⣤⣶⣀⠿⠶⣿⣿⣿⠿⣿⣿⣿⣿ ⠉⠿⣿⣿⠿⠛⠉⠀⣿⣿⣿⣿⣿ ⠀⠀⠉⠀⠀⠀⠀⠀⠀⣿⣿⣿⣿⣤⣤ ⠀⠀⠀⠀⠀⠀⠀⣤⣶⣿⣿⣿⣿⣿⣿ ⠀⠀⠀⠀⠀⣀⣿⣿⣿⣿⣿⠿⣿⣿⣿⣿ ⠀⠀⠀⠀⣀⣿⣿⣿⠿⠉⠀⠀⣿⣿⣿⣿ ⠀⠀⠀⠀⣿⣿⠿⠉⠀⠀⠀⠀⠿⣿⣿⠛ ⠀⠀⠀⠀⠛⣿⣿⣀⠀⠀⠀⠀⠀⣿⣿⣀ ⠀⠀⠀⠀⠀⣿⣿⣿⠀⠀⠀⠀⠀⠿⣿⣿ ⠀⠀⠀⠀⠀⠉⣿⣿⠀⠀⠀⠀⠀⠀⠉⣿ ⠀⠀⠀⠀⠀⠀⠀⣿⠀⠀⠀⠀⠀⠀⣀⣿ ⠀⠀⠀⠀⠀⠀⣀⣿⣿ ⠀⠀⠀⠀⠤⣿⠿⠿⠿ """ ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 5]) @borg.on(admin_cmd(pattern=f'snake$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 27) await event.edit('snake..') animation_chars = [ """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◻️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◻️◻️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◻️◻️◻️️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◻️◻️◻️◻️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """‎◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◼️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◻️◻️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◼️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◻️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◼️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◼️◼️◻️◻️ ◻️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◼️◼️◻️◻️ ◻️◼️◼️◻️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◼️◼️◻️◻️ ◻️◼️◻️◻️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◼️◼️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◻️◼️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◼️◻️◼️◻️ ◻️◻️◻️◻️◻️ ◻️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 27]) @borg.on(admin_cmd(pattern=f'human$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.5 animation_ttl = range(0, 16) await event.edit('human...') animation_chars = [ """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛🚗 ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛🚗⬛ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛🚗⬛⬛ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🚗⬛⬛⬛ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛🚗⬛⬛⬛⬛ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛🚗⬛⬛⬛⬛⬛ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ 🚗⬛⬛⬛⬛⬛⬛ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬜⬜⬜😊⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛😊⬛⬛⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬛⬛⬜⬛⬛⬛ ⬛⬛⬜⬛⬜⬛⬛ ⬛⬛⬜⬛⬜⬛⬛ ⬛⬛⬜⬛⬜⬛⬛ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛😊⬛⬛⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬛⬛⬜⬛⬛⬛ ⬛⬛⬜⬛⬜⬛⬛ ⬛⬛⬜⬛⬛⬜⬛ ⬛⬛⬜⬛⬛⬛⬛ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛😊⬛⬛⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬛⬛⬜⬛⬛⬛ ⬛⬛⬜⬛⬜⬛⬛ ⬛⬜⬛⬛⬛⬜⬛ ⬛⬛⬛⬛⬛⬛⬛ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬜⬛😊⬛⬜⬛ ⬛⬛⬜⬜⬜⬛⬛ ⬛⬛⬛⬜⬛⬛⬛ ⬛⬛⬜⬛⬜⬛⬛ ⬛⬜⬛⬛⬛⬜⬛ ⬛⬛⬛⬛⬛⬛⬛ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛😊⬛⬛⬛ ⬛⬛⬜⬜⬜⬛⬛ ⬛⬜⬛⬜⬛⬜⬛ ⬛⬛⬜⬛⬜⬛⬛ ⬛⬛⬜⬛⬜⬛⬛ ⬛⬛⬜⬛⬜⬛⬛ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬜⬜⬜😊⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 16]) @borg.on(admin_cmd(pattern=f'mc$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 28) await event.edit('mc..') animation_chars = [ """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◻️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◻️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◻️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◻️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◻️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◻️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◻️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◻️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◻️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◻️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◻️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◻️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◻️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◻️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◻️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◻️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◻️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◻️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◻️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◻️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◻️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◻️◼️◻️◼️ ◼️◼️◼️◼️◼️ ◼️◻️◻️◻️◼️ ◼️◼️◼️◼️◼️""" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 28]) @borg.on(admin_cmd(pattern='virus$')) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 30) await event.edit('Injecting virus....') animation_chars = [ """🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """◼️◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """◼️◼️◼️️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """◼️◼️◼️◼️🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """‎◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️◼️""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️ ◼️🔴🔵🌕♓♎⛎◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️🔴🔵🌕♓♎⛎◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️ ◼️◼️◼️◼️ ◼️◼️◼️◼️ ◼️◼️◼️◼️""" , """◼️◼️◼️ ◼️◼️◼️ ◼️◼️◼️""", """◼️◼️ ◼️◼️""", 'â—¼ï¸\x8f'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 30]) @borg.on(admin_cmd(pattern='repe$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.2 animation_ttl = range(0, 30) await event.edit('repe') animation_chars = ['**r**', '**ra**', '**rap**', '**rape**', '**rape_**', '**rape_t**', '**rape_tr**', '**rape_tra**', '**rape_trai**', '**rape_train**', '**ape_train🚅**', '**pe_train🚅🚃🚃**', '**e_train🚅🚃🚃🚃**', '**_train🚅🚃🚃🚃🚃**', '**train🚅🚃🚃🚃🚃🚃**', '**rain🚅🚃🚃🚃🚃🚃🚃**', '**ain🚅🚃🚃🚃🚃🚃🚃🚃**', '**in🚅🚃🚃🚃🚃🚃🚃🚃🚃**', '**n🚅🚃🚃🚃🚃🚃🚃🚃🚃🚃**', '🚅🚃🚃🚃🚃🚃🚃🚃🚃🚃', '🚃🚃🚃🚃🚃🚃🚃🚃🚃', '🚃🚃🚃🚃🚃🚃🚃🚃', '🚃🚃🚃🚃🚃🚃🚃', '🚃🚃🚃🚃🚃🚃', '🚃🚃🚃🚃🚃', '🚃🚃🚃🚃', '🚃🚃🚃', '🚃🚃', '🚃', '**rApEd**'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 30]) @borg.on(admin_cmd(pattern=f'isro$')) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 24) await event.edit('Connecting..') animation_chars = [ """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ 🚀⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛🚀⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛🚀⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🚀⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛🚀⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛🚀 ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """🛸⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ 🛸⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛🛸⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛🛸⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛🛸⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🛸⬛⬛""" , """⬛⬛⬛🛸⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🛸⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🛸⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🛸⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🛸⬛⬛ ⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🛸⬛🚶‍♂️ ⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🛸🚶‍♂️⬛ ⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ 👽⬛⬛🛸🚶‍♂️⬛ ⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛👽⬛🛸🚶‍♂️⬛ ⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛👽🛸🚶‍♂️⬛ ⬜⬜⬜⬜⬜⬜""" , '__Signal Lost....__'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 24]) @borg.on(admin_cmd(pattern=f'nakal$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.5 animation_ttl = range(0, 6) await event.edit('nakal') animation_chars = [ """`⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀ ⠀⣴⠿⠏⠀⠀⠀⠀⠀ ⢳⡀⠀⡏⠀⠀⠀ ⠀⢷ ⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀⣧⠀⢸⠀⠀⠀ â € ⡇ ⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲⣿ ⣸ Nikal ⡇ ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀⠀ ⣿ ⢹⠀ ⡇ ⠙⢿⣯⠄⠀⠀⠀__⠀⠀⡿ ⠀⡇⠀⠀⠀⠀ ⡼ ⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀ ⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀ ⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀ ⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`""" , """`⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀ ⠀⣴⠿⠏⠀⠀⠀⠀⠀ ⠀⢳⡀⠀⡏⠀⠀⠀ ⠀⢷ ⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀⣧⠀⢸⠀⠀⠀ ⡇ ⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲⣿ ⣸ Lavde ⡇ ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀⠀ ⣿ ⢹⠀ ⡇ ⠙⢿⣯⠄⠀⠀|__|⠀⠀⡿ ⠀⡇⠀⠀⠀⠀ ⡼ ⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀ ⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀ ⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀ ⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`""" , """`⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀ ⠀⣴⠿⠏⠀⠀ ⠀⢳⡀⠀⡏⠀⠀ ⠀⢷ ⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀⣧⠀⢸⠀⠀⠀⠀ ⡇ ⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲⣿ ⣸ Pehli ⡇ ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀⠀ ⣿ ⢹⠀ ⡇ ⠙⢿⣯⠄⠀⠀(P)⠀⠀⡿ ⠀⡇⠀⠀⠀⠀ ⡼ ⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀ ⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀ ⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀ ⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`""" , """`⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀ ⠀⣴⠿⠏⠀⠀ ⠀⢳⡀⠀⡏⠀⠀ ⠀⢷ ⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀⣧⠀⢸⠀ â € ⡇ ⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲⣿ ⣸ Fursat ⡇ ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀ ⣿ ⢹⠀ ⡇ ⠙⢿⣯⠄⠀⠀⠀__ ⠀⠀⡿ ⠀⡇⠀⠀⠀⠀ ⡼ ⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀ ⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀ ⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀ ⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`""" , """`⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀ ⠀⣴⠿⠏⠀⠀⠀⠀⠀ ⢳⡀⠀⡏⠀⠀ ⠀⢷ ⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀⣧⠀⢸⠀⠀ â € ⡇ ⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲⣿ ⣸ Meeee ⡇ ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀⠀ ⣿ ⢹⠀ ⡇ ⠙⢿⣯⠄⠀⠀|__| ⠀⡿ ⠀⡇⠀⠀⠀⠀ ⡼ ⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀ ⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀ ⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀ ⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`""" , """`⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀ ⠀⣴⠿⠏⠀⠀⠀⠀⠀ ⠀⢳⡀⠀⡏⠀⠀ ⠀⢷ ⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀⣧⠀⢸⠀ â € ⡇ ⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲⣿ ⣸ Nikal ⡇ ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀ ⣿ ⢹⠀ ⡇ ⠙⢿⣯⠄⠀⠀lodu⠀⠀⡿ ⠀⡇⠀⠀⠀⠀ ⡼ ⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀ ⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀ ⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀ ⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`""" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 6]) @borg.on(admin_cmd(pattern=f'music$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 1.5 animation_ttl = range(0, 11) await event.edit('starting player...') animation_chars = [ """⬤⬤⬤ 81% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:00** ▱▱▱▱▱▱▱▱▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `▶️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤⬤ 81% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:01** ▰▱▱▱▱▱▱▱▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤⬤ 81% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:02** ▰▰▱▱▱▱▱▱▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤⬤ 81% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:03** ▰▰▰▱▱▱▱▱▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀ [Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:04** ▰▰▰▰▱▱▱▱▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:05** ▰▰▰▰▱▱▱▱▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:06** ▰▰▰▰▰▰▱▱▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:07** ▰▰▰▰▰▰▰▱▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:08** ▰▰▰▰▰▰▰▰▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:09** â–°â–°â–°â–°â–°â–°â–°â–°â–°â–± **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:10** â–°â–°â–°â–°â–°â–°â–°â–°â–°â–° **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏺️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 11]) @borg.on(admin_cmd(pattern=f'squ$', outgoing=True)) async def _(event): if event.fwd_from: return await event.edit( """╔═══════════════════╗ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(6) @borg.on(admin_cmd(pattern='star$', outgoing=True)) async def _(event): if event.fwd_from: return deq = deque(list('🦋✨🦋✨🦋✨🦋✨')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='boxs')) async def _(event): if event.fwd_from: return deq = deque(list('🟥🟧🟨🟩🟦🟪🟫⬛⬜')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern=f'rain$', outgoing=True)) async def _(event): if event.fwd_from: return deq = deque(list('🌬â˜\x81ï¸\x8f🌩🌨🌧🌦🌥⛅🌤')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='clol$')) async def _(event): if event.fwd_from: return deq = deque(list('🤔ðŸ§\x90🤨🤔ðŸ§\x90🤨')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='odra$')) async def _(event): if event.fwd_from: return deq = deque(list('🚶ðŸ\x8fƒðŸš¶ðŸ\x8fƒðŸš¶ðŸ\x8fƒðŸš¶ðŸ\x8fƒ')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='deploy$')) async def _(event): if event.fwd_from: return animation_interval = 3 animation_ttl = range(0, 12) await event.edit('Deploying...') animation_chars = ['**Heroku Connecting To Latest Github Build **', f'**Build started by user** @Kraken_The_BadASS', f'**Deploy** `535a74f0` for user by my master!!', '**Restarting Heroku Server...**', '**State changed from up to starting**', '**Stopping all processes with SIGTERM**', '**Process exited with** `status 143`', '**Starting process with command** `python3 -m stdborg`', '**State changed from starting to up**', '__INFO:Userbot:Logged in as 557667062__', '__INFO:Userbot:Successfully loaded all plugins__', '**Build Succeeded**'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 12]) @borg.on(admin_cmd(pattern='dump ?(.*)')) async def _(message): try: obj = message.pattern_match.group(1) if len(obj) != 3: raise IndexError inp = ' '.join(obj) except IndexError: inp = '🥞 🎂 ðŸ\x8d«' u, t, g, o, s, n = inp.split( ), '🗑', '<(^_^ <)', '(> ^_^)>', 'â\xa0€ ', '\n' h = [(u[0], u[1], u[2]), (u[0], u[1], ''), (u[0], '', '')] for something in reversed([y for y in ([''.join(x) for x in (f + (s, g, s + s * f.count(''), t), f + (g, s * 2 + s * f.count(''), t), f[:i] + (o, f[i], s * 2 + s * f.count(''), t), f[:i] + (s + s * f.count(''), o, f[i], s, t), f[:i] + (s * 2 + s * f.count(''), o, f[i], t), f[:i ] + (s * 3 + s * f.count(''), o, t), f[:i] + (s * 3 + s * f.count( ''), g, t))] for i, f in enumerate(reversed(h)))]): for something_else in something: await asyncio.sleep(0.3) try: await message.edit(something_else) except errors.MessageIdInvalidError: return @borg.on(admin_cmd(pattern='fleaveme$')) async def _(event): animation_interval = 1 animation_ttl = range(0, 10) animation_chars = ['⬛⬛⬛\n⬛⬛⬛\n⬛⬛⬛', '⬛⬛⬛\n⬛🔄⬛\n⬛⬛⬛', """⬛⬆️⬛ ⬛🔄⬛ ⬛⬛⬛""", """⬛⬆️↗️ ⬛🔄⬛ ⬛⬛⬛""", """⬛⬆️↗️ ⬛🔄➡️ ⬛⬛⬛""", """⬛⬆️↗️ ⬛🔄➡️ ⬛⬛↘️""", """⬛⬆️↗️ ⬛🔄➡️ ⬛⬇️↘️""", """⬛⬆️↗️ ⬛🔄➡️ ↙️⬇️↘️""", """⬛⬆️↗️ ⬅️🔄➡️ ↙️⬇️↘️""", """↖️⬆️↗️ ⬅️🔄➡️ ↙️⬇️↘️"""] if event.fwd_from: return await event.edit('fleaveme....') await asyncio.sleep(2) for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 10]) @borg.on(admin_cmd(pattern='loveu', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.5 animation_ttl = range(0, 70) await event.edit('loveu') animation_chars = ['😀', '👩â€\x8d🎨', 'ðŸ˜\x81', '😂', '🤣', '😃', '😄', '😅', '😊', '☺', '🙂', '🤔', '🤨', 'ðŸ˜\x90', '😑', '😶', '😣', '😥', '😮', 'ðŸ¤\x90', '😯', '😴', '😔', '😕', '☹', 'ðŸ™\x81', '😖', '😞', '😟', '😢', 'ðŸ˜\xad', '🤯', '💔', 'â\x9d¤', 'i Love Youâ\x9d¤' ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 35]) @borg.on(admin_cmd(pattern=f'plane', outgoing=True)) async def _(event): if event.fwd_from: retun await event.edit('✈-------------') await event.edit('-✈------------') await event.edit('--✈-----------') await event.edit('---✈----------') await event.edit('----✈---------') await event.edit('-----✈--------') await event.edit('------✈-------') await event.edit('-------✈------') await event.edit('--------✈-----') await event.edit('---------✈----') await event.edit('----------✈---') await event.edit('-----------✈--') await event.edit('------------✈-') await event.edit('-------------✈') await asyncio.sleep(3) await event.delete() @borg.on(admin_cmd(pattern='pulis')) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 12) await event.edit('Pulis') animation_chars = [ """🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵""" , """🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴""" , """🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵""" , """🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴""" , """🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵""" , """🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴""" , """🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵""" , """🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴""" , """🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵""" , """🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴""" , """🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵""" , f'{DEFAULTUSER} **Police iz Here**'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 12]) @borg.on(admin_cmd(pattern=f'jio$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 19) await event.edit('jio network boosting...') animation_chars = ['`Connecting To JIO NETWORK ....`', '`â–ˆ â–‡ â–† â–… â–„ â–‚ â–\x81`', '`â–’ â–‡ â–† â–… â–„ â–‚ â–\x81`', '`â–’ â–’ â–† â–… â–„ â–‚ â–\x81`', '`â–’ â–’ â–’ â–… â–„ â–‚ â–\x81`', '`â–’ â–’ â–’ â–’ â–„ â–‚ â–\x81`', '`â–’ â–’ â–’ â–’ â–’ â–‚ â–\x81`', '`â–’ â–’ â–’ â–’ â–’ â–’ â–\x81`', '`â–’ â–’ â–’ â–’ â–’ â–’ â–’`', '*Optimising JIO NETWORK...*', '`â–’ â–’ â–’ â–’ â–’ â–’ â–’`', '`â–\x81 â–’ â–’ â–’ â–’ â–’ â–’`', '`â–\x81 â–‚ â–’ â–’ â–’ â–’ â–’`', '`â–\x81 â–‚ â–„ â–’ â–’ â–’ â–’`', '`â–\x81 â–‚ â–„ â–… â–’ â–’ â–’`', '`â–\x81 â–‚ â–„ â–… â–† â–’ â–’`', '`â–\x81 â–‚ â–„ â–… â–† â–‡ â–’`', '`â–\x81 â–‚ â–„ â–… â–† â–‡ â–ˆ`', '**JIO NETWORK Boosted....**'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 19]) @borg.on(admin_cmd(pattern=f'solarsystem', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.1 animation_ttl = range(0, 80) await event.edit('solarsystem') animation_chars = [ """`◼️◼️◼️◼️◼️ ◼️◼️◼️◼️☀ ◼️◼️🌎◼️◼️ 🌕◼️◼️◼️◼️ ◼️◼️◼️◼️◼️`""" , """`◼️◼️◼️◼️◼️ 🌕◼️◼️◼️◼️ ◼️◼️🌎◼️◼️ ◼️◼️◼️◼️☀ ◼️◼️◼️◼️◼️`""" , """`◼️🌕◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️🌎◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️☀◼️`""" , """`◼️◼️◼️🌕◼️ ◼️◼️◼️◼️◼️ ◼️◼️🌎◼️◼️ ◼️◼️◼️◼️◼️ ◼️☀◼️◼️◼️`""" , """`◼️◼️◼️◼️◼️ ◼️◼️◼️◼️🌕 ◼️◼️🌎◼️◼️ ☀◼️◼️◼️◼️ ◼️◼️◼️◼️◼️`""" , """`◼️◼️◼️◼️◼️ ☀◼️◼️◼️◼️ ◼️◼️🌎◼️◼️ ◼️◼️◼️◼️🌕 ◼️◼️◼️◼️◼️`""" , """`◼️☀◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️🌎◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️🌕◼️`""" , """`◼️◼️◼️☀◼️ ◼️◼️◼️◼️◼️ ◼️◼️🌎◼️◼️ ◼️◼️◼️◼️◼️ ◼️🌕◼️◼️◼️`""" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 8]) @borg.on(admin_cmd(pattern='lul$')) async def _(event): if event.fwd_from: return deq = deque(list('😂🤣😂🤣😂🤣')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='nothappy$')) async def _(event): if event.fwd_from: return deq = deque(list('ðŸ˜\x81☹ï¸\x8fðŸ˜\x81☹ï¸\x8fðŸ˜\x81☹ï¸\x8fðŸ˜\x81') ) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(outgoing=True, pattern='clock$')) async def _(event): if event.fwd_from: return deq = deque(list('🕙🕘🕗🕖🕕🕔🕓🕒🕑ðŸ•\x90🕛')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='muah$')) async def _(event): if event.fwd_from: return deq = deque(list('😗😙😚😚😘')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='heart$')) async def _(event): if event.fwd_from: return deq = deque(list('â\x9d¤ï¸\x8f🧡💛💚💙💜🖤')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='gym$', outgoing=True)) async def _(event): if event.fwd_from: return deq = deque(list( 'ðŸ\x8fƒâ€\x8dðŸ\x8f‹â€\x8d🤸â€\x8dðŸ\x8fƒâ€\x8dðŸ\x8f‹â€\x8d🤸â€\x8dðŸ\x8fƒâ€\x8dðŸ\x8f‹â€\x8d🤸â€\x8d' )) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern=f'earth$', outgoing=True)) async def _(event): if event.fwd_from: return deq = deque(list('ðŸŒ\x8fðŸŒ\x8d🌎🌎ðŸŒ\x8dðŸŒ\x8fðŸŒ\x8d🌎')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(outgoing=True, pattern='moon$')) async def _(event): if event.fwd_from: return deq = deque(list('🌗🌘🌑🌒🌓🌔🌕🌖')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='candy$')) async def _(event): if event.fwd_from: return deq = deque(list( 'ðŸ\x8d¦ðŸ\x8d§ðŸ\x8d©ðŸ\x8dªðŸŽ‚ðŸ\x8d°ðŸ§\x81ðŸ\x8d«ðŸ\x8d¬ðŸ\x8d\xad' )) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern=f'smoon$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.1 animation_ttl = range(0, 101) await event.edit('smoon..') animation_chars = [ """🌗🌗🌗🌗🌗 🌓🌓🌓🌓🌓 🌗🌗🌗🌗🌗 🌓🌓🌓🌓🌓 🌗🌗🌗🌗🌗""" , """🌘🌘🌘🌘🌘 🌔🌔🌔🌔🌔 🌘🌘🌘🌘🌘 🌔🌔🌔🌔🌔 🌘🌘🌘🌘🌘""" , """🌑🌑🌑🌑🌑 🌕🌕🌕🌕🌕 🌑🌑🌑🌑🌑 🌕🌕🌕🌕🌕 🌑🌑🌑🌑🌑""" , """🌒🌒🌒🌒🌒 🌖🌖🌖🌖🌖 🌒🌒🌒🌒🌒 🌖🌖🌖🌖🌖 🌒🌒🌒🌒🌒""" , """🌓🌓🌓🌓🌓 🌗🌗🌗🌗🌗 🌓🌓🌓🌓🌓 🌗🌗🌗🌗🌗 🌓🌓🌓🌓🌓""" , """🌔🌔🌔🌔🌔 🌘🌘🌘🌘🌘 🌔🌔🌔🌔🌔 🌘🌘🌘🌘🌘 🌔🌔🌔🌔🌔""" , """🌕🌕🌕🌕🌕 🌑🌑🌑🌑🌑 🌕🌕🌕🌕🌕 🌑🌑🌑🌑🌑 🌕🌕🌕🌕🌕""" , """🌖🌖🌖🌖🌖 🌒🌒🌒🌒🌒 🌖🌖🌖🌖🌖 🌒🌒🌒🌒🌒 🌖🌖🌖🌖🌖""" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 8]) @borg.on(admin_cmd(pattern=f'tmoon$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.1 animation_ttl = range(0, 117) await event.edit('tmoon') animation_chars = ['🌗', '🌘', '🌑', '🌒', '🌓', '🌔', '🌕', '🌖', '🌗', '🌘', '🌑', '🌒', '🌓', '🌔', '🌕', '🌖', '🌗', '🌘', '🌑', '🌒', '🌓', '🌔', '🌕', '🌖', '🌗', '🌘', '🌑', '🌒', '🌓', '🌔', '🌕', '🌖'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 32]) @borg.on(admin_cmd(pattern=f'clown$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.5 animation_ttl = range(0, 16) animation_chars = ['COMMAND CREATE BY @Kraken_The_BadASS', '🤡ï¸\x8f', '🤡🤡', '🤡🤡🤡', '🤡🤡🤡🤡', '🤡🤡🤡🤡🤡', '🤡🤡🤡🤡🤡🤡', '🤡🤡🤡🤡🤡', '🤡🤡🤡🤡', '🤡🤡🤡', '🤡🤡', '🤡', 'You', 'You Are', 'You Are A', 'You Are A Clown 🤡'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 16]) @borg.on(admin_cmd(pattern='aheart$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 1.3 animation_ttl = range(0, 50) animation_chars = ['â\x9d¤ï¸\x8f', '🧡', '💛', '💚', '💙', '💜', '🖤', '💘', 'ðŸ’\x9d', '💔', 'â\x9d¤ï¸\x8f', '🧡', '💛', '💚', '💙', '💜', '🖤', '💘', 'ðŸ’\x9d', '💔'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 20])
import os import sys import logging from telethon import events import asyncio from userbot.utils import admin_cmd from userbot import ALIVE_NAME import random, re from userbot import CMD_HELP from collections import deque import importlib.util import random DEFAULTUSER = str(ALIVE_NAME) if ALIVE_NAME else 'Cat' @borg.on(admin_cmd(pattern='stupid$')) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 14) await event.edit('brain') animation_chars = [ 'YOᑌᖇ ᗷᖇᗩIᑎ âž¡ï¸\x8f ðŸ§\xa0\n\nðŸ§\xa0 <(^_^ <)🗑' , """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 🧠 <(^_^ <) 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 🧠 <(^_^ <) 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 🧠 <(^_^ <) 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 🧠 <(^_^ <) 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 🧠<(^_^ <) 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 (> ^_^)>🧠 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 (> ^_^)>🧠 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 (> ^_^)>🧠 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 (> ^_^)>🧠 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 (> ^_^)>🧠 🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 (> ^_^)>🧠🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 (> ^_^)>🗑""", """YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠 <(^_^ <)🗑"""] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 14]) @borg.on(admin_cmd(pattern=f'bombs$', outgoing=True)) async def _(event): if event.fwd_from: return await event.edit( """▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ """ ) await asyncio.sleep(0.5) await event.edit( """💣💣💣💣 ▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ """ ) await asyncio.sleep(0.5) await event.edit( """▪️▪️▪️▪️ 💣💣💣💣 ▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ """ ) await asyncio.sleep(0.5) await event.edit( """▪️▪️▪️▪️ ▪️▪️▪️▪️ 💣💣💣💣 ▪️▪️▪️▪️ ▪️▪️▪️▪️ """ ) await asyncio.sleep(0.5) await event.edit( """▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ 💣💣💣💣 ▪️▪️▪️▪️ """ ) await asyncio.sleep(0.5) await event.edit( """▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ 💣💣💣💣 """ ) await asyncio.sleep(1) await event.edit( """▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ 💥💥💥💥 """ ) await asyncio.sleep(0.5) await event.edit( """▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ 💥💥💥💥 💥💥💥💥 """ ) await asyncio.sleep(0.5) await event.edit( """▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ ▪️▪️▪️▪️ 😵😵😵😵 """ ) await asyncio.sleep(0.5) await event.edit('`RIP PLOXXX......`') await asyncio.sleep(2) @borg.on(admin_cmd(pattern=f'kill$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.7 animation_ttl = range(0, 12) await event.edit('ready to die dude.....') animation_chars = ['Fiiiiire', '( ・ิω・ิ)︻デâ•\x90一-->', '---->____________â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0' , '------>__________â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0' , '-------->â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0_________' , '---------->â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0_______' , '------------>â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0_____' , '-------------->â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0â\x81\xa0____' , '------------------>', '------>;(^。^)ノ', '( ̄ー ̄) DEAD', """`Targeted user killed by Headshot 😈.😈.😈.😈.😈.😈.😈......` '#Sad_Reacts_Online' """ ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 12]) @borg.on(admin_cmd(pattern='ding$')) async def _(event): animation_interval = 0.3 animation_ttl = range(0, 30) animation_chars = ['🔴⬛⬛⬜⬜\n⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜', """⬜⬜⬛⬜⬜ ⬜⬛⬜⬜⬜ 🔴⬜⬜⬜⬜""", """⬜⬜⬛⬜⬜ ⬜⬜⬛⬜⬜ ⬜⬜🔴⬜⬜""", """⬜⬜⬛⬜⬜ ⬜⬜⬜⬛⬜ ⬜⬜⬜⬜🔴""", """⬜⬜⬛⬛🔴 ⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜""", """⬜⬜⬛⬜⬜ ⬜⬜⬜⬛⬜ ⬜⬜⬜⬜🔴""", """⬜⬜⬛⬜⬜ ⬜⬜⬛⬜⬜ ⬜⬜🔴⬜⬜""", """⬜⬜⬛⬜⬜ ⬜⬛⬜⬜⬜ 🔴⬜⬜⬜⬜""", """🔴⬛⬛⬜⬜ ⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜""", """⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜ ⬜ [CAT IS BEST](https://github.com/Sur-vivor/CatUserbot) ⬜ ⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜""" ] if event.fwd_from: return await event.edit('ding..dong..ding..dong ...') await asyncio.sleep(4) for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 10]) @borg.on(admin_cmd(pattern=f'hypno$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 15) await event.edit('hypo....') animation_chars = [ """⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜""" , """⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬛⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜""" , """⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬛⬛⬛⬜⬜ ⬜⬜⬛⬜⬛⬜⬜ ⬜⬜⬛⬛⬛⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜""" , """⬜⬜⬜⬜⬜⬜⬜ ⬜⬛⬛⬛⬛⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬛⬛⬛⬛⬜ ⬜⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬛⬛⬛⬛⬛⬛""" , """⬛⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜⬛""" , """⬜⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛⬜""" , """⬜⬜⬜⬜⬜⬜⬜ ⬜⬛⬛⬛⬛⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬛⬛⬛⬛⬜ ⬜⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬜⬛⬛⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬛⬛⬜⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬛⬛⬛⬛⬛⬛""" , """⬜⬜⬜⬜⬜⬜⬜ ⬜⬛⬛⬛⬛⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬛⬛⬛⬛⬜ ⬜⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬜⬛⬛⬛⬜⬛ ⬛⬜⬛⬜⬛⬜⬛ ⬛⬜⬛⬛⬛⬜⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬛⬛⬛⬛⬛⬛""" , """⬜⬜⬜⬜⬜⬜⬜ ⬜⬛⬛⬛⬛⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬜⬛⬜⬛⬜ ⬜⬛⬜⬜⬜⬛⬜ ⬜⬛⬛⬛⬛⬛⬜ ⬜⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛ ⬛⬜⬜⬜⬛ ⬛⬜⬛⬜⬛ ⬛⬜⬜⬜⬛ ⬛⬛⬛⬛⬛""" , """⬜⬜⬜ ⬜⬛⬜ ⬜⬜⬜""", '[👉🔴👈])'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 15]) @borg.on(admin_cmd(pattern='gangasta$')) async def _(event): await event.edit('EVERyBOdy') await asyncio.sleep(0.3) await event.edit('iZ') await asyncio.sleep(0.2) await event.edit('GangSTur') await asyncio.sleep(0.5) await event.edit('UNtIL ') await asyncio.sleep(0.2) await event.edit('I') await asyncio.sleep(0.3) await event.edit('ArRivE') await asyncio.sleep(0.3) await event.edit('🔥🔥🔥') await asyncio.sleep(0.3) await event.edit('EVERyBOdy iZ GangSTur UNtIL I ArRivE 🔥🔥🔥') @borg.on(admin_cmd(pattern=f'charging$')) async def timer_blankx(e): txt = e.text[10:] + """ `Tesla Wireless Charging (beta) Started... Device Detected: Nokia 1100 Battery Percentage:` """ j = 10 k = j for j in range(j): await e.edit(txt + str(k)) k = k + 10 await asyncio.sleep(1) await asyncio.sleep(1) await e.edit( """`Tesla Wireless Charging (beta) Completed... Device Detected: Nokia 1100 (Space Grey Varient) Battery Percentage:` [100%](https://telegra.ph/file/a45aa7450c8eefed599d9.mp4) """ , link_preview=True) @borg.on(admin_cmd('bigoof')) async def _(event): if event.fwd_from: return animation_interval = 0.1 animation_ttl = range(0, 7) await event.edit( """┏━━━┓╋╋╋╋┏━━━┓ ┃┏━┓┃╋╋╋╋┃┏━┓┃ ┃┃╋┃┣┓┏┓┏┫┃╋┃┃ ┃┃╋┃┃┗┛┗┛┃┃╋┃┃ ┃┗━┛┣┓┏┓┏┫┗━┛┃ ┗━━━┛┗┛┗┛┗━━━┛""" ) animation_chars = [ """╭━━━╮╱╱╱╭━╮ ┃╭━╮┃╱╱╱┃╭╯ ┃┃╱┃┣━━┳╯╰╮ ┃┃╱┃┃╭╮┣╮╭╯ ┃╰━╯┃╰╯┃┃┃ ╰━━━┻━━╯╰╯ """ , """╭━━━╮╱╱╱╱╱╱╭━╮ ┃╭━╮┃╱╱╱╱╱╱┃╭╯ ┃┃╱┃┣━━┳━━┳╯╰╮ ┃┃╱┃┃╭╮┃╭╮┣╮╭╯ ┃╰━╯┃╰╯┃╰╯┃┃┃ ╰━━━┻━━┻━━╯╰╯""" , """╭━━━╮╱╱╱╱╱╱╱╱╱╭━╮ ┃╭━╮┃╱╱╱╱╱╱╱╱╱┃╭╯ ┃┃╱┃┣━━┳━━┳━━┳╯╰╮ ┃┃╱┃┃╭╮┃╭╮┃╭╮┣╮╭╯ ┃╰━╯┃╰╯┃╰╯┃╰╯┃┃┃ ╰━━━┻━━┻━━┻━━╯╰╯""" , """╭━━━╮╱╱╱╱╱╱╱╱╱╱╱╱╭━╮ ┃╭━╮┃╱╱╱╱╱╱╱╱╱╱╱╱┃╭╯ ┃┃╱┃┣━━┳━━┳━━┳━━┳╯╰╮ ┃┃╱┃┃╭╮┃╭╮┃╭╮┃╭╮┣╮╭╯ ┃╰━╯┃╰╯┃╰╯┃╰╯┃╰╯┃┃┃ ╰━━━┻━━┻━━┻━━┻━━╯╰╯""" , """╭━━━╮╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╭━╮ ┃╭━╮┃╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱┃╭╯ ┃┃╱┃┣━━┳━━┳━━┳━━┳━━┳╯╰╮ ┃┃╱┃┃╭╮┃╭╮┃╭╮┃╭╮┃╭╮┣╮╭╯ ┃╰━╯┃╰╯┃╰╯┃╰╯┃╰╯┃╰╯┃┃┃ ╰━━━┻━━┻━━┻━━┻━━┻━━╯╰╯""" , """╭━━━╮╱╱╱╱╱╱╱╱╱╱╱╱╭━╮ ┃╭━╮┃╱╱╱╱╱╱╱╱╱╱╱╱┃╭╯ ┃┃╱┃┣━━┳━━┳━━┳━━┳╯╰╮ ┃┃╱┃┃╭╮┃╭╮┃╭╮┃╭╮┣╮╭╯ ┃╰━╯┃╰╯┃╰╯┃╰╯┃╰╯┃┃┃ ╰━━━┻━━┻━━┻━━┻━━╯╰╯""" , """╭━━━╮╱╱╱╱╱╱╱╱╱╭━╮ ┃╭━╮┃╱╱╱╱╱╱╱╱╱┃╭╯ ┃┃╱┃┣━━┳━━┳━━┳╯╰╮ ┃┃╱┃┃╭╮┃╭╮┃╭╮┣╮╭╯ ┃╰━╯┃╰╯┃╰╯┃╰╯┃┃┃ ╰━━━┻━━┻━━┻━━╯╰╯""" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 7]) @borg.on(admin_cmd(pattern='g1 ?(.*)')) async def payf(event): paytext = event.pattern_match.group(1) pay = ( """{} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {}""" .format(paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1, paytext * 1)) await event.edit(pay) @borg.on(admin_cmd(pattern='uff ?(.*)')) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 13) animation_chars = ['U', 'Uf', 'Uff', 'Ufffff', 'Uffffff', 'Ufffffff', 'Uffffffff', 'Ufffffffff', 'Uffffffffff', 'Ufffffffffff', 'Uffffffffffff', 'Ufffffffffffff', 'Uffffffffffffff'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 13]) @borg.on(admin_cmd(pattern='ctext ?(.*)')) async def payf(event): paytext = event.pattern_match.group(1) pay = '{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}'.format(paytext * 8, paytext * 8, paytext * 2, paytext * 2, paytext * 2, paytext * 2, paytext * 2, paytext * 2, paytext * 2, paytext * 2, paytext * 8, paytext * 8) await event.edit(pay) @borg.on(admin_cmd(pattern='ftext ?(.*)')) async def payf(event): paytext = event.pattern_match.group(1) pay = '{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}'.format(paytext * 8, paytext * 8, paytext * 2, paytext * 2, paytext * 2, paytext * 6, paytext * 6, paytext * 2, paytext * 2, paytext * 2, paytext * 2, paytext * 2) await event.edit(pay) @borg.on(admin_cmd(outgoing=True, pattern='kf$(.*)')) async def _(event): r = random.randint(0, 3) logger.debug(r) if r == 0: await event.edit( """┏━━━┓ ┃┏━━┛ ┃┗━━┓ ┃┏━━┛ ┃┃ â”—â”›""" ) else: r == 1 await event.edit( """╭━━━╮ ┃╭━━╯ ┃╰━━╮ ┃╭━━╯ ┃┃ ╰╯""" ) @borg.on(admin_cmd(pattern='f (.*)')) async def payf(e): paytext = e.pattern_match.group(1) pay = '{}\n{}\n{}\n{}\n{}\n{}\n{}'.format(paytext * 5, paytext * 1, paytext * 1, paytext * 4, paytext * 1, paytext * 1, paytext * 1) await e.edit(pay) @borg.on(admin_cmd(pattern=f'loading$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 20) animation_chars = ['â–®', 'â–¯', 'â–¬', 'â–\xad', '‎'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 4]) @borg.on(admin_cmd(pattern=f'square$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 20) animation_chars = ['â—§', 'â—¨', 'â—§', 'â—¨', '‎'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 4]) @borg.on(admin_cmd(pattern=f'up$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 20) animation_chars = ['╹', 'â•»', '╹', 'â•»', '‎'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 4]) @borg.on(admin_cmd(pattern=f'round$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 20) animation_chars = ['âš«', '⬤', 'â—\x8f', '∘', '‎'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 4]) @borg.on(admin_cmd(pattern=f'hart$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.5 animation_ttl = range(0, 20) animation_chars = ['🖤', 'â\x9d¤ï¸\x8f', '🖤', 'â\x9d¤ï¸\x8f', '‎'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 4]) @borg.on(admin_cmd(pattern=f'anim$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 11) animation_chars = ['ðŸ˜\x81', '😧', '😡', '😢', '‎**HellBoy Bolte Public**', 'ðŸ˜\x81', '😧', '😡', '😢', '[PAPA HERE](https://t.me/Kraken_The_BadASS)', '__**Good to See you Guys....**__'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 11]) @borg.on(admin_cmd(pattern=f'fnl$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 2 animation_ttl = range(0, 6) animation_chars = ['ðŸ˜\x81ðŸ\x8f¿', 'ðŸ˜\x81ðŸ\x8f¾', 'ðŸ˜\x81ðŸ\x8f½', 'ðŸ˜\x81ðŸ\x8f¼', '‎ðŸ˜\x81', '**Good to See you Guys....**'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 6]) @borg.on(admin_cmd(pattern=f'monkey$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 2 animation_ttl = range(0, 6) animation_chars = ['ðŸ\x90µ', '🙉', '🙈', '🙊', '🖕‎ðŸ\x90µðŸ–•', '**Good to See you Guys....**'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 6]) @borg.on(admin_cmd(pattern=f'herber$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 2 animation_ttl = range(0, 11) animation_chars = [ """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 10% ●○○○○○○○○○ **🔹cpu core** **🔹core_usage:** 5.9% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 8.13GB **🔹used:** 33.77GB **🔹total:** 60.0GB ●●●●●●●○○○ **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 158.98GB **🔹recv:** 146.27GB **🔹sent_packets:** 84518799 **🔹recv_packets:** 159720314 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 30% ●●●○○○○○○○ **🔹cpu core** **🔹core_usage:** 20.4% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 7.18GB **🔹used:** 28.26GB **🔹total:** 60.0GB ●●●●●●●●●● **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 146.27GB **🔹recv:** 124.33GB **🔹sent_packets:** 54635686 **🔹recv_packets:** 143565654 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 60% ●●●●●●○○○○ **🔹cpu core** **🔹core_usage:** 60.9% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 6.52GB **🔹used:** 35.78GB **🔹total:** 60.0GB ●●●○○○○○○○ **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 124.33GB **🔹recv:** 162.48GB **🔹sent_packets:** 25655655 **🔹recv_packets:** 165289456 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 100% ●●●●●●●●●● **🔹cpu core** **🔹core_usage:** 100.0% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 9.81GB **🔹used:** 30.11GB **🔹total:** 60.0GB ●●●●●●●●●● **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 162.48GB **🔹recv:** 175.75GB **🔹sent_packets:** 56565435 **🔹recv_packets:** 135345655 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 70% ●●●●●●●○○○ **🔹cpu core** **🔹core_usage:** 80.4% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 5.76GB **🔹used:** 29.35GB **🔹total:** 60.0GB ●●●●●●●○○○ **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 175.75GB **🔹recv:** 118.55GB **🔹sent_packets:** 36547698 **🔹recv_packets:** 185466554 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 60% ●●●●●●○○○○ **🔹cpu core** **🔹core_usage:** 62.9% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 8.23GB **🔹used:** 33.32GB **🔹total:** 60.0GB ●●●●●●○○○○ **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 118.55GB **🔹recv:** 168.65GB **🔹sent_packets:** 24786554 **🔹recv_packets:** 156745865 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 30% ●●●○○○○○○○ **🔹cpu core** **🔹core_usage:** 30.6% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 9.75GB **🔹used:** 36.54GB **🔹total:** 60.0GB ●●●●●●●●●● **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 168.65GB **🔹recv:** 128.35GB **🔹sent_packets:** 56565435 **🔹recv_packets:** 1475823589 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 10% ●○○○○○○○○○ **🔹cpu core** **🔹core_usage:** 10.2% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 10.20GB **🔹used:** 25.40GB **🔹total:** 60.0GB ●●●●●●○○○○ **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 128.35GB **🔹recv:** 108.31GB **🔹sent_packets:** 54635686 **🔹recv_packets:** 157865426 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 100% ●●●●●●●●●● **🔹cpu core** **🔹core_usage:** 100.0% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 5.25GB **🔹used:** 31.14GB **🔹total:** 60.0GB ●●●●●●●●●● **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 108.31GB **🔹recv:** 167.17GB **🔹sent_packets:** 84518799 **🔹recv_packets:** 124575356 **===================** """ , """**===================** **Server Details** **===================** **=>>> CPU <<<=** **🔹current_freq:** 2500.09MHz **🔹total_usage:** 70% ●●●●●●●○○○ **🔹cpu core** **🔹core_usage:** 76.2% **🔹current_freq:** 2500.09MHz |██████████▉ | **=>>> RAM <<<=** **🔹free:** 8.01GB **🔹used:** 33.27GB **🔹total:** 60.0GB ●●●○○○○○○○ **=>>> DISK <<<=** **🔹free:** 224.12GB **🔹used:** 131.84GB **🔹total:** 375.02GB **🔹usage:** 37.0% |████▍ | **=>>> NETWORK <<<=** **🔹sent:** 167.17GB **🔹recv:** 158.98GB **🔹sent_packets:** 36547698 **🔹recv_packets:** 165455856 **===================** """ ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 11]) @borg.on(admin_cmd(pattern=f'hand$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 14) animation_chars = ['👈', '👉', 'â˜\x9dï¸\x8f', '👆', '🖕', '👇', '✌ï¸\x8f', '🤞', '🖖', '🤘', '🤙', 'ðŸ–\x90ï¸\x8f', '👌'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 14]) @borg.on(admin_cmd(pattern=f'gsg$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 13) animation_chars = ['🔟', '9ï¸\x8f⃣', '8ï¸\x8f⃣', '7ï¸\x8f⃣', '6ï¸\x8f⃣', '5ï¸\x8f⃣', '4ï¸\x8f⃣', '3ï¸\x8f⃣', '2ï¸\x8f⃣', '1ï¸\x8f⃣', '0ï¸\x8f⃣', '🆘'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 13]) @borg.on(admin_cmd(pattern='theart$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 54) animation_chars = ['â\x9d¤ï¸\x8f', '🧡', '💛', '💚', '💙', '💜', '🖤', '💘', 'ðŸ’\x9d', 'â\x9d¤ï¸\x8f', '🧡', '💛', '💚', '💙', '💜', '🖤', '💘', 'ðŸ’\x9d'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 18]) @borg.on(admin_cmd(pattern='fdance')) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 5) await event.edit('Connecting..') animation_chars = [ """⠀⠀⠀⣶⣿⣶ ⠀⠀⠀⣿⣿⣿⣀ ⠀⣀⣿⣿⣿⣿⣿⣿ ⣶⣿⠛⣭⣿⣿⣿⣿ ⠛⠛⠛⣿⣿⣿⣿⠿ ⠀⠀⠀⠀⣿⣿⣿ ⠀⠀⣀⣭⣿⣿⣿⣿⣀ ⠀⠤⣿⣿⣿⣿⣿⣿⠉ ⠀⣿⣿⣿⣿⣿⣿⠉ ⣿⣿⣿⣿⣿⣿ ⣿⣿⣶⣿⣿ ⠉⠛⣿⣿⣶⣤ ⠀⠀⠉⠿⣿⣿⣤ ⠀⠀⣀⣤⣿⣿⣿ ⠀⠒⠿⠛⠉⠿⣿ ⠀⠀⠀⠀⠀⣀⣿⣿ ⠀⠀⠀⠀⣶⠿⠿⠛ """ , """⠀⠀⠀⠀⠀⠀⠀⠀⠀⣤⣤ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿ ⠀⠀⣶⠀⠀⣀⣤⣶⣤⣉⣿⣿⣤⣀ ⠤⣤⣿⣤⣿⠿⠿⣿⣿⣿⣿⣿⣿⣿⣿⣀ ⠀⠛⠿⠀⠀⠀⠀⠉⣿⣿⣿⣿⣿⠉⠛⠿⣿⣤ ⠀⠀⠀⠀⠀⠀⠀⠀⠿⣿⣿⣿⠛⠀⠀⠀⣶⠿ ⠀⠀⠀⠀⠀⠀⠀⠀⣀⣿⣿⣿⣿⣤⠀⣿⠿ ⠀⠀⠀⠀⠀⠀⠀⣶⣿⣿⣿⣿⣿⣿⣿⣿ ⠀⠀⠀⠀⠀⠀⠀⠿⣿⣿⣿⣿⣿⠿⠉⠉ ⠀⠀⠀⠀⠀⠀⠀⠉⣿⣿⣿⣿⠿ ⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⠉ ⠀⠀⠀⠀⠀⠀⠀⠀⣛⣿⣭⣶⣀ ⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⣿⣿ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⠉⠛⣿ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⠀⠀⣿⣿ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣉⠀⣶⠿ ⠀⠀⠀⠀⠀⠀⠀⠀⣶⣿⠿ ⠀⠀⠀⠀⠀⠀⠀⠛⠿⠛ """ , """⠀⠀⠀⠀⠀⠀⠀⠀⠀⣤⣶ ⠀⠀⠀⠀⠀⣀⣀⠀⣶⣿⣿⠶ ⣶⣿⠿⣿⣿⣿⣿⣿⣿⣿⣿⣤⣤ ⠀⠉⠶⣶⣀⣿⣿⣿⣿⣿⣿⣿⠿⣿⣤⣀ ⠀⠀⠀⣿⣿⠿⠉⣿⣿⣿⣿⣭⠀⠶⠿⠿ ⠀⠀⠛⠛⠿⠀⠀⣿⣿⣿⣉⠿⣿⠶ ⠀⠀⠀⠀⠀⣤⣶⣿⣿⣿⣿⣿ ⠀⠀⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⠒ ⠀⠀⠀⠀⣀⣿⣿⣿⣿⣿⣿⣿ ⠀⠀⠀⠀⠀⣿⣿⣿⠛⣭⣭⠉ ⠀⠀⠀⠀⠀⣿⣿⣭⣤⣿⠛ ⠀⠀⠀⠀⠀⠛⠿⣿⣿⣿⣭ ⠀⠀⠀⠀⠀⠀⠀⣿⣿⠉⠛⠿⣶⣤ ⠀⠀⠀⠀⠀⠀⣀⣿⠀⠀⣶⣶⠿⠿⠿ ⠀⠀⠀⠀⠀⠀⣿⠛ ⠀⠀⠀⠀⠀⠀⣭⣶ """ , """⠀⠀⠀⠀⠀⠀⣶⣿⣶ ⠀⠀⠀⣤⣤⣤⣿⣿⣿ ⠀⠀⣶⣿⣿⣿⣿⣿⣿⣿⣶ ⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⣿ ⠀⠀⣿⣉⣿⣿⣿⣿⣉⠉⣿⣶ ⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⠿⣿ ⠀⣤⣿⣿⣿⣿⣿⣿⣿⠿⠀⣿⣶ ⣤⣿⠿⣿⣿⣿⣿⣿⠿⠀⠀⣿⣿⣤ ⠉⠉⠀⣿⣿⣿⣿⣿⠀⠀⠒⠛⠿⠿⠿ ⠀⠀⠀⠉⣿⣿⣿⠀⠀⠀⠀⠀⠀⠉ ⠀⠀⠀⣿⣿⣿⣿⣿⣶ ⠀⠀⠀⠀⣿⠉⠿⣿⣿ ⠀⠀⠀⠀⣿⣤⠀⠛⣿⣿ ⠀⠀⠀⠀⣶⣿⠀⠀⠀⣿⣶ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⣭⣿⣿ ⠀⠀⠀⠀⠀⠀⠀⠀⣤⣿⣿⠉ """ , """⠀⠀⠀⠀⠀⠀⣤⣶⣶ ⠀⠀⠀⠀⠀⠀⣿⣿⣿⣿⣀⣀ ⠀⠀⠀⠀⠀⣀⣶⣿⣿⣿⣿⣿⣿ ⣤⣶⣀⠿⠶⣿⣿⣿⠿⣿⣿⣿⣿ ⠉⠿⣿⣿⠿⠛⠉⠀⣿⣿⣿⣿⣿ ⠀⠀⠉⠀⠀⠀⠀⠀⠀⣿⣿⣿⣿⣤⣤ ⠀⠀⠀⠀⠀⠀⠀⣤⣶⣿⣿⣿⣿⣿⣿ ⠀⠀⠀⠀⠀⣀⣿⣿⣿⣿⣿⠿⣿⣿⣿⣿ ⠀⠀⠀⠀⣀⣿⣿⣿⠿⠉⠀⠀⣿⣿⣿⣿ ⠀⠀⠀⠀⣿⣿⠿⠉⠀⠀⠀⠀⠿⣿⣿⠛ ⠀⠀⠀⠀⠛⣿⣿⣀⠀⠀⠀⠀⠀⣿⣿⣀ ⠀⠀⠀⠀⠀⣿⣿⣿⠀⠀⠀⠀⠀⠿⣿⣿ ⠀⠀⠀⠀⠀⠉⣿⣿⠀⠀⠀⠀⠀⠀⠉⣿ ⠀⠀⠀⠀⠀⠀⠀⣿⠀⠀⠀⠀⠀⠀⣀⣿ ⠀⠀⠀⠀⠀⠀⣀⣿⣿ ⠀⠀⠀⠀⠤⣿⠿⠿⠿ """ ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 5]) @borg.on(admin_cmd(pattern=f'snake$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 27) await event.edit('snake..') animation_chars = [ """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◻️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◻️◻️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◻️◻️◻️️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◻️◻️◻️◻️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """‎◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◼️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◻️◻️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◼️◼️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◼️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◻️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◼️◼️◼️◻️ ◻️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◼️◼️◻️◻️ ◻️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◼️◼️◻️◻️ ◻️◼️◼️◻️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◼️◼️◻️◻️ ◻️◼️◻️◻️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◼️◼️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◻️◼️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️ ◻️◻️◻️◻️◻️""" , """◻️◻️◻️◻️◻️ ◻️◼️◻️◼️◻️ ◻️◻️◻️◻️◻️ ◻️◼️◼️◼️◻️ ◻️◻️◻️◻️◻️""" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 27]) @borg.on(admin_cmd(pattern=f'human$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.5 animation_ttl = range(0, 16) await event.edit('human...') animation_chars = [ """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛🚗 ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛🚗⬛ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛🚗⬛⬛ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🚗⬛⬛⬛ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛🚗⬛⬛⬛⬛ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛🚗⬛⬛⬛⬛⬛ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ 🚗⬛⬛⬛⬛⬛⬛ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬜⬜⬜😊⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛😊⬛⬛⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬛⬛⬜⬛⬛⬛ ⬛⬛⬜⬛⬜⬛⬛ ⬛⬛⬜⬛⬜⬛⬛ ⬛⬛⬜⬛⬜⬛⬛ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛😊⬛⬛⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬛⬛⬜⬛⬛⬛ ⬛⬛⬜⬛⬜⬛⬛ ⬛⬛⬜⬛⬛⬜⬛ ⬛⬛⬜⬛⬛⬛⬛ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛😊⬛⬛⬛ ⬛⬜⬜⬜⬜⬜⬛ ⬛⬛⬛⬜⬛⬛⬛ ⬛⬛⬜⬛⬜⬛⬛ ⬛⬜⬛⬛⬛⬜⬛ ⬛⬛⬛⬛⬛⬛⬛ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬜⬛😊⬛⬜⬛ ⬛⬛⬜⬜⬜⬛⬛ ⬛⬛⬛⬜⬛⬛⬛ ⬛⬛⬜⬛⬜⬛⬛ ⬛⬜⬛⬛⬛⬜⬛ ⬛⬛⬛⬛⬛⬛⬛ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛😊⬛⬛⬛ ⬛⬛⬜⬜⬜⬛⬛ ⬛⬜⬛⬜⬛⬜⬛ ⬛⬛⬜⬛⬜⬛⬛ ⬛⬛⬜⬛⬜⬛⬛ ⬛⬛⬜⬛⬜⬛⬛ 🔲🔲🔲🔲🔲🔲🔲""" , """⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛⬛ ⬜⬜⬜😊⬜⬜⬜ ⬜⬜⬜⬜⬜⬜⬜ 🔲🔲🔲🔲🔲🔲🔲""" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 16]) @borg.on(admin_cmd(pattern=f'mc$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 28) await event.edit('mc..') animation_chars = [ """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◻️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◻️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◻️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◻️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◻️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◻️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◻️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◻️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◻️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◻️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◻️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◻️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◻️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◻️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◻️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◻️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◻️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◻️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◻️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◻️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◻️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◻️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◻️◼️◻️◼️ ◼️◼️◼️◼️◼️ ◼️◻️◻️◻️◼️ ◼️◼️◼️◼️◼️""" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 28]) @borg.on(admin_cmd(pattern='virus$')) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 30) await event.edit('Injecting virus....') animation_chars = [ """🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """◼️◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """◼️◼️◼️️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """◼️◼️◼️◼️🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """‎◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️◼️""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ 🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️ ◼️🔴🔵🌕♓♎⛎◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️🔴🔵🌕♓♎⛎◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️◼️◼️""" , """◼️◼️◼️◼️ ◼️◼️◼️◼️ ◼️◼️◼️◼️ ◼️◼️◼️◼️""" , """◼️◼️◼️ ◼️◼️◼️ ◼️◼️◼️""", """◼️◼️ ◼️◼️""", 'â—¼ï¸\x8f'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 30]) @borg.on(admin_cmd(pattern='repe$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.2 animation_ttl = range(0, 30) await event.edit('repe') animation_chars = ['**r**', '**ra**', '**rap**', '**rape**', '**rape_**', '**rape_t**', '**rape_tr**', '**rape_tra**', '**rape_trai**', '**rape_train**', '**ape_train🚅**', '**pe_train🚅🚃🚃**', '**e_train🚅🚃🚃🚃**', '**_train🚅🚃🚃🚃🚃**', '**train🚅🚃🚃🚃🚃🚃**', '**rain🚅🚃🚃🚃🚃🚃🚃**', '**ain🚅🚃🚃🚃🚃🚃🚃🚃**', '**in🚅🚃🚃🚃🚃🚃🚃🚃🚃**', '**n🚅🚃🚃🚃🚃🚃🚃🚃🚃🚃**', '🚅🚃🚃🚃🚃🚃🚃🚃🚃🚃', '🚃🚃🚃🚃🚃🚃🚃🚃🚃', '🚃🚃🚃🚃🚃🚃🚃🚃', '🚃🚃🚃🚃🚃🚃🚃', '🚃🚃🚃🚃🚃🚃', '🚃🚃🚃🚃🚃', '🚃🚃🚃🚃', '🚃🚃🚃', '🚃🚃', '🚃', '**rApEd**'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 30]) @borg.on(admin_cmd(pattern=f'isro$')) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 24) await event.edit('Connecting..') animation_chars = [ """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ 🚀⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛🚀⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛🚀⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🚀⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛🚀⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛🚀 ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """🛸⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ 🛸⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛🛸⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛🛸⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛🛸⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🛸⬛⬛""" , """⬛⬛⬛🛸⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🛸⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🛸⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🛸⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🛸⬛⬛ ⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🛸⬛🚶‍♂️ ⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛🛸🚶‍♂️⬛ ⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ 👽⬛⬛🛸🚶‍♂️⬛ ⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛👽⬛🛸🚶‍♂️⬛ ⬜⬜⬜⬜⬜⬜""" , """⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛⬛⬛⬛⬛ ⬛⬛👽🛸🚶‍♂️⬛ ⬜⬜⬜⬜⬜⬜""" , '__Signal Lost....__'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 24]) @borg.on(admin_cmd(pattern=f'nakal$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.5 animation_ttl = range(0, 6) await event.edit('nakal') animation_chars = [ """`⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀ ⠀⣴⠿⠏⠀⠀⠀⠀⠀ ⢳⡀⠀⡏⠀⠀⠀ ⠀⢷ ⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀⣧⠀⢸⠀⠀⠀ â € ⡇ ⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲⣿ ⣸ Nikal ⡇ ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀⠀ ⣿ ⢹⠀ ⡇ ⠙⢿⣯⠄⠀⠀⠀__⠀⠀⡿ ⠀⡇⠀⠀⠀⠀ ⡼ ⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀ ⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀ ⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀ ⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`""" , """`⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀ ⠀⣴⠿⠏⠀⠀⠀⠀⠀ ⠀⢳⡀⠀⡏⠀⠀⠀ ⠀⢷ ⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀⣧⠀⢸⠀⠀⠀ ⡇ ⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲⣿ ⣸ Lavde ⡇ ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀⠀ ⣿ ⢹⠀ ⡇ ⠙⢿⣯⠄⠀⠀|__|⠀⠀⡿ ⠀⡇⠀⠀⠀⠀ ⡼ ⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀ ⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀ ⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀ ⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`""" , """`⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀ ⠀⣴⠿⠏⠀⠀ ⠀⢳⡀⠀⡏⠀⠀ ⠀⢷ ⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀⣧⠀⢸⠀⠀⠀⠀ ⡇ ⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲⣿ ⣸ Pehli ⡇ ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀⠀ ⣿ ⢹⠀ ⡇ ⠙⢿⣯⠄⠀⠀(P)⠀⠀⡿ ⠀⡇⠀⠀⠀⠀ ⡼ ⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀ ⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀ ⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀ ⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`""" , """`⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀ ⠀⣴⠿⠏⠀⠀ ⠀⢳⡀⠀⡏⠀⠀ ⠀⢷ ⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀⣧⠀⢸⠀ â € ⡇ ⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲⣿ ⣸ Fursat ⡇ ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀ ⣿ ⢹⠀ ⡇ ⠙⢿⣯⠄⠀⠀⠀__ ⠀⠀⡿ ⠀⡇⠀⠀⠀⠀ ⡼ ⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀ ⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀ ⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀ ⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`""" , """`⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀ ⠀⣴⠿⠏⠀⠀⠀⠀⠀ ⢳⡀⠀⡏⠀⠀ ⠀⢷ ⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀⣧⠀⢸⠀⠀ â € ⡇ ⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲⣿ ⣸ Meeee ⡇ ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀⠀ ⣿ ⢹⠀ ⡇ ⠙⢿⣯⠄⠀⠀|__| ⠀⡿ ⠀⡇⠀⠀⠀⠀ ⡼ ⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀ ⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀ ⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀ ⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`""" , """`⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀ ⠀⣴⠿⠏⠀⠀⠀⠀⠀ ⠀⢳⡀⠀⡏⠀⠀ ⠀⢷ ⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀⣧⠀⢸⠀ â € ⡇ ⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲⣿ ⣸ Nikal ⡇ ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀ ⣿ ⢹⠀ ⡇ ⠙⢿⣯⠄⠀⠀lodu⠀⠀⡿ ⠀⡇⠀⠀⠀⠀ ⡼ ⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀ ⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀ ⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀ ⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`""" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 6]) @borg.on(admin_cmd(pattern=f'music$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 1.5 animation_ttl = range(0, 11) await event.edit('starting player...') animation_chars = [ """⬤⬤⬤ 81% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:00** ▱▱▱▱▱▱▱▱▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `▶️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤⬤ 81% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:01** ▰▱▱▱▱▱▱▱▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤⬤ 81% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:02** ▰▰▱▱▱▱▱▱▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤⬤ 81% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:03** ▰▰▰▱▱▱▱▱▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀ [Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:04** ▰▰▰▰▱▱▱▱▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:05** ▰▰▰▰▱▱▱▱▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:06** ▰▰▰▰▰▰▱▱▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:07** ▰▰▰▰▰▰▰▱▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:08** ▰▰▰▰▰▰▰▰▱▱ **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:09** â–°â–°â–°â–°â–°â–°â–°â–°â–°â–± **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" , """⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️` ⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223) ⠀⠀⠀⠀**Now Playing:shape of u** **00:10** â–°â–°â–°â–°â–°â–°â–°â–°â–°â–° **00:10** ⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏺️` `⏩️` `⏭️` **â €Next Song:** __Alan Walker - Alone.__ ⠀⠀⠀⠀**â €Device: Nokia 1100**""" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 11]) @borg.on(admin_cmd(pattern=f'squ$', outgoing=True)) async def _(event): if event.fwd_from: return await event.edit( """╔═══════════════════╗ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(1) await event.edit( """╔═══════════════════╗ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ â–‘ ╚═══════════════════╝""" ) await asyncio.sleep(6) @borg.on(admin_cmd(pattern='star$', outgoing=True)) async def _(event): if event.fwd_from: return deq = deque(list('🦋✨🦋✨🦋✨🦋✨')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='boxs')) async def _(event): if event.fwd_from: return deq = deque(list('🟥🟧🟨🟩🟦🟪🟫⬛⬜')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern=f'rain$', outgoing=True)) async def _(event): if event.fwd_from: return deq = deque(list('🌬â˜\x81ï¸\x8f🌩🌨🌧🌦🌥⛅🌤')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='clol$')) async def _(event): if event.fwd_from: return deq = deque(list('🤔ðŸ§\x90🤨🤔ðŸ§\x90🤨')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='odra$')) async def _(event): if event.fwd_from: return deq = deque(list('🚶ðŸ\x8fƒðŸš¶ðŸ\x8fƒðŸš¶ðŸ\x8fƒðŸš¶ðŸ\x8fƒ')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='deploy$')) async def _(event): if event.fwd_from: return animation_interval = 3 animation_ttl = range(0, 12) await event.edit('Deploying...') animation_chars = ['**Heroku Connecting To Latest Github Build **', f'**Build started by user** @Kraken_The_BadASS', f'**Deploy** `535a74f0` for user by my master!!', '**Restarting Heroku Server...**', '**State changed from up to starting**', '**Stopping all processes with SIGTERM**', '**Process exited with** `status 143`', '**Starting process with command** `python3 -m stdborg`', '**State changed from starting to up**', '__INFO:Userbot:Logged in as 557667062__', '__INFO:Userbot:Successfully loaded all plugins__', '**Build Succeeded**'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 12]) @borg.on(admin_cmd(pattern='dump ?(.*)')) async def _(message): try: obj = message.pattern_match.group(1) if len(obj) != 3: raise IndexError inp = ' '.join(obj) except IndexError: inp = '🥞 🎂 ðŸ\x8d«' u, t, g, o, s, n = inp.split( ), '🗑', '<(^_^ <)', '(> ^_^)>', 'â\xa0€ ', '\n' h = [(u[0], u[1], u[2]), (u[0], u[1], ''), (u[0], '', '')] for something in reversed([y for y in ([''.join(x) for x in (f + (s, g, s + s * f.count(''), t), f + (g, s * 2 + s * f.count(''), t), f[:i] + (o, f[i], s * 2 + s * f.count(''), t), f[:i] + (s + s * f.count(''), o, f[i], s, t), f[:i] + (s * 2 + s * f.count(''), o, f[i], t), f[:i ] + (s * 3 + s * f.count(''), o, t), f[:i] + (s * 3 + s * f.count( ''), g, t))] for i, f in enumerate(reversed(h)))]): for something_else in something: await asyncio.sleep(0.3) try: await message.edit(something_else) except errors.MessageIdInvalidError: return @borg.on(admin_cmd(pattern='fleaveme$')) async def _(event): animation_interval = 1 animation_ttl = range(0, 10) animation_chars = ['⬛⬛⬛\n⬛⬛⬛\n⬛⬛⬛', '⬛⬛⬛\n⬛🔄⬛\n⬛⬛⬛', """⬛⬆️⬛ ⬛🔄⬛ ⬛⬛⬛""", """⬛⬆️↗️ ⬛🔄⬛ ⬛⬛⬛""", """⬛⬆️↗️ ⬛🔄➡️ ⬛⬛⬛""", """⬛⬆️↗️ ⬛🔄➡️ ⬛⬛↘️""", """⬛⬆️↗️ ⬛🔄➡️ ⬛⬇️↘️""", """⬛⬆️↗️ ⬛🔄➡️ ↙️⬇️↘️""", """⬛⬆️↗️ ⬅️🔄➡️ ↙️⬇️↘️""", """↖️⬆️↗️ ⬅️🔄➡️ ↙️⬇️↘️"""] if event.fwd_from: return await event.edit('fleaveme....') await asyncio.sleep(2) for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 10]) @borg.on(admin_cmd(pattern='loveu', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.5 animation_ttl = range(0, 70) await event.edit('loveu') animation_chars = ['😀', '👩â€\x8d🎨', 'ðŸ˜\x81', '😂', '🤣', '😃', '😄', '😅', '😊', '☺', '🙂', '🤔', '🤨', 'ðŸ˜\x90', '😑', '😶', '😣', '😥', '😮', 'ðŸ¤\x90', '😯', '😴', '😔', '😕', '☹', 'ðŸ™\x81', '😖', '😞', '😟', '😢', 'ðŸ˜\xad', '🤯', '💔', 'â\x9d¤', 'i Love Youâ\x9d¤' ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 35]) @borg.on(admin_cmd(pattern=f'plane', outgoing=True)) async def _(event): if event.fwd_from: retun await event.edit('✈-------------') await event.edit('-✈------------') await event.edit('--✈-----------') await event.edit('---✈----------') await event.edit('----✈---------') await event.edit('-----✈--------') await event.edit('------✈-------') await event.edit('-------✈------') await event.edit('--------✈-----') await event.edit('---------✈----') await event.edit('----------✈---') await event.edit('-----------✈--') await event.edit('------------✈-') await event.edit('-------------✈') await asyncio.sleep(3) await event.delete() @borg.on(admin_cmd(pattern='pulis')) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 12) await event.edit('Pulis') animation_chars = [ """🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵""" , """🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴""" , """🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵""" , """🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴""" , """🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵""" , """🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴""" , """🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵""" , """🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴""" , """🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵""" , """🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴 🔵🔵🔵⬜⬜⬜🔴🔴🔴""" , """🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵 🔴🔴🔴⬜⬜⬜🔵🔵🔵""" , f'{DEFAULTUSER} **Police iz Here**'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 12]) @borg.on(admin_cmd(pattern=f'jio$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 19) await event.edit('jio network boosting...') animation_chars = ['`Connecting To JIO NETWORK ....`', '`â–ˆ â–‡ â–† â–… â–„ â–‚ â–\x81`', '`â–’ â–‡ â–† â–… â–„ â–‚ â–\x81`', '`â–’ â–’ â–† â–… â–„ â–‚ â–\x81`', '`â–’ â–’ â–’ â–… â–„ â–‚ â–\x81`', '`â–’ â–’ â–’ â–’ â–„ â–‚ â–\x81`', '`â–’ â–’ â–’ â–’ â–’ â–‚ â–\x81`', '`â–’ â–’ â–’ â–’ â–’ â–’ â–\x81`', '`â–’ â–’ â–’ â–’ â–’ â–’ â–’`', '*Optimising JIO NETWORK...*', '`â–’ â–’ â–’ â–’ â–’ â–’ â–’`', '`â–\x81 â–’ â–’ â–’ â–’ â–’ â–’`', '`â–\x81 â–‚ â–’ â–’ â–’ â–’ â–’`', '`â–\x81 â–‚ â–„ â–’ â–’ â–’ â–’`', '`â–\x81 â–‚ â–„ â–… â–’ â–’ â–’`', '`â–\x81 â–‚ â–„ â–… â–† â–’ â–’`', '`â–\x81 â–‚ â–„ â–… â–† â–‡ â–’`', '`â–\x81 â–‚ â–„ â–… â–† â–‡ â–ˆ`', '**JIO NETWORK Boosted....**'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 19]) @borg.on(admin_cmd(pattern=f'solarsystem', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.1 animation_ttl = range(0, 80) await event.edit('solarsystem') animation_chars = [ """`◼️◼️◼️◼️◼️ ◼️◼️◼️◼️☀ ◼️◼️🌎◼️◼️ 🌕◼️◼️◼️◼️ ◼️◼️◼️◼️◼️`""" , """`◼️◼️◼️◼️◼️ 🌕◼️◼️◼️◼️ ◼️◼️🌎◼️◼️ ◼️◼️◼️◼️☀ ◼️◼️◼️◼️◼️`""" , """`◼️🌕◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️🌎◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️☀◼️`""" , """`◼️◼️◼️🌕◼️ ◼️◼️◼️◼️◼️ ◼️◼️🌎◼️◼️ ◼️◼️◼️◼️◼️ ◼️☀◼️◼️◼️`""" , """`◼️◼️◼️◼️◼️ ◼️◼️◼️◼️🌕 ◼️◼️🌎◼️◼️ ☀◼️◼️◼️◼️ ◼️◼️◼️◼️◼️`""" , """`◼️◼️◼️◼️◼️ ☀◼️◼️◼️◼️ ◼️◼️🌎◼️◼️ ◼️◼️◼️◼️🌕 ◼️◼️◼️◼️◼️`""" , """`◼️☀◼️◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️🌎◼️◼️ ◼️◼️◼️◼️◼️ ◼️◼️◼️🌕◼️`""" , """`◼️◼️◼️☀◼️ ◼️◼️◼️◼️◼️ ◼️◼️🌎◼️◼️ ◼️◼️◼️◼️◼️ ◼️🌕◼️◼️◼️`""" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 8]) @borg.on(admin_cmd(pattern='lul$')) async def _(event): if event.fwd_from: return deq = deque(list('😂🤣😂🤣😂🤣')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='nothappy$')) async def _(event): if event.fwd_from: return deq = deque(list('ðŸ˜\x81☹ï¸\x8fðŸ˜\x81☹ï¸\x8fðŸ˜\x81☹ï¸\x8fðŸ˜\x81') ) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(outgoing=True, pattern='clock$')) async def _(event): if event.fwd_from: return deq = deque(list('🕙🕘🕗🕖🕕🕔🕓🕒🕑ðŸ•\x90🕛')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='muah$')) async def _(event): if event.fwd_from: return deq = deque(list('😗😙😚😚😘')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='heart$')) async def _(event): if event.fwd_from: return deq = deque(list('â\x9d¤ï¸\x8f🧡💛💚💙💜🖤')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='gym$', outgoing=True)) async def _(event): if event.fwd_from: return deq = deque(list( 'ðŸ\x8fƒâ€\x8dðŸ\x8f‹â€\x8d🤸â€\x8dðŸ\x8fƒâ€\x8dðŸ\x8f‹â€\x8d🤸â€\x8dðŸ\x8fƒâ€\x8dðŸ\x8f‹â€\x8d🤸â€\x8d' )) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern=f'earth$', outgoing=True)) async def _(event): if event.fwd_from: return deq = deque(list('ðŸŒ\x8fðŸŒ\x8d🌎🌎ðŸŒ\x8dðŸŒ\x8fðŸŒ\x8d🌎')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(outgoing=True, pattern='moon$')) async def _(event): if event.fwd_from: return deq = deque(list('🌗🌘🌑🌒🌓🌔🌕🌖')) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern='candy$')) async def _(event): if event.fwd_from: return deq = deque(list( 'ðŸ\x8d¦ðŸ\x8d§ðŸ\x8d©ðŸ\x8dªðŸŽ‚ðŸ\x8d°ðŸ§\x81ðŸ\x8d«ðŸ\x8d¬ðŸ\x8d\xad' )) for _ in range(48): await asyncio.sleep(0.1) await event.edit(''.join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern=f'smoon$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.1 animation_ttl = range(0, 101) await event.edit('smoon..') animation_chars = [ """🌗🌗🌗🌗🌗 🌓🌓🌓🌓🌓 🌗🌗🌗🌗🌗 🌓🌓🌓🌓🌓 🌗🌗🌗🌗🌗""" , """🌘🌘🌘🌘🌘 🌔🌔🌔🌔🌔 🌘🌘🌘🌘🌘 🌔🌔🌔🌔🌔 🌘🌘🌘🌘🌘""" , """🌑🌑🌑🌑🌑 🌕🌕🌕🌕🌕 🌑🌑🌑🌑🌑 🌕🌕🌕🌕🌕 🌑🌑🌑🌑🌑""" , """🌒🌒🌒🌒🌒 🌖🌖🌖🌖🌖 🌒🌒🌒🌒🌒 🌖🌖🌖🌖🌖 🌒🌒🌒🌒🌒""" , """🌓🌓🌓🌓🌓 🌗🌗🌗🌗🌗 🌓🌓🌓🌓🌓 🌗🌗🌗🌗🌗 🌓🌓🌓🌓🌓""" , """🌔🌔🌔🌔🌔 🌘🌘🌘🌘🌘 🌔🌔🌔🌔🌔 🌘🌘🌘🌘🌘 🌔🌔🌔🌔🌔""" , """🌕🌕🌕🌕🌕 🌑🌑🌑🌑🌑 🌕🌕🌕🌕🌕 🌑🌑🌑🌑🌑 🌕🌕🌕🌕🌕""" , """🌖🌖🌖🌖🌖 🌒🌒🌒🌒🌒 🌖🌖🌖🌖🌖 🌒🌒🌒🌒🌒 🌖🌖🌖🌖🌖""" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 8]) @borg.on(admin_cmd(pattern=f'tmoon$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.1 animation_ttl = range(0, 117) await event.edit('tmoon') animation_chars = ['🌗', '🌘', '🌑', '🌒', '🌓', '🌔', '🌕', '🌖', '🌗', '🌘', '🌑', '🌒', '🌓', '🌔', '🌕', '🌖', '🌗', '🌘', '🌑', '🌒', '🌓', '🌔', '🌕', '🌖', '🌗', '🌘', '🌑', '🌒', '🌓', '🌔', '🌕', '🌖'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 32]) @borg.on(admin_cmd(pattern=f'clown$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.5 animation_ttl = range(0, 16) animation_chars = ['COMMAND CREATE BY @Kraken_The_BadASS', '🤡ï¸\x8f', '🤡🤡', '🤡🤡🤡', '🤡🤡🤡🤡', '🤡🤡🤡🤡🤡', '🤡🤡🤡🤡🤡🤡', '🤡🤡🤡🤡🤡', '🤡🤡🤡🤡', '🤡🤡🤡', '🤡🤡', '🤡', 'You', 'You Are', 'You Are A', 'You Are A Clown 🤡'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 16]) @borg.on(admin_cmd(pattern='aheart$', outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 1.3 animation_ttl = range(0, 50) animation_chars = ['â\x9d¤ï¸\x8f', '🧡', '💛', '💚', '💙', '💜', '🖤', '💘', 'ðŸ’\x9d', '💔', 'â\x9d¤ï¸\x8f', '🧡', '💛', '💚', '💙', '💜', '🖤', '💘', 'ðŸ’\x9d', '💔'] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 20])
#Credits To @maxprogrammer007 (for editing) # Ported for Ultroid < https://github.com/TeamUltroid/Ultroid > import os import sys import logging from telethon import events import asyncio from userbot.utils import admin_cmd from userbot import ALIVE_NAME import random, re from userbot import CMD_HELP from collections import deque import importlib.util import random DEFAULTUSER = str(ALIVE_NAME) if ALIVE_NAME else "Cat" @borg.on(admin_cmd(pattern="stupid$")) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 14) await event.edit("brain") animation_chars = [ "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n🧠 <(^_^ <)🗑", "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n🧠 <(^_^ <) 🗑", "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n🧠 <(^_^ <) 🗑", "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n🧠 <(^_^ <) 🗑", "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n🧠 <(^_^ <) 🗑", "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n🧠<(^_^ <) 🗑", "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n(> ^_^)>🧠 🗑", "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n (> ^_^)>🧠 🗑", "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n (> ^_^)>🧠 🗑", "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n (> ^_^)>🧠 🗑", "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n (> ^_^)>🧠 🗑", "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n (> ^_^)>🧠🗑", "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n (> ^_^)>🗑", "YOᑌᖇ ᗷᖇᗩIᑎ ➡️ 🧠\n\n <(^_^ <)🗑", ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i %14 ]) @borg.on(admin_cmd(pattern=f"bombs$", outgoing=True)) async def _(event): if event.fwd_from: return await event.edit("▪️▪️▪️▪️ \n▪️▪️▪️▪️ \n▪️▪️▪️▪️ \n▪️▪️▪️▪️ \n▪️▪️▪️▪️ \n") await asyncio.sleep(0.5) await event.edit("💣💣💣💣 \n▪️▪️▪️▪️ \n▪️▪️▪️▪️ \n▪️▪️▪️▪️ \n▪️▪️▪️▪️ \n") await asyncio.sleep(0.5) await event.edit("▪️▪️▪️▪️ \n💣💣💣💣 \n▪️▪️▪️▪️ \n▪️▪️▪️▪️ \n▪️▪️▪️▪️ \n") await asyncio.sleep(0.5) await event.edit("▪️▪️▪️▪️ \n▪️▪️▪️▪️ \n💣💣💣💣 \n▪️▪️▪️▪️ \n▪️▪️▪️▪️ \n") await asyncio.sleep(0.5) await event.edit("▪️▪️▪️▪️ \n▪️▪️▪️▪️ \n▪️▪️▪️▪️ \n💣💣💣💣 \n▪️▪️▪️▪️ \n") await asyncio.sleep(0.5) await event.edit("▪️▪️▪️▪️ \n▪️▪️▪️▪️ \n▪️▪️▪️▪️ \n▪️▪️▪️▪️ \n💣💣💣💣 \n") await asyncio.sleep(1) await event.edit("▪️▪️▪️▪️ \n▪️▪️▪️▪️ \n▪️▪️▪️▪️ \n▪️▪️▪️▪️ \n💥💥💥💥 \n") await asyncio.sleep(0.5) await event.edit("▪️▪️▪️▪️ \n▪️▪️▪️▪️ \n▪️▪️▪️▪️ \n💥💥💥💥 \n💥💥💥💥 \n") await asyncio.sleep(0.5) await event.edit("▪️▪️▪️▪️ \n▪️▪️▪️▪️ \n▪️▪️▪️▪️ \n▪️▪️▪️▪️ \n😵😵😵😵 \n") await asyncio.sleep(0.5) await event.edit("`RIP PLOXXX......`") await asyncio.sleep(2) @borg.on(admin_cmd(pattern=f"kill$", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.7 animation_ttl = range(0, 12) await event.edit("ready to die dude.....") animation_chars = [ "Fiiiiire", "( ・ิω・ิ)︻デ═一-->", "---->____________⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠", "------>__________⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠", "-------->⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠_________", "---------->⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠_______", "------------>⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠_____", "-------------->⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠⁠____", "------------------>", "------>;(^。^)ノ", "( ̄ー ̄) DEAD", "`Targeted user killed by Headshot 😈.😈.😈.😈.😈.😈.😈......`\n '#Sad_Reacts_Online'\n", ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 12]) @borg.on(admin_cmd(pattern="ding$")) async def _(event): animation_interval = 0.3 animation_ttl = range(0, 30) animation_chars = [ "🔴⬛⬛⬜⬜\n⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜", "⬜⬜⬛⬜⬜\n⬜⬛⬜⬜⬜\n🔴⬜⬜⬜⬜", "⬜⬜⬛⬜⬜\n⬜⬜⬛⬜⬜\n⬜⬜🔴⬜⬜", "⬜⬜⬛⬜⬜\n⬜⬜⬜⬛⬜\n⬜⬜⬜⬜🔴", "⬜⬜⬛⬛🔴\n⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜", "⬜⬜⬛⬜⬜\n⬜⬜⬜⬛⬜\n⬜⬜⬜⬜🔴", "⬜⬜⬛⬜⬜\n⬜⬜⬛⬜⬜\n⬜⬜🔴⬜⬜", "⬜⬜⬛⬜⬜\n⬜⬛⬜⬜⬜\n🔴⬜⬜⬜⬜", "🔴⬛⬛⬜⬜\n⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜", "⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜\n⬜ [CAT IS BEST](https://github.com/Sur-vivor/CatUserbot) ⬜\n⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜" ] if event.fwd_from: return await event.edit("ding..dong..ding..dong ...") await asyncio.sleep(4) for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 10]) @borg.on(admin_cmd(pattern=f"hypno$", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 15) await event.edit("hypo....") animation_chars = [ "⬜⬜⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜⬜⬜", "⬜⬜⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜⬜⬜\n⬜⬜⬜⬛⬜⬜⬜\n⬜⬜⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜⬜⬜", "⬜⬜⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜⬜⬜\n⬜⬜⬛⬛⬛⬜⬜\n⬜⬜⬛⬜⬛⬜⬜\n⬜⬜⬛⬛⬛⬜⬜\n⬜⬜⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜⬜⬜", "⬜⬜⬜⬜⬜⬜⬜\n⬜⬛⬛⬛⬛⬛⬜\n⬜⬛⬜⬜⬜⬛⬜\n⬜⬛⬜⬜⬜⬛⬜\n⬜⬛⬜⬜⬜⬛⬜\n⬜⬛⬛⬛⬛⬛⬜\n⬜⬜⬜⬜⬜⬜⬜", "⬛⬛⬛⬛⬛⬛⬛\n⬛⬜⬜⬜⬜⬜⬛\n⬛⬜⬜⬜⬜⬜⬛\n⬛⬜⬜⬜⬜⬜⬛\n⬛⬜⬜⬜⬜⬜⬛\n⬛⬜⬜⬜⬜⬜⬛\n⬛⬛⬛⬛⬛⬛⬛", "⬛⬜⬛⬜⬛⬜⬛⬜\n⬜⬛⬜⬛⬜⬛⬜⬛\n⬛⬜⬛⬜⬛⬜⬛⬜\n⬜⬛⬜⬛⬜⬛⬜⬛\n⬛⬜⬛⬜⬛⬜⬛⬜\n⬜⬛⬜⬛⬜⬛⬜⬛\n⬛⬜⬛⬜⬛⬜⬛⬜\n⬜⬛⬜⬛⬜⬛⬜⬛", "⬜⬛⬜⬛⬜⬛⬜⬛\n⬛⬜⬛⬜⬛⬜⬛⬜\n⬜⬛⬜⬛⬜⬛⬜⬛\n⬛⬜⬛⬜⬛⬜⬛⬜\n⬜⬛⬜⬛⬜⬛⬜⬛\n⬛⬜⬛⬜⬛⬜⬛⬜\n⬜⬛⬜⬛⬜⬛⬜⬛\n⬛⬜⬛⬜⬛⬜⬛⬜", "⬜⬜⬜⬜⬜⬜⬜\n⬜⬛⬛⬛⬛⬛⬜\n⬜⬛⬜⬜⬜⬛⬜\n⬜⬛⬜⬛⬜⬛⬜\n⬜⬛⬜⬜⬜⬛⬜\n⬜⬛⬛⬛⬛⬛⬜\n⬜⬜⬜⬜⬜⬜⬜", "⬛⬛⬛⬛⬛⬛⬛\n⬛⬜⬜⬜⬜⬜⬛\n⬛⬜⬛⬛⬛⬜⬛\n⬛⬜⬛⬜⬛⬜⬛\n⬛⬜⬛⬛⬛⬜⬛\n⬛⬜⬜⬜⬜⬜⬛\n⬛⬛⬛⬛⬛⬛⬛", "⬜⬜⬜⬜⬜⬜⬜\n⬜⬛⬛⬛⬛⬛⬜\n⬜⬛⬜⬜⬜⬛⬜\n⬜⬛⬜⬛⬜⬛⬜\n⬜⬛⬜⬜⬜⬛⬜\n⬜⬛⬛⬛⬛⬛⬜\n⬜⬜⬜⬜⬜⬜⬜", "⬛⬛⬛⬛⬛⬛⬛\n⬛⬜⬜⬜⬜⬜⬛\n⬛⬜⬛⬛⬛⬜⬛\n⬛⬜⬛⬜⬛⬜⬛\n⬛⬜⬛⬛⬛⬜⬛\n⬛⬜⬜⬜⬜⬜⬛\n⬛⬛⬛⬛⬛⬛⬛", "⬜⬜⬜⬜⬜⬜⬜\n⬜⬛⬛⬛⬛⬛⬜\n⬜⬛⬜⬜⬜⬛⬜\n⬜⬛⬜⬛⬜⬛⬜\n⬜⬛⬜⬜⬜⬛⬜\n⬜⬛⬛⬛⬛⬛⬜\n⬜⬜⬜⬜⬜⬜⬜", "⬛⬛⬛⬛⬛\n⬛⬜⬜⬜⬛\n⬛⬜⬛⬜⬛\n⬛⬜⬜⬜⬛\n⬛⬛⬛⬛⬛", "⬜⬜⬜\n⬜⬛⬜\n⬜⬜⬜", "[👉🔴👈])" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 15]) @borg.on(admin_cmd(pattern="gangasta$")) async def _(event): await event.edit("EVERyBOdy") await asyncio.sleep(0.3) await event.edit("iZ") await asyncio.sleep(0.2) await event.edit("GangSTur") await asyncio.sleep(0.5) await event.edit("UNtIL ") await asyncio.sleep(0.2) await event.edit("I") await asyncio.sleep(0.3) await event.edit("ArRivE") await asyncio.sleep(0.3) await event.edit("🔥🔥🔥") await asyncio.sleep(0.3) await event.edit("EVERyBOdy iZ GangSTur UNtIL I ArRivE 🔥🔥🔥") @borg.on(admin_cmd(pattern=f"charging$")) async def timer_blankx(e): txt=e.text[10:] + '\n\n`Tesla Wireless Charging (beta) Started...\nDevice Detected: Nokia 1100\nBattery Percentage:` ' j=10 k=j for j in range(j): await e.edit(txt + str(k)) k=k+10 await asyncio.sleep(1) await asyncio.sleep(1) await e.edit("`Tesla Wireless Charging (beta) Completed...\nDevice Detected: Nokia 1100 (Space Grey Varient)\nBattery Percentage:` [100%](https://telegra.ph/file/a45aa7450c8eefed599d9.mp4) ", link_preview=True) @borg.on(admin_cmd("bigoof")) async def _(event): if event.fwd_from: return animation_interval = 0.1 animation_ttl = range(0, 7) await event.edit("┏━━━┓╋╋╋╋┏━━━┓ \n┃┏━┓┃╋╋╋╋┃┏━┓┃ \n┃┃╋┃┣┓┏┓┏┫┃╋┃┃ \n┃┃╋┃┃┗┛┗┛┃┃╋┃┃ \n┃┗━┛┣┓┏┓┏┫┗━┛┃ \n┗━━━┛┗┛┗┛┗━━━┛") animation_chars = [ "╭━━━╮╱╱╱╭━╮ \n┃╭━╮┃╱╱╱┃╭╯ \n┃┃╱┃┣━━┳╯╰╮ \n┃┃╱┃┃╭╮┣╮╭╯ \n┃╰━╯┃╰╯┃┃┃ \n╰━━━┻━━╯╰╯ ", "╭━━━╮╱╱╱╱╱╱╭━╮ \n┃╭━╮┃╱╱╱╱╱╱┃╭╯ \n┃┃╱┃┣━━┳━━┳╯╰╮ \n┃┃╱┃┃╭╮┃╭╮┣╮╭╯ \n┃╰━╯┃╰╯┃╰╯┃┃┃ \n ╰━━━┻━━┻━━╯╰╯", "╭━━━╮╱╱╱╱╱╱╱╱╱╭━╮ \n┃╭━╮┃╱╱╱╱╱╱╱╱╱┃╭╯ \n┃┃╱┃┣━━┳━━┳━━┳╯╰╮ \n┃┃╱┃┃╭╮┃╭╮┃╭╮┣╮╭╯ \n┃╰━╯┃╰╯┃╰╯┃╰╯┃┃┃ \n╰━━━┻━━┻━━┻━━╯╰╯", "╭━━━╮╱╱╱╱╱╱╱╱╱╱╱╱╭━╮ \n┃╭━╮┃╱╱╱╱╱╱╱╱╱╱╱╱┃╭╯ \n┃┃╱┃┣━━┳━━┳━━┳━━┳╯╰╮ \n┃┃╱┃┃╭╮┃╭╮┃╭╮┃╭╮┣╮╭╯ \n┃╰━╯┃╰╯┃╰╯┃╰╯┃╰╯┃┃┃ \n╰━━━┻━━┻━━┻━━┻━━╯╰╯", "╭━━━╮╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╭━╮ \n┃╭━╮┃╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱┃╭╯ \n┃┃╱┃┣━━┳━━┳━━┳━━┳━━┳╯╰╮ \n┃┃╱┃┃╭╮┃╭╮┃╭╮┃╭╮┃╭╮┣╮╭╯ \n┃╰━╯┃╰╯┃╰╯┃╰╯┃╰╯┃╰╯┃┃┃ \n╰━━━┻━━┻━━┻━━┻━━┻━━╯╰╯", "╭━━━╮╱╱╱╱╱╱╱╱╱╱╱╱╭━╮ \n┃╭━╮┃╱╱╱╱╱╱╱╱╱╱╱╱┃╭╯ \n┃┃╱┃┣━━┳━━┳━━┳━━┳╯╰╮ \n┃┃╱┃┃╭╮┃╭╮┃╭╮┃╭╮┣╮╭╯ \n┃╰━╯┃╰╯┃╰╯┃╰╯┃╰╯┃┃┃ \n╰━━━┻━━┻━━┻━━┻━━╯╰╯", "╭━━━╮╱╱╱╱╱╱╱╱╱╭━╮ \n┃╭━╮┃╱╱╱╱╱╱╱╱╱┃╭╯ \n┃┃╱┃┣━━┳━━┳━━┳╯╰╮ \n┃┃╱┃┃╭╮┃╭╮┃╭╮┣╮╭╯ \n┃╰━╯┃╰╯┃╰╯┃╰╯┃┃┃ \n╰━━━┻━━┻━━┻━━╯╰╯" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 7]) @borg.on(admin_cmd(pattern="g1 ?(.*)")) async def payf(event): paytext=event.pattern_match.group(1) pay = "{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}".format(paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1,paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1,paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1,paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1,paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1,paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1,paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1,paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1,paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1,paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1, paytext*1) await event.edit(pay) @borg.on(admin_cmd(pattern="uff ?(.*)")) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 13) animation_chars = [ "U", "Uf", "Uff", "Ufffff", "Uffffff", "Ufffffff", "Uffffffff", "Ufffffffff", "Uffffffffff", "Ufffffffffff", "Uffffffffffff", "Ufffffffffffff", "Uffffffffffffff" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 13]) @borg.on(admin_cmd(pattern="ctext ?(.*)")) async def payf(event): paytext=event.pattern_match.group(1) pay = "{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}".format(paytext*8, paytext*8, paytext*2, paytext*2, paytext*2, paytext*2, paytext*2, paytext*2, paytext*2, paytext*2, paytext*8, paytext*8) await event.edit(pay) @borg.on(admin_cmd(pattern="ftext ?(.*)")) async def payf(event): paytext=event.pattern_match.group(1) pay = "{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}".format(paytext*8, paytext*8, paytext*2, paytext*2, paytext*2, paytext*6, paytext*6, paytext*2, paytext*2, paytext*2, paytext*2, paytext*2) await event.edit(pay) @borg.on(admin_cmd(outgoing=True, pattern="kf$(.*)")) async def _(event): r = random.randint(0, 3) logger.debug(r) if r == 0: await event.edit("┏━━━┓\n┃┏━━┛\n┃┗━━┓\n┃┏━━┛\n┃┃\n┗┛") else: r == 1 await event.edit("╭━━━╮\n┃╭━━╯\n┃╰━━╮\n┃╭━━╯\n┃┃\n╰╯") @borg.on(admin_cmd(pattern="f (.*)")) async def payf(e): paytext = e.pattern_match.group(1) pay = "{}\n{}\n{}\n{}\n{}\n{}\n{}".format(paytext*5, paytext*1,paytext*1, paytext*4, paytext*1, paytext*1, paytext*1) await e.edit(pay) @borg.on(admin_cmd(pattern=f"loading$", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 20) animation_chars = [ "▮", "▯", "▬", "▭", "‎" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 4]) @borg.on(admin_cmd(pattern=f"square$", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 20) animation_chars = [ "◧", "◨", "◧", "◨", "‎" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 4]) @borg.on(admin_cmd(pattern=f"up$", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 20) animation_chars = [ "╹", "╻", "╹", "╻", "‎" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 4]) @borg.on(admin_cmd(pattern=f"round$", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 20) animation_chars = [ "⚫", "⬤", "●", "∘", "‎" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 4]) @borg.on(admin_cmd(pattern=f"hart$", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.5 animation_ttl = range(0, 20) animation_chars = [ "🖤", "❤️", "🖤", "❤️", "‎" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 4]) @borg.on(admin_cmd(pattern=f"anim$", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 11) animation_chars = [ "😁", "😧", "😡", "😢", "‎**HellBoy Bolte Public**", "😁", "😧", "😡", "😢", "[PAPA HERE](https://t.me/Kraken_The_BadASS)", "__**Good to See you Guys....**__" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 11]) @borg.on(admin_cmd(pattern=f"fnl$", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 2 animation_ttl = range(0, 6) animation_chars = [ "😁🏿", "😁🏾", "😁🏽", "😁🏼", "‎😁", "**Good to See you Guys....**" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 6]) @borg.on(admin_cmd(pattern=f"monkey$", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 2 animation_ttl = range(0, 6) animation_chars = [ "🐵", "🙉", "🙈", "🙊", "🖕‎🐵🖕", "**Good to See you Guys....**" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 6]) @borg.on(admin_cmd(pattern=f"herber$", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 2 animation_ttl = range(0, 11) animation_chars = [ "**===================**\n **Server Details** \n**===================**\n\n\n**=>>> CPU <<<=**\n\n **🔹current_freq:** 2500.09MHz\n **🔹total_usage:** 10%\n\n ●○○○○○○○○○\n\n **🔹cpu core**\n\n **🔹core_usage:** 5.9%\n **🔹current_freq:** 2500.09MHz\n |██████████▉ |\n \n**=>>> RAM <<<=**\n\n **🔹free:** 8.13GB\n **🔹used:** 33.77GB\n **🔹total:** 60.0GB\n \n ●●●●●●●○○○\n\n\n**=>>> DISK <<<=**\n\n **🔹free:** 224.12GB\n **🔹used:** 131.84GB\n **🔹total:** 375.02GB\n **🔹usage:** 37.0%\n\n |████▍ |\n\n\n**=>>> NETWORK <<<=**\n\n **🔹sent:** 158.98GB\n **🔹recv:** 146.27GB\n **🔹sent_packets:** 84518799\n **🔹recv_packets:** 159720314\n\n\n**===================**\n", "**===================**\n **Server Details** \n**===================**\n\n\n**=>>> CPU <<<=**\n\n **🔹current_freq:** 2500.09MHz\n **🔹total_usage:** 30%\n\n ●●●○○○○○○○\n\n **🔹cpu core**\n\n **🔹core_usage:** 20.4%\n **🔹current_freq:** 2500.09MHz\n |██████████▉ |\n \n**=>>> RAM <<<=**\n\n **🔹free:** 7.18GB\n **🔹used:** 28.26GB\n **🔹total:** 60.0GB\n \n ●●●●●●●●●●\n\n\n**=>>> DISK <<<=**\n\n **🔹free:** 224.12GB\n **🔹used:** 131.84GB\n **🔹total:** 375.02GB\n **🔹usage:** 37.0%\n\n |████▍ |\n\n\n**=>>> NETWORK <<<=**\n\n **🔹sent:** 146.27GB\n **🔹recv:** 124.33GB\n **🔹sent_packets:** 54635686\n **🔹recv_packets:** 143565654\n\n\n**===================**\n", "**===================**\n **Server Details** \n**===================**\n\n\n**=>>> CPU <<<=**\n\n **🔹current_freq:** 2500.09MHz\n **🔹total_usage:** 60%\n\n ●●●●●●○○○○\n\n **🔹cpu core**\n\n **🔹core_usage:** 60.9%\n **🔹current_freq:** 2500.09MHz\n |██████████▉ |\n \n**=>>> RAM <<<=**\n\n **🔹free:** 6.52GB\n **🔹used:** 35.78GB\n **🔹total:** 60.0GB\n \n ●●●○○○○○○○\n\n\n**=>>> DISK <<<=**\n\n **🔹free:** 224.12GB\n **🔹used:** 131.84GB\n **🔹total:** 375.02GB\n **🔹usage:** 37.0%\n\n |████▍ |\n\n\n**=>>> NETWORK <<<=**\n\n **🔹sent:** 124.33GB\n **🔹recv:** 162.48GB\n **🔹sent_packets:** 25655655\n **🔹recv_packets:** 165289456\n\n\n**===================**\n", "**===================**\n **Server Details** \n**===================**\n\n\n**=>>> CPU <<<=**\n\n **🔹current_freq:** 2500.09MHz\n **🔹total_usage:** 100%\n\n ●●●●●●●●●●\n\n **🔹cpu core**\n\n **🔹core_usage:** 100.0%\n **🔹current_freq:** 2500.09MHz\n |██████████▉ |\n \n**=>>> RAM <<<=**\n\n **🔹free:** 9.81GB\n **🔹used:** 30.11GB\n **🔹total:** 60.0GB\n \n ●●●●●●●●●●\n\n\n**=>>> DISK <<<=**\n\n **🔹free:** 224.12GB\n **🔹used:** 131.84GB\n **🔹total:** 375.02GB\n **🔹usage:** 37.0%\n\n |████▍ |\n\n\n**=>>> NETWORK <<<=**\n\n **🔹sent:** 162.48GB\n **🔹recv:** 175.75GB\n **🔹sent_packets:** 56565435\n **🔹recv_packets:** 135345655\n\n\n**===================**\n", "**===================**\n **Server Details** \n**===================**\n\n\n**=>>> CPU <<<=**\n\n **🔹current_freq:** 2500.09MHz\n **🔹total_usage:** 70%\n\n ●●●●●●●○○○\n\n **🔹cpu core**\n\n **🔹core_usage:** 80.4%\n **🔹current_freq:** 2500.09MHz\n |██████████▉ |\n \n**=>>> RAM <<<=**\n\n **🔹free:** 5.76GB\n **🔹used:** 29.35GB\n **🔹total:** 60.0GB\n \n ●●●●●●●○○○\n\n\n**=>>> DISK <<<=**\n\n **🔹free:** 224.12GB\n **🔹used:** 131.84GB\n **🔹total:** 375.02GB\n **🔹usage:** 37.0%\n\n |████▍ |\n\n\n**=>>> NETWORK <<<=**\n\n **🔹sent:** 175.75GB\n **🔹recv:** 118.55GB\n **🔹sent_packets:** 36547698\n **🔹recv_packets:** 185466554\n\n\n**===================**\n", "**===================**\n **Server Details** \n**===================**\n\n\n**=>>> CPU <<<=**\n\n **🔹current_freq:** 2500.09MHz\n **🔹total_usage:** 60%\n\n ●●●●●●○○○○\n\n **🔹cpu core**\n\n **🔹core_usage:** 62.9%\n **🔹current_freq:** 2500.09MHz\n |██████████▉ |\n \n**=>>> RAM <<<=**\n\n **🔹free:** 8.23GB\n **🔹used:** 33.32GB\n **🔹total:** 60.0GB\n \n ●●●●●●○○○○\n\n\n**=>>> DISK <<<=**\n\n **🔹free:** 224.12GB\n **🔹used:** 131.84GB\n **🔹total:** 375.02GB\n **🔹usage:** 37.0%\n\n |████▍ |\n\n\n**=>>> NETWORK <<<=**\n\n **🔹sent:** 118.55GB\n **🔹recv:** 168.65GB\n **🔹sent_packets:** 24786554\n **🔹recv_packets:** 156745865\n\n\n**===================**\n", "**===================**\n **Server Details** \n**===================**\n\n\n**=>>> CPU <<<=**\n\n **🔹current_freq:** 2500.09MHz\n **🔹total_usage:** 30%\n\n ●●●○○○○○○○\n\n **🔹cpu core**\n\n **🔹core_usage:** 30.6%\n **🔹current_freq:** 2500.09MHz\n |██████████▉ |\n \n**=>>> RAM <<<=**\n\n **🔹free:** 9.75GB\n **🔹used:** 36.54GB\n **🔹total:** 60.0GB\n \n ●●●●●●●●●●\n\n\n**=>>> DISK <<<=**\n\n **🔹free:** 224.12GB\n **🔹used:** 131.84GB\n **🔹total:** 375.02GB\n **🔹usage:** 37.0%\n\n |████▍ |\n\n\n**=>>> NETWORK <<<=**\n\n **🔹sent:** 168.65GB\n **🔹recv:** 128.35GB\n **🔹sent_packets:** 56565435\n **🔹recv_packets:** 1475823589\n\n\n**===================**\n", "**===================**\n **Server Details** \n**===================**\n\n\n**=>>> CPU <<<=**\n\n **🔹current_freq:** 2500.09MHz\n **🔹total_usage:** 10%\n\n ●○○○○○○○○○\n\n **🔹cpu core**\n\n **🔹core_usage:** 10.2%\n **🔹current_freq:** 2500.09MHz\n |██████████▉ |\n \n**=>>> RAM <<<=**\n\n **🔹free:** 10.20GB\n **🔹used:** 25.40GB\n **🔹total:** 60.0GB\n \n ●●●●●●○○○○\n\n\n**=>>> DISK <<<=**\n\n **🔹free:** 224.12GB\n **🔹used:** 131.84GB\n **🔹total:** 375.02GB\n **🔹usage:** 37.0%\n\n |████▍ |\n\n\n**=>>> NETWORK <<<=**\n\n **🔹sent:** 128.35GB\n **🔹recv:** 108.31GB\n **🔹sent_packets:** 54635686\n **🔹recv_packets:** 157865426\n\n\n**===================**\n", "**===================**\n **Server Details** \n**===================**\n\n\n**=>>> CPU <<<=**\n\n **🔹current_freq:** 2500.09MHz\n **🔹total_usage:** 100%\n\n ●●●●●●●●●●\n\n **🔹cpu core**\n\n **🔹core_usage:** 100.0%\n **🔹current_freq:** 2500.09MHz\n |██████████▉ |\n \n**=>>> RAM <<<=**\n\n **🔹free:** 5.25GB\n **🔹used:** 31.14GB\n **🔹total:** 60.0GB\n \n ●●●●●●●●●●\n\n\n**=>>> DISK <<<=**\n\n **🔹free:** 224.12GB\n **🔹used:** 131.84GB\n **🔹total:** 375.02GB\n **🔹usage:** 37.0%\n\n |████▍ |\n\n\n**=>>> NETWORK <<<=**\n\n **🔹sent:** 108.31GB\n **🔹recv:** 167.17GB\n **🔹sent_packets:** 84518799\n **🔹recv_packets:** 124575356\n\n\n**===================**\n", "**===================**\n **Server Details** \n**===================**\n\n\n**=>>> CPU <<<=**\n\n **🔹current_freq:** 2500.09MHz\n **🔹total_usage:** 70%\n\n ●●●●●●●○○○\n\n **🔹cpu core**\n\n **🔹core_usage:** 76.2%\n **🔹current_freq:** 2500.09MHz\n |██████████▉ |\n \n**=>>> RAM <<<=**\n\n **🔹free:** 8.01GB\n **🔹used:** 33.27GB\n **🔹total:** 60.0GB\n \n ●●●○○○○○○○\n\n\n**=>>> DISK <<<=**\n\n **🔹free:** 224.12GB\n **🔹used:** 131.84GB\n **🔹total:** 375.02GB\n **🔹usage:** 37.0%\n\n |████▍ |\n\n\n**=>>> NETWORK <<<=**\n\n **🔹sent:** 167.17GB\n **🔹recv:** 158.98GB\n **🔹sent_packets:** 36547698\n **🔹recv_packets:** 165455856\n\n\n**===================**\n", ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 11]) @borg.on(admin_cmd(pattern=f"hand$", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 14) animation_chars = [ "👈", "👉", "☝️", "👆", "🖕", "👇", "✌️", "🤞", "🖖", "🤘", "🤙", "🖐️", "👌" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 14]) @borg.on(admin_cmd(pattern=f"gsg$", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 13) animation_chars = [ "🔟", "9️⃣", "8️⃣", "7️⃣", "6️⃣", "5️⃣", "4️⃣", "3️⃣", "2️⃣", "1️⃣", "0️⃣", "🆘" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 13]) @borg.on(admin_cmd(pattern=r"theart$", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 54) animation_chars = [ "❤️", "🧡", "💛", "💚", "💙", "💜", "🖤", "💘", "💝", "❤️", "🧡", "💛", "💚", "💙", "💜", "🖤", "💘", "💝" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 18]) @borg.on(admin_cmd(pattern=r"fdance")) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 5) await event.edit("Connecting..") animation_chars = [ "⠀⠀⠀⣶⣿⣶\n⠀⠀⠀⣿⣿⣿⣀\n⠀⣀⣿⣿⣿⣿⣿⣿\n⣶⣿⠛⣭⣿⣿⣿⣿\n⠛⠛⠛⣿⣿⣿⣿⠿\n⠀⠀⠀⠀⣿⣿⣿\n⠀⠀⣀⣭⣿⣿⣿⣿⣀\n⠀⠤⣿⣿⣿⣿⣿⣿⠉\n⠀⣿⣿⣿⣿⣿⣿⠉\n⣿⣿⣿⣿⣿⣿\n⣿⣿⣶⣿⣿\n⠉⠛⣿⣿⣶⣤\n⠀⠀⠉⠿⣿⣿⣤\n⠀⠀⣀⣤⣿⣿⣿\n⠀⠒⠿⠛⠉⠿⣿\n⠀⠀⠀⠀⠀⣀⣿⣿\n⠀⠀⠀⠀⣶⠿⠿⠛\n", "⠀⠀⠀⠀⠀⠀⠀⠀⠀⣤⣤\n⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿\n⠀⠀⣶⠀⠀⣀⣤⣶⣤⣉⣿⣿⣤⣀\n⠤⣤⣿⣤⣿⠿⠿⣿⣿⣿⣿⣿⣿⣿⣿⣀\n⠀⠛⠿⠀⠀⠀⠀⠉⣿⣿⣿⣿⣿⠉⠛⠿⣿⣤\n⠀⠀⠀⠀⠀⠀⠀⠀⠿⣿⣿⣿⠛⠀⠀⠀⣶⠿\n⠀⠀⠀⠀⠀⠀⠀⠀⣀⣿⣿⣿⣿⣤⠀⣿⠿\n⠀⠀⠀⠀⠀⠀⠀⣶⣿⣿⣿⣿⣿⣿⣿⣿\n⠀⠀⠀⠀⠀⠀⠀⠿⣿⣿⣿⣿⣿⠿⠉⠉\n⠀⠀⠀⠀⠀⠀⠀⠉⣿⣿⣿⣿⠿\n⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⠉\n⠀⠀⠀⠀⠀⠀⠀⠀⣛⣿⣭⣶⣀\n⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⣿⣿\n⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⠉⠛⣿\n⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⠀⠀⣿⣿\n⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣉⠀⣶⠿\n⠀⠀⠀⠀⠀⠀⠀⠀⣶⣿⠿\n⠀⠀⠀⠀⠀⠀⠀⠛⠿⠛\n", "⠀⠀⠀⠀⠀⠀⠀⠀⠀⣤⣶\n⠀⠀⠀⠀⠀⣀⣀⠀⣶⣿⣿⠶\n⣶⣿⠿⣿⣿⣿⣿⣿⣿⣿⣿⣤⣤\n⠀⠉⠶⣶⣀⣿⣿⣿⣿⣿⣿⣿⠿⣿⣤⣀\n⠀⠀⠀⣿⣿⠿⠉⣿⣿⣿⣿⣭⠀⠶⠿⠿\n⠀⠀⠛⠛⠿⠀⠀⣿⣿⣿⣉⠿⣿⠶\n⠀⠀⠀⠀⠀⣤⣶⣿⣿⣿⣿⣿\n⠀⠀⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⠒\n⠀⠀⠀⠀⣀⣿⣿⣿⣿⣿⣿⣿\n⠀⠀⠀⠀⠀⣿⣿⣿⠛⣭⣭⠉\n⠀⠀⠀⠀⠀⣿⣿⣭⣤⣿⠛\n⠀⠀⠀⠀⠀⠛⠿⣿⣿⣿⣭\n⠀⠀⠀⠀⠀⠀⠀⣿⣿⠉⠛⠿⣶⣤\n⠀⠀⠀⠀⠀⠀⣀⣿⠀⠀⣶⣶⠿⠿⠿\n⠀⠀⠀⠀⠀⠀⣿⠛\n⠀⠀⠀⠀⠀⠀⣭⣶\n", "⠀⠀⠀⠀⠀⠀⣶⣿⣶\n⠀⠀⠀⣤⣤⣤⣿⣿⣿\n⠀⠀⣶⣿⣿⣿⣿⣿⣿⣿⣶\n⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⣿\n⠀⠀⣿⣉⣿⣿⣿⣿⣉⠉⣿⣶\n⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⠿⣿\n⠀⣤⣿⣿⣿⣿⣿⣿⣿⠿⠀⣿⣶\n⣤⣿⠿⣿⣿⣿⣿⣿⠿⠀⠀⣿⣿⣤\n⠉⠉⠀⣿⣿⣿⣿⣿⠀⠀⠒⠛⠿⠿⠿\n⠀⠀⠀⠉⣿⣿⣿⠀⠀⠀⠀⠀⠀⠉\n⠀⠀⠀⣿⣿⣿⣿⣿⣶\n⠀⠀⠀⠀⣿⠉⠿⣿⣿\n⠀⠀⠀⠀⣿⣤⠀⠛⣿⣿\n⠀⠀⠀⠀⣶⣿⠀⠀⠀⣿⣶\n⠀⠀⠀⠀⠀⠀⠀⠀⠀⣭⣿⣿\n⠀⠀⠀⠀⠀⠀⠀⠀⣤⣿⣿⠉\n", "⠀⠀⠀⠀⠀⠀⣤⣶⣶\n⠀⠀⠀⠀⠀⠀⣿⣿⣿⣿⣀⣀\n⠀⠀⠀⠀⠀⣀⣶⣿⣿⣿⣿⣿⣿\n⣤⣶⣀⠿⠶⣿⣿⣿⠿⣿⣿⣿⣿\n⠉⠿⣿⣿⠿⠛⠉⠀⣿⣿⣿⣿⣿\n⠀⠀⠉⠀⠀⠀⠀⠀⠀⣿⣿⣿⣿⣤⣤\n⠀⠀⠀⠀⠀⠀⠀⣤⣶⣿⣿⣿⣿⣿⣿\n⠀⠀⠀⠀⠀⣀⣿⣿⣿⣿⣿⠿⣿⣿⣿⣿\n⠀⠀⠀⠀⣀⣿⣿⣿⠿⠉⠀⠀⣿⣿⣿⣿\n⠀⠀⠀⠀⣿⣿⠿⠉⠀⠀⠀⠀⠿⣿⣿⠛\n⠀⠀⠀⠀⠛⣿⣿⣀⠀⠀⠀⠀⠀⣿⣿⣀\n⠀⠀⠀⠀⠀⣿⣿⣿⠀⠀⠀⠀⠀⠿⣿⣿\n⠀⠀⠀⠀⠀⠉⣿⣿⠀⠀⠀⠀⠀⠀⠉⣿\n⠀⠀⠀⠀⠀⠀⠀⣿⠀⠀⠀⠀⠀⠀⣀⣿\n⠀⠀⠀⠀⠀⠀⣀⣿⣿\n⠀⠀⠀⠀⠤⣿⠿⠿⠿\n", ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 5]) @borg.on(admin_cmd(pattern=f"snake$", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 27) await event.edit("snake..") animation_chars = [ "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◻️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◻️◻️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◻️◻️◻️️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◻️◻️◻️◻️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "‎◻️◻️◻️◻️◻️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◻️◻️◻️◻️◻️\n◼️◼️◼️◼️◻️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◻️◻️◻️◻️◻️\n◼️◼️◼️◼️◻️\n◼️◼️◼️◼️◻️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◻️◻️◻️◻️◻️\n◼️◼️◼️◼️◻️\n◼️◼️◼️◼️◻️\n◼️◼️◼️◼️◻️\n◼️◼️◼️◼️◼️", "◻️◻️◻️◻️◻️\n◼️◼️◼️◼️◻️\n◼️◼️◼️◼️◻️\n◼️◼️◼️◼️◻️\n◼️◼️◼️◼️◻️", "◻️◻️◻️◻️◻️\n◼️◼️◼️◼️◻️\n◼️◼️◼️◼️◻️\n◼️◼️◼️◼️◻️\n◼️◼️◼️◻️◻️", "◻️◻️◻️◻️◻️\n◼️◼️◼️◼️◻️\n◼️◼️◼️◼️◻️\n◼️◼️◼️◼️◻️\n◼️◼️◻️◻️◻️", "◻️◻️◻️◻️◻️\n◼️◼️◼️◼️◻️\n◼️◼️◼️◼️◻️\n◼️◼️◼️◼️◻️\n◼️◻️◻️◻️◻️", "◻️◻️◻️◻️◻️\n◼️◼️◼️◼️◻️\n◼️◼️◼️◼️◻️\n◼️◼️◼️◼️◻️\n◻️◻️◻️◻️◻️", "◻️◻️◻️◻️◻️\n◼️◼️◼️◼️◻️\n◼️◼️◼️◼️◻️\n◻️◼️◼️◼️◻️\n◻️◻️◻️◻️◻️", "◻️◻️◻️◻️◻️\n◼️◼️◼️◼️◻️\n◻️◼️◼️◼️◻️\n◻️◼️◼️◼️◻️\n◻️◻️◻️◻️◻️", "◻️◻️◻️◻️◻️\n◻️◼️◼️◼️◻️\n◻️◼️◼️◼️◻️\n◻️◼️◼️◼️◻️\n◻️◻️◻️◻️◻️", "◻️◻️◻️◻️◻️\n◻️◻️◼️◼️◻️\n◻️◼️◼️◼️◻️\n◻️◼️◼️◼️◻️\n◻️◻️◻️◻️◻️", "◻️◻️◻️◻️◻️\n◻️◻️◻️◼️◻️\n◻️◼️◼️◼️◻️\n◻️◼️◼️◼️◻️\n◻️◻️◻️◻️◻️", "◻️◻️◻️◻️◻️\n◻️◻️◻️◻️◻️\n◻️◼️◼️◼️◻️\n◻️◼️◼️◼️◻️\n◻️◻️◻️◻️◻️", "◻️◻️◻️◻️◻️\n◻️◻️◻️◻️◻️\n◻️◼️◼️◻️◻️\n◻️◼️◼️◼️◻️\n◻️◻️◻️◻️◻️", "◻️◻️◻️◻️◻️\n◻️◻️◻️◻️◻️\n◻️◼️◼️◻️◻️\n◻️◼️◼️◻️◻️\n◻️◻️◻️◻️◻️", "◻️◻️◻️◻️◻️\n◻️◻️◻️◻️◻️\n◻️◼️◼️◻️◻️\n◻️◼️◻️◻️◻️\n◻️◻️◻️◻️◻️", "◻️◻️◻️◻️◻️\n◻️◻️◻️◻️◻️\n◻️◼️◼️◻️◻️\n◻️◻️◻️◻️◻️\n◻️◻️◻️◻️◻️", "◻️◻️◻️◻️◻️\n◻️◻️◻️◻️◻️\n◻️◻️◼️◻️◻️\n◻️◻️◻️◻️◻️\n◻️◻️◻️◻️◻️", "◻️◻️◻️◻️◻️\n◻️◻️◻️◻️◻️\n◻️◻️◻️◻️◻️\n◻️◻️◻️◻️◻️\n◻️◻️◻️◻️◻️", "◻️◻️◻️◻️◻️\n◻️◼️◻️◼️◻️\n◻️◻️◻️◻️◻️\n◻️◼️◼️◼️◻️\n◻️◻️◻️◻️◻️" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 27]) @borg.on(admin_cmd(pattern=f"human$", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.5 animation_ttl = range(0, 16) await event.edit("human...") animation_chars = [ "⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬜⬜⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜⬜⬜\n🔲🔲🔲🔲🔲🔲🔲", "⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛🚗\n⬜⬜⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜⬜⬜\n🔲🔲🔲🔲🔲🔲🔲", "⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛🚗⬛\n⬜⬜⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜⬜⬜\n🔲🔲🔲🔲🔲🔲🔲", "⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛🚗⬛⬛\n⬜⬜⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜⬜⬜\n🔲🔲🔲🔲🔲🔲🔲", "⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛🚗⬛⬛⬛\n⬜⬜⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜⬜⬜\n🔲🔲🔲🔲🔲🔲🔲", "⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛🚗⬛⬛⬛⬛\n⬜⬜⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜⬜⬜\n🔲🔲🔲🔲🔲🔲🔲", "⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛🚗⬛⬛⬛⬛⬛\n⬜⬜⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜⬜⬜\n🔲🔲🔲🔲🔲🔲🔲", "⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n🚗⬛⬛⬛⬛⬛⬛\n⬜⬜⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜⬜⬜\n🔲🔲🔲🔲🔲🔲🔲", "⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬜⬜⬜⬜⬜⬜⬜\n⬜⬜⬜⬜⬜⬜⬜\n🔲🔲🔲🔲🔲🔲🔲", "⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬜⬜⬜😊⬜⬜⬜\n⬜⬜⬜⬜⬜⬜⬜\n🔲🔲🔲🔲🔲🔲🔲", "⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛😊⬛⬛⬛\n⬛⬜⬜⬜⬜⬜⬛\n⬛⬛⬛⬜⬛⬛⬛\n⬛⬛⬜⬛⬜⬛⬛\n⬛⬛⬜⬛⬜⬛⬛\n⬛⬛⬜⬛⬜⬛⬛\n🔲🔲🔲🔲🔲🔲🔲", "⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛😊⬛⬛⬛\n⬛⬜⬜⬜⬜⬜⬛\n⬛⬛⬛⬜⬛⬛⬛\n⬛⬛⬜⬛⬜⬛⬛\n⬛⬛⬜⬛⬛⬜⬛\n⬛⬛⬜⬛⬛⬛⬛\n🔲🔲🔲🔲🔲🔲🔲", "⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛😊⬛⬛⬛\n⬛⬜⬜⬜⬜⬜⬛\n⬛⬛⬛⬜⬛⬛⬛\n⬛⬛⬜⬛⬜⬛⬛\n⬛⬜⬛⬛⬛⬜⬛\n⬛⬛⬛⬛⬛⬛⬛\n🔲🔲🔲🔲🔲🔲🔲", "⬛⬛⬛⬛⬛⬛⬛\n⬛⬜⬛😊⬛⬜⬛\n⬛⬛⬜⬜⬜⬛⬛\n⬛⬛⬛⬜⬛⬛⬛\n⬛⬛⬜⬛⬜⬛⬛\n⬛⬜⬛⬛⬛⬜⬛\n⬛⬛⬛⬛⬛⬛⬛\n🔲🔲🔲🔲🔲🔲🔲", "⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛😊⬛⬛⬛\n⬛⬛⬜⬜⬜⬛⬛\n⬛⬜⬛⬜⬛⬜⬛\n⬛⬛⬜⬛⬜⬛⬛\n⬛⬛⬜⬛⬜⬛⬛\n⬛⬛⬜⬛⬜⬛⬛\n🔲🔲🔲🔲🔲🔲🔲", "⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛⬛\n⬜⬜⬜😊⬜⬜⬜\n⬜⬜⬜⬜⬜⬜⬜\n🔲🔲🔲🔲🔲🔲🔲" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 16]) @borg.on(admin_cmd(pattern=f"mc$", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 28) await event.edit("mc..") animation_chars = [ "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◻️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◼️◻️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◼️◼️◻️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◻️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◻️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◻️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◼️◻️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◻️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◻️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◻️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◻️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◻️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◻️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◻️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◻️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◻️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◻️◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◻️◼️◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◻️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◻️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◻️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◻️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◻️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◻️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◻️", "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◻️◼️◻️◼️\n◼️◼️◼️◼️◼️\n◼️◻️◻️◻️◼️\n◼️◼️◼️◼️◼️" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 28]) @borg.on(admin_cmd(pattern="virus$")) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 30) await event.edit("Injecting virus....") animation_chars = [ "🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎", "◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎", "◼️◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎", "◼️◼️◼️️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎", "◼️◼️◼️◼️🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎", "‎◼️◼️◼️◼️◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎", "◼️◼️◼️◼️◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎", "◼️◼️◼️◼️◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎", "◼️◼️◼️◼️◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎", "◼️◼️◼️◼️◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️", "◼️◼️◼️◼️◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️", "◼️◼️◼️◼️◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️◼️", "◼️◼️◼️◼️◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n🔴🔵🌕♓♎⛎◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◼️🔴🔵🌕♓♎⛎◼️\n◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️\n◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️\n◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️\n◼️🔴🔵🌕♓♎⛎◼️◼️◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️🔴🔵🌕♓♎⛎🔴🔵🌕♓♎⛎◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️🔴🔵🌕♓♎⛎◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️◼️◼️", "◼️◼️◼️◼️\n◼️◼️◼️◼️\n◼️◼️◼️◼️\n◼️◼️◼️◼️", "◼️◼️◼️\n◼️◼️◼️\n◼️◼️◼️", "◼️◼️\n◼️◼️", "◼️" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 30]) @borg.on(admin_cmd(pattern=r"repe$", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.2 animation_ttl = range(0, 30) await event.edit("repe") animation_chars = [ "**r**", "**ra**", "**rap**", "**rape**", "**rape_**", "**rape_t**", "**rape_tr**", "**rape_tra**", "**rape_trai**", "**rape_train**", "**ape_train🚅**", "**pe_train🚅🚃🚃**", "**e_train🚅🚃🚃🚃**", "**_train🚅🚃🚃🚃🚃**", "**train🚅🚃🚃🚃🚃🚃**", "**rain🚅🚃🚃🚃🚃🚃🚃**", "**ain🚅🚃🚃🚃🚃🚃🚃🚃**", "**in🚅🚃🚃🚃🚃🚃🚃🚃🚃**", "**n🚅🚃🚃🚃🚃🚃🚃🚃🚃🚃**", "🚅🚃🚃🚃🚃🚃🚃🚃🚃🚃", "🚃🚃🚃🚃🚃🚃🚃🚃🚃", "🚃🚃🚃🚃🚃🚃🚃🚃", "🚃🚃🚃🚃🚃🚃🚃", "🚃🚃🚃🚃🚃🚃", "🚃🚃🚃🚃🚃", "🚃🚃🚃🚃", "🚃🚃🚃", "🚃🚃", "🚃", "**rApEd**" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 30]) @borg.on(admin_cmd(pattern=f"isro$")) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 24) await event.edit("Connecting..") animation_chars = [ "⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n🚀⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛🚀⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛🚀⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛🚀⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛🚀⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛🚀\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛", "🛸⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛\n🛸⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛🛸⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛🛸⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛🛸⬛⬛⬛\n⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛🛸⬛⬛", "⬛⬛⬛🛸⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛\n⬛⬛⬛🛸⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛🛸⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬜⬜⬜⬜⬜⬜", "⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛🛸⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬜⬜⬜⬜⬜⬜", "⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛🛸⬛⬛\n⬜⬜⬜⬜⬜⬜", "⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛🛸⬛🚶‍♂️\n⬜⬜⬜⬜⬜⬜", "⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛🛸🚶‍♂️⬛\n⬜⬜⬜⬜⬜⬜", "⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n👽⬛⬛🛸🚶‍♂️⬛\n⬜⬜⬜⬜⬜⬜", "⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛👽⬛🛸🚶‍♂️⬛\n⬜⬜⬜⬜⬜⬜", "⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛⬛⬛⬛⬛\n⬛⬛👽🛸🚶‍♂️⬛\n⬜⬜⬜⬜⬜⬜", "__Signal Lost....__" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 24]) @borg.on(admin_cmd(pattern=f"nakal$", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.5 animation_ttl = range(0, 6) await event.edit("nakal") animation_chars = [ "`⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀\n ⠀⣴⠿⠏⠀⠀⠀⠀⠀ ⢳⡀⠀⡏⠀⠀⠀ ⠀⢷\n⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀⣧⠀⢸⠀⠀⠀ ⠀ ⡇\n⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲⣿ ⣸ Nikal ⡇\n ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀⠀ ⣿ ⢹⠀ ⡇\n ⠙⢿⣯⠄⠀⠀⠀__⠀⠀⡿ ⠀⡇⠀⠀⠀⠀ ⡼\n⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀\n⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\n⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀\n⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀\n⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`", "`⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀\n ⠀⣴⠿⠏⠀⠀⠀⠀⠀ ⠀⢳⡀⠀⡏⠀⠀⠀ ⠀⢷\n⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀⣧⠀⢸⠀⠀⠀ ⡇\n⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲⣿ ⣸ Lavde ⡇\n ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀⠀ ⣿ ⢹⠀ ⡇\n ⠙⢿⣯⠄⠀⠀|__|⠀⠀⡿ ⠀⡇⠀⠀⠀⠀ ⡼\n⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀\n⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\n⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀\n⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀\n⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`", "`⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀\n ⠀⣴⠿⠏⠀⠀ ⠀⢳⡀⠀⡏⠀⠀ ⠀⢷\n⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀⣧⠀⢸⠀⠀⠀⠀ ⡇\n⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲⣿ ⣸ Pehli ⡇\n ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀⠀ ⣿ ⢹⠀ ⡇\n ⠙⢿⣯⠄⠀⠀(P)⠀⠀⡿ ⠀⡇⠀⠀⠀⠀ ⡼\n⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀\n⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\n⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀\n⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀\n⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`", "`⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀\n ⠀⣴⠿⠏⠀⠀ ⠀⢳⡀⠀⡏⠀⠀ ⠀⢷\n⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀⣧⠀⢸⠀ ⠀ ⡇\n⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲⣿ ⣸ Fursat ⡇\n ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀ ⣿ ⢹⠀ ⡇\n ⠙⢿⣯⠄⠀⠀⠀__ ⠀⠀⡿ ⠀⡇⠀⠀⠀⠀ ⡼\n⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀\n⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\n⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀\n⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀\n⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`", "`⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀\n ⠀⣴⠿⠏⠀⠀⠀⠀⠀ ⢳⡀⠀⡏⠀⠀ ⠀⢷\n⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀⣧⠀⢸⠀⠀ ⠀ ⡇\n⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲⣿ ⣸ Meeee ⡇\n ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀⠀ ⣿ ⢹⠀ ⡇\n ⠙⢿⣯⠄⠀⠀|__| ⠀⡿ ⠀⡇⠀⠀⠀⠀ ⡼\n⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀\n⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\n⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀\n⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀\n⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`", "`⠀⠀⠀⣠⣶⡾⠏⠉⠙⠳⢦⡀⠀⠀⠀⢠⠞⠉⠙⠲⡀⠀\n ⠀⣴⠿⠏⠀⠀⠀⠀⠀ ⠀⢳⡀⠀⡏⠀⠀ ⠀⢷\n⢠⣟⣋⡀⢀⣀⣀⡀⠀⣀⡀⣧⠀⢸⠀ ⠀ ⡇\n⢸⣯⡭⠁⠸⣛⣟⠆⡴⣻⡲⣿ ⣸ Nikal ⡇\n ⣟⣿⡭⠀⠀⠀⠀⠀⢱⠀ ⣿ ⢹⠀ ⡇\n ⠙⢿⣯⠄⠀⠀lodu⠀⠀⡿ ⠀⡇⠀⠀⠀⠀ ⡼\n⠀⠀⠀⠹⣶⠆⠀⠀⠀⠀⠀⡴⠃⠀ ⠘⠤⣄⣠⠞⠀\n⠀⠀⠀⠀⢸⣷⡦⢤⡤⢤⣞⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\n⠀⢀⣤⣴⣿⣏⠁⠀⠀⠸⣏⢯⣷⣖⣦⡀⠀⠀⠀⠀⠀⠀\n⢀⣾⣽⣿⣿⣿⣿⠛⢲⣶⣾⢉⡷⣿⣿⠵⣿⠀⠀⠀⠀⠀⠀\n⣼⣿⠍⠉⣿⡭⠉⠙⢺⣇⣼⡏⠀⠀ ⠀⣄⢸⠀⠀⠀⠀⠀⠀`", ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 6]) @borg.on(admin_cmd(pattern=f"music$", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 1.5 animation_ttl = range(0, 11) await event.edit("starting player...") animation_chars = [ "⬤⬤⬤ 81% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️`\n\n⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223)\n\n⠀⠀⠀⠀**Now Playing:shape of u**\n\n**00:00** ▱▱▱▱▱▱▱▱▱▱ **00:10**\n\n⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `▶️` `⏩️` `⏭️`\n\n**⠀Next Song:** __Alan Walker - Alone.__\n\n⠀⠀⠀⠀**⠀Device: Nokia 1100**", "⬤⬤⬤ 81% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️`\n\n⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223)\n\n⠀⠀⠀⠀**Now Playing:shape of u**\n\n**00:01** ▰▱▱▱▱▱▱▱▱▱ **00:10**\n\n⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️`\n\n**⠀Next Song:** __Alan Walker - Alone.__\n\n⠀⠀⠀⠀**⠀Device: Nokia 1100**", "⬤⬤⬤ 81% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️`\n\n⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223)\n\n⠀⠀⠀⠀**Now Playing:shape of u**\n\n**00:02** ▰▰▱▱▱▱▱▱▱▱ **00:10**\n\n⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️`\n\n**⠀Next Song:** __Alan Walker - Alone.__\n\n⠀⠀⠀⠀**⠀Device: Nokia 1100**", "⬤⬤⬤ 81% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️`\n\n⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223)\n\n⠀⠀⠀⠀**Now Playing:shape of u**\n\n**00:03** ▰▰▰▱▱▱▱▱▱▱ **00:10**\n\n⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️`\n\n**⠀Next Song:** __Alan Walker - Alone.__\n\n⠀⠀⠀⠀**⠀Device: Nokia 1100**", "⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️`\n\n⠀⠀⠀⠀ [Survivor Music Player](tg://user?id=916234223)\n\n⠀⠀⠀⠀**Now Playing:shape of u**\n\n**00:04** ▰▰▰▰▱▱▱▱▱▱ **00:10**\n\n⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️`\n\n**⠀Next Song:** __Alan Walker - Alone.__\n\n⠀⠀⠀⠀**⠀Device: Nokia 1100**", "⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️`\n\n⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223)\n\n⠀⠀⠀⠀**Now Playing:shape of u**\n\n**00:05** ▰▰▰▰▱▱▱▱▱▱ **00:10**\n\n⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️`\n\n**⠀Next Song:** __Alan Walker - Alone.__\n\n⠀⠀⠀⠀**⠀Device: Nokia 1100**", "⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️`\n\n⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223)\n\n⠀⠀⠀⠀**Now Playing:shape of u**\n\n**00:06** ▰▰▰▰▰▰▱▱▱▱ **00:10**\n\n⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️`\n\n**⠀Next Song:** __Alan Walker - Alone.__\n\n⠀⠀⠀⠀**⠀Device: Nokia 1100**", "⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️`\n\n⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223)\n\n⠀⠀⠀⠀**Now Playing:shape of u**\n\n**00:07** ▰▰▰▰▰▰▰▱▱▱ **00:10**\n\n⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️`\n\n**⠀Next Song:** __Alan Walker - Alone.__\n\n⠀⠀⠀⠀**⠀Device: Nokia 1100**", "⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️`\n\n⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223)\n\n⠀⠀⠀⠀**Now Playing:shape of u**\n\n**00:08** ▰▰▰▰▰▰▰▰▱▱ **00:10**\n\n⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️`\n\n**⠀Next Song:** __Alan Walker - Alone.__\n\n⠀⠀⠀⠀**⠀Device: Nokia 1100**", "⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️`\n\n⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223)\n\n⠀⠀⠀⠀**Now Playing:shape of u**\n\n**00:09** ▰▰▰▰▰▰▰▰▰▱ **00:10**\n\n⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏸️` `⏩️` `⏭️`\n\n**⠀Next Song:** __Alan Walker - Alone.__\n\n⠀⠀⠀⠀**⠀Device: Nokia 1100**", "⬤⬤◯ 80% ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`✖️`\n\n⠀⠀⠀⠀⠀[Survivor Music Player](tg://user?id=916234223)\n\n⠀⠀⠀⠀**Now Playing:shape of u**\n\n**00:10** ▰▰▰▰▰▰▰▰▰▰ **00:10**\n\n⠀⠀⠀⠀⠀`🔂` `⏮️` `⏪️` `⏺️` `⏩️` `⏭️`\n\n**⠀Next Song:** __Alan Walker - Alone.__\n\n⠀⠀⠀⠀**⠀Device: Nokia 1100**" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 11]) @borg.on(admin_cmd(pattern=f"squ$",outgoing=True)) async def _(event): if event.fwd_from: return await event.edit("╔═══════════════════╗ \n \n╚═══════════════════╝") await asyncio.sleep(1) await event.edit("╔═══════════════════╗ \n \t░ \n╚═══════════════════╝") await asyncio.sleep(1) await event.edit("╔═══════════════════╗ \n ░ \t░ \n╚═══════════════════╝") await asyncio.sleep(1) await event.edit("╔═══════════════════╗ \n ░ ░ ░ \n╚═══════════════════╝") await asyncio.sleep(1) await event.edit("╔═══════════════════╗ \n ░ ░ ░ ░ \n╚═══════════════════╝") await asyncio.sleep(1) await event.edit("╔═══════════════════╗ \n ░ ░ ░ ░ ░ \n╚═══════════════════╝") await asyncio.sleep(1) await event.edit("╔═══════════════════╗ \n ░ ░ ░ ░ ░ ░ \n╚═══════════════════╝") await asyncio.sleep(1) await event.edit("╔═══════════════════╗ \n ░ ░ ░ ░ ░ ░ ░ \n╚═══════════════════╝") await asyncio.sleep(1) await event.edit("╔═══════════════════╗ \n ░ ░ ░ ░ ░ ░ ░ ░ \n╚═══════════════════╝") await asyncio.sleep(1) await event.edit("╔═══════════════════╗ \n ░ ░ ░ ░ ░ ░ ░ ░ ░ \n╚═══════════════════╝") await asyncio.sleep(1) await event.edit("╔═══════════════════╗ \n ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ \n╚═══════════════════╝") await asyncio.sleep(1) await event.edit("╔═══════════════════╗ \n ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ \n╚═══════════════════╝") await asyncio.sleep(1) await event.edit("╔═══════════════════╗ \n ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ \n╚═══════════════════╝") await asyncio.sleep(1) await event.edit("╔═══════════════════╗ \n ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ \n╚═══════════════════╝") await asyncio.sleep(1) await event.edit("╔═══════════════════╗ \n ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ \n╚═══════════════════╝") await asyncio.sleep(6) @borg.on(admin_cmd(pattern=r"star$", outgoing=True)) async def _(event): if event.fwd_from: return deq = deque(list("🦋✨🦋✨🦋✨🦋✨")) for _ in range(48): await asyncio.sleep(0.1) await event.edit("".join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern=r"boxs")) async def _(event): if event.fwd_from: return deq = deque(list("🟥🟧🟨🟩🟦🟪🟫⬛⬜")) for _ in range(48): await asyncio.sleep(0.1) await event.edit("".join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern=f"rain$", outgoing=True)) async def _(event): if event.fwd_from: return deq = deque(list("🌬☁️🌩🌨🌧🌦🌥⛅🌤")) for _ in range(48): await asyncio.sleep(0.1) await event.edit("".join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern=r"clol$")) async def _(event): if event.fwd_from: return deq = deque(list("🤔🧐🤨🤔🧐🤨")) for _ in range(48): await asyncio.sleep(0.1) await event.edit("".join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern=r"odra$")) async def _(event): if event.fwd_from: return deq = deque(list("🚶🏃🚶🏃🚶🏃🚶🏃")) for _ in range(48): await asyncio.sleep(0.1) await event.edit("".join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern=r"deploy$")) async def _(event): if event.fwd_from: return animation_interval = 3 animation_ttl = range(0, 12) await event.edit("Deploying...") animation_chars = [ "**Heroku Connecting To Latest Github Build **", f"**Build started by user** @Kraken_The_BadASS", f"**Deploy** `535a74f0` for user by my master!!", "**Restarting Heroku Server...**", "**State changed from up to starting**", "**Stopping all processes with SIGTERM**", "**Process exited with** `status 143`", "**Starting process with command** `python3 -m stdborg`", "**State changed from starting to up**", "__INFO:Userbot:Logged in as 557667062__", "__INFO:Userbot:Successfully loaded all plugins__", "**Build Succeeded**" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 12]) @borg.on(admin_cmd(pattern="dump ?(.*)")) async def _(message): try: obj = message.pattern_match.group(1) if len(obj) != 3: raise IndexError inp = ' '.join(obj) except IndexError: inp = "🥞 🎂 🍫" u, t, g, o, s, n = inp.split(), '🗑', '<(^_^ <)', '(> ^_^)>', '⠀ ', '\n' h = [(u[0], u[1], u[2]), (u[0], u[1], ''), (u[0], '', '')] for something in reversed([y for y in ([''.join(x) for x in ( f + (s, g, s + s * f.count(''), t), f + (g, s * 2 + s * f.count(''), t), f[:i] + (o, f[i], s * 2 + s * f.count(''), t), f[:i] + (s + s * f.count(''), o, f[i], s, t), f[:i] + (s * 2 + s * f.count(''), o, f[i], t), f[:i] + (s * 3 + s * f.count(''), o, t), f[:i] + (s * 3 + s * f.count(''), g, t))] for i, f in enumerate(reversed(h)))]): for something_else in something: await asyncio.sleep(0.3) try: await message.edit(something_else) except errors.MessageIdInvalidError: return @borg.on(admin_cmd(pattern="fleaveme$")) async def _(event): animation_interval = 1 animation_ttl = range(0, 10) animation_chars = [ "⬛⬛⬛\n⬛⬛⬛\n⬛⬛⬛", "⬛⬛⬛\n⬛🔄⬛\n⬛⬛⬛", "⬛⬆️⬛\n⬛🔄⬛\n⬛⬛⬛", "⬛⬆️↗️\n⬛🔄⬛\n⬛⬛⬛", "⬛⬆️↗️\n⬛🔄➡️\n⬛⬛⬛", "⬛⬆️↗️\n⬛🔄➡️\n⬛⬛↘️", "⬛⬆️↗️\n⬛🔄➡️\n⬛⬇️↘️", "⬛⬆️↗️\n⬛🔄➡️\n↙️⬇️↘️", "⬛⬆️↗️\n⬅️🔄➡️\n↙️⬇️↘️", "↖️⬆️↗️\n⬅️🔄➡️\n↙️⬇️↘️" ] if event.fwd_from: return await event.edit("fleaveme....") await asyncio.sleep(2) for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 10]) @borg.on(admin_cmd(pattern="loveu", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.5 animation_ttl = range(0, 70) await event.edit("loveu") animation_chars = [ "😀", "👩‍🎨", "😁", "😂", "🤣", "😃", "😄", "😅", "😊", "☺", "🙂", "🤔", "🤨", "😐", "😑", "😶", "😣", "😥", "😮", "🤐", "😯", "😴", "😔", "😕", "☹", "🙁", "😖", "😞", "😟", "😢", "😭", "🤯", "💔", "❤", "i Love You❤", ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 35]) @borg.on(admin_cmd(pattern=f"plane", outgoing=True)) async def _(event): if event.fwd_from: retun await event.edit("✈-------------") await event.edit("-✈------------") await event.edit("--✈-----------") await event.edit("---✈----------") await event.edit("----✈---------") await event.edit("-----✈--------") await event.edit("------✈-------") await event.edit("-------✈------") await event.edit("--------✈-----") await event.edit("---------✈----") await event.edit("----------✈---") await event.edit("-----------✈--") await event.edit("------------✈-") await event.edit("-------------✈") await asyncio.sleep(3) await event.delete() @borg.on(admin_cmd(pattern=r"pulis")) async def _(event): if event.fwd_from: return animation_interval = 0.3 animation_ttl = range(0, 12) await event.edit("Pulis") animation_chars = [ "🔴🔴🔴⬜⬜⬜🔵🔵🔵\n🔴🔴🔴⬜⬜⬜🔵🔵🔵\n🔴🔴🔴⬜⬜⬜🔵🔵🔵", "🔵🔵🔵⬜⬜⬜🔴🔴🔴\n🔵🔵🔵⬜⬜⬜🔴🔴🔴\n🔵🔵🔵⬜⬜⬜🔴🔴🔴", "🔴🔴🔴⬜⬜⬜🔵🔵🔵\n🔴🔴🔴⬜⬜⬜🔵🔵🔵\n🔴🔴🔴⬜⬜⬜🔵🔵🔵", "🔵🔵🔵⬜⬜⬜🔴🔴🔴\n🔵🔵🔵⬜⬜⬜🔴🔴🔴\n🔵🔵🔵⬜⬜⬜🔴🔴🔴", "🔴🔴🔴⬜⬜⬜🔵🔵🔵\n🔴🔴🔴⬜⬜⬜🔵🔵🔵\n🔴🔴🔴⬜⬜⬜🔵🔵🔵", "🔵🔵🔵⬜⬜⬜🔴🔴🔴\n🔵🔵🔵⬜⬜⬜🔴🔴🔴\n🔵🔵🔵⬜⬜⬜🔴🔴🔴", "🔴🔴🔴⬜⬜⬜🔵🔵🔵\n🔴🔴🔴⬜⬜⬜🔵🔵🔵\n🔴🔴🔴⬜⬜⬜🔵🔵🔵", "🔵🔵🔵⬜⬜⬜🔴🔴🔴\n🔵🔵🔵⬜⬜⬜🔴🔴🔴\n🔵🔵🔵⬜⬜⬜🔴🔴🔴", "🔴🔴🔴⬜⬜⬜🔵🔵🔵\n🔴🔴🔴⬜⬜⬜🔵🔵🔵\n🔴🔴🔴⬜⬜⬜🔵🔵🔵", "🔵🔵🔵⬜⬜⬜🔴🔴🔴\n🔵🔵🔵⬜⬜⬜🔴🔴🔴\n🔵🔵🔵⬜⬜⬜🔴🔴🔴", "🔴🔴🔴⬜⬜⬜🔵🔵🔵\n🔴🔴🔴⬜⬜⬜🔵🔵🔵\n🔴🔴🔴⬜⬜⬜🔵🔵🔵", f"{DEFAULTUSER} **Police iz Here**" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 12]) @borg.on(admin_cmd(pattern=f"jio$", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 1 animation_ttl = range(0, 19) await event.edit("jio network boosting...") animation_chars = [ "`Connecting To JIO NETWORK ....`", "`█ ▇ ▆ ▅ ▄ ▂ ▁`", "`▒ ▇ ▆ ▅ ▄ ▂ ▁`", "`▒ ▒ ▆ ▅ ▄ ▂ ▁`", "`▒ ▒ ▒ ▅ ▄ ▂ ▁`", "`▒ ▒ ▒ ▒ ▄ ▂ ▁`", "`▒ ▒ ▒ ▒ ▒ ▂ ▁`", "`▒ ▒ ▒ ▒ ▒ ▒ ▁`", "`▒ ▒ ▒ ▒ ▒ ▒ ▒`", "*Optimising JIO NETWORK...*", "`▒ ▒ ▒ ▒ ▒ ▒ ▒`", "`▁ ▒ ▒ ▒ ▒ ▒ ▒`", "`▁ ▂ ▒ ▒ ▒ ▒ ▒`", "`▁ ▂ ▄ ▒ ▒ ▒ ▒`", "`▁ ▂ ▄ ▅ ▒ ▒ ▒`", "`▁ ▂ ▄ ▅ ▆ ▒ ▒`", "`▁ ▂ ▄ ▅ ▆ ▇ ▒`", "`▁ ▂ ▄ ▅ ▆ ▇ █`", "**JIO NETWORK Boosted....**" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 19]) @borg.on(admin_cmd(pattern=f"solarsystem", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.1 animation_ttl = range(0, 80) await event.edit("solarsystem") animation_chars = [ "`◼️◼️◼️◼️◼️\n◼️◼️◼️◼️☀\n◼️◼️🌎◼️◼️\n🌕◼️◼️◼️◼️\n◼️◼️◼️◼️◼️`", "`◼️◼️◼️◼️◼️\n🌕◼️◼️◼️◼️\n◼️◼️🌎◼️◼️\n◼️◼️◼️◼️☀\n◼️◼️◼️◼️◼️`", "`◼️🌕◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️🌎◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️☀◼️`", "`◼️◼️◼️🌕◼️\n◼️◼️◼️◼️◼️\n◼️◼️🌎◼️◼️\n◼️◼️◼️◼️◼️\n◼️☀◼️◼️◼️`", "`◼️◼️◼️◼️◼️\n◼️◼️◼️◼️🌕\n◼️◼️🌎◼️◼️\n☀◼️◼️◼️◼️\n◼️◼️◼️◼️◼️`", "`◼️◼️◼️◼️◼️\n☀◼️◼️◼️◼️\n◼️◼️🌎◼️◼️\n◼️◼️◼️◼️🌕\n◼️◼️◼️◼️◼️`", "`◼️☀◼️◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️🌎◼️◼️\n◼️◼️◼️◼️◼️\n◼️◼️◼️🌕◼️`", "`◼️◼️◼️☀◼️\n◼️◼️◼️◼️◼️\n◼️◼️🌎◼️◼️\n◼️◼️◼️◼️◼️\n◼️🌕◼️◼️◼️`", ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 8]) @borg.on(admin_cmd(pattern=r"lul$")) async def _(event): if event.fwd_from: return deq = deque(list("😂🤣😂🤣😂🤣")) for _ in range(48): await asyncio.sleep(0.1) await event.edit("".join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern=r"nothappy$")) async def _(event): if event.fwd_from: return deq = deque(list("😁☹️😁☹️😁☹️😁")) for _ in range(48): await asyncio.sleep(0.1) await event.edit("".join(deq)) deq.rotate(1) @borg.on(admin_cmd(outgoing=True, pattern="clock$")) async def _(event): if event.fwd_from: return deq = deque(list("🕙🕘🕗🕖🕕🕔🕓🕒🕑🕐🕛")) for _ in range(48): await asyncio.sleep(0.1) await event.edit("".join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern=r"muah$")) async def _(event): if event.fwd_from: return deq = deque(list("😗😙😚😚😘")) for _ in range(48): await asyncio.sleep(0.1) await event.edit("".join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern="heart$")) async def _(event): if event.fwd_from: return deq = deque(list("❤️🧡💛💚💙💜🖤")) for _ in range(48): await asyncio.sleep(0.1) await event.edit("".join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern="gym$", outgoing=True)) async def _(event): if event.fwd_from: return deq = deque(list("🏃‍🏋‍🤸‍🏃‍🏋‍🤸‍🏃‍🏋‍🤸‍")) for _ in range(48): await asyncio.sleep(0.1) await event.edit("".join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern=f"earth$", outgoing=True)) async def _(event): if event.fwd_from: return deq = deque(list("🌏🌍🌎🌎🌍🌏🌍🌎")) for _ in range(48): await asyncio.sleep(0.1) await event.edit("".join(deq)) deq.rotate(1) @borg.on(admin_cmd(outgoing=True, pattern="moon$")) async def _(event): if event.fwd_from: return deq = deque(list("🌗🌘🌑🌒🌓🌔🌕🌖")) for _ in range(48): await asyncio.sleep(0.1) await event.edit("".join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern=r"candy$")) async def _(event): if event.fwd_from: return deq = deque(list("🍦🍧🍩🍪🎂🍰🧁🍫🍬🍭")) for _ in range(48): await asyncio.sleep(0.1) await event.edit("".join(deq)) deq.rotate(1) @borg.on(admin_cmd(pattern=f"smoon$", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.1 animation_ttl = range(0, 101) await event.edit("smoon..") animation_chars = [ "🌗🌗🌗🌗🌗\n🌓🌓🌓🌓🌓\n🌗🌗🌗🌗🌗\n🌓🌓🌓🌓🌓\n🌗🌗🌗🌗🌗", "🌘🌘🌘🌘🌘\n🌔🌔🌔🌔🌔\n🌘🌘🌘🌘🌘\n🌔🌔🌔🌔🌔\n🌘🌘🌘🌘🌘", "🌑🌑🌑🌑🌑\n🌕🌕🌕🌕🌕\n🌑🌑🌑🌑🌑\n🌕🌕🌕🌕🌕\n🌑🌑🌑🌑🌑", "🌒🌒🌒🌒🌒\n🌖🌖🌖🌖🌖\n🌒🌒🌒🌒🌒\n🌖🌖🌖🌖🌖\n🌒🌒🌒🌒🌒", "🌓🌓🌓🌓🌓\n🌗🌗🌗🌗🌗\n🌓🌓🌓🌓🌓\n🌗🌗🌗🌗🌗\n🌓🌓🌓🌓🌓", "🌔🌔🌔🌔🌔\n🌘🌘🌘🌘🌘\n🌔🌔🌔🌔🌔\n🌘🌘🌘🌘🌘\n🌔🌔🌔🌔🌔", "🌕🌕🌕🌕🌕\n🌑🌑🌑🌑🌑\n🌕🌕🌕🌕🌕\n🌑🌑🌑🌑🌑\n🌕🌕🌕🌕🌕", "🌖🌖🌖🌖🌖\n🌒🌒🌒🌒🌒\n🌖🌖🌖🌖🌖\n🌒🌒🌒🌒🌒\n🌖🌖🌖🌖🌖" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 8]) @borg.on(admin_cmd(pattern=f"tmoon$", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.1 animation_ttl = range(0, 117) await event.edit("tmoon") animation_chars = [ "🌗", "🌘", "🌑", "🌒", "🌓", "🌔", "🌕", "🌖", "🌗", "🌘", "🌑", "🌒", "🌓", "🌔", "🌕", "🌖", "🌗", "🌘", "🌑", "🌒", "🌓", "🌔", "🌕", "🌖", "🌗", "🌘", "🌑", "🌒", "🌓", "🌔", "🌕", "🌖" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 32]) @borg.on(admin_cmd(pattern=f"clown$", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 0.50 animation_ttl = range(0, 16) animation_chars = [ "COMMAND CREATE BY @Kraken_The_BadASS", "🤡️", "🤡🤡", "🤡🤡🤡", "🤡🤡🤡🤡", "🤡🤡🤡🤡🤡", "🤡🤡🤡🤡🤡🤡", "🤡🤡🤡🤡🤡", "🤡🤡🤡🤡", "🤡🤡🤡", "🤡🤡", "🤡", "You", "You Are", "You Are A", "You Are A Clown 🤡" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 16]) @borg.on(admin_cmd(pattern=r"aheart$", outgoing=True)) async def _(event): if event.fwd_from: return animation_interval = 1.3 animation_ttl = range(0, 50) animation_chars = [ "❤️", "🧡", "💛", "💚", "💙", "💜", "🖤", "💘", "💝", "💔", "❤️", "🧡", "💛", "💚", "💙", "💜", "🖤", "💘", "💝", "💔" ] for i in animation_ttl: await asyncio.sleep(animation_interval) await event.edit(animation_chars[i % 20])
[ 0, 1, 2, 3, 4 ]
1,709
e627bcc6c9a49d46190cc793a77103aa0a760989
<mask token>
<mask token> with open(good_testfile, 'r') as f: print('预测数据集: ' + good_testfile) preicdtlist = [i.strip('\n') for i in f.readlines()[:]] result = a.predict(preicdtlist) print('恶意结果 前10条' + str(result[1][:10])) print('正常结果 前10条 ' + str(result[0][:10])) pass with open(bad_testfile, 'r') as f: print('预测数据集: ' + bad_testfile) preicdtlist = [i.strip('\n') for i in f.readlines()[:]] result = a.predict(preicdtlist) print('恶意结果 前10条' + str(result[1][:10])) print('正常结果 前10条 ' + str(result[0][:10])) pass
<mask token> good_testfile = 'data/good_fromE2.txt' bad_testfile = 'data/badqueries.txt' a = IDS.SVM() with open(good_testfile, 'r') as f: print('预测数据集: ' + good_testfile) preicdtlist = [i.strip('\n') for i in f.readlines()[:]] result = a.predict(preicdtlist) print('恶意结果 前10条' + str(result[1][:10])) print('正常结果 前10条 ' + str(result[0][:10])) pass with open(bad_testfile, 'r') as f: print('预测数据集: ' + bad_testfile) preicdtlist = [i.strip('\n') for i in f.readlines()[:]] result = a.predict(preicdtlist) print('恶意结果 前10条' + str(result[1][:10])) print('正常结果 前10条 ' + str(result[0][:10])) pass
import IDS good_testfile = 'data/good_fromE2.txt' bad_testfile = 'data/badqueries.txt' a = IDS.SVM() with open(good_testfile, 'r') as f: print('预测数据集: ' + good_testfile) preicdtlist = [i.strip('\n') for i in f.readlines()[:]] result = a.predict(preicdtlist) print('恶意结果 前10条' + str(result[1][:10])) print('正常结果 前10条 ' + str(result[0][:10])) pass with open(bad_testfile, 'r') as f: print('预测数据集: ' + bad_testfile) preicdtlist = [i.strip('\n') for i in f.readlines()[:]] result = a.predict(preicdtlist) print('恶意结果 前10条' + str(result[1][:10])) print('正常结果 前10条 ' + str(result[0][:10])) pass
import IDS # In[7]: # testfile = 'data/good_fromE2.txt' # testfile = 'data/goodqueries.txt' good_testfile = "data/good_fromE2.txt" bad_testfile = "data/badqueries.txt" # a = IDS.LG() a = IDS.SVM() # preicdtlist = ['www.foo.com/id=1<script>alert(1)</script>','www.foo.com/name=admin\' or 1=1','abc.com/admin.php','"><svg onload=confirm(1)>','test/q=<a href="javascript:confirm(1)>','q=../etc/passwd'] # result =a.predict(preicdtlist) # print('正常结果 前10条 ' + str(result[0][:10])) with open(good_testfile, 'r') as f: print('预测数据集: '+good_testfile) preicdtlist = [i.strip('\n') for i in f.readlines()[:]] result = a.predict(preicdtlist) print('恶意结果 前10条'+str(result[1][:10])) print('正常结果 前10条 ' + str(result[0][:10])) pass with open(bad_testfile, 'r') as f: print('预测数据集: '+bad_testfile) preicdtlist = [i.strip('\n') for i in f.readlines()[:]] result = a.predict(preicdtlist) print('恶意结果 前10条'+str(result[1][:10])) print('正常结果 前10条 ' + str(result[0][:10])) pass
[ 0, 1, 2, 3, 4 ]
1,710
1358adc3b2b3ffe72c0ed87fb0024f1079ca7d04
<mask token> class DGMSOLVER: def __init__(self, G, fname, fm, cm, mm, nPin, norm=None, mapping=None, vacuum=False, k=None, phi=None, psi=None): """ Inputs: G - Number of energy groups fname - Name of the cross section file fm - Fine mesh cm - Coarse mesh mm - Material map nPin - Number of pincells norm - norm of the flux to keep constant (match phi shape) mapping - structure class that holds fine -> coarse mapping """ self.G = G self.fname = fname self.fm = fm self.cm = cm self.mm = mm self.npin = nPin self.norm = norm self.computenorm = self.norm is None self.vacuum = vacuum self.mapping = mapping self.setOptions() self.solve(k, phi, psi) self.homogenize_space() if self.mapping is not None: self.homogenize_energy() <mask token> def solve(self, k, phi, psi): """ Solve the problem using Unotran """ pydgm.solver.initialize_solver() if k is not None: pydgm.state.keff = k if phi is not None: pydgm.state.phi = phi if psi is not None: pydgm.state.psi = psi pydgm.solver.solve() self.extractInfo() self.iter_k = np.copy(pydgm.state.keff) self.iter_phi = np.copy(pydgm.state.phi) self.iter_psi = np.copy(pydgm.state.psi) pydgm.solver.finalize_solver() pydgm.control.finalize_control() def extractInfo(self): """ Copy information from Unotran before the solver is deallocated """ self.phi = np.copy(pydgm.state.mg_phi[0]) self.dx = np.copy(pydgm.mesh.dx) self.mat_map = np.copy(pydgm.state.mg_mmap) self.sig_t = np.array([pydgm.state.mg_sig_t[:, self.mat_map[c] - 1] for c in range(len(self.mat_map))]).T self.sig_s = np.array([pydgm.state.mg_sig_s[0, :, :, self.mat_map[c ] - 1] for c in range(len(self.mat_map))]).T self.vsig_f = np.array([pydgm.state.mg_nu_sig_f[:, self.mat_map[c] - 1] for c in range(len(self.mat_map))]).T self.chi = np.array([pydgm.state.mg_chi[:, self.mat_map[c] - 1] for c in range(len(self.mat_map))]).T def homogenize_space(self): """ Homogenize the cross sections over the spatial region """ def homo_space(array): """Convenience function to do the integration""" return np.sum(array.reshape(-1, self.npin, nCellPerPin), axis=2 ) / V shape = self.phi.shape nCellPerPin = shape[1] // self.npin V = np.sum(self.dx.reshape(self.npin, -1), axis=1) phi_dx = self.phi[:, :] * self.dx[:] self.phi_homo = homo_space(phi_dx) if self.computenorm: self.norm = np.sum(self.phi_homo, axis=-1) else: print('compute norm') norm = self.norm / np.sum(self.phi_homo, axis=-1) self.phi_homo *= norm[:, np.newaxis] phi_dx *= norm[:, np.newaxis] self.sig_t_homo = homo_space(self.sig_t * phi_dx) / self.phi_homo self.sig_f_homo = homo_space(self.vsig_f * phi_dx) / self.phi_homo self.chi_homo = homo_space(self.chi * self.dx) self.sig_s_homo = np.zeros((self.G, self.G, self.npin)) for gp in range(self.G): self.sig_s_homo[gp] = homo_space(self.sig_s[gp] * phi_dx ) / self.phi_homo def homogenize_energy(self): """ Homogenize the cross sections over the energy range """ def homo_energy(array1, array2=None): """ convinence function to do the integration return rac{\\sum_i array1[i] * array2[i]}{\\sum_i array2[i]} for each coarse group """ if array2 is not None: y = np.zeros((nCG, len(array1[0]))) z = np.zeros((nCG, len(array1[0]))) for g, cg in enumerate(grouping): z[cg - 1] += array1[g] * array2[g] y[cg - 1] += array2[g] return z / y else: z = np.zeros((nCG, len(array1[0]))) for g, cg in enumerate(grouping): z[cg - 1] += array1[g] return z nCG = self.mapping.nCG nFG = self.mapping.nFG grouping = np.array(self.mapping.grouping) dE_coarse = np.array(self.mapping.dE_coarse) dE_fine = np.array(self.mapping.dE_fine) dE_coarse /= dE_coarse dE_fine /= dE_fine phi_homo = homo_energy(self.phi_homo, dE_fine[:, np.newaxis]) if self.computenorm: norm = np.zeros(nCG) for g, cg in enumerate(grouping): norm[cg - 1] += self.norm[g] self.norm = norm """ print(self.mapping.fine_bounds) import matplotlib.pyplot as plt def barchart(x, y): X = np.zeros(2 * len(y)) Y = np.zeros(2 * len(y)) for i in range(0, len(y)): X[2 * i] = x[i] X[2 * i + 1] = x[i + 1] Y[2 * i] = y[i] Y[2 * i + 1] = y[i] return X, Y plt.loglog(*barchart(self.mapping.fine_bounds, self.sig_t_homo[:,0]), 'g-', label='fine group') """ self.sig_t_homo = homo_energy(self.sig_t_homo, self.phi_homo) self.sig_f_homo = homo_energy(self.sig_f_homo, self.phi_homo) self.chi_homo = homo_energy(self.chi_homo) sig_s_homo = np.zeros((nCG, nCG, self.npin)) for gp, g in enumerate(grouping): sig_s_homo[g - 1] += homo_energy(self.sig_s_homo[gp], self.phi_homo ) self.sig_s_homo = sig_s_homo self.phi_homo = phi_homo """ plt.loglog(*barchart(self.mapping.coarse_bounds, self.sig_t_homo[:,0]), 'k-', label='coarse group') plt.legend(loc=0) plt.xlabel('Energy [MeV]') plt.ylabel('$\\Sigma_t$ [cm$^{-1}$]') plt.savefig('test.pdf', transparent=True) """
<mask token> class XS: <mask token> <mask token> <mask token> class DGMSOLVER: def __init__(self, G, fname, fm, cm, mm, nPin, norm=None, mapping=None, vacuum=False, k=None, phi=None, psi=None): """ Inputs: G - Number of energy groups fname - Name of the cross section file fm - Fine mesh cm - Coarse mesh mm - Material map nPin - Number of pincells norm - norm of the flux to keep constant (match phi shape) mapping - structure class that holds fine -> coarse mapping """ self.G = G self.fname = fname self.fm = fm self.cm = cm self.mm = mm self.npin = nPin self.norm = norm self.computenorm = self.norm is None self.vacuum = vacuum self.mapping = mapping self.setOptions() self.solve(k, phi, psi) self.homogenize_space() if self.mapping is not None: self.homogenize_energy() def setOptions(self): """ Set the options for the Unotran solve """ pydgm.control.spatial_dimension = 1 pydgm.control.fine_mesh_x = self.fm pydgm.control.coarse_mesh_x = self.cm pydgm.control.material_map = self.mm pydgm.control.xs_name = self.fname.ljust(256) pydgm.control.angle_order = 8 pydgm.control.angle_option = pydgm.angle.gl pydgm.control.boundary_west = 0.0 if self.vacuum else 1.0 pydgm.control.boundary_east = 0.0 if self.vacuum else 1.0 pydgm.control.allow_fission = True pydgm.control.eigen_print = 0 pydgm.control.outer_print = 0 pydgm.control.eigen_tolerance = 1e-14 pydgm.control.outer_tolerance = 1e-12 pydgm.control.max_eigen_iters = 10000 pydgm.control.max_outer_iters = 1 pydgm.control.store_psi = True pydgm.control.solver_type = 'eigen'.ljust(256) pydgm.control.source_value = 0.0 pydgm.control.equation_type = 'DD' pydgm.control.scatter_leg_order = 0 pydgm.control.ignore_warnings = True def solve(self, k, phi, psi): """ Solve the problem using Unotran """ pydgm.solver.initialize_solver() if k is not None: pydgm.state.keff = k if phi is not None: pydgm.state.phi = phi if psi is not None: pydgm.state.psi = psi pydgm.solver.solve() self.extractInfo() self.iter_k = np.copy(pydgm.state.keff) self.iter_phi = np.copy(pydgm.state.phi) self.iter_psi = np.copy(pydgm.state.psi) pydgm.solver.finalize_solver() pydgm.control.finalize_control() def extractInfo(self): """ Copy information from Unotran before the solver is deallocated """ self.phi = np.copy(pydgm.state.mg_phi[0]) self.dx = np.copy(pydgm.mesh.dx) self.mat_map = np.copy(pydgm.state.mg_mmap) self.sig_t = np.array([pydgm.state.mg_sig_t[:, self.mat_map[c] - 1] for c in range(len(self.mat_map))]).T self.sig_s = np.array([pydgm.state.mg_sig_s[0, :, :, self.mat_map[c ] - 1] for c in range(len(self.mat_map))]).T self.vsig_f = np.array([pydgm.state.mg_nu_sig_f[:, self.mat_map[c] - 1] for c in range(len(self.mat_map))]).T self.chi = np.array([pydgm.state.mg_chi[:, self.mat_map[c] - 1] for c in range(len(self.mat_map))]).T def homogenize_space(self): """ Homogenize the cross sections over the spatial region """ def homo_space(array): """Convenience function to do the integration""" return np.sum(array.reshape(-1, self.npin, nCellPerPin), axis=2 ) / V shape = self.phi.shape nCellPerPin = shape[1] // self.npin V = np.sum(self.dx.reshape(self.npin, -1), axis=1) phi_dx = self.phi[:, :] * self.dx[:] self.phi_homo = homo_space(phi_dx) if self.computenorm: self.norm = np.sum(self.phi_homo, axis=-1) else: print('compute norm') norm = self.norm / np.sum(self.phi_homo, axis=-1) self.phi_homo *= norm[:, np.newaxis] phi_dx *= norm[:, np.newaxis] self.sig_t_homo = homo_space(self.sig_t * phi_dx) / self.phi_homo self.sig_f_homo = homo_space(self.vsig_f * phi_dx) / self.phi_homo self.chi_homo = homo_space(self.chi * self.dx) self.sig_s_homo = np.zeros((self.G, self.G, self.npin)) for gp in range(self.G): self.sig_s_homo[gp] = homo_space(self.sig_s[gp] * phi_dx ) / self.phi_homo def homogenize_energy(self): """ Homogenize the cross sections over the energy range """ def homo_energy(array1, array2=None): """ convinence function to do the integration return rac{\\sum_i array1[i] * array2[i]}{\\sum_i array2[i]} for each coarse group """ if array2 is not None: y = np.zeros((nCG, len(array1[0]))) z = np.zeros((nCG, len(array1[0]))) for g, cg in enumerate(grouping): z[cg - 1] += array1[g] * array2[g] y[cg - 1] += array2[g] return z / y else: z = np.zeros((nCG, len(array1[0]))) for g, cg in enumerate(grouping): z[cg - 1] += array1[g] return z nCG = self.mapping.nCG nFG = self.mapping.nFG grouping = np.array(self.mapping.grouping) dE_coarse = np.array(self.mapping.dE_coarse) dE_fine = np.array(self.mapping.dE_fine) dE_coarse /= dE_coarse dE_fine /= dE_fine phi_homo = homo_energy(self.phi_homo, dE_fine[:, np.newaxis]) if self.computenorm: norm = np.zeros(nCG) for g, cg in enumerate(grouping): norm[cg - 1] += self.norm[g] self.norm = norm """ print(self.mapping.fine_bounds) import matplotlib.pyplot as plt def barchart(x, y): X = np.zeros(2 * len(y)) Y = np.zeros(2 * len(y)) for i in range(0, len(y)): X[2 * i] = x[i] X[2 * i + 1] = x[i + 1] Y[2 * i] = y[i] Y[2 * i + 1] = y[i] return X, Y plt.loglog(*barchart(self.mapping.fine_bounds, self.sig_t_homo[:,0]), 'g-', label='fine group') """ self.sig_t_homo = homo_energy(self.sig_t_homo, self.phi_homo) self.sig_f_homo = homo_energy(self.sig_f_homo, self.phi_homo) self.chi_homo = homo_energy(self.chi_homo) sig_s_homo = np.zeros((nCG, nCG, self.npin)) for gp, g in enumerate(grouping): sig_s_homo[g - 1] += homo_energy(self.sig_s_homo[gp], self.phi_homo ) self.sig_s_homo = sig_s_homo self.phi_homo = phi_homo """ plt.loglog(*barchart(self.mapping.coarse_bounds, self.sig_t_homo[:,0]), 'k-', label='coarse group') plt.legend(loc=0) plt.xlabel('Energy [MeV]') plt.ylabel('$\\Sigma_t$ [cm$^{-1}$]') plt.savefig('test.pdf', transparent=True) """
<mask token> class XS: <mask token> def write_homogenized_XS(self, fname, mu=None): if mu is not None: assert mu.shape == self.sig_t.shape self.mu = mu G, npin = self.sig_t.shape sig_t = self.sig_t * self.mu vsig_f = self.sig_f * self.mu sig_s = self.sig_s * self.mu s = '{} {} 0\n'.format(npin, G) s += '{}\n'.format(' '.join([str(g) for g in range(G + 1)])) s += '{}\n'.format(' '.join([str(g) for g in range(G)])) for mat in range(npin): s += 'pin {}\n'.format(mat + 1) s += '1 1 1.0 0.0 0.602214179\n' for g in range(G): s += '{:<12.9f} {:<12.9f} {:<12.9f} {:<12.9f}\n'.format(sig_t [g, mat], vsig_f[g, mat], vsig_f[g, mat], self.chi[g, mat]) for g in range(G): s += '{}\n'.format(' '.join(['{:<12.9f}'.format(s) for s in sig_s[:, g, mat]])) with open(fname, 'w') as f: f.write(s[:-1]) <mask token> class DGMSOLVER: def __init__(self, G, fname, fm, cm, mm, nPin, norm=None, mapping=None, vacuum=False, k=None, phi=None, psi=None): """ Inputs: G - Number of energy groups fname - Name of the cross section file fm - Fine mesh cm - Coarse mesh mm - Material map nPin - Number of pincells norm - norm of the flux to keep constant (match phi shape) mapping - structure class that holds fine -> coarse mapping """ self.G = G self.fname = fname self.fm = fm self.cm = cm self.mm = mm self.npin = nPin self.norm = norm self.computenorm = self.norm is None self.vacuum = vacuum self.mapping = mapping self.setOptions() self.solve(k, phi, psi) self.homogenize_space() if self.mapping is not None: self.homogenize_energy() def setOptions(self): """ Set the options for the Unotran solve """ pydgm.control.spatial_dimension = 1 pydgm.control.fine_mesh_x = self.fm pydgm.control.coarse_mesh_x = self.cm pydgm.control.material_map = self.mm pydgm.control.xs_name = self.fname.ljust(256) pydgm.control.angle_order = 8 pydgm.control.angle_option = pydgm.angle.gl pydgm.control.boundary_west = 0.0 if self.vacuum else 1.0 pydgm.control.boundary_east = 0.0 if self.vacuum else 1.0 pydgm.control.allow_fission = True pydgm.control.eigen_print = 0 pydgm.control.outer_print = 0 pydgm.control.eigen_tolerance = 1e-14 pydgm.control.outer_tolerance = 1e-12 pydgm.control.max_eigen_iters = 10000 pydgm.control.max_outer_iters = 1 pydgm.control.store_psi = True pydgm.control.solver_type = 'eigen'.ljust(256) pydgm.control.source_value = 0.0 pydgm.control.equation_type = 'DD' pydgm.control.scatter_leg_order = 0 pydgm.control.ignore_warnings = True def solve(self, k, phi, psi): """ Solve the problem using Unotran """ pydgm.solver.initialize_solver() if k is not None: pydgm.state.keff = k if phi is not None: pydgm.state.phi = phi if psi is not None: pydgm.state.psi = psi pydgm.solver.solve() self.extractInfo() self.iter_k = np.copy(pydgm.state.keff) self.iter_phi = np.copy(pydgm.state.phi) self.iter_psi = np.copy(pydgm.state.psi) pydgm.solver.finalize_solver() pydgm.control.finalize_control() def extractInfo(self): """ Copy information from Unotran before the solver is deallocated """ self.phi = np.copy(pydgm.state.mg_phi[0]) self.dx = np.copy(pydgm.mesh.dx) self.mat_map = np.copy(pydgm.state.mg_mmap) self.sig_t = np.array([pydgm.state.mg_sig_t[:, self.mat_map[c] - 1] for c in range(len(self.mat_map))]).T self.sig_s = np.array([pydgm.state.mg_sig_s[0, :, :, self.mat_map[c ] - 1] for c in range(len(self.mat_map))]).T self.vsig_f = np.array([pydgm.state.mg_nu_sig_f[:, self.mat_map[c] - 1] for c in range(len(self.mat_map))]).T self.chi = np.array([pydgm.state.mg_chi[:, self.mat_map[c] - 1] for c in range(len(self.mat_map))]).T def homogenize_space(self): """ Homogenize the cross sections over the spatial region """ def homo_space(array): """Convenience function to do the integration""" return np.sum(array.reshape(-1, self.npin, nCellPerPin), axis=2 ) / V shape = self.phi.shape nCellPerPin = shape[1] // self.npin V = np.sum(self.dx.reshape(self.npin, -1), axis=1) phi_dx = self.phi[:, :] * self.dx[:] self.phi_homo = homo_space(phi_dx) if self.computenorm: self.norm = np.sum(self.phi_homo, axis=-1) else: print('compute norm') norm = self.norm / np.sum(self.phi_homo, axis=-1) self.phi_homo *= norm[:, np.newaxis] phi_dx *= norm[:, np.newaxis] self.sig_t_homo = homo_space(self.sig_t * phi_dx) / self.phi_homo self.sig_f_homo = homo_space(self.vsig_f * phi_dx) / self.phi_homo self.chi_homo = homo_space(self.chi * self.dx) self.sig_s_homo = np.zeros((self.G, self.G, self.npin)) for gp in range(self.G): self.sig_s_homo[gp] = homo_space(self.sig_s[gp] * phi_dx ) / self.phi_homo def homogenize_energy(self): """ Homogenize the cross sections over the energy range """ def homo_energy(array1, array2=None): """ convinence function to do the integration return rac{\\sum_i array1[i] * array2[i]}{\\sum_i array2[i]} for each coarse group """ if array2 is not None: y = np.zeros((nCG, len(array1[0]))) z = np.zeros((nCG, len(array1[0]))) for g, cg in enumerate(grouping): z[cg - 1] += array1[g] * array2[g] y[cg - 1] += array2[g] return z / y else: z = np.zeros((nCG, len(array1[0]))) for g, cg in enumerate(grouping): z[cg - 1] += array1[g] return z nCG = self.mapping.nCG nFG = self.mapping.nFG grouping = np.array(self.mapping.grouping) dE_coarse = np.array(self.mapping.dE_coarse) dE_fine = np.array(self.mapping.dE_fine) dE_coarse /= dE_coarse dE_fine /= dE_fine phi_homo = homo_energy(self.phi_homo, dE_fine[:, np.newaxis]) if self.computenorm: norm = np.zeros(nCG) for g, cg in enumerate(grouping): norm[cg - 1] += self.norm[g] self.norm = norm """ print(self.mapping.fine_bounds) import matplotlib.pyplot as plt def barchart(x, y): X = np.zeros(2 * len(y)) Y = np.zeros(2 * len(y)) for i in range(0, len(y)): X[2 * i] = x[i] X[2 * i + 1] = x[i + 1] Y[2 * i] = y[i] Y[2 * i + 1] = y[i] return X, Y plt.loglog(*barchart(self.mapping.fine_bounds, self.sig_t_homo[:,0]), 'g-', label='fine group') """ self.sig_t_homo = homo_energy(self.sig_t_homo, self.phi_homo) self.sig_f_homo = homo_energy(self.sig_f_homo, self.phi_homo) self.chi_homo = homo_energy(self.chi_homo) sig_s_homo = np.zeros((nCG, nCG, self.npin)) for gp, g in enumerate(grouping): sig_s_homo[g - 1] += homo_energy(self.sig_s_homo[gp], self.phi_homo ) self.sig_s_homo = sig_s_homo self.phi_homo = phi_homo """ plt.loglog(*barchart(self.mapping.coarse_bounds, self.sig_t_homo[:,0]), 'k-', label='coarse group') plt.legend(loc=0) plt.xlabel('Energy [MeV]') plt.ylabel('$\\Sigma_t$ [cm$^{-1}$]') plt.savefig('test.pdf', transparent=True) """
<mask token> class XS: def __init__(self, sig_t, sig_f, chi, sig_s, mu=None): self.sig_t = sig_t self.sig_f = sig_f self.chi = chi self.sig_s = sig_s self.mu = mu if mu is None else np.ones(self.sig_t.shape) def write_homogenized_XS(self, fname, mu=None): if mu is not None: assert mu.shape == self.sig_t.shape self.mu = mu G, npin = self.sig_t.shape sig_t = self.sig_t * self.mu vsig_f = self.sig_f * self.mu sig_s = self.sig_s * self.mu s = '{} {} 0\n'.format(npin, G) s += '{}\n'.format(' '.join([str(g) for g in range(G + 1)])) s += '{}\n'.format(' '.join([str(g) for g in range(G)])) for mat in range(npin): s += 'pin {}\n'.format(mat + 1) s += '1 1 1.0 0.0 0.602214179\n' for g in range(G): s += '{:<12.9f} {:<12.9f} {:<12.9f} {:<12.9f}\n'.format(sig_t [g, mat], vsig_f[g, mat], vsig_f[g, mat], self.chi[g, mat]) for g in range(G): s += '{}\n'.format(' '.join(['{:<12.9f}'.format(s) for s in sig_s[:, g, mat]])) with open(fname, 'w') as f: f.write(s[:-1]) def __add__(self, newXS): sig_t = np.concatenate([self.sig_t, newXS.sig_t], axis=-1) sig_f = np.concatenate([self.sig_f, newXS.sig_f], axis=-1) sig_s = np.concatenate([self.sig_s, newXS.sig_s], axis=-1) chi = np.concatenate([self.chi, newXS.chi], axis=-1) mu = np.concatenate([self.mu, newXS.mu], axis=-1) return XS(sig_t, sig_f, chi, sig_s, mu) class DGMSOLVER: def __init__(self, G, fname, fm, cm, mm, nPin, norm=None, mapping=None, vacuum=False, k=None, phi=None, psi=None): """ Inputs: G - Number of energy groups fname - Name of the cross section file fm - Fine mesh cm - Coarse mesh mm - Material map nPin - Number of pincells norm - norm of the flux to keep constant (match phi shape) mapping - structure class that holds fine -> coarse mapping """ self.G = G self.fname = fname self.fm = fm self.cm = cm self.mm = mm self.npin = nPin self.norm = norm self.computenorm = self.norm is None self.vacuum = vacuum self.mapping = mapping self.setOptions() self.solve(k, phi, psi) self.homogenize_space() if self.mapping is not None: self.homogenize_energy() def setOptions(self): """ Set the options for the Unotran solve """ pydgm.control.spatial_dimension = 1 pydgm.control.fine_mesh_x = self.fm pydgm.control.coarse_mesh_x = self.cm pydgm.control.material_map = self.mm pydgm.control.xs_name = self.fname.ljust(256) pydgm.control.angle_order = 8 pydgm.control.angle_option = pydgm.angle.gl pydgm.control.boundary_west = 0.0 if self.vacuum else 1.0 pydgm.control.boundary_east = 0.0 if self.vacuum else 1.0 pydgm.control.allow_fission = True pydgm.control.eigen_print = 0 pydgm.control.outer_print = 0 pydgm.control.eigen_tolerance = 1e-14 pydgm.control.outer_tolerance = 1e-12 pydgm.control.max_eigen_iters = 10000 pydgm.control.max_outer_iters = 1 pydgm.control.store_psi = True pydgm.control.solver_type = 'eigen'.ljust(256) pydgm.control.source_value = 0.0 pydgm.control.equation_type = 'DD' pydgm.control.scatter_leg_order = 0 pydgm.control.ignore_warnings = True def solve(self, k, phi, psi): """ Solve the problem using Unotran """ pydgm.solver.initialize_solver() if k is not None: pydgm.state.keff = k if phi is not None: pydgm.state.phi = phi if psi is not None: pydgm.state.psi = psi pydgm.solver.solve() self.extractInfo() self.iter_k = np.copy(pydgm.state.keff) self.iter_phi = np.copy(pydgm.state.phi) self.iter_psi = np.copy(pydgm.state.psi) pydgm.solver.finalize_solver() pydgm.control.finalize_control() def extractInfo(self): """ Copy information from Unotran before the solver is deallocated """ self.phi = np.copy(pydgm.state.mg_phi[0]) self.dx = np.copy(pydgm.mesh.dx) self.mat_map = np.copy(pydgm.state.mg_mmap) self.sig_t = np.array([pydgm.state.mg_sig_t[:, self.mat_map[c] - 1] for c in range(len(self.mat_map))]).T self.sig_s = np.array([pydgm.state.mg_sig_s[0, :, :, self.mat_map[c ] - 1] for c in range(len(self.mat_map))]).T self.vsig_f = np.array([pydgm.state.mg_nu_sig_f[:, self.mat_map[c] - 1] for c in range(len(self.mat_map))]).T self.chi = np.array([pydgm.state.mg_chi[:, self.mat_map[c] - 1] for c in range(len(self.mat_map))]).T def homogenize_space(self): """ Homogenize the cross sections over the spatial region """ def homo_space(array): """Convenience function to do the integration""" return np.sum(array.reshape(-1, self.npin, nCellPerPin), axis=2 ) / V shape = self.phi.shape nCellPerPin = shape[1] // self.npin V = np.sum(self.dx.reshape(self.npin, -1), axis=1) phi_dx = self.phi[:, :] * self.dx[:] self.phi_homo = homo_space(phi_dx) if self.computenorm: self.norm = np.sum(self.phi_homo, axis=-1) else: print('compute norm') norm = self.norm / np.sum(self.phi_homo, axis=-1) self.phi_homo *= norm[:, np.newaxis] phi_dx *= norm[:, np.newaxis] self.sig_t_homo = homo_space(self.sig_t * phi_dx) / self.phi_homo self.sig_f_homo = homo_space(self.vsig_f * phi_dx) / self.phi_homo self.chi_homo = homo_space(self.chi * self.dx) self.sig_s_homo = np.zeros((self.G, self.G, self.npin)) for gp in range(self.G): self.sig_s_homo[gp] = homo_space(self.sig_s[gp] * phi_dx ) / self.phi_homo def homogenize_energy(self): """ Homogenize the cross sections over the energy range """ def homo_energy(array1, array2=None): """ convinence function to do the integration return rac{\\sum_i array1[i] * array2[i]}{\\sum_i array2[i]} for each coarse group """ if array2 is not None: y = np.zeros((nCG, len(array1[0]))) z = np.zeros((nCG, len(array1[0]))) for g, cg in enumerate(grouping): z[cg - 1] += array1[g] * array2[g] y[cg - 1] += array2[g] return z / y else: z = np.zeros((nCG, len(array1[0]))) for g, cg in enumerate(grouping): z[cg - 1] += array1[g] return z nCG = self.mapping.nCG nFG = self.mapping.nFG grouping = np.array(self.mapping.grouping) dE_coarse = np.array(self.mapping.dE_coarse) dE_fine = np.array(self.mapping.dE_fine) dE_coarse /= dE_coarse dE_fine /= dE_fine phi_homo = homo_energy(self.phi_homo, dE_fine[:, np.newaxis]) if self.computenorm: norm = np.zeros(nCG) for g, cg in enumerate(grouping): norm[cg - 1] += self.norm[g] self.norm = norm """ print(self.mapping.fine_bounds) import matplotlib.pyplot as plt def barchart(x, y): X = np.zeros(2 * len(y)) Y = np.zeros(2 * len(y)) for i in range(0, len(y)): X[2 * i] = x[i] X[2 * i + 1] = x[i + 1] Y[2 * i] = y[i] Y[2 * i + 1] = y[i] return X, Y plt.loglog(*barchart(self.mapping.fine_bounds, self.sig_t_homo[:,0]), 'g-', label='fine group') """ self.sig_t_homo = homo_energy(self.sig_t_homo, self.phi_homo) self.sig_f_homo = homo_energy(self.sig_f_homo, self.phi_homo) self.chi_homo = homo_energy(self.chi_homo) sig_s_homo = np.zeros((nCG, nCG, self.npin)) for gp, g in enumerate(grouping): sig_s_homo[g - 1] += homo_energy(self.sig_s_homo[gp], self.phi_homo ) self.sig_s_homo = sig_s_homo self.phi_homo = phi_homo """ plt.loglog(*barchart(self.mapping.coarse_bounds, self.sig_t_homo[:,0]), 'k-', label='coarse group') plt.legend(loc=0) plt.xlabel('Energy [MeV]') plt.ylabel('$\\Sigma_t$ [cm$^{-1}$]') plt.savefig('test.pdf', transparent=True) """
import pydgm import numpy as np import sys class XS(): # Hold the cross section values with routines for outputting to txt file def __init__(self, sig_t, sig_f, chi, sig_s, mu=None): self.sig_t = sig_t self.sig_f = sig_f self.chi = chi self.sig_s = sig_s self.mu = mu if mu is None else np.ones(self.sig_t.shape) def write_homogenized_XS(self, fname, mu=None): if mu is not None: assert mu.shape == self.sig_t.shape self.mu = mu G, npin = self.sig_t.shape sig_t = self.sig_t * self.mu vsig_f = self.sig_f * self.mu sig_s = self.sig_s * self.mu # Write the cross sections to file s = '{} {} 0\n'.format(npin, G) s += '{}\n'.format(' '.join([str(g) for g in range(G + 1)])) s += '{}\n'.format(' '.join([str(g) for g in range(G)])) for mat in range(npin): s += 'pin {}\n'.format(mat + 1) s += '1 1 1.0 0.0 0.602214179\n' for g in range(G): s += '{:<12.9f} {:<12.9f} {:<12.9f} {:<12.9f}\n'.format(sig_t[g, mat], vsig_f[g, mat], vsig_f[g, mat], self.chi[g, mat]) for g in range(G): s += '{}\n'.format(' '.join(['{:<12.9f}'.format(s) for s in sig_s[:, g, mat]])) with open(fname, 'w') as f: f.write(s[:-1]) def __add__(self, newXS): sig_t = np.concatenate([self.sig_t, newXS.sig_t], axis=-1) sig_f = np.concatenate([self.sig_f, newXS.sig_f], axis=-1) sig_s = np.concatenate([self.sig_s, newXS.sig_s], axis=-1) chi = np.concatenate([self.chi, newXS.chi], axis=-1) mu = np.concatenate([self.mu, newXS.mu], axis=-1) return XS(sig_t, sig_f, chi, sig_s, mu) class DGMSOLVER(): # Solve the problem using unotran def __init__(self, G, fname, fm, cm, mm, nPin, norm=None, mapping=None, vacuum=False, k=None, phi=None, psi=None): ''' Inputs: G - Number of energy groups fname - Name of the cross section file fm - Fine mesh cm - Coarse mesh mm - Material map nPin - Number of pincells norm - norm of the flux to keep constant (match phi shape) mapping - structure class that holds fine -> coarse mapping ''' self.G = G self.fname = fname self.fm = fm self.cm = cm self.mm = mm self.npin = nPin self.norm = norm self.computenorm = self.norm is None self.vacuum = vacuum self.mapping = mapping # Pass on the options to unotran self.setOptions() # Solve using unotran self.solve(k, phi, psi) # Homogenize the cross sections over each spatial region self.homogenize_space() # Homogenize the cross sections over each energy range if self.mapping is not None: self.homogenize_energy() def setOptions(self): ''' Set the options for the Unotran solve ''' pydgm.control.spatial_dimension = 1 pydgm.control.fine_mesh_x = self.fm pydgm.control.coarse_mesh_x = self.cm pydgm.control.material_map = self.mm pydgm.control.xs_name = self.fname.ljust(256) pydgm.control.angle_order = 8 pydgm.control.angle_option = pydgm.angle.gl pydgm.control.boundary_west = 0.0 if self.vacuum else 1.0 pydgm.control.boundary_east = 0.0 if self.vacuum else 1.0 pydgm.control.allow_fission = True pydgm.control.eigen_print = 0 pydgm.control.outer_print = 0 pydgm.control.eigen_tolerance = 1e-14 pydgm.control.outer_tolerance = 1e-12 pydgm.control.max_eigen_iters = 10000 pydgm.control.max_outer_iters = 1 pydgm.control.store_psi = True pydgm.control.solver_type = 'eigen'.ljust(256) pydgm.control.source_value = 0.0 pydgm.control.equation_type = 'DD' pydgm.control.scatter_leg_order = 0 pydgm.control.ignore_warnings = True def solve(self, k, phi, psi): ''' Solve the problem using Unotran ''' # Initialize the problem pydgm.solver.initialize_solver() if k is not None: pydgm.state.keff = k if phi is not None: pydgm.state.phi = phi if psi is not None: pydgm.state.psi = psi # Call the solver pydgm.solver.solve() # Copy any information from Unotran self.extractInfo() self.iter_k = np.copy(pydgm.state.keff) self.iter_phi = np.copy(pydgm.state.phi) self.iter_psi = np.copy(pydgm.state.psi) # Clean up the solver pydgm.solver.finalize_solver() pydgm.control.finalize_control() def extractInfo(self): ''' Copy information from Unotran before the solver is deallocated ''' self.phi = np.copy(pydgm.state.mg_phi[0]) self.dx = np.copy(pydgm.mesh.dx) self.mat_map = np.copy(pydgm.state.mg_mmap) self.sig_t = np.array([pydgm.state.mg_sig_t[:, self.mat_map[c] - 1] for c in range(len(self.mat_map))]).T self.sig_s = np.array([pydgm.state.mg_sig_s[0, :, :, self.mat_map[c] - 1] for c in range(len(self.mat_map))]).T self.vsig_f = np.array([pydgm.state.mg_nu_sig_f[:, self.mat_map[c] - 1] for c in range(len(self.mat_map))]).T self.chi = np.array([pydgm.state.mg_chi[:, self.mat_map[c] - 1] for c in range(len(self.mat_map))]).T def homogenize_space(self): ''' Homogenize the cross sections over the spatial region ''' def homo_space(array): '''Convenience function to do the integration''' # sum over region return np.sum(array.reshape(-1, self.npin, nCellPerPin), axis=2) / V # Check that everything is the right shape of arrays shape = self.phi.shape #assert shape[0] == self.G #assert (shape[1] / self.npin) == (shape[1] // self.npin) # Compute the number of pins nCellPerPin = shape[1] // self.npin # Compute the \sum_{g\in G} \sum_{c\in r} V_c dE_g V = np.sum(self.dx.reshape(self.npin, -1), axis=1) # \forall g\in G, \forall c\in r compute \phi_{g,c} V_c dE_g # Homogenize the flux phi_dx = self.phi[:, :] * self.dx[:] self.phi_homo = homo_space(phi_dx) # Either find the norm of the flux or normalize the flux to self.norm if self.computenorm: self.norm = np.sum(self.phi_homo, axis=-1) else: print('compute norm') norm = self.norm / np.sum(self.phi_homo, axis=-1) self.phi_homo *= norm[:, np.newaxis] phi_dx *= norm[:, np.newaxis] # Homogenize the cross sections self.sig_t_homo = homo_space(self.sig_t * phi_dx) / self.phi_homo self.sig_f_homo = homo_space(self.vsig_f * phi_dx) / self.phi_homo self.chi_homo = homo_space(self.chi * self.dx) self.sig_s_homo = np.zeros((self.G, self.G, self.npin)) for gp in range(self.G): self.sig_s_homo[gp] = homo_space(self.sig_s[gp] * phi_dx) / self.phi_homo def homogenize_energy(self): ''' Homogenize the cross sections over the energy range ''' def homo_energy(array1, array2=None): ''' convinence function to do the integration return \frac{\sum_i array1[i] * array2[i]}{\sum_i array2[i]} for each coarse group ''' if array2 is not None: y = np.zeros((nCG, len(array1[0]))) z = np.zeros((nCG, len(array1[0]))) for g, cg in enumerate(grouping): z[cg - 1] += array1[g] * array2[g] y[cg - 1] += array2[g] return z / y else: z = np.zeros((nCG, len(array1[0]))) for g, cg in enumerate(grouping): z[cg - 1] += array1[g] return z nCG = self.mapping.nCG nFG = self.mapping.nFG grouping = np.array(self.mapping.grouping) dE_coarse = np.array(self.mapping.dE_coarse) dE_fine = np.array(self.mapping.dE_fine) dE_coarse /= dE_coarse dE_fine /= dE_fine phi_homo = homo_energy(self.phi_homo, dE_fine[:, np.newaxis]) if self.computenorm: norm = np.zeros(nCG) for g, cg in enumerate(grouping): norm[cg - 1] += self.norm[g] self.norm = norm ''' print(self.mapping.fine_bounds) import matplotlib.pyplot as plt def barchart(x, y): X = np.zeros(2 * len(y)) Y = np.zeros(2 * len(y)) for i in range(0, len(y)): X[2 * i] = x[i] X[2 * i + 1] = x[i + 1] Y[2 * i] = y[i] Y[2 * i + 1] = y[i] return X, Y plt.loglog(*barchart(self.mapping.fine_bounds, self.sig_t_homo[:,0]), 'g-', label='fine group') ''' self.sig_t_homo = homo_energy(self.sig_t_homo, self.phi_homo) self.sig_f_homo = homo_energy(self.sig_f_homo, self.phi_homo) self.chi_homo = homo_energy(self.chi_homo) sig_s_homo = np.zeros((nCG, nCG, self.npin)) for gp, g in enumerate(grouping): sig_s_homo[g - 1] += homo_energy(self.sig_s_homo[gp], self.phi_homo) self.sig_s_homo = sig_s_homo self.phi_homo = phi_homo ''' plt.loglog(*barchart(self.mapping.coarse_bounds, self.sig_t_homo[:,0]), 'k-', label='coarse group') plt.legend(loc=0) plt.xlabel('Energy [MeV]') plt.ylabel('$\Sigma_t$ [cm$^{-1}$]') plt.savefig('test.pdf', transparent=True) '''
[ 6, 8, 9, 11, 13 ]
1,711
a49ee1e3f600d83486d0cf2396ed261c61fdf926
<mask token> class Solution: <mask token> def leaf_nodes_util(self, curr, result): if not curr: return self.leaf_nodes_util(self, curr.left, result) if not curr.left and not curr.right: result.append(curr.val) self.leaf_nodes_util(self, curr.right, result) <mask token> def post_util(self, root, result): if not root or root and not root.left and not root.right: return if root.right: Solution.post_util(Solution, root.right, result) elif root.left: Solution.post_util(Solution, root.left, result) result.append(root.val) <mask token>
class TreeNode: <mask token> class Solution: def solve(self, root): if not root: return result = [] result.append(root.val) Solution.pre_util(Solution, root.left, result) Solution.leaf_nodes_util(Solution, root.left, result) Solution.leaf_nodes_util(Solution, root.right, result) Solution.post_util(Solution, root.right, result) return result def leaf_nodes_util(self, curr, result): if not curr: return self.leaf_nodes_util(self, curr.left, result) if not curr.left and not curr.right: result.append(curr.val) self.leaf_nodes_util(self, curr.right, result) def pre_util(self, root, result): if not root or root and not root.left and not root.right: return result.append(root.val) if root.left: Solution.pre_util(Solution, root.left, result) elif root.right: Solution.pre_util(Solution, root.right, result) def post_util(self, root, result): if not root or root and not root.left and not root.right: return if root.right: Solution.post_util(Solution, root.right, result) elif root.left: Solution.post_util(Solution, root.left, result) result.append(root.val) <mask token>
class TreeNode: def __init__(self, x): self.val = x self.left = None self.right = None class Solution: def solve(self, root): if not root: return result = [] result.append(root.val) Solution.pre_util(Solution, root.left, result) Solution.leaf_nodes_util(Solution, root.left, result) Solution.leaf_nodes_util(Solution, root.right, result) Solution.post_util(Solution, root.right, result) return result def leaf_nodes_util(self, curr, result): if not curr: return self.leaf_nodes_util(self, curr.left, result) if not curr.left and not curr.right: result.append(curr.val) self.leaf_nodes_util(self, curr.right, result) def pre_util(self, root, result): if not root or root and not root.left and not root.right: return result.append(root.val) if root.left: Solution.pre_util(Solution, root.left, result) elif root.right: Solution.pre_util(Solution, root.right, result) def post_util(self, root, result): if not root or root and not root.left and not root.right: return if root.right: Solution.post_util(Solution, root.right, result) elif root.left: Solution.post_util(Solution, root.left, result) result.append(root.val) <mask token>
class TreeNode: def __init__(self, x): self.val = x self.left = None self.right = None class Solution: def solve(self, root): if not root: return result = [] result.append(root.val) Solution.pre_util(Solution, root.left, result) Solution.leaf_nodes_util(Solution, root.left, result) Solution.leaf_nodes_util(Solution, root.right, result) Solution.post_util(Solution, root.right, result) return result def leaf_nodes_util(self, curr, result): if not curr: return self.leaf_nodes_util(self, curr.left, result) if not curr.left and not curr.right: result.append(curr.val) self.leaf_nodes_util(self, curr.right, result) def pre_util(self, root, result): if not root or root and not root.left and not root.right: return result.append(root.val) if root.left: Solution.pre_util(Solution, root.left, result) elif root.right: Solution.pre_util(Solution, root.right, result) def post_util(self, root, result): if not root or root and not root.left and not root.right: return if root.right: Solution.post_util(Solution, root.right, result) elif root.left: Solution.post_util(Solution, root.left, result) result.append(root.val) if __name__ == '__main__': A = [1, 2, 3, 4, 5, 6, None, None, None, 7, 8, 9, 10] from src.util.binary_tree_util import binary_tree_util print(Solution.solve(Solution, binary_tree_util.build(A)))
class TreeNode: def __init__(self, x): self.val = x self.left = None self.right = None class Solution: # @param A : root node of tree # @return a list of integers def solve(self, root): if not root: return result = [] result.append(root.val) Solution.pre_util(Solution, root.left, result) Solution.leaf_nodes_util(Solution, root.left, result) Solution.leaf_nodes_util(Solution, root.right, result) Solution.post_util(Solution, root.right, result) return result def leaf_nodes_util(self, curr, result): if not curr: return self.leaf_nodes_util(self,curr.left, result) if not curr.left and not curr.right: result.append(curr.val) self.leaf_nodes_util(self, curr.right, result) def pre_util(self, root, result): if not root or (root and not root.left and not root.right): return result.append(root.val) if root.left: Solution.pre_util(Solution, root.left, result) elif root.right: Solution.pre_util(Solution, root.right, result) def post_util(self, root, result): if not root or (root and not root.left and not root.right): return if root.right: Solution.post_util(Solution, root.right, result) elif root.left: Solution.post_util(Solution, root.left, result) result.append(root.val) if __name__ == '__main__': A = [1,2,3,4,5,6,None,None,None,7,8,9,10] from src.util.binary_tree_util import binary_tree_util print(Solution.solve(Solution,binary_tree_util.build(A)))
[ 3, 6, 7, 8, 9 ]
1,712
b90c6a3f8fe084bc2acc0b733750124a1387527c
<mask token> class SpriteObject(pygame.sprite.Sprite): <mask token> def update(self): self.rotate() def rotate(self): self.angle += 0.3 self.image = pygame.transform.rotate(self.original_image, self.angle) self.rect = self.image.get_rect(center=self.rect.center) self.mask = pygame.mask.from_surface(self.image) <mask token>
<mask token> class SpriteObject(pygame.sprite.Sprite): def __init__(self, x, y, w, h, color): pygame.sprite.Sprite.__init__(self) self.angle = 0 self.original_image = pygame.Surface([w, h], pygame.SRCALPHA) self.original_image.fill(color) self.image = self.original_image self.rect = self.image.get_rect(center=(x, y)) self.mask = pygame.mask.from_surface(self.image) def update(self): self.rotate() def rotate(self): self.angle += 0.3 self.image = pygame.transform.rotate(self.original_image, self.angle) self.rect = self.image.get_rect(center=self.rect.center) self.mask = pygame.mask.from_surface(self.image) <mask token>
<mask token> class SpriteObject(pygame.sprite.Sprite): def __init__(self, x, y, w, h, color): pygame.sprite.Sprite.__init__(self) self.angle = 0 self.original_image = pygame.Surface([w, h], pygame.SRCALPHA) self.original_image.fill(color) self.image = self.original_image self.rect = self.image.get_rect(center=(x, y)) self.mask = pygame.mask.from_surface(self.image) def update(self): self.rotate() def rotate(self): self.angle += 0.3 self.image = pygame.transform.rotate(self.original_image, self.angle) self.rect = self.image.get_rect(center=self.rect.center) self.mask = pygame.mask.from_surface(self.image) pygame.init() <mask token> while run: clock.tick(60) for event in pygame.event.get(): if event.type == pygame.QUIT: run = False moving_object.rect.center = pygame.mouse.get_pos() all_sprites.update() collide = pygame.sprite.spritecollide(moving_object, static_sprites, False, pygame.sprite.collide_mask) window.fill((255, 0, 0) if collide else (255, 255, 255)) all_sprites.draw(window) pygame.display.update() pygame.quit() exit()
<mask token> class SpriteObject(pygame.sprite.Sprite): def __init__(self, x, y, w, h, color): pygame.sprite.Sprite.__init__(self) self.angle = 0 self.original_image = pygame.Surface([w, h], pygame.SRCALPHA) self.original_image.fill(color) self.image = self.original_image self.rect = self.image.get_rect(center=(x, y)) self.mask = pygame.mask.from_surface(self.image) def update(self): self.rotate() def rotate(self): self.angle += 0.3 self.image = pygame.transform.rotate(self.original_image, self.angle) self.rect = self.image.get_rect(center=self.rect.center) self.mask = pygame.mask.from_surface(self.image) pygame.init() clock = pygame.time.Clock() window = pygame.display.set_mode((400, 400)) size = window.get_size() moving_object = SpriteObject(0, 0, 50, 50, (128, 0, 255)) static_objects = [SpriteObject(size[0] // 2, size[1] // 3, 100, 50, (128, 128, 128)), SpriteObject(size[0] // 4, size[1] * 2 // 3, 100, 50, (128, 128, 128)), SpriteObject(size[0] * 3 // 4, size[1] * 2 // 3, 100, 50, ( 128, 128, 128))] all_sprites = pygame.sprite.Group([moving_object] + static_objects) static_sprites = pygame.sprite.Group(static_objects) run = True while run: clock.tick(60) for event in pygame.event.get(): if event.type == pygame.QUIT: run = False moving_object.rect.center = pygame.mouse.get_pos() all_sprites.update() collide = pygame.sprite.spritecollide(moving_object, static_sprites, False, pygame.sprite.collide_mask) window.fill((255, 0, 0) if collide else (255, 255, 255)) all_sprites.draw(window) pygame.display.update() pygame.quit() exit()
import pygame class SpriteObject(pygame.sprite.Sprite): def __init__(self, x, y, w, h, color): pygame.sprite.Sprite.__init__(self) self.angle = 0 self.original_image = pygame.Surface([w, h], pygame.SRCALPHA) self.original_image.fill(color) self.image = self.original_image self.rect = self.image.get_rect(center = (x, y)) self.mask = pygame.mask.from_surface(self.image ) def update(self): self.rotate() def rotate(self): self.angle += 0.3 self.image = pygame.transform.rotate(self.original_image, self.angle) self.rect = self.image.get_rect(center = self.rect.center) self.mask = pygame.mask.from_surface(self.image ) pygame.init() clock = pygame.time.Clock() window = pygame.display.set_mode((400, 400)) size = window.get_size() moving_object = SpriteObject(0, 0, 50, 50, (128, 0, 255)) static_objects = [ SpriteObject(size[0] // 2, size[1] // 3, 100, 50, (128, 128, 128)), SpriteObject(size[0] // 4, size[1] * 2 // 3, 100, 50, (128, 128, 128)), SpriteObject(size[0] * 3 // 4, size[1] * 2 // 3, 100, 50, (128, 128, 128)) ] all_sprites = pygame.sprite.Group([moving_object] + static_objects) static_sprites = pygame.sprite.Group(static_objects) run = True while run: clock.tick(60) for event in pygame.event.get(): if event.type == pygame.QUIT: run = False moving_object.rect.center = pygame.mouse.get_pos() all_sprites.update() collide = pygame.sprite.spritecollide(moving_object, static_sprites, False, pygame.sprite.collide_mask) window.fill((255, 0, 0) if collide else (255, 255, 255)) all_sprites.draw(window) pygame.display.update() pygame.quit() exit()
[ 3, 4, 5, 6, 8 ]
1,713
ee72262fb29b46784fb357269dd5160192968c1b
<mask token>
<mask token> if __name__ == '__main__': os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'day66.settings') import django django.setup() from applistions.models import MyClass, Student, Teacher, Employee from django.db.models import Avg, Sum, Max, Min, Count ret = Employee.objects.all().aggregate(Max('salary')) print(ret) ret = Employee.objects.all().aggregate(max_salary=Max('salary')) print(ret) ret = Employee.objects.all().aggregate(Avg('salary')) print(ret) ret = Employee.objects.values('dept').aggregate(Avg('salary')) print(ret) ret = Employee.objects.values('dept').annotate(Avg('salary')).values_list( 'dept', 'salary__avg') print(ret) ret = Employee.objects.values('dept').annotate(avg_age=Avg('age') ).values_list('dept', 'avg_age') print(ret) ret = Student.objects.values('myclass').annotate(s_count=Count('id')) print(ret)
import os if __name__ == '__main__': os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'day66.settings') import django django.setup() from applistions.models import MyClass, Student, Teacher, Employee from django.db.models import Avg, Sum, Max, Min, Count ret = Employee.objects.all().aggregate(Max('salary')) print(ret) ret = Employee.objects.all().aggregate(max_salary=Max('salary')) print(ret) ret = Employee.objects.all().aggregate(Avg('salary')) print(ret) ret = Employee.objects.values('dept').aggregate(Avg('salary')) print(ret) ret = Employee.objects.values('dept').annotate(Avg('salary')).values_list( 'dept', 'salary__avg') print(ret) ret = Employee.objects.values('dept').annotate(avg_age=Avg('age') ).values_list('dept', 'avg_age') print(ret) ret = Student.objects.values('myclass').annotate(s_count=Count('id')) print(ret)
import os if __name__ == "__main__": os.environ.setdefault("DJANGO_SETTINGS_MODULE", "day66.settings") import django django.setup() from applistions.models import MyClass,Student,Teacher,Employee from django.db.models import Avg, Sum, Max, Min, Count # 1.求所有人里面工资最高的 ret = Employee.objects.all().aggregate(Max('salary')) print(ret) # {'salary__max': 80909} # # 指定返回字典中key的值 ret = Employee.objects.all().aggregate(max_salary=Max('salary')) print(ret) # {'max_salary': 80909} # # 求所有人的平均价格 ret = Employee.objects.all().aggregate(Avg('salary')) print(ret) # {'salary__avg': 20855.1667} # 使用ORM查询每个部门的平均工资 ret = Employee.objects.values('dept').aggregate(Avg('salary')) print(ret) # 查询的是每个人的平均工资,此条查询错误 # annotate中要写上分住之后要做的事情 # anntate前面查询的是什么就按什么分组 ret = Employee.objects.values('dept').annotate(Avg('salary')).values_list('dept','salary__avg') print(ret) # <QuerySet [('财务部', 2111.0), ('技术部', 17000.0), ('人事部', 6000.0), ('管理部', 80909.0)]> # # ORM中分组使用annotate # # 1. annotate中要写上分组之后要做的事情 # # 2. annotate前面查询的是什么就按什么分组 # ret = Employee.objects.values('dept').annotate(avg_price=Avg('salary')).values('dept', 'avg_price') # print(ret) # # # 每个部门的平均年龄 ret = Employee.objects.values('dept').annotate(avg_age=Avg('age')).values_list('dept','avg_age') print(ret) # <QuerySet [('财务部', 27.5), ('技术部', 300.0), ('人事部', 45.0), ('管理部', 45.0)]> # # 求每个班级的学生的数量 ret = Student.objects.values('myclass').annotate(s_count=Count('id')) print(ret) # <QuerySet [{'myclass': 1, 's_count': 1}, {'myclass': 2, 's_count': 3}, {'myclass': 3, 's_count': 2}, {'myclass': 4, 's_count': 1}, {'myclass': 5, 's_count': 1}, {'myclass': 6, 's_count': 1}, {'myclass': 7, 's_count': 1}]>
null
[ 0, 1, 2, 3 ]
1,714
81ff77064a299b4fcd456f341ecb40ba5afe3295
<mask token>
<mask token> for name in ('Manny', 'Moe', 'Jack'): print('Hi ya', name + '!')
#!/usr/bin/env python3 """ Greets the Pep Boys. """ for name in "Manny", "Moe", "Jack": print("Hi ya", name + '!')
null
null
[ 0, 1, 2 ]
1,715
6fa7aef7c2b91de409a0e8574e362efefa642ee7
<mask token>
<mask token> def getUSMeasure(): bus.write_byte(address_arduino, 1) distance = bus.read_byte(address_arduino) return distance def forward(): bus.write_byte(address_arduino, 2) <mask token>
<mask token> def getUSMeasure(): bus.write_byte(address_arduino, 1) distance = bus.read_byte(address_arduino) return distance def forward(): bus.write_byte(address_arduino, 2) def backward(): bus.write_byte(address_arduino, 3) <mask token>
<mask token> import smbus import time address_arduino = 4 bus = smbus.SMBus(1) def getUSMeasure(): bus.write_byte(address_arduino, 1) distance = bus.read_byte(address_arduino) return distance def forward(): bus.write_byte(address_arduino, 2) def backward(): bus.write_byte(address_arduino, 3) if __name__ == '__main__': while True: distance = getUSMeasure() print(distance) if distance < 20: backward() print('I move back') else: forward() print('I advance') time.sleep(0.1)
''' Note: a TimeOutException appear when distance even 0. ''' import smbus import time #slave arduino address address_arduino = 0x04 bus = smbus.SMBus(1) #get a measure by i2c def getUSMeasure(): bus.write_byte(address_arduino, 1) distance = bus.read_byte(address_arduino) return distance #request rotate motor in a sens def forward(): bus.write_byte(address_arduino, 2) #request rotate motor in the other sens def backward(): bus.write_byte(address_arduino, 3) if __name__ == '__main__': while True: distance = getUSMeasure() print(distance) if distance < 20: backward() print('I move back') else: forward() print('I advance') time.sleep(0.1)
[ 0, 2, 3, 6, 7 ]
1,716
0dab663847fdb4efa419882519616b7a89d0bbe8
<mask token> def generate_random_email_and_password(): """ Function to generate random email id and password """ email = fake.email() password_string = fake.password() random_info = {'email': email, 'password': password_string} return random_info def generate_random_coupon_code(suffix=None): """ This function generates random coupon codes """ code = fake.password(length=8, special_chars=False, digits=True, upper_case=True, lower_case=False) if suffix: code += suffix return code def create_coupon(data): """ This function is used to create a coupon using API call. """ return woo_request_helper().post_details('coupons', data, expected_status_code=201) <mask token> def create_user(data): """ This function is used to create the user by user data using API call. """ return woo_request_helper().post_details(wc_endpoint='customers', params=data) <mask token>
<mask token> def generate_random_email_and_password(): """ Function to generate random email id and password """ email = fake.email() password_string = fake.password() random_info = {'email': email, 'password': password_string} return random_info def generate_random_coupon_code(suffix=None): """ This function generates random coupon codes """ code = fake.password(length=8, special_chars=False, digits=True, upper_case=True, lower_case=False) if suffix: code += suffix return code def create_coupon(data): """ This function is used to create a coupon using API call. """ return woo_request_helper().post_details('coupons', data, expected_status_code=201) def list_all_products(): """ This function returns the list of all products from the API. """ all_products = [] max_pages = 1000 page_num = 1 while page_num < max_pages: param = {'per_page': 100, 'page': page_num} rs_api = woo_request_helper().get_details(wc_endpoint='products', params=param) if rs_api: page_num += 1 all_products.extend(rs_api) else: break return all_products def get_products_by_id(product_id): """ This function is used to get the product by product id using API call. """ rs_api = woo_request_helper().get_details(wc_endpoint='products/{}'. format(product_id)) return rs_api def update_random_product_price(product_id, data): """ This function is used to update the product by product id and data to update using the API call. """ return woo_request_helper().put_details(wc_endpoint='products/{}'. format(product_id), params=data) def create_user(data): """ This function is used to create the user by user data using API call. """ return woo_request_helper().post_details(wc_endpoint='customers', params=data) <mask token>
<mask token> def generate_random_email_and_password(): """ Function to generate random email id and password """ email = fake.email() password_string = fake.password() random_info = {'email': email, 'password': password_string} return random_info def generate_random_coupon_code(suffix=None): """ This function generates random coupon codes """ code = fake.password(length=8, special_chars=False, digits=True, upper_case=True, lower_case=False) if suffix: code += suffix return code def create_coupon(data): """ This function is used to create a coupon using API call. """ return woo_request_helper().post_details('coupons', data, expected_status_code=201) def list_all_products(): """ This function returns the list of all products from the API. """ all_products = [] max_pages = 1000 page_num = 1 while page_num < max_pages: param = {'per_page': 100, 'page': page_num} rs_api = woo_request_helper().get_details(wc_endpoint='products', params=param) if rs_api: page_num += 1 all_products.extend(rs_api) else: break return all_products def get_products_by_id(product_id): """ This function is used to get the product by product id using API call. """ rs_api = woo_request_helper().get_details(wc_endpoint='products/{}'. format(product_id)) return rs_api def update_random_product_price(product_id, data): """ This function is used to update the product by product id and data to update using the API call. """ return woo_request_helper().put_details(wc_endpoint='products/{}'. format(product_id), params=data) def create_user(data): """ This function is used to create the user by user data using API call. """ return woo_request_helper().post_details(wc_endpoint='customers', params=data) def delete_user_by_id(user_id): """ This function is used to delete the user by user id using API call. """ return woo_request_helper().delete_details(wc_endpoint='customers/{}'. format(user_id))
<mask token> fake = Faker() def generate_random_email_and_password(): """ Function to generate random email id and password """ email = fake.email() password_string = fake.password() random_info = {'email': email, 'password': password_string} return random_info def generate_random_coupon_code(suffix=None): """ This function generates random coupon codes """ code = fake.password(length=8, special_chars=False, digits=True, upper_case=True, lower_case=False) if suffix: code += suffix return code def create_coupon(data): """ This function is used to create a coupon using API call. """ return woo_request_helper().post_details('coupons', data, expected_status_code=201) def list_all_products(): """ This function returns the list of all products from the API. """ all_products = [] max_pages = 1000 page_num = 1 while page_num < max_pages: param = {'per_page': 100, 'page': page_num} rs_api = woo_request_helper().get_details(wc_endpoint='products', params=param) if rs_api: page_num += 1 all_products.extend(rs_api) else: break return all_products def get_products_by_id(product_id): """ This function is used to get the product by product id using API call. """ rs_api = woo_request_helper().get_details(wc_endpoint='products/{}'. format(product_id)) return rs_api def update_random_product_price(product_id, data): """ This function is used to update the product by product id and data to update using the API call. """ return woo_request_helper().put_details(wc_endpoint='products/{}'. format(product_id), params=data) def create_user(data): """ This function is used to create the user by user data using API call. """ return woo_request_helper().post_details(wc_endpoint='customers', params=data) def delete_user_by_id(user_id): """ This function is used to delete the user by user id using API call. """ return woo_request_helper().delete_details(wc_endpoint='customers/{}'. format(user_id))
""" This is the common util file """ from faker import Faker from pytest_practical.helper.api_helpers import woo_request_helper fake = Faker() def generate_random_email_and_password(): """ Function to generate random email id and password """ email = fake.email() password_string = fake.password() random_info = { 'email': email, 'password': password_string } return random_info def generate_random_coupon_code(suffix=None): """ This function generates random coupon codes """ code = fake.password(length=8, special_chars=False, digits=True, upper_case=True, lower_case=False) if suffix: code += suffix return code def create_coupon(data): """ This function is used to create a coupon using API call. """ return woo_request_helper().post_details('coupons', data, expected_status_code=201) def list_all_products(): """ This function returns the list of all products from the API. """ all_products = [] max_pages = 1000 page_num = 1 while page_num < max_pages: param = { 'per_page': 100, 'page': page_num, } rs_api = woo_request_helper().get_details(wc_endpoint='products', params=param) if rs_api: page_num += 1 all_products.extend(rs_api) else: break return all_products def get_products_by_id(product_id): """ This function is used to get the product by product id using API call. """ rs_api = woo_request_helper().get_details(wc_endpoint='products/{}'.format(product_id)) return rs_api def update_random_product_price(product_id, data): """ This function is used to update the product by product id and data to update using the API call. """ return woo_request_helper().put_details(wc_endpoint='products/{}'.format(product_id), params=data) def create_user(data): """ This function is used to create the user by user data using API call. """ return woo_request_helper().post_details(wc_endpoint='customers', params=data) def delete_user_by_id(user_id): """ This function is used to delete the user by user id using API call. """ return woo_request_helper().delete_details(wc_endpoint='customers/{}'.format(user_id))
[ 4, 7, 8, 9, 11 ]
1,717
c4f656b96ddc86ab2575bd5ec646833cce95e6a9
<mask token>
<mask token> for line in packings_str.strip().splitlines(): line_items = line.split(' | ') line_items = [s.strip() for s in line_items] name, material, size, N, a, eps, CS, CFl, Ch, CP0, CL, CV = line_items packings.append({'name': name, 'material': material, 'size': size, 'N': int(N), 'a': float(a), 'eps': float(eps), 'CS': float(CS), 'CFl': float(CFl), 'Ch': float(Ch), 'CP0': float(CP0), 'CL': float(CL), 'CV': float(CV)}) <mask token> for i in range(len(packings)): if packings[i]['name'] not in seen_packing_name: seen_packing_name.add(packings[i]['name']) export_packing_name.append(packings[i]['name']) else: pass
packings_str = """ Raschig Super-Ring | metal | 0.3 | 180000 | 315.0 | 0.960 | 3.560 | 2.340 | 0.750 | 0.760 | 1.500 | 0.450 Raschig Super-Ring | metal | 0.5 | 145000 | 250.0 | 0.975 | 3.350 | 2.200 | 0.620 | 0.780 | 1.450 | 0.430 Raschig Super-Ring | metal | 1.0 | 32000 | 160.0 | 0.980 | 3.491 | 2.200 | 0.750 | 0.500 | 1.290 | 0.440 Raschig Super-Ring | metal | 2.0 | 9500 | 97.6 | 0.985 | 3.326 | 2.096 | 0.720 | 0.464 | 1.323 | 0.400 Raschig Super-Ring | metal | 3.0 | 4300 | 80.0 | 0.982 | 3.260 | 2.100 | 0.620 | 0.430 | 0.850 | 0.300 Raschig Super-Ring | plastic | 2.0 | 9000 | 100.0 | 0.960 | 3.326 | 2.096 | 0.720 | 0.377 | 1.250 | 0.337 Ralu Flow | plastic | 1.0 | 33000 | 165.0 | 0.940 | 3.612 | 2.401 | 0.640 | 0.485 | 1.486 | 0.360 Ralu Flow | plastic | 2.0 | 4600 | 100.0 | 0.945 | 3.412 | 2.174 | 0.640 | 0.350 | 1.270 | 0.320 Pall ring | metal | 25.0 | 53900 | 223.5 | 0.954 | 2.627 | 2.083 | 0.719 | 0.957 | 1.440 | 0.336 Pall ring | metal | 35.0 | 19517 | 139.4 | 0.965 | 2.629 | 1.679 | 0.644 | 0.967 | 1.012 | 0.341 Pall ring | metal | 50.0 | 6242 | 112.6 | 0.951 | 2.725 | 1.580 | 0.784 | 0.763 | 1.192 | 0.410 Pall ring | plastic | 25.0 | 52300 | 225.0 | 0.887 | 2.696 | 2.064 | 0.528 | 0.865 | 0.905 | 0.446 Pall ring | plastic | 35.0 | 17000 | 151.1 | 0.906 | 2.654 | 1.742 | 0.718 | 0.927 | 0.856 | 0.380 Pall ring | plastic | 50.0 | 6765 | 111.1 | 0.919 | 2.816 | 1.757 | 0.593 | 0.698 | 1.239 | 0.368 Pall ring | ceramic | 50.0 | 7502 | 155.2 | 0.754 | 3.793 | 3.024 | 1.006 | 0.233 | 1.278 | 0.333 Ralu ring | metal | 25.0 | 51000 | 215.0 | 0.960 | 2.627 | 2.083 | 0.714 | 0.957 | 1.440 | 0.336 Ralu ring | metal | 38.0 | 14500 | 135.0 | 0.965 | 2.629 | 1.679 | 0.644 | 1.003 | 1.277 | 0.341 Ralu ring | metal | 50.0 | 6300 | 105.0 | 0.975 | 2.725 | 1.580 | 0.784 | 0.763 | 1.192 | 0.345 Ralu ring | plastic | 25.0 | 36000 | 190.0 | 0.940 | 2.841 | 1.989 | 0.719 | 0.800 | 1.320 | 0.333 Ralu ring | plastic | 38.0 | 13500 | 150.0 | 0.930 | 2.843 | 1.812 | 0.640 | 0.672 | 1.320 | 0.333 Ralu ring | plastic | 50.0 | 5770 | 95.2 | 0.983 | 2.843 | 1.812 | 0.640 | 0.468 | 1.520 | 0.303 NOR PAC ring | plastic | 25.0 | 48920 | 197.9 | 0.920 | 2.865 | 2.083 | 0 | 0.383 | 0.976 | 0.410 NOR PAC ring | plastic | 25.0 | 50000 | 202.0 | 0.953 | 3.277 | 2.472 | 0.601 | 0.397 | 0.883 | 0.366 NOR PAC ring | plastic | 35.0 | 17450 | 141.8 | 0.944 | 3.179 | 2.242 | 0.587 | 0.371 | 0.756 | 0.425 NOR PAC ring | plastic | 50.0 | 7330 | 86.8 | 0.947 | 2.959 | 1.786 | 0.651 | 0.350 | 1.080 | 0.322 Hiflow-ring | metal | 25.0 | 40790 | 202.9 | 0.962 | 2.918 | 2.177 | 0.799 | 0.689 | 1.641 | 0.402 Hiflow-ring | metal | 50.0 | 6815 | 117.1 | 0.925 | 2.894 | 1.871 | 1.038 | 0.327 | 1.478 | 0.345 Hiflow-ring | metal | 50.0 | 5000 | 92.3 | 0.977 | 2.702 | 1.626 | 0.876 | 0.421 | 1.168 | 0.408 Hiflow-ring | plastic | 25.0 | 46100 | 194.5 | 0.918 | 2.841 | 1.989 | 0 | 0.741 | 1.577 | 0.390 Hiflow-ring | plastic | 50S | 6050 | 82.0 | 0.942 | 2.866 | 1.702 | 0.881 | 0.414 | 1.219 | 0.342 Hiflow-ring | plastic | 50hydr | 6890 | 118.4 | 0.925 | 2.894 | 1.871 | 0 | 0.311 | 1.553 | 0.369 Hiflow-ring | ceramic | 20.0 | 121314 | 286.2 | 0.758 | 2.875 | 2.410 | 1.167 | 0.628 | 1.744 | 0.465 Hiflow-ring | ceramic | 38.0 | 13241 | 111.8 | 0.788 | 2.840 | 1.930 | 0 | 0.621 | 1.659 | 0.464 Hiflow-ring | ceramic | 50.0 | 5120 | 89.7 | 0.809 | 2.819 | 1.694 | 0 | 0.538 | 1.377 | 0.379 Glitsch Ring | metal | 30PMK | 29200 | 180.5 | 0.975 | 2.694 | 1.900 | 0.930 | 0.851 | 1.920 | 0.450 Glitsch Ring | metal | 30P | 31100 | 164.0 | 0.959 | 2.564 | 1.760 | 0.851 | 1.056 | 1.577 | 0.398 Glitsch CMR ring | metal | 0.5" | 560811 | 356.0 | 0.952 | 2.644 | 2.178 | 0 | 0.882 | 2.038 | 0.495 Glitsch CMR ring | metal | 1.0" | 158467 | 232.5 | 0.971 | 2.703 | 1.996 | 1.040 | 0.641 | 0 | 0 Glitsch CMR ring | metal | 1.5"T | 63547 | 188.0 | 0.972 | 2.790 | 1.870 | 0.870 | 0.627 | 0 | 0 Glitsch CMR ring | metal | 1.5" | 60744 | 174.9 | 0.974 | 2.697 | 1.841 | 0.935 | 0.632 | 0 | 0 TOP Pak ring | alu | 50.0 | 6871 | 105.5 | 0.956 | 2.528 | 1.579 | 0.881 | 0.604 | 1.326 | 0.389 Raschig ring | ceramic | 25.0 | 47700 | 190.0 | 0.680 | 2.454 | 1.899 | 0.577 | 1.329 | 1.361 | 0.412 Raschig ring | ceramic | 50.0 | 5990 | 95.0 | 0.830 | 2.482 | 1.547 | 0 | 0 | 1.416 | 0.210 VSP ring | metal | 25.0 | 33434 | 199.6 | 0.975 | 2.755 | 1.970 | 1.369 | 0.782 | 1.376 | 0.405 VSP ring | metal | 50.0 | 7841 | 104.6 | 0.980 | 2.806 | 1.689 | 1.135 | 0.773 | 1.222 | 0.420 Envi Pac ring | plastic | 32.0 | 53000 | 138.9 | 0.936 | 2.944 | 2.012 | 1.039 | 0.549 | 1.517 | 0.459 Envi Pac ring | plastic | 60.0 | 6800 | 98.4 | 0.961 | 2.987 | 1.864 | 0.794 | 0.338 | 1.522 | 0.296 Envi Pac ring | plastic | 80.0 | 2000 | 60.0 | 0.955 | 2.846 | 1.522 | 0.641 | 0.358 | 1.603 | 0.257 Bialecki ring | metal | 25.0 | 48533 | 210.0 | 0.956 | 2.521 | 1.856 | 0.692 | 0.891 | 1.461 | 0.331 Bialecki ring | metal | 35.0 | 18200 | 155.0 | 0.967 | 2.753 | 1.885 | 0.787 | 1.011 | 1.412 | 0.390 Bialecki ring | metal | 35.0 | 20736 | 176.6 | 0.945 | 0 | 0 | 0.690 | 0.460 | 1.405 | 0.377 Bialecki ring | metal | 50.0 | 6278 | 121.0 | 0.966 | 2.916 | 1.896 | 0.798 | 0.719 | 1.721 | 0.302 Tellerette | plastic | 25.0 | 37037 | 190.0 | 0.930 | 2.913 | 2.132 | 0.588 | 0.538 | 0.899 | 0 Hackette | plastic | 45.0 | 12000 | 139.5 | 0.928 | 2.832 | 1.966 | 0.643 | 0.399 | 0 | 0 Raflux ring | plastic | 15.0 | 193522 | 307.9 | 0.894 | 2.825 | 2.400 | 0.491 | 0.595 | 1.913 | 0.370 Berl saddle | ceramic | 13.0 | 691505 | 545.0 | 0.650 | 0 | 0 | 0.833 | 0 | 1.364 | 0.232 Berl saddle | ceramic | 25.0 | 80080 | 260.0 | 0.680 | 0 | 0 | 0.620 | 0 | 1.246 | 0.387 DIN-PAK | plastic | 47.0 | 28168 | 131.2 | 0.923 | 2.929 | 1.991 | 1.173 | 0.514 | 1.690 | 0.354 DIN-PAK | plastic | 70.0 | 9763 | 110.7 | 0.938 | 2.970 | 1.912 | 0.991 | 0.378 | 1.527 | 0.326 Ralu pak | metal | YC-250 | 0 | 250.0 | 0.945 | 3.178 | 2.558 | 0 | 0.191 | 1.334 | 0.385 Mellapak | metal  | 250Y | 0 | 250.0 | 0.970 | 3.157 | 2.464 | 0.554 | 0.292 | 0 | 0 Gempack | metal | A2T-304 | 0 | 202.0 | 0.977 | 2.986 | 2.099 | 0.678 | 0.344 | 0 | 0 Impulse packing | metal | 250.0 | 0 | 250.0 | 0.975 | 2.610 | 1.996 | 0.431 | 0.262 | 0.983 | 0.270 Impulse packing | ceramic | 100.0 | 0 | 91.4 | 0.838 | 2.664 | 1.655 | 1.900 | 0.417 | 1.317 | 0.327 Montz packing | metal | B1-200 | 0 | 200.0 | 0.979 | 3.116 | 2.339 | 0.547 | 0.355 | 0.971 | 0.390 Montz packing | metal | B2-300 | 0 | 300.0 | 0.930 | 3.098 | 2.464 | 0.482 | 0.295 | 1.165 | 0.422 Montz packing | plastic | C1-200 | 0 | 200.0 | 0.954 | 0 | 0 | 0 | 0.453 | 1.006 | 0.412 Montz packing | plastic | C2-200 | 0 | 200.0 | 0.900 | 2.653 | 1.973 | 0 | 0.481 | 0.739 | 0 Euroform | plastic | PN-110 | 0 | 110.0 | 0.936 | 3.075 | 1.975 | 0.511 | 0.250 | 0.973 | 0.167 """ packings = [] for line in packings_str.strip().splitlines(): line_items = line.split(' | ') line_items = [s.strip() for s in line_items] name, material, size, N, a, eps, CS, CFl, Ch, CP0, CL, CV = line_items packings.append({'name': name, 'material': material, 'size': size, 'N': int(N), 'a': float(a), 'eps': float(eps), 'CS': float(CS), 'CFl': float(CFl), 'Ch': float(Ch), 'CP0': float(CP0), 'CL': float(CL), 'CV': float(CV)}) seen_packing_name = set() export_packing_name = [] for i in range(len(packings)): if packings[i]['name'] not in seen_packing_name: seen_packing_name.add(packings[i]['name']) export_packing_name.append(packings[i]['name']) else: pass
# author Dominik Capkovic # contact: [email protected]; https://www.linkedin.com/in/dominik-čapkovič-b0ab8575/ # GitHub: https://github.com/kilimetr packings_str = ''' Raschig Super-Ring | metal | 0.3 | 180000 | 315.0 | 0.960 | 3.560 | 2.340 | 0.750 | 0.760 | 1.500 | 0.450 Raschig Super-Ring | metal | 0.5 | 145000 | 250.0 | 0.975 | 3.350 | 2.200 | 0.620 | 0.780 | 1.450 | 0.430 Raschig Super-Ring | metal | 1.0 | 32000 | 160.0 | 0.980 | 3.491 | 2.200 | 0.750 | 0.500 | 1.290 | 0.440 Raschig Super-Ring | metal | 2.0 | 9500 | 97.6 | 0.985 | 3.326 | 2.096 | 0.720 | 0.464 | 1.323 | 0.400 Raschig Super-Ring | metal | 3.0 | 4300 | 80.0 | 0.982 | 3.260 | 2.100 | 0.620 | 0.430 | 0.850 | 0.300 Raschig Super-Ring | plastic | 2.0 | 9000 | 100.0 | 0.960 | 3.326 | 2.096 | 0.720 | 0.377 | 1.250 | 0.337 Ralu Flow | plastic | 1.0 | 33000 | 165.0 | 0.940 | 3.612 | 2.401 | 0.640 | 0.485 | 1.486 | 0.360 Ralu Flow | plastic | 2.0 | 4600 | 100.0 | 0.945 | 3.412 | 2.174 | 0.640 | 0.350 | 1.270 | 0.320 Pall ring | metal | 25.0 | 53900 | 223.5 | 0.954 | 2.627 | 2.083 | 0.719 | 0.957 | 1.440 | 0.336 Pall ring | metal | 35.0 | 19517 | 139.4 | 0.965 | 2.629 | 1.679 | 0.644 | 0.967 | 1.012 | 0.341 Pall ring | metal | 50.0 | 6242 | 112.6 | 0.951 | 2.725 | 1.580 | 0.784 | 0.763 | 1.192 | 0.410 Pall ring | plastic | 25.0 | 52300 | 225.0 | 0.887 | 2.696 | 2.064 | 0.528 | 0.865 | 0.905 | 0.446 Pall ring | plastic | 35.0 | 17000 | 151.1 | 0.906 | 2.654 | 1.742 | 0.718 | 0.927 | 0.856 | 0.380 Pall ring | plastic | 50.0 | 6765 | 111.1 | 0.919 | 2.816 | 1.757 | 0.593 | 0.698 | 1.239 | 0.368 Pall ring | ceramic | 50.0 | 7502 | 155.2 | 0.754 | 3.793 | 3.024 | 1.006 | 0.233 | 1.278 | 0.333 Ralu ring | metal | 25.0 | 51000 | 215.0 | 0.960 | 2.627 | 2.083 | 0.714 | 0.957 | 1.440 | 0.336 Ralu ring | metal | 38.0 | 14500 | 135.0 | 0.965 | 2.629 | 1.679 | 0.644 | 1.003 | 1.277 | 0.341 Ralu ring | metal | 50.0 | 6300 | 105.0 | 0.975 | 2.725 | 1.580 | 0.784 | 0.763 | 1.192 | 0.345 Ralu ring | plastic | 25.0 | 36000 | 190.0 | 0.940 | 2.841 | 1.989 | 0.719 | 0.800 | 1.320 | 0.333 Ralu ring | plastic | 38.0 | 13500 | 150.0 | 0.930 | 2.843 | 1.812 | 0.640 | 0.672 | 1.320 | 0.333 Ralu ring | plastic | 50.0 | 5770 | 95.2 | 0.983 | 2.843 | 1.812 | 0.640 | 0.468 | 1.520 | 0.303 NOR PAC ring | plastic | 25.0 | 48920 | 197.9 | 0.920 | 2.865 | 2.083 | 0 | 0.383 | 0.976 | 0.410 NOR PAC ring | plastic | 25.0 | 50000 | 202.0 | 0.953 | 3.277 | 2.472 | 0.601 | 0.397 | 0.883 | 0.366 NOR PAC ring | plastic | 35.0 | 17450 | 141.8 | 0.944 | 3.179 | 2.242 | 0.587 | 0.371 | 0.756 | 0.425 NOR PAC ring | plastic | 50.0 | 7330 | 86.8 | 0.947 | 2.959 | 1.786 | 0.651 | 0.350 | 1.080 | 0.322 Hiflow-ring | metal | 25.0 | 40790 | 202.9 | 0.962 | 2.918 | 2.177 | 0.799 | 0.689 | 1.641 | 0.402 Hiflow-ring | metal | 50.0 | 6815 | 117.1 | 0.925 | 2.894 | 1.871 | 1.038 | 0.327 | 1.478 | 0.345 Hiflow-ring | metal | 50.0 | 5000 | 92.3 | 0.977 | 2.702 | 1.626 | 0.876 | 0.421 | 1.168 | 0.408 Hiflow-ring | plastic | 25.0 | 46100 | 194.5 | 0.918 | 2.841 | 1.989 | 0 | 0.741 | 1.577 | 0.390 Hiflow-ring | plastic | 50S | 6050 | 82.0 | 0.942 | 2.866 | 1.702 | 0.881 | 0.414 | 1.219 | 0.342 Hiflow-ring | plastic | 50hydr | 6890 | 118.4 | 0.925 | 2.894 | 1.871 | 0 | 0.311 | 1.553 | 0.369 Hiflow-ring | ceramic | 20.0 | 121314 | 286.2 | 0.758 | 2.875 | 2.410 | 1.167 | 0.628 | 1.744 | 0.465 Hiflow-ring | ceramic | 38.0 | 13241 | 111.8 | 0.788 | 2.840 | 1.930 | 0 | 0.621 | 1.659 | 0.464 Hiflow-ring | ceramic | 50.0 | 5120 | 89.7 | 0.809 | 2.819 | 1.694 | 0 | 0.538 | 1.377 | 0.379 Glitsch Ring | metal | 30PMK | 29200 | 180.5 | 0.975 | 2.694 | 1.900 | 0.930 | 0.851 | 1.920 | 0.450 Glitsch Ring | metal | 30P | 31100 | 164.0 | 0.959 | 2.564 | 1.760 | 0.851 | 1.056 | 1.577 | 0.398 Glitsch CMR ring | metal | 0.5" | 560811 | 356.0 | 0.952 | 2.644 | 2.178 | 0 | 0.882 | 2.038 | 0.495 Glitsch CMR ring | metal | 1.0" | 158467 | 232.5 | 0.971 | 2.703 | 1.996 | 1.040 | 0.641 | 0 | 0 Glitsch CMR ring | metal | 1.5"T | 63547 | 188.0 | 0.972 | 2.790 | 1.870 | 0.870 | 0.627 | 0 | 0 Glitsch CMR ring | metal | 1.5" | 60744 | 174.9 | 0.974 | 2.697 | 1.841 | 0.935 | 0.632 | 0 | 0 TOP Pak ring | alu | 50.0 | 6871 | 105.5 | 0.956 | 2.528 | 1.579 | 0.881 | 0.604 | 1.326 | 0.389 Raschig ring | ceramic | 25.0 | 47700 | 190.0 | 0.680 | 2.454 | 1.899 | 0.577 | 1.329 | 1.361 | 0.412 Raschig ring | ceramic | 50.0 | 5990 | 95.0 | 0.830 | 2.482 | 1.547 | 0 | 0 | 1.416 | 0.210 VSP ring | metal | 25.0 | 33434 | 199.6 | 0.975 | 2.755 | 1.970 | 1.369 | 0.782 | 1.376 | 0.405 VSP ring | metal | 50.0 | 7841 | 104.6 | 0.980 | 2.806 | 1.689 | 1.135 | 0.773 | 1.222 | 0.420 Envi Pac ring | plastic | 32.0 | 53000 | 138.9 | 0.936 | 2.944 | 2.012 | 1.039 | 0.549 | 1.517 | 0.459 Envi Pac ring | plastic | 60.0 | 6800 | 98.4 | 0.961 | 2.987 | 1.864 | 0.794 | 0.338 | 1.522 | 0.296 Envi Pac ring | plastic | 80.0 | 2000 | 60.0 | 0.955 | 2.846 | 1.522 | 0.641 | 0.358 | 1.603 | 0.257 Bialecki ring | metal | 25.0 | 48533 | 210.0 | 0.956 | 2.521 | 1.856 | 0.692 | 0.891 | 1.461 | 0.331 Bialecki ring | metal | 35.0 | 18200 | 155.0 | 0.967 | 2.753 | 1.885 | 0.787 | 1.011 | 1.412 | 0.390 Bialecki ring | metal | 35.0 | 20736 | 176.6 | 0.945 | 0 | 0 | 0.690 | 0.460 | 1.405 | 0.377 Bialecki ring | metal | 50.0 | 6278 | 121.0 | 0.966 | 2.916 | 1.896 | 0.798 | 0.719 | 1.721 | 0.302 Tellerette | plastic | 25.0 | 37037 | 190.0 | 0.930 | 2.913 | 2.132 | 0.588 | 0.538 | 0.899 | 0 Hackette | plastic | 45.0 | 12000 | 139.5 | 0.928 | 2.832 | 1.966 | 0.643 | 0.399 | 0 | 0 Raflux ring | plastic | 15.0 | 193522 | 307.9 | 0.894 | 2.825 | 2.400 | 0.491 | 0.595 | 1.913 | 0.370 Berl saddle | ceramic | 13.0 | 691505 | 545.0 | 0.650 | 0 | 0 | 0.833 | 0 | 1.364 | 0.232 Berl saddle | ceramic | 25.0 | 80080 | 260.0 | 0.680 | 0 | 0 | 0.620 | 0 | 1.246 | 0.387 DIN-PAK | plastic | 47.0 | 28168 | 131.2 | 0.923 | 2.929 | 1.991 | 1.173 | 0.514 | 1.690 | 0.354 DIN-PAK | plastic | 70.0 | 9763 | 110.7 | 0.938 | 2.970 | 1.912 | 0.991 | 0.378 | 1.527 | 0.326 Ralu pak | metal | YC-250 | 0 | 250.0 | 0.945 | 3.178 | 2.558 | 0 | 0.191 | 1.334 | 0.385 Mellapak | metal  | 250Y | 0 | 250.0 | 0.970 | 3.157 | 2.464 | 0.554 | 0.292 | 0 | 0 Gempack | metal | A2T-304 | 0 | 202.0 | 0.977 | 2.986 | 2.099 | 0.678 | 0.344 | 0 | 0 Impulse packing | metal | 250.0 | 0 | 250.0 | 0.975 | 2.610 | 1.996 | 0.431 | 0.262 | 0.983 | 0.270 Impulse packing | ceramic | 100.0 | 0 | 91.4 | 0.838 | 2.664 | 1.655 | 1.900 | 0.417 | 1.317 | 0.327 Montz packing | metal | B1-200 | 0 | 200.0 | 0.979 | 3.116 | 2.339 | 0.547 | 0.355 | 0.971 | 0.390 Montz packing | metal | B2-300 | 0 | 300.0 | 0.930 | 3.098 | 2.464 | 0.482 | 0.295 | 1.165 | 0.422 Montz packing | plastic | C1-200 | 0 | 200.0 | 0.954 | 0 | 0 | 0 | 0.453 | 1.006 | 0.412 Montz packing | plastic | C2-200 | 0 | 200.0 | 0.900 | 2.653 | 1.973 | 0 | 0.481 | 0.739 | 0 Euroform | plastic | PN-110 | 0 | 110.0 | 0.936 | 3.075 | 1.975 | 0.511 | 0.250 | 0.973 | 0.167 ''' packings = [] for line in packings_str.strip().splitlines(): line_items = line.split(" | ") line_items = [s.strip() for s in line_items] name, material, size, N, a, eps, CS, CFl, Ch, CP0, CL, CV = line_items packings.append({ 'name': name, 'material': material, 'size': size, 'N': int(N), 'a': float(a), 'eps': float(eps), 'CS': float(CS), 'CFl': float(CFl), 'Ch': float(Ch), 'CP0': float(CP0), 'CL': float(CL), 'CV': float(CV), }) # EXPORTING PACKING NAME seen_packing_name = set() export_packing_name = [] for i in range(len(packings)): if packings[i]["name"] not in seen_packing_name: seen_packing_name.add(packings[i]["name"]) export_packing_name.append(packings[i]["name"]) else: pass # # EXPORT PACKING SURFACEAREA # export_packing_surfacearea = [] # for item in packings: # if item["name"] == type_packing: # export_packing_surfacearea.append(item["a"]) # print(export_packing_surfacearea)
null
[ 0, 1, 2, 3 ]
1,718
cc628270a973866025a5e2a5d07e39b4dbdcd324
<mask token>
<mask token> print('hello', end='!') print('python') print('010', '1234', '1111', sep='-') <mask token> print('입력한 숫자 :', num) print('num type :', type(num)) <mask token> print('result :', result) print('result type :', type(result)) print('%d년 %d월 %d일 %s요일' % (2021, 4, 27, '화')) print('이름 : {}, 나이 : {}, 주소 : {}'.format('김유신', 23, '김해시'))
<mask token> print('hello', end='!') print('python') print('010', '1234', '1111', sep='-') num = input('숫자입력 : ') print('입력한 숫자 :', num) print('num type :', type(num)) result = int(num) print('result :', result) print('result type :', type(result)) print('%d년 %d월 %d일 %s요일' % (2021, 4, 27, '화')) print('이름 : {}, 나이 : {}, 주소 : {}'.format('김유신', 23, '김해시'))
# Input Output test (입출력 테스트 ) """ 날짜 : 2021/04/27 이름 : 이지영 내용 : 파이썬 표준입출력 실습 _ 교재 p42 """ # 파이썬 표준 출력 print('hello', end='!') #print : 출력함수 (자바에선 document.write('hello');) print('python') print('010', '1234', '1111', sep='-') # seperate 값 # 파이썬 표준 입력 num = input('숫자입력 : ') print('입력한 숫자 :', num) print('num type :', type(num)) # 입력받은 문자열을 숫자로 변환하는 작업이 필요함. <class 'str'> 문자열로 읽히기 때문 result = int(num) print('result :', result) print('result type :', type(result)) # 서식문자 출력 print('%d년 %d월 %d일 %s요일' % (2021, 4, 27, '화')) # %s: string 문자열을 나타냄 # 포맷문자 출력 print('이름 : {}, 나이 : {}, 주소 : {}' .format('김유신', 23, '김해시'))
null
[ 0, 1, 2, 3 ]
1,719
d0653dac8e7c8162070ed9fd191f7fb318f47c60
<mask token>
<mask token> class UserRegModel(models.Model): <mask token> <mask token> <mask token> <mask token> <mask token>
<mask token> class UserRegModel(models.Model): username = models.CharField(max_length=15) emailid = models.EmailField() password1 = models.CharField(max_length=6) password2 = models.CharField(max_length=6) mailsent = models.CharField(max_length=1)
from django.db import models class UserRegModel(models.Model): username = models.CharField(max_length=15) emailid = models.EmailField() password1 = models.CharField(max_length=6) password2 = models.CharField(max_length=6) mailsent = models.CharField(max_length=1)
#This models.py is under UserRegApp1 folder from django.db import models # Create your models here. class UserRegModel(models.Model): username = models.CharField(max_length=15) emailid = models.EmailField() password1= models.CharField(max_length=6) password2= models.CharField(max_length=6) mailsent = models.CharField(max_length=1) #def __str__(self): # return self.title
[ 0, 1, 2, 3, 4 ]
1,720
e0394bfed51cd0af9bca06867e9b556b226f37d1
<mask token> class Gobang: <mask token> <mask token> def new(self): """新局""" self.__init__() def printcb(self): """打印棋盘""" print('\x1b[7;32;40m+ ', end='') for c in range(65, 80): print(chr(c), end=' ') print('\x1b[0m\n') for row in range(len(self.chessboard)): print('\x1b[7;32;40m' + chr(row + 97), end='\x1b[0m ') for i in self.chessboard[row]: if i == 0: print(i, end=' ') elif i == 1: print('\x1b[31m{}\x1b[0m'.format(i), end=' ') elif i == 2: print('\x1b[34m{}\x1b[0m'.format(i), end=' ') print('\n') def player(self): """获取玩家ID""" return len(self.step) % 2 + 1 def sortstep(self): """将总步表分配给黑白子""" self.white, self.black = {}, {} for s in self.step.items(): if s[0] % 2 == 1: self.black.update({s[0]: s[1]}) else: self.white.update({s[0]: s[1]}) <mask token> def recall(self, s=-1): """ 悔棋 """ if s == -1: try: if len(self.max_step) < len(self.step): self.max_step = self.step.copy() if len(self.step) == 0: raise KeyError except KeyError: return False else: self.step.popitem() return self.loadstep() elif s == 1: if len(self.max_step) > len(self.step): self.step.update({(len(self.step) + 1): self.max_step[len( self.step) + 1]}) return self.loadstep() else: return False <mask token> def iswin(self): """判断是否结束 """ step_set_ls = [] cb = self.chessboard for s in self.step.values(): step_set_ls.append((ord(s[0]) - 97, ord(s[1]) - 97)) for r, c in step_set_ls: try: if cb[r][c - 2] == cb[r][c - 1] == cb[r][c] == cb[r][c + 1 ] == cb[r][c + 2] in (1, 2): return True, cb[r][c] except IndexError: pass try: if cb[r - 2][c] == cb[r - 1][c] == cb[r][c] == cb[r + 1][c ] == cb[r + 2][c] in (1, 2): return True, cb[r][c] except IndexError: pass try: if cb[r - 2][c - 2] == cb[r - 1][c - 1] == cb[r][c] == cb[r + 1 ][c + 1] == cb[r + 2][c + 2] in (1, 2): return True, cb[r][c] except IndexError: pass try: if cb[r + 2][c - 2] == cb[r + 1][c - 1] == cb[r][c] == cb[r - 1 ][c + 1] == cb[r - 2][c + 2] in (1, 2): return True, cb[r][c] except IndexError: pass return False, 0 def __init__(self): self.chessboard = [[(0) for i in range(self.SIDE)] for j in range( self.SIDE)] self.step = {} self.max_step = {} self.black = {} self.white = {} <mask token>
<mask token> class Gobang: <mask token> SIDE = 15 def new(self): """新局""" self.__init__() def printcb(self): """打印棋盘""" print('\x1b[7;32;40m+ ', end='') for c in range(65, 80): print(chr(c), end=' ') print('\x1b[0m\n') for row in range(len(self.chessboard)): print('\x1b[7;32;40m' + chr(row + 97), end='\x1b[0m ') for i in self.chessboard[row]: if i == 0: print(i, end=' ') elif i == 1: print('\x1b[31m{}\x1b[0m'.format(i), end=' ') elif i == 2: print('\x1b[34m{}\x1b[0m'.format(i), end=' ') print('\n') def player(self): """获取玩家ID""" return len(self.step) % 2 + 1 def sortstep(self): """将总步表分配给黑白子""" self.white, self.black = {}, {} for s in self.step.items(): if s[0] % 2 == 1: self.black.update({s[0]: s[1]}) else: self.white.update({s[0]: s[1]}) def loadstep(self): """ 载入步表 将 self.step 载入到棋盘上 """ try: self.chessboard = [[(0) for i in range(self.SIDE)] for j in range(self.SIDE)] step_list = list(self.step.values()).copy() for i in range(len(step_list)): self.chessboard[ord(step_list[i][0]) - 97][ord(step_list[i] [1]) - 97] = i % 2 + 1 self.sortstep() return True except TypeError: return False def recall(self, s=-1): """ 悔棋 """ if s == -1: try: if len(self.max_step) < len(self.step): self.max_step = self.step.copy() if len(self.step) == 0: raise KeyError except KeyError: return False else: self.step.popitem() return self.loadstep() elif s == 1: if len(self.max_step) > len(self.step): self.step.update({(len(self.step) + 1): self.max_step[len( self.step) + 1]}) return self.loadstep() else: return False def move(self, row: int=7, column: int=7, **kwgs): """移動棋盘 row: 棋盘的行号 column: 棋盘的列号 """ if 's' in kwgs: row = ord(kwgs['s'][0].lower()) - 97 column = ord(kwgs['s'][1].lower()) - 97 if 0 <= row < self.SIDE and 0 <= column < self.SIDE: if self.chessboard[row][column] == 0: self.chessboard[row][column] = self.player() self.step[len(self.step) + 1] = chr(row + 97) + chr(column + 97 ) self.sortstep() return True return False def iswin(self): """判断是否结束 """ step_set_ls = [] cb = self.chessboard for s in self.step.values(): step_set_ls.append((ord(s[0]) - 97, ord(s[1]) - 97)) for r, c in step_set_ls: try: if cb[r][c - 2] == cb[r][c - 1] == cb[r][c] == cb[r][c + 1 ] == cb[r][c + 2] in (1, 2): return True, cb[r][c] except IndexError: pass try: if cb[r - 2][c] == cb[r - 1][c] == cb[r][c] == cb[r + 1][c ] == cb[r + 2][c] in (1, 2): return True, cb[r][c] except IndexError: pass try: if cb[r - 2][c - 2] == cb[r - 1][c - 1] == cb[r][c] == cb[r + 1 ][c + 1] == cb[r + 2][c + 2] in (1, 2): return True, cb[r][c] except IndexError: pass try: if cb[r + 2][c - 2] == cb[r + 1][c - 1] == cb[r][c] == cb[r - 1 ][c + 1] == cb[r - 2][c + 2] in (1, 2): return True, cb[r][c] except IndexError: pass return False, 0 def __init__(self): self.chessboard = [[(0) for i in range(self.SIDE)] for j in range( self.SIDE)] self.step = {} self.max_step = {} self.black = {} self.white = {} <mask token>
<mask token> class Gobang: """ 五子棋 ===== 一个简单的五子棋类, 可以在控制台下五子棋. 提供以下函数 : new(): 新局 printcb(): 打印棋盘 player(): 获取当前应落子 ID (轮走方) sortstep(): 处理总步表 loadstep(): 将 step 步表的内容载入棋盘 recall(): 前进后退的操作 move(): 落子 iswin(): 判断是否获胜 """ SIDE = 15 def new(self): """新局""" self.__init__() def printcb(self): """打印棋盘""" print('\x1b[7;32;40m+ ', end='') for c in range(65, 80): print(chr(c), end=' ') print('\x1b[0m\n') for row in range(len(self.chessboard)): print('\x1b[7;32;40m' + chr(row + 97), end='\x1b[0m ') for i in self.chessboard[row]: if i == 0: print(i, end=' ') elif i == 1: print('\x1b[31m{}\x1b[0m'.format(i), end=' ') elif i == 2: print('\x1b[34m{}\x1b[0m'.format(i), end=' ') print('\n') def player(self): """获取玩家ID""" return len(self.step) % 2 + 1 def sortstep(self): """将总步表分配给黑白子""" self.white, self.black = {}, {} for s in self.step.items(): if s[0] % 2 == 1: self.black.update({s[0]: s[1]}) else: self.white.update({s[0]: s[1]}) def loadstep(self): """ 载入步表 将 self.step 载入到棋盘上 """ try: self.chessboard = [[(0) for i in range(self.SIDE)] for j in range(self.SIDE)] step_list = list(self.step.values()).copy() for i in range(len(step_list)): self.chessboard[ord(step_list[i][0]) - 97][ord(step_list[i] [1]) - 97] = i % 2 + 1 self.sortstep() return True except TypeError: return False def recall(self, s=-1): """ 悔棋 """ if s == -1: try: if len(self.max_step) < len(self.step): self.max_step = self.step.copy() if len(self.step) == 0: raise KeyError except KeyError: return False else: self.step.popitem() return self.loadstep() elif s == 1: if len(self.max_step) > len(self.step): self.step.update({(len(self.step) + 1): self.max_step[len( self.step) + 1]}) return self.loadstep() else: return False def move(self, row: int=7, column: int=7, **kwgs): """移動棋盘 row: 棋盘的行号 column: 棋盘的列号 """ if 's' in kwgs: row = ord(kwgs['s'][0].lower()) - 97 column = ord(kwgs['s'][1].lower()) - 97 if 0 <= row < self.SIDE and 0 <= column < self.SIDE: if self.chessboard[row][column] == 0: self.chessboard[row][column] = self.player() self.step[len(self.step) + 1] = chr(row + 97) + chr(column + 97 ) self.sortstep() return True return False def iswin(self): """判断是否结束 """ step_set_ls = [] cb = self.chessboard for s in self.step.values(): step_set_ls.append((ord(s[0]) - 97, ord(s[1]) - 97)) for r, c in step_set_ls: try: if cb[r][c - 2] == cb[r][c - 1] == cb[r][c] == cb[r][c + 1 ] == cb[r][c + 2] in (1, 2): return True, cb[r][c] except IndexError: pass try: if cb[r - 2][c] == cb[r - 1][c] == cb[r][c] == cb[r + 1][c ] == cb[r + 2][c] in (1, 2): return True, cb[r][c] except IndexError: pass try: if cb[r - 2][c - 2] == cb[r - 1][c - 1] == cb[r][c] == cb[r + 1 ][c + 1] == cb[r + 2][c + 2] in (1, 2): return True, cb[r][c] except IndexError: pass try: if cb[r + 2][c - 2] == cb[r + 1][c - 1] == cb[r][c] == cb[r - 1 ][c + 1] == cb[r - 2][c + 2] in (1, 2): return True, cb[r][c] except IndexError: pass return False, 0 def __init__(self): self.chessboard = [[(0) for i in range(self.SIDE)] for j in range( self.SIDE)] self.step = {} self.max_step = {} self.black = {} self.white = {} def _test(): a = Gobang() a.step = {(1): 'no', (2): 'oo', (3): 'mn', (4): 'nn', (5): 'lm', (6): 'mm', (7): 'kl', (8): 'll'} a.loadstep() a.move(9, 10) a.printcb() print(a.iswin()) a.new() a.printcb() if __name__ == '__main__': _test()
__version__ = '0.2.2' __author__ = 'Anton Vanke <[email protected]>' class Gobang: """ 五子棋 ===== 一个简单的五子棋类, 可以在控制台下五子棋. 提供以下函数 : new(): 新局 printcb(): 打印棋盘 player(): 获取当前应落子 ID (轮走方) sortstep(): 处理总步表 loadstep(): 将 step 步表的内容载入棋盘 recall(): 前进后退的操作 move(): 落子 iswin(): 判断是否获胜 """ SIDE = 15 def new(self): """新局""" self.__init__() def printcb(self): """打印棋盘""" print('\x1b[7;32;40m+ ', end='') for c in range(65, 80): print(chr(c), end=' ') print('\x1b[0m\n') for row in range(len(self.chessboard)): print('\x1b[7;32;40m' + chr(row + 97), end='\x1b[0m ') for i in self.chessboard[row]: if i == 0: print(i, end=' ') elif i == 1: print('\x1b[31m{}\x1b[0m'.format(i), end=' ') elif i == 2: print('\x1b[34m{}\x1b[0m'.format(i), end=' ') print('\n') def player(self): """获取玩家ID""" return len(self.step) % 2 + 1 def sortstep(self): """将总步表分配给黑白子""" self.white, self.black = {}, {} for s in self.step.items(): if s[0] % 2 == 1: self.black.update({s[0]: s[1]}) else: self.white.update({s[0]: s[1]}) def loadstep(self): """ 载入步表 将 self.step 载入到棋盘上 """ try: self.chessboard = [[(0) for i in range(self.SIDE)] for j in range(self.SIDE)] step_list = list(self.step.values()).copy() for i in range(len(step_list)): self.chessboard[ord(step_list[i][0]) - 97][ord(step_list[i] [1]) - 97] = i % 2 + 1 self.sortstep() return True except TypeError: return False def recall(self, s=-1): """ 悔棋 """ if s == -1: try: if len(self.max_step) < len(self.step): self.max_step = self.step.copy() if len(self.step) == 0: raise KeyError except KeyError: return False else: self.step.popitem() return self.loadstep() elif s == 1: if len(self.max_step) > len(self.step): self.step.update({(len(self.step) + 1): self.max_step[len( self.step) + 1]}) return self.loadstep() else: return False def move(self, row: int=7, column: int=7, **kwgs): """移動棋盘 row: 棋盘的行号 column: 棋盘的列号 """ if 's' in kwgs: row = ord(kwgs['s'][0].lower()) - 97 column = ord(kwgs['s'][1].lower()) - 97 if 0 <= row < self.SIDE and 0 <= column < self.SIDE: if self.chessboard[row][column] == 0: self.chessboard[row][column] = self.player() self.step[len(self.step) + 1] = chr(row + 97) + chr(column + 97 ) self.sortstep() return True return False def iswin(self): """判断是否结束 """ step_set_ls = [] cb = self.chessboard for s in self.step.values(): step_set_ls.append((ord(s[0]) - 97, ord(s[1]) - 97)) for r, c in step_set_ls: try: if cb[r][c - 2] == cb[r][c - 1] == cb[r][c] == cb[r][c + 1 ] == cb[r][c + 2] in (1, 2): return True, cb[r][c] except IndexError: pass try: if cb[r - 2][c] == cb[r - 1][c] == cb[r][c] == cb[r + 1][c ] == cb[r + 2][c] in (1, 2): return True, cb[r][c] except IndexError: pass try: if cb[r - 2][c - 2] == cb[r - 1][c - 1] == cb[r][c] == cb[r + 1 ][c + 1] == cb[r + 2][c + 2] in (1, 2): return True, cb[r][c] except IndexError: pass try: if cb[r + 2][c - 2] == cb[r + 1][c - 1] == cb[r][c] == cb[r - 1 ][c + 1] == cb[r - 2][c + 2] in (1, 2): return True, cb[r][c] except IndexError: pass return False, 0 def __init__(self): self.chessboard = [[(0) for i in range(self.SIDE)] for j in range( self.SIDE)] self.step = {} self.max_step = {} self.black = {} self.white = {} def _test(): a = Gobang() a.step = {(1): 'no', (2): 'oo', (3): 'mn', (4): 'nn', (5): 'lm', (6): 'mm', (7): 'kl', (8): 'll'} a.loadstep() a.move(9, 10) a.printcb() print(a.iswin()) a.new() a.printcb() if __name__ == '__main__': _test()
#!/usr/bin/python3.8 # -*- coding: utf-8 -*- __version__ = "0.2.2" __author__ = 'Anton Vanke <[email protected]>' class Gobang: """ 五子棋 ===== 一个简单的五子棋类, 可以在控制台下五子棋. 提供以下函数 : new(): 新局 printcb(): 打印棋盘 player(): 获取当前应落子 ID (轮走方) sortstep(): 处理总步表 loadstep(): 将 step 步表的内容载入棋盘 recall(): 前进后退的操作 move(): 落子 iswin(): 判断是否获胜 """ # 棋盘的边长 SIDE = 15 def new(self): """新局""" self.__init__() def printcb(self): """打印棋盘""" print("\033[7;32;40m+ ", end="") for c in range(65, 80): print(chr(c), end=" ") print("\033[0m\n") for row in range(len(self.chessboard)): print("\033[7;32;40m" + chr(row + 97), end="\033[0m ") for i in self.chessboard[row]: if i == 0: print(i, end=" ") elif i == 1: print("\033[31m{}\033[0m".format(i), end=" ") elif i == 2: print("\033[34m{}\033[0m".format(i), end=" ") print("\n") def player(self): """获取玩家ID""" return (len(self.step) % 2) + 1 def sortstep(self): """将总步表分配给黑白子""" self.white, self.black = {}, {} for s in self.step.items(): if s[0] % 2 == 1: self.black.update({s[0]: s[1]}) else: self.white.update({s[0]: s[1]}) def loadstep(self): """ 载入步表 将 self.step 载入到棋盘上 """ try: self.chessboard = [[0 for i in range(self.SIDE)] for j in range(self.SIDE)] step_list = list(self.step.values()).copy() for i in range(len(step_list)): self.chessboard[ord(step_list[i][0]) - 97][ord(step_list[i][1]) - 97] = (i % 2) + 1 self.sortstep() return True except TypeError: return False def recall(self, s=-1): """ 悔棋 """ if s == -1: try: if len(self.max_step) < len(self.step): self.max_step = self.step.copy() if len(self.step) == 0: raise KeyError except KeyError: return False else: self.step.popitem() return self.loadstep() # 重下 elif s == 1: if len(self.max_step) > len(self.step): self.step.update( {len(self.step) + 1: self.max_step[len(self.step) + 1]}) return self.loadstep() else: return False def move(self, row: int = 7, column: int = 7, **kwgs): """移動棋盘 row: 棋盘的行号 column: 棋盘的列号 """ if 's' in kwgs: row = ord(kwgs['s'][0].lower()) - 97 column = ord(kwgs['s'][1].lower()) - 97 # 判斷是否在棋盤上 if 0 <= row < self.SIDE and 0 <= column < self.SIDE: # 判斷該位置上是否有子落過 if self.chessboard[row][column] == 0: self.chessboard[row][column] = self.player() self.step[len(self.step) + 1] = chr(row + 97) + chr(column + 97) self.sortstep() return True return False def iswin(self): """判断是否结束 """ step_set_ls = [] cb = self.chessboard # 将步表转换为列表 for s in self.step.values(): step_set_ls.append((ord(s[0]) - 97, ord(s[1]) - 97)) # print(step_set_ls) for r, c in step_set_ls: try: # 判断 -- 行有 5 子 if cb[r][c - 2] == cb[r][c - 1] == cb[r][c] == cb[r][ c + 1] == cb[r][c + 2] in (1, 2): return True, cb[r][c] except IndexError: pass try: # 判断 | 有 5 子 if cb[r - 2][c] == cb[r - 1][c] == cb[r][c] == cb[ r + 1][c] == cb[r + 2][c] in (1, 2): return True, cb[r][c] except IndexError: pass try: # 判断 \ 有 5 子 if cb[r - 2][c - 2] == cb[r - 1][c - 1] == cb[r][c] == cb[ r + 1][c + 1] == cb[r + 2][c + 2] in (1, 2): return True, cb[r][c] except IndexError: pass try: # 判断 / 列有 5 子 if cb[r + 2][c - 2] == cb[r + 1][c - 1] == cb[r][c] == cb[ r - 1][c + 1] == cb[r - 2][c + 2] in (1, 2): return True, cb[r][c] except IndexError: pass return False, 0 def __init__(self): # 棋盤 self.chessboard = [[0 for i in range(self.SIDE)] for j in range(self.SIDE)] # 總步表 self.step = {} # 单局最长步表 self.max_step = {} # 黑子步表 self.black = {} # 白子步表 self.white = {} def _test(): a = Gobang() # 输入步表 a.step = { 1: 'no', 2: 'oo', 3: 'mn', 4: 'nn', 5: 'lm', 6: 'mm', 7: 'kl', 8: 'll', } # 加载 a.loadstep() # 落子 a.move(9, 10) # 打印棋盘 a.printcb() # 输出输赢 print(a.iswin()) a.new() a.printcb() if __name__ == "__main__": _test()
[ 8, 11, 14, 15, 16 ]
1,721
8c4aacb0dfacac2cc3e6fa91397ddfed75923fd9
/home/co/Documents/ImageClassifier/tensorflow/tensorflow/contrib/rnn/python/ops/rnn_cell.py
null
null
null
null
[ 0 ]
1,722
1c3b1776f14a085bec90be11028c87dc47f00293
<mask token> class FlowerIdentify(tornado.web.RequestHandler): def get(self): self.render('flower_identify.html') class IdentifyHandler(tornado.websocket.WebSocketHandler): def post(self): dataUrl = self.get_body_argument('image') Orientation = self.get_body_argument('orientation') content = base64.b64decode(dataUrl) """保存到图片target.jpg""" file = open('./static/images/target.jpg', 'wb') file.write(content) file.close() """图片旋转270(根据实际情况)""" img = Image.open('./static/images/target.jpg') if Orientation == '3': img = img.rotate(180, expand=True) elif Orientation == '6': img = img.rotate(270, expand=True) elif Orientation == '8': img = img.rotate(90, expand=True) img.save('./static/images/target.jpg') """调用函数识别""" flowerIndex = flower_identify() flowerInfo = FlowersInfo.flowersInfo[flowerIndex] self.render('fi_result.html', data=flowerInfo)
<mask token> class FlowersInfo: <mask token> class FlowerIdentify(tornado.web.RequestHandler): def get(self): self.render('flower_identify.html') class IdentifyHandler(tornado.websocket.WebSocketHandler): def post(self): dataUrl = self.get_body_argument('image') Orientation = self.get_body_argument('orientation') content = base64.b64decode(dataUrl) """保存到图片target.jpg""" file = open('./static/images/target.jpg', 'wb') file.write(content) file.close() """图片旋转270(根据实际情况)""" img = Image.open('./static/images/target.jpg') if Orientation == '3': img = img.rotate(180, expand=True) elif Orientation == '6': img = img.rotate(270, expand=True) elif Orientation == '8': img = img.rotate(90, expand=True) img.save('./static/images/target.jpg') """调用函数识别""" flowerIndex = flower_identify() flowerInfo = FlowersInfo.flowersInfo[flowerIndex] self.render('fi_result.html', data=flowerInfo)
<mask token> class FlowersInfo: flowersInfo = [ '月季花(学名:Rosa chinensis Jacq.): 被称为花中皇后,又称“月月红”,是常绿、半常绿低矮灌木,四季开花,一般为红色,或粉色、偶有白色和黄色,可作为观赏植物,也可作为药用植物,亦称月季。有三个自然变种,现代月季花型多样,有单瓣和重瓣,还有高心卷边等优美花型;其色彩艳丽、丰富,不仅有红、粉黄、白等单色,还有混色、银边等品种;多数品种有芳香。月季的品种繁多,世界上已有近万种,中国也有千种以上。' , '绣球(学名:Hydrangea macrophylla (Thunb.) Ser. ): 为虎耳草科绣球属植物。灌木,高1-4米;茎常于基部发出多数放射枝而形成一圆形灌丛;枝圆柱形。叶纸质或近革质,倒卵形或阔椭圆形。伞房状聚伞花序近球形,直径8-20厘米,具短的总花梗,花密集,粉红色、淡蓝色或白色;花瓣长圆形,长3-3.5毫米。蒴果未成熟,长陀螺状;种子未熟。花期6-8月。' , '万寿菊(Tagetes erecta L)为菊科万寿菊属一年生草本植物,茎直立,粗壮,具纵细条棱,分枝向上平展。叶羽状分裂;沿叶缘有少数腺体。头状花序单生;总苞杯状,顶端具齿尖;舌状花黄色或暗橙色;管状花花冠黄色。瘦果线形,基部缩小,黑色或褐色,被短微毛;冠毛有1-2个长芒和2-3个短而钝的鳞片。花期7-9月。' , '三色堇(学名:Viola tricolor L.)是堇菜科堇菜属的二年或多年生草本植物。基生叶叶片长卵形或披针形,具长柄,茎生叶叶片卵形、长圆形或长圆披针形,先端圆或钝,边缘具稀疏的圆齿或钝锯齿。三色堇是欧洲常见的野花物种,也常栽培于公园中,是冰岛、波兰的国花。花朵通常每花有紫、白、黄三色,故名三色堇。该物种较耐寒,喜凉爽,开花受光照影响较大。' , '石榴花,落叶灌木或小乔木石榴的花;为石榴属植物,石榴树干灰褐色,有片状剥落,嫩枝黄绿光滑,常呈四棱形,枝端多为刺状,无顶芽。石榴花单叶对生或簇生,矩圆形或倒卵形,新叶嫩绿或古铜色。花朵至数朵生于枝顶或叶腋,花萼钟形,肉质,先端6裂,表面光滑具腊质,橙红色,宿存。花瓣5~7枚红色或白色,单瓣或重瓣。' ] class FlowerIdentify(tornado.web.RequestHandler): def get(self): self.render('flower_identify.html') class IdentifyHandler(tornado.websocket.WebSocketHandler): def post(self): dataUrl = self.get_body_argument('image') Orientation = self.get_body_argument('orientation') content = base64.b64decode(dataUrl) """保存到图片target.jpg""" file = open('./static/images/target.jpg', 'wb') file.write(content) file.close() """图片旋转270(根据实际情况)""" img = Image.open('./static/images/target.jpg') if Orientation == '3': img = img.rotate(180, expand=True) elif Orientation == '6': img = img.rotate(270, expand=True) elif Orientation == '8': img = img.rotate(90, expand=True) img.save('./static/images/target.jpg') """调用函数识别""" flowerIndex = flower_identify() flowerInfo = FlowersInfo.flowersInfo[flowerIndex] self.render('fi_result.html', data=flowerInfo)
import tornado.web import tornado.websocket from PIL import Image import base64 from model.flower_identify import flower_identify class FlowersInfo: flowersInfo = [ '月季花(学名:Rosa chinensis Jacq.): 被称为花中皇后,又称“月月红”,是常绿、半常绿低矮灌木,四季开花,一般为红色,或粉色、偶有白色和黄色,可作为观赏植物,也可作为药用植物,亦称月季。有三个自然变种,现代月季花型多样,有单瓣和重瓣,还有高心卷边等优美花型;其色彩艳丽、丰富,不仅有红、粉黄、白等单色,还有混色、银边等品种;多数品种有芳香。月季的品种繁多,世界上已有近万种,中国也有千种以上。' , '绣球(学名:Hydrangea macrophylla (Thunb.) Ser. ): 为虎耳草科绣球属植物。灌木,高1-4米;茎常于基部发出多数放射枝而形成一圆形灌丛;枝圆柱形。叶纸质或近革质,倒卵形或阔椭圆形。伞房状聚伞花序近球形,直径8-20厘米,具短的总花梗,花密集,粉红色、淡蓝色或白色;花瓣长圆形,长3-3.5毫米。蒴果未成熟,长陀螺状;种子未熟。花期6-8月。' , '万寿菊(Tagetes erecta L)为菊科万寿菊属一年生草本植物,茎直立,粗壮,具纵细条棱,分枝向上平展。叶羽状分裂;沿叶缘有少数腺体。头状花序单生;总苞杯状,顶端具齿尖;舌状花黄色或暗橙色;管状花花冠黄色。瘦果线形,基部缩小,黑色或褐色,被短微毛;冠毛有1-2个长芒和2-3个短而钝的鳞片。花期7-9月。' , '三色堇(学名:Viola tricolor L.)是堇菜科堇菜属的二年或多年生草本植物。基生叶叶片长卵形或披针形,具长柄,茎生叶叶片卵形、长圆形或长圆披针形,先端圆或钝,边缘具稀疏的圆齿或钝锯齿。三色堇是欧洲常见的野花物种,也常栽培于公园中,是冰岛、波兰的国花。花朵通常每花有紫、白、黄三色,故名三色堇。该物种较耐寒,喜凉爽,开花受光照影响较大。' , '石榴花,落叶灌木或小乔木石榴的花;为石榴属植物,石榴树干灰褐色,有片状剥落,嫩枝黄绿光滑,常呈四棱形,枝端多为刺状,无顶芽。石榴花单叶对生或簇生,矩圆形或倒卵形,新叶嫩绿或古铜色。花朵至数朵生于枝顶或叶腋,花萼钟形,肉质,先端6裂,表面光滑具腊质,橙红色,宿存。花瓣5~7枚红色或白色,单瓣或重瓣。' ] class FlowerIdentify(tornado.web.RequestHandler): def get(self): self.render('flower_identify.html') class IdentifyHandler(tornado.websocket.WebSocketHandler): def post(self): dataUrl = self.get_body_argument('image') Orientation = self.get_body_argument('orientation') content = base64.b64decode(dataUrl) """保存到图片target.jpg""" file = open('./static/images/target.jpg', 'wb') file.write(content) file.close() """图片旋转270(根据实际情况)""" img = Image.open('./static/images/target.jpg') if Orientation == '3': img = img.rotate(180, expand=True) elif Orientation == '6': img = img.rotate(270, expand=True) elif Orientation == '8': img = img.rotate(90, expand=True) img.save('./static/images/target.jpg') """调用函数识别""" flowerIndex = flower_identify() flowerInfo = FlowersInfo.flowersInfo[flowerIndex] self.render('fi_result.html', data=flowerInfo)
# -*- coding: utf-8 -*- # @File :fi_handlers.py # @Author:ZengYu # @Date :2019/5/16 # @software:PyCharm import tornado.web import tornado.websocket from PIL import Image import base64 from model.flower_identify import flower_identify class FlowersInfo(): flowersInfo = ["月季花(学名:Rosa chinensis Jacq.): 被称为花中皇后,又称“月月红”,是常绿、半常绿低矮灌木,四季开花,一般为红色,或粉色、偶有白色和黄色,可作为观赏植物,也可作为药用植物,亦称月季。有三个自然变种,现代月季花型多样,有单瓣和重瓣,还有高心卷边等优美花型;其色彩艳丽、丰富,不仅有红、粉黄、白等单色,还有混色、银边等品种;多数品种有芳香。月季的品种繁多,世界上已有近万种,中国也有千种以上。", "绣球(学名:Hydrangea macrophylla (Thunb.) Ser. ): 为虎耳草科绣球属植物。灌木,高1-4米;茎常于基部发出多数放射枝而形成一圆形灌丛;枝圆柱形。叶纸质或近革质,倒卵形或阔椭圆形。伞房状聚伞花序近球形,直径8-20厘米,具短的总花梗,花密集,粉红色、淡蓝色或白色;花瓣长圆形,长3-3.5毫米。蒴果未成熟,长陀螺状;种子未熟。花期6-8月。", "万寿菊(Tagetes erecta L)为菊科万寿菊属一年生草本植物,茎直立,粗壮,具纵细条棱,分枝向上平展。叶羽状分裂;沿叶缘有少数腺体。头状花序单生;总苞杯状,顶端具齿尖;舌状花黄色或暗橙色;管状花花冠黄色。瘦果线形,基部缩小,黑色或褐色,被短微毛;冠毛有1-2个长芒和2-3个短而钝的鳞片。花期7-9月。", "三色堇(学名:Viola tricolor L.)是堇菜科堇菜属的二年或多年生草本植物。基生叶叶片长卵形或披针形,具长柄,茎生叶叶片卵形、长圆形或长圆披针形,先端圆或钝,边缘具稀疏的圆齿或钝锯齿。三色堇是欧洲常见的野花物种,也常栽培于公园中,是冰岛、波兰的国花。花朵通常每花有紫、白、黄三色,故名三色堇。该物种较耐寒,喜凉爽,开花受光照影响较大。", "石榴花,落叶灌木或小乔木石榴的花;为石榴属植物,石榴树干灰褐色,有片状剥落,嫩枝黄绿光滑,常呈四棱形,枝端多为刺状,无顶芽。石榴花单叶对生或簇生,矩圆形或倒卵形,新叶嫩绿或古铜色。花朵至数朵生于枝顶或叶腋,花萼钟形,肉质,先端6裂,表面光滑具腊质,橙红色,宿存。花瓣5~7枚红色或白色,单瓣或重瓣。"] class FlowerIdentify(tornado.web.RequestHandler): def get(self): self.render("flower_identify.html") class IdentifyHandler(tornado.websocket.WebSocketHandler): def post(self): # 从JSON字符串读取图片数据 dataUrl = self.get_body_argument("image") Orientation = self.get_body_argument("orientation") # 得到图片方向以便旋转处理 content = base64.b64decode(dataUrl) '''保存到图片target.jpg''' file = open('./static/images/target.jpg', 'wb') file.write(content) file.close() '''图片旋转270(根据实际情况)''' img = Image.open('./static/images/target.jpg') if Orientation == "3": img = img.rotate(180, expand=True) elif Orientation == "6": img = img.rotate(270, expand=True) elif Orientation == "8": img = img.rotate(90, expand=True) img.save('./static/images/target.jpg') '''调用函数识别''' flowerIndex = flower_identify() # 调用识别函数 flowerInfo = FlowersInfo.flowersInfo[flowerIndex] # 得到结果,并从FlowersInfo里找到该花的资料 self.render("fi_result.html", data=flowerInfo)
[ 4, 5, 6, 7, 8 ]
1,723
837e84d4a58d8fd0d0ffc24973d196ae57f9a260
<mask token> def reorder_sentences(output_sentences, input): def custom_sort(s1, s2): return input.find(s1) - input.find(s2) output_sentences.sort(key=functools.cmp_to_key(custom_sort)) return output_sentences <mask token>
<mask token> def clean(string): string = re.sub("\\'s", " 's", string) string = re.sub("\\'ve", " 've", string) string = re.sub("n\\'t", " n't", string) string = re.sub("\\'re", " 're", string) string = re.sub("\\'d", " 'd", string) string = re.sub("\\'ll", " 'll", string) string = re.sub('!', ' ! ', string) string = re.sub('\\\\\\(', ' \\( ', string) string = re.sub('\\\\\\)', ' \\) ', string) string = re.sub('\\?', ' \\? ', string) string = re.sub('\\]\\]', '', string) string = re.sub('\\n', '', string) string = string.rstrip() string = remove_text_inside_brackets(string, '(){}[]') return string.strip() def remove_text_inside_brackets(text, brackets): count = [0] * (len(brackets) // 2) saved_chars = [] for character in text: for i, b in enumerate(brackets): if character == b: kind, is_close = divmod(i, 2) count[kind] += (-1) ** is_close if count[kind] < 0: count[kind] = 0 else: break else: if not any(count): saved_chars.append(character) return ''.join(saved_chars) def reorder_sentences(output_sentences, input): def custom_sort(s1, s2): return input.find(s1) - input.find(s2) output_sentences.sort(key=functools.cmp_to_key(custom_sort)) return output_sentences <mask token> def summarize(input, num_sentences): return ' '.join(get_summarized(input, num_sentences))
<mask token> def clean(string): string = re.sub("\\'s", " 's", string) string = re.sub("\\'ve", " 've", string) string = re.sub("n\\'t", " n't", string) string = re.sub("\\'re", " 're", string) string = re.sub("\\'d", " 'd", string) string = re.sub("\\'ll", " 'll", string) string = re.sub('!', ' ! ', string) string = re.sub('\\\\\\(', ' \\( ', string) string = re.sub('\\\\\\)', ' \\) ', string) string = re.sub('\\?', ' \\? ', string) string = re.sub('\\]\\]', '', string) string = re.sub('\\n', '', string) string = string.rstrip() string = remove_text_inside_brackets(string, '(){}[]') return string.strip() def remove_text_inside_brackets(text, brackets): count = [0] * (len(brackets) // 2) saved_chars = [] for character in text: for i, b in enumerate(brackets): if character == b: kind, is_close = divmod(i, 2) count[kind] += (-1) ** is_close if count[kind] < 0: count[kind] = 0 else: break else: if not any(count): saved_chars.append(character) return ''.join(saved_chars) def reorder_sentences(output_sentences, input): def custom_sort(s1, s2): return input.find(s1) - input.find(s2) output_sentences.sort(key=functools.cmp_to_key(custom_sort)) return output_sentences def get_summarized(input, num_sentences): input = clean(input) tokenizer = RegexpTokenizer('\\w+') base_words = [word.lower() for word in tokenizer.tokenize(input)] words = [word for word in base_words if word not in stopwords.words()] word_frequencies = FreqDist(words) most_frequent_words = [pair[0] for pair in word_frequencies.most_common (100)] input = remove_text_inside_brackets(input, '====') sent_detector = nltk.data.load('tokenizers/punkt/english.pickle') actual_sentences_pre = sent_detector.tokenize(input) actual_sentences = [] for sentence in actual_sentences_pre: if len(sentence.split()) <= 6: continue else: actual_sentences.append(sentence) working_sentences = [sentence.lower() for sentence in actual_sentences] output_sentences = [] for word in most_frequent_words: for i in range(0, len(working_sentences)): if word in working_sentences[i] and actual_sentences[i ] not in output_sentences: output_sentences.append(actual_sentences[i]) break if len(output_sentences) >= num_sentences: break if len(output_sentences) >= num_sentences: break for sentence in output_sentences: sentence.capitalize() return reorder_sentences(output_sentences, input) def summarize(input, num_sentences): return ' '.join(get_summarized(input, num_sentences))
import functools import re import nltk.data from nltk.corpus import stopwords from nltk.probability import FreqDist from nltk.tokenize import RegexpTokenizer def clean(string): string = re.sub("\\'s", " 's", string) string = re.sub("\\'ve", " 've", string) string = re.sub("n\\'t", " n't", string) string = re.sub("\\'re", " 're", string) string = re.sub("\\'d", " 'd", string) string = re.sub("\\'ll", " 'll", string) string = re.sub('!', ' ! ', string) string = re.sub('\\\\\\(', ' \\( ', string) string = re.sub('\\\\\\)', ' \\) ', string) string = re.sub('\\?', ' \\? ', string) string = re.sub('\\]\\]', '', string) string = re.sub('\\n', '', string) string = string.rstrip() string = remove_text_inside_brackets(string, '(){}[]') return string.strip() def remove_text_inside_brackets(text, brackets): count = [0] * (len(brackets) // 2) saved_chars = [] for character in text: for i, b in enumerate(brackets): if character == b: kind, is_close = divmod(i, 2) count[kind] += (-1) ** is_close if count[kind] < 0: count[kind] = 0 else: break else: if not any(count): saved_chars.append(character) return ''.join(saved_chars) def reorder_sentences(output_sentences, input): def custom_sort(s1, s2): return input.find(s1) - input.find(s2) output_sentences.sort(key=functools.cmp_to_key(custom_sort)) return output_sentences def get_summarized(input, num_sentences): input = clean(input) tokenizer = RegexpTokenizer('\\w+') base_words = [word.lower() for word in tokenizer.tokenize(input)] words = [word for word in base_words if word not in stopwords.words()] word_frequencies = FreqDist(words) most_frequent_words = [pair[0] for pair in word_frequencies.most_common (100)] input = remove_text_inside_brackets(input, '====') sent_detector = nltk.data.load('tokenizers/punkt/english.pickle') actual_sentences_pre = sent_detector.tokenize(input) actual_sentences = [] for sentence in actual_sentences_pre: if len(sentence.split()) <= 6: continue else: actual_sentences.append(sentence) working_sentences = [sentence.lower() for sentence in actual_sentences] output_sentences = [] for word in most_frequent_words: for i in range(0, len(working_sentences)): if word in working_sentences[i] and actual_sentences[i ] not in output_sentences: output_sentences.append(actual_sentences[i]) break if len(output_sentences) >= num_sentences: break if len(output_sentences) >= num_sentences: break for sentence in output_sentences: sentence.capitalize() return reorder_sentences(output_sentences, input) def summarize(input, num_sentences): return ' '.join(get_summarized(input, num_sentences))
import functools import re import nltk.data from nltk.corpus import stopwords from nltk.probability import FreqDist from nltk.tokenize import RegexpTokenizer def clean(string): string = re.sub(r"\'s", " \'s", string) string = re.sub(r"\'ve", " \'ve", string) string = re.sub(r"n\'t", " n\'t", string) string = re.sub(r"\'re", " \'re", string) string = re.sub(r"\'d", " \'d", string) string = re.sub(r"\'ll", " \'ll", string) string = re.sub(r"!", " ! ", string) string = re.sub(r"\\\(", " \( ", string) string = re.sub(r"\\\)", " \) ", string) string = re.sub(r"\?", " \? ", string) string = re.sub(r"\]\]", "", string) string = re.sub(r"\n", "", string) string = string.rstrip() string = remove_text_inside_brackets(string, "(){}[]") return string.strip() def remove_text_inside_brackets(text, brackets): count = [0] * (len(brackets) // 2) # count open/close brackets saved_chars = [] for character in text: for i, b in enumerate(brackets): if character == b: # found bracket kind, is_close = divmod(i, 2) count[kind] += (-1) ** is_close # `+1`: open, `-1`: close if count[kind] < 0: # unbalanced bracket count[kind] = 0 # keep it else: # found bracket to remove break else: # character is not a [balanced] bracket if not any(count): # outside brackets saved_chars.append(character) return ''.join(saved_chars) def reorder_sentences(output_sentences, input): def custom_sort(s1, s2): return input.find(s1) - input.find(s2) output_sentences.sort(key=functools.cmp_to_key(custom_sort)) return output_sentences def get_summarized(input, num_sentences): input = clean(input) tokenizer = RegexpTokenizer('\w+') base_words = [word.lower() for word in tokenizer.tokenize(input)] words = [word for word in base_words if word not in stopwords.words()] word_frequencies = FreqDist(words) most_frequent_words = [pair[0] for pair in word_frequencies.most_common(100)] input = remove_text_inside_brackets(input, "====") sent_detector = nltk.data.load('tokenizers/punkt/english.pickle') actual_sentences_pre = sent_detector.tokenize(input) actual_sentences = [] for sentence in actual_sentences_pre: if len(sentence.split()) <= 6: continue else: actual_sentences.append(sentence) working_sentences = [sentence.lower() for sentence in actual_sentences] output_sentences = [] for word in most_frequent_words: for i in range(0, len(working_sentences)): if word in working_sentences[i] and actual_sentences[i] not in output_sentences: output_sentences.append(actual_sentences[i]) break if len(output_sentences) >= num_sentences: break if len(output_sentences) >= num_sentences: break for sentence in output_sentences: sentence.capitalize() return reorder_sentences(output_sentences, input) def summarize(input, num_sentences): return " ".join(get_summarized(input, num_sentences))
[ 1, 4, 5, 6, 7 ]
1,724
03b325094bd3e77f467e17ce54deb95bf2b5c727
<mask token>
<mask token> print(a + b) print('hello') <mask token> for i in list: if i % 2 != 0: print(i) print('branch')
a = 1 b = 2 print(a + b) print('hello') list = [1, 2, 3, 4, 5] for i in list: if i % 2 != 0: print(i) print('branch')
a = 1 b = 2 print(a + b) print("hello") list = [1, 2, 3, 4, 5] for i in list: if i % 2 != 0: print(i) print("branch")
null
[ 0, 1, 2, 3 ]
1,725
096df1db4d8673ae7886a1b2022148c92f64a23e
<mask token> class ParticleSwarmOptimization: <mask token> def __init__(self, hyperparams, lower_bound, upper_bound): self.lower_bound = lower_bound self.upper_bound = upper_bound self.num_particles = hyperparams.num_particles self.w = hyperparams.inertia_weight self.phip = hyperparams.cognitive_parameter self.phig = hyperparams.social_parameter self.particles = np.array([]) self.current_particle = None i = 0 while i < self.num_particles: particle = Particle(lower_bound, upper_bound) self.particles = np.append(self.particles, particle) i = i + 1 <mask token> def get_best_value(self): """ Obtains the value of the best position so far found by the algorithm. :return: value of the best position. :rtype: float. """ best_value_global = -inf for particle in self.particles: if particle.best_value >= best_value_global: best_value_global = particle.best_value return best_value_global def get_position_to_evaluate(self): """ Obtains a new position to evaluate. :return: position to evaluate. :rtype: numpy array. """ for particle in self.particles: if particle.evaluated is False: self.current_particle = particle return self.current_particle.x self.advance_generation() for particle in self.particles: if particle.evaluated is False: self.current_particle = particle return self.current_particle.x <mask token> def notify_evaluation(self, value): """ Notifies the algorithm that a particle position evaluation was completed. :param value: quality of the particle position. :type value: float. """ self.current_particle.value = value self.current_particle.evaluated = True
<mask token> class ParticleSwarmOptimization: <mask token> def __init__(self, hyperparams, lower_bound, upper_bound): self.lower_bound = lower_bound self.upper_bound = upper_bound self.num_particles = hyperparams.num_particles self.w = hyperparams.inertia_weight self.phip = hyperparams.cognitive_parameter self.phig = hyperparams.social_parameter self.particles = np.array([]) self.current_particle = None i = 0 while i < self.num_particles: particle = Particle(lower_bound, upper_bound) self.particles = np.append(self.particles, particle) i = i + 1 def get_best_position(self): """ Obtains the best position so far found by the algorithm. :return: the best position. :rtype: numpy array. """ best_value_global = -inf position = None for particle in self.particles: if particle.best_value >= best_value_global: position = particle.best_position best_value_global = particle.best_value return position def get_best_value(self): """ Obtains the value of the best position so far found by the algorithm. :return: value of the best position. :rtype: float. """ best_value_global = -inf for particle in self.particles: if particle.best_value >= best_value_global: best_value_global = particle.best_value return best_value_global def get_position_to_evaluate(self): """ Obtains a new position to evaluate. :return: position to evaluate. :rtype: numpy array. """ for particle in self.particles: if particle.evaluated is False: self.current_particle = particle return self.current_particle.x self.advance_generation() for particle in self.particles: if particle.evaluated is False: self.current_particle = particle return self.current_particle.x def advance_generation(self): """ Advances the generation of particles. """ for particle in self.particles: if particle.value > particle.best_value: particle.best_position = particle.x particle.best_value = particle.value rp = random.uniform(0.0, 1.0) rg = random.uniform(0.0, 1.0) particle.v = self.w * particle.v + self.phip * rp * (particle. best_position - particle.x) + self.phig * rg * (self. get_best_position() - particle.x) particle.x = particle.x + particle.v particle.evaluated = False def notify_evaluation(self, value): """ Notifies the algorithm that a particle position evaluation was completed. :param value: quality of the particle position. :type value: float. """ self.current_particle.value = value self.current_particle.evaluated = True
<mask token> class Particle: <mask token> <mask token> class ParticleSwarmOptimization: """ Represents the Particle Swarm Optimization algorithm. Hyperparameters: inertia_weight: inertia weight. cognitive_parameter: cognitive parameter. social_parameter: social parameter. :param hyperparams: hyperparameters used by Particle Swarm Optimization. :type hyperparams: Params. :param lower_bound: lower bound of particle position. :type lower_bound: numpy array. :param upper_bound: upper bound of particle position. :type upper_bound: numpy array. """ def __init__(self, hyperparams, lower_bound, upper_bound): self.lower_bound = lower_bound self.upper_bound = upper_bound self.num_particles = hyperparams.num_particles self.w = hyperparams.inertia_weight self.phip = hyperparams.cognitive_parameter self.phig = hyperparams.social_parameter self.particles = np.array([]) self.current_particle = None i = 0 while i < self.num_particles: particle = Particle(lower_bound, upper_bound) self.particles = np.append(self.particles, particle) i = i + 1 def get_best_position(self): """ Obtains the best position so far found by the algorithm. :return: the best position. :rtype: numpy array. """ best_value_global = -inf position = None for particle in self.particles: if particle.best_value >= best_value_global: position = particle.best_position best_value_global = particle.best_value return position def get_best_value(self): """ Obtains the value of the best position so far found by the algorithm. :return: value of the best position. :rtype: float. """ best_value_global = -inf for particle in self.particles: if particle.best_value >= best_value_global: best_value_global = particle.best_value return best_value_global def get_position_to_evaluate(self): """ Obtains a new position to evaluate. :return: position to evaluate. :rtype: numpy array. """ for particle in self.particles: if particle.evaluated is False: self.current_particle = particle return self.current_particle.x self.advance_generation() for particle in self.particles: if particle.evaluated is False: self.current_particle = particle return self.current_particle.x def advance_generation(self): """ Advances the generation of particles. """ for particle in self.particles: if particle.value > particle.best_value: particle.best_position = particle.x particle.best_value = particle.value rp = random.uniform(0.0, 1.0) rg = random.uniform(0.0, 1.0) particle.v = self.w * particle.v + self.phip * rp * (particle. best_position - particle.x) + self.phig * rg * (self. get_best_position() - particle.x) particle.x = particle.x + particle.v particle.evaluated = False def notify_evaluation(self, value): """ Notifies the algorithm that a particle position evaluation was completed. :param value: quality of the particle position. :type value: float. """ self.current_particle.value = value self.current_particle.evaluated = True
import numpy as np import random from math import inf class Particle: """ Represents a particle of the Particle Swarm Optimization algorithm. """ def __init__(self, lower_bound, upper_bound): """ Creates a particle of the Particle Swarm Optimization algorithm. :param lower_bound: lower bound of the particle position. :type lower_bound: numpy array. :param upper_bound: upper bound of the particle position. :type upper_bound: numpy array. """ self.x = np.zeros(np.size(lower_bound)) self.v = np.zeros(np.size(lower_bound)) self.value = -inf self.evaluated = False i = 0 while i < np.size(lower_bound): self.x[i] = random.uniform(lower_bound[i], upper_bound[i]) self.v[i] = random.uniform(-(upper_bound[i] - lower_bound[i]), upper_bound[i] - lower_bound[i]) i = i + 1 self.best_position = self.x self.best_value = -inf class ParticleSwarmOptimization: """ Represents the Particle Swarm Optimization algorithm. Hyperparameters: inertia_weight: inertia weight. cognitive_parameter: cognitive parameter. social_parameter: social parameter. :param hyperparams: hyperparameters used by Particle Swarm Optimization. :type hyperparams: Params. :param lower_bound: lower bound of particle position. :type lower_bound: numpy array. :param upper_bound: upper bound of particle position. :type upper_bound: numpy array. """ def __init__(self, hyperparams, lower_bound, upper_bound): self.lower_bound = lower_bound self.upper_bound = upper_bound self.num_particles = hyperparams.num_particles self.w = hyperparams.inertia_weight self.phip = hyperparams.cognitive_parameter self.phig = hyperparams.social_parameter self.particles = np.array([]) self.current_particle = None i = 0 while i < self.num_particles: particle = Particle(lower_bound, upper_bound) self.particles = np.append(self.particles, particle) i = i + 1 def get_best_position(self): """ Obtains the best position so far found by the algorithm. :return: the best position. :rtype: numpy array. """ best_value_global = -inf position = None for particle in self.particles: if particle.best_value >= best_value_global: position = particle.best_position best_value_global = particle.best_value return position def get_best_value(self): """ Obtains the value of the best position so far found by the algorithm. :return: value of the best position. :rtype: float. """ best_value_global = -inf for particle in self.particles: if particle.best_value >= best_value_global: best_value_global = particle.best_value return best_value_global def get_position_to_evaluate(self): """ Obtains a new position to evaluate. :return: position to evaluate. :rtype: numpy array. """ for particle in self.particles: if particle.evaluated is False: self.current_particle = particle return self.current_particle.x self.advance_generation() for particle in self.particles: if particle.evaluated is False: self.current_particle = particle return self.current_particle.x def advance_generation(self): """ Advances the generation of particles. """ for particle in self.particles: if particle.value > particle.best_value: particle.best_position = particle.x particle.best_value = particle.value rp = random.uniform(0.0, 1.0) rg = random.uniform(0.0, 1.0) particle.v = self.w * particle.v + self.phip * rp * (particle. best_position - particle.x) + self.phig * rg * (self. get_best_position() - particle.x) particle.x = particle.x + particle.v particle.evaluated = False def notify_evaluation(self, value): """ Notifies the algorithm that a particle position evaluation was completed. :param value: quality of the particle position. :type value: float. """ self.current_particle.value = value self.current_particle.evaluated = True
import numpy as np import random from math import inf class Particle: """ Represents a particle of the Particle Swarm Optimization algorithm. """ def __init__(self, lower_bound, upper_bound): """ Creates a particle of the Particle Swarm Optimization algorithm. :param lower_bound: lower bound of the particle position. :type lower_bound: numpy array. :param upper_bound: upper bound of the particle position. :type upper_bound: numpy array. """ # Todo: implement self.x = np.zeros(np.size(lower_bound)) self.v = np.zeros(np.size(lower_bound)) self.value = -inf self.evaluated = False i = 0 while i < np.size(lower_bound): self.x[i] = random.uniform(lower_bound[i], upper_bound[i]) self.v[i] = random.uniform(-(upper_bound[i] - lower_bound[i]), upper_bound[i] - lower_bound[i]) i = i + 1 self.best_position = self.x self.best_value = -inf class ParticleSwarmOptimization: """ Represents the Particle Swarm Optimization algorithm. Hyperparameters: inertia_weight: inertia weight. cognitive_parameter: cognitive parameter. social_parameter: social parameter. :param hyperparams: hyperparameters used by Particle Swarm Optimization. :type hyperparams: Params. :param lower_bound: lower bound of particle position. :type lower_bound: numpy array. :param upper_bound: upper bound of particle position. :type upper_bound: numpy array. """ def __init__(self, hyperparams, lower_bound, upper_bound): # Todo: implement self.lower_bound = lower_bound self.upper_bound = upper_bound self.num_particles = hyperparams.num_particles self.w = hyperparams.inertia_weight self.phip = hyperparams.cognitive_parameter self.phig = hyperparams.social_parameter self.particles = np.array([]) self.current_particle = None i = 0 while i < self.num_particles: particle = Particle(lower_bound, upper_bound) self.particles = np.append(self.particles, particle) i = i + 1 def get_best_position(self): """ Obtains the best position so far found by the algorithm. :return: the best position. :rtype: numpy array. """ # Todo: implement best_value_global = -inf position = None for particle in self.particles: if particle.best_value >= best_value_global: position = particle.best_position best_value_global = particle.best_value return position def get_best_value(self): """ Obtains the value of the best position so far found by the algorithm. :return: value of the best position. :rtype: float. """ # Todo: implement best_value_global = -inf for particle in self.particles: if particle.best_value >= best_value_global: best_value_global = particle.best_value return best_value_global # Remove this line def get_position_to_evaluate(self): """ Obtains a new position to evaluate. :return: position to evaluate. :rtype: numpy array. """ # Todo: implement for particle in self.particles: if particle.evaluated is False: self.current_particle = particle return self.current_particle.x self.advance_generation() for particle in self.particles: if particle.evaluated is False: self.current_particle = particle return self.current_particle.x def advance_generation(self): """ Advances the generation of particles. """ # Todo: implement for particle in self.particles: if particle.value > particle.best_value: particle.best_position = particle.x particle.best_value = particle.value rp = random.uniform(0.0, 1.0) rg = random.uniform(0.0, 1.0) particle.v = self.w * particle.v + self.phip * rp * (particle.best_position - particle.x) + self.phig * rg * (self.get_best_position() - particle.x) particle.x = particle.x + particle.v particle.evaluated = False def notify_evaluation(self, value): """ Notifies the algorithm that a particle position evaluation was completed. :param value: quality of the particle position. :type value: float. """ # Todo: implement self.current_particle.value = value self.current_particle.evaluated = True
[ 5, 7, 9, 12, 13 ]
1,726
f021940c16b7ed7fdf1088f2137d3ef724719c80
<mask token>
<mask token> @api_view(['GET']) def get_status(request): if request.method == 'GET': return HttpResponse(content='Service is OK!')
from django.http import HttpResponse from rest_framework.decorators import api_view @api_view(['GET']) def get_status(request): if request.method == 'GET': return HttpResponse(content='Service is OK!')
null
null
[ 0, 1, 2 ]
1,727
f2dac8b454805829cf5dbe2efe3c0de805ae4cb5
<mask token> def load_skeleton(mat_path): mat_data = scipy.io.loadmat(mat_path)['skel'][0, 0] skeleton = OrderedDict() bone_names = mat_data[1].tolist() for i, bone in enumerate(bone_names): bone = bone.strip() if bone == 'Site': bone = bone_names[i - 1].strip() + bone skeleton[bone] = {'offset': [], 'parent': [], 'children': []} parent_ids = mat_data[2][0] offsets = mat_data[3] for i, bone in enumerate(skeleton.keys()): if bone != 'root': parent = list(skeleton.keys())[parent_ids[i] - 1] skeleton[bone]['parent'] = parent skeleton[parent]['children'].append(bone) skeleton[bone]['offset'] = offsets[i, :] return skeleton <mask token> def write_bvh(skeleton, hierarchy, motion_data_all, out): for file_name, motion_data in motion_data_all.items(): joint_quarternions = motion_data['joint_quarternions'] root_pos = motion_data['root_position'] frames = [] for i in range(joint_quarternions.shape[0]): root_pos_i = root_pos[i] frame = '{0:.05f} {1:.05f} {2:.05f} '.format(*root_pos_i.tolist()) for j in range(joint_quarternions.shape[1]): if list(skeleton.keys())[j].endswith('Site'): continue R_ij = quaternion_to_rotation_mat(joint_quarternions[i, j, 3], joint_quarternions[i, j, 2], joint_quarternions[i, j, 1], joint_quarternions[i, j, 0]) euler_ij = rotation_mat_to_euler(R_ij) frame += '{0:.05f} {1:.05f} {2:.05f} '.format(*list(map(lambda s: s * (180.0 / math.pi), euler_ij.tolist()))) frame += '\r\n' frames.append(frame) with open(os.path.join(out, file_name), 'w') as f: f.writelines(hierarchy) f.write('MOTION\r\n') frames[0] = 'Frames: {0}\r\nFrame Time: 0.0083333\r\n'.format( joint_quarternions.shape[0]) + frames[0] f.writelines(frames) print(os.path.join(out, file_name)) def main(): parser = argparse.ArgumentParser() parser.add_argument('out', type=str) args = parser.parse_args() out = args.out motion_data_all = load_motion( '../../motiongan/data/style-dataset/style_motion_database.mat', out) skeleton = load_skeleton('../../motiongan/data/style-dataset/skeleton.mat') hierarchy = construct_hierarchy(skeleton) write_bvh(skeleton, hierarchy, motion_data_all, out) <mask token>
<mask token> def load_motion(mat_path, out): mat_data = scipy.io.loadmat(mat_path)['motion_database'] file_nums = mat_data.shape[1] motion_data_all = {} for f_id in range(file_nums): motion_data = {} motion_data['style'] = mat_data[0, f_id][0][0] motion_data['motion_type'] = mat_data[0, f_id][1][0] full_path = mat_data[0, f_id][2][0, 0][0][0] file_name = full_path.split('\\')[-1] frame_nums = mat_data[0, f_id][2].shape[1] root_pos = np.zeros((frame_nums, 3)) joint_nums = mat_data[0, f_id][2][0, 0][2].shape[0] motion_data['joint_nums'] = joint_nums joint_quarternions = np.zeros((frame_nums, joint_nums, 4)) for i in range(frame_nums): root_pos[i, :] = mat_data[0, f_id][2][0, i][1] joint_quarternions[i, :, :] = mat_data[0, f_id][2][0, i][2] motion_data['root_position'] = root_pos motion_data['joint_quarternions'] = joint_quarternions motion_data['foot_contact'] = mat_data[0, f_id][3][0] with open(os.path.join(out, os.path.splitext(file_name)[0] + '.pkl' ), 'wb') as f: pickle.dump(motion_data, f) motion_data_all[file_name] = motion_data return motion_data_all def load_skeleton(mat_path): mat_data = scipy.io.loadmat(mat_path)['skel'][0, 0] skeleton = OrderedDict() bone_names = mat_data[1].tolist() for i, bone in enumerate(bone_names): bone = bone.strip() if bone == 'Site': bone = bone_names[i - 1].strip() + bone skeleton[bone] = {'offset': [], 'parent': [], 'children': []} parent_ids = mat_data[2][0] offsets = mat_data[3] for i, bone in enumerate(skeleton.keys()): if bone != 'root': parent = list(skeleton.keys())[parent_ids[i] - 1] skeleton[bone]['parent'] = parent skeleton[parent]['children'].append(bone) skeleton[bone]['offset'] = offsets[i, :] return skeleton def construct_hierarchy(skeleton): hierarchy = ['HIERARCHY\r\n'] level = 0 for i, bone in enumerate(skeleton.keys()): if bone == 'root': skeleton[bone]['level'] = 0 else: parent = skeleton[bone]['parent'] skeleton[bone]['level'] = skeleton[parent]['level'] + 1 for i, bone in enumerate(skeleton.keys()): offset = skeleton[bone]['offset'] if bone == 'root': hierarchy.append('ROOT root\r\n') hierarchy.append('{\r\n') hierarchy.append('\tOFFSET {0:.05f} {1:.05f} {2:.05f}\r\n'. format(offset[0], offset[1], offset[2])) hierarchy.append( '\tCHANNELS 6 Xposition Yposition Zposition Zrotation Yrotation Xrotation\r\n' ) elif bone.endswith('Site'): parent = skeleton[bone]['parent'] level = skeleton[bone]['level'] tabs = '\t' * level hierarchy.append(tabs + 'End Site\r\n') hierarchy.append(tabs + '{\r\n') hierarchy.append(tabs + '\tOFFSET {0:.05f} {1:.05f} {2:.05f}\r\n'.format(offset[0], offset[1], offset[2])) hierarchy.append(tabs + '}\r\n') if i == len(skeleton.keys()) - 1: while level > 0: level -= 1 hierarchy.append('\t' * level + '}\r\n') else: for _ in range(level - skeleton[list(skeleton.keys())[i + 1 ]]['level']): level -= 1 hierarchy.append('\t' * level + '}\r\n') else: parent = skeleton[bone]['parent'] level = skeleton[bone]['level'] tabs = '\t' * level hierarchy.append(tabs + 'JOINT {0}'.format(bone) + '\r\n') hierarchy.append(tabs + '{\r\n') hierarchy.append(tabs + '\tOFFSET {0:.05f} {1:.05f} {2:.05f}\r\n'.format(offset[0], offset[1], offset[2])) hierarchy.append(tabs + '\tCHANNELS 3 Zrotation Yrotation Xrotation\r\n') return hierarchy def write_bvh(skeleton, hierarchy, motion_data_all, out): for file_name, motion_data in motion_data_all.items(): joint_quarternions = motion_data['joint_quarternions'] root_pos = motion_data['root_position'] frames = [] for i in range(joint_quarternions.shape[0]): root_pos_i = root_pos[i] frame = '{0:.05f} {1:.05f} {2:.05f} '.format(*root_pos_i.tolist()) for j in range(joint_quarternions.shape[1]): if list(skeleton.keys())[j].endswith('Site'): continue R_ij = quaternion_to_rotation_mat(joint_quarternions[i, j, 3], joint_quarternions[i, j, 2], joint_quarternions[i, j, 1], joint_quarternions[i, j, 0]) euler_ij = rotation_mat_to_euler(R_ij) frame += '{0:.05f} {1:.05f} {2:.05f} '.format(*list(map(lambda s: s * (180.0 / math.pi), euler_ij.tolist()))) frame += '\r\n' frames.append(frame) with open(os.path.join(out, file_name), 'w') as f: f.writelines(hierarchy) f.write('MOTION\r\n') frames[0] = 'Frames: {0}\r\nFrame Time: 0.0083333\r\n'.format( joint_quarternions.shape[0]) + frames[0] f.writelines(frames) print(os.path.join(out, file_name)) def main(): parser = argparse.ArgumentParser() parser.add_argument('out', type=str) args = parser.parse_args() out = args.out motion_data_all = load_motion( '../../motiongan/data/style-dataset/style_motion_database.mat', out) skeleton = load_skeleton('../../motiongan/data/style-dataset/skeleton.mat') hierarchy = construct_hierarchy(skeleton) write_bvh(skeleton, hierarchy, motion_data_all, out) <mask token>
<mask token> sys.path.append(os.path.join(os.path.dirname(__file__), '..')) <mask token> def load_motion(mat_path, out): mat_data = scipy.io.loadmat(mat_path)['motion_database'] file_nums = mat_data.shape[1] motion_data_all = {} for f_id in range(file_nums): motion_data = {} motion_data['style'] = mat_data[0, f_id][0][0] motion_data['motion_type'] = mat_data[0, f_id][1][0] full_path = mat_data[0, f_id][2][0, 0][0][0] file_name = full_path.split('\\')[-1] frame_nums = mat_data[0, f_id][2].shape[1] root_pos = np.zeros((frame_nums, 3)) joint_nums = mat_data[0, f_id][2][0, 0][2].shape[0] motion_data['joint_nums'] = joint_nums joint_quarternions = np.zeros((frame_nums, joint_nums, 4)) for i in range(frame_nums): root_pos[i, :] = mat_data[0, f_id][2][0, i][1] joint_quarternions[i, :, :] = mat_data[0, f_id][2][0, i][2] motion_data['root_position'] = root_pos motion_data['joint_quarternions'] = joint_quarternions motion_data['foot_contact'] = mat_data[0, f_id][3][0] with open(os.path.join(out, os.path.splitext(file_name)[0] + '.pkl' ), 'wb') as f: pickle.dump(motion_data, f) motion_data_all[file_name] = motion_data return motion_data_all def load_skeleton(mat_path): mat_data = scipy.io.loadmat(mat_path)['skel'][0, 0] skeleton = OrderedDict() bone_names = mat_data[1].tolist() for i, bone in enumerate(bone_names): bone = bone.strip() if bone == 'Site': bone = bone_names[i - 1].strip() + bone skeleton[bone] = {'offset': [], 'parent': [], 'children': []} parent_ids = mat_data[2][0] offsets = mat_data[3] for i, bone in enumerate(skeleton.keys()): if bone != 'root': parent = list(skeleton.keys())[parent_ids[i] - 1] skeleton[bone]['parent'] = parent skeleton[parent]['children'].append(bone) skeleton[bone]['offset'] = offsets[i, :] return skeleton def construct_hierarchy(skeleton): hierarchy = ['HIERARCHY\r\n'] level = 0 for i, bone in enumerate(skeleton.keys()): if bone == 'root': skeleton[bone]['level'] = 0 else: parent = skeleton[bone]['parent'] skeleton[bone]['level'] = skeleton[parent]['level'] + 1 for i, bone in enumerate(skeleton.keys()): offset = skeleton[bone]['offset'] if bone == 'root': hierarchy.append('ROOT root\r\n') hierarchy.append('{\r\n') hierarchy.append('\tOFFSET {0:.05f} {1:.05f} {2:.05f}\r\n'. format(offset[0], offset[1], offset[2])) hierarchy.append( '\tCHANNELS 6 Xposition Yposition Zposition Zrotation Yrotation Xrotation\r\n' ) elif bone.endswith('Site'): parent = skeleton[bone]['parent'] level = skeleton[bone]['level'] tabs = '\t' * level hierarchy.append(tabs + 'End Site\r\n') hierarchy.append(tabs + '{\r\n') hierarchy.append(tabs + '\tOFFSET {0:.05f} {1:.05f} {2:.05f}\r\n'.format(offset[0], offset[1], offset[2])) hierarchy.append(tabs + '}\r\n') if i == len(skeleton.keys()) - 1: while level > 0: level -= 1 hierarchy.append('\t' * level + '}\r\n') else: for _ in range(level - skeleton[list(skeleton.keys())[i + 1 ]]['level']): level -= 1 hierarchy.append('\t' * level + '}\r\n') else: parent = skeleton[bone]['parent'] level = skeleton[bone]['level'] tabs = '\t' * level hierarchy.append(tabs + 'JOINT {0}'.format(bone) + '\r\n') hierarchy.append(tabs + '{\r\n') hierarchy.append(tabs + '\tOFFSET {0:.05f} {1:.05f} {2:.05f}\r\n'.format(offset[0], offset[1], offset[2])) hierarchy.append(tabs + '\tCHANNELS 3 Zrotation Yrotation Xrotation\r\n') return hierarchy def write_bvh(skeleton, hierarchy, motion_data_all, out): for file_name, motion_data in motion_data_all.items(): joint_quarternions = motion_data['joint_quarternions'] root_pos = motion_data['root_position'] frames = [] for i in range(joint_quarternions.shape[0]): root_pos_i = root_pos[i] frame = '{0:.05f} {1:.05f} {2:.05f} '.format(*root_pos_i.tolist()) for j in range(joint_quarternions.shape[1]): if list(skeleton.keys())[j].endswith('Site'): continue R_ij = quaternion_to_rotation_mat(joint_quarternions[i, j, 3], joint_quarternions[i, j, 2], joint_quarternions[i, j, 1], joint_quarternions[i, j, 0]) euler_ij = rotation_mat_to_euler(R_ij) frame += '{0:.05f} {1:.05f} {2:.05f} '.format(*list(map(lambda s: s * (180.0 / math.pi), euler_ij.tolist()))) frame += '\r\n' frames.append(frame) with open(os.path.join(out, file_name), 'w') as f: f.writelines(hierarchy) f.write('MOTION\r\n') frames[0] = 'Frames: {0}\r\nFrame Time: 0.0083333\r\n'.format( joint_quarternions.shape[0]) + frames[0] f.writelines(frames) print(os.path.join(out, file_name)) def main(): parser = argparse.ArgumentParser() parser.add_argument('out', type=str) args = parser.parse_args() out = args.out motion_data_all = load_motion( '../../motiongan/data/style-dataset/style_motion_database.mat', out) skeleton = load_skeleton('../../motiongan/data/style-dataset/skeleton.mat') hierarchy = construct_hierarchy(skeleton) write_bvh(skeleton, hierarchy, motion_data_all, out) if __name__ == '__main__': main()
import os import sys sys.path.append(os.path.join(os.path.dirname(__file__), '..')) import argparse import math import numpy as np from collections import OrderedDict import scipy.io import pickle from core.utils.euler_to_quaternion import quaternion_to_rotation_mat, rotation_mat_to_euler def load_motion(mat_path, out): mat_data = scipy.io.loadmat(mat_path)['motion_database'] file_nums = mat_data.shape[1] motion_data_all = {} for f_id in range(file_nums): motion_data = {} motion_data['style'] = mat_data[0, f_id][0][0] motion_data['motion_type'] = mat_data[0, f_id][1][0] full_path = mat_data[0, f_id][2][0, 0][0][0] file_name = full_path.split('\\')[-1] frame_nums = mat_data[0, f_id][2].shape[1] root_pos = np.zeros((frame_nums, 3)) joint_nums = mat_data[0, f_id][2][0, 0][2].shape[0] motion_data['joint_nums'] = joint_nums joint_quarternions = np.zeros((frame_nums, joint_nums, 4)) for i in range(frame_nums): root_pos[i, :] = mat_data[0, f_id][2][0, i][1] joint_quarternions[i, :, :] = mat_data[0, f_id][2][0, i][2] motion_data['root_position'] = root_pos motion_data['joint_quarternions'] = joint_quarternions motion_data['foot_contact'] = mat_data[0, f_id][3][0] with open(os.path.join(out, os.path.splitext(file_name)[0] + '.pkl' ), 'wb') as f: pickle.dump(motion_data, f) motion_data_all[file_name] = motion_data return motion_data_all def load_skeleton(mat_path): mat_data = scipy.io.loadmat(mat_path)['skel'][0, 0] skeleton = OrderedDict() bone_names = mat_data[1].tolist() for i, bone in enumerate(bone_names): bone = bone.strip() if bone == 'Site': bone = bone_names[i - 1].strip() + bone skeleton[bone] = {'offset': [], 'parent': [], 'children': []} parent_ids = mat_data[2][0] offsets = mat_data[3] for i, bone in enumerate(skeleton.keys()): if bone != 'root': parent = list(skeleton.keys())[parent_ids[i] - 1] skeleton[bone]['parent'] = parent skeleton[parent]['children'].append(bone) skeleton[bone]['offset'] = offsets[i, :] return skeleton def construct_hierarchy(skeleton): hierarchy = ['HIERARCHY\r\n'] level = 0 for i, bone in enumerate(skeleton.keys()): if bone == 'root': skeleton[bone]['level'] = 0 else: parent = skeleton[bone]['parent'] skeleton[bone]['level'] = skeleton[parent]['level'] + 1 for i, bone in enumerate(skeleton.keys()): offset = skeleton[bone]['offset'] if bone == 'root': hierarchy.append('ROOT root\r\n') hierarchy.append('{\r\n') hierarchy.append('\tOFFSET {0:.05f} {1:.05f} {2:.05f}\r\n'. format(offset[0], offset[1], offset[2])) hierarchy.append( '\tCHANNELS 6 Xposition Yposition Zposition Zrotation Yrotation Xrotation\r\n' ) elif bone.endswith('Site'): parent = skeleton[bone]['parent'] level = skeleton[bone]['level'] tabs = '\t' * level hierarchy.append(tabs + 'End Site\r\n') hierarchy.append(tabs + '{\r\n') hierarchy.append(tabs + '\tOFFSET {0:.05f} {1:.05f} {2:.05f}\r\n'.format(offset[0], offset[1], offset[2])) hierarchy.append(tabs + '}\r\n') if i == len(skeleton.keys()) - 1: while level > 0: level -= 1 hierarchy.append('\t' * level + '}\r\n') else: for _ in range(level - skeleton[list(skeleton.keys())[i + 1 ]]['level']): level -= 1 hierarchy.append('\t' * level + '}\r\n') else: parent = skeleton[bone]['parent'] level = skeleton[bone]['level'] tabs = '\t' * level hierarchy.append(tabs + 'JOINT {0}'.format(bone) + '\r\n') hierarchy.append(tabs + '{\r\n') hierarchy.append(tabs + '\tOFFSET {0:.05f} {1:.05f} {2:.05f}\r\n'.format(offset[0], offset[1], offset[2])) hierarchy.append(tabs + '\tCHANNELS 3 Zrotation Yrotation Xrotation\r\n') return hierarchy def write_bvh(skeleton, hierarchy, motion_data_all, out): for file_name, motion_data in motion_data_all.items(): joint_quarternions = motion_data['joint_quarternions'] root_pos = motion_data['root_position'] frames = [] for i in range(joint_quarternions.shape[0]): root_pos_i = root_pos[i] frame = '{0:.05f} {1:.05f} {2:.05f} '.format(*root_pos_i.tolist()) for j in range(joint_quarternions.shape[1]): if list(skeleton.keys())[j].endswith('Site'): continue R_ij = quaternion_to_rotation_mat(joint_quarternions[i, j, 3], joint_quarternions[i, j, 2], joint_quarternions[i, j, 1], joint_quarternions[i, j, 0]) euler_ij = rotation_mat_to_euler(R_ij) frame += '{0:.05f} {1:.05f} {2:.05f} '.format(*list(map(lambda s: s * (180.0 / math.pi), euler_ij.tolist()))) frame += '\r\n' frames.append(frame) with open(os.path.join(out, file_name), 'w') as f: f.writelines(hierarchy) f.write('MOTION\r\n') frames[0] = 'Frames: {0}\r\nFrame Time: 0.0083333\r\n'.format( joint_quarternions.shape[0]) + frames[0] f.writelines(frames) print(os.path.join(out, file_name)) def main(): parser = argparse.ArgumentParser() parser.add_argument('out', type=str) args = parser.parse_args() out = args.out motion_data_all = load_motion( '../../motiongan/data/style-dataset/style_motion_database.mat', out) skeleton = load_skeleton('../../motiongan/data/style-dataset/skeleton.mat') hierarchy = construct_hierarchy(skeleton) write_bvh(skeleton, hierarchy, motion_data_all, out) if __name__ == '__main__': main()
### Script to convert matlab structure file (/motiongan/data/style-dataset/style_motion_database.mat') import os import sys sys.path.append(os.path.join(os.path.dirname(__file__), '..')) import argparse import math import numpy as np from collections import OrderedDict import scipy.io import pickle from core.utils.euler_to_quaternion import quaternion_to_rotation_mat, rotation_mat_to_euler ## Load motion data from .mat file def load_motion(mat_path, out): mat_data = scipy.io.loadmat(mat_path)['motion_database'] file_nums = mat_data.shape[1] motion_data_all = {} for f_id in range(file_nums): motion_data = {} # Get style and motion content motion_data['style'] = mat_data[0,f_id][0][0] motion_data['motion_type'] = mat_data[0,f_id][1][0] # Get file name full_path = mat_data[0,f_id][2][0,0][0][0] file_name = full_path.split('\\')[-1] # Get joint parameters frame_nums = mat_data[0,f_id][2].shape[1] root_pos = np.zeros((frame_nums,3)) joint_nums = mat_data[0,f_id][2][0,0][2].shape[0] motion_data['joint_nums'] = joint_nums joint_quarternions = np.zeros((frame_nums, joint_nums, 4)) for i in range(frame_nums): root_pos[i,:] = mat_data[0,f_id][2][0,i][1] joint_quarternions[i,:,:] = mat_data[0,f_id][2][0,i][2] motion_data['root_position'] = root_pos motion_data['joint_quarternions'] = joint_quarternions # Get foot contact annotation motion_data['foot_contact'] = mat_data[0,f_id][3][0] # Save file as pickle with open(os.path.join(out, os.path.splitext(file_name)[0]+'.pkl'), 'wb') as f: pickle.dump(motion_data, f) motion_data_all[file_name] = motion_data return motion_data_all ## Load skeleton data from .mat file def load_skeleton(mat_path): mat_data = scipy.io.loadmat(mat_path)['skel'][0,0] # Init skeleton skeleton = OrderedDict() bone_names = mat_data[1].tolist() for i, bone in enumerate(bone_names): bone = bone.strip() if bone == 'Site': bone = bone_names[i-1].strip() + bone skeleton[bone] = {'offset':[], 'parent':[], 'children':[]} # Resister bone parent and children, offset parent_ids = mat_data[2][0] offsets = mat_data[3] for i, bone in enumerate(skeleton.keys()): if bone != 'root': parent = list(skeleton.keys())[parent_ids[i]-1] skeleton[bone]['parent'] = parent skeleton[parent]['children'].append(bone) skeleton[bone]['offset'] = offsets[i,:] return skeleton ## Construct hierarchy of skeleton for bvh def construct_hierarchy(skeleton): hierarchy = ['HIERARCHY\r\n'] # Calc tree level level = 0 for i, bone in enumerate(skeleton.keys()): if bone == 'root': skeleton[bone]['level'] = 0 else: parent = skeleton[bone]['parent'] skeleton[bone]['level'] = skeleton[parent]['level'] + 1 # Write hierarchy for i, bone in enumerate(skeleton.keys()): offset = skeleton[bone]['offset'] if bone == 'root': hierarchy.append('ROOT root\r\n') hierarchy.append('{\r\n') hierarchy.append('\tOFFSET {0:.05f} {1:.05f} {2:.05f}\r\n'.format(offset[0],offset[1],offset[2])) hierarchy.append('\tCHANNELS 6 Xposition Yposition Zposition Zrotation Yrotation Xrotation\r\n') elif bone.endswith('Site'): parent = skeleton[bone]['parent'] level = skeleton[bone]['level'] tabs = '\t' * level hierarchy.append(tabs + 'End Site\r\n') hierarchy.append(tabs + '{\r\n') hierarchy.append(tabs + '\tOFFSET {0:.05f} {1:.05f} {2:.05f}\r\n'.format(offset[0],offset[1],offset[2])) hierarchy.append(tabs + '}\r\n') # Put end brancket if i == len(skeleton.keys())-1: while level > 0: level -= 1 hierarchy.append('\t' * level + '}\r\n') else: for _ in range(level - skeleton[list(skeleton.keys())[i+1]]['level']): level -= 1 hierarchy.append('\t' * level + '}\r\n') else: parent = skeleton[bone]['parent'] level = skeleton[bone]['level'] tabs = '\t'*level hierarchy.append(tabs + 'JOINT {0}'.format(bone) + '\r\n') hierarchy.append(tabs + '{\r\n') hierarchy.append(tabs + '\tOFFSET {0:.05f} {1:.05f} {2:.05f}\r\n'.format(offset[0],offset[1],offset[2])) hierarchy.append(tabs + '\tCHANNELS 3 Zrotation Yrotation Xrotation\r\n') #with open('hierarchy_test.txt', 'w') as f: # f.writelines(hierarchy) return hierarchy # Write .bvh file def write_bvh(skeleton, hierarchy, motion_data_all, out): for file_name, motion_data in motion_data_all.items(): joint_quarternions = motion_data['joint_quarternions'] root_pos = motion_data['root_position'] # Convert data to list of string frames = [] for i in range(joint_quarternions.shape[0]): # Root pos root_pos_i = root_pos[i] frame = '{0:.05f} {1:.05f} {2:.05f} '.format(*root_pos_i.tolist()) for j in range(joint_quarternions.shape[1]): # If Endsite, skip if list(skeleton.keys())[j].endswith('Site'): continue ## This implementation is modified to quarternion with 'xyzw' order R_ij = quaternion_to_rotation_mat(joint_quarternions[i,j,3], joint_quarternions[i,j,2], joint_quarternions[i,j,1], joint_quarternions[i,j,0]) euler_ij = rotation_mat_to_euler(R_ij) frame += '{0:.05f} {1:.05f} {2:.05f} '.format(*list(map(lambda s: s * (180.0/math.pi), euler_ij.tolist()))) frame += '\r\n' frames.append(frame) # Write with open(os.path.join(out, file_name), 'w') as f: f.writelines(hierarchy) f.write('MOTION\r\n') frames[0] = 'Frames: {0}\r\nFrame Time: 0.0083333\r\n'.format(joint_quarternions.shape[0]) + frames[0] f.writelines(frames) print(os.path.join(out, file_name)) def main(): parser = argparse.ArgumentParser() parser.add_argument('out', type=str) args = parser.parse_args() out = args.out motion_data_all = load_motion('../../motiongan/data/style-dataset/style_motion_database.mat', out) skeleton = load_skeleton('../../motiongan/data/style-dataset/skeleton.mat') hierarchy = construct_hierarchy(skeleton) write_bvh(skeleton, hierarchy, motion_data_all, out) if __name__ == '__main__': main()
[ 3, 5, 6, 7, 8 ]
1,728
3be3edbecfbb602d4c4a853f006a3a6f4b992fd3
from base.SpellingDictionary import SpellingDictionary from datastructure.trie import NeedMore class WordFinder: def __init__(self): self.spellingDictionary = SpellingDictionary() #self.dictionary.add(["toad", "to", "do", "dot"]) self.spellingDictionary.populateDictionary() print"Done building dictionary" def findWords(self, stem, unusedLetters): words = [] # children = self.spellingDictionary.dictionary.children(stem) # nextLetters = children.keys(); print "stem = ", stem, " unused letters = ", unusedLetters #apparent children/keys is worthless and only gets immediate children with results ie dict.children('to') #doesn't give us the 'a' becuase 'toa' isn't a word for nextLetter in unusedLetters: #is stem+nextLetter a word? try: newWord = self.spellingDictionary.dictionary[stem + nextLetter] words.append(newWord) except KeyError: #nop print() except NeedMore: #nop print() #brute force! #create new stem, remove letter from unused letter, infinite recursion! newUnusedLetters = list(unusedLetters) newUnusedLetters.remove(nextLetter) newStem = stem + nextLetter if newUnusedLetters != None: #recursion! print "recursion" words.extend(self.findWords(newStem, newUnusedLetters)) return words; def execute(self, tiles): wordList = [] print "tiles = ", tiles for letter in tiles: unusedLetters = list(tiles) unusedLetters.remove(letter) print"calling findWords with ", letter, " ", unusedLetters foundWords = self.findWords(letter, unusedLetters) wordList.extend(foundWords) return wordList def testToad(): wordFinder = WordFinder() words = wordFinder.execute(["t", "o", "a", "d"]) print "words: " for word in words: print word def testLettersT(): wordFinder = WordFinder() words = wordFinder.findWords('t', ['o','a','d']) print "words: " for word in words: print word def printTOAD(): wordFinder = WordFinder() print wordFinder.spellingDictionary.dictionary['t'] print wordFinder.spellingDictionary.dictionary['to'] print wordFinder.spellingDictionary.dictionary['toa'] print wordFinder.spellingDictionary.dictionary['toad'] def printTOADChildren(): wordFinder = WordFinder() print wordFinder.spellingDictionary.dictionary.children('t') print wordFinder.spellingDictionary.dictionary.children('to') print wordFinder.spellingDictionary.dictionary.children('toa') print wordFinder.spellingDictionary.dictionary.children('toad') #testToad()
null
null
null
null
[ 0 ]
1,729
809c9ce2b017612bedd1eb889c2b017275ee8b6f
<mask token>
<mask token> cv2.imshow('Original', img) cv2.imshow('Contorno', contorno) cv2.waitKey() cv2.destroyAllWindows()
<mask token> img = cv2.imread('data/j.png', cv2.IMREAD_GRAYSCALE) kernel = cv2.getStructuringElement(cv2.MORPH_CROSS, (7, 7)) erode = cv2.erode(img, kernel) contorno = img - erode cv2.imshow('Original', img) cv2.imshow('Contorno', contorno) cv2.waitKey() cv2.destroyAllWindows()
import cv2 import numpy as np img = cv2.imread('data/j.png', cv2.IMREAD_GRAYSCALE) kernel = cv2.getStructuringElement(cv2.MORPH_CROSS, (7, 7)) erode = cv2.erode(img, kernel) contorno = img - erode cv2.imshow('Original', img) cv2.imshow('Contorno', contorno) cv2.waitKey() cv2.destroyAllWindows()
null
[ 0, 1, 2, 3 ]
1,730
1cf573863fca660cc1fec71ab64743e7a2dd74d8
<mask token> def to_absolute_path(filepath): filepath = os.path.expanduser(filepath) return os.path.abspath(filepath) def is_valid_path(path): abs_path = to_absolute_path(path) if os.path.exists(abs_path) and os.path.isdir(abs_path): return True else: return False <mask token>
<mask token> def to_absolute_path(filepath): filepath = os.path.expanduser(filepath) return os.path.abspath(filepath) def is_valid_path(path): abs_path = to_absolute_path(path) if os.path.exists(abs_path) and os.path.isdir(abs_path): return True else: return False <mask token> if query != '' and is_valid_path(new_path): wf.setItem(title=f'Path exists, add as {path_to_ask} path?', subtitle= new_path, arg=f'{new_path}|add') elif query.startswith('/') or query.startswith('~'): wf.setItem(title='Path does not exists, create?', subtitle=new_path, arg=f'{new_path}|create') else: wf.setItem(title=f'Enter {path_to_ask} path', subtitle= 'Type a directory path starting with / or ~', valid=False) wf.addItem() wf.write()
<mask token> def to_absolute_path(filepath): filepath = os.path.expanduser(filepath) return os.path.abspath(filepath) def is_valid_path(path): abs_path = to_absolute_path(path) if os.path.exists(abs_path) and os.path.isdir(abs_path): return True else: return False env_source = Tools.getEnv('source') env_target = Tools.getEnv('target') query = Tools.getArgv(1) path_to_ask = 'source' if env_source == '' else 'target' new_path = to_absolute_path(query) wf = Items() if query != '' and is_valid_path(new_path): wf.setItem(title=f'Path exists, add as {path_to_ask} path?', subtitle= new_path, arg=f'{new_path}|add') elif query.startswith('/') or query.startswith('~'): wf.setItem(title='Path does not exists, create?', subtitle=new_path, arg=f'{new_path}|create') else: wf.setItem(title=f'Enter {path_to_ask} path', subtitle= 'Type a directory path starting with / or ~', valid=False) wf.addItem() wf.write()
import os from Alfred3 import Items, Tools def to_absolute_path(filepath): filepath = os.path.expanduser(filepath) return os.path.abspath(filepath) def is_valid_path(path): abs_path = to_absolute_path(path) if os.path.exists(abs_path) and os.path.isdir(abs_path): return True else: return False env_source = Tools.getEnv('source') env_target = Tools.getEnv('target') query = Tools.getArgv(1) path_to_ask = 'source' if env_source == '' else 'target' new_path = to_absolute_path(query) wf = Items() if query != '' and is_valid_path(new_path): wf.setItem(title=f'Path exists, add as {path_to_ask} path?', subtitle= new_path, arg=f'{new_path}|add') elif query.startswith('/') or query.startswith('~'): wf.setItem(title='Path does not exists, create?', subtitle=new_path, arg=f'{new_path}|create') else: wf.setItem(title=f'Enter {path_to_ask} path', subtitle= 'Type a directory path starting with / or ~', valid=False) wf.addItem() wf.write()
#!/usr/bin/env python3 import os from Alfred3 import Items, Tools def to_absolute_path(filepath): filepath = os.path.expanduser(filepath) return os.path.abspath(filepath) def is_valid_path(path): abs_path = to_absolute_path(path) if os.path.exists(abs_path) and os.path.isdir(abs_path): return True else: return False env_source = Tools.getEnv("source") env_target = Tools.getEnv("target") query = Tools.getArgv(1) path_to_ask = "source" if env_source == "" else "target" new_path = to_absolute_path(query) wf = Items() if query != "" and is_valid_path(new_path): wf.setItem( title=f"Path exists, add as {path_to_ask} path?", subtitle=new_path, arg=f"{new_path}|add" ) elif query.startswith("/") or query.startswith("~"): wf.setItem( title="Path does not exists, create?", subtitle=new_path, arg=f"{new_path}|create" ) else: wf.setItem( title=f"Enter {path_to_ask} path", subtitle="Type a directory path starting with / or ~", valid=False ) wf.addItem() wf.write()
[ 2, 3, 4, 5, 6 ]
1,731
d6b49533573dfefba6286ac2bffc2bd7a4075063
<mask token>
<mask token> cursor.execute('INSERT INTO users VALUES(?,?,?)', (1, 'ilia', 'qwerty')) <mask token> cursor.executemany('INSERT INTO users VALUES(?,?,?)', users) for row in cursor.execute('SELECT * FROM users'): print(row) connection.commit() connection.close()
<mask token> connection = sqlite3.connect('database.db') cursor = connection.cursor() cursor.execute('INSERT INTO users VALUES(?,?,?)', (1, 'ilia', 'qwerty')) users = [(2, 'nika', 'asdf'), (3, 'nino', 'sdfg')] cursor.executemany('INSERT INTO users VALUES(?,?,?)', users) for row in cursor.execute('SELECT * FROM users'): print(row) connection.commit() connection.close()
import sqlite3 connection = sqlite3.connect('database.db') cursor = connection.cursor() cursor.execute('INSERT INTO users VALUES(?,?,?)', (1, 'ilia', 'qwerty')) users = [(2, 'nika', 'asdf'), (3, 'nino', 'sdfg')] cursor.executemany('INSERT INTO users VALUES(?,?,?)', users) for row in cursor.execute('SELECT * FROM users'): print(row) connection.commit() connection.close()
import sqlite3 connection = sqlite3.connect('database.db') cursor = connection.cursor() # cursor.execute('CREATE TABLE users (id int, username text, password text)') cursor.execute('INSERT INTO users VALUES(?,?,?)',(1,'ilia','qwerty')) users = [(2,'nika','asdf'),(3,'nino','sdfg')] cursor.executemany('INSERT INTO users VALUES(?,?,?)', users) for row in cursor.execute('SELECT * FROM users'): print(row) connection.commit() connection.close()
[ 0, 1, 2, 3, 4 ]
1,732
de0521db3909054c333ac3877ff0adf15ab180fb
<mask token> class CvPTestCase(unittest.TestCase): def onecompplayer_setup(self): game1 = TicTacToe.Game() computer1 = TicTacToe.Computer('X', game1) player2 = TicTacToe.Player('O', game1) return game1, computer1, player2 def test_place3(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): 'X', (2): 'X', (3): '-', (4): '-', (5): '-', (6): '-', (7): '-', (8): '-', (9): '-'} p2moves = [] winner = game1.play_comp_test(computer1, player2, p2moves) self.assertEqual(computer1, winner) self.assertEqual({(1): 'X', (2): 'X', (3): 'X', (4): '-', (5): '-', (6): '-', (7): '-', (8): '-', (9): '-'}, game1.game_board) def test_place2(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): '-', (5): 'X', (6): '-', (7): '-', (8): 'X', (9): '-'} p2moves = [] winner = game1.play_comp_test(computer1, player2, p2moves) self.assertEqual(computer1, winner) self.assertEqual({(1): '-', (2): 'X', (3): '-', (4): '-', (5): 'X', (6): '-', (7): '-', (8): 'X', (9): '-'}, game1.game_board) def test_place8(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): '-', (5): '-', (6): '-', (7): 'X', (8): '-', (9): 'X'} p2moves = [] winner = game1.play_comp_test(computer1, player2, p2moves) self.assertEqual(computer1, winner) self.assertEqual({(1): '-', (2): '-', (3): '-', (4): '-', (5): '-', (6): '-', (7): 'X', (8): 'X', (9): 'X'}, game1.game_board) def test_block5(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): 'O', (5): '-', (6): 'O', (7): '-', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): '-', (2): '-', (3): '-', (4): 'O', (5): 'X', (6): 'O', (7): '-', (8): '-', (9): '-'}, game1.game_board) def test_block7(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): 'O', (4): '-', (5): 'O', (6): '-', (7): '-', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): '-', (2): '-', (3): 'O', (4): '-', (5): 'O', (6): '-', (7): 'X', (8): '-', (9): '-'}, game1.game_board) def test_block3(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): '-', (5): '-', (6): 'O', (7): '-', (8): '-', (9): 'O'} computer1.auto_move() self.assertEqual({(1): '-', (2): '-', (3): 'X', (4): '-', (5): '-', (6): 'O', (7): '-', (8): '-', (9): 'O'}, game1.game_board) def test_center_empty(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): '-', (5): '-', (6): '-', (7): '-', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): '-', (2): '-', (3): '-', (4): '-', (5): 'X', (6): '-', (7): '-', (8): '-', (9): '-'}, game1.game_board) def test_center_nonempty(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): 'O', (2): '-', (3): '-', (4): 'X', (5): '-', (6): 'O', (7): 'X', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): 'O', (2): '-', (3): '-', (4): 'X', (5): 'X', (6): 'O', (7): 'X', (8): '-', (9): '-'}, game1.game_board) <mask token> def test_oppcorner1(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): 'O', (5): 'X', (6): 'X', (7): '-', (8): '-', (9): 'O'} computer1.auto_move() self.assertEqual({(1): 'X', (2): '-', (3): '-', (4): 'O', (5): 'X', (6): 'X', (7): '-', (8): '-', (9): 'O'}, game1.game_board) def test_oppcorner3(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): '-', (5): 'X', (6): '-', (7): 'O', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): '-', (2): '-', (3): 'X', (4): '-', (5): 'X', (6): '-', (7): 'O', (8): '-', (9): '-'}, game1.game_board) def test_oppcorner9(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): 'O', (2): '-', (3): '-', (4): '-', (5): 'X', (6): '-', (7): '-', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): 'O', (2): '-', (3): '-', (4): '-', (5): 'X', (6): '-', (7): '-', (8): '-', (9): 'X'}, game1.game_board) <mask token>
<mask token> class pVpTestCase(unittest.TestCase): <mask token> <mask token> <mask token> <mask token> class CvPTestCase(unittest.TestCase): def onecompplayer_setup(self): game1 = TicTacToe.Game() computer1 = TicTacToe.Computer('X', game1) player2 = TicTacToe.Player('O', game1) return game1, computer1, player2 def test_place3(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): 'X', (2): 'X', (3): '-', (4): '-', (5): '-', (6): '-', (7): '-', (8): '-', (9): '-'} p2moves = [] winner = game1.play_comp_test(computer1, player2, p2moves) self.assertEqual(computer1, winner) self.assertEqual({(1): 'X', (2): 'X', (3): 'X', (4): '-', (5): '-', (6): '-', (7): '-', (8): '-', (9): '-'}, game1.game_board) def test_place2(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): '-', (5): 'X', (6): '-', (7): '-', (8): 'X', (9): '-'} p2moves = [] winner = game1.play_comp_test(computer1, player2, p2moves) self.assertEqual(computer1, winner) self.assertEqual({(1): '-', (2): 'X', (3): '-', (4): '-', (5): 'X', (6): '-', (7): '-', (8): 'X', (9): '-'}, game1.game_board) def test_place8(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): '-', (5): '-', (6): '-', (7): 'X', (8): '-', (9): 'X'} p2moves = [] winner = game1.play_comp_test(computer1, player2, p2moves) self.assertEqual(computer1, winner) self.assertEqual({(1): '-', (2): '-', (3): '-', (4): '-', (5): '-', (6): '-', (7): 'X', (8): 'X', (9): 'X'}, game1.game_board) def test_block5(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): 'O', (5): '-', (6): 'O', (7): '-', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): '-', (2): '-', (3): '-', (4): 'O', (5): 'X', (6): 'O', (7): '-', (8): '-', (9): '-'}, game1.game_board) def test_block7(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): 'O', (4): '-', (5): 'O', (6): '-', (7): '-', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): '-', (2): '-', (3): 'O', (4): '-', (5): 'O', (6): '-', (7): 'X', (8): '-', (9): '-'}, game1.game_board) def test_block3(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): '-', (5): '-', (6): 'O', (7): '-', (8): '-', (9): 'O'} computer1.auto_move() self.assertEqual({(1): '-', (2): '-', (3): 'X', (4): '-', (5): '-', (6): 'O', (7): '-', (8): '-', (9): 'O'}, game1.game_board) def test_center_empty(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): '-', (5): '-', (6): '-', (7): '-', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): '-', (2): '-', (3): '-', (4): '-', (5): 'X', (6): '-', (7): '-', (8): '-', (9): '-'}, game1.game_board) def test_center_nonempty(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): 'O', (2): '-', (3): '-', (4): 'X', (5): '-', (6): 'O', (7): 'X', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): 'O', (2): '-', (3): '-', (4): 'X', (5): 'X', (6): 'O', (7): 'X', (8): '-', (9): '-'}, game1.game_board) def test_oppcorner7(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): 'O', (4): '-', (5): 'X', (6): '-', (7): '-', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): '-', (2): '-', (3): 'O', (4): '-', (5): 'X', (6): '-', (7): 'X', (8): '-', (9): '-'}, game1.game_board) def test_oppcorner1(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): 'O', (5): 'X', (6): 'X', (7): '-', (8): '-', (9): 'O'} computer1.auto_move() self.assertEqual({(1): 'X', (2): '-', (3): '-', (4): 'O', (5): 'X', (6): 'X', (7): '-', (8): '-', (9): 'O'}, game1.game_board) def test_oppcorner3(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): '-', (5): 'X', (6): '-', (7): 'O', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): '-', (2): '-', (3): 'X', (4): '-', (5): 'X', (6): '-', (7): 'O', (8): '-', (9): '-'}, game1.game_board) def test_oppcorner9(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): 'O', (2): '-', (3): '-', (4): '-', (5): 'X', (6): '-', (7): '-', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): 'O', (2): '-', (3): '-', (4): '-', (5): 'X', (6): '-', (7): '-', (8): '-', (9): 'X'}, game1.game_board) <mask token>
<mask token> class pVpTestCase(unittest.TestCase): <mask token> def test_mock_game1(self): game1, player1, player2 = self.twoplayer_setup() p1moves = ['top left', 'middle', 'bottom right'] p2moves = ['top middle', 'bottom left', 'top right'] winner = game1.play_test(player1, player2, p1moves, p2moves) self.assertEqual(player1, winner) def test_mock_game2(self): game1, player1, player2 = self.twoplayer_setup() p1moves = ['top right', 'middle', 'bottom right'] p2moves = ['top left', 'middle left', 'bottom left'] winner = game1.play_test(player1, player2, p1moves, p2moves) self.assertEqual(player2, winner) <mask token> class CvPTestCase(unittest.TestCase): def onecompplayer_setup(self): game1 = TicTacToe.Game() computer1 = TicTacToe.Computer('X', game1) player2 = TicTacToe.Player('O', game1) return game1, computer1, player2 def test_place3(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): 'X', (2): 'X', (3): '-', (4): '-', (5): '-', (6): '-', (7): '-', (8): '-', (9): '-'} p2moves = [] winner = game1.play_comp_test(computer1, player2, p2moves) self.assertEqual(computer1, winner) self.assertEqual({(1): 'X', (2): 'X', (3): 'X', (4): '-', (5): '-', (6): '-', (7): '-', (8): '-', (9): '-'}, game1.game_board) def test_place2(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): '-', (5): 'X', (6): '-', (7): '-', (8): 'X', (9): '-'} p2moves = [] winner = game1.play_comp_test(computer1, player2, p2moves) self.assertEqual(computer1, winner) self.assertEqual({(1): '-', (2): 'X', (3): '-', (4): '-', (5): 'X', (6): '-', (7): '-', (8): 'X', (9): '-'}, game1.game_board) def test_place8(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): '-', (5): '-', (6): '-', (7): 'X', (8): '-', (9): 'X'} p2moves = [] winner = game1.play_comp_test(computer1, player2, p2moves) self.assertEqual(computer1, winner) self.assertEqual({(1): '-', (2): '-', (3): '-', (4): '-', (5): '-', (6): '-', (7): 'X', (8): 'X', (9): 'X'}, game1.game_board) def test_block5(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): 'O', (5): '-', (6): 'O', (7): '-', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): '-', (2): '-', (3): '-', (4): 'O', (5): 'X', (6): 'O', (7): '-', (8): '-', (9): '-'}, game1.game_board) def test_block7(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): 'O', (4): '-', (5): 'O', (6): '-', (7): '-', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): '-', (2): '-', (3): 'O', (4): '-', (5): 'O', (6): '-', (7): 'X', (8): '-', (9): '-'}, game1.game_board) def test_block3(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): '-', (5): '-', (6): 'O', (7): '-', (8): '-', (9): 'O'} computer1.auto_move() self.assertEqual({(1): '-', (2): '-', (3): 'X', (4): '-', (5): '-', (6): 'O', (7): '-', (8): '-', (9): 'O'}, game1.game_board) def test_center_empty(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): '-', (5): '-', (6): '-', (7): '-', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): '-', (2): '-', (3): '-', (4): '-', (5): 'X', (6): '-', (7): '-', (8): '-', (9): '-'}, game1.game_board) def test_center_nonempty(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): 'O', (2): '-', (3): '-', (4): 'X', (5): '-', (6): 'O', (7): 'X', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): 'O', (2): '-', (3): '-', (4): 'X', (5): 'X', (6): 'O', (7): 'X', (8): '-', (9): '-'}, game1.game_board) def test_oppcorner7(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): 'O', (4): '-', (5): 'X', (6): '-', (7): '-', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): '-', (2): '-', (3): 'O', (4): '-', (5): 'X', (6): '-', (7): 'X', (8): '-', (9): '-'}, game1.game_board) def test_oppcorner1(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): 'O', (5): 'X', (6): 'X', (7): '-', (8): '-', (9): 'O'} computer1.auto_move() self.assertEqual({(1): 'X', (2): '-', (3): '-', (4): 'O', (5): 'X', (6): 'X', (7): '-', (8): '-', (9): 'O'}, game1.game_board) def test_oppcorner3(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): '-', (5): 'X', (6): '-', (7): 'O', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): '-', (2): '-', (3): 'X', (4): '-', (5): 'X', (6): '-', (7): 'O', (8): '-', (9): '-'}, game1.game_board) def test_oppcorner9(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): 'O', (2): '-', (3): '-', (4): '-', (5): 'X', (6): '-', (7): '-', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): 'O', (2): '-', (3): '-', (4): '-', (5): 'X', (6): '-', (7): '-', (8): '-', (9): 'X'}, game1.game_board) <mask token>
<mask token> class pVpTestCase(unittest.TestCase): def twoplayer_setup(self): game1 = TicTacToe.Game() player1 = TicTacToe.Player('X', game1) player2 = TicTacToe.Player('O', game1) return game1, player1, player2 def test_mock_game1(self): game1, player1, player2 = self.twoplayer_setup() p1moves = ['top left', 'middle', 'bottom right'] p2moves = ['top middle', 'bottom left', 'top right'] winner = game1.play_test(player1, player2, p1moves, p2moves) self.assertEqual(player1, winner) def test_mock_game2(self): game1, player1, player2 = self.twoplayer_setup() p1moves = ['top right', 'middle', 'bottom right'] p2moves = ['top left', 'middle left', 'bottom left'] winner = game1.play_test(player1, player2, p1moves, p2moves) self.assertEqual(player2, winner) def test_mock_game3(self): game1, player1, player2 = self.twoplayer_setup() p1moves = ['top right', 'middle top', 'middle', 'bottom right', 'middle left'] p2moves = ['top left', 'middle right', 'bottom left', 'bottom middle'] winner = game1.play_test(player1, player2, p1moves, p2moves) self.assertEqual(None, winner) class CvPTestCase(unittest.TestCase): def onecompplayer_setup(self): game1 = TicTacToe.Game() computer1 = TicTacToe.Computer('X', game1) player2 = TicTacToe.Player('O', game1) return game1, computer1, player2 def test_place3(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): 'X', (2): 'X', (3): '-', (4): '-', (5): '-', (6): '-', (7): '-', (8): '-', (9): '-'} p2moves = [] winner = game1.play_comp_test(computer1, player2, p2moves) self.assertEqual(computer1, winner) self.assertEqual({(1): 'X', (2): 'X', (3): 'X', (4): '-', (5): '-', (6): '-', (7): '-', (8): '-', (9): '-'}, game1.game_board) def test_place2(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): '-', (5): 'X', (6): '-', (7): '-', (8): 'X', (9): '-'} p2moves = [] winner = game1.play_comp_test(computer1, player2, p2moves) self.assertEqual(computer1, winner) self.assertEqual({(1): '-', (2): 'X', (3): '-', (4): '-', (5): 'X', (6): '-', (7): '-', (8): 'X', (9): '-'}, game1.game_board) def test_place8(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): '-', (5): '-', (6): '-', (7): 'X', (8): '-', (9): 'X'} p2moves = [] winner = game1.play_comp_test(computer1, player2, p2moves) self.assertEqual(computer1, winner) self.assertEqual({(1): '-', (2): '-', (3): '-', (4): '-', (5): '-', (6): '-', (7): 'X', (8): 'X', (9): 'X'}, game1.game_board) def test_block5(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): 'O', (5): '-', (6): 'O', (7): '-', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): '-', (2): '-', (3): '-', (4): 'O', (5): 'X', (6): 'O', (7): '-', (8): '-', (9): '-'}, game1.game_board) def test_block7(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): 'O', (4): '-', (5): 'O', (6): '-', (7): '-', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): '-', (2): '-', (3): 'O', (4): '-', (5): 'O', (6): '-', (7): 'X', (8): '-', (9): '-'}, game1.game_board) def test_block3(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): '-', (5): '-', (6): 'O', (7): '-', (8): '-', (9): 'O'} computer1.auto_move() self.assertEqual({(1): '-', (2): '-', (3): 'X', (4): '-', (5): '-', (6): 'O', (7): '-', (8): '-', (9): 'O'}, game1.game_board) def test_center_empty(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): '-', (5): '-', (6): '-', (7): '-', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): '-', (2): '-', (3): '-', (4): '-', (5): 'X', (6): '-', (7): '-', (8): '-', (9): '-'}, game1.game_board) def test_center_nonempty(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): 'O', (2): '-', (3): '-', (4): 'X', (5): '-', (6): 'O', (7): 'X', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): 'O', (2): '-', (3): '-', (4): 'X', (5): 'X', (6): 'O', (7): 'X', (8): '-', (9): '-'}, game1.game_board) def test_oppcorner7(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): 'O', (4): '-', (5): 'X', (6): '-', (7): '-', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): '-', (2): '-', (3): 'O', (4): '-', (5): 'X', (6): '-', (7): 'X', (8): '-', (9): '-'}, game1.game_board) def test_oppcorner1(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): 'O', (5): 'X', (6): 'X', (7): '-', (8): '-', (9): 'O'} computer1.auto_move() self.assertEqual({(1): 'X', (2): '-', (3): '-', (4): 'O', (5): 'X', (6): 'X', (7): '-', (8): '-', (9): 'O'}, game1.game_board) def test_oppcorner3(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): '-', (2): '-', (3): '-', (4): '-', (5): 'X', (6): '-', (7): 'O', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): '-', (2): '-', (3): 'X', (4): '-', (5): 'X', (6): '-', (7): 'O', (8): '-', (9): '-'}, game1.game_board) def test_oppcorner9(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {(1): 'O', (2): '-', (3): '-', (4): '-', (5): 'X', (6): '-', (7): '-', (8): '-', (9): '-'} computer1.auto_move() self.assertEqual({(1): 'O', (2): '-', (3): '-', (4): '-', (5): 'X', (6): '-', (7): '-', (8): '-', (9): 'X'}, game1.game_board) if __name__ == '__main__': unittest.main()
import unittest import TicTacToe class pVpTestCase(unittest.TestCase): # def test_something(self): # self.assertEqual(True, False) def twoplayer_setup(self): game1 = TicTacToe.Game() player1 = TicTacToe.Player('X', game1) player2 = TicTacToe.Player('O', game1) return (game1, player1, player2) #Player 1 wins def test_mock_game1(self): game1, player1, player2 = self.twoplayer_setup() p1moves = ['top left', 'middle', 'bottom right'] p2moves = ['top middle', 'bottom left', 'top right'] winner = game1.play_test(player1, player2, p1moves, p2moves) self.assertEqual(player1, winner) #Player 2 wins def test_mock_game2(self): game1, player1, player2 = self.twoplayer_setup() p1moves = ['top right', 'middle', 'bottom right'] p2moves = ['top left', 'middle left', 'bottom left'] winner = game1.play_test(player1, player2, p1moves, p2moves) self.assertEqual(player2, winner) #Draw def test_mock_game3(self): game1, player1, player2 = self.twoplayer_setup() p1moves = ['top right', 'middle top', 'middle', 'bottom right', 'middle left'] p2moves = ['top left', 'middle right', 'bottom left', 'bottom middle'] winner = game1.play_test(player1, player2, p1moves, p2moves) self.assertEqual(None, winner) class CvPTestCase(unittest.TestCase): def onecompplayer_setup(self): game1 = TicTacToe.Game() computer1 = TicTacToe.Computer('X', game1) player2 = TicTacToe.Player('O', game1) return (game1, computer1, player2) def test_place3(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {1:"X", 2:"X",3:"-", 4:"-", 5:"-", 6:"-", 7:"-", 8:"-", 9:"-"} p2moves = [] winner = game1.play_comp_test(computer1, player2, p2moves) self.assertEqual(computer1, winner) self.assertEqual({1:"X", 2:"X",3:"X", 4:"-", 5:"-", 6:"-", 7:"-", 8:"-", 9:"-"}, game1.game_board ) def test_place2(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {1:"-", 2:"-",3:"-", 4:"-", 5:"X", 6:"-", 7:"-", 8:"X", 9:"-"} p2moves = [] winner = game1.play_comp_test(computer1, player2, p2moves) self.assertEqual(computer1, winner) self.assertEqual({1:"-", 2:"X",3:"-", 4:"-", 5:"X", 6:"-", 7:"-", 8:"X", 9:"-"}, game1.game_board ) def test_place8(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {1: "-", 2: "-", 3: "-", 4: "-", 5: "-", 6: "-", 7: "X", 8: "-", 9: "X"} p2moves = [] winner = game1.play_comp_test(computer1, player2, p2moves) self.assertEqual(computer1, winner) self.assertEqual({1: "-", 2: "-", 3: "-", 4: "-", 5: "-", 6: "-", 7: "X", 8: "X", 9: "X"}, game1.game_board ) def test_block5(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {1: "-", 2: "-", 3: "-", 4: "O", 5: "-", 6: "O", 7: "-", 8: "-", 9: "-"} computer1.auto_move() self.assertEqual({1: "-", 2: "-", 3: "-", 4: "O", 5: "X", 6: "O", 7: "-", 8: "-", 9: "-"}, game1.game_board ) def test_block7(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {1: "-", 2: "-", 3: "O", 4: "-", 5: "O", 6: "-", 7: "-", 8: "-", 9: "-"} computer1.auto_move() self.assertEqual({1: "-", 2: "-", 3: "O", 4: "-", 5: "O", 6: "-", 7: "X", 8: "-", 9: "-"}, game1.game_board ) def test_block3(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {1: "-", 2: "-", 3: "-", 4: "-", 5: "-", 6: "O", 7: "-", 8: "-", 9: "O"} computer1.auto_move() self.assertEqual({1: "-", 2: "-", 3: "X", 4: "-", 5: "-", 6: "O", 7: "-", 8: "-", 9: "O"}, game1.game_board ) def test_center_empty(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {1: "-", 2: "-", 3: "-", 4: "-", 5: "-", 6: "-", 7: "-", 8: "-", 9: "-"} computer1.auto_move() self.assertEqual({1: "-", 2: "-", 3: "-", 4: "-", 5: "X", 6: "-", 7: "-", 8: "-", 9: "-"}, game1.game_board ) def test_center_nonempty(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {1: "O", 2: "-", 3: "-", 4: "X", 5: "-", 6: "O", 7: "X", 8: "-", 9: "-"} computer1.auto_move() self.assertEqual({1: "O", 2: "-", 3: "-", 4: "X", 5: "X", 6: "O", 7: "X", 8: "-", 9: "-"}, game1.game_board ) def test_oppcorner7(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {1: "-", 2: "-", 3: "O", 4: "-", 5: "X", 6: "-", 7: "-", 8: "-", 9: "-"} computer1.auto_move() self.assertEqual({1: "-", 2: "-", 3: "O", 4: "-", 5: "X", 6: "-", 7: "X", 8: "-", 9: "-"}, game1.game_board ) def test_oppcorner1(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {1: "-", 2: "-", 3: "-", 4: "O", 5: "X", 6: "X", 7: "-", 8: "-", 9: "O"} computer1.auto_move() self.assertEqual({1: "X", 2: "-", 3: "-", 4: "O", 5: "X", 6: "X", 7: "-", 8: "-", 9: "O"}, game1.game_board ) def test_oppcorner3(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {1: "-", 2: "-", 3: "-", 4: "-", 5: "X", 6: "-", 7: "O", 8: "-", 9: "-"} computer1.auto_move() self.assertEqual({1: "-", 2: "-", 3: "X", 4: "-", 5: "X", 6: "-", 7: "O", 8: "-", 9: "-"}, game1.game_board ) def test_oppcorner9(self): game1, computer1, player2 = self.onecompplayer_setup() game1.game_board = {1: "O", 2: "-", 3: "-", 4: "-", 5: "X", 6: "-", 7: "-", 8: "-", 9: "-"} computer1.auto_move() self.assertEqual({1: "O", 2: "-", 3: "-", 4: "-", 5: "X", 6: "-", 7: "-", 8: "-", 9: "X"}, game1.game_board ) if __name__ == '__main__': unittest.main()
[ 13, 15, 17, 20, 22 ]
1,733
bf63ceca2347f750cdf38dce620eaa3c73b556f1
<mask token> class TestNukeBoxDB(unittest.TestCase): <mask token> def setUp(self): """ B{Test} Data - 2 User dict obj. - contains basic data required by the MongoDB collection "Users" - indexes exist on "mac_id" and "files" entries - user entries contain a "set" of File elements which reference the files (by obj id) that they have uploaded - 2 File dict obj. - contains basic data required for a File entry in the DB - indexes exist on "track id" """ self.user_1 = {'name': 'Terry', 'mac_id': '12341234'} self.user_2 = {'name': 'Eric', 'mac_id': '43211234'} self.file_1 = {'filetype': '.mp3', 'artist': 'Foals', 'path': 'temp_dir', 'track': 'Birch Tree', 'size': '10000', 'art': 'http://foals_art.jpeg'} self.file_2 = {'filetype': '.mp3', 'artist': 'Foals', 'path': 'temp_dir', 'track': 'What Went Down', 'size': '10000', 'art': 'http://foals_art.jpeg'} def tearDown(self): """ B{Teardown} Test Data - Deletes instance Data created in Setup """ for i in (self.file_1, self.file_2, self.user_1, self.user_2): del i def test_Ensure_Indexes(self): """ B{Test 01} Tests the DB method used to create the required indexes - ensureInexes returns a list of booleans - each item is True on success """ nbdb = NukeBoxDB(Debug=True) _a, _b, _c = nbdb.ensureIndexes() self.assertTrue(_a and _b and _c) nbdb = None <mask token> def test_Create_User_Files(self): """ B{Test 03} Tests File entry creation in th DB - createFile first tries to retrieve an existing entry, updating it if a match is found - the method then uses the current "mac_id" instance variable to retrieve the current user and updates their set of files """ nbdb = NukeBoxDB() user_2_result = nbdb.createUser(self.user_2) file_1_result = nbdb.createFile(self.file_1) file_2_result = nbdb.createFile(self.file_2) self.assertEquals(file_1_result, nbdb.getTrack(self.file_1['track'])[1] ) self.assertEquals(file_2_result, nbdb.getTrack(self.file_2['track'])[1] ) del user_2_result nbdb = None <mask token> <mask token> <mask token>
<mask token> class TestNukeBoxDB(unittest.TestCase): <mask token> def setUp(self): """ B{Test} Data - 2 User dict obj. - contains basic data required by the MongoDB collection "Users" - indexes exist on "mac_id" and "files" entries - user entries contain a "set" of File elements which reference the files (by obj id) that they have uploaded - 2 File dict obj. - contains basic data required for a File entry in the DB - indexes exist on "track id" """ self.user_1 = {'name': 'Terry', 'mac_id': '12341234'} self.user_2 = {'name': 'Eric', 'mac_id': '43211234'} self.file_1 = {'filetype': '.mp3', 'artist': 'Foals', 'path': 'temp_dir', 'track': 'Birch Tree', 'size': '10000', 'art': 'http://foals_art.jpeg'} self.file_2 = {'filetype': '.mp3', 'artist': 'Foals', 'path': 'temp_dir', 'track': 'What Went Down', 'size': '10000', 'art': 'http://foals_art.jpeg'} def tearDown(self): """ B{Teardown} Test Data - Deletes instance Data created in Setup """ for i in (self.file_1, self.file_2, self.user_1, self.user_2): del i def test_Ensure_Indexes(self): """ B{Test 01} Tests the DB method used to create the required indexes - ensureInexes returns a list of booleans - each item is True on success """ nbdb = NukeBoxDB(Debug=True) _a, _b, _c = nbdb.ensureIndexes() self.assertTrue(_a and _b and _c) nbdb = None <mask token> def test_Create_User_Files(self): """ B{Test 03} Tests File entry creation in th DB - createFile first tries to retrieve an existing entry, updating it if a match is found - the method then uses the current "mac_id" instance variable to retrieve the current user and updates their set of files """ nbdb = NukeBoxDB() user_2_result = nbdb.createUser(self.user_2) file_1_result = nbdb.createFile(self.file_1) file_2_result = nbdb.createFile(self.file_2) self.assertEquals(file_1_result, nbdb.getTrack(self.file_1['track'])[1] ) self.assertEquals(file_2_result, nbdb.getTrack(self.file_2['track'])[1] ) del user_2_result nbdb = None def test_Get_Valid_Track(self): """ """ nbdb = NukeBoxDB() track_value, track_id = nbdb.getTrack(self.file_1['track']) self.assertTrue(track_value) self.assertIsNotNone(track_id) nbdb = None def test_Get_Invalid_Track(self): """ """ nbdb = NukeBoxDB() track_value, track_id = nbdb.getTrack( 'Some Track That Should Not Exists in DB') self.assertFalse(track_value) self.assertIsNone(track_id) nbdb = None <mask token>
<mask token> class TestNukeBoxDB(unittest.TestCase): """ """ def setUp(self): """ B{Test} Data - 2 User dict obj. - contains basic data required by the MongoDB collection "Users" - indexes exist on "mac_id" and "files" entries - user entries contain a "set" of File elements which reference the files (by obj id) that they have uploaded - 2 File dict obj. - contains basic data required for a File entry in the DB - indexes exist on "track id" """ self.user_1 = {'name': 'Terry', 'mac_id': '12341234'} self.user_2 = {'name': 'Eric', 'mac_id': '43211234'} self.file_1 = {'filetype': '.mp3', 'artist': 'Foals', 'path': 'temp_dir', 'track': 'Birch Tree', 'size': '10000', 'art': 'http://foals_art.jpeg'} self.file_2 = {'filetype': '.mp3', 'artist': 'Foals', 'path': 'temp_dir', 'track': 'What Went Down', 'size': '10000', 'art': 'http://foals_art.jpeg'} def tearDown(self): """ B{Teardown} Test Data - Deletes instance Data created in Setup """ for i in (self.file_1, self.file_2, self.user_1, self.user_2): del i def test_Ensure_Indexes(self): """ B{Test 01} Tests the DB method used to create the required indexes - ensureInexes returns a list of booleans - each item is True on success """ nbdb = NukeBoxDB(Debug=True) _a, _b, _c = nbdb.ensureIndexes() self.assertTrue(_a and _b and _c) nbdb = None def test_Create_User(self): """ B{Test 02} Tests User entry creation in the DB - createUser first checks if an matching entry already exists, updating the existing entry if it does - either way it returns the entries object id """ nbdb = NukeBoxDB() user_1_result = nbdb.createUser(self.user_1) self.assertTrue(user_1_result) nbdb = None def test_Create_User_Files(self): """ B{Test 03} Tests File entry creation in th DB - createFile first tries to retrieve an existing entry, updating it if a match is found - the method then uses the current "mac_id" instance variable to retrieve the current user and updates their set of files """ nbdb = NukeBoxDB() user_2_result = nbdb.createUser(self.user_2) file_1_result = nbdb.createFile(self.file_1) file_2_result = nbdb.createFile(self.file_2) self.assertEquals(file_1_result, nbdb.getTrack(self.file_1['track'])[1] ) self.assertEquals(file_2_result, nbdb.getTrack(self.file_2['track'])[1] ) del user_2_result nbdb = None def test_Get_Valid_Track(self): """ """ nbdb = NukeBoxDB() track_value, track_id = nbdb.getTrack(self.file_1['track']) self.assertTrue(track_value) self.assertIsNotNone(track_id) nbdb = None def test_Get_Invalid_Track(self): """ """ nbdb = NukeBoxDB() track_value, track_id = nbdb.getTrack( 'Some Track That Should Not Exists in DB') self.assertFalse(track_value) self.assertIsNone(track_id) nbdb = None <mask token>
<mask token> import sys import unittest from nukebox2000.MongoBox import NukeBoxDB class TestNukeBoxDB(unittest.TestCase): """ """ def setUp(self): """ B{Test} Data - 2 User dict obj. - contains basic data required by the MongoDB collection "Users" - indexes exist on "mac_id" and "files" entries - user entries contain a "set" of File elements which reference the files (by obj id) that they have uploaded - 2 File dict obj. - contains basic data required for a File entry in the DB - indexes exist on "track id" """ self.user_1 = {'name': 'Terry', 'mac_id': '12341234'} self.user_2 = {'name': 'Eric', 'mac_id': '43211234'} self.file_1 = {'filetype': '.mp3', 'artist': 'Foals', 'path': 'temp_dir', 'track': 'Birch Tree', 'size': '10000', 'art': 'http://foals_art.jpeg'} self.file_2 = {'filetype': '.mp3', 'artist': 'Foals', 'path': 'temp_dir', 'track': 'What Went Down', 'size': '10000', 'art': 'http://foals_art.jpeg'} def tearDown(self): """ B{Teardown} Test Data - Deletes instance Data created in Setup """ for i in (self.file_1, self.file_2, self.user_1, self.user_2): del i def test_Ensure_Indexes(self): """ B{Test 01} Tests the DB method used to create the required indexes - ensureInexes returns a list of booleans - each item is True on success """ nbdb = NukeBoxDB(Debug=True) _a, _b, _c = nbdb.ensureIndexes() self.assertTrue(_a and _b and _c) nbdb = None def test_Create_User(self): """ B{Test 02} Tests User entry creation in the DB - createUser first checks if an matching entry already exists, updating the existing entry if it does - either way it returns the entries object id """ nbdb = NukeBoxDB() user_1_result = nbdb.createUser(self.user_1) self.assertTrue(user_1_result) nbdb = None def test_Create_User_Files(self): """ B{Test 03} Tests File entry creation in th DB - createFile first tries to retrieve an existing entry, updating it if a match is found - the method then uses the current "mac_id" instance variable to retrieve the current user and updates their set of files """ nbdb = NukeBoxDB() user_2_result = nbdb.createUser(self.user_2) file_1_result = nbdb.createFile(self.file_1) file_2_result = nbdb.createFile(self.file_2) self.assertEquals(file_1_result, nbdb.getTrack(self.file_1['track'])[1] ) self.assertEquals(file_2_result, nbdb.getTrack(self.file_2['track'])[1] ) del user_2_result nbdb = None def test_Get_Valid_Track(self): """ """ nbdb = NukeBoxDB() track_value, track_id = nbdb.getTrack(self.file_1['track']) self.assertTrue(track_value) self.assertIsNotNone(track_id) nbdb = None def test_Get_Invalid_Track(self): """ """ nbdb = NukeBoxDB() track_value, track_id = nbdb.getTrack( 'Some Track That Should Not Exists in DB') self.assertFalse(track_value) self.assertIsNone(track_id) nbdb = None if __name__ == '__main__': sys.exit(unittest.main())
#!/usr/bin/env python # -*- coding: utf-8 -*- """ test_nukeboxQueue ---------------------------------- Tests for `nukebox2000` module. """ import sys import unittest from nukebox2000.MongoBox import NukeBoxDB class TestNukeBoxDB(unittest.TestCase): ''' ''' def setUp(self): ''' B{Test} Data - 2 User dict obj. - contains basic data required by the MongoDB collection "Users" - indexes exist on "mac_id" and "files" entries - user entries contain a "set" of File elements which reference the files (by obj id) that they have uploaded - 2 File dict obj. - contains basic data required for a File entry in the DB - indexes exist on "track id" ''' self.user_1 = { 'name': 'Terry', 'mac_id': '12341234' } self.user_2 = { 'name': 'Eric', 'mac_id': '43211234' } self.file_1 = { 'filetype': '.mp3', 'artist': 'Foals', 'path': 'temp_dir', 'track': 'Birch Tree', 'size': '10000', 'art': 'http://foals_art.jpeg' } self.file_2 = { 'filetype': '.mp3', 'artist': 'Foals', 'path': 'temp_dir', 'track': 'What Went Down', 'size': '10000', 'art': 'http://foals_art.jpeg' } def tearDown(self): ''' B{Teardown} Test Data - Deletes instance Data created in Setup ''' for i in self.file_1, self.file_2, self.user_1, self.user_2: del i def test_Ensure_Indexes(self): ''' B{Test 01} Tests the DB method used to create the required indexes - ensureInexes returns a list of booleans - each item is True on success ''' nbdb = NukeBoxDB(Debug=True) _a, _b, _c = nbdb.ensureIndexes() self.assertTrue(_a and _b and _c) nbdb = None def test_Create_User(self): ''' B{Test 02} Tests User entry creation in the DB - createUser first checks if an matching entry already exists, updating the existing entry if it does - either way it returns the entries object id ''' nbdb = NukeBoxDB() user_1_result = nbdb.createUser(self.user_1) self.assertTrue(user_1_result) nbdb = None def test_Create_User_Files(self): ''' B{Test 03} Tests File entry creation in th DB - createFile first tries to retrieve an existing entry, updating it if a match is found - the method then uses the current "mac_id" instance variable to retrieve the current user and updates their set of files ''' nbdb = NukeBoxDB() user_2_result = nbdb.createUser(self.user_2) file_1_result = nbdb.createFile(self.file_1) file_2_result = nbdb.createFile(self.file_2) self.assertEquals( file_1_result, nbdb.getTrack(self.file_1['track'])[1] ) self.assertEquals( file_2_result, nbdb.getTrack(self.file_2['track'])[1] ) del user_2_result nbdb = None def test_Get_Valid_Track(self): ''' ''' nbdb = NukeBoxDB() track_value, track_id = nbdb.getTrack(self.file_1['track']) self.assertTrue(track_value) self.assertIsNotNone(track_id) nbdb = None def test_Get_Invalid_Track(self): ''' ''' nbdb = NukeBoxDB() track_value, track_id = nbdb.getTrack( 'Some Track That Should Not Exists in DB' ) self.assertFalse(track_value) self.assertIsNone(track_id) nbdb = None if __name__ == '__main__': sys.exit(unittest.main())
[ 5, 7, 9, 11, 12 ]
1,734
0d6c1e74a274b3e8ad9c63ecaa125f79976db9b4
<mask token> class Token: operator = False empty = False def __init__(self, token): self.token = token if token == '+': self.operator = True elif token == '-': self.operator = True elif token == '*': self.operator = True elif token == '/': self.operator = True elif token == '': self.empty = True else: self.token = int(self.token) class Lexer: def __init__(self, stream): self.stream = stream def get_token(self): next_space = self.stream.find(' ') if next_space == -1: token = Token(self.stream) self.stream = '' return token token = self.stream[:next_space] self.stream = self.stream[next_space + 1:] return Token(token) class Parser: def __init__(self, token_stream): self.token_stream = token_stream def parse(self, ast=None): if ast is None: first_token = self.token_stream.get_token() ast = Element(first_token.token) operator = self.token_stream.get_token() if operator.empty: return ast if operator.operator: return self.parse_operator(ast, operator) def parse_operator(self, left_ast, operator): right_token = self.token_stream.get_token() return self.parse(Operation(left_ast, Element(right_token.token), Operator(operator.token))) <mask token>
<mask token> class Token: operator = False empty = False def __init__(self, token): self.token = token if token == '+': self.operator = True elif token == '-': self.operator = True elif token == '*': self.operator = True elif token == '/': self.operator = True elif token == '': self.empty = True else: self.token = int(self.token) class Lexer: def __init__(self, stream): self.stream = stream def get_token(self): next_space = self.stream.find(' ') if next_space == -1: token = Token(self.stream) self.stream = '' return token token = self.stream[:next_space] self.stream = self.stream[next_space + 1:] return Token(token) class Parser: def __init__(self, token_stream): self.token_stream = token_stream def parse(self, ast=None): if ast is None: first_token = self.token_stream.get_token() ast = Element(first_token.token) operator = self.token_stream.get_token() if operator.empty: return ast if operator.operator: return self.parse_operator(ast, operator) def parse_operator(self, left_ast, operator): right_token = self.token_stream.get_token() return self.parse(Operation(left_ast, Element(right_token.token), Operator(operator.token))) def test_ast(): calcul_visitor = Interpreter() op = Operation(Element(7), Element(3), Operator('+')) Operation(op, op, Operator('+')).accept(calcul_visitor) calcul_visitor.print_result() <mask token>
<mask token> class Token: operator = False empty = False def __init__(self, token): self.token = token if token == '+': self.operator = True elif token == '-': self.operator = True elif token == '*': self.operator = True elif token == '/': self.operator = True elif token == '': self.empty = True else: self.token = int(self.token) class Lexer: def __init__(self, stream): self.stream = stream def get_token(self): next_space = self.stream.find(' ') if next_space == -1: token = Token(self.stream) self.stream = '' return token token = self.stream[:next_space] self.stream = self.stream[next_space + 1:] return Token(token) class Parser: def __init__(self, token_stream): self.token_stream = token_stream def parse(self, ast=None): if ast is None: first_token = self.token_stream.get_token() ast = Element(first_token.token) operator = self.token_stream.get_token() if operator.empty: return ast if operator.operator: return self.parse_operator(ast, operator) def parse_operator(self, left_ast, operator): right_token = self.token_stream.get_token() return self.parse(Operation(left_ast, Element(right_token.token), Operator(operator.token))) def test_ast(): calcul_visitor = Interpreter() op = Operation(Element(7), Element(3), Operator('+')) Operation(op, op, Operator('+')).accept(calcul_visitor) calcul_visitor.print_result() def test_lexer(): string = '1 + 3 + 4 + 50 + 1 + 0' lexer = Lexer(string) token = lexer.get_token() while not token.empty: print(token.token) token = lexer.get_token() def test_parser(): parser = Parser(Lexer('1 + 2 + 3')) ast = parser.parse() ast.accept(PrettyPrint()) print() <mask token>
from interpreter import Interpreter from pretty_print import PrettyPrint from ast import Operator, Operation, Element class Token: operator = False empty = False def __init__(self, token): self.token = token if token == '+': self.operator = True elif token == '-': self.operator = True elif token == '*': self.operator = True elif token == '/': self.operator = True elif token == '': self.empty = True else: self.token = int(self.token) class Lexer: def __init__(self, stream): self.stream = stream def get_token(self): next_space = self.stream.find(' ') if next_space == -1: token = Token(self.stream) self.stream = '' return token token = self.stream[:next_space] self.stream = self.stream[next_space + 1:] return Token(token) class Parser: def __init__(self, token_stream): self.token_stream = token_stream def parse(self, ast=None): if ast is None: first_token = self.token_stream.get_token() ast = Element(first_token.token) operator = self.token_stream.get_token() if operator.empty: return ast if operator.operator: return self.parse_operator(ast, operator) def parse_operator(self, left_ast, operator): right_token = self.token_stream.get_token() return self.parse(Operation(left_ast, Element(right_token.token), Operator(operator.token))) def test_ast(): calcul_visitor = Interpreter() op = Operation(Element(7), Element(3), Operator('+')) Operation(op, op, Operator('+')).accept(calcul_visitor) calcul_visitor.print_result() def test_lexer(): string = '1 + 3 + 4 + 50 + 1 + 0' lexer = Lexer(string) token = lexer.get_token() while not token.empty: print(token.token) token = lexer.get_token() def test_parser(): parser = Parser(Lexer('1 + 2 + 3')) ast = parser.parse() ast.accept(PrettyPrint()) print() while True: try: _in = input('string to calculate:') except EOFError: print() break ast = Parser(Lexer(_in)).parse() ast.accept(PrettyPrint()) calc = Interpreter() ast.accept(calc) print(' = ', end='') calc.print_result()
from interpreter import Interpreter from pretty_print import PrettyPrint from ast import Operator, Operation, Element class Token: operator = False empty = False def __init__(self, token): self.token = token if token == '+': self.operator = True elif token == '-': self.operator = True elif token == '*': self.operator = True elif token == '/': self.operator = True elif token == '': self.empty = True else: self.token = int(self.token) class Lexer: def __init__(self, stream): self.stream = stream def get_token(self): next_space = self.stream.find(' ') if next_space == -1: token = Token(self.stream) self.stream = '' return token token = self.stream[:next_space] self.stream = self.stream[next_space + 1:] return Token(token) class Parser: def __init__(self, token_stream): self.token_stream = token_stream def parse(self, ast = None): if ast is None: first_token = self.token_stream.get_token() ast = Element(first_token.token) operator = self.token_stream.get_token() if operator.empty: return ast if operator.operator: return self.parse_operator(ast, operator) def parse_operator(self, left_ast, operator): right_token = self.token_stream.get_token() return self.parse( Operation( left_ast, Element(right_token.token), Operator(operator.token) ) ) def test_ast(): calcul_visitor = Interpreter() op = Operation(Element(7), Element(3), Operator('+')) Operation(op, op, Operator('+')).accept(calcul_visitor) calcul_visitor.print_result() def test_lexer(): string = '1 + 3 + 4 + 50 + 1 + 0' lexer = Lexer(string) token = lexer.get_token() while (not token.empty): print(token.token) token = lexer.get_token() def test_parser(): parser = Parser(Lexer('1 + 2 + 3')) ast = parser.parse() ast.accept(PrettyPrint()) print() while True: try: _in = input('string to calculate:') except EOFError: print() break ast = Parser(Lexer(_in)).parse() ast.accept(PrettyPrint()) calc = Interpreter() ast.accept(calc) print(' = ', end='') calc.print_result()
[ 10, 11, 13, 15, 16 ]
1,735
7882504f08e871f2610ff633608eb3d380179041
<mask token> @tasks.route('/my_tasks', methods=['GET', 'POST']) @login_required def my_tasks(): _all_tasks = MyTaskModel.query.filter_by(users_id=current_user.id).all() return render_template('tasks/my_tasks.html', all_tasks=_all_tasks, _active_tasks=True) <mask token> @tasks.route('/add_task', methods=['GET', 'POST']) @login_required def add_task(): _task = MyTaskModel() _form = MyTaskForm() if _form.validate_on_submit(): _task.users_id = current_user.id _form.populate_obj(_task) db.session.add(_task) db.session.commit() db.session.refresh(_task) flash('Your task is added successfully!', 'success') return redirect(url_for('tasks.my_tasks')) return render_template('tasks/add_task.html', form=_form, _active_tasks =True) @tasks.route('/delete_task/<id>', methods=['GET', 'POST']) @login_required def delete_task(id): _task = MyTaskModel.query.filter_by(id=id, users_id=current_user.id).first( ) if not _task: flash('Oops! Something went wrong!.', 'danger') return redirect(url_for('tasks.my_tasks')) db.session.delete(_task) db.session.commit() flash('Your task is deleted successfully!', 'success') return redirect(url_for('tasks.my_tasks')) @tasks.route('/edit_task/<id>', methods=['GET', 'POST']) @login_required def edit_task(id): _task = MyTaskModel.query.filter_by(id=id, users_id=current_user.id).first( ) if not _task: flash('Oops! Something went wrong!.', 'danger') return redirect(url_for('tasks.my_tasks')) _form = MyTaskForm(obj=_task) if _form.validate_on_submit(): _task.users_id = current_user.id _form.populate_obj(_task) db.session.add(_task) db.session.commit() flash('Your task updated successfully!', 'success') return redirect(url_for('tasks.my_tasks')) return render_template('tasks/edit_task.html', form=_form, task=_task, _active_tasks=True)
<mask token> @tasks.route('/my_tasks', methods=['GET', 'POST']) @login_required def my_tasks(): _all_tasks = MyTaskModel.query.filter_by(users_id=current_user.id).all() return render_template('tasks/my_tasks.html', all_tasks=_all_tasks, _active_tasks=True) @tasks.route('/view_task/<id>', methods=['GET', 'POST']) @login_required def view_task(id): _task = MyTaskModel.query.filter_by(id=id, users_id=current_user.id).first( ) if not _task: flash('Oops! Something went wrong!.', 'danger') return redirect(url_for('tasks.my_tasks')) return render_template('tasks/view_task.html', task=_task) @tasks.route('/add_task', methods=['GET', 'POST']) @login_required def add_task(): _task = MyTaskModel() _form = MyTaskForm() if _form.validate_on_submit(): _task.users_id = current_user.id _form.populate_obj(_task) db.session.add(_task) db.session.commit() db.session.refresh(_task) flash('Your task is added successfully!', 'success') return redirect(url_for('tasks.my_tasks')) return render_template('tasks/add_task.html', form=_form, _active_tasks =True) @tasks.route('/delete_task/<id>', methods=['GET', 'POST']) @login_required def delete_task(id): _task = MyTaskModel.query.filter_by(id=id, users_id=current_user.id).first( ) if not _task: flash('Oops! Something went wrong!.', 'danger') return redirect(url_for('tasks.my_tasks')) db.session.delete(_task) db.session.commit() flash('Your task is deleted successfully!', 'success') return redirect(url_for('tasks.my_tasks')) @tasks.route('/edit_task/<id>', methods=['GET', 'POST']) @login_required def edit_task(id): _task = MyTaskModel.query.filter_by(id=id, users_id=current_user.id).first( ) if not _task: flash('Oops! Something went wrong!.', 'danger') return redirect(url_for('tasks.my_tasks')) _form = MyTaskForm(obj=_task) if _form.validate_on_submit(): _task.users_id = current_user.id _form.populate_obj(_task) db.session.add(_task) db.session.commit() flash('Your task updated successfully!', 'success') return redirect(url_for('tasks.my_tasks')) return render_template('tasks/edit_task.html', form=_form, task=_task, _active_tasks=True)
<mask token> tasks = Blueprint('tasks', __name__, url_prefix='/tasks') @tasks.route('/my_tasks', methods=['GET', 'POST']) @login_required def my_tasks(): _all_tasks = MyTaskModel.query.filter_by(users_id=current_user.id).all() return render_template('tasks/my_tasks.html', all_tasks=_all_tasks, _active_tasks=True) @tasks.route('/view_task/<id>', methods=['GET', 'POST']) @login_required def view_task(id): _task = MyTaskModel.query.filter_by(id=id, users_id=current_user.id).first( ) if not _task: flash('Oops! Something went wrong!.', 'danger') return redirect(url_for('tasks.my_tasks')) return render_template('tasks/view_task.html', task=_task) @tasks.route('/add_task', methods=['GET', 'POST']) @login_required def add_task(): _task = MyTaskModel() _form = MyTaskForm() if _form.validate_on_submit(): _task.users_id = current_user.id _form.populate_obj(_task) db.session.add(_task) db.session.commit() db.session.refresh(_task) flash('Your task is added successfully!', 'success') return redirect(url_for('tasks.my_tasks')) return render_template('tasks/add_task.html', form=_form, _active_tasks =True) @tasks.route('/delete_task/<id>', methods=['GET', 'POST']) @login_required def delete_task(id): _task = MyTaskModel.query.filter_by(id=id, users_id=current_user.id).first( ) if not _task: flash('Oops! Something went wrong!.', 'danger') return redirect(url_for('tasks.my_tasks')) db.session.delete(_task) db.session.commit() flash('Your task is deleted successfully!', 'success') return redirect(url_for('tasks.my_tasks')) @tasks.route('/edit_task/<id>', methods=['GET', 'POST']) @login_required def edit_task(id): _task = MyTaskModel.query.filter_by(id=id, users_id=current_user.id).first( ) if not _task: flash('Oops! Something went wrong!.', 'danger') return redirect(url_for('tasks.my_tasks')) _form = MyTaskForm(obj=_task) if _form.validate_on_submit(): _task.users_id = current_user.id _form.populate_obj(_task) db.session.add(_task) db.session.commit() flash('Your task updated successfully!', 'success') return redirect(url_for('tasks.my_tasks')) return render_template('tasks/edit_task.html', form=_form, task=_task, _active_tasks=True)
from flask import Blueprint, render_template, flash, redirect, url_for from flask_login import login_required, current_user from ..extensions import db from .forms import MyTaskForm from .models import MyTaskModel tasks = Blueprint('tasks', __name__, url_prefix='/tasks') @tasks.route('/my_tasks', methods=['GET', 'POST']) @login_required def my_tasks(): _all_tasks = MyTaskModel.query.filter_by(users_id=current_user.id).all() return render_template('tasks/my_tasks.html', all_tasks=_all_tasks, _active_tasks=True) @tasks.route('/view_task/<id>', methods=['GET', 'POST']) @login_required def view_task(id): _task = MyTaskModel.query.filter_by(id=id, users_id=current_user.id).first( ) if not _task: flash('Oops! Something went wrong!.', 'danger') return redirect(url_for('tasks.my_tasks')) return render_template('tasks/view_task.html', task=_task) @tasks.route('/add_task', methods=['GET', 'POST']) @login_required def add_task(): _task = MyTaskModel() _form = MyTaskForm() if _form.validate_on_submit(): _task.users_id = current_user.id _form.populate_obj(_task) db.session.add(_task) db.session.commit() db.session.refresh(_task) flash('Your task is added successfully!', 'success') return redirect(url_for('tasks.my_tasks')) return render_template('tasks/add_task.html', form=_form, _active_tasks =True) @tasks.route('/delete_task/<id>', methods=['GET', 'POST']) @login_required def delete_task(id): _task = MyTaskModel.query.filter_by(id=id, users_id=current_user.id).first( ) if not _task: flash('Oops! Something went wrong!.', 'danger') return redirect(url_for('tasks.my_tasks')) db.session.delete(_task) db.session.commit() flash('Your task is deleted successfully!', 'success') return redirect(url_for('tasks.my_tasks')) @tasks.route('/edit_task/<id>', methods=['GET', 'POST']) @login_required def edit_task(id): _task = MyTaskModel.query.filter_by(id=id, users_id=current_user.id).first( ) if not _task: flash('Oops! Something went wrong!.', 'danger') return redirect(url_for('tasks.my_tasks')) _form = MyTaskForm(obj=_task) if _form.validate_on_submit(): _task.users_id = current_user.id _form.populate_obj(_task) db.session.add(_task) db.session.commit() flash('Your task updated successfully!', 'success') return redirect(url_for('tasks.my_tasks')) return render_template('tasks/edit_task.html', form=_form, task=_task, _active_tasks=True)
# -*- coding: utf-8 -*- from flask import Blueprint, render_template, flash, redirect, url_for from flask_login import login_required, current_user from ..extensions import db from .forms import MyTaskForm from .models import MyTaskModel tasks = Blueprint('tasks', __name__, url_prefix='/tasks') @tasks.route('/my_tasks', methods=['GET', 'POST']) @login_required def my_tasks(): _all_tasks = MyTaskModel.query.filter_by(users_id=current_user.id).all() return render_template('tasks/my_tasks.html', all_tasks=_all_tasks, _active_tasks=True) @tasks.route('/view_task/<id>', methods=['GET', 'POST']) @login_required def view_task(id): _task = MyTaskModel.query.filter_by(id=id, users_id=current_user.id).first() if not _task: flash('Oops! Something went wrong!.', 'danger') return redirect(url_for("tasks.my_tasks")) return render_template('tasks/view_task.html', task=_task) @tasks.route('/add_task', methods=['GET', 'POST']) @login_required def add_task(): _task = MyTaskModel() _form = MyTaskForm() if _form.validate_on_submit(): _task.users_id = current_user.id _form.populate_obj(_task) db.session.add(_task) db.session.commit() db.session.refresh(_task) flash('Your task is added successfully!', 'success') return redirect(url_for("tasks.my_tasks")) return render_template('tasks/add_task.html', form=_form, _active_tasks=True) @tasks.route('/delete_task/<id>', methods=['GET', 'POST']) @login_required def delete_task(id): _task = MyTaskModel.query.filter_by(id=id, users_id=current_user.id).first() if not _task: flash('Oops! Something went wrong!.', 'danger') return redirect(url_for("tasks.my_tasks")) db.session.delete(_task) db.session.commit() flash('Your task is deleted successfully!', 'success') return redirect(url_for('tasks.my_tasks')) @tasks.route('/edit_task/<id>', methods=['GET', 'POST']) @login_required def edit_task(id): _task = MyTaskModel.query.filter_by(id=id, users_id=current_user.id).first() if not _task: flash('Oops! Something went wrong!.', 'danger') return redirect(url_for("tasks.my_tasks")) _form = MyTaskForm(obj=_task) if _form.validate_on_submit(): _task.users_id = current_user.id _form.populate_obj(_task) db.session.add(_task) db.session.commit() flash('Your task updated successfully!', 'success') return redirect(url_for("tasks.my_tasks")) return render_template('tasks/edit_task.html', form=_form, task=_task, _active_tasks=True)
[ 4, 5, 6, 7, 8 ]
1,736
2e27302abbe239c1a6067a9eb52f5a857fff7dd2
<mask token>
<mask token> f.close() <mask token> for element in word_token: if element in token_dictionary: token_dictionary[element] += 1 else: token_dictionary[element] = 1 for key in sorted(token_dictionary.keys()): print('{} {}'.format(key, token_dictionary[key])) print('Tokens: ' + str(len(word_token))) print('Types: ' + str(len(token_dictionary)))
<mask token> f = open('q4text.txt') text = f.read() f.close() pattern = ( '[0-9]+[,][0-9]+|[0-9]+[.][0-9]+|[0-9]+|\\b[A-Z][a-z]+[.]|\\b[A-Za-z]+[\'][a-z]+|[A-Z.]+[A-Z]|\\b[A-Za-z-]+|[.]+|[.,\'"!?:;]' ) word_token = re.findall(pattern, text) token_dictionary = {} for element in word_token: if element in token_dictionary: token_dictionary[element] += 1 else: token_dictionary[element] = 1 for key in sorted(token_dictionary.keys()): print('{} {}'.format(key, token_dictionary[key])) print('Tokens: ' + str(len(word_token))) print('Types: ' + str(len(token_dictionary)))
import re f = open('q4text.txt') text = f.read() f.close() pattern = ( '[0-9]+[,][0-9]+|[0-9]+[.][0-9]+|[0-9]+|\\b[A-Z][a-z]+[.]|\\b[A-Za-z]+[\'][a-z]+|[A-Z.]+[A-Z]|\\b[A-Za-z-]+|[.]+|[.,\'"!?:;]' ) word_token = re.findall(pattern, text) token_dictionary = {} for element in word_token: if element in token_dictionary: token_dictionary[element] += 1 else: token_dictionary[element] = 1 for key in sorted(token_dictionary.keys()): print('{} {}'.format(key, token_dictionary[key])) print('Tokens: ' + str(len(word_token))) print('Types: ' + str(len(token_dictionary)))
import re f = open('q4text.txt') text = f.read() f.close() pattern = r'''[0-9]+[,][0-9]+|[0-9]+[.][0-9]+|[0-9]+|\b[A-Z][a-z]+[.]|\b[A-Za-z]+['][a-z]+|[A-Z.]+[A-Z]|\b[A-Za-z-]+|[.]+|[.,'"!?:;]''' word_token = re.findall(pattern, text) token_dictionary = {} for element in word_token: if element in token_dictionary: token_dictionary[element] += 1 else: token_dictionary[element] = 1 for key in sorted(token_dictionary.keys()): print("{} {}".format(key, token_dictionary[key])) print('Tokens: ' + str(len(word_token))) print('Types: ' + str(len(token_dictionary)))
[ 0, 1, 2, 3, 4 ]
1,737
576c28bb32b5e0b2b5a82a33cee73e3080dcf3ab
<mask token> def show_raw_data(req): filename = req.GET['file'] lineno = int(req.GET['line']) from_lineno = max(0, lineno - OFFSET) to_lineno = lineno + OFFSET ctx = dict() cur_lineno = 1 lines = [] file_path = os.path.join(settings.BASE_DIR, 'parser/unzip_data/%s' % filename) with codecs.open(file_path, encoding='windows-1255') as fh: for line in fh: if cur_lineno >= from_lineno and cur_lineno <= to_lineno: lines.append({'lineno': cur_lineno, 'line': line.strip(). encode('utf-8', errors='ignore')}) cur_lineno += 1 ctx['lines'] = lines ctx['filename'] = filename ctx['lineno'] = lineno ctx['prev'] = '/raw-data?file=%s&line=%s' % (filename, lineno - OFFSET * 2 - 1) ctx['next'] = '/raw-data?file=%s&line=%s' % (filename, lineno + OFFSET * 2 + 1) return render(req, 'data/raw_data.html', ctx) def show_results_from_to(req): return render(req, 'data/show_results.html', {'title': 'From To', 'app': 'FromTo'}) <mask token> def show_routes(req): return render(req, 'data/show_results.html', {'title': 'Show Routes', 'app': 'ShowRoutes'}) def route_explorer(req): return render(req, 'ui/RouteExplorer.html')
<mask token> def show_raw_data(req): filename = req.GET['file'] lineno = int(req.GET['line']) from_lineno = max(0, lineno - OFFSET) to_lineno = lineno + OFFSET ctx = dict() cur_lineno = 1 lines = [] file_path = os.path.join(settings.BASE_DIR, 'parser/unzip_data/%s' % filename) with codecs.open(file_path, encoding='windows-1255') as fh: for line in fh: if cur_lineno >= from_lineno and cur_lineno <= to_lineno: lines.append({'lineno': cur_lineno, 'line': line.strip(). encode('utf-8', errors='ignore')}) cur_lineno += 1 ctx['lines'] = lines ctx['filename'] = filename ctx['lineno'] = lineno ctx['prev'] = '/raw-data?file=%s&line=%s' % (filename, lineno - OFFSET * 2 - 1) ctx['next'] = '/raw-data?file=%s&line=%s' % (filename, lineno + OFFSET * 2 + 1) return render(req, 'data/raw_data.html', ctx) def show_results_from_to(req): return render(req, 'data/show_results.html', {'title': 'From To', 'app': 'FromTo'}) def show_trip(req): return render(req, 'data/show_results.html', {'title': 'Show Trip', 'app': 'ShowTrip'}) def show_routes(req): return render(req, 'data/show_results.html', {'title': 'Show Routes', 'app': 'ShowRoutes'}) def route_explorer(req): return render(req, 'ui/RouteExplorer.html')
<mask token> OFFSET = 20 def show_raw_data(req): filename = req.GET['file'] lineno = int(req.GET['line']) from_lineno = max(0, lineno - OFFSET) to_lineno = lineno + OFFSET ctx = dict() cur_lineno = 1 lines = [] file_path = os.path.join(settings.BASE_DIR, 'parser/unzip_data/%s' % filename) with codecs.open(file_path, encoding='windows-1255') as fh: for line in fh: if cur_lineno >= from_lineno and cur_lineno <= to_lineno: lines.append({'lineno': cur_lineno, 'line': line.strip(). encode('utf-8', errors='ignore')}) cur_lineno += 1 ctx['lines'] = lines ctx['filename'] = filename ctx['lineno'] = lineno ctx['prev'] = '/raw-data?file=%s&line=%s' % (filename, lineno - OFFSET * 2 - 1) ctx['next'] = '/raw-data?file=%s&line=%s' % (filename, lineno + OFFSET * 2 + 1) return render(req, 'data/raw_data.html', ctx) def show_results_from_to(req): return render(req, 'data/show_results.html', {'title': 'From To', 'app': 'FromTo'}) def show_trip(req): return render(req, 'data/show_results.html', {'title': 'Show Trip', 'app': 'ShowTrip'}) def show_routes(req): return render(req, 'data/show_results.html', {'title': 'Show Routes', 'app': 'ShowRoutes'}) def route_explorer(req): return render(req, 'ui/RouteExplorer.html')
from django.shortcuts import render import codecs import os.path from django.conf import settings OFFSET = 20 def show_raw_data(req): filename = req.GET['file'] lineno = int(req.GET['line']) from_lineno = max(0, lineno - OFFSET) to_lineno = lineno + OFFSET ctx = dict() cur_lineno = 1 lines = [] file_path = os.path.join(settings.BASE_DIR, 'parser/unzip_data/%s' % filename) with codecs.open(file_path, encoding='windows-1255') as fh: for line in fh: if cur_lineno >= from_lineno and cur_lineno <= to_lineno: lines.append({'lineno': cur_lineno, 'line': line.strip(). encode('utf-8', errors='ignore')}) cur_lineno += 1 ctx['lines'] = lines ctx['filename'] = filename ctx['lineno'] = lineno ctx['prev'] = '/raw-data?file=%s&line=%s' % (filename, lineno - OFFSET * 2 - 1) ctx['next'] = '/raw-data?file=%s&line=%s' % (filename, lineno + OFFSET * 2 + 1) return render(req, 'data/raw_data.html', ctx) def show_results_from_to(req): return render(req, 'data/show_results.html', {'title': 'From To', 'app': 'FromTo'}) def show_trip(req): return render(req, 'data/show_results.html', {'title': 'Show Trip', 'app': 'ShowTrip'}) def show_routes(req): return render(req, 'data/show_results.html', {'title': 'Show Routes', 'app': 'ShowRoutes'}) def route_explorer(req): return render(req, 'ui/RouteExplorer.html')
from django.shortcuts import render import codecs import os.path from django.conf import settings OFFSET = 20 def show_raw_data(req): filename = req.GET['file'] lineno = int(req.GET['line']) from_lineno = max(0, lineno - OFFSET) to_lineno = (lineno + OFFSET) ctx = dict() cur_lineno = 1 lines = [] file_path = os.path.join(settings.BASE_DIR, 'parser/unzip_data/%s' % filename) with codecs.open(file_path, encoding="windows-1255") as fh: for line in fh: if cur_lineno >= from_lineno and cur_lineno <= to_lineno: lines.append({'lineno': cur_lineno, 'line': line.strip().encode('utf-8', errors='ignore')}) cur_lineno += 1 ctx['lines'] = lines ctx['filename'] = filename ctx['lineno'] = lineno ctx['prev'] = '/raw-data?file=%s&line=%s' % (filename, lineno - OFFSET * 2 - 1) ctx['next'] = '/raw-data?file=%s&line=%s' % (filename, lineno + OFFSET * 2 + 1) return render(req, 'data/raw_data.html', ctx) def show_results_from_to(req): return render(req, 'data/show_results.html', {'title': 'From To', 'app' : 'FromTo'}) def show_trip(req): return render(req,'data/show_results.html',{'title' : 'Show Trip', 'app' : 'ShowTrip'}) def show_routes(req): return render(req,'data/show_results.html',{'title': 'Show Routes', 'app': 'ShowRoutes'}) def route_explorer(req): return render(req, 'ui/RouteExplorer.html')
[ 4, 5, 6, 7, 8 ]
1,738
e48addecdde632607a9c782ff78a769122daab6f
<mask token>
<mask token> dbutils.widgets.removeAll() dbutils.widgets.text('input_path', 'Not found', 'input_path') <mask token> dbutils.widgets.text('model_path', 'Not found', 'model_path') <mask token> if test: print(dbutils.widgets.get('input_path')) print(dbutils.widgets.get('model_path')) if input_path == 'Not found': input_path = '/mnt/<mount-name>/<path>/temperature/data/*.csv' if model_path == 'Not found': model_path = ( '/dbfs/mnt/<mount-name>/<path>/temperature/model/temperature-model.pkl' ) <mask token> if test: display(input_df) <mask token> if test: display(input_df) <mask token> for i in range(div_data.shape[1] - 6): if X is None: X = div_data[:, i:i + 3] y = div_data[:, i + 3] elif None not in div_data[:, i:i + 3] or None not in div_data[:, i + 3]: X = np.concatenate((X, div_data[:, i:i + 3]), axis=0) y = np.concatenate((y, div_data[:, i + 3]), axis=0) <mask token> if test: print(X_train) <mask token> clf.fit(X_train, y_train) <mask token> mean_absolute_error(y_test, y_pred) pickle.dump(clf, open(model_path, 'wb'))
<mask token> test = True dbutils.widgets.removeAll() dbutils.widgets.text('input_path', 'Not found', 'input_path') input_path = dbutils.widgets.get('input_path') dbutils.widgets.text('model_path', 'Not found', 'model_path') model_path = dbutils.widgets.get('model_path') if test: print(dbutils.widgets.get('input_path')) print(dbutils.widgets.get('model_path')) if input_path == 'Not found': input_path = '/mnt/<mount-name>/<path>/temperature/data/*.csv' if model_path == 'Not found': model_path = ( '/dbfs/mnt/<mount-name>/<path>/temperature/model/temperature-model.pkl' ) input_df = spark.read.option('inferSchema', 'true').option('header', 'true' ).csv(input_path) if test: display(input_df) input_df = input_df.withColumn('Year_Month', concat(col('Year'), col('Month'))) cols = ['Year_Month', 'Day', 'Mean_Temperature'] input_df = input_df[cols] if test: display(input_df) input_pivot_df = input_df.groupBy('Year_Month').pivot('Day').sum( 'Mean_Temperature') div_data = np.asarray(input_pivot_df.select([c for c in input_pivot_df. columns if c not in {'Year_Month'}]).collect()) X = None y = None for i in range(div_data.shape[1] - 6): if X is None: X = div_data[:, i:i + 3] y = div_data[:, i + 3] elif None not in div_data[:, i:i + 3] or None not in div_data[:, i + 3]: X = np.concatenate((X, div_data[:, i:i + 3]), axis=0) y = np.concatenate((y, div_data[:, i + 3]), axis=0) X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42) if test: print(X_train) clf = SVR(gamma='auto', C=0.1, epsilon=0.2) clf.fit(X_train, y_train) y_pred = clf.predict(X_test) mean_absolute_error(y_test, y_pred) pickle.dump(clf, open(model_path, 'wb'))
import numpy as np import pickle from sklearn.model_selection import train_test_split from sklearn.metrics import mean_absolute_error from pyspark.sql.functions import split, concat, col from sklearn.svm import SVR test = True dbutils.widgets.removeAll() dbutils.widgets.text('input_path', 'Not found', 'input_path') input_path = dbutils.widgets.get('input_path') dbutils.widgets.text('model_path', 'Not found', 'model_path') model_path = dbutils.widgets.get('model_path') if test: print(dbutils.widgets.get('input_path')) print(dbutils.widgets.get('model_path')) if input_path == 'Not found': input_path = '/mnt/<mount-name>/<path>/temperature/data/*.csv' if model_path == 'Not found': model_path = ( '/dbfs/mnt/<mount-name>/<path>/temperature/model/temperature-model.pkl' ) input_df = spark.read.option('inferSchema', 'true').option('header', 'true' ).csv(input_path) if test: display(input_df) input_df = input_df.withColumn('Year_Month', concat(col('Year'), col('Month'))) cols = ['Year_Month', 'Day', 'Mean_Temperature'] input_df = input_df[cols] if test: display(input_df) input_pivot_df = input_df.groupBy('Year_Month').pivot('Day').sum( 'Mean_Temperature') div_data = np.asarray(input_pivot_df.select([c for c in input_pivot_df. columns if c not in {'Year_Month'}]).collect()) X = None y = None for i in range(div_data.shape[1] - 6): if X is None: X = div_data[:, i:i + 3] y = div_data[:, i + 3] elif None not in div_data[:, i:i + 3] or None not in div_data[:, i + 3]: X = np.concatenate((X, div_data[:, i:i + 3]), axis=0) y = np.concatenate((y, div_data[:, i + 3]), axis=0) X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42) if test: print(X_train) clf = SVR(gamma='auto', C=0.1, epsilon=0.2) clf.fit(X_train, y_train) y_pred = clf.predict(X_test) mean_absolute_error(y_test, y_pred) pickle.dump(clf, open(model_path, 'wb'))
#!/usr/bin/env python # coding: utf-8 # In[ ]: import numpy as np import pickle from sklearn.model_selection import train_test_split from sklearn.metrics import mean_absolute_error from pyspark.sql.functions import split, concat,col from sklearn.svm import SVR test = True # In[ ]: dbutils.widgets.removeAll() dbutils.widgets.text("input_path", "Not found", "input_path") input_path = dbutils.widgets.get("input_path") dbutils.widgets.text("model_path", "Not found", "model_path") model_path = dbutils.widgets.get("model_path") if test: print(dbutils.widgets.get("input_path")) print(dbutils.widgets.get("model_path")) if input_path == 'Not found': input_path = '/mnt/<mount-name>/<path>/temperature/data/*.csv' if model_path == 'Not found': model_path = '/dbfs/mnt/<mount-name>/<path>/temperature/model/temperature-model.pkl' # In[ ]: input_df = spark.read.option("inferSchema","true").option("header", "true").csv(input_path) if test: display(input_df) # In[ ]: input_df = input_df.withColumn('Year_Month', concat(col('Year'), col('Month'))) cols = ['Year_Month','Day','Mean_Temperature'] input_df = input_df[cols] if test: display(input_df) # In[ ]: input_pivot_df = input_df.groupBy("Year_Month").pivot("Day").sum("Mean_Temperature") # In[ ]: div_data = np.asarray(input_pivot_df.select([c for c in input_pivot_df.columns if c not in {'Year_Month'}]).collect()) X = None; y = None for i in range(div_data.shape[1]-6): if X is None: X = div_data[:, i:i+3] y = div_data[:, i+3] else: if None not in div_data[:, i:i+3] or None not in div_data[:, i+3]: X = np.concatenate((X, div_data[:, i:i+3]), axis=0) y = np.concatenate((y, div_data[:, i+3]), axis=0) X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42) # In[ ]: if test: print(X_train) # In[ ]: clf = SVR(gamma='auto', C=0.1, epsilon=0.2) clf.fit(X_train, y_train) y_pred = clf.predict(X_test) mean_absolute_error(y_test, y_pred) # In[ ]: pickle.dump(clf, open(model_path, 'wb'))
[ 0, 1, 2, 3, 4 ]
1,739
d301ffa790d6444519e354a2b6f8d65f67d380c0
<mask token> class Client_OrderInline(admin.TabularInline): <mask token> class MyAdminSite(AdminSite): site_header = 'Pizza-Day' index_template = 'admin/index.html' @admin.register(Product) class ProductAdmin(admin.ModelAdmin): class PriceListFilter(admin.SimpleListFilter): title = 'Цена' parameter_name = 'цена' def lookups(self, request, model_admin): return ('1', 'до 199'), ('2', '200 - 299'), ('3', '300 - 449'), ( '4', 'от 450') def queryset(self, request, queryset): if self.value() == '1': return queryset.filter(price__gte=0, price__lte=199) if self.value() == '2': return queryset.filter(price__gte=200, price__lte=299) return go() if self.value() == '3': return queryset.filter(price__gte=300, price__lte=449) if self.value() == '4': return queryset.filter(price__gte=200, price__lte=299) list_display = ('get_image_html', 'id', 'section_id', 'title', 'getSize', 'getPrice') list_displat_links = '' inlines = [ProductCompositionInline] search_fields = ['title'] list_filter = ['section_id', PriceListFilter] def get_image_html(self, obj): return format_html( '<img src = "{}" style = "height: 30px; border-radius: 5px;"></img>' , obj.image.url) get_image_html.short_description = 'Фото товара' def getPrice(self, obj): try: object = Stock.objects.get(id=obj.id, status=True) return format_html('<del>{} грн.</del> <span>{} грн. </span>'. format(obj.price, object.value)) except: pass return format_html('<span>' + str(obj.price) + ' грн.' + '</span>') getPrice.short_description = 'Цена' def getSize(self, obj): return str(obj.size) + obj.unitSize getSize.short_description = 'Вес' @admin.register(Order) class OrderAdmin(admin.ModelAdmin): class PriceListFilter(admin.SimpleListFilter): title = 'Цена' parameter_name = 'цена' def lookups(self, request, model_admin): return ('1', 'до 199'), ('2', '200 - 299'), ('3', '300 - 449'), ( '4', 'от 450') def queryset(self, request, queryset): if self.value() == '1': return queryset.filter(price__gte=0, price__lte=199) if self.value() == '2': return queryset.filter(price__gte=200, price__lte=299) if self.value() == '3': return queryset.filter(price__gte=300, price__lte=449) if self.value() == '4': return queryset.filter(price__gte=200, price__lte=299) list_display = 'id', 'dateTimeOrder', 'price', 'status' list_filter = ['dateTimeOrder', PriceListFilter, 'status'] list_editable = ['status'] inlines = [OrderInline] @admin.register(Client) class ClientAdmin(admin.ModelAdmin): list_display = 'id', 'name', 'phone_number' inlines = [Client_OrderInline] @admin.register(Section) class SectionAdmin(admin.ModelAdmin): list_display = 'id', 'title' class StockAdmin(admin.ModelAdmin): list_display = 'product_id', 'value', 'status' search_fields = ['product_id__title'] list_filter = ['status'] <mask token>
<mask token> class Client_OrderInline(admin.TabularInline): model = Order class MyAdminSite(AdminSite): site_header = 'Pizza-Day' index_template = 'admin/index.html' @admin.register(Product) class ProductAdmin(admin.ModelAdmin): class PriceListFilter(admin.SimpleListFilter): title = 'Цена' parameter_name = 'цена' def lookups(self, request, model_admin): return ('1', 'до 199'), ('2', '200 - 299'), ('3', '300 - 449'), ( '4', 'от 450') def queryset(self, request, queryset): if self.value() == '1': return queryset.filter(price__gte=0, price__lte=199) if self.value() == '2': return queryset.filter(price__gte=200, price__lte=299) return go() if self.value() == '3': return queryset.filter(price__gte=300, price__lte=449) if self.value() == '4': return queryset.filter(price__gte=200, price__lte=299) list_display = ('get_image_html', 'id', 'section_id', 'title', 'getSize', 'getPrice') list_displat_links = '' inlines = [ProductCompositionInline] search_fields = ['title'] list_filter = ['section_id', PriceListFilter] def get_image_html(self, obj): return format_html( '<img src = "{}" style = "height: 30px; border-radius: 5px;"></img>' , obj.image.url) get_image_html.short_description = 'Фото товара' def getPrice(self, obj): try: object = Stock.objects.get(id=obj.id, status=True) return format_html('<del>{} грн.</del> <span>{} грн. </span>'. format(obj.price, object.value)) except: pass return format_html('<span>' + str(obj.price) + ' грн.' + '</span>') getPrice.short_description = 'Цена' def getSize(self, obj): return str(obj.size) + obj.unitSize getSize.short_description = 'Вес' @admin.register(Order) class OrderAdmin(admin.ModelAdmin): class PriceListFilter(admin.SimpleListFilter): title = 'Цена' parameter_name = 'цена' def lookups(self, request, model_admin): return ('1', 'до 199'), ('2', '200 - 299'), ('3', '300 - 449'), ( '4', 'от 450') def queryset(self, request, queryset): if self.value() == '1': return queryset.filter(price__gte=0, price__lte=199) if self.value() == '2': return queryset.filter(price__gte=200, price__lte=299) if self.value() == '3': return queryset.filter(price__gte=300, price__lte=449) if self.value() == '4': return queryset.filter(price__gte=200, price__lte=299) list_display = 'id', 'dateTimeOrder', 'price', 'status' list_filter = ['dateTimeOrder', PriceListFilter, 'status'] list_editable = ['status'] inlines = [OrderInline] @admin.register(Client) class ClientAdmin(admin.ModelAdmin): list_display = 'id', 'name', 'phone_number' inlines = [Client_OrderInline] @admin.register(Section) class SectionAdmin(admin.ModelAdmin): list_display = 'id', 'title' class StockAdmin(admin.ModelAdmin): list_display = 'product_id', 'value', 'status' search_fields = ['product_id__title'] list_filter = ['status'] <mask token>
<mask token> class OrderInline(admin.TabularInline): <mask token> class Client_OrderInline(admin.TabularInline): model = Order class MyAdminSite(AdminSite): site_header = 'Pizza-Day' index_template = 'admin/index.html' @admin.register(Product) class ProductAdmin(admin.ModelAdmin): class PriceListFilter(admin.SimpleListFilter): title = 'Цена' parameter_name = 'цена' def lookups(self, request, model_admin): return ('1', 'до 199'), ('2', '200 - 299'), ('3', '300 - 449'), ( '4', 'от 450') def queryset(self, request, queryset): if self.value() == '1': return queryset.filter(price__gte=0, price__lte=199) if self.value() == '2': return queryset.filter(price__gte=200, price__lte=299) return go() if self.value() == '3': return queryset.filter(price__gte=300, price__lte=449) if self.value() == '4': return queryset.filter(price__gte=200, price__lte=299) list_display = ('get_image_html', 'id', 'section_id', 'title', 'getSize', 'getPrice') list_displat_links = '' inlines = [ProductCompositionInline] search_fields = ['title'] list_filter = ['section_id', PriceListFilter] def get_image_html(self, obj): return format_html( '<img src = "{}" style = "height: 30px; border-radius: 5px;"></img>' , obj.image.url) get_image_html.short_description = 'Фото товара' def getPrice(self, obj): try: object = Stock.objects.get(id=obj.id, status=True) return format_html('<del>{} грн.</del> <span>{} грн. </span>'. format(obj.price, object.value)) except: pass return format_html('<span>' + str(obj.price) + ' грн.' + '</span>') getPrice.short_description = 'Цена' def getSize(self, obj): return str(obj.size) + obj.unitSize getSize.short_description = 'Вес' @admin.register(Order) class OrderAdmin(admin.ModelAdmin): class PriceListFilter(admin.SimpleListFilter): title = 'Цена' parameter_name = 'цена' def lookups(self, request, model_admin): return ('1', 'до 199'), ('2', '200 - 299'), ('3', '300 - 449'), ( '4', 'от 450') def queryset(self, request, queryset): if self.value() == '1': return queryset.filter(price__gte=0, price__lte=199) if self.value() == '2': return queryset.filter(price__gte=200, price__lte=299) if self.value() == '3': return queryset.filter(price__gte=300, price__lte=449) if self.value() == '4': return queryset.filter(price__gte=200, price__lte=299) list_display = 'id', 'dateTimeOrder', 'price', 'status' list_filter = ['dateTimeOrder', PriceListFilter, 'status'] list_editable = ['status'] inlines = [OrderInline] @admin.register(Client) class ClientAdmin(admin.ModelAdmin): list_display = 'id', 'name', 'phone_number' inlines = [Client_OrderInline] @admin.register(Section) class SectionAdmin(admin.ModelAdmin): list_display = 'id', 'title' class StockAdmin(admin.ModelAdmin): list_display = 'product_id', 'value', 'status' search_fields = ['product_id__title'] list_filter = ['status'] <mask token>
from django.contrib import admin from django.contrib.admin.sites import AdminSite from obp.models import * from django.utils.html import format_html from jet.admin import CompactInline from jet.dashboard import modules from jet.dashboard.dashboard import Dashboard, AppIndexDashboard class ProductCompositionInline(admin.TabularInline): model = Product_composition class OrderInline(admin.TabularInline): model = Product_order class Client_OrderInline(admin.TabularInline): model = Order class MyAdminSite(AdminSite): site_header = 'Pizza-Day' index_template = 'admin/index.html' @admin.register(Product) class ProductAdmin(admin.ModelAdmin): class PriceListFilter(admin.SimpleListFilter): title = 'Цена' parameter_name = 'цена' def lookups(self, request, model_admin): return ('1', 'до 199'), ('2', '200 - 299'), ('3', '300 - 449'), ( '4', 'от 450') def queryset(self, request, queryset): if self.value() == '1': return queryset.filter(price__gte=0, price__lte=199) if self.value() == '2': return queryset.filter(price__gte=200, price__lte=299) return go() if self.value() == '3': return queryset.filter(price__gte=300, price__lte=449) if self.value() == '4': return queryset.filter(price__gte=200, price__lte=299) list_display = ('get_image_html', 'id', 'section_id', 'title', 'getSize', 'getPrice') list_displat_links = '' inlines = [ProductCompositionInline] search_fields = ['title'] list_filter = ['section_id', PriceListFilter] def get_image_html(self, obj): return format_html( '<img src = "{}" style = "height: 30px; border-radius: 5px;"></img>' , obj.image.url) get_image_html.short_description = 'Фото товара' def getPrice(self, obj): try: object = Stock.objects.get(id=obj.id, status=True) return format_html('<del>{} грн.</del> <span>{} грн. </span>'. format(obj.price, object.value)) except: pass return format_html('<span>' + str(obj.price) + ' грн.' + '</span>') getPrice.short_description = 'Цена' def getSize(self, obj): return str(obj.size) + obj.unitSize getSize.short_description = 'Вес' @admin.register(Order) class OrderAdmin(admin.ModelAdmin): class PriceListFilter(admin.SimpleListFilter): title = 'Цена' parameter_name = 'цена' def lookups(self, request, model_admin): return ('1', 'до 199'), ('2', '200 - 299'), ('3', '300 - 449'), ( '4', 'от 450') def queryset(self, request, queryset): if self.value() == '1': return queryset.filter(price__gte=0, price__lte=199) if self.value() == '2': return queryset.filter(price__gte=200, price__lte=299) if self.value() == '3': return queryset.filter(price__gte=300, price__lte=449) if self.value() == '4': return queryset.filter(price__gte=200, price__lte=299) list_display = 'id', 'dateTimeOrder', 'price', 'status' list_filter = ['dateTimeOrder', PriceListFilter, 'status'] list_editable = ['status'] inlines = [OrderInline] @admin.register(Client) class ClientAdmin(admin.ModelAdmin): list_display = 'id', 'name', 'phone_number' inlines = [Client_OrderInline] @admin.register(Section) class SectionAdmin(admin.ModelAdmin): list_display = 'id', 'title' class StockAdmin(admin.ModelAdmin): list_display = 'product_id', 'value', 'status' search_fields = ['product_id__title'] list_filter = ['status'] admin_site = MyAdminSite(name='myadmin') admin_site.register(Product, ProductAdmin) admin_site.register(Client, ClientAdmin) admin_site.register(Order, OrderAdmin) admin_site.register(Section, SectionAdmin) admin_site.register(Stock, StockAdmin) admin_site.register(Product_comment) admin_site.register(Client_Auth) admin_site.register(Special_offers) admin_site.register(Product_rating)
from django.contrib import admin from django.contrib.admin.sites import AdminSite from obp.models import * from django.utils.html import format_html from jet.admin import CompactInline #from django.utils.translation import ugettext_lazy as _ from jet.dashboard import modules from jet.dashboard.dashboard import Dashboard, AppIndexDashboard # Register your models here. #admin.site.register(Special_offers) #admin.site.register(Stock) #admin.site.register(Product_order) class ProductCompositionInline(admin.TabularInline): model = Product_composition class OrderInline(admin.TabularInline): model = Product_order class Client_OrderInline(admin.TabularInline): model = Order class MyAdminSite(AdminSite): site_header = 'Pizza-Day' index_template = "admin/index.html" @admin.register(Product) class ProductAdmin(admin.ModelAdmin): #Создание ценового фильтра class PriceListFilter(admin.SimpleListFilter): title = 'Цена' parameter_name = 'цена' #Название фильтров def lookups(self, request, model_admin): return ( ('1', 'до 199'), ('2', '200 - 299'), ('3', '300 - 449'), ('4', 'от 450'), ) #Запрос на выборку def queryset(self, request, queryset): if self.value() == '1': return queryset.filter(price__gte= 0, price__lte=199) if self.value() == '2': return queryset.filter(price__gte = 200, price__lte = 299) return go() if self.value() == '3': return queryset.filter(price__gte = 300, price__lte = 449) if self.value() == '4': return queryset.filter(price__gte=200, price__lte=299) #Отображаемые поля list_display = ('get_image_html', 'id', 'section_id', 'title', 'getSize', 'getPrice' ) list_displat_links = ('') inlines = [ ProductCompositionInline ] #Поле по которому можно сделать поиск search_fields = ['title'] #Список фильтраций list_filter = ['section_id', PriceListFilter] #Получение html блока с рисунком товара def get_image_html(self, obj): return format_html('<img src = "{}" style = "height: 30px; border-radius: 5px;"></img>', obj.image.url) get_image_html.short_description = "Фото товара" #Получение цены def getPrice(self, obj): try: object = Stock.objects.get( id = obj.id , status = True) return format_html("<del>{} грн.</del> <span>{} грн. </span>".format(obj.price, object.value) ) except: pass #else: return format_html("<span>" + str( obj.price ) + " грн." + "</span>") getPrice.short_description = "Цена" #Получение строки веса + его еденицу измерения def getSize(self, obj): return str( obj.size ) + obj.unitSize getSize.short_description = "Вес" @admin.register(Order) class OrderAdmin(admin.ModelAdmin): class PriceListFilter(admin.SimpleListFilter): title = 'Цена' parameter_name = 'цена' def lookups(self, request, model_admin): return ( ('1', 'до 199'), ('2', '200 - 299'), ('3', '300 - 449'), ('4', 'от 450'), ) def queryset(self, request, queryset): if self.value() == '1': return queryset.filter(price__gte= 0, price__lte=199) if self.value() == '2': return queryset.filter(price__gte = 200, price__lte = 299) if self.value() == '3': return queryset.filter(price__gte = 300, price__lte = 449) if self.value() == '4': return queryset.filter(price__gte=200, price__lte=299) list_display = ('id', 'dateTimeOrder', 'price', 'status' ) list_filter = ['dateTimeOrder', PriceListFilter, "status"] list_editable = ["status"] inlines = [ OrderInline ] @admin.register(Client) class ClientAdmin(admin.ModelAdmin): list_display = ('id', 'name', 'phone_number' ) inlines = [ Client_OrderInline ] @admin.register(Section) class SectionAdmin(admin.ModelAdmin): list_display = ('id', 'title') class StockAdmin(admin.ModelAdmin): list_display = ("product_id", "value", "status" ) search_fields = ['product_id__title'] list_filter = ['status'] admin_site = MyAdminSite(name='myadmin') admin_site.register(Product, ProductAdmin) admin_site.register(Client, ClientAdmin) admin_site.register(Order, OrderAdmin) admin_site.register(Section, SectionAdmin) admin_site.register(Stock, StockAdmin) admin_site.register(Product_comment) admin_site.register(Client_Auth) admin_site.register(Special_offers) admin_site.register(Product_rating) # # # class CustomIndexDashboard(Dashboard): # columns = 3 # # def init_with_context(self, context): # self.available_children.append(modules.LinkList) # self.children.append(modules.LinkList( # _('Support'), # children=[ # { # 'title': _('Django documentation'), # 'url': 'http://docs.djangoproject.com/', # 'external': True, # }, # { # 'title': _('Django "django-users" mailing list'), # 'url': 'http://groups.google.com/group/django-users', # 'external': True, # }, # { # 'title': _('Django irc channel'), # 'url': 'irc://irc.freenode.net/django', # 'external': True, # }, # ], # column=0, # order=0 # ))
[ 16, 17, 18, 24, 25 ]
1,740
5ab8d9eab30d72557f1a85b5b82c0df456e3843d
<mask token> def length_of_cars(car): return len(car) <mask token>
<mask token> def length(data): return len(data) <mask token> def year(data): return data['year'] <mask token> def length_of_cars(car): return len(car) <mask token>
<mask token> cars.sort() print(cars) print() cars.sort(reverse=True) print(cars) print() def length(data): return len(data) cars.sort(key=length) print(cars) print() cars.sort(key=lambda x: x[1]) print(cars) <mask token> def year(data): return data['year'] cars.sort(key=year) print(cars) print() <mask token> def length_of_cars(car): return len(car) cars.sort(reverse=True, key=length_of_cars) print(cars)
cars = ['Ford', 'BMW', 'ea', 'Volvo'] cars.sort() print(cars) print() cars.sort(reverse=True) print(cars) print() def length(data): return len(data) cars.sort(key=length) print(cars) print() cars.sort(key=lambda x: x[1]) print(cars) cars = [{'car': 'Ford', 'year': 2005}, {'car': 'Mitsubishi', 'year': 2000}, {'car': 'BMW', 'year': 2019}, {'car': 'VW', 'year': 2011}] def year(data): return data['year'] cars.sort(key=year) print(cars) print() cars = ['Ford', 'Mitsubishi', 'BMW', 'VW'] def length_of_cars(car): return len(car) cars.sort(reverse=True, key=length_of_cars) print(cars)
# The sort() method sorts the list ascending by default. #syntax # list.sort(reverse=True|False, key=myFunc) # Parameter Description # reverse Optional. reverse=True will sort the list descending. Default is reverse=False # key Optional. A function to specify the sorting criteria(s) cars = ['Ford', 'BMW','ea','Volvo'] cars.sort() print(cars) print() cars.sort(reverse = True) print(cars) print() # Sort the list by the length of the values: def length(data): return len(data) cars.sort(key= length) print(cars) print() cars.sort(key= lambda x : x[1]) print(cars) #each item in the iterable is passed into the function individually # Sort a list of dictionaries based on the "year" value of the dictionaries: cars = [ {'car': 'Ford', 'year': 2005}, {'car': 'Mitsubishi', 'year': 2000}, {'car': 'BMW', 'year': 2019}, {'car': 'VW', 'year': 2011} ] def year(data): return data['year'] cars.sort(key=year) print(cars) print() # Sort the list by the length of the values and reversed: cars = ['Ford', 'Mitsubishi', 'BMW', 'VW'] def length_of_cars(car): return len(car) cars.sort(reverse= True, key= length_of_cars) print(cars)
[ 1, 3, 4, 5, 6 ]
1,741
31064145ae2702f93a475d0957395c62a6b320ee
<mask token>
<mask token> print(hex(n1)) print(hex(n2)) print(abs(-119999))
n1 = 255 n2 = 1000 print(hex(n1)) print(hex(n2)) print(abs(-119999))
# -*- coding: utf-8 -*- # author : rovo98 # date: 2018.3.19 # this is a demo for test calling functions. n1 = 255 n2 = 1000 print(hex(n1)) print(hex(n2)) print(abs(-119999))
null
[ 0, 1, 2, 3 ]
1,742
6291375738db7914d551f9a1c6d2897b7d236b87
<mask token> class PrimerForm(forms.Form): <mask token> fasta = forms.CharField(initial='') primer_min = forms.IntegerField(initial=18, max_value=35) primer_max = forms.IntegerField(initial=27, max_value=35) primer_optimum = forms.IntegerField(initial=20, max_value=35) amplicon_min = forms.IntegerField(initial=60, min_value=50, max_value=20000 ) amplicon_max = forms.IntegerField(initial=80, min_value=50, max_value=20000 ) tm_min = forms.FloatField(initial=59, min_value=0, max_value=100) tm_max = forms.FloatField(initial=61, min_value=0, max_value=100) tm_optimum = forms.FloatField(initial=60, min_value=0, max_value=100) self_dimer_any = forms.FloatField(initial=8.0, min_value=0, max_value= 9999.99) self_dimer_end = forms.FloatField(initial=3.0, min_value=0, max_value= 9999.99) gc_min = forms.FloatField(initial=20.0, min_value=0, max_value=100) gc_clamp = forms.IntegerField(initial=0) def clean(self): """Validate and return user input.""" data = self.cleaned_data data['fasta'] = Fasta.from_string(data['fasta']) validate_fasta(data) return data <mask token>
<mask token> class PrimerForm(forms.Form): """Collect user input to run primer prediction.""" fasta = forms.CharField(initial='') primer_min = forms.IntegerField(initial=18, max_value=35) primer_max = forms.IntegerField(initial=27, max_value=35) primer_optimum = forms.IntegerField(initial=20, max_value=35) amplicon_min = forms.IntegerField(initial=60, min_value=50, max_value=20000 ) amplicon_max = forms.IntegerField(initial=80, min_value=50, max_value=20000 ) tm_min = forms.FloatField(initial=59, min_value=0, max_value=100) tm_max = forms.FloatField(initial=61, min_value=0, max_value=100) tm_optimum = forms.FloatField(initial=60, min_value=0, max_value=100) self_dimer_any = forms.FloatField(initial=8.0, min_value=0, max_value= 9999.99) self_dimer_end = forms.FloatField(initial=3.0, min_value=0, max_value= 9999.99) gc_min = forms.FloatField(initial=20.0, min_value=0, max_value=100) gc_clamp = forms.IntegerField(initial=0) def clean(self): """Validate and return user input.""" data = self.cleaned_data data['fasta'] = Fasta.from_string(data['fasta']) validate_fasta(data) return data <mask token>
<mask token> class PrimerForm(forms.Form): """Collect user input to run primer prediction.""" fasta = forms.CharField(initial='') primer_min = forms.IntegerField(initial=18, max_value=35) primer_max = forms.IntegerField(initial=27, max_value=35) primer_optimum = forms.IntegerField(initial=20, max_value=35) amplicon_min = forms.IntegerField(initial=60, min_value=50, max_value=20000 ) amplicon_max = forms.IntegerField(initial=80, min_value=50, max_value=20000 ) tm_min = forms.FloatField(initial=59, min_value=0, max_value=100) tm_max = forms.FloatField(initial=61, min_value=0, max_value=100) tm_optimum = forms.FloatField(initial=60, min_value=0, max_value=100) self_dimer_any = forms.FloatField(initial=8.0, min_value=0, max_value= 9999.99) self_dimer_end = forms.FloatField(initial=3.0, min_value=0, max_value= 9999.99) gc_min = forms.FloatField(initial=20.0, min_value=0, max_value=100) gc_clamp = forms.IntegerField(initial=0) def clean(self): """Validate and return user input.""" data = self.cleaned_data data['fasta'] = Fasta.from_string(data['fasta']) validate_fasta(data) return data def validate_fasta(data): """Validate input sequence lengths.""" for sequence in data['fasta'].values(): print(f'Sequence length {len(sequence)} nt') if len(sequence) < data['amplicon_min']: raise ValidationError({'fasta': f'Input sequence must be longer than minimum' + f" amplicon length parameter ({data['amplicon_min']} nt)"})
<mask token> from django import forms from django.core.exceptions import ValidationError from .fasta import Fasta class PrimerForm(forms.Form): """Collect user input to run primer prediction.""" fasta = forms.CharField(initial='') primer_min = forms.IntegerField(initial=18, max_value=35) primer_max = forms.IntegerField(initial=27, max_value=35) primer_optimum = forms.IntegerField(initial=20, max_value=35) amplicon_min = forms.IntegerField(initial=60, min_value=50, max_value=20000 ) amplicon_max = forms.IntegerField(initial=80, min_value=50, max_value=20000 ) tm_min = forms.FloatField(initial=59, min_value=0, max_value=100) tm_max = forms.FloatField(initial=61, min_value=0, max_value=100) tm_optimum = forms.FloatField(initial=60, min_value=0, max_value=100) self_dimer_any = forms.FloatField(initial=8.0, min_value=0, max_value= 9999.99) self_dimer_end = forms.FloatField(initial=3.0, min_value=0, max_value= 9999.99) gc_min = forms.FloatField(initial=20.0, min_value=0, max_value=100) gc_clamp = forms.IntegerField(initial=0) def clean(self): """Validate and return user input.""" data = self.cleaned_data data['fasta'] = Fasta.from_string(data['fasta']) validate_fasta(data) return data def validate_fasta(data): """Validate input sequence lengths.""" for sequence in data['fasta'].values(): print(f'Sequence length {len(sequence)} nt') if len(sequence) < data['amplicon_min']: raise ValidationError({'fasta': f'Input sequence must be longer than minimum' + f" amplicon length parameter ({data['amplicon_min']} nt)"})
"""Primer3 input form. For details on input params see: https://primer3.org/manual.html#globalTags """ from django import forms from django.core.exceptions import ValidationError from .fasta import Fasta class PrimerForm(forms.Form): """Collect user input to run primer prediction.""" fasta = forms.CharField(initial="") # Primer size range primer_min = forms.IntegerField(initial=18, max_value=35) primer_max = forms.IntegerField(initial=27, max_value=35) primer_optimum = forms.IntegerField(initial=20, max_value=35) # Amplicon size range amplicon_min = forms.IntegerField( initial=60, min_value=50, max_value=20000) amplicon_max = forms.IntegerField( initial=80, min_value=50, max_value=20000) # Primer melting temperature range tm_min = forms.FloatField(initial=59, min_value=0, max_value=100) tm_max = forms.FloatField(initial=61, min_value=0, max_value=100) tm_optimum = forms.FloatField(initial=60, min_value=0, max_value=100) # Max self complement self_dimer_any = forms.FloatField( initial=8.0, min_value=0, max_value=9999.99) # Max self complement 3' self_dimer_end = forms.FloatField( initial=3.0, min_value=0, max_value=9999.99) # GC content gc_min = forms.FloatField(initial=20.0, min_value=0, max_value=100) gc_clamp = forms.IntegerField(initial=0) def clean(self): """Validate and return user input.""" data = self.cleaned_data data['fasta'] = Fasta.from_string(data['fasta']) validate_fasta(data) return data def validate_fasta(data): """Validate input sequence lengths.""" for sequence in data['fasta'].values(): print(f'Sequence length {len(sequence)} nt') if len(sequence) < data['amplicon_min']: raise ValidationError({'fasta': f'Input sequence must be longer than minimum' + f' amplicon length parameter ({data["amplicon_min"]} nt)' })
[ 3, 4, 5, 6, 7 ]
1,743
9e34fcec3af746af37cb68fd8617c706cc1066f6
<mask token> class testsolution(TestCase): def setUp(self): self.solution = Solution() self.inout = [([1, 2, 3, 4], [24, 12, 8, 6]), ([4, 5, 1, 8, 2], [80, 64, 320, 40, 160])] def test_productExceptSelf(self): for p1, p2 in self.inout: with self.subTest(input=p1, expected=p2): self.assertEqual(self.solution.productExceptSelf(p1), p2) <mask token>
<mask token> class Solution: <mask token> class testsolution(TestCase): def setUp(self): self.solution = Solution() self.inout = [([1, 2, 3, 4], [24, 12, 8, 6]), ([4, 5, 1, 8, 2], [80, 64, 320, 40, 160])] def test_productExceptSelf(self): for p1, p2 in self.inout: with self.subTest(input=p1, expected=p2): self.assertEqual(self.solution.productExceptSelf(p1), p2) <mask token>
<mask token> class Solution: def productExceptSelf(self, nums): right, rs = 1, [1] * len(nums) for i in range(1, len(nums)): rs[i] = nums[i - 1] * rs[i - 1] for i in range(len(nums) - 1, -1, -1): rs[i], right = rs[i] * right, right * nums[i] return rs class testsolution(TestCase): def setUp(self): self.solution = Solution() self.inout = [([1, 2, 3, 4], [24, 12, 8, 6]), ([4, 5, 1, 8, 2], [80, 64, 320, 40, 160])] def test_productExceptSelf(self): for p1, p2 in self.inout: with self.subTest(input=p1, expected=p2): self.assertEqual(self.solution.productExceptSelf(p1), p2) <mask token>
<mask token> class Solution: def productExceptSelf(self, nums): right, rs = 1, [1] * len(nums) for i in range(1, len(nums)): rs[i] = nums[i - 1] * rs[i - 1] for i in range(len(nums) - 1, -1, -1): rs[i], right = rs[i] * right, right * nums[i] return rs class testsolution(TestCase): def setUp(self): self.solution = Solution() self.inout = [([1, 2, 3, 4], [24, 12, 8, 6]), ([4, 5, 1, 8, 2], [80, 64, 320, 40, 160])] def test_productExceptSelf(self): for p1, p2 in self.inout: with self.subTest(input=p1, expected=p2): self.assertEqual(self.solution.productExceptSelf(p1), p2) if __name__ == '__main__': main()
from unittest import TestCase, main class Solution: def productExceptSelf(self, nums): right, rs = 1, [1]*len(nums) for i in range(1,len(nums)): rs[i] = nums[i-1]*rs[i-1] for i in range(len(nums)-1, -1, -1): rs[i], right = rs[i]*right, right*nums[i] return rs class testsolution(TestCase): def setUp(self): self.solution = Solution() self.inout = [ ([1,2,3,4], [24,12,8,6]), ([4,5,1,8,2], [80,64,320,40,160]) ] def test_productExceptSelf(self): for p1, p2 in self.inout: with self.subTest(input=p1, expected=p2): self.assertEqual(self.solution.productExceptSelf(p1), p2) if __name__ == "__main__": main()
[ 3, 4, 5, 6, 8 ]
1,744
e8971b3d183ded99a5fc03f031ef807280b8cc7f
<mask token>
<mask token> assert len(sys.argv) == 2 <mask token> print("""Converting maggies from catalog %s""" % fname) <mask token> np.savetxt('./output/maggies.txt', to_exp)
<mask token> assert len(sys.argv) == 2 fname = sys.argv[1] print("""Converting maggies from catalog %s""" % fname) df = pd.read_csv(fname) z = df['z'].values mod_u = df['cModelMag_u'].values mod_g = df['cModelMag_g'].values mod_r = df['cModelMag_r'].values mod_i = df['cModelMag_i'].values mod_z = df['cModelMag_z'].values ext_u = df['extinction_u'].values ext_g = df['extinction_g'].values ext_r = df['extinction_r'].values ext_i = df['extinction_i'].values ext_z = df['extinction_z'].values err_u = df['cModelMagErr_u'].values err_g = df['cModelMagErr_g'].values err_r = df['cModelMagErr_r'].values err_i = df['cModelMagErr_i'].values err_z = df['cModelMagErr_z'].values dered_u = mod_u - ext_u dered_g = mod_g - ext_g dered_r = mod_r - ext_r dered_i = mod_i - ext_i dered_z = mod_z - ext_z b = np.array([1.4, 0.9, 1.2, 1.8, 7.4]) * 1e-10 flux_u = 2.0 * b[0] * np.sinh(-np.log(10.0) / 2.5 * dered_u - np.log(b[0])) flux_g = 2.0 * b[1] * np.sinh(-np.log(10.0) / 2.5 * dered_g - np.log(b[1])) flux_r = 2.0 * b[2] * np.sinh(-np.log(10.0) / 2.5 * dered_r - np.log(b[2])) flux_i = 2.0 * b[3] * np.sinh(-np.log(10.0) / 2.5 * dered_i - np.log(b[3])) flux_z = 2.0 * b[4] * np.sinh(-np.log(10.0) / 2.5 * dered_z - np.log(b[4])) ivar_u = 2.0 * b[0] * np.cosh(-np.log(10.0) / 2.5 * dered_u - np.log(b[0])) * ( -np.log(10) / 2.5) * err_u ivar_g = 2.0 * b[1] * np.cosh(-np.log(10.0) / 2.5 * dered_g - np.log(b[1])) * ( -np.log(10) / 2.5) * err_g ivar_r = 2.0 * b[2] * np.cosh(-np.log(10.0) / 2.5 * dered_r - np.log(b[2])) * ( -np.log(10) / 2.5) * err_r ivar_i = 2.0 * b[3] * np.cosh(-np.log(10.0) / 2.5 * dered_i - np.log(b[3])) * ( -np.log(10) / 2.5) * err_i ivar_z = 2.0 * b[4] * np.cosh(-np.log(10.0) / 2.5 * dered_z - np.log(b[4])) * ( -np.log(10) / 2.5) * err_z ivar_u = 1.0 / ivar_u ** 2.0 ivar_g = 1.0 / ivar_g ** 2.0 ivar_r = 1.0 / ivar_r ** 2.0 ivar_i = 1.0 / ivar_i ** 2.0 ivar_z = 1.0 / ivar_z ** 2.0 to_exp = np.transpose([z, flux_u, flux_g, flux_r, flux_i, flux_z, ivar_u, ivar_g, ivar_r, ivar_i, ivar_z]) np.savetxt('./output/maggies.txt', to_exp)
<mask token> import numpy as np import pandas as pd import sys assert len(sys.argv) == 2 fname = sys.argv[1] print("""Converting maggies from catalog %s""" % fname) df = pd.read_csv(fname) z = df['z'].values mod_u = df['cModelMag_u'].values mod_g = df['cModelMag_g'].values mod_r = df['cModelMag_r'].values mod_i = df['cModelMag_i'].values mod_z = df['cModelMag_z'].values ext_u = df['extinction_u'].values ext_g = df['extinction_g'].values ext_r = df['extinction_r'].values ext_i = df['extinction_i'].values ext_z = df['extinction_z'].values err_u = df['cModelMagErr_u'].values err_g = df['cModelMagErr_g'].values err_r = df['cModelMagErr_r'].values err_i = df['cModelMagErr_i'].values err_z = df['cModelMagErr_z'].values dered_u = mod_u - ext_u dered_g = mod_g - ext_g dered_r = mod_r - ext_r dered_i = mod_i - ext_i dered_z = mod_z - ext_z b = np.array([1.4, 0.9, 1.2, 1.8, 7.4]) * 1e-10 flux_u = 2.0 * b[0] * np.sinh(-np.log(10.0) / 2.5 * dered_u - np.log(b[0])) flux_g = 2.0 * b[1] * np.sinh(-np.log(10.0) / 2.5 * dered_g - np.log(b[1])) flux_r = 2.0 * b[2] * np.sinh(-np.log(10.0) / 2.5 * dered_r - np.log(b[2])) flux_i = 2.0 * b[3] * np.sinh(-np.log(10.0) / 2.5 * dered_i - np.log(b[3])) flux_z = 2.0 * b[4] * np.sinh(-np.log(10.0) / 2.5 * dered_z - np.log(b[4])) ivar_u = 2.0 * b[0] * np.cosh(-np.log(10.0) / 2.5 * dered_u - np.log(b[0])) * ( -np.log(10) / 2.5) * err_u ivar_g = 2.0 * b[1] * np.cosh(-np.log(10.0) / 2.5 * dered_g - np.log(b[1])) * ( -np.log(10) / 2.5) * err_g ivar_r = 2.0 * b[2] * np.cosh(-np.log(10.0) / 2.5 * dered_r - np.log(b[2])) * ( -np.log(10) / 2.5) * err_r ivar_i = 2.0 * b[3] * np.cosh(-np.log(10.0) / 2.5 * dered_i - np.log(b[3])) * ( -np.log(10) / 2.5) * err_i ivar_z = 2.0 * b[4] * np.cosh(-np.log(10.0) / 2.5 * dered_z - np.log(b[4])) * ( -np.log(10) / 2.5) * err_z ivar_u = 1.0 / ivar_u ** 2.0 ivar_g = 1.0 / ivar_g ** 2.0 ivar_r = 1.0 / ivar_r ** 2.0 ivar_i = 1.0 / ivar_i ** 2.0 ivar_z = 1.0 / ivar_z ** 2.0 to_exp = np.transpose([z, flux_u, flux_g, flux_r, flux_i, flux_z, ivar_u, ivar_g, ivar_r, ivar_i, ivar_z]) np.savetxt('./output/maggies.txt', to_exp)
''' Converts luptitudes to maggies and stores in folder output Written by P. Gallardo ''' import numpy as np import pandas as pd import sys assert len(sys.argv) == 2 # usage: lups2maggies.py /path/to/cat.csv fname = sys.argv[1] print("Converting maggies from catalog \n%s" % fname) df = pd.read_csv(fname) z = df['z'].values mod_u = df['cModelMag_u'].values mod_g = df['cModelMag_g'].values mod_r = df['cModelMag_r'].values mod_i = df['cModelMag_i'].values mod_z = df['cModelMag_z'].values ext_u = df['extinction_u'].values ext_g = df['extinction_g'].values ext_r = df['extinction_r'].values ext_i = df['extinction_i'].values ext_z = df['extinction_z'].values err_u = df['cModelMagErr_u'].values err_g = df['cModelMagErr_g'].values err_r = df['cModelMagErr_r'].values err_i = df['cModelMagErr_i'].values err_z = df['cModelMagErr_z'].values dered_u = mod_u - ext_u dered_g = mod_g - ext_g dered_r = mod_r - ext_r dered_i = mod_i - ext_i dered_z = mod_z - ext_z b = np.array([1.4, 0.9, 1.2, 1.8, 7.4]) * 1e-10 flux_u = 2.*b[0] * np.sinh(-np.log(10.)/2.5*dered_u-np.log(b[0])) flux_g = 2.*b[1] * np.sinh(-np.log(10.)/2.5*dered_g-np.log(b[1])) flux_r = 2.*b[2] * np.sinh(-np.log(10.)/2.5*dered_r-np.log(b[2])) flux_i = 2.*b[3] * np.sinh(-np.log(10.)/2.5*dered_i-np.log(b[3])) flux_z = 2.*b[4] * np.sinh(-np.log(10.)/2.5*dered_z-np.log(b[4])) ivar_u = 2.*b[0]*np.cosh(-np.log(10.)/2.5*dered_u-np.log(b[0]))*(-np.log(10)/2.5)*err_u # noqa ivar_g = 2.*b[1]*np.cosh(-np.log(10.)/2.5*dered_g-np.log(b[1]))*(-np.log(10)/2.5)*err_g # noqa ivar_r = 2.*b[2]*np.cosh(-np.log(10.)/2.5*dered_r-np.log(b[2]))*(-np.log(10)/2.5)*err_r # noqa ivar_i = 2.*b[3]*np.cosh(-np.log(10.)/2.5*dered_i-np.log(b[3]))*(-np.log(10)/2.5)*err_i # noqa ivar_z = 2.*b[4]*np.cosh(-np.log(10.)/2.5*dered_z-np.log(b[4]))*(-np.log(10)/2.5)*err_z # noqa ivar_u = 1./ivar_u**2. ivar_g = 1./ivar_g**2. ivar_r = 1./ivar_r**2. ivar_i = 1./ivar_i**2. ivar_z = 1./ivar_z**2. to_exp = np.transpose([z, flux_u, flux_g, flux_r, flux_i, flux_z, ivar_u, ivar_g, ivar_r, ivar_i, ivar_z]) np.savetxt('./output/maggies.txt', to_exp)
[ 0, 1, 2, 3, 4 ]
1,745
ca009022832963934230e356f9ea9eaedac7378b
<mask token> def update_album(user, imgur_client, reddit_client): return <mask token> def is_gif(url): return True <mask token>
<mask token> def respond_to_comment(comment, album_user, album_url, num_images, num_gifs): body = ( 'Here is an album of all unique image/gif posts made by [{user}]({album_url}). ({num_images} images)' .format(user=album_user.name, album_url=album_url, num_images= num_images, num_gifs=num_gifs)) comment.reply(body) return def create_album(user, imgur_client, reddit_client): album = imgur_client.create_album({'title': user.name, 'privacy': 'hidden'} ) urls = [] images = [] for submission in reddit_client.redditor(user.name).submissions.top('all'): if not submission.is_self and submission.url not in urls: urls.append(submission.url) try: image = imgur_client.upload_from_url(submission.url, config =None, anon=False) images.append(image['id']) sleep(8) except: None if len(images) > 0: imgur_client.album_add_images(album['id'], images) return album['id'] def update_album(user, imgur_client, reddit_client): return def is_image(url): return True def is_gif(url): return True def run_bot(): reddit = praw.Reddit(client_id=config.CLIENT_ID_REDDIT, client_secret= config.SECRET_CODE_REDDIT, user_agent=config.USER_AGENT_REDDIT, username=config.USERNAME_REDDIT, password=config.PASSWORD_REDDIT) client = ImgurClient(client_id=config.CLIENT_ID_IMGUR, client_secret= config.SECRET_CODE_IMGUR, access_token=config.ACCESS_TOKEN_IMGUR, refresh_token=config.REFRESH_TOKEN_IMGUR) login_time = datetime.datetime.now(datetime.timezone.utc).timestamp() print('Bot Initiation Successful') print('Logged in at: {time}'.format(time=login_time)) print('Logged into Reddit as: {user}'.format(user=reddit.user.me().name)) print('Logged into Imgur as: {imgur_user}'.format(imgur_user='')) print('{api_calls} Imgur API calls remaining for the day.'.format( api_calls=client.credits['ClientRemaining'])) print('----------') default_url = 'https://imgur.com/' command_call = '!compile-album' subreddit = reddit.subreddit('all') for comment in subreddit.stream.comments(): if command_call in comment.body and comment.created_utc > login_time: parent_id = comment.parent_id if parent_id[0:3] == 't1_': parent_comment = reddit.comment(id=parent_id[3:]) album_id = create_album(parent_comment.author, client, reddit) album = client.get_album(album_id) respond_to_comment(comment, parent_comment.author, album. link, album.images_count, 0) elif parent_id[0:3] == 't3_': parent_submission = reddit.submission(id=parent_id[3:]) album_id = create_album(parent_submission.author, client, reddit) album = client.get_album(album_id) respond_to_comment(comment, parent_submission.author, album .link, album.images_count, 0) <mask token>
<mask token> def respond_to_comment(comment, album_user, album_url, num_images, num_gifs): body = ( 'Here is an album of all unique image/gif posts made by [{user}]({album_url}). ({num_images} images)' .format(user=album_user.name, album_url=album_url, num_images= num_images, num_gifs=num_gifs)) comment.reply(body) return def create_album(user, imgur_client, reddit_client): album = imgur_client.create_album({'title': user.name, 'privacy': 'hidden'} ) urls = [] images = [] for submission in reddit_client.redditor(user.name).submissions.top('all'): if not submission.is_self and submission.url not in urls: urls.append(submission.url) try: image = imgur_client.upload_from_url(submission.url, config =None, anon=False) images.append(image['id']) sleep(8) except: None if len(images) > 0: imgur_client.album_add_images(album['id'], images) return album['id'] def update_album(user, imgur_client, reddit_client): return def is_image(url): return True def is_gif(url): return True def run_bot(): reddit = praw.Reddit(client_id=config.CLIENT_ID_REDDIT, client_secret= config.SECRET_CODE_REDDIT, user_agent=config.USER_AGENT_REDDIT, username=config.USERNAME_REDDIT, password=config.PASSWORD_REDDIT) client = ImgurClient(client_id=config.CLIENT_ID_IMGUR, client_secret= config.SECRET_CODE_IMGUR, access_token=config.ACCESS_TOKEN_IMGUR, refresh_token=config.REFRESH_TOKEN_IMGUR) login_time = datetime.datetime.now(datetime.timezone.utc).timestamp() print('Bot Initiation Successful') print('Logged in at: {time}'.format(time=login_time)) print('Logged into Reddit as: {user}'.format(user=reddit.user.me().name)) print('Logged into Imgur as: {imgur_user}'.format(imgur_user='')) print('{api_calls} Imgur API calls remaining for the day.'.format( api_calls=client.credits['ClientRemaining'])) print('----------') default_url = 'https://imgur.com/' command_call = '!compile-album' subreddit = reddit.subreddit('all') for comment in subreddit.stream.comments(): if command_call in comment.body and comment.created_utc > login_time: parent_id = comment.parent_id if parent_id[0:3] == 't1_': parent_comment = reddit.comment(id=parent_id[3:]) album_id = create_album(parent_comment.author, client, reddit) album = client.get_album(album_id) respond_to_comment(comment, parent_comment.author, album. link, album.images_count, 0) elif parent_id[0:3] == 't3_': parent_submission = reddit.submission(id=parent_id[3:]) album_id = create_album(parent_submission.author, client, reddit) album = client.get_album(album_id) respond_to_comment(comment, parent_submission.author, album .link, album.images_count, 0) run_bot()
import praw import config from imgurpython import ImgurClient import datetime from time import sleep def respond_to_comment(comment, album_user, album_url, num_images, num_gifs): body = ( 'Here is an album of all unique image/gif posts made by [{user}]({album_url}). ({num_images} images)' .format(user=album_user.name, album_url=album_url, num_images= num_images, num_gifs=num_gifs)) comment.reply(body) return def create_album(user, imgur_client, reddit_client): album = imgur_client.create_album({'title': user.name, 'privacy': 'hidden'} ) urls = [] images = [] for submission in reddit_client.redditor(user.name).submissions.top('all'): if not submission.is_self and submission.url not in urls: urls.append(submission.url) try: image = imgur_client.upload_from_url(submission.url, config =None, anon=False) images.append(image['id']) sleep(8) except: None if len(images) > 0: imgur_client.album_add_images(album['id'], images) return album['id'] def update_album(user, imgur_client, reddit_client): return def is_image(url): return True def is_gif(url): return True def run_bot(): reddit = praw.Reddit(client_id=config.CLIENT_ID_REDDIT, client_secret= config.SECRET_CODE_REDDIT, user_agent=config.USER_AGENT_REDDIT, username=config.USERNAME_REDDIT, password=config.PASSWORD_REDDIT) client = ImgurClient(client_id=config.CLIENT_ID_IMGUR, client_secret= config.SECRET_CODE_IMGUR, access_token=config.ACCESS_TOKEN_IMGUR, refresh_token=config.REFRESH_TOKEN_IMGUR) login_time = datetime.datetime.now(datetime.timezone.utc).timestamp() print('Bot Initiation Successful') print('Logged in at: {time}'.format(time=login_time)) print('Logged into Reddit as: {user}'.format(user=reddit.user.me().name)) print('Logged into Imgur as: {imgur_user}'.format(imgur_user='')) print('{api_calls} Imgur API calls remaining for the day.'.format( api_calls=client.credits['ClientRemaining'])) print('----------') default_url = 'https://imgur.com/' command_call = '!compile-album' subreddit = reddit.subreddit('all') for comment in subreddit.stream.comments(): if command_call in comment.body and comment.created_utc > login_time: parent_id = comment.parent_id if parent_id[0:3] == 't1_': parent_comment = reddit.comment(id=parent_id[3:]) album_id = create_album(parent_comment.author, client, reddit) album = client.get_album(album_id) respond_to_comment(comment, parent_comment.author, album. link, album.images_count, 0) elif parent_id[0:3] == 't3_': parent_submission = reddit.submission(id=parent_id[3:]) album_id = create_album(parent_submission.author, client, reddit) album = client.get_album(album_id) respond_to_comment(comment, parent_submission.author, album .link, album.images_count, 0) run_bot()
import praw import config from imgurpython import ImgurClient import datetime from time import sleep def respond_to_comment(comment, album_user, album_url, num_images, num_gifs): body = "Here is an album of all unique image/gif posts made by " \ "[{user}]({album_url}). ({num_images} images" \ ")".format(user=album_user.name, album_url=album_url, num_images=num_images, num_gifs=num_gifs) comment.reply(body) return def create_album(user, imgur_client, reddit_client): album = imgur_client.create_album({"title": user.name, "privacy": "hidden"}) urls = [] images = [] for submission in reddit_client.redditor(user.name).submissions.top("all"): if not submission.is_self and submission.url not in urls: urls.append(submission.url) try: image = imgur_client.upload_from_url(submission.url, config=None, anon=False) images.append(image["id"]) # Sleep command to avoid exceeding rate limit # 86400 seconds per day / 12500 requests per day = 1 request every 6.9 seconds sleep(8) except: None if len(images) > 0: imgur_client.album_add_images(album["id"], images) return album["id"] def update_album(user, imgur_client, reddit_client): return def is_image(url): return True def is_gif(url): return True def run_bot(): reddit = praw.Reddit( client_id=config.CLIENT_ID_REDDIT, client_secret=config.SECRET_CODE_REDDIT, user_agent=config.USER_AGENT_REDDIT, username=config.USERNAME_REDDIT, password=config.PASSWORD_REDDIT ) client=ImgurClient( client_id=config.CLIENT_ID_IMGUR, client_secret=config.SECRET_CODE_IMGUR, access_token=config.ACCESS_TOKEN_IMGUR, refresh_token=config.REFRESH_TOKEN_IMGUR ) login_time = datetime.datetime.now(datetime.timezone.utc).timestamp() print('Bot Initiation Successful') print("Logged in at: {time}".format(time = login_time)) print("Logged into Reddit as: {user}".format(user=reddit.user.me().name)) print("Logged into Imgur as: {imgur_user}".format(imgur_user="")) print("{api_calls} Imgur API calls remaining for the day.".format(api_calls=client.credits["ClientRemaining"])) print("----------") default_url = "https://imgur.com/" command_call = '!compile-album' subreddit = reddit.subreddit("all") for comment in subreddit.stream.comments(): if command_call in comment.body and comment.created_utc > login_time: parent_id = comment.parent_id if parent_id[0:3] == "t1_": parent_comment = reddit.comment(id=parent_id[3:]) album_id = create_album(parent_comment.author, client, reddit) album = client.get_album(album_id) respond_to_comment(comment, parent_comment.author, album.link, album.images_count, 0) elif parent_id[0:3] == "t3_": parent_submission = reddit.submission(id=parent_id[3:]) album_id = create_album(parent_submission.author, client, reddit) album = client.get_album(album_id) respond_to_comment(comment, parent_submission.author, album.link, album.images_count, 0) run_bot()
[ 2, 6, 7, 8, 9 ]
1,746
1a2616472c8d432c91e2b48260cbae61d3ecfd90
<mask token> class LMS: <mask token> <mask token> def issue_books(self): books_id = input("Enter book's ID: ") current_date = datetime.datetime.now().strftime('%d-%m-%Y %H:%M:%S') if books_id in self.books_dict.keys(): if not self.books_dict[books_id]['Status'] == 'Available': print( f"This book is already issued to {self.books_dict[books_id]['Lender_name']} on {self.books_dict[books_id]['Issue_date']}" ) return self.issue_books() elif self.books_dict[books_id]['Status'] == 'Available': your_name = input('Enter your name: ') self.books_dict[books_id]['Lender_name'] = your_name self.books_dict[books_id]['Issue_date'] = current_date self.books_dict[books_id]['Status'] = 'Already Issued' print('Books Issued Successfully !!!\n') else: print('Book ID not found !!!') return self.issue_books() def add_books(self): new_books = input("Enter Book's Title: ") if new_books == '': return self.add_books() elif len(new_books) > 30: print( "Length of Book's Title is too long !!! Title length must min 3 characters and max 25 characters..." ) return self.add_books else: with open(self.list_of_books, 'a') as bk: bk.writelines(f'{new_books}\n') self.books_dict.update({str(int(max(self.books_dict)) + 1): {'Books_title': new_books, 'Lender_name': '', 'Issue_date': '', 'Status': 'Available'}}) print( f"This book '{new_books}' has been added successfully !!!") def return_books(self): books_id = input('Enter books ID: ') if books_id in self.books_dict.keys(): if self.books_dict[books_id]['Status'] == 'Available': print( 'This book is already available in library. Please check your Book ID !!!' ) return self.return_books() elif not self.books_dict[books_id]['Status'] == 'Available': self.books_dict[books_id]['Lender_name'] = '' self.books_dict[books_id]['Issued_date'] = '' self.books_dict[books_id]['Status'] = 'Available' print('Successfully Updated !!!\n') else: print('Book ID is not found') <mask token>
<mask token> class LMS: def __init__(self, list_of_books, library_name): self.list_of_books = 'List_of_books.txt' self.library_name = library_name self.books_dict = {} Id = 101 with open(self.list_of_books) as bk: content = bk.readlines() for line in content: self.books_dict.update({str(Id): {'Books_title': line.replace( '\n', ''), 'Lender_name': '', 'Issue_date': '', 'Status': 'Available'}}) Id = Id + 1 <mask token> def issue_books(self): books_id = input("Enter book's ID: ") current_date = datetime.datetime.now().strftime('%d-%m-%Y %H:%M:%S') if books_id in self.books_dict.keys(): if not self.books_dict[books_id]['Status'] == 'Available': print( f"This book is already issued to {self.books_dict[books_id]['Lender_name']} on {self.books_dict[books_id]['Issue_date']}" ) return self.issue_books() elif self.books_dict[books_id]['Status'] == 'Available': your_name = input('Enter your name: ') self.books_dict[books_id]['Lender_name'] = your_name self.books_dict[books_id]['Issue_date'] = current_date self.books_dict[books_id]['Status'] = 'Already Issued' print('Books Issued Successfully !!!\n') else: print('Book ID not found !!!') return self.issue_books() def add_books(self): new_books = input("Enter Book's Title: ") if new_books == '': return self.add_books() elif len(new_books) > 30: print( "Length of Book's Title is too long !!! Title length must min 3 characters and max 25 characters..." ) return self.add_books else: with open(self.list_of_books, 'a') as bk: bk.writelines(f'{new_books}\n') self.books_dict.update({str(int(max(self.books_dict)) + 1): {'Books_title': new_books, 'Lender_name': '', 'Issue_date': '', 'Status': 'Available'}}) print( f"This book '{new_books}' has been added successfully !!!") def return_books(self): books_id = input('Enter books ID: ') if books_id in self.books_dict.keys(): if self.books_dict[books_id]['Status'] == 'Available': print( 'This book is already available in library. Please check your Book ID !!!' ) return self.return_books() elif not self.books_dict[books_id]['Status'] == 'Available': self.books_dict[books_id]['Lender_name'] = '' self.books_dict[books_id]['Issued_date'] = '' self.books_dict[books_id]['Status'] = 'Available' print('Successfully Updated !!!\n') else: print('Book ID is not found') <mask token>
<mask token> class LMS: def __init__(self, list_of_books, library_name): self.list_of_books = 'List_of_books.txt' self.library_name = library_name self.books_dict = {} Id = 101 with open(self.list_of_books) as bk: content = bk.readlines() for line in content: self.books_dict.update({str(Id): {'Books_title': line.replace( '\n', ''), 'Lender_name': '', 'Issue_date': '', 'Status': 'Available'}}) Id = Id + 1 def display_books(self): print('------------List of Books-----------') print('Book ID', '\t', 'Title') print('------------------------------------') for key, value in self.books_dict.items(): print(key, '\t\t', value.get('Books_title'), '- [', value.get( 'Status'), ']') def issue_books(self): books_id = input("Enter book's ID: ") current_date = datetime.datetime.now().strftime('%d-%m-%Y %H:%M:%S') if books_id in self.books_dict.keys(): if not self.books_dict[books_id]['Status'] == 'Available': print( f"This book is already issued to {self.books_dict[books_id]['Lender_name']} on {self.books_dict[books_id]['Issue_date']}" ) return self.issue_books() elif self.books_dict[books_id]['Status'] == 'Available': your_name = input('Enter your name: ') self.books_dict[books_id]['Lender_name'] = your_name self.books_dict[books_id]['Issue_date'] = current_date self.books_dict[books_id]['Status'] = 'Already Issued' print('Books Issued Successfully !!!\n') else: print('Book ID not found !!!') return self.issue_books() def add_books(self): new_books = input("Enter Book's Title: ") if new_books == '': return self.add_books() elif len(new_books) > 30: print( "Length of Book's Title is too long !!! Title length must min 3 characters and max 25 characters..." ) return self.add_books else: with open(self.list_of_books, 'a') as bk: bk.writelines(f'{new_books}\n') self.books_dict.update({str(int(max(self.books_dict)) + 1): {'Books_title': new_books, 'Lender_name': '', 'Issue_date': '', 'Status': 'Available'}}) print( f"This book '{new_books}' has been added successfully !!!") def return_books(self): books_id = input('Enter books ID: ') if books_id in self.books_dict.keys(): if self.books_dict[books_id]['Status'] == 'Available': print( 'This book is already available in library. Please check your Book ID !!!' ) return self.return_books() elif not self.books_dict[books_id]['Status'] == 'Available': self.books_dict[books_id]['Lender_name'] = '' self.books_dict[books_id]['Issued_date'] = '' self.books_dict[books_id]['Status'] = 'Available' print('Successfully Updated !!!\n') else: print('Book ID is not found') <mask token>
<mask token> class LMS: def __init__(self, list_of_books, library_name): self.list_of_books = 'List_of_books.txt' self.library_name = library_name self.books_dict = {} Id = 101 with open(self.list_of_books) as bk: content = bk.readlines() for line in content: self.books_dict.update({str(Id): {'Books_title': line.replace( '\n', ''), 'Lender_name': '', 'Issue_date': '', 'Status': 'Available'}}) Id = Id + 1 def display_books(self): print('------------List of Books-----------') print('Book ID', '\t', 'Title') print('------------------------------------') for key, value in self.books_dict.items(): print(key, '\t\t', value.get('Books_title'), '- [', value.get( 'Status'), ']') def issue_books(self): books_id = input("Enter book's ID: ") current_date = datetime.datetime.now().strftime('%d-%m-%Y %H:%M:%S') if books_id in self.books_dict.keys(): if not self.books_dict[books_id]['Status'] == 'Available': print( f"This book is already issued to {self.books_dict[books_id]['Lender_name']} on {self.books_dict[books_id]['Issue_date']}" ) return self.issue_books() elif self.books_dict[books_id]['Status'] == 'Available': your_name = input('Enter your name: ') self.books_dict[books_id]['Lender_name'] = your_name self.books_dict[books_id]['Issue_date'] = current_date self.books_dict[books_id]['Status'] = 'Already Issued' print('Books Issued Successfully !!!\n') else: print('Book ID not found !!!') return self.issue_books() def add_books(self): new_books = input("Enter Book's Title: ") if new_books == '': return self.add_books() elif len(new_books) > 30: print( "Length of Book's Title is too long !!! Title length must min 3 characters and max 25 characters..." ) return self.add_books else: with open(self.list_of_books, 'a') as bk: bk.writelines(f'{new_books}\n') self.books_dict.update({str(int(max(self.books_dict)) + 1): {'Books_title': new_books, 'Lender_name': '', 'Issue_date': '', 'Status': 'Available'}}) print( f"This book '{new_books}' has been added successfully !!!") def return_books(self): books_id = input('Enter books ID: ') if books_id in self.books_dict.keys(): if self.books_dict[books_id]['Status'] == 'Available': print( 'This book is already available in library. Please check your Book ID !!!' ) return self.return_books() elif not self.books_dict[books_id]['Status'] == 'Available': self.books_dict[books_id]['Lender_name'] = '' self.books_dict[books_id]['Issued_date'] = '' self.books_dict[books_id]['Status'] = 'Available' print('Successfully Updated !!!\n') else: print('Book ID is not found') try: myLMS = LMS('list_of_books.txt', "Satyam's") press_key_list = {'D': 'Display Books', 'I': 'Issue Books', 'A': 'Add Books', 'R': 'Return Books', 'Q': 'Quit'} key_press = False while not key_press == 'q': print( f""" --------------- Welcome to {myLMS.library_name} Library Management System---------------- """ ) for key, value in press_key_list.items(): print('Press', key, 'To', value) key_press = input('Press key: ').lower() if key_press == 'i': print('\nCurrent Selection : Issuing of Book\n') myLMS.issue_books() elif key_press == 'a': print('\nCurrent Selection : Adding a Book\n') myLMS.add_books() elif key_press == 'd': print('\nCurrent Selection : Displaying the Book\n') myLMS.display_books() elif key_press == 'r': print('\nCurrent Selection : Returning the Book\n') myLMS.return_books() elif key_press == 'q': break else: continue except Exception as e: print('Something went wrong. Please check your input !!!')
import datetime import os # os.getcwd() class LMS: # This class is used to keep records of the books in the Library def __init__(self, list_of_books, library_name): self.list_of_books = "List_of_books.txt" self.library_name = library_name self.books_dict = {} Id = 101 with open(self.list_of_books) as bk: content = bk.readlines() for line in content: # print(line) self.books_dict.update({str(Id):{'Books_title':line.replace("\n",""), 'Lender_name':"", 'Issue_date':"", 'Status':"Available"}}) Id = Id+1 def display_books(self): #Display Book ID and Title of the Books print("------------List of Books-----------") print("Book ID", "\t", "Title") print("------------------------------------") for key, value in self.books_dict.items(): print(key, "\t\t", value.get("Books_title"), "- [", value.get("Status"), "]") def issue_books(self): #Issues the book according to Book ID if available, if someone has already issued than it will show who and when the person has issued, and if someone give an unknown book is than it will show that this Book ID not found books_id = input("Enter book's ID: ") current_date = datetime.datetime.now().strftime("%d-%m-%Y %H:%M:%S") if books_id in self.books_dict.keys(): if not self.books_dict[books_id]["Status"] == "Available": print(f"This book is already issued to {self.books_dict[books_id]['Lender_name']} on {self.books_dict[books_id]['Issue_date']}") return self.issue_books() elif self.books_dict[books_id]["Status"] == "Available": your_name = input("Enter your name: ") self.books_dict[books_id]["Lender_name"] = your_name self.books_dict[books_id]["Issue_date"] = current_date self.books_dict[books_id]["Status"] = "Already Issued" print("Books Issued Successfully !!!\n") else: print("Book ID not found !!!") return self.issue_books() def add_books(self): #To add New Books to the library new_books = input("Enter Book's Title: ") if new_books == "": return self.add_books() elif len(new_books)>30: print("Length of Book's Title is too long !!! Title length must min 3 characters and max 25 characters...") return self.add_books else: with open(self.list_of_books, "a") as bk: bk.writelines(f"{new_books}\n") self.books_dict.update({str(int(max(self.books_dict))+1):{'Books_title':new_books, 'Lender_name':"", 'Issue_date':"", 'Status':"Available"}}) print(f"This book '{new_books}' has been added successfully !!!") def return_books(self): #To return a Book books_id = input("Enter books ID: ") if books_id in self.books_dict.keys(): if self.books_dict[books_id]["Status"] == "Available": print("This book is already available in library. Please check your Book ID !!!") return self.return_books() elif not self.books_dict[books_id]["Status"] == "Available": self.books_dict[books_id]["Lender_name"] = "" self.books_dict[books_id]["Issued_date"] = "" self.books_dict[books_id]["Status"] = "Available" print("Successfully Updated !!!\n") else: print("Book ID is not found") try: myLMS = LMS("list_of_books.txt", "Satyam's") press_key_list = {"D":"Display Books", "I":"Issue Books", "A":"Add Books", "R":"Return Books", "Q":"Quit"} key_press = False while not (key_press == "q"): print(f"\n--------------- Welcome to {myLMS.library_name} Library Management System----------------\n") for key, value in press_key_list.items(): print("Press", key, "To", value) key_press = input("Press key: ").lower() if key_press == "i": print("\nCurrent Selection : Issuing of Book\n") myLMS.issue_books() elif key_press == "a": print("\nCurrent Selection : Adding a Book\n") myLMS.add_books() elif key_press == "d": print("\nCurrent Selection : Displaying the Book\n") myLMS.display_books() elif key_press == "r": print("\nCurrent Selection : Returning the Book\n") myLMS.return_books() elif key_press == "q": break else: continue except Exception as e: print("Something went wrong. Please check your input !!!") # l = LMS("List_of_books.txt", "Python's Library") # print(l.display_books())
[ 4, 5, 6, 7, 9 ]
1,747
92a1f86ce8cc9563d455f9b1336dbcd298f01b6d
<mask token>
<mask token> def transform_word(word): """ 将低频词转为四种形式之一。 """ if any(c.isdigit() for c in word): return '_NUMERIC_' if word.isupper(): return '_ALL_CAP_' if word[-1].isupper(): return '_LAST_CAP_' return '_RARE_' def sub_rare(fname, out_name): count_dict = defaultdict(int) with open(fname) as f: for line in f: line = line.strip() if not line: continue word = line.partition(' ')[0] count_dict[word] += 1 fout = open(out_name, 'w') with open(fname) as f: for line in f: line = line.strip() if not line: fout.write('\n') continue word, sep, tag = line.partition(' ') if count_dict[word] < 5: word = transform_word(word) fout.write('%s %s\n' % (word, tag)) fout.close() return <mask token>
<mask token> def transform_word(word): """ 将低频词转为四种形式之一。 """ if any(c.isdigit() for c in word): return '_NUMERIC_' if word.isupper(): return '_ALL_CAP_' if word[-1].isupper(): return '_LAST_CAP_' return '_RARE_' def sub_rare(fname, out_name): count_dict = defaultdict(int) with open(fname) as f: for line in f: line = line.strip() if not line: continue word = line.partition(' ')[0] count_dict[word] += 1 fout = open(out_name, 'w') with open(fname) as f: for line in f: line = line.strip() if not line: fout.write('\n') continue word, sep, tag = line.partition(' ') if count_dict[word] < 5: word = transform_word(word) fout.write('%s %s\n' % (word, tag)) fout.close() return if __name__ == '__main__': fname = sys.argv[1] sub_rare(fname, fname + '.sub_rare')
import sys from collections import defaultdict def transform_word(word): """ 将低频词转为四种形式之一。 """ if any(c.isdigit() for c in word): return '_NUMERIC_' if word.isupper(): return '_ALL_CAP_' if word[-1].isupper(): return '_LAST_CAP_' return '_RARE_' def sub_rare(fname, out_name): count_dict = defaultdict(int) with open(fname) as f: for line in f: line = line.strip() if not line: continue word = line.partition(' ')[0] count_dict[word] += 1 fout = open(out_name, 'w') with open(fname) as f: for line in f: line = line.strip() if not line: fout.write('\n') continue word, sep, tag = line.partition(' ') if count_dict[word] < 5: word = transform_word(word) fout.write('%s %s\n' % (word, tag)) fout.close() return if __name__ == '__main__': fname = sys.argv[1] sub_rare(fname, fname + '.sub_rare')
#!/usr/bin/env python #encoding:utf8 import sys from collections import defaultdict def transform_word(word): ''' 将低频词转为四种形式之一。 ''' if any(c.isdigit() for c in word): return '_NUMERIC_' if word.isupper(): return '_ALL_CAP_' if word[-1].isupper(): return '_LAST_CAP_' return '_RARE_' def sub_rare(fname, out_name): count_dict = defaultdict(int) # 先统计词频。 with open(fname) as f: for line in f: line = line.strip() if not line: continue word = line.partition(' ')[0] count_dict[word] += 1 # 然后替换低频词。 fout = open(out_name, 'w') with open(fname) as f: for line in f: line = line.strip() if not line: fout.write('\n') continue word, sep, tag = line.partition(' ') if count_dict[word] < 5: # word = '_RARE_' word = transform_word(word) fout.write('%s %s\n' % (word, tag)) fout.close() return if __name__ == '__main__': fname = sys.argv[1] sub_rare(fname, fname + '.sub_rare')
[ 0, 2, 3, 4, 5 ]
1,748
c27d6279d1ea84bab3c0abd4ca9a08de202219da
<mask token>
<mask token> @core.route('/post') @core.route('/categorie') @core.route('/tag') def returnToHome(): return redirect(url_for('home'))
from flask import render_template, url_for, escape, redirect, abort from app import core from database import db @core.route('/post') @core.route('/categorie') @core.route('/tag') def returnToHome(): return redirect(url_for('home'))
null
null
[ 0, 1, 2 ]
1,749
e82dd2792ecbb8ed5a33012239102d2c6a02202b
<mask token> def get_partition(subject_id: int) ->str: if subject_id <= 10: return TEST elif subject_id <= 15: return VALID else: return TRAIN def data_generator(input_folder: str) ->Iterable[Tuple[Dict[str, Any], str]]: sample_id = 0 for subject_id in sorted(os.listdir(args.input_folder)): folder = os.path.join(args.input_folder, subject_id) if not os.path.isdir(folder): continue for data_file in os.listdir(folder): try: dataset = np.loadtxt(os.path.join(folder, data_file), skiprows=1, dtype=str) downsampled_dataset = dataset[::DOWNSAMPLE_SKIP] for start in range(0, downsampled_dataset.shape[0] - WINDOW + 1, STRIDE): end = start + WINDOW data_chunk = downsampled_dataset[start:end].astype(float) input_features = data_chunk[:, 1:-1] labels = data_chunk[:, -1] if all(label != 0 for label in labels) and len( input_features) == WINDOW: sample_dict = {SAMPLE_ID: sample_id, OUTPUT: labels [-1], INPUTS: input_features.astype(float).tolist() } yield sample_dict, get_partition(int(subject_id)) sample_id += 1 except ValueError as ex: print(data_file) print(ex) def tokenize_dataset(input_folder: str, output_folder: str, chunk_size: int): make_dir(output_folder) data_writers = {TRAIN: DataWriter(os.path.join(output_folder, TRAIN), file_prefix='data', file_suffix='jsonl.gz', chunk_size=chunk_size), VALID: DataWriter(os.path.join(output_folder, VALID), file_prefix= 'data', file_suffix='jsonl.gz', chunk_size=chunk_size), TEST: DataWriter(os.path.join(output_folder, TEST), file_prefix='data', file_suffix='jsonl.gz', chunk_size=chunk_size)} partition_counters = {TRAIN: Counter(), VALID: Counter(), TEST: Counter()} for i, (sample, partition) in enumerate(data_generator(input_folder)): data_writers[partition].add(sample) partition_counters[partition][sample[OUTPUT]] += 1 if (i + 1) % chunk_size == 0: print('Wrote {0} samples.'.format(i + 1), end='\r') print() for writer in data_writers.values(): writer.close() print(partition_counters) <mask token>
<mask token> def get_partition(subject_id: int) ->str: if subject_id <= 10: return TEST elif subject_id <= 15: return VALID else: return TRAIN def data_generator(input_folder: str) ->Iterable[Tuple[Dict[str, Any], str]]: sample_id = 0 for subject_id in sorted(os.listdir(args.input_folder)): folder = os.path.join(args.input_folder, subject_id) if not os.path.isdir(folder): continue for data_file in os.listdir(folder): try: dataset = np.loadtxt(os.path.join(folder, data_file), skiprows=1, dtype=str) downsampled_dataset = dataset[::DOWNSAMPLE_SKIP] for start in range(0, downsampled_dataset.shape[0] - WINDOW + 1, STRIDE): end = start + WINDOW data_chunk = downsampled_dataset[start:end].astype(float) input_features = data_chunk[:, 1:-1] labels = data_chunk[:, -1] if all(label != 0 for label in labels) and len( input_features) == WINDOW: sample_dict = {SAMPLE_ID: sample_id, OUTPUT: labels [-1], INPUTS: input_features.astype(float).tolist() } yield sample_dict, get_partition(int(subject_id)) sample_id += 1 except ValueError as ex: print(data_file) print(ex) def tokenize_dataset(input_folder: str, output_folder: str, chunk_size: int): make_dir(output_folder) data_writers = {TRAIN: DataWriter(os.path.join(output_folder, TRAIN), file_prefix='data', file_suffix='jsonl.gz', chunk_size=chunk_size), VALID: DataWriter(os.path.join(output_folder, VALID), file_prefix= 'data', file_suffix='jsonl.gz', chunk_size=chunk_size), TEST: DataWriter(os.path.join(output_folder, TEST), file_prefix='data', file_suffix='jsonl.gz', chunk_size=chunk_size)} partition_counters = {TRAIN: Counter(), VALID: Counter(), TEST: Counter()} for i, (sample, partition) in enumerate(data_generator(input_folder)): data_writers[partition].add(sample) partition_counters[partition][sample[OUTPUT]] += 1 if (i + 1) % chunk_size == 0: print('Wrote {0} samples.'.format(i + 1), end='\r') print() for writer in data_writers.values(): writer.close() print(partition_counters) if __name__ == '__main__': parser = ArgumentParser() parser.add_argument('--input-folder', type=str, required=True) parser.add_argument('--output-folder', type=str, required=True) parser.add_argument('--chunk-size', type=int, default=5000) args = parser.parse_args() tokenize_dataset(args.input_folder, args.output_folder, args.chunk_size)
<mask token> WINDOW = 50 STRIDE = 25 DOWNSAMPLE_SKIP = 3 def get_partition(subject_id: int) ->str: if subject_id <= 10: return TEST elif subject_id <= 15: return VALID else: return TRAIN def data_generator(input_folder: str) ->Iterable[Tuple[Dict[str, Any], str]]: sample_id = 0 for subject_id in sorted(os.listdir(args.input_folder)): folder = os.path.join(args.input_folder, subject_id) if not os.path.isdir(folder): continue for data_file in os.listdir(folder): try: dataset = np.loadtxt(os.path.join(folder, data_file), skiprows=1, dtype=str) downsampled_dataset = dataset[::DOWNSAMPLE_SKIP] for start in range(0, downsampled_dataset.shape[0] - WINDOW + 1, STRIDE): end = start + WINDOW data_chunk = downsampled_dataset[start:end].astype(float) input_features = data_chunk[:, 1:-1] labels = data_chunk[:, -1] if all(label != 0 for label in labels) and len( input_features) == WINDOW: sample_dict = {SAMPLE_ID: sample_id, OUTPUT: labels [-1], INPUTS: input_features.astype(float).tolist() } yield sample_dict, get_partition(int(subject_id)) sample_id += 1 except ValueError as ex: print(data_file) print(ex) def tokenize_dataset(input_folder: str, output_folder: str, chunk_size: int): make_dir(output_folder) data_writers = {TRAIN: DataWriter(os.path.join(output_folder, TRAIN), file_prefix='data', file_suffix='jsonl.gz', chunk_size=chunk_size), VALID: DataWriter(os.path.join(output_folder, VALID), file_prefix= 'data', file_suffix='jsonl.gz', chunk_size=chunk_size), TEST: DataWriter(os.path.join(output_folder, TEST), file_prefix='data', file_suffix='jsonl.gz', chunk_size=chunk_size)} partition_counters = {TRAIN: Counter(), VALID: Counter(), TEST: Counter()} for i, (sample, partition) in enumerate(data_generator(input_folder)): data_writers[partition].add(sample) partition_counters[partition][sample[OUTPUT]] += 1 if (i + 1) % chunk_size == 0: print('Wrote {0} samples.'.format(i + 1), end='\r') print() for writer in data_writers.values(): writer.close() print(partition_counters) if __name__ == '__main__': parser = ArgumentParser() parser.add_argument('--input-folder', type=str, required=True) parser.add_argument('--output-folder', type=str, required=True) parser.add_argument('--chunk-size', type=int, default=5000) args = parser.parse_args() tokenize_dataset(args.input_folder, args.output_folder, args.chunk_size)
import os import numpy as np from argparse import ArgumentParser from collections import Counter from typing import Iterable, Dict, Any, Tuple from utils.constants import TRAIN, VALID, TEST, SAMPLE_ID, INPUTS, OUTPUT from utils.file_utils import make_dir from utils.data_writer import DataWriter WINDOW = 50 STRIDE = 25 DOWNSAMPLE_SKIP = 3 def get_partition(subject_id: int) ->str: if subject_id <= 10: return TEST elif subject_id <= 15: return VALID else: return TRAIN def data_generator(input_folder: str) ->Iterable[Tuple[Dict[str, Any], str]]: sample_id = 0 for subject_id in sorted(os.listdir(args.input_folder)): folder = os.path.join(args.input_folder, subject_id) if not os.path.isdir(folder): continue for data_file in os.listdir(folder): try: dataset = np.loadtxt(os.path.join(folder, data_file), skiprows=1, dtype=str) downsampled_dataset = dataset[::DOWNSAMPLE_SKIP] for start in range(0, downsampled_dataset.shape[0] - WINDOW + 1, STRIDE): end = start + WINDOW data_chunk = downsampled_dataset[start:end].astype(float) input_features = data_chunk[:, 1:-1] labels = data_chunk[:, -1] if all(label != 0 for label in labels) and len( input_features) == WINDOW: sample_dict = {SAMPLE_ID: sample_id, OUTPUT: labels [-1], INPUTS: input_features.astype(float).tolist() } yield sample_dict, get_partition(int(subject_id)) sample_id += 1 except ValueError as ex: print(data_file) print(ex) def tokenize_dataset(input_folder: str, output_folder: str, chunk_size: int): make_dir(output_folder) data_writers = {TRAIN: DataWriter(os.path.join(output_folder, TRAIN), file_prefix='data', file_suffix='jsonl.gz', chunk_size=chunk_size), VALID: DataWriter(os.path.join(output_folder, VALID), file_prefix= 'data', file_suffix='jsonl.gz', chunk_size=chunk_size), TEST: DataWriter(os.path.join(output_folder, TEST), file_prefix='data', file_suffix='jsonl.gz', chunk_size=chunk_size)} partition_counters = {TRAIN: Counter(), VALID: Counter(), TEST: Counter()} for i, (sample, partition) in enumerate(data_generator(input_folder)): data_writers[partition].add(sample) partition_counters[partition][sample[OUTPUT]] += 1 if (i + 1) % chunk_size == 0: print('Wrote {0} samples.'.format(i + 1), end='\r') print() for writer in data_writers.values(): writer.close() print(partition_counters) if __name__ == '__main__': parser = ArgumentParser() parser.add_argument('--input-folder', type=str, required=True) parser.add_argument('--output-folder', type=str, required=True) parser.add_argument('--chunk-size', type=int, default=5000) args = parser.parse_args() tokenize_dataset(args.input_folder, args.output_folder, args.chunk_size)
import os import numpy as np from argparse import ArgumentParser from collections import Counter from typing import Iterable, Dict, Any, Tuple from utils.constants import TRAIN, VALID, TEST, SAMPLE_ID, INPUTS, OUTPUT from utils.file_utils import make_dir from utils.data_writer import DataWriter WINDOW = 50 STRIDE = 25 DOWNSAMPLE_SKIP = 3 def get_partition(subject_id: int) -> str: if subject_id <= 10: return TEST elif subject_id <= 15: return VALID else: return TRAIN def data_generator(input_folder: str) -> Iterable[Tuple[Dict[str, Any], str]]: sample_id = 0 for subject_id in sorted(os.listdir(args.input_folder)): folder = os.path.join(args.input_folder, subject_id) if not os.path.isdir(folder): continue for data_file in os.listdir(folder): try: dataset = np.loadtxt(os.path.join(folder, data_file), skiprows=1, dtype=str) downsampled_dataset = dataset[::DOWNSAMPLE_SKIP] for start in range(0, downsampled_dataset.shape[0] - WINDOW + 1, STRIDE): end = start + WINDOW data_chunk = downsampled_dataset[start:end].astype(float) # Element 0 is the timestamp, and the final element is the class label input_features = data_chunk[:, 1:-1] labels = data_chunk[:, -1] if all((label != 0 for label in labels)) and len(input_features) == WINDOW: sample_dict = { SAMPLE_ID: sample_id, OUTPUT: labels[-1], INPUTS: input_features.astype(float).tolist() } yield sample_dict, get_partition(int(subject_id)) sample_id += 1 except ValueError as ex: print(data_file) print(ex) def tokenize_dataset(input_folder: str, output_folder: str, chunk_size: int): make_dir(output_folder) data_writers = { TRAIN: DataWriter(os.path.join(output_folder, TRAIN), file_prefix='data', file_suffix='jsonl.gz', chunk_size=chunk_size), VALID: DataWriter(os.path.join(output_folder, VALID), file_prefix='data', file_suffix='jsonl.gz', chunk_size=chunk_size), TEST: DataWriter(os.path.join(output_folder, TEST), file_prefix='data', file_suffix='jsonl.gz', chunk_size=chunk_size) } partition_counters = { TRAIN: Counter(), VALID: Counter(), TEST: Counter() } for i, (sample, partition) in enumerate(data_generator(input_folder)): data_writers[partition].add(sample) partition_counters[partition][sample[OUTPUT]] += 1 if (i + 1) % chunk_size == 0: print('Wrote {0} samples.'.format(i+1), end='\r') print() for writer in data_writers.values(): writer.close() print(partition_counters) if __name__ == '__main__': parser = ArgumentParser() parser.add_argument('--input-folder', type=str, required=True) parser.add_argument('--output-folder', type=str, required=True) parser.add_argument('--chunk-size', type=int, default=5000) args = parser.parse_args() tokenize_dataset(args.input_folder, args.output_folder, args.chunk_size)
[ 3, 4, 5, 6, 7 ]
1,750
e76ebbe8dab2e5169ef40b559f783c49ba4de825
<mask token> def ConfigObject(config_path): """read a configuration file to retrieve access token""" configDict = {} with open(config_path, 'r') as config: for line in config.readlines(): try: configDict[line.split('=')[0]] = line.split('=')[1].rstrip() except: pass return configDict def uploadZippedToBox(zippedFolder, boxfolder=None): if boxfolder is None: boxfolder = accessUploadFolder() try: items = boxfolder.get_items() for item in items: if item.name == os.path.basename(zippedFolder): try: item.delete() except Exception as e: print(e) return False boxfolder.upload(zippedFolder) uploaded = True except Exception as e: print(e) uploaded = False pass finally: return uploaded <mask token> def uploadAllZippedToBox(zipFolder): """uploads new zip folders to box. Will not upload a zip folder if it already exists on Box even if the contents have changed""" zipFiles = listZipFiles(zipFolder) tfolder = accessUploadFolder() items = tfolder.get_items() for item in items: if item.name in zipFiles: try: item.delete() except Exception as e: print(e) zipFiles.remove(item.name) uploadedFiles = [] badUploads = [] for zipped in zipFiles: try: uploadZippedToBox(zipped, tfolder) uploadedFiles.append((zipped, True)) except Exception as e: print(e) badUploads.append((zipped, False)) pass return uploadedFiles, badUploads
<mask token> def ConfigObject(config_path): """read a configuration file to retrieve access token""" configDict = {} with open(config_path, 'r') as config: for line in config.readlines(): try: configDict[line.split('=')[0]] = line.split('=')[1].rstrip() except: pass return configDict def uploadZippedToBox(zippedFolder, boxfolder=None): if boxfolder is None: boxfolder = accessUploadFolder() try: items = boxfolder.get_items() for item in items: if item.name == os.path.basename(zippedFolder): try: item.delete() except Exception as e: print(e) return False boxfolder.upload(zippedFolder) uploaded = True except Exception as e: print(e) uploaded = False pass finally: return uploaded def accessUploadFolder(year=2020): config = ConfigObject(os.path.join(*[os.path.dirname(os.path.abspath( __file__)), 'instance', 'Boxapp.cfg'])) CLIENT_ID = config['client_id'] CLIENT_FOLDER = config['client_folder' + str(year)] ACCESS_TOKEN = config['access_token'] auth = OAuth2(client_id=CLIENT_ID, client_secret='', access_token= ACCESS_TOKEN) client = Client(auth) try: my = client.user(user_id='me').get() print(my.name) except: sys.exit( 'ERROR: Invalid access token; try re-generating an access token from the app console on the web.' ) tfolder = client.folder(CLIENT_FOLDER) return tfolder <mask token> def uploadAllZippedToBox(zipFolder): """uploads new zip folders to box. Will not upload a zip folder if it already exists on Box even if the contents have changed""" zipFiles = listZipFiles(zipFolder) tfolder = accessUploadFolder() items = tfolder.get_items() for item in items: if item.name in zipFiles: try: item.delete() except Exception as e: print(e) zipFiles.remove(item.name) uploadedFiles = [] badUploads = [] for zipped in zipFiles: try: uploadZippedToBox(zipped, tfolder) uploadedFiles.append((zipped, True)) except Exception as e: print(e) badUploads.append((zipped, False)) pass return uploadedFiles, badUploads
<mask token> def ConfigObject(config_path): """read a configuration file to retrieve access token""" configDict = {} with open(config_path, 'r') as config: for line in config.readlines(): try: configDict[line.split('=')[0]] = line.split('=')[1].rstrip() except: pass return configDict def uploadZippedToBox(zippedFolder, boxfolder=None): if boxfolder is None: boxfolder = accessUploadFolder() try: items = boxfolder.get_items() for item in items: if item.name == os.path.basename(zippedFolder): try: item.delete() except Exception as e: print(e) return False boxfolder.upload(zippedFolder) uploaded = True except Exception as e: print(e) uploaded = False pass finally: return uploaded def accessUploadFolder(year=2020): config = ConfigObject(os.path.join(*[os.path.dirname(os.path.abspath( __file__)), 'instance', 'Boxapp.cfg'])) CLIENT_ID = config['client_id'] CLIENT_FOLDER = config['client_folder' + str(year)] ACCESS_TOKEN = config['access_token'] auth = OAuth2(client_id=CLIENT_ID, client_secret='', access_token= ACCESS_TOKEN) client = Client(auth) try: my = client.user(user_id='me').get() print(my.name) except: sys.exit( 'ERROR: Invalid access token; try re-generating an access token from the app console on the web.' ) tfolder = client.folder(CLIENT_FOLDER) return tfolder def listZipFiles(directory_folder): """ Lists teh zip folders in teh directory folder, including subdirectortories """ zipFiles = [] for root, dirs, files in os.walk(directory_folder): for name in files: if name[-3:] == 'zip': zipFiles.append(os.path.join(root, name)) return zipFiles def uploadAllZippedToBox(zipFolder): """uploads new zip folders to box. Will not upload a zip folder if it already exists on Box even if the contents have changed""" zipFiles = listZipFiles(zipFolder) tfolder = accessUploadFolder() items = tfolder.get_items() for item in items: if item.name in zipFiles: try: item.delete() except Exception as e: print(e) zipFiles.remove(item.name) uploadedFiles = [] badUploads = [] for zipped in zipFiles: try: uploadZippedToBox(zipped, tfolder) uploadedFiles.append((zipped, True)) except Exception as e: print(e) badUploads.append((zipped, False)) pass return uploadedFiles, badUploads
from boxsdk import Client, OAuth2 import os import sys def ConfigObject(config_path): """read a configuration file to retrieve access token""" configDict = {} with open(config_path, 'r') as config: for line in config.readlines(): try: configDict[line.split('=')[0]] = line.split('=')[1].rstrip() except: pass return configDict def uploadZippedToBox(zippedFolder, boxfolder=None): if boxfolder is None: boxfolder = accessUploadFolder() try: items = boxfolder.get_items() for item in items: if item.name == os.path.basename(zippedFolder): try: item.delete() except Exception as e: print(e) return False boxfolder.upload(zippedFolder) uploaded = True except Exception as e: print(e) uploaded = False pass finally: return uploaded def accessUploadFolder(year=2020): config = ConfigObject(os.path.join(*[os.path.dirname(os.path.abspath( __file__)), 'instance', 'Boxapp.cfg'])) CLIENT_ID = config['client_id'] CLIENT_FOLDER = config['client_folder' + str(year)] ACCESS_TOKEN = config['access_token'] auth = OAuth2(client_id=CLIENT_ID, client_secret='', access_token= ACCESS_TOKEN) client = Client(auth) try: my = client.user(user_id='me').get() print(my.name) except: sys.exit( 'ERROR: Invalid access token; try re-generating an access token from the app console on the web.' ) tfolder = client.folder(CLIENT_FOLDER) return tfolder def listZipFiles(directory_folder): """ Lists teh zip folders in teh directory folder, including subdirectortories """ zipFiles = [] for root, dirs, files in os.walk(directory_folder): for name in files: if name[-3:] == 'zip': zipFiles.append(os.path.join(root, name)) return zipFiles def uploadAllZippedToBox(zipFolder): """uploads new zip folders to box. Will not upload a zip folder if it already exists on Box even if the contents have changed""" zipFiles = listZipFiles(zipFolder) tfolder = accessUploadFolder() items = tfolder.get_items() for item in items: if item.name in zipFiles: try: item.delete() except Exception as e: print(e) zipFiles.remove(item.name) uploadedFiles = [] badUploads = [] for zipped in zipFiles: try: uploadZippedToBox(zipped, tfolder) uploadedFiles.append((zipped, True)) except Exception as e: print(e) badUploads.append((zipped, False)) pass return uploadedFiles, badUploads
from boxsdk import Client, OAuth2 import os import sys def ConfigObject(config_path): "read a configuration file to retrieve access token" configDict = {} with open(config_path,'r') as config: for line in config.readlines(): try: configDict[line.split("=")[0]] = line.split("=")[1].rstrip() except: pass return configDict def uploadZippedToBox(zippedFolder, boxfolder = None): if boxfolder is None: boxfolder = accessUploadFolder() try: items = boxfolder.get_items() for item in items: if item.name == os.path.basename(zippedFolder): try: item.delete() except Exception as e: print(e) return False boxfolder.upload(zippedFolder) uploaded = True except Exception as e: print(e) uploaded = False pass finally: return uploaded def accessUploadFolder(year=2020): # Define client ID, client secret, and developer token.path = os.path.join(*[os.path.dirname(os.path.abspath(__file__)),"instance"]) # Read app info from text file config = ConfigObject(os.path.join(*[os.path.dirname(os.path.abspath(__file__)),"instance", 'Boxapp.cfg'])) CLIENT_ID = config['client_id'] CLIENT_FOLDER = config['client_folder' + str(year)] ACCESS_TOKEN = config['access_token'] # Create OAuth2 object. auth = OAuth2(client_id=CLIENT_ID, client_secret='', access_token=ACCESS_TOKEN) # Create the authenticated client client = Client(auth) # make sure we connected try: my = client.user(user_id='me').get() print(my.name) # developer name tied to the token except: sys.exit("ERROR: Invalid access token; try re-generating an " "access token from the app console on the web.") tfolder = client.folder(CLIENT_FOLDER) # 2020 scada data folder return tfolder def listZipFiles(directory_folder): ''' Lists teh zip folders in teh directory folder, including subdirectortories ''' zipFiles = [] for root, dirs, files in os.walk(directory_folder): for name in files: if name[-3:] == 'zip': zipFiles.append(os.path.join(root, name)) return zipFiles def uploadAllZippedToBox(zipFolder): '''uploads new zip folders to box. Will not upload a zip folder if it already exists on Box even if the contents have changed''' #files to upload zipFiles = listZipFiles(zipFolder) tfolder = accessUploadFolder() items = tfolder.get_items() for item in items: if item.name in zipFiles: try: item.delete() #tfolder.file(file_id=item.id).delete() except Exception as e: print(e) #If we coudn't delete the existing zip file don't try to upload a new one. zipFiles.remove(item.name) uploadedFiles = [] badUploads = [] for zipped in zipFiles: try: uploadZippedToBox(zipped, tfolder) uploadedFiles.append((zipped,True)) except Exception as e: print(e) badUploads.append((zipped,False)) pass return uploadedFiles, badUploads
[ 3, 4, 5, 6, 7 ]
1,751
4deb691545887104b3fb70dd2be52138088ba1e8
class Person: def __init__(self,mood): self.mood=mood; def laugh(self): self.mood.laugh() def cry(self): self.mood.cry() def setMood(self, mood): self.mood=mood class Mood: def laugh(self): pass def cry(self): pass class HappyMood(Mood): def laugh(self): print 'Ha ha ha!' class SadMood(Mood): def cry(self): print 'Sniff sniff' p=Person(HappyMood()) p.laugh() p.cry() p.setMood(SadMood()) p.laugh() p.cry()
null
null
null
null
[ 0 ]
1,752
6c16afe89d5d0fd6aa6911e3de9e9cebb57bf35e
<mask token> class UrlLongRequest(serializers.Serializer): url = serializers.CharField(required=True, max_length=64) def validate_url(self, url): if url.startswith(HOST): return url else: return serializers.ValidationError('Invalid short URL') class UrlShortResponse(serializers.ModelSerializer): class Meta: model = UrlShortnerModel fields = '__all__'
<mask token> class UrlShortRequest(serializers.Serializer): <mask token> <mask token> class UrlLongRequest(serializers.Serializer): url = serializers.CharField(required=True, max_length=64) def validate_url(self, url): if url.startswith(HOST): return url else: return serializers.ValidationError('Invalid short URL') class UrlShortResponse(serializers.ModelSerializer): class Meta: model = UrlShortnerModel fields = '__all__'
<mask token> class UrlShortRequest(serializers.Serializer): url = serializers.CharField(required=True, max_length=255) expiry = serializers.DateTimeField(required=False) class UrlLongRequest(serializers.Serializer): url = serializers.CharField(required=True, max_length=64) def validate_url(self, url): if url.startswith(HOST): return url else: return serializers.ValidationError('Invalid short URL') class UrlShortResponse(serializers.ModelSerializer): class Meta: model = UrlShortnerModel fields = '__all__'
from rest_framework import serializers from urlshortner.models import UrlShortnerModel from urlshortner.constants import HOST class UrlShortRequest(serializers.Serializer): url = serializers.CharField(required=True, max_length=255) expiry = serializers.DateTimeField(required=False) class UrlLongRequest(serializers.Serializer): url = serializers.CharField(required=True, max_length=64) def validate_url(self, url): if url.startswith(HOST): return url else: return serializers.ValidationError('Invalid short URL') class UrlShortResponse(serializers.ModelSerializer): class Meta: model = UrlShortnerModel fields = '__all__'
from rest_framework import serializers from urlshortner.models import UrlShortnerModel from urlshortner.constants import HOST class UrlShortRequest(serializers.Serializer): url = serializers.CharField(required=True, max_length=255) # Long Url expiry = serializers.DateTimeField(required=False) class UrlLongRequest(serializers.Serializer): url = serializers.CharField(required=True, max_length=64) # Short Url def validate_url(self, url): if url.startswith(HOST): return url else: return serializers.ValidationError("Invalid short URL") class UrlShortResponse(serializers.ModelSerializer): class Meta: model = UrlShortnerModel fields = "__all__"
[ 4, 5, 6, 7, 8 ]
1,753
eb2bb06afb9aeb46ad02cbac145ccd817131074d
''' Created on Sep 23, 2016 @author: Andrew ''' from pymongo import MongoClient import re client = MongoClient() atMentions = re.compile(ur"@\w+", flags=re.I|re.U) atMidnight = re.compile(u"@midnight", flags=re.I|re.U) hashtag = re.compile(ur"#\w+", flags=re.I|re.U) features = [("usf fwa forward most", "usf fwa backward most", "usf fwa difference most", "usf fwa difference most sign"), ("usf fwa forward least", "usf fwa backward least", "usf fwa difference least", "usf fwa difference least sign"), ("usf fwa forward average", "usf fwa backward average", "usf fwa difference average", "usf fwa difference average sign")] cols = ["GentlerSongs", "OlympicSongs", "OceanMovies", "BoringBlockbusters"] p_values = [] for featureF, featureB, featureD, featureS in features: print "Testing {} vs {}".format(featureF, featureB) lessMoreDiff = [] #holds difference in feature value for less funny - more funny for col in cols: tweets = [] for tweet in client.tweets[col].find({"$and" : [{"total likes" : {"$gte" : 7}}, {featureF : {"$exists" : True}}, {featureB : {"$exists" : True}}]}): if "punch words" not in tweet: continue if (tweet["punch words"] == None) or (tweet["punch words"] == []): continue for word in tweet["punch words"]: if word == "None": continue if not word: continue mentions = atMentions.findall(tweet["text"]) if len(mentions) > 1: #if more than 1 person is mentione continue elif len(mentions) == 1: if not atMidnight.match(mentions[0]): #if the mention someone other than @midngiht continue if len(hashtag.findall(tweet["text"])) > 1: #if there's more than 1 hashtag continue if (tweet[featureF] > 0) and (tweet[featureB] > 0): tweet[featureD] = tweet[featureF] - tweet[featureB] sign = 0 #assume forward and back are equal if (tweet[featureF] - tweet[featureB]) > 0: sign = 1 elif ((tweet[featureF] - tweet[featureB])) < 0: sign = -1 tweet[featureS] = sign client.tweets[col].update({"_id" : tweet["_id"]}, tweet)
null
null
null
null
[ 0 ]
1,754
187cf160b520001b6fe3a8d343391de1c04b3acd
<mask token> @app.route('/') def index(): return render_template('index.html') @app.route('/process', methods=['POST']) def process(): if len(request.form['email']) < 1: flash('Email cannot be blank!') return redirect('/') elif not EMAIL_REGEX.match(request.form['email']): flash('Invalid Email Address!') return redirect('/') else: flash('The email address you entered ' + str(request.form['email'] + ' is VALID. Thank you!')) query = ( 'INSERT INTO email_validation_assignment (email, created_at, updated_at)VALUES (:email, NOW(), NOW())' ) data = {'email': request.form['email']} mysql.query_db(query, data) return redirect('/success') @app.route('/success') def success(): query = ( "SELECT email, DATE_FORMAT(created_at, '%m %d %Y %h:%i %p') as date_created FROM email_validation_assignment" ) emails = mysql.query_db(query) return render_template('success.html', all_emails=emails) @app.route('/delete', methods=['POST']) def delete(): query = 'DELETE FROM email_validation_assignment WHERE email = :email' data = {'email': request.form['email']} mysql.query_db(query, data) return redirect('/success') <mask token>
<mask token> @app.route('/') def index(): return render_template('index.html') @app.route('/process', methods=['POST']) def process(): if len(request.form['email']) < 1: flash('Email cannot be blank!') return redirect('/') elif not EMAIL_REGEX.match(request.form['email']): flash('Invalid Email Address!') return redirect('/') else: flash('The email address you entered ' + str(request.form['email'] + ' is VALID. Thank you!')) query = ( 'INSERT INTO email_validation_assignment (email, created_at, updated_at)VALUES (:email, NOW(), NOW())' ) data = {'email': request.form['email']} mysql.query_db(query, data) return redirect('/success') @app.route('/success') def success(): query = ( "SELECT email, DATE_FORMAT(created_at, '%m %d %Y %h:%i %p') as date_created FROM email_validation_assignment" ) emails = mysql.query_db(query) return render_template('success.html', all_emails=emails) @app.route('/delete', methods=['POST']) def delete(): query = 'DELETE FROM email_validation_assignment WHERE email = :email' data = {'email': request.form['email']} mysql.query_db(query, data) return redirect('/success') app.run(debug=True)
<mask token> EMAIL_REGEX = re.compile('(^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\\.[a-zA-Z0-9-.]+$)') app = Flask(__name__) app.secret_key = 'ThisIsSecret' mysql = MySQLConnector(app, 'mydb') @app.route('/') def index(): return render_template('index.html') @app.route('/process', methods=['POST']) def process(): if len(request.form['email']) < 1: flash('Email cannot be blank!') return redirect('/') elif not EMAIL_REGEX.match(request.form['email']): flash('Invalid Email Address!') return redirect('/') else: flash('The email address you entered ' + str(request.form['email'] + ' is VALID. Thank you!')) query = ( 'INSERT INTO email_validation_assignment (email, created_at, updated_at)VALUES (:email, NOW(), NOW())' ) data = {'email': request.form['email']} mysql.query_db(query, data) return redirect('/success') @app.route('/success') def success(): query = ( "SELECT email, DATE_FORMAT(created_at, '%m %d %Y %h:%i %p') as date_created FROM email_validation_assignment" ) emails = mysql.query_db(query) return render_template('success.html', all_emails=emails) @app.route('/delete', methods=['POST']) def delete(): query = 'DELETE FROM email_validation_assignment WHERE email = :email' data = {'email': request.form['email']} mysql.query_db(query, data) return redirect('/success') app.run(debug=True)
from flask import Flask, request, redirect, render_template, session, flash from mysqlconnection import MySQLConnector import re EMAIL_REGEX = re.compile('(^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\\.[a-zA-Z0-9-.]+$)') app = Flask(__name__) app.secret_key = 'ThisIsSecret' mysql = MySQLConnector(app, 'mydb') @app.route('/') def index(): return render_template('index.html') @app.route('/process', methods=['POST']) def process(): if len(request.form['email']) < 1: flash('Email cannot be blank!') return redirect('/') elif not EMAIL_REGEX.match(request.form['email']): flash('Invalid Email Address!') return redirect('/') else: flash('The email address you entered ' + str(request.form['email'] + ' is VALID. Thank you!')) query = ( 'INSERT INTO email_validation_assignment (email, created_at, updated_at)VALUES (:email, NOW(), NOW())' ) data = {'email': request.form['email']} mysql.query_db(query, data) return redirect('/success') @app.route('/success') def success(): query = ( "SELECT email, DATE_FORMAT(created_at, '%m %d %Y %h:%i %p') as date_created FROM email_validation_assignment" ) emails = mysql.query_db(query) return render_template('success.html', all_emails=emails) @app.route('/delete', methods=['POST']) def delete(): query = 'DELETE FROM email_validation_assignment WHERE email = :email' data = {'email': request.form['email']} mysql.query_db(query, data) return redirect('/success') app.run(debug=True)
from flask import Flask, request, redirect, render_template, session, flash from mysqlconnection import MySQLConnector import re EMAIL_REGEX = re.compile(r"(^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+$)") app = Flask(__name__) app.secret_key = "ThisIsSecret" mysql = MySQLConnector(app,'mydb') @app.route('/') def index(): return render_template('index.html') @app.route('/process', methods=["POST"]) def process(): if len(request.form['email']) < 1: flash("Email cannot be blank!") return redirect('/') elif not EMAIL_REGEX.match(request.form['email']): flash("Invalid Email Address!") return redirect('/') else: flash("The email address you entered " + str(request.form['email'] + " is VALID. Thank you!")) query = "INSERT INTO email_validation_assignment (email, created_at, updated_at)VALUES (:email, NOW(), NOW())" data = { "email": request.form['email'] } mysql.query_db(query, data) return redirect('/success') @app.route('/success') def success(): query = "SELECT email, DATE_FORMAT(created_at, '%m %d %Y %h:%i %p') as date_created FROM email_validation_assignment" emails = mysql.query_db(query) return render_template('success.html', all_emails = emails) @app.route('/delete', methods=["POST"]) def delete(): query = "DELETE FROM email_validation_assignment WHERE email = :email" data = { 'email': request.form['email']} mysql.query_db(query, data) return redirect('/success') app.run(debug=True)
[ 4, 5, 6, 7, 8 ]
1,755
a0f83f0a2c6ddaa2fc641bd4fa48a6f50fd1d978
<mask token> class CouponForm(forms.ModelForm): <mask token> <mask token> <mask token> <mask token> <mask token> <mask token> def clean(self): cleaned_type = self.cleaned_data.get('type') real_type = CouponType.objects.filter(name=cleaned_type).first() if not real_type: raise forms.ValidationError(_( 'Sorry, that coupon type cannot be found.')) else: self.cleaned_data['type'] = real_type return self.cleaned_data class Meta: model = Coupon fields = 'name', 'type', 'data', 'style', 'valid_from', 'valid_until'
<mask token> class CouponForm(forms.ModelForm): name = forms.CharField(max_length=64, label=_('Name'), required=True) type = forms.ChoiceField(choices=COUPONTYPE_CHOICES) data = forms.CharField(max_length=64, required=False) style = forms.CharField(max_length=64, required=False) valid_from = forms.DateTimeField(widget=forms.DateTimeInput(attrs={ 'class': 'datepicker'}, format='%Y-%m-%d %H:%M'), input_formats=[ '%Y-%m-%d %H:%M'], label=_('Valid From'), required=True) valid_until = forms.DateTimeField(widget=forms.DateTimeInput(attrs={ 'class': 'datepicker'}, format='%Y-%m-%d %H:%M'), input_formats=[ '%Y-%m-%d %H:%M'], label=_('Valid Until'), required=True) def clean(self): cleaned_type = self.cleaned_data.get('type') real_type = CouponType.objects.filter(name=cleaned_type).first() if not real_type: raise forms.ValidationError(_( 'Sorry, that coupon type cannot be found.')) else: self.cleaned_data['type'] = real_type return self.cleaned_data class Meta: model = Coupon fields = 'name', 'type', 'data', 'style', 'valid_from', 'valid_until'
<mask token> COUPONTYPE_CHOICES = ('text', _('text')), ('url', _('url')), ('questionnaire', _('questionnaire')) class CouponForm(forms.ModelForm): name = forms.CharField(max_length=64, label=_('Name'), required=True) type = forms.ChoiceField(choices=COUPONTYPE_CHOICES) data = forms.CharField(max_length=64, required=False) style = forms.CharField(max_length=64, required=False) valid_from = forms.DateTimeField(widget=forms.DateTimeInput(attrs={ 'class': 'datepicker'}, format='%Y-%m-%d %H:%M'), input_formats=[ '%Y-%m-%d %H:%M'], label=_('Valid From'), required=True) valid_until = forms.DateTimeField(widget=forms.DateTimeInput(attrs={ 'class': 'datepicker'}, format='%Y-%m-%d %H:%M'), input_formats=[ '%Y-%m-%d %H:%M'], label=_('Valid Until'), required=True) def clean(self): cleaned_type = self.cleaned_data.get('type') real_type = CouponType.objects.filter(name=cleaned_type).first() if not real_type: raise forms.ValidationError(_( 'Sorry, that coupon type cannot be found.')) else: self.cleaned_data['type'] = real_type return self.cleaned_data class Meta: model = Coupon fields = 'name', 'type', 'data', 'style', 'valid_from', 'valid_until'
from django import forms from django.utils.translation import ugettext_lazy as _ from apps.qa.models.coupon import Coupon from apps.qa.models.coupon_type import CouponType COUPONTYPE_CHOICES = ('text', _('text')), ('url', _('url')), ('questionnaire', _('questionnaire')) class CouponForm(forms.ModelForm): name = forms.CharField(max_length=64, label=_('Name'), required=True) type = forms.ChoiceField(choices=COUPONTYPE_CHOICES) data = forms.CharField(max_length=64, required=False) style = forms.CharField(max_length=64, required=False) valid_from = forms.DateTimeField(widget=forms.DateTimeInput(attrs={ 'class': 'datepicker'}, format='%Y-%m-%d %H:%M'), input_formats=[ '%Y-%m-%d %H:%M'], label=_('Valid From'), required=True) valid_until = forms.DateTimeField(widget=forms.DateTimeInput(attrs={ 'class': 'datepicker'}, format='%Y-%m-%d %H:%M'), input_formats=[ '%Y-%m-%d %H:%M'], label=_('Valid Until'), required=True) def clean(self): cleaned_type = self.cleaned_data.get('type') real_type = CouponType.objects.filter(name=cleaned_type).first() if not real_type: raise forms.ValidationError(_( 'Sorry, that coupon type cannot be found.')) else: self.cleaned_data['type'] = real_type return self.cleaned_data class Meta: model = Coupon fields = 'name', 'type', 'data', 'style', 'valid_from', 'valid_until'
# -*- coding: utf-8 -*- from django import forms from django.utils.translation import ugettext_lazy as _ # import models from apps.qa.models.coupon import Coupon from apps.qa.models.coupon_type import CouponType COUPONTYPE_CHOICES = ( ('text', _("text")), ('url', _("url")), ('questionnaire', _("questionnaire")), ) class CouponForm(forms.ModelForm): name = forms.CharField(max_length=64, label=_("Name"), required=True) type = forms.ChoiceField(choices=COUPONTYPE_CHOICES) # these fields are JSON containers populated by custom BL data = forms.CharField(max_length=64, required=False) style = forms.CharField(max_length=64, required=False) valid_from = forms.DateTimeField(widget=forms.DateTimeInput(attrs={'class': 'datepicker'}, format='%Y-%m-%d %H:%M'), input_formats=['%Y-%m-%d %H:%M', ], label=_("Valid From"), required=True) valid_until = forms.DateTimeField(widget=forms.DateTimeInput(attrs={'class': 'datepicker'}, format='%Y-%m-%d %H:%M'), input_formats=['%Y-%m-%d %H:%M', ], label=_("Valid Until"), required=True) def clean(self): cleaned_type = self.cleaned_data.get('type') real_type = CouponType.objects.filter(name=cleaned_type).first() if not real_type: raise forms.ValidationError(_("Sorry, that coupon type cannot be found.")) else: self.cleaned_data['type'] = real_type return self.cleaned_data class Meta: model = Coupon fields = ('name', 'type', 'data', 'style', 'valid_from', 'valid_until')
[ 2, 3, 4, 5, 6 ]
1,756
d3b5d87b56421940449fdef48be6da9fa650dd90
<mask token> class Pacman(object): <mask token> def __init__(self, mapa, neural_net): self.mapa = mapa self.pos_x = 11 self.pos_y = 17 self.vel_x = 1 self.vel_y = 0 self.isAlive = True self.Frame = 0 self.score = 0 self.count = 0 self.count2 = 0 self.lastMove = '' self.movesCount = 0 self.neural_network = neural_net def update(self, input_data): self.Frame += 1 self.handle_mov(input_data) self.handle_colision() if self.count > TimeToStarve: self.killPacman() if self.Frame == FPS / MPS: self.Frame = 0 def handle_colision(self): if self.mapa.map[self.pos_y][self.pos_x] == 2: self.mapa.getFruit(self.pos_y, self.pos_x) self.count = 0 self.score += 1 def draw(self, win): pygame.draw.circle(win, pygame.color.Color('yellow'), (self.pos_x * TILE_WIDTH + self.RADIUS, self.pos_y * TILE_HEIGHT + self. RADIUS), self.RADIUS) <mask token> def getPos(self): return self.pos_x, self.pos_y def getVel(self): return self.vel_x, self.vel_y <mask token>
<mask token> class Pacman(object): <mask token> def __init__(self, mapa, neural_net): self.mapa = mapa self.pos_x = 11 self.pos_y = 17 self.vel_x = 1 self.vel_y = 0 self.isAlive = True self.Frame = 0 self.score = 0 self.count = 0 self.count2 = 0 self.lastMove = '' self.movesCount = 0 self.neural_network = neural_net def update(self, input_data): self.Frame += 1 self.handle_mov(input_data) self.handle_colision() if self.count > TimeToStarve: self.killPacman() if self.Frame == FPS / MPS: self.Frame = 0 def handle_colision(self): if self.mapa.map[self.pos_y][self.pos_x] == 2: self.mapa.getFruit(self.pos_y, self.pos_x) self.count = 0 self.score += 1 def draw(self, win): pygame.draw.circle(win, pygame.color.Color('yellow'), (self.pos_x * TILE_WIDTH + self.RADIUS, self.pos_y * TILE_HEIGHT + self. RADIUS), self.RADIUS) <mask token> def getPos(self): return self.pos_x, self.pos_y def getVel(self): return self.vel_x, self.vel_y def killPacman(self): self.isAlive = False
<mask token> class Pacman(object): RADIUS = int(TILE_WIDTH / 2) def __init__(self, mapa, neural_net): self.mapa = mapa self.pos_x = 11 self.pos_y = 17 self.vel_x = 1 self.vel_y = 0 self.isAlive = True self.Frame = 0 self.score = 0 self.count = 0 self.count2 = 0 self.lastMove = '' self.movesCount = 0 self.neural_network = neural_net def update(self, input_data): self.Frame += 1 self.handle_mov(input_data) self.handle_colision() if self.count > TimeToStarve: self.killPacman() if self.Frame == FPS / MPS: self.Frame = 0 def handle_colision(self): if self.mapa.map[self.pos_y][self.pos_x] == 2: self.mapa.getFruit(self.pos_y, self.pos_x) self.count = 0 self.score += 1 def draw(self, win): pygame.draw.circle(win, pygame.color.Color('yellow'), (self.pos_x * TILE_WIDTH + self.RADIUS, self.pos_y * TILE_HEIGHT + self. RADIUS), self.RADIUS) def handle_mov(self, input_data): movement = self.vel_x, self.vel_y vel_list = {'up': (0, -1), 'down': (0, 1), 'left': (-1, 0), 'right': (1, 0)} movement = vel_list[self.neural_network.nextaction(input_data)] if self.lastMove == movement: self.movesCount += 1 else: self.movesCount = 0 self.lastMove = movement if self.mapa.map[self.pos_y + movement[1]][self.pos_x + movement[0] ] != 1: self.vel_x, self.vel_y = movement if self.Frame == FPS / MPS and self.mapa.map[self.pos_y + self.vel_y][ self.pos_x + self.vel_x] != 1: self.pos_x += self.vel_x self.pos_y += self.vel_y self.count2 += 1 self.count += 1 def getPos(self): return self.pos_x, self.pos_y def getVel(self): return self.vel_x, self.vel_y def killPacman(self): self.isAlive = False
import pygame from config import * from Map import * from NeuralNetwork import * class Pacman(object): RADIUS = int(TILE_WIDTH / 2) def __init__(self, mapa, neural_net): self.mapa = mapa self.pos_x = 11 self.pos_y = 17 self.vel_x = 1 self.vel_y = 0 self.isAlive = True self.Frame = 0 self.score = 0 self.count = 0 self.count2 = 0 self.lastMove = '' self.movesCount = 0 self.neural_network = neural_net def update(self, input_data): self.Frame += 1 self.handle_mov(input_data) self.handle_colision() if self.count > TimeToStarve: self.killPacman() if self.Frame == FPS / MPS: self.Frame = 0 def handle_colision(self): if self.mapa.map[self.pos_y][self.pos_x] == 2: self.mapa.getFruit(self.pos_y, self.pos_x) self.count = 0 self.score += 1 def draw(self, win): pygame.draw.circle(win, pygame.color.Color('yellow'), (self.pos_x * TILE_WIDTH + self.RADIUS, self.pos_y * TILE_HEIGHT + self. RADIUS), self.RADIUS) def handle_mov(self, input_data): movement = self.vel_x, self.vel_y vel_list = {'up': (0, -1), 'down': (0, 1), 'left': (-1, 0), 'right': (1, 0)} movement = vel_list[self.neural_network.nextaction(input_data)] if self.lastMove == movement: self.movesCount += 1 else: self.movesCount = 0 self.lastMove = movement if self.mapa.map[self.pos_y + movement[1]][self.pos_x + movement[0] ] != 1: self.vel_x, self.vel_y = movement if self.Frame == FPS / MPS and self.mapa.map[self.pos_y + self.vel_y][ self.pos_x + self.vel_x] != 1: self.pos_x += self.vel_x self.pos_y += self.vel_y self.count2 += 1 self.count += 1 def getPos(self): return self.pos_x, self.pos_y def getVel(self): return self.vel_x, self.vel_y def killPacman(self): self.isAlive = False
import pygame from config import * from Map import * from NeuralNetwork import * class Pacman(object): RADIUS = int(TILE_WIDTH/2) def __init__(self, mapa, neural_net): self.mapa = mapa self.pos_x = 11 self.pos_y = 17 self.vel_x = 1 self.vel_y = 0 self.isAlive = True self.Frame = 0 self.score = 0 self.count = 0 self.count2 = 0 self.lastMove = "" self.movesCount = 0 self.neural_network = neural_net def update(self, input_data): self.Frame += 1 self.handle_mov(input_data) self.handle_colision() if(self.count > TimeToStarve): self.killPacman() if(self.Frame == FPS/MPS): self.Frame = 0 def handle_colision(self): if(self.mapa.map[self.pos_y][self.pos_x] == 2): self.mapa.getFruit(self.pos_y,self.pos_x) self.count = 0 self.score += 1 def draw(self, win): pygame.draw.circle( win, pygame.color.Color("yellow"), ( self.pos_x * TILE_WIDTH + self.RADIUS, self.pos_y * TILE_HEIGHT + self.RADIUS ), self.RADIUS ) def handle_mov(self, input_data): movement = (self.vel_x, self.vel_y) vel_list = { 'up': (0, -1), 'down': (0, 1), 'left': (-1, 0), 'right': (1, 0) } movement = vel_list[self.neural_network.nextaction(input_data)] if self.lastMove == movement: self.movesCount += 1 else: self.movesCount = 0 self.lastMove = movement if(self.mapa.map[self.pos_y + movement[1]][self.pos_x + movement[0]] != 1): self.vel_x, self.vel_y = movement if(self.Frame == (FPS/MPS) and self.mapa.map[self.pos_y + self.vel_y][self.pos_x + self.vel_x] != 1): self.pos_x += self.vel_x self.pos_y += self.vel_y self.count2 += 1 self.count += 1 def getPos(self): return (self.pos_x, self.pos_y) def getVel(self): return (self.vel_x, self.vel_y) def killPacman(self): self.isAlive = False
[ 7, 8, 10, 11, 12 ]
1,757
266b8958b761ee7266a8098aeaecb8b6c2a24a2a
<mask token> class BotonComando: <mask token> def __init__(self, *args, **kwargs): self.pilas = args[0] if len(args) and type(args[0] ) is pilasengine.Pilas else kwargs['pilas'] if kwargs.get('pilas', None) else None if self.pilas == None: print(consoleColors.FAIL + 'Te olvidaste de enviar pilas como parametro?? ' + consoleColors.ENDC) print(consoleColors.OKGREEN + self.__class__.__name__ + '(pilas=pilas) o ' + self.__class__.__name__ + '(pilas=pilas)' + consoleColors.ENDC) exit(1) self.boton = self.pilas.actores.Boton(x=kwargs.get('x', 0), y= kwargs.get('y', 0)) self.comando = kwargs.get('comando', '') self.boton_duplicado = BotonArrastrable(self.pilas, x=kwargs.get( 'x', 0), y=kwargs.get('y', 0), comando=self.comando) def get_comando(self): return self.comando <mask token> def posicionOk(self): """ Esta ubicado en una posicion valida dentro del mapa del juego. """ self.duplicar_boton() <mask token> <mask token> <mask token> <mask token> <mask token> class BotonArrastrable: def __init__(self, pilas, x=0, y=0, comando=''): self.comando = comando self.pilas = pilas self.boton_dup = self.pilas.actores.Boton(x, y) self.boton_dup.aprender(self.pilas.habilidades.Arrastrable) def get_boton(self): return self.boton_dup def set_comando(self, comando): self.comando = comando def get_comando(self, comando): return comando boton = property(get_boton) comando = property(get_comando, set_comando)
<mask token> class BotonComando: <mask token> def __init__(self, *args, **kwargs): self.pilas = args[0] if len(args) and type(args[0] ) is pilasengine.Pilas else kwargs['pilas'] if kwargs.get('pilas', None) else None if self.pilas == None: print(consoleColors.FAIL + 'Te olvidaste de enviar pilas como parametro?? ' + consoleColors.ENDC) print(consoleColors.OKGREEN + self.__class__.__name__ + '(pilas=pilas) o ' + self.__class__.__name__ + '(pilas=pilas)' + consoleColors.ENDC) exit(1) self.boton = self.pilas.actores.Boton(x=kwargs.get('x', 0), y= kwargs.get('y', 0)) self.comando = kwargs.get('comando', '') self.boton_duplicado = BotonArrastrable(self.pilas, x=kwargs.get( 'x', 0), y=kwargs.get('y', 0), comando=self.comando) def get_comando(self): return self.comando <mask token> def posicionOk(self): """ Esta ubicado en una posicion valida dentro del mapa del juego. """ self.duplicar_boton() def get_boton_duplicado(self): return self.boton_duplicado def get_boton(self): return self.boton <mask token> <mask token> <mask token> class BotonArrastrable: def __init__(self, pilas, x=0, y=0, comando=''): self.comando = comando self.pilas = pilas self.boton_dup = self.pilas.actores.Boton(x, y) self.boton_dup.aprender(self.pilas.habilidades.Arrastrable) def get_boton(self): return self.boton_dup def set_comando(self, comando): self.comando = comando def get_comando(self, comando): return comando boton = property(get_boton) comando = property(get_comando, set_comando)
<mask token> class BotonComando: <mask token> def __init__(self, *args, **kwargs): self.pilas = args[0] if len(args) and type(args[0] ) is pilasengine.Pilas else kwargs['pilas'] if kwargs.get('pilas', None) else None if self.pilas == None: print(consoleColors.FAIL + 'Te olvidaste de enviar pilas como parametro?? ' + consoleColors.ENDC) print(consoleColors.OKGREEN + self.__class__.__name__ + '(pilas=pilas) o ' + self.__class__.__name__ + '(pilas=pilas)' + consoleColors.ENDC) exit(1) self.boton = self.pilas.actores.Boton(x=kwargs.get('x', 0), y= kwargs.get('y', 0)) self.comando = kwargs.get('comando', '') self.boton_duplicado = BotonArrastrable(self.pilas, x=kwargs.get( 'x', 0), y=kwargs.get('y', 0), comando=self.comando) def get_comando(self): return self.comando def duplicar_boton(self): """ se duplica el boton, para que el boton duplicado sea el que se puede arrastrar""" self.boton_duplicado = BotonArrastrable(self.pilas, comando=self. comando) self.boton_duplicado.boton.y = self.boton.y self.boton_duplicado.boton.x = self.boton.x def posicionOk(self): """ Esta ubicado en una posicion valida dentro del mapa del juego. """ self.duplicar_boton() def get_boton_duplicado(self): return self.boton_duplicado def get_boton(self): return self.boton <mask token> <mask token> <mask token> class BotonArrastrable: def __init__(self, pilas, x=0, y=0, comando=''): self.comando = comando self.pilas = pilas self.boton_dup = self.pilas.actores.Boton(x, y) self.boton_dup.aprender(self.pilas.habilidades.Arrastrable) def get_boton(self): return self.boton_dup def set_comando(self, comando): self.comando = comando def get_comando(self, comando): return comando boton = property(get_boton) comando = property(get_comando, set_comando)
<mask token> class BotonComando: <mask token> def __init__(self, *args, **kwargs): self.pilas = args[0] if len(args) and type(args[0] ) is pilasengine.Pilas else kwargs['pilas'] if kwargs.get('pilas', None) else None if self.pilas == None: print(consoleColors.FAIL + 'Te olvidaste de enviar pilas como parametro?? ' + consoleColors.ENDC) print(consoleColors.OKGREEN + self.__class__.__name__ + '(pilas=pilas) o ' + self.__class__.__name__ + '(pilas=pilas)' + consoleColors.ENDC) exit(1) self.boton = self.pilas.actores.Boton(x=kwargs.get('x', 0), y= kwargs.get('y', 0)) self.comando = kwargs.get('comando', '') self.boton_duplicado = BotonArrastrable(self.pilas, x=kwargs.get( 'x', 0), y=kwargs.get('y', 0), comando=self.comando) def get_comando(self): return self.comando def duplicar_boton(self): """ se duplica el boton, para que el boton duplicado sea el que se puede arrastrar""" self.boton_duplicado = BotonArrastrable(self.pilas, comando=self. comando) self.boton_duplicado.boton.y = self.boton.y self.boton_duplicado.boton.x = self.boton.x def posicionOk(self): """ Esta ubicado en una posicion valida dentro del mapa del juego. """ self.duplicar_boton() def get_boton_duplicado(self): return self.boton_duplicado def get_boton(self): return self.boton boton = property(get_boton) botonDuplicado = property(get_boton_duplicado) comando = property(get_comando) class BotonArrastrable: def __init__(self, pilas, x=0, y=0, comando=''): self.comando = comando self.pilas = pilas self.boton_dup = self.pilas.actores.Boton(x, y) self.boton_dup.aprender(self.pilas.habilidades.Arrastrable) def get_boton(self): return self.boton_dup def set_comando(self, comando): self.comando = comando def get_comando(self, comando): return comando boton = property(get_boton) comando = property(get_comando, set_comando)
# Author: Cristian Steib # # # -*- encoding: utf-8 -*- import pilasengine class consoleColors: HEADER = '\033[95m' OKBLUE = '\033[94m' OKGREEN = '\033[92m' WARNING = '\033[93m' FAIL = '\033[91m' ENDC = '\033[0m' BOLD = '\033[1m' UNDERLINE = '\033[4m' class BotonComando(): ''' Representa cada boton para una instruccion determinada ''' def __init__(self,*args,**kwargs): self.pilas = args[0] if (len(args) and type(args[0]) is pilasengine.Pilas)else kwargs['pilas'] if kwargs.get( 'pilas', None) else None if self.pilas == None: print (consoleColors.FAIL + "Te olvidaste de enviar pilas como parametro?? " + consoleColors.ENDC) print ( consoleColors.OKGREEN + self.__class__.__name__ + "(pilas=pilas) o " + self.__class__.__name__ + "(pilas=pilas)" + consoleColors.ENDC) exit(1) self.boton=self.pilas.actores.Boton(x=kwargs.get('x',0),y=kwargs.get('y',0)) self.comando=kwargs.get('comando','') self.boton_duplicado = BotonArrastrable(self.pilas,x=kwargs.get('x',0),y=kwargs.get('y',0),comando=self.comando) def get_comando(self): return self.comando def duplicar_boton(self): ''' se duplica el boton, para que el boton duplicado sea el que se puede arrastrar''' self.boton_duplicado=BotonArrastrable(self.pilas,comando=self.comando) self.boton_duplicado.boton.y=self.boton.y self.boton_duplicado.boton.x=self.boton.x def posicionOk(self): ''' Esta ubicado en una posicion valida dentro del mapa del juego. ''' self.duplicar_boton() def get_boton_duplicado(self): return self.boton_duplicado def get_boton(self): return self.boton boton = property(get_boton) botonDuplicado = property(get_boton_duplicado) comando = property(get_comando) class BotonArrastrable(): def __init__(self,pilas,x=0,y=0, comando=''): self.comando=comando self.pilas=pilas self.boton_dup=self.pilas.actores.Boton(x,y) self.boton_dup.aprender(self.pilas.habilidades.Arrastrable) def get_boton(self): return self.boton_dup def set_comando(self,comando): self.comando = comando def get_comando(self,comando): return comando boton = property(get_boton) comando = property(get_comando,set_comando)
[ 10, 12, 13, 14, 19 ]
1,758
ccdd7a5e0a1de75762530a7cadd919a2ee753d18
<mask token> class lfwdata: <mask token> <mask token>
<mask token> class lfwdata: def __init__(self): self._pairs = [] pairs = open(os.path.join(cfg.LFW_IMAGEPATH, '../pairs.txt')) pairs.readline() for pair in pairs: pair = pair.split() if len(pair) == 3: img1 = os.path.join(pair[0], pair[0] + '_{:04d}.jpg'.format (int(pair[1]))) img2 = os.path.join(pair[0], pair[0] + '_{:04d}.jpg'.format (int(pair[2]))) label = True elif len(pair) == 4: img1 = os.path.join(pair[0], pair[0] + '_{:04d}.jpg'.format (int(pair[1]))) img2 = os.path.join(pair[2], pair[2] + '_{:04d}.jpg'.format (int(pair[3]))) label = False else: assert False, pair self._pairs.append({'img': [img1, img2], 'label': label}) print('Number of pairs: {}'.format(len(self._pairs))) <mask token>
<mask token> class lfwdata: def __init__(self): self._pairs = [] pairs = open(os.path.join(cfg.LFW_IMAGEPATH, '../pairs.txt')) pairs.readline() for pair in pairs: pair = pair.split() if len(pair) == 3: img1 = os.path.join(pair[0], pair[0] + '_{:04d}.jpg'.format (int(pair[1]))) img2 = os.path.join(pair[0], pair[0] + '_{:04d}.jpg'.format (int(pair[2]))) label = True elif len(pair) == 4: img1 = os.path.join(pair[0], pair[0] + '_{:04d}.jpg'.format (int(pair[1]))) img2 = os.path.join(pair[2], pair[2] + '_{:04d}.jpg'.format (int(pair[3]))) label = False else: assert False, pair self._pairs.append({'img': [img1, img2], 'label': label}) print('Number of pairs: {}'.format(len(self._pairs))) if __name__ == '__main__': pairs = lfwdata()
import os import config as cfg import numpy as np class lfwdata: def __init__(self): self._pairs = [] pairs = open(os.path.join(cfg.LFW_IMAGEPATH, '../pairs.txt')) pairs.readline() for pair in pairs: pair = pair.split() if len(pair) == 3: img1 = os.path.join(pair[0], pair[0] + '_{:04d}.jpg'.format (int(pair[1]))) img2 = os.path.join(pair[0], pair[0] + '_{:04d}.jpg'.format (int(pair[2]))) label = True elif len(pair) == 4: img1 = os.path.join(pair[0], pair[0] + '_{:04d}.jpg'.format (int(pair[1]))) img2 = os.path.join(pair[2], pair[2] + '_{:04d}.jpg'.format (int(pair[3]))) label = False else: assert False, pair self._pairs.append({'img': [img1, img2], 'label': label}) print('Number of pairs: {}'.format(len(self._pairs))) if __name__ == '__main__': pairs = lfwdata()
import os import config as cfg import numpy as np class lfwdata(): def __init__(self): self._pairs = [] pairs = open(os.path.join(cfg.LFW_IMAGEPATH, '../pairs.txt')) pairs.readline() for pair in pairs: pair = pair.split() if len(pair) == 3: img1 = os.path.join( pair[0], pair[0] + '_{:04d}.jpg'.format(int(pair[1]))) img2 = os.path.join( pair[0], pair[0] + '_{:04d}.jpg'.format(int(pair[2]))) label = True elif len(pair) == 4: img1 = os.path.join( pair[0], pair[0] + '_{:04d}.jpg'.format(int(pair[1]))) img2 = os.path.join( pair[2], pair[2] + '_{:04d}.jpg'.format(int(pair[3]))) label = False else: assert False, pair self._pairs.append({'img': [img1, img2], 'label': label}) print('Number of pairs: {}'.format(len(self._pairs))) if __name__ == '__main__': pairs = lfwdata()
[ 1, 2, 3, 4, 5 ]
1,759
607d8bc79caa9d767bdb7e77a5db52295d90236f
<mask token> class TestingPenaltyTracker(unittest.TestCase): <mask token> @classmethod def tearDownClass(cls): cls.testPenaltyTracker = None cls.controlDatabase = None os.remove(os.path.join(os.getcwd(), 'Tests', 'test_penalty.db')) <mask token> <mask token> def testPenaltyProcessing(self): self.testPenaltyTracker.setTargetDate('2016-10-24') self.testPenaltyTracker.run() self.assertEqual(self.controlDatabase.getHighestID(), self. testPenaltyTracker.databaseManager.getHighestID()) getAllCommand = 'SELECT * FROM PenaltyTracker' controlRows = self.controlDatabase.getData(getAllCommand) testRows = self.testPenaltyTracker.databaseManager.getData( getAllCommand) self.assertEqual(controlRows, testRows)
<mask token> class TestingPenaltyTracker(unittest.TestCase): <mask token> @classmethod def tearDownClass(cls): cls.testPenaltyTracker = None cls.controlDatabase = None os.remove(os.path.join(os.getcwd(), 'Tests', 'test_penalty.db')) def testGameUrls(self): self.testPenaltyTracker.setTargetDate('2016-02-26') numberOfGames = len(self.testPenaltyTracker.GetGameURLS()) self.assertEqual(numberOfGames, 5) def testSetDBLocation(self): self.assertNotEqual(self.testPenaltyTracker.databaseManager, None) def testPenaltyProcessing(self): self.testPenaltyTracker.setTargetDate('2016-10-24') self.testPenaltyTracker.run() self.assertEqual(self.controlDatabase.getHighestID(), self. testPenaltyTracker.databaseManager.getHighestID()) getAllCommand = 'SELECT * FROM PenaltyTracker' controlRows = self.controlDatabase.getData(getAllCommand) testRows = self.testPenaltyTracker.databaseManager.getData( getAllCommand) self.assertEqual(controlRows, testRows)
<mask token> class TestingPenaltyTracker(unittest.TestCase): @classmethod def setUpClass(cls): cls.testPTDatabase = os.path.join(os.getcwd(), 'Tests', 'test_penalty.db') cls.testPenaltyTracker = PenaltyTracker() cls.testPenaltyTracker.setDatabaseLocation(cls.testPTDatabase) cls.testPenaltyTracker.setSeason('PenaltyTracker') cls.testPenaltyTracker.createAndSetDatabaseManager() controlPath = os.path.join(os.getcwd(), 'Tests', 'season_test_10-24-16.db') cls.controlDatabase = DatabaseManager(controlPath, 'PenaltyTracker') @classmethod def tearDownClass(cls): cls.testPenaltyTracker = None cls.controlDatabase = None os.remove(os.path.join(os.getcwd(), 'Tests', 'test_penalty.db')) def testGameUrls(self): self.testPenaltyTracker.setTargetDate('2016-02-26') numberOfGames = len(self.testPenaltyTracker.GetGameURLS()) self.assertEqual(numberOfGames, 5) def testSetDBLocation(self): self.assertNotEqual(self.testPenaltyTracker.databaseManager, None) def testPenaltyProcessing(self): self.testPenaltyTracker.setTargetDate('2016-10-24') self.testPenaltyTracker.run() self.assertEqual(self.controlDatabase.getHighestID(), self. testPenaltyTracker.databaseManager.getHighestID()) getAllCommand = 'SELECT * FROM PenaltyTracker' controlRows = self.controlDatabase.getData(getAllCommand) testRows = self.testPenaltyTracker.databaseManager.getData( getAllCommand) self.assertEqual(controlRows, testRows)
from PenaltyTracker import PenaltyTracker from DatabaseManager import DatabaseManager import unittest, os, sys, shutil, filecmp class TestingPenaltyTracker(unittest.TestCase): @classmethod def setUpClass(cls): cls.testPTDatabase = os.path.join(os.getcwd(), 'Tests', 'test_penalty.db') cls.testPenaltyTracker = PenaltyTracker() cls.testPenaltyTracker.setDatabaseLocation(cls.testPTDatabase) cls.testPenaltyTracker.setSeason('PenaltyTracker') cls.testPenaltyTracker.createAndSetDatabaseManager() controlPath = os.path.join(os.getcwd(), 'Tests', 'season_test_10-24-16.db') cls.controlDatabase = DatabaseManager(controlPath, 'PenaltyTracker') @classmethod def tearDownClass(cls): cls.testPenaltyTracker = None cls.controlDatabase = None os.remove(os.path.join(os.getcwd(), 'Tests', 'test_penalty.db')) def testGameUrls(self): self.testPenaltyTracker.setTargetDate('2016-02-26') numberOfGames = len(self.testPenaltyTracker.GetGameURLS()) self.assertEqual(numberOfGames, 5) def testSetDBLocation(self): self.assertNotEqual(self.testPenaltyTracker.databaseManager, None) def testPenaltyProcessing(self): self.testPenaltyTracker.setTargetDate('2016-10-24') self.testPenaltyTracker.run() self.assertEqual(self.controlDatabase.getHighestID(), self. testPenaltyTracker.databaseManager.getHighestID()) getAllCommand = 'SELECT * FROM PenaltyTracker' controlRows = self.controlDatabase.getData(getAllCommand) testRows = self.testPenaltyTracker.databaseManager.getData( getAllCommand) self.assertEqual(controlRows, testRows)
from PenaltyTracker import PenaltyTracker from DatabaseManager import DatabaseManager import unittest,os,sys,shutil, filecmp class TestingPenaltyTracker(unittest.TestCase): @classmethod def setUpClass(cls): cls.testPTDatabase = os.path.join( os.getcwd(), "Tests", "test_penalty.db") cls.testPenaltyTracker = PenaltyTracker() cls.testPenaltyTracker.setDatabaseLocation(cls.testPTDatabase) cls.testPenaltyTracker.setSeason("PenaltyTracker") cls.testPenaltyTracker.createAndSetDatabaseManager() controlPath = os.path.join(os.getcwd(), "Tests", "season_test_10-24-16.db") cls.controlDatabase = DatabaseManager(controlPath, "PenaltyTracker") @classmethod def tearDownClass(cls): cls.testPenaltyTracker = None cls.controlDatabase = None os.remove( os.path.join( os.getcwd(), "Tests", "test_penalty.db") ) def testGameUrls(self): self.testPenaltyTracker.setTargetDate("2016-02-26") numberOfGames = len( self.testPenaltyTracker.GetGameURLS() ) self.assertEqual( numberOfGames, 5 ) def testSetDBLocation(self): self.assertNotEqual(self.testPenaltyTracker.databaseManager, None ) def testPenaltyProcessing(self): # generate the test data self.testPenaltyTracker.setTargetDate("2016-10-24") self.testPenaltyTracker.run(); self.assertEqual( self.controlDatabase.getHighestID(), self.testPenaltyTracker.databaseManager.getHighestID() ) getAllCommand = "SELECT * FROM PenaltyTracker" controlRows = self.controlDatabase.getData(getAllCommand) testRows = self.testPenaltyTracker.databaseManager.getData(getAllCommand) self.assertEqual(controlRows, testRows)
[ 3, 5, 6, 7, 8 ]
1,760
596fe474ae60dd6a06123df6fe246f7e947b3482
<mask token> class SaisonCulturelle(Saison): def __unicode__(self): return self.nom class Festival(Saison): saison_culture = models.ForeignKey(SaisonCulturelle) def __unicode__(self): return self.nom class TypeEvenement(models.Model): nom = models.CharField(max_length=255) slug = models.SlugField(unique=True) def __unicode__(self): return self.nom class Meta: ordering = ['nom'] <mask token> class Evenement(models.Model): nom = models.CharField(max_length=255) meta_description = models.CharField(max_length=200) description = models.TextField() debut = models.DateTimeField('Date de début') fin = models.DateTimeField('Date de fin') organisateur = models.ManyToManyField(Organisateur) image = FileBrowseField('Image (facultatif)', max_length=255, directory ='evenements', extensions=['.jpg', '.png', '.gif', '.jpeg', '.pdf'], blank=True, null=True) url = models.URLField("Un lien vers plus d'infos: (facultatif)", blank= True, null=True) url_reservation = models.URLField( "Un lien vers la page de reservation: (facultatif, annule le lien vers plus d'infos) " , blank=True, null=True) categorie = models.CharField(max_length=3, choices=EVENEMENT_CATEGORIES, default='aut') public = models.CharField(max_length=3, choices=EVENEMENT_PUBLIC, default='pub') cadre_evenement = models.ForeignKey(Saison) type = models.ForeignKey(TypeEvenement) lieu = models.ForeignKey(Lieu) publish = models.BooleanField('Publié', default=False) page_accueil = models.BooleanField("Page d'accueil", default=False) complet = models.BooleanField('Ce spectacle est complet', default=False) slug = models.SlugField(max_length=255, unique=True) class Meta: ordering = ['-debut'] def Organisateurs(self): return '\n;\n'.join([s.nom for s in self.organisateur.all()]) def __unicode__(self): return self.nom def monthyeardebut(self): return self.debut.strftime('%m') + '-' + self.debut.strftime('%Y') @permalink def get_absolute_url(self): return 'event-details', (), {'slug': self.cadre_evenement.slug, 'evenement_slug': self.slug} class Prix(models.Model): intitule = models.CharField('Intitulé ', max_length=255, blank=False, null=False) prix = models.FloatField('Prix (séparateur point ex : 0.5 )', default= None, blank=False, null=True) evenement = models.ForeignKey(Evenement) class Meta: verbose_name_plural = u'Prix' class DocumentAttache(models.Model): nom = models.CharField(max_length=255, verbose_name='Nom') document = FileBrowseField('Document', max_length=200, directory= 'evenements/docs', extensions=['.pdf', '.doc', '.odt', '.docx', '.txt'] ) reference = models.ForeignKey(Evenement) class EvenementBibManager(models.Manager): def get_queryset(self): return super(EvenementBibManager, self).get_queryset().filter(categorie ='bib') class EvenementBib(Evenement): objects = EvenementBibManager() class Meta: proxy = True verbose_name_plural = u'Événements Bibliothèques' verbose_name = u'Événement Bibliothèque' class EvenementCrdManager(models.Manager): def get_queryset(self): return super(EvenementCrdManager, self).get_queryset().filter(categorie ='crd') class EvenementCrd(Evenement): objects = EvenementCrdManager() class Meta: proxy = True verbose_name_plural = u'Événements Conservatoires' verbose_name = u'Événement Conservatoire' class EvenementDevEcoManager(models.Manager): def get_queryset(self): return super(EvenementDevEcoManager, self).get_queryset().filter( categorie='eco') class EvenementDevEco(Evenement): objects = EvenementDevEcoManager() class Meta: proxy = True verbose_name_plural = u'Événements Dev Eco' verbose_name = u'Événement Dev Eco'
<mask token> class Saison(models.Model): nom = models.CharField(max_length=255) debut = models.DateTimeField('Date de début') fin = models.DateTimeField('date de fin') description = models.TextField() slug = models.SlugField(max_length=255, unique=True) objects = InheritanceManager() def __unicode__(self): return self.nom class SaisonCulturelle(Saison): def __unicode__(self): return self.nom class Festival(Saison): saison_culture = models.ForeignKey(SaisonCulturelle) def __unicode__(self): return self.nom class TypeEvenement(models.Model): nom = models.CharField(max_length=255) slug = models.SlugField(unique=True) def __unicode__(self): return self.nom class Meta: ordering = ['nom'] <mask token> class Evenement(models.Model): nom = models.CharField(max_length=255) meta_description = models.CharField(max_length=200) description = models.TextField() debut = models.DateTimeField('Date de début') fin = models.DateTimeField('Date de fin') organisateur = models.ManyToManyField(Organisateur) image = FileBrowseField('Image (facultatif)', max_length=255, directory ='evenements', extensions=['.jpg', '.png', '.gif', '.jpeg', '.pdf'], blank=True, null=True) url = models.URLField("Un lien vers plus d'infos: (facultatif)", blank= True, null=True) url_reservation = models.URLField( "Un lien vers la page de reservation: (facultatif, annule le lien vers plus d'infos) " , blank=True, null=True) categorie = models.CharField(max_length=3, choices=EVENEMENT_CATEGORIES, default='aut') public = models.CharField(max_length=3, choices=EVENEMENT_PUBLIC, default='pub') cadre_evenement = models.ForeignKey(Saison) type = models.ForeignKey(TypeEvenement) lieu = models.ForeignKey(Lieu) publish = models.BooleanField('Publié', default=False) page_accueil = models.BooleanField("Page d'accueil", default=False) complet = models.BooleanField('Ce spectacle est complet', default=False) slug = models.SlugField(max_length=255, unique=True) class Meta: ordering = ['-debut'] def Organisateurs(self): return '\n;\n'.join([s.nom for s in self.organisateur.all()]) def __unicode__(self): return self.nom def monthyeardebut(self): return self.debut.strftime('%m') + '-' + self.debut.strftime('%Y') @permalink def get_absolute_url(self): return 'event-details', (), {'slug': self.cadre_evenement.slug, 'evenement_slug': self.slug} class Prix(models.Model): intitule = models.CharField('Intitulé ', max_length=255, blank=False, null=False) prix = models.FloatField('Prix (séparateur point ex : 0.5 )', default= None, blank=False, null=True) evenement = models.ForeignKey(Evenement) class Meta: verbose_name_plural = u'Prix' class DocumentAttache(models.Model): nom = models.CharField(max_length=255, verbose_name='Nom') document = FileBrowseField('Document', max_length=200, directory= 'evenements/docs', extensions=['.pdf', '.doc', '.odt', '.docx', '.txt'] ) reference = models.ForeignKey(Evenement) class EvenementBibManager(models.Manager): def get_queryset(self): return super(EvenementBibManager, self).get_queryset().filter(categorie ='bib') class EvenementBib(Evenement): objects = EvenementBibManager() class Meta: proxy = True verbose_name_plural = u'Événements Bibliothèques' verbose_name = u'Événement Bibliothèque' class EvenementCrdManager(models.Manager): def get_queryset(self): return super(EvenementCrdManager, self).get_queryset().filter(categorie ='crd') class EvenementCrd(Evenement): objects = EvenementCrdManager() class Meta: proxy = True verbose_name_plural = u'Événements Conservatoires' verbose_name = u'Événement Conservatoire' class EvenementDevEcoManager(models.Manager): def get_queryset(self): return super(EvenementDevEcoManager, self).get_queryset().filter( categorie='eco') class EvenementDevEco(Evenement): objects = EvenementDevEcoManager() class Meta: proxy = True verbose_name_plural = u'Événements Dev Eco' verbose_name = u'Événement Dev Eco'
<mask token> class Organisateur(models.Model): <mask token> <mask token> <mask token> <mask token> <mask token> <mask token> <mask token> <mask token> <mask token> <mask token> <mask token> <mask token> <mask token> <mask token> <mask token> class Meta: verbose_name_plural = 'Organisateurs' ordering = ['ville__nom'] class Saison(models.Model): nom = models.CharField(max_length=255) debut = models.DateTimeField('Date de début') fin = models.DateTimeField('date de fin') description = models.TextField() slug = models.SlugField(max_length=255, unique=True) objects = InheritanceManager() def __unicode__(self): return self.nom class SaisonCulturelle(Saison): def __unicode__(self): return self.nom class Festival(Saison): saison_culture = models.ForeignKey(SaisonCulturelle) def __unicode__(self): return self.nom class TypeEvenement(models.Model): nom = models.CharField(max_length=255) slug = models.SlugField(unique=True) def __unicode__(self): return self.nom class Meta: ordering = ['nom'] <mask token> class Evenement(models.Model): nom = models.CharField(max_length=255) meta_description = models.CharField(max_length=200) description = models.TextField() debut = models.DateTimeField('Date de début') fin = models.DateTimeField('Date de fin') organisateur = models.ManyToManyField(Organisateur) image = FileBrowseField('Image (facultatif)', max_length=255, directory ='evenements', extensions=['.jpg', '.png', '.gif', '.jpeg', '.pdf'], blank=True, null=True) url = models.URLField("Un lien vers plus d'infos: (facultatif)", blank= True, null=True) url_reservation = models.URLField( "Un lien vers la page de reservation: (facultatif, annule le lien vers plus d'infos) " , blank=True, null=True) categorie = models.CharField(max_length=3, choices=EVENEMENT_CATEGORIES, default='aut') public = models.CharField(max_length=3, choices=EVENEMENT_PUBLIC, default='pub') cadre_evenement = models.ForeignKey(Saison) type = models.ForeignKey(TypeEvenement) lieu = models.ForeignKey(Lieu) publish = models.BooleanField('Publié', default=False) page_accueil = models.BooleanField("Page d'accueil", default=False) complet = models.BooleanField('Ce spectacle est complet', default=False) slug = models.SlugField(max_length=255, unique=True) class Meta: ordering = ['-debut'] def Organisateurs(self): return '\n;\n'.join([s.nom for s in self.organisateur.all()]) def __unicode__(self): return self.nom def monthyeardebut(self): return self.debut.strftime('%m') + '-' + self.debut.strftime('%Y') @permalink def get_absolute_url(self): return 'event-details', (), {'slug': self.cadre_evenement.slug, 'evenement_slug': self.slug} class Prix(models.Model): intitule = models.CharField('Intitulé ', max_length=255, blank=False, null=False) prix = models.FloatField('Prix (séparateur point ex : 0.5 )', default= None, blank=False, null=True) evenement = models.ForeignKey(Evenement) class Meta: verbose_name_plural = u'Prix' class DocumentAttache(models.Model): nom = models.CharField(max_length=255, verbose_name='Nom') document = FileBrowseField('Document', max_length=200, directory= 'evenements/docs', extensions=['.pdf', '.doc', '.odt', '.docx', '.txt'] ) reference = models.ForeignKey(Evenement) class EvenementBibManager(models.Manager): def get_queryset(self): return super(EvenementBibManager, self).get_queryset().filter(categorie ='bib') class EvenementBib(Evenement): objects = EvenementBibManager() class Meta: proxy = True verbose_name_plural = u'Événements Bibliothèques' verbose_name = u'Événement Bibliothèque' class EvenementCrdManager(models.Manager): def get_queryset(self): return super(EvenementCrdManager, self).get_queryset().filter(categorie ='crd') class EvenementCrd(Evenement): objects = EvenementCrdManager() class Meta: proxy = True verbose_name_plural = u'Événements Conservatoires' verbose_name = u'Événement Conservatoire' class EvenementDevEcoManager(models.Manager): def get_queryset(self): return super(EvenementDevEcoManager, self).get_queryset().filter( categorie='eco') class EvenementDevEco(Evenement): objects = EvenementDevEcoManager() class Meta: proxy = True verbose_name_plural = u'Événements Dev Eco' verbose_name = u'Événement Dev Eco'
<mask token> class Organisateur(models.Model): nom = models.CharField(max_length=255) slug = models.SlugField(max_length=255, unique=True) meta_description = models.CharField(max_length=200) description = models.TextField() logo = FileBrowseField('Image', max_length=255, directory='evenements', extensions=['.jpg', '.png', '.gif', '.jpeg'], blank=True, null=True) url = models.URLField('Site de cet organisateur: (facultatif) ', blank =True) email = models.EmailField('Mail (facultatif)', max_length=255, blank=True) telephone = models.CharField(max_length=25) fax = models.CharField('Fax (facultatif)', max_length=25, blank=True) rue = models.CharField(max_length=255) ville = models.ForeignKey(Ville) orga_service = models.ForeignKey(Service, blank=True, null=True) orga_equipement = models.ForeignKey(Equipement, blank=True, null=True) orga_ville = models.ForeignKey(Ville, blank=True, null=True, related_name='orga_orga_ville') def __unicode__(self): return self.nom + ' / ' + self.ville.nom class Meta: verbose_name_plural = 'Organisateurs' ordering = ['ville__nom'] class Saison(models.Model): nom = models.CharField(max_length=255) debut = models.DateTimeField('Date de début') fin = models.DateTimeField('date de fin') description = models.TextField() slug = models.SlugField(max_length=255, unique=True) objects = InheritanceManager() def __unicode__(self): return self.nom class SaisonCulturelle(Saison): def __unicode__(self): return self.nom class Festival(Saison): saison_culture = models.ForeignKey(SaisonCulturelle) def __unicode__(self): return self.nom class TypeEvenement(models.Model): nom = models.CharField(max_length=255) slug = models.SlugField(unique=True) def __unicode__(self): return self.nom class Meta: ordering = ['nom'] <mask token> class Evenement(models.Model): nom = models.CharField(max_length=255) meta_description = models.CharField(max_length=200) description = models.TextField() debut = models.DateTimeField('Date de début') fin = models.DateTimeField('Date de fin') organisateur = models.ManyToManyField(Organisateur) image = FileBrowseField('Image (facultatif)', max_length=255, directory ='evenements', extensions=['.jpg', '.png', '.gif', '.jpeg', '.pdf'], blank=True, null=True) url = models.URLField("Un lien vers plus d'infos: (facultatif)", blank= True, null=True) url_reservation = models.URLField( "Un lien vers la page de reservation: (facultatif, annule le lien vers plus d'infos) " , blank=True, null=True) categorie = models.CharField(max_length=3, choices=EVENEMENT_CATEGORIES, default='aut') public = models.CharField(max_length=3, choices=EVENEMENT_PUBLIC, default='pub') cadre_evenement = models.ForeignKey(Saison) type = models.ForeignKey(TypeEvenement) lieu = models.ForeignKey(Lieu) publish = models.BooleanField('Publié', default=False) page_accueil = models.BooleanField("Page d'accueil", default=False) complet = models.BooleanField('Ce spectacle est complet', default=False) slug = models.SlugField(max_length=255, unique=True) class Meta: ordering = ['-debut'] def Organisateurs(self): return '\n;\n'.join([s.nom for s in self.organisateur.all()]) def __unicode__(self): return self.nom def monthyeardebut(self): return self.debut.strftime('%m') + '-' + self.debut.strftime('%Y') @permalink def get_absolute_url(self): return 'event-details', (), {'slug': self.cadre_evenement.slug, 'evenement_slug': self.slug} class Prix(models.Model): intitule = models.CharField('Intitulé ', max_length=255, blank=False, null=False) prix = models.FloatField('Prix (séparateur point ex : 0.5 )', default= None, blank=False, null=True) evenement = models.ForeignKey(Evenement) class Meta: verbose_name_plural = u'Prix' class DocumentAttache(models.Model): nom = models.CharField(max_length=255, verbose_name='Nom') document = FileBrowseField('Document', max_length=200, directory= 'evenements/docs', extensions=['.pdf', '.doc', '.odt', '.docx', '.txt'] ) reference = models.ForeignKey(Evenement) class EvenementBibManager(models.Manager): def get_queryset(self): return super(EvenementBibManager, self).get_queryset().filter(categorie ='bib') class EvenementBib(Evenement): objects = EvenementBibManager() class Meta: proxy = True verbose_name_plural = u'Événements Bibliothèques' verbose_name = u'Événement Bibliothèque' class EvenementCrdManager(models.Manager): def get_queryset(self): return super(EvenementCrdManager, self).get_queryset().filter(categorie ='crd') class EvenementCrd(Evenement): objects = EvenementCrdManager() class Meta: proxy = True verbose_name_plural = u'Événements Conservatoires' verbose_name = u'Événement Conservatoire' class EvenementDevEcoManager(models.Manager): def get_queryset(self): return super(EvenementDevEcoManager, self).get_queryset().filter( categorie='eco') class EvenementDevEco(Evenement): objects = EvenementDevEcoManager() class Meta: proxy = True verbose_name_plural = u'Événements Dev Eco' verbose_name = u'Événement Dev Eco'
# -*- coding: utf-8 -*- from django.db import models from filebrowser.fields import FileBrowseField from localisations.models import Ville, Lieu from model_utils.managers import InheritanceManager from services.models import Service from equipements.models import Equipement from localisations.models import Ville from django.db.models import permalink class Organisateur(models.Model): nom = models.CharField(max_length=255) slug = models.SlugField(max_length=255, unique=True) meta_description = models.CharField(max_length=200) description = models.TextField() logo = FileBrowseField("Image", max_length=255, directory="evenements", extensions=[".jpg", ".png", ".gif", ".jpeg"], blank=True, null=True) url = models.URLField("Site de cet organisateur: (facultatif) ", blank=True) email = models.EmailField("Mail (facultatif)", max_length=255, blank=True) telephone = models.CharField(max_length=25) fax = models.CharField("Fax (facultatif)", max_length=25, blank=True) rue = models.CharField(max_length=255) ville = models.ForeignKey(Ville) # Un choix de design pas très beau, mais fonctionellement les équipements, services, communes de la # communauté d'agglo peuvent organiser des evènements ainsi que d'autres entités exterieures alors ... orga_service = models.ForeignKey(Service, blank=True, null=True) orga_equipement = models.ForeignKey(Equipement, blank=True, null=True) orga_ville = models.ForeignKey(Ville, blank=True, null=True, related_name='orga_orga_ville') def __unicode__(self): return self.nom + " / " + self.ville.nom class Meta: verbose_name_plural = "Organisateurs" ordering = ['ville__nom'] class Saison(models.Model): nom = models.CharField(max_length=255) debut = models.DateTimeField("Date de début") fin = models.DateTimeField("date de fin") description = models.TextField() slug = models.SlugField(max_length=255, unique=True) objects = InheritanceManager() def __unicode__(self): return self.nom class SaisonCulturelle(Saison): def __unicode__(self): return self.nom class Festival(Saison): saison_culture = models.ForeignKey(SaisonCulturelle) def __unicode__(self): return self.nom class TypeEvenement(models.Model): nom = models.CharField(max_length=255) slug = models.SlugField(unique=True) def __unicode__(self): return self.nom class Meta: ordering = ['nom'] EVENEMENT_CATEGORIES = ( ('bib', u'Bibliothèques/Médiatèques'), ('crd', u'Conservatoires'), ('sty', u'Sothevy'), ('eco', u'Développement Économique'), ('aut', u'Autres'), ) EVENEMENT_PUBLIC = ( ('adt', u'Adulte'), ('enf', u'Enfant'), ('pub', u'Tout public'), ('ent', u'Entreprises'), ) class Evenement(models.Model): nom = models.CharField(max_length=255) meta_description = models.CharField(max_length=200) description = models.TextField() debut = models.DateTimeField("Date de début") fin = models.DateTimeField("Date de fin") organisateur = models.ManyToManyField(Organisateur) image = FileBrowseField("Image (facultatif)", max_length=255, directory="evenements", extensions=[".jpg", ".png", ".gif", ".jpeg", ".pdf"], blank=True, null=True) url = models.URLField("Un lien vers plus d'infos: (facultatif)", blank=True, null=True) url_reservation = models.URLField( "Un lien vers la page de reservation: (facultatif, annule le lien vers plus d'infos) ", blank=True, null=True) categorie = models.CharField(max_length=3, choices=EVENEMENT_CATEGORIES, default='aut') public = models.CharField(max_length=3, choices=EVENEMENT_PUBLIC, default='pub') cadre_evenement = models.ForeignKey(Saison) type = models.ForeignKey(TypeEvenement) lieu = models.ForeignKey(Lieu) publish = models.BooleanField("Publié", default=False) page_accueil = models.BooleanField("Page d'accueil", default=False) complet = models.BooleanField("Ce spectacle est complet", default=False) slug = models.SlugField(max_length=255, unique=True) class Meta: ordering = ['-debut'] def Organisateurs(self): return "\n;\n".join([s.nom for s in self.organisateur.all()]) def __unicode__(self): return self.nom def monthyeardebut(self): return self.debut.strftime("%m") + "-" + self.debut.strftime("%Y") @permalink def get_absolute_url(self): return ('event-details', (), {'slug': self.cadre_evenement.slug, 'evenement_slug': self.slug}) class Prix(models.Model): intitule = models.CharField("Intitulé ", max_length=255, blank=False, null=False) prix = models.FloatField("Prix (séparateur point ex : 0.5 )", default=None, blank=False, null=True) evenement = models.ForeignKey(Evenement) class Meta: verbose_name_plural = u"Prix" class DocumentAttache(models.Model): nom = models.CharField(max_length=255, verbose_name="Nom") document = FileBrowseField("Document", max_length=200, directory="evenements/docs", extensions=[".pdf", ".doc", ".odt", ".docx", ".txt"]) reference = models.ForeignKey(Evenement) class EvenementBibManager(models.Manager): def get_queryset(self): return super(EvenementBibManager, self).get_queryset().filter(categorie='bib') class EvenementBib(Evenement): objects = EvenementBibManager() class Meta: proxy = True verbose_name_plural = u"Événements Bibliothèques" verbose_name = u"Événement Bibliothèque" class EvenementCrdManager(models.Manager): def get_queryset(self): return super(EvenementCrdManager, self).get_queryset().filter(categorie='crd') class EvenementCrd(Evenement): objects = EvenementCrdManager() class Meta: proxy = True verbose_name_plural = u"Événements Conservatoires" verbose_name = u"Événement Conservatoire" class EvenementDevEcoManager(models.Manager): def get_queryset(self): return super(EvenementDevEcoManager, self).get_queryset().filter(categorie='eco') class EvenementDevEco(Evenement): objects = EvenementDevEcoManager() class Meta: proxy = True verbose_name_plural = u"Événements Dev Eco" verbose_name = u"Événement Dev Eco"
[ 30, 33, 34, 36, 39 ]
1,761
b308d81fb8eab9f52aa0ad4f88e25d6757ef703a
<mask token>
<mask token> class Migration(migrations.Migration): <mask token> <mask token> <mask token>
<mask token> class Migration(migrations.Migration): initial = True dependencies = [] operations = [migrations.CreateModel(name='Experiment', fields=[('id', models.AutoField(auto_created=True, primary_key=True, serialize= False, verbose_name='ID')), ('name', models.CharField(max_length= 255)), ('description', models.TextField()), ('is_test', models. BooleanField(default=False)), ('type', models.CharField(max_length= 255)), ('created_at', models.DateTimeField(auto_now_add=True)), ( 'updated_at', models.DateTimeField(auto_now=True)), ('deleted_at', models.DateTimeField(null=True))], options={'db_table': 'experiment'}), migrations.CreateModel(name='ExperimentPlio', fields=[('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('split_percentage', models. CharField(max_length=255)), ('experiment', models.ForeignKey( on_delete=django.db.models.deletion.CASCADE, to= 'experiments.experiment'))], options={'db_table': 'experiment_plio'})]
from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): initial = True dependencies = [] operations = [migrations.CreateModel(name='Experiment', fields=[('id', models.AutoField(auto_created=True, primary_key=True, serialize= False, verbose_name='ID')), ('name', models.CharField(max_length= 255)), ('description', models.TextField()), ('is_test', models. BooleanField(default=False)), ('type', models.CharField(max_length= 255)), ('created_at', models.DateTimeField(auto_now_add=True)), ( 'updated_at', models.DateTimeField(auto_now=True)), ('deleted_at', models.DateTimeField(null=True))], options={'db_table': 'experiment'}), migrations.CreateModel(name='ExperimentPlio', fields=[('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('split_percentage', models. CharField(max_length=255)), ('experiment', models.ForeignKey( on_delete=django.db.models.deletion.CASCADE, to= 'experiments.experiment'))], options={'db_table': 'experiment_plio'})]
# Generated by Django 3.1.1 on 2021-03-25 14:42 from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): initial = True dependencies = [] operations = [ migrations.CreateModel( name="Experiment", fields=[ ( "id", models.AutoField( auto_created=True, primary_key=True, serialize=False, verbose_name="ID", ), ), ("name", models.CharField(max_length=255)), ("description", models.TextField()), ("is_test", models.BooleanField(default=False)), ("type", models.CharField(max_length=255)), ("created_at", models.DateTimeField(auto_now_add=True)), ("updated_at", models.DateTimeField(auto_now=True)), ("deleted_at", models.DateTimeField(null=True)), ], options={ "db_table": "experiment", }, ), migrations.CreateModel( name="ExperimentPlio", fields=[ ( "id", models.AutoField( auto_created=True, primary_key=True, serialize=False, verbose_name="ID", ), ), ("split_percentage", models.CharField(max_length=255)), ( "experiment", models.ForeignKey( on_delete=django.db.models.deletion.CASCADE, to="experiments.experiment", ), ), ], options={ "db_table": "experiment_plio", }, ), ]
[ 0, 1, 2, 3, 4 ]
1,762
06643bf4b1bded757078b0974c21ddec814f5889
<mask token> class plm_component(models.Model): <mask token> <mask token> <mask token> <mask token> <mask token> def _insertlog(self, ids, changes={}, note={}): ret = False op_type, op_note = ['unknown', ''] for objID in self.browse(getListIDs(ids)): if note: op_type = '{type}'.format(type=note['type']) op_note = '{reason}'.format(reason=note['reason']) elif changes: op_type = 'change value' op_note = self.env['plm.logging'].getchanges(objID, changes) if op_note: values = {'name': objID.name, 'revision': '{major}'.format( major=objID.engineering_revision), 'type': self._name, 'op_type': op_type, 'op_note': op_note, 'op_date': datetime.now(), 'userid': self._uid} objectItem = self.env['plm.logging'].create(values) if objectItem: ret = True return ret <mask token> def _getChildrenBom(self, component, level=0, currlevel=0): """ Returns a flat list of each child, listed once, in a Bom ( level = 0 one level only, level = 1 all levels) """ result = [] bufferdata = [] if level == 0 and currlevel > 1: return bufferdata for bomid in component.product_tmpl_id.bom_ids: for bomline in bomid.bom_line_ids: children = self._getChildrenBom(bomline.product_id, level, currlevel + 1) bufferdata.extend(children) bufferdata.append(bomline.product_id.id) result.extend(bufferdata) return getCleanList(result) <mask token> def getUserName(self): """ Gets the user name """ userType = self.env['res.users'] uiUser = userType.browse(self._uid) return uiUser.name <mask token> <mask token> <mask token> @api.model def CleanStructure(self, request=[], default=None): """ Cleans relations having sourceID (in mrp.bom.line) """ ret = False type = 'ebom' bomLType = self.env['mrp.bom.line'] bomType = self.env['mrp.bom'] docType = self.env['plm.document'] bl_to_delete = bomLType for parentID, sourceID in request: if not parentID == None: if isWritable(self, parentID): for bom_id in bomType.search([('type', '=', type), ( 'product_id', '=', parentID)]): if not sourceID == None: if docType.IsCheckedOutForMe(sourceID): for bomLine in bomLType.search([( 'source_id', '=', sourceID), ('bom_id', '=', bom_id.id)]): bl_to_delete |= bomLine bl_to_delete.unlink() if not bom_id.bom_line_ids: bom_id.unlink() ret = True return ret @api.model def Clone(self, ids=[], default=None): """ Creates a new copy of the component """ default = {} exitValues = {} for tmpObject in self.browse(getListIDs(ids)): note = {'type': 'clone object', 'reason': "Creating new cloned entity starting from '{old}'.".format( old=tmpObject.name)} self._insertlog(tmpObject.id, note=note) newID = self.copy(tmpObject.id, default) if newID: newEnt = self.browse(newID) exitValues = {'_id': newID, 'name': newEnt.name, 'engineering_code': newEnt.engineering_code, 'engineering_revision': newEnt.engineering_revision, 'engineering_writable': True, 'state': 'draft'} break return packDictionary(exitValues) @api.model def CloneVirtual(self, ids=[], default=None): """ Creates a "false" new copy of the component. Really returns only new values avoiding creation of new object. """ exitValues = {} for tmpObject in self.browse(getListIDs(ids)): new_name = 'Copy of {name}'.format(name=tmpObject.name) exitValues = {'_id': False, 'name': new_name, 'engineering_code': new_name, 'description': '{desc}'. format(desc=tmpObject.description), 'engineering_revision': self._default_rev, 'engineering_writable': True, 'state': 'draft'} break return packDictionary(exitValues) @api.model def GetUpdated(self, vals=[], default=None): """ Gets Last/Requested revision of given items (by name, revision, update time) """ partData, attribNames = vals ids = self.GetLatestIds(partData) return packDictionary(self.read(getCleanList(ids), attribNames)) <mask token> <mask token> <mask token> <mask token> <mask token> <mask token> @api.model def NewRevision(self, ids=[], default=None): """ Creates a new revision of current product """ newID, newIndex = [False, 0] thisContext = {'internal_writing': True, 'new_revision': True} for tmpObject in self.browse(getListIDs(ids)): latestIDs = self.GetLatestIds([(tmpObject.engineering_code, tmpObject.engineering_revision, False)]) for oldObject in self.browse(latestIDs): if isAnyReleased(self, oldObject.id): note = {'type': 'revision process', 'reason': "Creating new revision for '{old}'.".format(old= oldObject.name)} self._insertlog(oldObject.id, note=note) newIndex = int(oldObject.engineering_revision) + 1 default = {'engineering_writable': False, 'state': 'undermodify'} oldObject.with_context(thisContext).write(default) default = {'name': oldObject.name, 'engineering_revision': newIndex, 'engineering_writable': True, 'state': 'draft'} tmpID = oldObject.with_context(thisContext).copy(default) if tmpID: wf_message_post(self, [oldObject.id], body= 'Created : New Revision.') newID = tmpID.id tmpID.write({'name': oldObject.name}) note = {'type': 'revision process', 'reason': "Created new revision '{index}' for product '{name}'." .format(index=newIndex, name=oldObject.name)} self._insertlog(newID, note=note) oldObject.with_context(thisContext)._copy_productBom( newID, ['normal', 'spbom']) tmpID.with_context(thisContext).write({'name': oldObject.name}) note = {'type': 'revision process', 'reason': "Copied BoM to new revision '{index}' for product '{name}'." .format(index=newIndex, name=oldObject.name)} self._insertlog(newID, note=note) break return newID, newIndex <mask token> <mask token> @api.model def QueryLast(self, request=([], []), default=None): """ Queries to return values based on columns selected. """ objId = False expData = [] queryFilter, columns = request if len(columns) < 1: return expData if 'engineering_revision' in queryFilter: del queryFilter['engineering_revision'] allIDs = self.search(queryFilter, order='engineering_revision') if len(allIDs) > 0: objId = allIDs[len(allIDs) - 1] if objId: tmpData = objId.export_data(columns) if 'datas' in tmpData: expData = tmpData['datas'] return expData <mask token> <mask token> <mask token> def _get_recursive_parts(self, ids, excludeStatuses, includeStatuses, release=False): """ Gets all ids related to current one as children """ stopFlag = False tobeReleasedIDs = getListIDs(ids) options = self.env['plm.config.settings'].GetOptions() children = [] for oic in self.browse(ids): children = self.browse(self._getChildrenBom(oic, 1)) for child in children: if (not child.state in excludeStatuses and not child.state in includeStatuses) and (release and not options.get( 'opt_obsoletedinbom', False)): logging.warning( "Part (%r - %d) is in a status '%s' not allowed." % (child.engineering_code, child.engineering_revision, child.state)) stopFlag = True continue if child.state in includeStatuses: if not child.id in tobeReleasedIDs: tobeReleasedIDs.append(child.id) return stopFlag, getCleanList(tobeReleasedIDs) <mask token> def _action_ondocuments(self, ids, action, status): """ Moves workflow on documents having the same state of component """ docIDs = [] documentType = self.env['plm.document'] check = self._context.get('no_move_documents', False) if not check: for oldObject in self.browse(ids): for document in oldObject.linkeddocuments: if document.id not in docIDs: if documentType.ischecked_in(document.id): docIDs.append(document.id) idMoves = move_workflow(documentType, docIDs, action, status) documentType.logging_workflow(idMoves, action, status) return docIDs <mask token> @api.model def ActionUpload(self, request=[], default=None): """ Action to be executed after automatic upload """ signal = 'upload' move_workflow(self, self._ids, signal) return False <mask token> <mask token> def action_confirm(self): """ Action to be executed for Confirmed state """ options = self.env['plm.config.settings'].GetOptions() status = 'confirmed' action = 'confirm' default = {'state': status, 'engineering_writable': False} doc_default = {'state': status, 'writable': False} operationParams = {'status': status, 'statusName': _('Confirmed'), 'action': action, 'docaction': 'confirm', 'excludeStatuses': [ 'confirmed', 'transmitted', 'released', 'undermodify', 'obsoleted'], 'includeStatuses': ['draft'], 'default': default, 'doc_default': doc_default} if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: ids = self._ids self.logging_workflow(ids, action, status) return self._action_to_perform(ids, operationParams, default) def action_correct(self): """ Action to be executed for Draft state (signal "correct") """ options = self.env['plm.config.settings'].GetOptions() status = 'draft' action = 'correct' default = {'state': status, 'engineering_writable': True} doc_default = {'state': status, 'writable': True} operationParams = {'status': status, 'statusName': _('Draft'), 'action': action, 'docaction': 'correct', 'excludeStatuses': [ 'draft', 'transmitted', 'released', 'undermodify', 'obsoleted'], 'includeStatuses': ['confirmed'], 'default': default, 'doc_default': doc_default} if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: ids = self._ids self.logging_workflow(ids, action, status) return self._action_to_perform(ids, operationParams, default) def action_release(self): options = self.env['plm.config.settings'].GetOptions() status = 'released' action = 'release' default = {'state': status, 'engineering_writable': False} doc_default = {'state': status, 'writable': False} excludeStatuses = ['released', 'undermodify', 'obsoleted'] includeStatuses = ['confirmed'] operationParams = {'status': status, 'statusName': _('Released'), 'action': action, 'docaction': 'release', 'excludeStatuses': excludeStatuses, 'includeStatuses': includeStatuses, 'default': default, 'doc_default': doc_default} if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: return self._action_to_release(self._ids, excludeStatuses, includeStatuses) <mask token> <mask token> def logging_workflow(self, ids, action, status): note = {'type': 'workflow movement', 'reason': "Applying workflow action '{action}', moving to status '{status}." .format(action=action, status=status)} self._insertlog(ids, note=note) def _action_to_perform(self, ids, operationParams, default={}): """ Executes on cascade to children products the required workflow operations. """ full_ids = [] status = operationParams['status'] action = operationParams['action'] docaction = operationParams['docaction'] excludeStatuses = operationParams['excludeStatuses'] includeStatuses = operationParams['includeStatuses'] stopFlag, allIDs = self._get_recursive_parts(ids, excludeStatuses, includeStatuses) self._action_ondocuments(allIDs, docaction, status) if action: idMoves = move_workflow(self, allIDs, action, status) self.logging_workflow(idMoves, action, status) objId = self.browse(allIDs).with_context({'internal_writing': True} ).write(default) if objId: wf_message_post(self, allIDs, body= 'Status moved to: {status}.'.format(status=status)) return objId def _action_to_release(self, ids, excludeStatuses, includeStatuses): """ Action to be executed for Released state """ full_ids = [] last_ids = [] status = 'released' action = 'release' default = {'engineering_writable': False, 'state': status} stopFlag, allIDs = self._get_recursive_parts(ids, excludeStatuses, includeStatuses, release=True) if len(allIDs) < 1 or stopFlag: raise UserError(_( 'WorkFlow Error.\n\nOne or more parts cannot be released.')) allProdObjs = self.browse(allIDs) for oldObject in allProdObjs: objObsolete = self._getbyrevision(oldObject.engineering_code, oldObject.engineering_revision - 1) if objObsolete and objObsolete.id: last_ids.append(objObsolete.id) idMoves = move_workflow(self, last_ids, 'obsolete', 'obsoleted') self.logging_workflow(idMoves, 'obsolete', 'obsoleted') self._action_ondocuments(last_ids, 'obsolete', 'obsoleted') self._action_ondocuments(allIDs, action, status) for currId in allProdObjs: if not currId.id in ids: full_ids.append(currId.id) idMoves = move_workflow(self, allIDs, action, status) self.logging_workflow(idMoves, action, status) objId = self.browse(idMoves).with_context({'internal_writing': True} ).write(default) if objId and idMoves: wf_message_post(self, allIDs, body='Status moved to: {status}.' .format(status=status)) return objId <mask token> def write(self, vals): ret = True if vals: if not isAdministrator(self): check = self._context.get('internal_writing', False) thisprocess = self._context.get('internal_process', False) if not check: for prodItem in self.browse(self._ids): if not isDraft(self, prodItem.id): if not thisprocess: logging.error( "The entity '{name}-{rev}' is in a status that does not allow you to make save action" .format(name=prodItem.name, rev= prodItem.engineering_revision)) ret = False break if not prodItem.engineering_writable: if not thisprocess: logging.error( "The entity '{name}-{rev}' cannot be written." .format(name=prodItem.name, rev= prodItem.engineering_revision)) ret = False break if ret: self._insertlog(self._ids, changes=vals) ret = super(plm_component, self).write(vals) return ret <mask token> <mask token>
<mask token> class plm_component(models.Model): <mask token> <mask token> <mask token> <mask token> <mask token> def _insertlog(self, ids, changes={}, note={}): ret = False op_type, op_note = ['unknown', ''] for objID in self.browse(getListIDs(ids)): if note: op_type = '{type}'.format(type=note['type']) op_note = '{reason}'.format(reason=note['reason']) elif changes: op_type = 'change value' op_note = self.env['plm.logging'].getchanges(objID, changes) if op_note: values = {'name': objID.name, 'revision': '{major}'.format( major=objID.engineering_revision), 'type': self._name, 'op_type': op_type, 'op_note': op_note, 'op_date': datetime.now(), 'userid': self._uid} objectItem = self.env['plm.logging'].create(values) if objectItem: ret = True return ret def _getbyrevision(self, name, revision): return self.search([('engineering_code', '=', name), ( 'engineering_revision', '=', revision)]) def _getChildrenBom(self, component, level=0, currlevel=0): """ Returns a flat list of each child, listed once, in a Bom ( level = 0 one level only, level = 1 all levels) """ result = [] bufferdata = [] if level == 0 and currlevel > 1: return bufferdata for bomid in component.product_tmpl_id.bom_ids: for bomline in bomid.bom_line_ids: children = self._getChildrenBom(bomline.product_id, level, currlevel + 1) bufferdata.extend(children) bufferdata.append(bomline.product_id.id) result.extend(bufferdata) return getCleanList(result) @api.model def RegMessage(self, request=[], default=None): """ Registers a message for requested component """ oid, message = request wf_message_post(self, [oid], body=message) return False def getUserName(self): """ Gets the user name """ userType = self.env['res.users'] uiUser = userType.browse(self._uid) return uiUser.name <mask token> def getTemplateItem(self, oid): ret = False if oid: for prodItem in self.browse(getListIDs(oid)): ret = prodItem.product_tmpl_id break return ret <mask token> @api.model def CleanStructure(self, request=[], default=None): """ Cleans relations having sourceID (in mrp.bom.line) """ ret = False type = 'ebom' bomLType = self.env['mrp.bom.line'] bomType = self.env['mrp.bom'] docType = self.env['plm.document'] bl_to_delete = bomLType for parentID, sourceID in request: if not parentID == None: if isWritable(self, parentID): for bom_id in bomType.search([('type', '=', type), ( 'product_id', '=', parentID)]): if not sourceID == None: if docType.IsCheckedOutForMe(sourceID): for bomLine in bomLType.search([( 'source_id', '=', sourceID), ('bom_id', '=', bom_id.id)]): bl_to_delete |= bomLine bl_to_delete.unlink() if not bom_id.bom_line_ids: bom_id.unlink() ret = True return ret @api.model def Clone(self, ids=[], default=None): """ Creates a new copy of the component """ default = {} exitValues = {} for tmpObject in self.browse(getListIDs(ids)): note = {'type': 'clone object', 'reason': "Creating new cloned entity starting from '{old}'.".format( old=tmpObject.name)} self._insertlog(tmpObject.id, note=note) newID = self.copy(tmpObject.id, default) if newID: newEnt = self.browse(newID) exitValues = {'_id': newID, 'name': newEnt.name, 'engineering_code': newEnt.engineering_code, 'engineering_revision': newEnt.engineering_revision, 'engineering_writable': True, 'state': 'draft'} break return packDictionary(exitValues) @api.model def CloneVirtual(self, ids=[], default=None): """ Creates a "false" new copy of the component. Really returns only new values avoiding creation of new object. """ exitValues = {} for tmpObject in self.browse(getListIDs(ids)): new_name = 'Copy of {name}'.format(name=tmpObject.name) exitValues = {'_id': False, 'name': new_name, 'engineering_code': new_name, 'description': '{desc}'. format(desc=tmpObject.description), 'engineering_revision': self._default_rev, 'engineering_writable': True, 'state': 'draft'} break return packDictionary(exitValues) @api.model def GetUpdated(self, vals=[], default=None): """ Gets Last/Requested revision of given items (by name, revision, update time) """ partData, attribNames = vals ids = self.GetLatestIds(partData) return packDictionary(self.read(getCleanList(ids), attribNames)) @api.model def GetStdPartName(self, vals=[], default=None): """ Gets new P/N reading from entity chosen (taking it from new index on sequence). """ ret = '' entID, objectName = vals if entID and objectName: userType = self.env[objectName] if objectName in self.env else None if not userType == None: for objID in userType.browse(getListIDs(entID)): ret = self.GetNewPNfromSeq(objID.sequence_id) break return ret @api.model def GetNewPNfromSeq(self, seqID=None, default=None): """ Gets new P/N from sequence (checks for P/N existence). """ ret = '' if seqID: count = 0 while ret == '': chkname = self.env['ir.sequence'].browse(seqID.id)._next() count += 1 criteria = [('name', '=', chkname)] partIds = self.search(criteria) if partIds == None or len(partIds) == 0: ret = chkname if count > 1000: logging.error( "GetNewPNfromSeq : Unable to get a new P/N from sequence '{name}'." .format(name=seqID.name)) break return ret <mask token> @api.model def GetId(self, request=[], default=None): """ Gets Last/Requested revision of given items (by name, revision, update time) """ idd = False partName, partRev, _ = request if isinstance(partRev, int): criteria = [('engineering_code', '=', partName), ( 'engineering_revision', '=', partRev)] else: criteria = [('engineering_code', '=', partName)] partIds = self.search(criteria, order='engineering_revision') if len(partIds) > 0: idd = partIds[len(partIds) - 1].id return idd @api.model def IsSaveable(self, ids=[], default=None): """ Answers about capability to save requested product """ ret = True for tmpObject in self.browse(getListIDs(ids)): ret = ret and tmpObject._iswritable() return ret @api.model def IsRevisable(self, ids=[], default=None): """ Gets if a product is revisable or not. """ ret = False for tmpObject in self.browse(getListIDs(ids)): if isAnyReleased(self, tmpObject.id): ret = True break return ret @api.model def NewRevision(self, ids=[], default=None): """ Creates a new revision of current product """ newID, newIndex = [False, 0] thisContext = {'internal_writing': True, 'new_revision': True} for tmpObject in self.browse(getListIDs(ids)): latestIDs = self.GetLatestIds([(tmpObject.engineering_code, tmpObject.engineering_revision, False)]) for oldObject in self.browse(latestIDs): if isAnyReleased(self, oldObject.id): note = {'type': 'revision process', 'reason': "Creating new revision for '{old}'.".format(old= oldObject.name)} self._insertlog(oldObject.id, note=note) newIndex = int(oldObject.engineering_revision) + 1 default = {'engineering_writable': False, 'state': 'undermodify'} oldObject.with_context(thisContext).write(default) default = {'name': oldObject.name, 'engineering_revision': newIndex, 'engineering_writable': True, 'state': 'draft'} tmpID = oldObject.with_context(thisContext).copy(default) if tmpID: wf_message_post(self, [oldObject.id], body= 'Created : New Revision.') newID = tmpID.id tmpID.write({'name': oldObject.name}) note = {'type': 'revision process', 'reason': "Created new revision '{index}' for product '{name}'." .format(index=newIndex, name=oldObject.name)} self._insertlog(newID, note=note) oldObject.with_context(thisContext)._copy_productBom( newID, ['normal', 'spbom']) tmpID.with_context(thisContext).write({'name': oldObject.name}) note = {'type': 'revision process', 'reason': "Copied BoM to new revision '{index}' for product '{name}'." .format(index=newIndex, name=oldObject.name)} self._insertlog(newID, note=note) break return newID, newIndex <mask token> <mask token> @api.model def QueryLast(self, request=([], []), default=None): """ Queries to return values based on columns selected. """ objId = False expData = [] queryFilter, columns = request if len(columns) < 1: return expData if 'engineering_revision' in queryFilter: del queryFilter['engineering_revision'] allIDs = self.search(queryFilter, order='engineering_revision') if len(allIDs) > 0: objId = allIDs[len(allIDs) - 1] if objId: tmpData = objId.export_data(columns) if 'datas' in tmpData: expData = tmpData['datas'] return expData def _create_normalBom(self, idd, processedIds=[]): """ Creates a new Normal Bom (recursive on all EBom children) """ default = {} if idd in processedIds: return False checkObj = self.browse(idd) if not checkObj: return False bomType = self.env['mrp.bom'] objBoms = bomType.search([('product_tmpl_id', '=', checkObj. product_tmpl_id.id), ('type', '=', 'normal'), ('active', '=', True)]) idBoms = bomType.search([('product_tmpl_id', '=', checkObj. product_tmpl_id.id), ('type', '=', 'ebom'), ('active', '=', True)]) if not objBoms: if idBoms: default = {'product_tmpl_id': idBoms[0].product_tmpl_id.id, 'type': 'normal', 'active': True} if idBoms[0].product_id: default.update({'product_id': idBoms[0].product_id.id}) processedIds.append(idd) newidBom = idBoms[0].with_context({'internal_writing': True} ).copy(default) if newidBom: newidBom.with_context({'internal_writing': True}).write( default) ok_rows = self._summarizeBom(newidBom.bom_line_ids) for bom_line in list(set(newidBom.bom_line_ids) ^ set( ok_rows)): bom_line.unlink() for bom_line in ok_rows: bom_line.with_context({'internal_writing': True} ).write({'type': 'normal', 'source_id': False, 'product_qty': bom_line.product_qty}) self._create_normalBom(bom_line.product_id.id, processedIds=processedIds) else: for bom_line in bomType.browse(objBoms[0].id).bom_line_ids: self._create_normalBom(bom_line.product_id.id, processedIds =processedIds) return False def _copy_productBom(self, idStart, idDest=None, bomTypes=['normal']): """ Creates a new 'bomType' BoM (arrested at first level BoM children). """ default = {} if not idDest: idDest = idStart checkObjDest = self.browse(idDest) if checkObjDest: objBomType = self.env['mrp.bom'] for bomType in bomTypes: objBoms = objBomType.search([('product_id', '=', idDest), ( 'type', '=', bomType), ('active', '=', True)]) idBoms = objBomType.search([('product_id', '=', idStart), ( 'type', '=', bomType), ('active', '=', True)]) if not objBoms: for oldObj in idBoms: newidBom = oldObj.with_context({'internal_writing': True}).copy(default) if newidBom: newidBom.with_context({'internal_writing': True} ).write({'name': checkObjDest.name, 'product_tmpl_id': checkObjDest. product_tmpl_id.id, 'type': bomType, 'active': True}) ok_rows = self._summarizeBom(newidBom.bom_line_ids) for bom_line in list(set(newidBom.bom_line_ids) ^ set(ok_rows)): bom_line.unlink() for bom_line in ok_rows: bom_line.with_context({'internal_writing': True}).write({'type': bomType, 'source_id': False, 'name': bom_line. product_id.name, 'product_qty': bom_line.product_qty}) return False <mask token> def _get_recursive_parts(self, ids, excludeStatuses, includeStatuses, release=False): """ Gets all ids related to current one as children """ stopFlag = False tobeReleasedIDs = getListIDs(ids) options = self.env['plm.config.settings'].GetOptions() children = [] for oic in self.browse(ids): children = self.browse(self._getChildrenBom(oic, 1)) for child in children: if (not child.state in excludeStatuses and not child.state in includeStatuses) and (release and not options.get( 'opt_obsoletedinbom', False)): logging.warning( "Part (%r - %d) is in a status '%s' not allowed." % (child.engineering_code, child.engineering_revision, child.state)) stopFlag = True continue if child.state in includeStatuses: if not child.id in tobeReleasedIDs: tobeReleasedIDs.append(child.id) return stopFlag, getCleanList(tobeReleasedIDs) <mask token> def _action_ondocuments(self, ids, action, status): """ Moves workflow on documents having the same state of component """ docIDs = [] documentType = self.env['plm.document'] check = self._context.get('no_move_documents', False) if not check: for oldObject in self.browse(ids): for document in oldObject.linkeddocuments: if document.id not in docIDs: if documentType.ischecked_in(document.id): docIDs.append(document.id) idMoves = move_workflow(documentType, docIDs, action, status) documentType.logging_workflow(idMoves, action, status) return docIDs <mask token> @api.model def ActionUpload(self, request=[], default=None): """ Action to be executed after automatic upload """ signal = 'upload' move_workflow(self, self._ids, signal) return False def action_upload(self): """ Action to be executed for Uploaded state """ options = self.env['plm.config.settings'].GetOptions() status = 'uploaded' action = 'upload' default = {'state': status, 'engineering_writable': False} doc_default = {'state': status, 'writable': False} operationParams = {'status': status, 'statusName': _('Uploaded'), 'action': action, 'docaction': 'uploaddoc', 'excludeStatuses': ['uploaded', 'confirmed', 'transmitted', 'released', 'undermodify', 'obsoleted'], 'includeStatuses': ['draft'], 'default': default, 'doc_default': doc_default} if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: ids = self._ids self.logging_workflow(ids, action, status) return self._action_to_perform(ids, operationParams, default) <mask token> def action_confirm(self): """ Action to be executed for Confirmed state """ options = self.env['plm.config.settings'].GetOptions() status = 'confirmed' action = 'confirm' default = {'state': status, 'engineering_writable': False} doc_default = {'state': status, 'writable': False} operationParams = {'status': status, 'statusName': _('Confirmed'), 'action': action, 'docaction': 'confirm', 'excludeStatuses': [ 'confirmed', 'transmitted', 'released', 'undermodify', 'obsoleted'], 'includeStatuses': ['draft'], 'default': default, 'doc_default': doc_default} if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: ids = self._ids self.logging_workflow(ids, action, status) return self._action_to_perform(ids, operationParams, default) def action_correct(self): """ Action to be executed for Draft state (signal "correct") """ options = self.env['plm.config.settings'].GetOptions() status = 'draft' action = 'correct' default = {'state': status, 'engineering_writable': True} doc_default = {'state': status, 'writable': True} operationParams = {'status': status, 'statusName': _('Draft'), 'action': action, 'docaction': 'correct', 'excludeStatuses': [ 'draft', 'transmitted', 'released', 'undermodify', 'obsoleted'], 'includeStatuses': ['confirmed'], 'default': default, 'doc_default': doc_default} if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: ids = self._ids self.logging_workflow(ids, action, status) return self._action_to_perform(ids, operationParams, default) def action_release(self): options = self.env['plm.config.settings'].GetOptions() status = 'released' action = 'release' default = {'state': status, 'engineering_writable': False} doc_default = {'state': status, 'writable': False} excludeStatuses = ['released', 'undermodify', 'obsoleted'] includeStatuses = ['confirmed'] operationParams = {'status': status, 'statusName': _('Released'), 'action': action, 'docaction': 'release', 'excludeStatuses': excludeStatuses, 'includeStatuses': includeStatuses, 'default': default, 'doc_default': doc_default} if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: return self._action_to_release(self._ids, excludeStatuses, includeStatuses) def action_obsolete(self): """ Action to be executed for Obsoleted state """ options = self.env['plm.config.settings'].GetOptions() status = 'obsoleted' action = 'obsolete' default = {'engineering_writable': False, 'state': status} doc_default = {'state': status, 'writable': False} operationParams = {'status': status, 'statusName': _('Obsoleted'), 'action': action, 'docaction': 'obsolete', 'excludeStatuses': [ 'draft', 'confirmed', 'transmitted', 'obsoleted'], 'includeStatuses': ['undermodify', 'released'], 'default': default, 'doc_default': doc_default} if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: return self._action_to_perform(self._ids, operationParams, default) <mask token> def logging_workflow(self, ids, action, status): note = {'type': 'workflow movement', 'reason': "Applying workflow action '{action}', moving to status '{status}." .format(action=action, status=status)} self._insertlog(ids, note=note) def _action_to_perform(self, ids, operationParams, default={}): """ Executes on cascade to children products the required workflow operations. """ full_ids = [] status = operationParams['status'] action = operationParams['action'] docaction = operationParams['docaction'] excludeStatuses = operationParams['excludeStatuses'] includeStatuses = operationParams['includeStatuses'] stopFlag, allIDs = self._get_recursive_parts(ids, excludeStatuses, includeStatuses) self._action_ondocuments(allIDs, docaction, status) if action: idMoves = move_workflow(self, allIDs, action, status) self.logging_workflow(idMoves, action, status) objId = self.browse(allIDs).with_context({'internal_writing': True} ).write(default) if objId: wf_message_post(self, allIDs, body= 'Status moved to: {status}.'.format(status=status)) return objId def _action_to_release(self, ids, excludeStatuses, includeStatuses): """ Action to be executed for Released state """ full_ids = [] last_ids = [] status = 'released' action = 'release' default = {'engineering_writable': False, 'state': status} stopFlag, allIDs = self._get_recursive_parts(ids, excludeStatuses, includeStatuses, release=True) if len(allIDs) < 1 or stopFlag: raise UserError(_( 'WorkFlow Error.\n\nOne or more parts cannot be released.')) allProdObjs = self.browse(allIDs) for oldObject in allProdObjs: objObsolete = self._getbyrevision(oldObject.engineering_code, oldObject.engineering_revision - 1) if objObsolete and objObsolete.id: last_ids.append(objObsolete.id) idMoves = move_workflow(self, last_ids, 'obsolete', 'obsoleted') self.logging_workflow(idMoves, 'obsolete', 'obsoleted') self._action_ondocuments(last_ids, 'obsolete', 'obsoleted') self._action_ondocuments(allIDs, action, status) for currId in allProdObjs: if not currId.id in ids: full_ids.append(currId.id) idMoves = move_workflow(self, allIDs, action, status) self.logging_workflow(idMoves, action, status) objId = self.browse(idMoves).with_context({'internal_writing': True} ).write(default) if objId and idMoves: wf_message_post(self, allIDs, body='Status moved to: {status}.' .format(status=status)) return objId <mask token> def write(self, vals): ret = True if vals: if not isAdministrator(self): check = self._context.get('internal_writing', False) thisprocess = self._context.get('internal_process', False) if not check: for prodItem in self.browse(self._ids): if not isDraft(self, prodItem.id): if not thisprocess: logging.error( "The entity '{name}-{rev}' is in a status that does not allow you to make save action" .format(name=prodItem.name, rev= prodItem.engineering_revision)) ret = False break if not prodItem.engineering_writable: if not thisprocess: logging.error( "The entity '{name}-{rev}' cannot be written." .format(name=prodItem.name, rev= prodItem.engineering_revision)) ret = False break if ret: self._insertlog(self._ids, changes=vals) ret = super(plm_component, self).write(vals) return ret def copy(self, default={}): newID = False override = False previous_name = False oid = self.id if not self._context.get('new_revision', False): previous_name = self.browse(oid).name new_name = default.get('name', 'Copy of %s' % previous_name) if 'name' in default: tmpIds = self.search([('name', 'like', new_name)]) if len(tmpIds) > 0: new_name = '%s (%s)' % (new_name, len(tmpIds) + 1) default.update({'name': new_name, 'engineering_code': new_name, 'engineering_revision': self._default_rev}) override = True default.update({'state': 'draft', 'engineering_writable': True, 'write_date': None, 'linkeddocuments': []}) note = {'type': 'copy object', 'reason': "Previous name was '{old} new one is '{new}'.".format(old= previous_name, new=new_name)} self._insertlog(oid, note=note) tmpID = super(plm_component, self.browse(oid).with_context({ 'internal_writing': True})).copy(default) if tmpID != None: newID = tmpID if override: values = {'name': new_name, 'engineering_code': new_name, 'engineering_revision': self._default_rev, 'linkeddocuments': []} newID.write(values) else: tmpID = super(plm_component, self.browse(oid).with_context({ 'internal_writing': True})).copy(default) if tmpID: newID = tmpID default.update({'linkeddocuments': []}) newID.with_context({'internal_writing': True}).write(default) if newID and previous_name: wf_message_post(self, getListIDs(newID), body= 'Copied starting from : {value}.'.format(value=previous_name)) return newID def unlink(self): ret = False ids = self._ids values = {'state': 'released'} isAdmin = isAdministrator(self) if not self.env['mrp.bom'].IsChild(ids): for checkObj in self.browse(ids): checkApply = False if isReleased(self, checkObj.id): if isAdmin: checkApply = True elif isDraft(self, checkObj.id): checkApply = True if not checkApply: continue existingIDs = self.with_context({'no_move_documents': True} ).search([('engineering_code', '=', checkObj. engineering_code), ('engineering_revision', '=', checkObj.engineering_revision - 1)]) if len(existingIDs) > 0: obsoletedIds = [] undermodifyIds = [] for existID in getListIDs(existingIDs): if isObsoleted(self, existID.id): obsoletedIds.append(existID.id) elif isUnderModify(self, existID.id): undermodifyIds.append(existID.id) move_workflow(self, obsoletedIds, 'reactivate', 'released') if undermodifyIds: move_workflow(self, undermodifyIds, 'reactivate', 'released') note = {'type': 'unlink object', 'reason': 'Removed entity from database.'} self._insertlog(checkObj.id, note=note) item = super(plm_component, checkObj.with_context({ 'no_move_documents': False})).unlink() if item: ret = ret | item return ret
<mask token> class plm_component(models.Model): <mask token> <mask token> <mask token> <mask token> @property def _default_rev(self): field = self.env['product.template']._fields.get('engineering_revision' , None) default = field.default('product.template') if not field == None else 0 return default def _insertlog(self, ids, changes={}, note={}): ret = False op_type, op_note = ['unknown', ''] for objID in self.browse(getListIDs(ids)): if note: op_type = '{type}'.format(type=note['type']) op_note = '{reason}'.format(reason=note['reason']) elif changes: op_type = 'change value' op_note = self.env['plm.logging'].getchanges(objID, changes) if op_note: values = {'name': objID.name, 'revision': '{major}'.format( major=objID.engineering_revision), 'type': self._name, 'op_type': op_type, 'op_note': op_note, 'op_date': datetime.now(), 'userid': self._uid} objectItem = self.env['plm.logging'].create(values) if objectItem: ret = True return ret def _getbyrevision(self, name, revision): return self.search([('engineering_code', '=', name), ( 'engineering_revision', '=', revision)]) def _getChildrenBom(self, component, level=0, currlevel=0): """ Returns a flat list of each child, listed once, in a Bom ( level = 0 one level only, level = 1 all levels) """ result = [] bufferdata = [] if level == 0 and currlevel > 1: return bufferdata for bomid in component.product_tmpl_id.bom_ids: for bomline in bomid.bom_line_ids: children = self._getChildrenBom(bomline.product_id, level, currlevel + 1) bufferdata.extend(children) bufferdata.append(bomline.product_id.id) result.extend(bufferdata) return getCleanList(result) @api.model def RegMessage(self, request=[], default=None): """ Registers a message for requested component """ oid, message = request wf_message_post(self, [oid], body=message) return False def getUserName(self): """ Gets the user name """ userType = self.env['res.users'] uiUser = userType.browse(self._uid) return uiUser.name <mask token> def getTemplateItem(self, oid): ret = False if oid: for prodItem in self.browse(getListIDs(oid)): ret = prodItem.product_tmpl_id break return ret def on_change_name(self, oid, name=False, engineering_code=False): if name: results = self.search([('name', '=', name)]) if len(results) > 0: raise UserError(_( """Update Part Error. Part {} already exists. Close with OK to reuse, with Cancel to discharge.""" .format(name))) if not engineering_code: return {'value': {'engineering_code': name}} return {} @api.model def CleanStructure(self, request=[], default=None): """ Cleans relations having sourceID (in mrp.bom.line) """ ret = False type = 'ebom' bomLType = self.env['mrp.bom.line'] bomType = self.env['mrp.bom'] docType = self.env['plm.document'] bl_to_delete = bomLType for parentID, sourceID in request: if not parentID == None: if isWritable(self, parentID): for bom_id in bomType.search([('type', '=', type), ( 'product_id', '=', parentID)]): if not sourceID == None: if docType.IsCheckedOutForMe(sourceID): for bomLine in bomLType.search([( 'source_id', '=', sourceID), ('bom_id', '=', bom_id.id)]): bl_to_delete |= bomLine bl_to_delete.unlink() if not bom_id.bom_line_ids: bom_id.unlink() ret = True return ret @api.model def Clone(self, ids=[], default=None): """ Creates a new copy of the component """ default = {} exitValues = {} for tmpObject in self.browse(getListIDs(ids)): note = {'type': 'clone object', 'reason': "Creating new cloned entity starting from '{old}'.".format( old=tmpObject.name)} self._insertlog(tmpObject.id, note=note) newID = self.copy(tmpObject.id, default) if newID: newEnt = self.browse(newID) exitValues = {'_id': newID, 'name': newEnt.name, 'engineering_code': newEnt.engineering_code, 'engineering_revision': newEnt.engineering_revision, 'engineering_writable': True, 'state': 'draft'} break return packDictionary(exitValues) @api.model def CloneVirtual(self, ids=[], default=None): """ Creates a "false" new copy of the component. Really returns only new values avoiding creation of new object. """ exitValues = {} for tmpObject in self.browse(getListIDs(ids)): new_name = 'Copy of {name}'.format(name=tmpObject.name) exitValues = {'_id': False, 'name': new_name, 'engineering_code': new_name, 'description': '{desc}'. format(desc=tmpObject.description), 'engineering_revision': self._default_rev, 'engineering_writable': True, 'state': 'draft'} break return packDictionary(exitValues) @api.model def GetUpdated(self, vals=[], default=None): """ Gets Last/Requested revision of given items (by name, revision, update time) """ partData, attribNames = vals ids = self.GetLatestIds(partData) return packDictionary(self.read(getCleanList(ids), attribNames)) @api.model def GetStdPartName(self, vals=[], default=None): """ Gets new P/N reading from entity chosen (taking it from new index on sequence). """ ret = '' entID, objectName = vals if entID and objectName: userType = self.env[objectName] if objectName in self.env else None if not userType == None: for objID in userType.browse(getListIDs(entID)): ret = self.GetNewPNfromSeq(objID.sequence_id) break return ret @api.model def GetNewPNfromSeq(self, seqID=None, default=None): """ Gets new P/N from sequence (checks for P/N existence). """ ret = '' if seqID: count = 0 while ret == '': chkname = self.env['ir.sequence'].browse(seqID.id)._next() count += 1 criteria = [('name', '=', chkname)] partIds = self.search(criteria) if partIds == None or len(partIds) == 0: ret = chkname if count > 1000: logging.error( "GetNewPNfromSeq : Unable to get a new P/N from sequence '{name}'." .format(name=seqID.name)) break return ret <mask token> @api.model def GetId(self, request=[], default=None): """ Gets Last/Requested revision of given items (by name, revision, update time) """ idd = False partName, partRev, _ = request if isinstance(partRev, int): criteria = [('engineering_code', '=', partName), ( 'engineering_revision', '=', partRev)] else: criteria = [('engineering_code', '=', partName)] partIds = self.search(criteria, order='engineering_revision') if len(partIds) > 0: idd = partIds[len(partIds) - 1].id return idd @api.model def IsSaveable(self, ids=[], default=None): """ Answers about capability to save requested product """ ret = True for tmpObject in self.browse(getListIDs(ids)): ret = ret and tmpObject._iswritable() return ret @api.model def IsRevisable(self, ids=[], default=None): """ Gets if a product is revisable or not. """ ret = False for tmpObject in self.browse(getListIDs(ids)): if isAnyReleased(self, tmpObject.id): ret = True break return ret @api.model def NewRevision(self, ids=[], default=None): """ Creates a new revision of current product """ newID, newIndex = [False, 0] thisContext = {'internal_writing': True, 'new_revision': True} for tmpObject in self.browse(getListIDs(ids)): latestIDs = self.GetLatestIds([(tmpObject.engineering_code, tmpObject.engineering_revision, False)]) for oldObject in self.browse(latestIDs): if isAnyReleased(self, oldObject.id): note = {'type': 'revision process', 'reason': "Creating new revision for '{old}'.".format(old= oldObject.name)} self._insertlog(oldObject.id, note=note) newIndex = int(oldObject.engineering_revision) + 1 default = {'engineering_writable': False, 'state': 'undermodify'} oldObject.with_context(thisContext).write(default) default = {'name': oldObject.name, 'engineering_revision': newIndex, 'engineering_writable': True, 'state': 'draft'} tmpID = oldObject.with_context(thisContext).copy(default) if tmpID: wf_message_post(self, [oldObject.id], body= 'Created : New Revision.') newID = tmpID.id tmpID.write({'name': oldObject.name}) note = {'type': 'revision process', 'reason': "Created new revision '{index}' for product '{name}'." .format(index=newIndex, name=oldObject.name)} self._insertlog(newID, note=note) oldObject.with_context(thisContext)._copy_productBom( newID, ['normal', 'spbom']) tmpID.with_context(thisContext).write({'name': oldObject.name}) note = {'type': 'revision process', 'reason': "Copied BoM to new revision '{index}' for product '{name}'." .format(index=newIndex, name=oldObject.name)} self._insertlog(newID, note=note) break return newID, newIndex @api.model def CheckProductsToSave(self, request='', default=None): """ Checks if given products has to be saved. """ listedParts = [] retValues = {} for part in unpackDictionary(request): part = getCleanBytesDictionary(part) hasSaved = True existingID = False order = None if not 'engineering_code' in part: continue if part['engineering_code'] in listedParts: continue if 'engineering_code' in part and 'engineering_revision' in part: criteria = [('engineering_code', '=', part[ 'engineering_code']), ('engineering_revision', '=', part['engineering_revision'])] elif 'engineering_code' in part and not 'engineering_revision' in part: criteria = [('engineering_code', '=', part['engineering_code']) ] order = 'engineering_revision' existingIDs = self.search(criteria, order=order) if existingIDs: ids = sorted(existingIDs.ids) existingID = ids[len(ids) - 1] if existingID: hasSaved = False objPart = self.browse(existingID) part['engineering_revision'] = objPart.engineering_revision if '_lastupdate' in part and part['_lastupdate']: if getUpdTime(objPart) < datetime.strptime(part[ '_lastupdate'], '%Y-%m-%d %H:%M:%S'): if objPart._iswritable(): hasSaved = True retValues[part['engineering_code']] = {'componentID': existingID, 'hasSaved': hasSaved} listedParts.append(part['engineering_code']) return packDictionary(retValues) <mask token> @api.model def QueryLast(self, request=([], []), default=None): """ Queries to return values based on columns selected. """ objId = False expData = [] queryFilter, columns = request if len(columns) < 1: return expData if 'engineering_revision' in queryFilter: del queryFilter['engineering_revision'] allIDs = self.search(queryFilter, order='engineering_revision') if len(allIDs) > 0: objId = allIDs[len(allIDs) - 1] if objId: tmpData = objId.export_data(columns) if 'datas' in tmpData: expData = tmpData['datas'] return expData def _create_normalBom(self, idd, processedIds=[]): """ Creates a new Normal Bom (recursive on all EBom children) """ default = {} if idd in processedIds: return False checkObj = self.browse(idd) if not checkObj: return False bomType = self.env['mrp.bom'] objBoms = bomType.search([('product_tmpl_id', '=', checkObj. product_tmpl_id.id), ('type', '=', 'normal'), ('active', '=', True)]) idBoms = bomType.search([('product_tmpl_id', '=', checkObj. product_tmpl_id.id), ('type', '=', 'ebom'), ('active', '=', True)]) if not objBoms: if idBoms: default = {'product_tmpl_id': idBoms[0].product_tmpl_id.id, 'type': 'normal', 'active': True} if idBoms[0].product_id: default.update({'product_id': idBoms[0].product_id.id}) processedIds.append(idd) newidBom = idBoms[0].with_context({'internal_writing': True} ).copy(default) if newidBom: newidBom.with_context({'internal_writing': True}).write( default) ok_rows = self._summarizeBom(newidBom.bom_line_ids) for bom_line in list(set(newidBom.bom_line_ids) ^ set( ok_rows)): bom_line.unlink() for bom_line in ok_rows: bom_line.with_context({'internal_writing': True} ).write({'type': 'normal', 'source_id': False, 'product_qty': bom_line.product_qty}) self._create_normalBom(bom_line.product_id.id, processedIds=processedIds) else: for bom_line in bomType.browse(objBoms[0].id).bom_line_ids: self._create_normalBom(bom_line.product_id.id, processedIds =processedIds) return False def _copy_productBom(self, idStart, idDest=None, bomTypes=['normal']): """ Creates a new 'bomType' BoM (arrested at first level BoM children). """ default = {} if not idDest: idDest = idStart checkObjDest = self.browse(idDest) if checkObjDest: objBomType = self.env['mrp.bom'] for bomType in bomTypes: objBoms = objBomType.search([('product_id', '=', idDest), ( 'type', '=', bomType), ('active', '=', True)]) idBoms = objBomType.search([('product_id', '=', idStart), ( 'type', '=', bomType), ('active', '=', True)]) if not objBoms: for oldObj in idBoms: newidBom = oldObj.with_context({'internal_writing': True}).copy(default) if newidBom: newidBom.with_context({'internal_writing': True} ).write({'name': checkObjDest.name, 'product_tmpl_id': checkObjDest. product_tmpl_id.id, 'type': bomType, 'active': True}) ok_rows = self._summarizeBom(newidBom.bom_line_ids) for bom_line in list(set(newidBom.bom_line_ids) ^ set(ok_rows)): bom_line.unlink() for bom_line in ok_rows: bom_line.with_context({'internal_writing': True}).write({'type': bomType, 'source_id': False, 'name': bom_line. product_id.name, 'product_qty': bom_line.product_qty}) return False def _summarizeBom(self, datarows): dic = {} for datarow in datarows: key = datarow.product_id.name if key in dic: dic[key].product_qty = float(dic[key].product_qty) + float( datarow.product_qty) else: dic[key] = datarow retd = dic.values() return retd def _get_recursive_parts(self, ids, excludeStatuses, includeStatuses, release=False): """ Gets all ids related to current one as children """ stopFlag = False tobeReleasedIDs = getListIDs(ids) options = self.env['plm.config.settings'].GetOptions() children = [] for oic in self.browse(ids): children = self.browse(self._getChildrenBom(oic, 1)) for child in children: if (not child.state in excludeStatuses and not child.state in includeStatuses) and (release and not options.get( 'opt_obsoletedinbom', False)): logging.warning( "Part (%r - %d) is in a status '%s' not allowed." % (child.engineering_code, child.engineering_revision, child.state)) stopFlag = True continue if child.state in includeStatuses: if not child.id in tobeReleasedIDs: tobeReleasedIDs.append(child.id) return stopFlag, getCleanList(tobeReleasedIDs) <mask token> def _action_ondocuments(self, ids, action, status): """ Moves workflow on documents having the same state of component """ docIDs = [] documentType = self.env['plm.document'] check = self._context.get('no_move_documents', False) if not check: for oldObject in self.browse(ids): for document in oldObject.linkeddocuments: if document.id not in docIDs: if documentType.ischecked_in(document.id): docIDs.append(document.id) idMoves = move_workflow(documentType, docIDs, action, status) documentType.logging_workflow(idMoves, action, status) return docIDs <mask token> @api.model def ActionUpload(self, request=[], default=None): """ Action to be executed after automatic upload """ signal = 'upload' move_workflow(self, self._ids, signal) return False def action_upload(self): """ Action to be executed for Uploaded state """ options = self.env['plm.config.settings'].GetOptions() status = 'uploaded' action = 'upload' default = {'state': status, 'engineering_writable': False} doc_default = {'state': status, 'writable': False} operationParams = {'status': status, 'statusName': _('Uploaded'), 'action': action, 'docaction': 'uploaddoc', 'excludeStatuses': ['uploaded', 'confirmed', 'transmitted', 'released', 'undermodify', 'obsoleted'], 'includeStatuses': ['draft'], 'default': default, 'doc_default': doc_default} if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: ids = self._ids self.logging_workflow(ids, action, status) return self._action_to_perform(ids, operationParams, default) <mask token> def action_confirm(self): """ Action to be executed for Confirmed state """ options = self.env['plm.config.settings'].GetOptions() status = 'confirmed' action = 'confirm' default = {'state': status, 'engineering_writable': False} doc_default = {'state': status, 'writable': False} operationParams = {'status': status, 'statusName': _('Confirmed'), 'action': action, 'docaction': 'confirm', 'excludeStatuses': [ 'confirmed', 'transmitted', 'released', 'undermodify', 'obsoleted'], 'includeStatuses': ['draft'], 'default': default, 'doc_default': doc_default} if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: ids = self._ids self.logging_workflow(ids, action, status) return self._action_to_perform(ids, operationParams, default) def action_correct(self): """ Action to be executed for Draft state (signal "correct") """ options = self.env['plm.config.settings'].GetOptions() status = 'draft' action = 'correct' default = {'state': status, 'engineering_writable': True} doc_default = {'state': status, 'writable': True} operationParams = {'status': status, 'statusName': _('Draft'), 'action': action, 'docaction': 'correct', 'excludeStatuses': [ 'draft', 'transmitted', 'released', 'undermodify', 'obsoleted'], 'includeStatuses': ['confirmed'], 'default': default, 'doc_default': doc_default} if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: ids = self._ids self.logging_workflow(ids, action, status) return self._action_to_perform(ids, operationParams, default) def action_release(self): options = self.env['plm.config.settings'].GetOptions() status = 'released' action = 'release' default = {'state': status, 'engineering_writable': False} doc_default = {'state': status, 'writable': False} excludeStatuses = ['released', 'undermodify', 'obsoleted'] includeStatuses = ['confirmed'] operationParams = {'status': status, 'statusName': _('Released'), 'action': action, 'docaction': 'release', 'excludeStatuses': excludeStatuses, 'includeStatuses': includeStatuses, 'default': default, 'doc_default': doc_default} if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: return self._action_to_release(self._ids, excludeStatuses, includeStatuses) def action_obsolete(self): """ Action to be executed for Obsoleted state """ options = self.env['plm.config.settings'].GetOptions() status = 'obsoleted' action = 'obsolete' default = {'engineering_writable': False, 'state': status} doc_default = {'state': status, 'writable': False} operationParams = {'status': status, 'statusName': _('Obsoleted'), 'action': action, 'docaction': 'obsolete', 'excludeStatuses': [ 'draft', 'confirmed', 'transmitted', 'obsoleted'], 'includeStatuses': ['undermodify', 'released'], 'default': default, 'doc_default': doc_default} if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: return self._action_to_perform(self._ids, operationParams, default) <mask token> def logging_workflow(self, ids, action, status): note = {'type': 'workflow movement', 'reason': "Applying workflow action '{action}', moving to status '{status}." .format(action=action, status=status)} self._insertlog(ids, note=note) def _action_to_perform(self, ids, operationParams, default={}): """ Executes on cascade to children products the required workflow operations. """ full_ids = [] status = operationParams['status'] action = operationParams['action'] docaction = operationParams['docaction'] excludeStatuses = operationParams['excludeStatuses'] includeStatuses = operationParams['includeStatuses'] stopFlag, allIDs = self._get_recursive_parts(ids, excludeStatuses, includeStatuses) self._action_ondocuments(allIDs, docaction, status) if action: idMoves = move_workflow(self, allIDs, action, status) self.logging_workflow(idMoves, action, status) objId = self.browse(allIDs).with_context({'internal_writing': True} ).write(default) if objId: wf_message_post(self, allIDs, body= 'Status moved to: {status}.'.format(status=status)) return objId def _action_to_release(self, ids, excludeStatuses, includeStatuses): """ Action to be executed for Released state """ full_ids = [] last_ids = [] status = 'released' action = 'release' default = {'engineering_writable': False, 'state': status} stopFlag, allIDs = self._get_recursive_parts(ids, excludeStatuses, includeStatuses, release=True) if len(allIDs) < 1 or stopFlag: raise UserError(_( 'WorkFlow Error.\n\nOne or more parts cannot be released.')) allProdObjs = self.browse(allIDs) for oldObject in allProdObjs: objObsolete = self._getbyrevision(oldObject.engineering_code, oldObject.engineering_revision - 1) if objObsolete and objObsolete.id: last_ids.append(objObsolete.id) idMoves = move_workflow(self, last_ids, 'obsolete', 'obsoleted') self.logging_workflow(idMoves, 'obsolete', 'obsoleted') self._action_ondocuments(last_ids, 'obsolete', 'obsoleted') self._action_ondocuments(allIDs, action, status) for currId in allProdObjs: if not currId.id in ids: full_ids.append(currId.id) idMoves = move_workflow(self, allIDs, action, status) self.logging_workflow(idMoves, action, status) objId = self.browse(idMoves).with_context({'internal_writing': True} ).write(default) if objId and idMoves: wf_message_post(self, allIDs, body='Status moved to: {status}.' .format(status=status)) return objId <mask token> def write(self, vals): ret = True if vals: if not isAdministrator(self): check = self._context.get('internal_writing', False) thisprocess = self._context.get('internal_process', False) if not check: for prodItem in self.browse(self._ids): if not isDraft(self, prodItem.id): if not thisprocess: logging.error( "The entity '{name}-{rev}' is in a status that does not allow you to make save action" .format(name=prodItem.name, rev= prodItem.engineering_revision)) ret = False break if not prodItem.engineering_writable: if not thisprocess: logging.error( "The entity '{name}-{rev}' cannot be written." .format(name=prodItem.name, rev= prodItem.engineering_revision)) ret = False break if ret: self._insertlog(self._ids, changes=vals) ret = super(plm_component, self).write(vals) return ret def copy(self, default={}): newID = False override = False previous_name = False oid = self.id if not self._context.get('new_revision', False): previous_name = self.browse(oid).name new_name = default.get('name', 'Copy of %s' % previous_name) if 'name' in default: tmpIds = self.search([('name', 'like', new_name)]) if len(tmpIds) > 0: new_name = '%s (%s)' % (new_name, len(tmpIds) + 1) default.update({'name': new_name, 'engineering_code': new_name, 'engineering_revision': self._default_rev}) override = True default.update({'state': 'draft', 'engineering_writable': True, 'write_date': None, 'linkeddocuments': []}) note = {'type': 'copy object', 'reason': "Previous name was '{old} new one is '{new}'.".format(old= previous_name, new=new_name)} self._insertlog(oid, note=note) tmpID = super(plm_component, self.browse(oid).with_context({ 'internal_writing': True})).copy(default) if tmpID != None: newID = tmpID if override: values = {'name': new_name, 'engineering_code': new_name, 'engineering_revision': self._default_rev, 'linkeddocuments': []} newID.write(values) else: tmpID = super(plm_component, self.browse(oid).with_context({ 'internal_writing': True})).copy(default) if tmpID: newID = tmpID default.update({'linkeddocuments': []}) newID.with_context({'internal_writing': True}).write(default) if newID and previous_name: wf_message_post(self, getListIDs(newID), body= 'Copied starting from : {value}.'.format(value=previous_name)) return newID def unlink(self): ret = False ids = self._ids values = {'state': 'released'} isAdmin = isAdministrator(self) if not self.env['mrp.bom'].IsChild(ids): for checkObj in self.browse(ids): checkApply = False if isReleased(self, checkObj.id): if isAdmin: checkApply = True elif isDraft(self, checkObj.id): checkApply = True if not checkApply: continue existingIDs = self.with_context({'no_move_documents': True} ).search([('engineering_code', '=', checkObj. engineering_code), ('engineering_revision', '=', checkObj.engineering_revision - 1)]) if len(existingIDs) > 0: obsoletedIds = [] undermodifyIds = [] for existID in getListIDs(existingIDs): if isObsoleted(self, existID.id): obsoletedIds.append(existID.id) elif isUnderModify(self, existID.id): undermodifyIds.append(existID.id) move_workflow(self, obsoletedIds, 'reactivate', 'released') if undermodifyIds: move_workflow(self, undermodifyIds, 'reactivate', 'released') note = {'type': 'unlink object', 'reason': 'Removed entity from database.'} self._insertlog(checkObj.id, note=note) item = super(plm_component, checkObj.with_context({ 'no_move_documents': False})).unlink() if item: ret = ret | item return ret
<mask token> class plm_component(models.Model): <mask token> <mask token> <mask token> <mask token> @property def _default_rev(self): field = self.env['product.template']._fields.get('engineering_revision' , None) default = field.default('product.template') if not field == None else 0 return default def _insertlog(self, ids, changes={}, note={}): ret = False op_type, op_note = ['unknown', ''] for objID in self.browse(getListIDs(ids)): if note: op_type = '{type}'.format(type=note['type']) op_note = '{reason}'.format(reason=note['reason']) elif changes: op_type = 'change value' op_note = self.env['plm.logging'].getchanges(objID, changes) if op_note: values = {'name': objID.name, 'revision': '{major}'.format( major=objID.engineering_revision), 'type': self._name, 'op_type': op_type, 'op_note': op_note, 'op_date': datetime.now(), 'userid': self._uid} objectItem = self.env['plm.logging'].create(values) if objectItem: ret = True return ret def _getbyrevision(self, name, revision): return self.search([('engineering_code', '=', name), ( 'engineering_revision', '=', revision)]) def _getChildrenBom(self, component, level=0, currlevel=0): """ Returns a flat list of each child, listed once, in a Bom ( level = 0 one level only, level = 1 all levels) """ result = [] bufferdata = [] if level == 0 and currlevel > 1: return bufferdata for bomid in component.product_tmpl_id.bom_ids: for bomline in bomid.bom_line_ids: children = self._getChildrenBom(bomline.product_id, level, currlevel + 1) bufferdata.extend(children) bufferdata.append(bomline.product_id.id) result.extend(bufferdata) return getCleanList(result) @api.model def RegMessage(self, request=[], default=None): """ Registers a message for requested component """ oid, message = request wf_message_post(self, [oid], body=message) return False def getUserName(self): """ Gets the user name """ userType = self.env['res.users'] uiUser = userType.browse(self._uid) return uiUser.name def getFromTemplateID(self, oid): ret = False if oid: for prodItem in self.search([('product_tmpl_id', '=', oid)]): ret = prodItem break return ret def getTemplateItem(self, oid): ret = False if oid: for prodItem in self.browse(getListIDs(oid)): ret = prodItem.product_tmpl_id break return ret def on_change_name(self, oid, name=False, engineering_code=False): if name: results = self.search([('name', '=', name)]) if len(results) > 0: raise UserError(_( """Update Part Error. Part {} already exists. Close with OK to reuse, with Cancel to discharge.""" .format(name))) if not engineering_code: return {'value': {'engineering_code': name}} return {} @api.model def CleanStructure(self, request=[], default=None): """ Cleans relations having sourceID (in mrp.bom.line) """ ret = False type = 'ebom' bomLType = self.env['mrp.bom.line'] bomType = self.env['mrp.bom'] docType = self.env['plm.document'] bl_to_delete = bomLType for parentID, sourceID in request: if not parentID == None: if isWritable(self, parentID): for bom_id in bomType.search([('type', '=', type), ( 'product_id', '=', parentID)]): if not sourceID == None: if docType.IsCheckedOutForMe(sourceID): for bomLine in bomLType.search([( 'source_id', '=', sourceID), ('bom_id', '=', bom_id.id)]): bl_to_delete |= bomLine bl_to_delete.unlink() if not bom_id.bom_line_ids: bom_id.unlink() ret = True return ret @api.model def Clone(self, ids=[], default=None): """ Creates a new copy of the component """ default = {} exitValues = {} for tmpObject in self.browse(getListIDs(ids)): note = {'type': 'clone object', 'reason': "Creating new cloned entity starting from '{old}'.".format( old=tmpObject.name)} self._insertlog(tmpObject.id, note=note) newID = self.copy(tmpObject.id, default) if newID: newEnt = self.browse(newID) exitValues = {'_id': newID, 'name': newEnt.name, 'engineering_code': newEnt.engineering_code, 'engineering_revision': newEnt.engineering_revision, 'engineering_writable': True, 'state': 'draft'} break return packDictionary(exitValues) @api.model def CloneVirtual(self, ids=[], default=None): """ Creates a "false" new copy of the component. Really returns only new values avoiding creation of new object. """ exitValues = {} for tmpObject in self.browse(getListIDs(ids)): new_name = 'Copy of {name}'.format(name=tmpObject.name) exitValues = {'_id': False, 'name': new_name, 'engineering_code': new_name, 'description': '{desc}'. format(desc=tmpObject.description), 'engineering_revision': self._default_rev, 'engineering_writable': True, 'state': 'draft'} break return packDictionary(exitValues) @api.model def GetUpdated(self, vals=[], default=None): """ Gets Last/Requested revision of given items (by name, revision, update time) """ partData, attribNames = vals ids = self.GetLatestIds(partData) return packDictionary(self.read(getCleanList(ids), attribNames)) @api.model def GetStdPartName(self, vals=[], default=None): """ Gets new P/N reading from entity chosen (taking it from new index on sequence). """ ret = '' entID, objectName = vals if entID and objectName: userType = self.env[objectName] if objectName in self.env else None if not userType == None: for objID in userType.browse(getListIDs(entID)): ret = self.GetNewPNfromSeq(objID.sequence_id) break return ret @api.model def GetNewPNfromSeq(self, seqID=None, default=None): """ Gets new P/N from sequence (checks for P/N existence). """ ret = '' if seqID: count = 0 while ret == '': chkname = self.env['ir.sequence'].browse(seqID.id)._next() count += 1 criteria = [('name', '=', chkname)] partIds = self.search(criteria) if partIds == None or len(partIds) == 0: ret = chkname if count > 1000: logging.error( "GetNewPNfromSeq : Unable to get a new P/N from sequence '{name}'." .format(name=seqID.name)) break return ret @api.model def GetLatestIds(self, vals=[], default=None): """ Gets Last/Requested revision of given items (by name, revision, update time) """ ids = [] for request in vals: partName, _, updateDate = request if updateDate: criteria = [('engineering_code', '=', partName), ( 'write_date', '>', updateDate)] else: criteria = [('engineering_code', '=', partName)] partIds = self.search(criteria, order='engineering_revision') if len(partIds) > 0: ids.append(partIds[len(partIds) - 1].id) return getCleanList(ids) @api.model def GetId(self, request=[], default=None): """ Gets Last/Requested revision of given items (by name, revision, update time) """ idd = False partName, partRev, _ = request if isinstance(partRev, int): criteria = [('engineering_code', '=', partName), ( 'engineering_revision', '=', partRev)] else: criteria = [('engineering_code', '=', partName)] partIds = self.search(criteria, order='engineering_revision') if len(partIds) > 0: idd = partIds[len(partIds) - 1].id return idd @api.model def IsSaveable(self, ids=[], default=None): """ Answers about capability to save requested product """ ret = True for tmpObject in self.browse(getListIDs(ids)): ret = ret and tmpObject._iswritable() return ret @api.model def IsRevisable(self, ids=[], default=None): """ Gets if a product is revisable or not. """ ret = False for tmpObject in self.browse(getListIDs(ids)): if isAnyReleased(self, tmpObject.id): ret = True break return ret @api.model def NewRevision(self, ids=[], default=None): """ Creates a new revision of current product """ newID, newIndex = [False, 0] thisContext = {'internal_writing': True, 'new_revision': True} for tmpObject in self.browse(getListIDs(ids)): latestIDs = self.GetLatestIds([(tmpObject.engineering_code, tmpObject.engineering_revision, False)]) for oldObject in self.browse(latestIDs): if isAnyReleased(self, oldObject.id): note = {'type': 'revision process', 'reason': "Creating new revision for '{old}'.".format(old= oldObject.name)} self._insertlog(oldObject.id, note=note) newIndex = int(oldObject.engineering_revision) + 1 default = {'engineering_writable': False, 'state': 'undermodify'} oldObject.with_context(thisContext).write(default) default = {'name': oldObject.name, 'engineering_revision': newIndex, 'engineering_writable': True, 'state': 'draft'} tmpID = oldObject.with_context(thisContext).copy(default) if tmpID: wf_message_post(self, [oldObject.id], body= 'Created : New Revision.') newID = tmpID.id tmpID.write({'name': oldObject.name}) note = {'type': 'revision process', 'reason': "Created new revision '{index}' for product '{name}'." .format(index=newIndex, name=oldObject.name)} self._insertlog(newID, note=note) oldObject.with_context(thisContext)._copy_productBom( newID, ['normal', 'spbom']) tmpID.with_context(thisContext).write({'name': oldObject.name}) note = {'type': 'revision process', 'reason': "Copied BoM to new revision '{index}' for product '{name}'." .format(index=newIndex, name=oldObject.name)} self._insertlog(newID, note=note) break return newID, newIndex @api.model def CheckProductsToSave(self, request='', default=None): """ Checks if given products has to be saved. """ listedParts = [] retValues = {} for part in unpackDictionary(request): part = getCleanBytesDictionary(part) hasSaved = True existingID = False order = None if not 'engineering_code' in part: continue if part['engineering_code'] in listedParts: continue if 'engineering_code' in part and 'engineering_revision' in part: criteria = [('engineering_code', '=', part[ 'engineering_code']), ('engineering_revision', '=', part['engineering_revision'])] elif 'engineering_code' in part and not 'engineering_revision' in part: criteria = [('engineering_code', '=', part['engineering_code']) ] order = 'engineering_revision' existingIDs = self.search(criteria, order=order) if existingIDs: ids = sorted(existingIDs.ids) existingID = ids[len(ids) - 1] if existingID: hasSaved = False objPart = self.browse(existingID) part['engineering_revision'] = objPart.engineering_revision if '_lastupdate' in part and part['_lastupdate']: if getUpdTime(objPart) < datetime.strptime(part[ '_lastupdate'], '%Y-%m-%d %H:%M:%S'): if objPart._iswritable(): hasSaved = True retValues[part['engineering_code']] = {'componentID': existingID, 'hasSaved': hasSaved} listedParts.append(part['engineering_code']) return packDictionary(retValues) @api.model def SaveOrUpdate(self, request=[], default=None): """ Saves or Updates Parts """ listedParts = [] retValues = {} modelFields = self.env['plm.config.settings'].GetFieldsModel(self._name ) for part in unpackDictionary(request): part = getCleanBytesDictionary(part) hasSaved = False existingID = False order = None if (not 'engineering_code' in part or not 'engineering_revision' in part): part['componentID'] = False part['hasSaved'] = hasSaved continue if not 'name' in part and ('engineering_code' in part and part[ 'engineering_code']): part['name'] = part['engineering_code'] if ('name' in part and not part['name']) and ( 'engineering_code' in part and part['engineering_code']): part['name'] = part['engineering_code'] if part['engineering_code'] in listedParts: continue if not 'componentID' in part or not part['componentID']: if ('engineering_code' in part and 'engineering_revision' in part): criteria = [('engineering_code', '=', part[ 'engineering_code']), ('engineering_revision', '=', part['engineering_revision'])] elif 'engineering_code' in part and not 'engineering_revision' in part: criteria = [('engineering_code', '=', part[ 'engineering_code'])] order = 'engineering_revision' existingIDs = self.search(criteria, order=order) if existingIDs: ids = sorted(existingIDs.ids) existingID = ids[len(ids) - 1] else: existingID = part['componentID'] lastupdate = datetime.strptime(str(part['_lastupdate']), '%Y-%m-%d %H:%M:%S' ) if '_lastupdate' in part else datetime.now() for fieldName in list(set(part.keys()).difference(set(modelFields)) ): del part[fieldName] if not existingID: logging.debug('[SaveOrUpdate] Part {name} is creating.'. format(name=part['engineering_code'])) objectItem = self.with_context({'internal_writing': True} ).create(part) if objectItem: existingID = objectItem.id hasSaved = True else: objPart = self.browse(existingID) if objPart: part['name'] = objPart.name part['engineering_revision'] = objPart.engineering_revision if getUpdTime(objPart) < lastupdate: if objPart._iswritable(): logging.debug( '[SaveOrUpdate] Part {name}/{revi} is updating.' .format(name=part['engineering_code'], revi =part['engineering_revision'])) hasSaved = True if not objPart.with_context({'internal_writing': False}).write(part): logging.error( '[SaveOrUpdate] Part {name}/{revi} cannot be updated.' .format(name=part['engineering_code'], revi=part['engineering_revision'])) hasSaved = False else: logging.error( "[SaveOrUpdate] Part {name}/{revi} doesn't exist anymore." .format(name=part['engineering_code'], revi=part[ 'engineering_revision'])) retValues[part['engineering_code']] = {'componentID': existingID, 'hasSaved': hasSaved} listedParts.append(part['engineering_code']) return packDictionary(retValues) @api.model def QueryLast(self, request=([], []), default=None): """ Queries to return values based on columns selected. """ objId = False expData = [] queryFilter, columns = request if len(columns) < 1: return expData if 'engineering_revision' in queryFilter: del queryFilter['engineering_revision'] allIDs = self.search(queryFilter, order='engineering_revision') if len(allIDs) > 0: objId = allIDs[len(allIDs) - 1] if objId: tmpData = objId.export_data(columns) if 'datas' in tmpData: expData = tmpData['datas'] return expData def _create_normalBom(self, idd, processedIds=[]): """ Creates a new Normal Bom (recursive on all EBom children) """ default = {} if idd in processedIds: return False checkObj = self.browse(idd) if not checkObj: return False bomType = self.env['mrp.bom'] objBoms = bomType.search([('product_tmpl_id', '=', checkObj. product_tmpl_id.id), ('type', '=', 'normal'), ('active', '=', True)]) idBoms = bomType.search([('product_tmpl_id', '=', checkObj. product_tmpl_id.id), ('type', '=', 'ebom'), ('active', '=', True)]) if not objBoms: if idBoms: default = {'product_tmpl_id': idBoms[0].product_tmpl_id.id, 'type': 'normal', 'active': True} if idBoms[0].product_id: default.update({'product_id': idBoms[0].product_id.id}) processedIds.append(idd) newidBom = idBoms[0].with_context({'internal_writing': True} ).copy(default) if newidBom: newidBom.with_context({'internal_writing': True}).write( default) ok_rows = self._summarizeBom(newidBom.bom_line_ids) for bom_line in list(set(newidBom.bom_line_ids) ^ set( ok_rows)): bom_line.unlink() for bom_line in ok_rows: bom_line.with_context({'internal_writing': True} ).write({'type': 'normal', 'source_id': False, 'product_qty': bom_line.product_qty}) self._create_normalBom(bom_line.product_id.id, processedIds=processedIds) else: for bom_line in bomType.browse(objBoms[0].id).bom_line_ids: self._create_normalBom(bom_line.product_id.id, processedIds =processedIds) return False def _copy_productBom(self, idStart, idDest=None, bomTypes=['normal']): """ Creates a new 'bomType' BoM (arrested at first level BoM children). """ default = {} if not idDest: idDest = idStart checkObjDest = self.browse(idDest) if checkObjDest: objBomType = self.env['mrp.bom'] for bomType in bomTypes: objBoms = objBomType.search([('product_id', '=', idDest), ( 'type', '=', bomType), ('active', '=', True)]) idBoms = objBomType.search([('product_id', '=', idStart), ( 'type', '=', bomType), ('active', '=', True)]) if not objBoms: for oldObj in idBoms: newidBom = oldObj.with_context({'internal_writing': True}).copy(default) if newidBom: newidBom.with_context({'internal_writing': True} ).write({'name': checkObjDest.name, 'product_tmpl_id': checkObjDest. product_tmpl_id.id, 'type': bomType, 'active': True}) ok_rows = self._summarizeBom(newidBom.bom_line_ids) for bom_line in list(set(newidBom.bom_line_ids) ^ set(ok_rows)): bom_line.unlink() for bom_line in ok_rows: bom_line.with_context({'internal_writing': True}).write({'type': bomType, 'source_id': False, 'name': bom_line. product_id.name, 'product_qty': bom_line.product_qty}) return False def _summarizeBom(self, datarows): dic = {} for datarow in datarows: key = datarow.product_id.name if key in dic: dic[key].product_qty = float(dic[key].product_qty) + float( datarow.product_qty) else: dic[key] = datarow retd = dic.values() return retd def _get_recursive_parts(self, ids, excludeStatuses, includeStatuses, release=False): """ Gets all ids related to current one as children """ stopFlag = False tobeReleasedIDs = getListIDs(ids) options = self.env['plm.config.settings'].GetOptions() children = [] for oic in self.browse(ids): children = self.browse(self._getChildrenBom(oic, 1)) for child in children: if (not child.state in excludeStatuses and not child.state in includeStatuses) and (release and not options.get( 'opt_obsoletedinbom', False)): logging.warning( "Part (%r - %d) is in a status '%s' not allowed." % (child.engineering_code, child.engineering_revision, child.state)) stopFlag = True continue if child.state in includeStatuses: if not child.id in tobeReleasedIDs: tobeReleasedIDs.append(child.id) return stopFlag, getCleanList(tobeReleasedIDs) def create_normalBom_WF(self, ids): """ Creates a new Normal Bom if doesn't exist (action callable from code) """ for idd in ids: processedIds = [] self._create_normalBom(idd, processedIds=processedIds) wf_message_post(self, ids, body='Created Normal Bom.') return False def _action_ondocuments(self, ids, action, status): """ Moves workflow on documents having the same state of component """ docIDs = [] documentType = self.env['plm.document'] check = self._context.get('no_move_documents', False) if not check: for oldObject in self.browse(ids): for document in oldObject.linkeddocuments: if document.id not in docIDs: if documentType.ischecked_in(document.id): docIDs.append(document.id) idMoves = move_workflow(documentType, docIDs, action, status) documentType.logging_workflow(idMoves, action, status) return docIDs @api.model def _iswritable(self): if self: checkState = 'draft' if not self.engineering_writable: logging.warning( '_iswritable : Part (%r - %d) is not writable.' % (self .engineering_code, self.engineering_revision)) return False if not self.state in checkState: logging.warning( '_iswritable : Part (%r - %d) is in status %r.' % (self .engineering_code, self.engineering_revision, self.state)) return False if self.engineering_code == False: logging.warning( '_iswritable : Part (%r - %d) is without Engineering P/N.' % (self.name, self.engineering_revision)) return False return True @api.model def ActionUpload(self, request=[], default=None): """ Action to be executed after automatic upload """ signal = 'upload' move_workflow(self, self._ids, signal) return False def action_upload(self): """ Action to be executed for Uploaded state """ options = self.env['plm.config.settings'].GetOptions() status = 'uploaded' action = 'upload' default = {'state': status, 'engineering_writable': False} doc_default = {'state': status, 'writable': False} operationParams = {'status': status, 'statusName': _('Uploaded'), 'action': action, 'docaction': 'uploaddoc', 'excludeStatuses': ['uploaded', 'confirmed', 'transmitted', 'released', 'undermodify', 'obsoleted'], 'includeStatuses': ['draft'], 'default': default, 'doc_default': doc_default} if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: ids = self._ids self.logging_workflow(ids, action, status) return self._action_to_perform(ids, operationParams, default) def action_draft(self): """ Action to be executed for Draft state """ options = self.env['plm.config.settings'].GetOptions() status = 'draft' action = 'draft' default = {'state': status, 'engineering_writable': True} doc_default = {'state': status, 'writable': True} operationParams = {'status': status, 'statusName': _('Draft'), 'action': action, 'docaction': 'draft', 'excludeStatuses': [ 'draft', 'released', 'undermodify', 'obsoleted'], 'includeStatuses': ['confirmed', 'uploaded', 'transmitted'], 'default': default, 'doc_default': doc_default} if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: ids = self._ids self.logging_workflow(ids, action, status) return self._action_to_perform(ids, operationParams, default) def action_confirm(self): """ Action to be executed for Confirmed state """ options = self.env['plm.config.settings'].GetOptions() status = 'confirmed' action = 'confirm' default = {'state': status, 'engineering_writable': False} doc_default = {'state': status, 'writable': False} operationParams = {'status': status, 'statusName': _('Confirmed'), 'action': action, 'docaction': 'confirm', 'excludeStatuses': [ 'confirmed', 'transmitted', 'released', 'undermodify', 'obsoleted'], 'includeStatuses': ['draft'], 'default': default, 'doc_default': doc_default} if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: ids = self._ids self.logging_workflow(ids, action, status) return self._action_to_perform(ids, operationParams, default) def action_correct(self): """ Action to be executed for Draft state (signal "correct") """ options = self.env['plm.config.settings'].GetOptions() status = 'draft' action = 'correct' default = {'state': status, 'engineering_writable': True} doc_default = {'state': status, 'writable': True} operationParams = {'status': status, 'statusName': _('Draft'), 'action': action, 'docaction': 'correct', 'excludeStatuses': [ 'draft', 'transmitted', 'released', 'undermodify', 'obsoleted'], 'includeStatuses': ['confirmed'], 'default': default, 'doc_default': doc_default} if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: ids = self._ids self.logging_workflow(ids, action, status) return self._action_to_perform(ids, operationParams, default) def action_release(self): options = self.env['plm.config.settings'].GetOptions() status = 'released' action = 'release' default = {'state': status, 'engineering_writable': False} doc_default = {'state': status, 'writable': False} excludeStatuses = ['released', 'undermodify', 'obsoleted'] includeStatuses = ['confirmed'] operationParams = {'status': status, 'statusName': _('Released'), 'action': action, 'docaction': 'release', 'excludeStatuses': excludeStatuses, 'includeStatuses': includeStatuses, 'default': default, 'doc_default': doc_default} if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: return self._action_to_release(self._ids, excludeStatuses, includeStatuses) def action_obsolete(self): """ Action to be executed for Obsoleted state """ options = self.env['plm.config.settings'].GetOptions() status = 'obsoleted' action = 'obsolete' default = {'engineering_writable': False, 'state': status} doc_default = {'state': status, 'writable': False} operationParams = {'status': status, 'statusName': _('Obsoleted'), 'action': action, 'docaction': 'obsolete', 'excludeStatuses': [ 'draft', 'confirmed', 'transmitted', 'obsoleted'], 'includeStatuses': ['undermodify', 'released'], 'default': default, 'doc_default': doc_default} if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: return self._action_to_perform(self._ids, operationParams, default) <mask token> def logging_workflow(self, ids, action, status): note = {'type': 'workflow movement', 'reason': "Applying workflow action '{action}', moving to status '{status}." .format(action=action, status=status)} self._insertlog(ids, note=note) def _action_to_perform(self, ids, operationParams, default={}): """ Executes on cascade to children products the required workflow operations. """ full_ids = [] status = operationParams['status'] action = operationParams['action'] docaction = operationParams['docaction'] excludeStatuses = operationParams['excludeStatuses'] includeStatuses = operationParams['includeStatuses'] stopFlag, allIDs = self._get_recursive_parts(ids, excludeStatuses, includeStatuses) self._action_ondocuments(allIDs, docaction, status) if action: idMoves = move_workflow(self, allIDs, action, status) self.logging_workflow(idMoves, action, status) objId = self.browse(allIDs).with_context({'internal_writing': True} ).write(default) if objId: wf_message_post(self, allIDs, body= 'Status moved to: {status}.'.format(status=status)) return objId def _action_to_release(self, ids, excludeStatuses, includeStatuses): """ Action to be executed for Released state """ full_ids = [] last_ids = [] status = 'released' action = 'release' default = {'engineering_writable': False, 'state': status} stopFlag, allIDs = self._get_recursive_parts(ids, excludeStatuses, includeStatuses, release=True) if len(allIDs) < 1 or stopFlag: raise UserError(_( 'WorkFlow Error.\n\nOne or more parts cannot be released.')) allProdObjs = self.browse(allIDs) for oldObject in allProdObjs: objObsolete = self._getbyrevision(oldObject.engineering_code, oldObject.engineering_revision - 1) if objObsolete and objObsolete.id: last_ids.append(objObsolete.id) idMoves = move_workflow(self, last_ids, 'obsolete', 'obsoleted') self.logging_workflow(idMoves, 'obsolete', 'obsoleted') self._action_ondocuments(last_ids, 'obsolete', 'obsoleted') self._action_ondocuments(allIDs, action, status) for currId in allProdObjs: if not currId.id in ids: full_ids.append(currId.id) idMoves = move_workflow(self, allIDs, action, status) self.logging_workflow(idMoves, action, status) objId = self.browse(idMoves).with_context({'internal_writing': True} ).write(default) if objId and idMoves: wf_message_post(self, allIDs, body='Status moved to: {status}.' .format(status=status)) return objId <mask token> def write(self, vals): ret = True if vals: if not isAdministrator(self): check = self._context.get('internal_writing', False) thisprocess = self._context.get('internal_process', False) if not check: for prodItem in self.browse(self._ids): if not isDraft(self, prodItem.id): if not thisprocess: logging.error( "The entity '{name}-{rev}' is in a status that does not allow you to make save action" .format(name=prodItem.name, rev= prodItem.engineering_revision)) ret = False break if not prodItem.engineering_writable: if not thisprocess: logging.error( "The entity '{name}-{rev}' cannot be written." .format(name=prodItem.name, rev= prodItem.engineering_revision)) ret = False break if ret: self._insertlog(self._ids, changes=vals) ret = super(plm_component, self).write(vals) return ret def copy(self, default={}): newID = False override = False previous_name = False oid = self.id if not self._context.get('new_revision', False): previous_name = self.browse(oid).name new_name = default.get('name', 'Copy of %s' % previous_name) if 'name' in default: tmpIds = self.search([('name', 'like', new_name)]) if len(tmpIds) > 0: new_name = '%s (%s)' % (new_name, len(tmpIds) + 1) default.update({'name': new_name, 'engineering_code': new_name, 'engineering_revision': self._default_rev}) override = True default.update({'state': 'draft', 'engineering_writable': True, 'write_date': None, 'linkeddocuments': []}) note = {'type': 'copy object', 'reason': "Previous name was '{old} new one is '{new}'.".format(old= previous_name, new=new_name)} self._insertlog(oid, note=note) tmpID = super(plm_component, self.browse(oid).with_context({ 'internal_writing': True})).copy(default) if tmpID != None: newID = tmpID if override: values = {'name': new_name, 'engineering_code': new_name, 'engineering_revision': self._default_rev, 'linkeddocuments': []} newID.write(values) else: tmpID = super(plm_component, self.browse(oid).with_context({ 'internal_writing': True})).copy(default) if tmpID: newID = tmpID default.update({'linkeddocuments': []}) newID.with_context({'internal_writing': True}).write(default) if newID and previous_name: wf_message_post(self, getListIDs(newID), body= 'Copied starting from : {value}.'.format(value=previous_name)) return newID def unlink(self): ret = False ids = self._ids values = {'state': 'released'} isAdmin = isAdministrator(self) if not self.env['mrp.bom'].IsChild(ids): for checkObj in self.browse(ids): checkApply = False if isReleased(self, checkObj.id): if isAdmin: checkApply = True elif isDraft(self, checkObj.id): checkApply = True if not checkApply: continue existingIDs = self.with_context({'no_move_documents': True} ).search([('engineering_code', '=', checkObj. engineering_code), ('engineering_revision', '=', checkObj.engineering_revision - 1)]) if len(existingIDs) > 0: obsoletedIds = [] undermodifyIds = [] for existID in getListIDs(existingIDs): if isObsoleted(self, existID.id): obsoletedIds.append(existID.id) elif isUnderModify(self, existID.id): undermodifyIds.append(existID.id) move_workflow(self, obsoletedIds, 'reactivate', 'released') if undermodifyIds: move_workflow(self, undermodifyIds, 'reactivate', 'released') note = {'type': 'unlink object', 'reason': 'Removed entity from database.'} self._insertlog(checkObj.id, note=note) item = super(plm_component, checkObj.with_context({ 'no_move_documents': False})).unlink() if item: ret = ret | item return ret
# -*- encoding: utf-8 -*- ############################################################################## # # ServerPLM, Open Source Product Lifcycle Management System # Copyright (C) 2020-2020 Didotech srl (<http://www.didotech.com>). All Rights Reserved # # Created on : 2018-03-01 # Author : Fabio Colognesi # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # ############################################################################## import logging from datetime import datetime from odoo import models, fields, api, _, osv from odoo.exceptions import UserError from .common import getListIDs, getCleanList, packDictionary, unpackDictionary, getCleanBytesDictionary, \ move_workflow, wf_message_post, isVoid, isAdministrator, isWritable, isReleased, \ isObsoleted, isUnderModify, isAnyReleased, isDraft, getUpdTime # USED_STATES=[('draft','Draft'),('confirmed','Confirmed'),('released','Released'),('undermodify','UnderModify'),('obsoleted','Obsoleted')] # STATEFORRELEASE=['confirmed'] # STATESRELEASABLE=['confirmed','transmitted','released','undermodify','obsoleted'] class plm_component(models.Model): _name = 'product.product' _inherit = 'product.product' create_date = fields.Datetime(_('Date Created'), readonly=True) write_date = fields.Datetime(_('Date Modified'), readonly=True) @property def _default_rev(self): field = self.env['product.template']._fields.get('engineering_revision', None) default = field.default('product.template') if not(field == None) else 0 return default # Internal methods def _insertlog(self, ids, changes={}, note={}): ret=False op_type, op_note=["unknown",""] for objID in self.browse(getListIDs(ids)): if note: op_type="{type}".format(type=note['type']) op_note="{reason}".format(reason=note['reason']) elif changes: op_type='change value' op_note=self.env['plm.logging'].getchanges(objID, changes) if op_note: values={ 'name': objID.name, 'revision': "{major}".format(major=objID.engineering_revision), 'type': self._name, 'op_type': op_type, 'op_note': op_note, 'op_date': datetime.now(), 'userid': self._uid, } objectItem=self.env['plm.logging'].create(values) if objectItem: ret=True return ret def _getbyrevision(self, name, revision): return self.search([('engineering_code', '=', name), ('engineering_revision', '=', revision)]) # def _getExplodedBom(self, ids, level=0, currlevel=0): # """ # Returns a flat list of all children in a Bom ( level = 0 one level only, level = 1 all levels) # """ # result = [] # # if level == 0 and currlevel > 1: # return result # components = self.browse(ids) # relType = self.env['mrp.bom'] # for component in components: # for bomid in component.bom_ids: # children = relType.GetExplodedBom([bomid.id], level, currlevel) # result.extend(children) # return result def _getChildrenBom(self, component, level=0, currlevel=0): """ Returns a flat list of each child, listed once, in a Bom ( level = 0 one level only, level = 1 all levels) """ result = [] bufferdata = [] if level == 0 and currlevel > 1: return bufferdata for bomid in component.product_tmpl_id.bom_ids: for bomline in bomid.bom_line_ids: children=self._getChildrenBom(bomline.product_id, level, currlevel+1) bufferdata.extend(children) bufferdata.append(bomline.product_id.id) result.extend(bufferdata) return getCleanList(result) @api.model def RegMessage(self, request=[], default=None): """ Registers a message for requested component """ oid, message = request wf_message_post(self, [oid], body=message) return False def getUserName(self): """ Gets the user name """ userType = self.env['res.users'] uiUser = userType.browse(self._uid) return uiUser.name def getFromTemplateID(self, oid): ret=False if oid: for prodItem in self.search([('product_tmpl_id', '=', oid)]): ret=prodItem break return ret def getTemplateItem(self, oid): ret=False if oid: for prodItem in self.browse(getListIDs(oid)): ret=prodItem.product_tmpl_id break return ret ## Customized Automations def on_change_name(self, oid, name=False, engineering_code=False): if name: results = self.search([('name', '=', name)]) if len(results) > 0: raise UserError(_("Update Part Error.\n\nPart {} already exists.\nClose with OK to reuse, with Cancel to discharge.".format(name))) if not engineering_code: return {'value': {'engineering_code': name}} return {} ## External methods @api.model def CleanStructure(self, request=[], default=None): """ Cleans relations having sourceID (in mrp.bom.line) """ ret=False type = "ebom" bomLType = self.env['mrp.bom.line'] bomType = self.env['mrp.bom'] docType=self.env['plm.document'] bl_to_delete = bomLType for parentID, sourceID in request: if not parentID==None: if isWritable(self, parentID): for bom_id in bomType.search([('type','=',type),('product_id','=',parentID)]): if not sourceID==None: if docType.IsCheckedOutForMe(sourceID): for bomLine in bomLType.search([('source_id','=',sourceID),('bom_id','=',bom_id.id)]): bl_to_delete |= bomLine bl_to_delete.unlink() # Cleans mrp.bom.lines if not bom_id.bom_line_ids: bom_id.unlink() # Cleans void mrp.bom ret = True return ret @api.model def Clone(self, ids=[], default=None): """ Creates a new copy of the component """ default = {} exitValues = {} for tmpObject in self.browse(getListIDs(ids)): note={ 'type': 'clone object', 'reason': "Creating new cloned entity starting from '{old}'.".format(old=tmpObject.name), } self._insertlog(tmpObject.id, note=note) newID = self.copy(tmpObject.id, default) if newID: newEnt = self.browse(newID) exitValues = { '_id': newID, 'name': newEnt.name, 'engineering_code': newEnt.engineering_code, 'engineering_revision': newEnt.engineering_revision, 'engineering_writable': True, 'state': 'draft', } break return packDictionary(exitValues) @api.model def CloneVirtual(self, ids=[], default=None): """ Creates a "false" new copy of the component. Really returns only new values avoiding creation of new object. """ exitValues = {} for tmpObject in self.browse(getListIDs(ids)): new_name = "Copy of {name}".format(name=tmpObject.name) exitValues = { '_id': False, 'name': new_name, 'engineering_code': new_name, 'description': "{desc}".format(desc=tmpObject.description), 'engineering_revision': self._default_rev, 'engineering_writable': True, 'state': 'draft', } break return packDictionary(exitValues) @api.model def GetUpdated(self, vals=[], default=None): """ Gets Last/Requested revision of given items (by name, revision, update time) """ partData, attribNames = vals ids = self.GetLatestIds(partData) return packDictionary(self.read(getCleanList(ids), attribNames)) @api.model def GetStdPartName(self, vals=[], default=None): """ Gets new P/N reading from entity chosen (taking it from new index on sequence). """ ret="" entID, objectName = vals if entID and objectName: userType=self.env[objectName] if (objectName in self.env) else None if not(userType==None): for objID in userType.browse(getListIDs(entID)): ret=self.GetNewPNfromSeq(objID.sequence_id) break return ret @api.model def GetNewPNfromSeq(self, seqID=None, default=None): """ Gets new P/N from sequence (checks for P/N existence). """ ret="" if seqID: count=0 while ret=="": chkname=self.env['ir.sequence'].browse(seqID.id)._next() count+=1 criteria=[('name', '=', chkname)] partIds = self.search(criteria) if (partIds==None) or (len(partIds)==0): ret=chkname if count>1000: logging.error("GetNewPNfromSeq : Unable to get a new P/N from sequence '{name}'."\ .format(name=seqID.name)) break return ret @api.model def GetLatestIds(self, vals=[], default=None): """ Gets Last/Requested revision of given items (by name, revision, update time) """ ids = [] for request in vals: partName, _, updateDate = request if updateDate: criteria=[('engineering_code', '=', partName), ('write_date', '>', updateDate)] else: criteria=[('engineering_code', '=', partName)] partIds = self.search(criteria, order='engineering_revision') if len(partIds) > 0: ids.append(partIds[len(partIds) - 1].id) return getCleanList(ids) @api.model def GetId(self, request=[], default=None): """ Gets Last/Requested revision of given items (by name, revision, update time) """ idd = False partName, partRev, _ = request # partName, partRev, updateDate = request # if updateDate: # if partRev: # criteria=[('engineering_code', '=', partName), ('engineering_revision', '=', partRev), # ('write_date', '>', updateDate)] # else: # criteria=[('engineering_code', '=', partName), ('write_date', '>', updateDate)] # else: # if partRev: # criteria=[('engineering_code', '=', partName), ('engineering_revision', '=', partRev)] # else: # criteria=[('engineering_code', '=', partName)] if isinstance(partRev, int): criteria=[('engineering_code', '=', partName), ('engineering_revision', '=', partRev)] else: criteria=[('engineering_code', '=', partName)] partIds = self.search(criteria, order='engineering_revision') if len(partIds) > 0: idd=partIds[len(partIds) - 1].id return idd @api.model def IsSaveable(self, ids=[], default=None): """ Answers about capability to save requested product """ ret=True for tmpObject in self.browse(getListIDs(ids)): ret=ret and tmpObject._iswritable() return ret @api.model def IsRevisable(self, ids=[], default=None): """ Gets if a product is revisable or not. """ ret=False for tmpObject in self.browse(getListIDs(ids)): if isAnyReleased(self, tmpObject.id): ret=True break return ret @api.model def NewRevision(self, ids=[], default=None): """ Creates a new revision of current product """ newID, newIndex = [ False, 0 ] thisContext={ 'internal_writing':True, 'new_revision':True, } for tmpObject in self.browse(getListIDs(ids)): latestIDs = self.GetLatestIds( [(tmpObject.engineering_code, tmpObject.engineering_revision, False)] ) for oldObject in self.browse(latestIDs): if isAnyReleased(self, oldObject.id): note={ 'type': 'revision process', 'reason': "Creating new revision for '{old}'.".format(old=oldObject.name), } self._insertlog(oldObject.id, note=note) newIndex = int(oldObject.engineering_revision) + 1 default = { 'engineering_writable': False, 'state': 'undermodify', } oldObject.with_context(thisContext).write(default) default={ 'name': oldObject.name, 'engineering_revision': newIndex, 'engineering_writable': True, 'state': 'draft', } # Creates a new "old revision" object tmpID = oldObject.with_context(thisContext).copy(default) if tmpID: wf_message_post(self, [oldObject.id], body='Created : New Revision.') newID = tmpID.id tmpID.write({'name': oldObject.name, }) note={ 'type': 'revision process', 'reason': "Created new revision '{index}' for product '{name}'.".format(index=newIndex,name=oldObject.name), } self._insertlog(newID, note=note) oldObject.with_context(thisContext)._copy_productBom(newID, ["normal","spbom"]) tmpID.with_context(thisContext).write( {'name': oldObject.name, } ) note={ 'type': 'revision process', 'reason': "Copied BoM to new revision '{index}' for product '{name}'.".format(index=newIndex,name=oldObject.name), } self._insertlog(newID, note=note) break return (newID, newIndex) @api.model def CheckProductsToSave(self, request="", default=None): """ Checks if given products has to be saved. """ listedParts = [] retValues = {} for part in unpackDictionary(request): part=getCleanBytesDictionary(part) hasSaved = True existingID=False order = None if not('engineering_code' in part): continue if part['engineering_code'] in listedParts: continue if ('engineering_code' in part) and ('engineering_revision' in part): criteria = [ ('engineering_code', '=', part['engineering_code']), ('engineering_revision', '=', part['engineering_revision']) ] elif ('engineering_code' in part) and not('engineering_revision' in part): criteria = [ ('engineering_code', '=', part['engineering_code']) ] order='engineering_revision' existingIDs = self.search( criteria, order=order ) if existingIDs: ids=sorted(existingIDs.ids) existingID = ids[len(ids) - 1] if existingID: hasSaved = False objPart = self.browse(existingID) part['engineering_revision']=objPart.engineering_revision if ('_lastupdate' in part) and part['_lastupdate']: if (getUpdTime(objPart) < datetime.strptime(part['_lastupdate'], '%Y-%m-%d %H:%M:%S')): if objPart._iswritable(): hasSaved = True retValues[part['engineering_code']]={ 'componentID':existingID, 'hasSaved':hasSaved} listedParts.append(part['engineering_code']) return packDictionary(retValues) @api.model def SaveOrUpdate(self, request=[], default=None): """ Saves or Updates Parts """ listedParts = [] retValues = {} modelFields=self.env['plm.config.settings'].GetFieldsModel(self._name) for part in unpackDictionary(request): part=getCleanBytesDictionary(part) hasSaved = False existingID=False order=None if not ('engineering_code' in part) or (not 'engineering_revision' in part): part['componentID'] = False part['hasSaved'] = hasSaved continue if not ('name' in part) and (('engineering_code' in part) and part['engineering_code']): part['name'] = part['engineering_code'] if (('name' in part) and not(part['name'])) and (('engineering_code' in part) and part['engineering_code']): part['name'] = part['engineering_code'] if part['engineering_code'] in listedParts: continue if not('componentID' in part) or not(part['componentID']): if ('engineering_code' in part) and ('engineering_revision' in part): criteria = [ ('engineering_code', '=', part['engineering_code']), ('engineering_revision', '=', part['engineering_revision']) ] elif ('engineering_code' in part) and not('engineering_revision' in part): criteria = [ ('engineering_code', '=', part['engineering_code']) ] order = 'engineering_revision' existingIDs = self.search( criteria, order=order) if existingIDs: ids=sorted(existingIDs.ids) existingID = ids[len(ids) - 1] else: existingID=part['componentID'] lastupdate=datetime.strptime(str(part['_lastupdate']),'%Y-%m-%d %H:%M:%S') if ('_lastupdate' in part) else datetime.now() for fieldName in list(set(part.keys()).difference(set(modelFields))): del (part[fieldName]) if not existingID: logging.debug("[SaveOrUpdate] Part {name} is creating.".format(name=part['engineering_code'])) objectItem=self.with_context({'internal_writing':True}).create(part) if objectItem: existingID=objectItem.id hasSaved = True else: objPart = self.browse(existingID) if objPart: part['name'] = objPart.name part['engineering_revision']=objPart.engineering_revision if (getUpdTime(objPart) < lastupdate): if objPart._iswritable(): logging.debug("[SaveOrUpdate] Part {name}/{revi} is updating.".format(name=part['engineering_code'],revi=part['engineering_revision'])) hasSaved = True if not objPart.with_context({'internal_writing':False}).write(part): logging.error("[SaveOrUpdate] Part {name}/{revi} cannot be updated.".format(name=part['engineering_code'],revi=part['engineering_revision'])) hasSaved = False else: logging.error("[SaveOrUpdate] Part {name}/{revi} doesn't exist anymore.".format(name=part['engineering_code'],revi=part['engineering_revision'])) retValues[part['engineering_code']]={ 'componentID':existingID, 'hasSaved':hasSaved} listedParts.append(part['engineering_code']) return packDictionary(retValues) @api.model def QueryLast(self, request=([], []), default=None): """ Queries to return values based on columns selected. """ objId = False expData = [] queryFilter, columns = request if len(columns) < 1: return expData if 'engineering_revision' in queryFilter: del queryFilter['engineering_revision'] allIDs = self.search(queryFilter, order='engineering_revision') if len(allIDs) > 0: objId = allIDs[len(allIDs) - 1] if objId: tmpData = objId.export_data(columns) if 'datas' in tmpData: expData = tmpData['datas'] return expData ## Menu action Methods def _create_normalBom(self, idd, processedIds=[]): """ Creates a new Normal Bom (recursive on all EBom children) """ default = {} if idd in processedIds: return False checkObj=self.browse(idd) if not checkObj: return False bomType = self.env['mrp.bom'] objBoms = bomType.search([('product_tmpl_id', '=', checkObj.product_tmpl_id.id), ('type', '=', 'normal'), ('active', '=', True)]) idBoms = bomType.search([('product_tmpl_id', '=', checkObj.product_tmpl_id.id), ('type', '=', 'ebom'), ('active', '=', True)]) if not objBoms: if idBoms: default={'product_tmpl_id': idBoms[0].product_tmpl_id.id, 'type': 'normal', 'active': True, } if idBoms[0].product_id: default.update({'product_id': idBoms[0].product_id.id}) processedIds.append(idd) newidBom = idBoms[0].with_context({'internal_writing':True}).copy(default) if newidBom: newidBom.with_context({'internal_writing':True}).write(default) ok_rows = self._summarizeBom(newidBom.bom_line_ids) for bom_line in list(set(newidBom.bom_line_ids) ^ set(ok_rows)): bom_line.unlink() for bom_line in ok_rows: bom_line.with_context({'internal_writing':True}).write( { 'type': 'normal', 'source_id': False, 'product_qty': bom_line.product_qty, } ) self._create_normalBom(bom_line.product_id.id, processedIds=processedIds) else: for bom_line in bomType.browse(objBoms[0].id).bom_line_ids: self._create_normalBom(bom_line.product_id.id, processedIds=processedIds) return False def _copy_productBom(self, idStart, idDest=None, bomTypes=["normal"]): """ Creates a new 'bomType' BoM (arrested at first level BoM children). """ default = {} if not idDest: idDest=idStart checkObjDest = self.browse(idDest) if checkObjDest: objBomType = self.env['mrp.bom'] for bomType in bomTypes: objBoms = objBomType.search([('product_id', '=', idDest), ('type', '=', bomType), ('active', '=', True)]) idBoms = objBomType.search([('product_id', '=', idStart), ('type', '=', bomType), ('active', '=', True)]) if not objBoms: for oldObj in idBoms: newidBom = oldObj.with_context({'internal_writing':True}).copy(default) if newidBom: newidBom.with_context({'internal_writing':True}).write( {'name': checkObjDest.name, 'product_tmpl_id': checkObjDest.product_tmpl_id.id, 'type': bomType, 'active': True, }) ok_rows = self._summarizeBom(newidBom.bom_line_ids) for bom_line in list(set(newidBom.bom_line_ids) ^ set(ok_rows)): bom_line.unlink() for bom_line in ok_rows: bom_line.with_context({'internal_writing':True}).write( {'type': bomType, 'source_id': False, 'name': bom_line.product_id.name, 'product_qty': bom_line.product_qty, }) return False def _summarizeBom(self, datarows): dic = {} for datarow in datarows: key = datarow.product_id.name if key in dic: dic[key].product_qty = float(dic[key].product_qty) + float(datarow.product_qty) else: dic[key] = datarow retd = dic.values() return retd ## Work Flow Internal Methods def _get_recursive_parts(self, ids, excludeStatuses, includeStatuses, release=False): """ Gets all ids related to current one as children """ stopFlag = False tobeReleasedIDs = getListIDs(ids) options=self.env['plm.config.settings'].GetOptions() children = [] for oic in self.browse(ids): children = self.browse(self._getChildrenBom(oic, 1)) for child in children: if ((not child.state in excludeStatuses) and (not child.state in includeStatuses)) \ and (release and not(options.get('opt_obsoletedinbom', False))): logging.warning("Part (%r - %d) is in a status '%s' not allowed." %(child.engineering_code, child.engineering_revision, child.state)) stopFlag = True continue if child.state in includeStatuses: if not child.id in tobeReleasedIDs: tobeReleasedIDs.append(child.id) return (stopFlag, getCleanList(tobeReleasedIDs)) def create_normalBom_WF(self, ids): """ Creates a new Normal Bom if doesn't exist (action callable from code) """ for idd in ids: processedIds = [] self._create_normalBom(idd, processedIds=processedIds) wf_message_post(self, ids, body='Created Normal Bom.') return False def _action_ondocuments(self, ids, action, status): """ Moves workflow on documents having the same state of component """ docIDs = [] # documents=[] documentType = self.env['plm.document'] check=self._context.get('no_move_documents', False) if not check: for oldObject in self.browse(ids): for document in oldObject.linkeddocuments: if (document.id not in docIDs): if documentType.ischecked_in(document.id): docIDs.append(document.id) idMoves=move_workflow(documentType, docIDs, action, status) documentType.logging_workflow(idMoves, action, status) return docIDs @api.model def _iswritable(self): if self: checkState = ('draft') if not self.engineering_writable: logging.warning( "_iswritable : Part (%r - %d) is not writable." % (self.engineering_code, self.engineering_revision)) return False if not self.state in checkState: logging.warning("_iswritable : Part (%r - %d) is in status %r." % (self.engineering_code, self.engineering_revision, self.state)) return False if self.engineering_code == False: logging.warning( "_iswritable : Part (%r - %d) is without Engineering P/N." % (self.name, self.engineering_revision)) return False return True @api.model def ActionUpload(self, request=[], default=None): """ Action to be executed after automatic upload """ signal='upload' move_workflow(self, self._ids, signal) return False def action_upload(self): """ Action to be executed for Uploaded state """ options=self.env['plm.config.settings'].GetOptions() status = 'uploaded' action = 'upload' default = { 'state': status, 'engineering_writable': False, } doc_default = { 'state': status, 'writable': False, } operationParams = { 'status': status, 'statusName': _('Uploaded'), 'action': action, 'docaction': 'uploaddoc', 'excludeStatuses': ['uploaded', 'confirmed', 'transmitted','released', 'undermodify', 'obsoleted'], 'includeStatuses': ['draft'], 'default': default, 'doc_default': doc_default, } if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: ids=self._ids self.logging_workflow(ids, action, status) return self._action_to_perform(ids, operationParams, default) def action_draft(self): """ Action to be executed for Draft state """ options=self.env['plm.config.settings'].GetOptions() status = 'draft' action = 'draft' default = { 'state': status, 'engineering_writable': True, } doc_default = { 'state': status, 'writable': True, } operationParams = { 'status': status, 'statusName': _('Draft'), 'action': action, 'docaction': 'draft', 'excludeStatuses': ['draft', 'released', 'undermodify', 'obsoleted'], 'includeStatuses': ['confirmed', 'uploaded', 'transmitted'], 'default': default, 'doc_default': doc_default, } if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: ids=self._ids self.logging_workflow(ids, action, status) return self._action_to_perform(ids, operationParams, default) def action_confirm(self): """ Action to be executed for Confirmed state """ options=self.env['plm.config.settings'].GetOptions() status = 'confirmed' action = 'confirm' default = { 'state': status, 'engineering_writable': False, } doc_default = { 'state': status, 'writable': False, } operationParams = { 'status': status, 'statusName': _('Confirmed'), 'action': action, 'docaction': 'confirm', 'excludeStatuses': ['confirmed', 'transmitted', 'released', 'undermodify', 'obsoleted'], 'includeStatuses': ['draft'], 'default': default, 'doc_default': doc_default, } if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: ids=self._ids self.logging_workflow(ids, action, status) return self._action_to_perform(ids, operationParams, default) def action_correct(self): """ Action to be executed for Draft state (signal "correct") """ options=self.env['plm.config.settings'].GetOptions() status='draft' action = 'correct' default = { 'state': status, 'engineering_writable': True, } doc_default = { 'state': status, 'writable': True, } operationParams = { 'status': status, 'statusName': _('Draft'), 'action': action, 'docaction': 'correct', 'excludeStatuses': ['draft', 'transmitted', 'released', 'undermodify', 'obsoleted'], 'includeStatuses': ['confirmed'], 'default': default, 'doc_default': doc_default, } if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: ids=self._ids self.logging_workflow(ids, action, status) return self._action_to_perform(ids, operationParams, default) def action_release(self): options=self.env['plm.config.settings'].GetOptions() status='released' action = 'release' default = { 'state': status, 'engineering_writable': False, } doc_default = { 'state': status, 'writable': False, } excludeStatuses = ['released', 'undermodify', 'obsoleted'] includeStatuses = ['confirmed'] operationParams = { 'status': status, 'statusName': _('Released'), 'action': action, 'docaction': 'release', 'excludeStatuses': excludeStatuses, 'includeStatuses': includeStatuses, 'default': default, 'doc_default': doc_default, } if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: return self._action_to_release(self._ids, excludeStatuses, includeStatuses) def action_obsolete(self): """ Action to be executed for Obsoleted state """ options=self.env['plm.config.settings'].GetOptions() status = 'obsoleted' action = 'obsolete' default={ 'engineering_writable': False, 'state': status, } doc_default = { 'state': status, 'writable': False, } operationParams = { 'status': status, 'statusName': _('Obsoleted'), 'action': action, 'docaction': 'obsolete', 'excludeStatuses': ['draft', 'confirmed', 'transmitted', 'obsoleted'], 'includeStatuses': ['undermodify', 'released'], 'default': default, 'doc_default': doc_default, } if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: return self._action_to_perform(self._ids, operationParams, default) def action_reactivate(self): """ action to be executed for Released state (signal "reactivate") """ options=self.env['plm.config.settings'].GetOptions() status = 'released' action = 'reactivate' default={ 'engineering_writable': False, 'state': status, } doc_default = { 'state': status, 'writable': False, } operationParams = { 'status': status, 'statusName': _('Released'), 'action': action, 'docaction': 'reactivate', 'excludeStatuses': ['draft', 'confirmed', 'transmitted', 'released'], 'includeStatuses': ['undermodify', 'obsoleted'], 'default': default, 'doc_default': doc_default, } if options.get('opt_showWFanalysis', False): return self.action_check_workflow(operationParams) else: return self._action_to_perform(self._ids, operationParams, default) def logging_workflow(self, ids, action, status): note={ 'type': 'workflow movement', 'reason': "Applying workflow action '{action}', moving to status '{status}.".format(action=action, status=status), } self._insertlog(ids, note=note) def _action_to_perform(self, ids, operationParams , default={}): """ Executes on cascade to children products the required workflow operations. """ full_ids=[] status=operationParams['status'] action=operationParams['action'] docaction=operationParams['docaction'] excludeStatuses=operationParams['excludeStatuses'] includeStatuses=operationParams['includeStatuses'] stopFlag,allIDs=self._get_recursive_parts(ids, excludeStatuses, includeStatuses) self._action_ondocuments(allIDs,docaction, status) if action: idMoves=move_workflow(self, allIDs, action, status) self.logging_workflow(idMoves, action, status) objId=self.browse(allIDs).with_context({'internal_writing':True}).write(default) if objId: wf_message_post(self, allIDs, body='Status moved to: {status}.'.format(status=status)) return objId def _action_to_release(self, ids, excludeStatuses, includeStatuses): """ Action to be executed for Released state """ full_ids = [] last_ids=[] status='released' action='release' default={ 'engineering_writable': False, 'state': status } stopFlag, allIDs = self._get_recursive_parts(ids, excludeStatuses, includeStatuses, release=True) if len(allIDs) < 1 or stopFlag: raise UserError(_("WorkFlow Error.\n\nOne or more parts cannot be released.")) allProdObjs = self.browse(allIDs) for oldObject in allProdObjs: objObsolete=self._getbyrevision(oldObject.engineering_code, oldObject.engineering_revision - 1) if objObsolete and objObsolete.id: last_ids.append(objObsolete.id) idMoves=move_workflow(self, last_ids, 'obsolete', 'obsoleted') self.logging_workflow(idMoves, 'obsolete', 'obsoleted') self._action_ondocuments(last_ids, 'obsolete', 'obsoleted') self._action_ondocuments(allIDs, action, status) for currId in allProdObjs: if not (currId.id in ids): full_ids.append(currId.id) idMoves=move_workflow(self, allIDs, action, status) self.logging_workflow(idMoves, action, status) objId=self.browse(idMoves).with_context({'internal_writing':True}).write(default) if objId and idMoves: wf_message_post(self, allIDs, body='Status moved to: {status}.'.format(status=status)) return objId #######################################################################################################################################33 # Overridden methods for this entity @api.model def create(self, vals): ret=False if vals and vals.get('name', False): existingIDs = self.search([('name', '=', vals['name'])], order='engineering_revision') if (vals.get('engineering_code', False)==False) or (vals['engineering_code'] == ''): vals['engineering_code'] = vals['name'] major = vals.get('engineering_revision', None) major= self._default_rev if isVoid(major) else major vals['engineering_revision'] = major if existingIDs: existingID = existingIDs[len(existingIDs) - 1] if ('engineering_revision' in vals): existObj = existingID if existObj: if (vals['engineering_revision'] > existObj.engineering_revision): vals['name'] = existObj.name else: return existingID else: return existingID try: objectItem=super(plm_component, self).create(vals) if objectItem: ret=objectItem # Returns the objectItem instead the id to be coherent values={ 'name': objectItem.name, 'revision': objectItem.engineering_revision, 'type': self._name, 'op_type': 'creation', 'op_note': 'Create new entity on database', 'op_date': datetime.now(), 'userid': self._uid, } self.env['plm.logging'].create(values) except Exception as ex: raise Exception(" (%r). It has tried to create with values : (%r)." % (ex, vals)) elif not(self.env.context.get('create_from_tmpl') == None): objectItem=super(plm_component, self).create(vals) if objectItem: ret=objectItem # Returns the objectItem instead the id to be coherent values={ 'name': objectItem.name, 'revision': objectItem.engineering_revision, 'type': self._name, 'op_type': 'creation', 'op_note': 'Create new entity on database', 'op_date': datetime.now(), 'userid': self._uid, } self.env['plm.logging'].create(values) return ret def write(self, vals): ret=True if vals: if not isAdministrator(self): check=self._context.get('internal_writing', False) thisprocess=self._context.get('internal_process', False) # Avoids messages during internal processes. if not check: for prodItem in self.browse(self._ids): if not isDraft(self,prodItem.id): if not thisprocess: logging.error("The entity '{name}-{rev}' is in a status that does not allow you to make save action".format(name=prodItem.name,rev=prodItem.engineering_revision)) ret=False break if not prodItem.engineering_writable: if not thisprocess: logging.error("The entity '{name}-{rev}' cannot be written.".format(name=prodItem.name,rev=prodItem.engineering_revision)) ret=False break if ret: self._insertlog(self._ids, changes=vals) ret=super(plm_component, self).write(vals) return ret def copy(self, default={}): newID=False override=False previous_name=False oid=self.id if not self._context.get('new_revision', False): previous_name = self.browse(oid).name new_name=default.get('name', 'Copy of %s'%previous_name) if 'name' in default: tmpIds = self.search([('name', 'like', new_name)]) if len(tmpIds) > 0: new_name = '%s (%s)' % (new_name, len(tmpIds) + 1) default.update({ 'name': new_name, 'engineering_code': new_name, 'engineering_revision': self._default_rev, }) override=True default.update({ 'state': 'draft', 'engineering_writable': True, 'write_date': None, 'linkeddocuments': [] }) note={ 'type': 'copy object', 'reason': "Previous name was '{old} new one is '{new}'.".format(old=previous_name,new=new_name), } self._insertlog(oid, note=note) tmpID=super(plm_component, self.browse(oid).with_context({'internal_writing':True})).copy(default) if tmpID!=None: newID=tmpID if override: values={ 'name': new_name, 'engineering_code': new_name, 'engineering_revision': self._default_rev, 'linkeddocuments': [] } newID.write(values) else: tmpID=super(plm_component, self.browse(oid).with_context({'internal_writing':True})).copy(default) if tmpID: newID=tmpID default.update({ 'linkeddocuments': [] }) newID.with_context({'internal_writing':True}).write(default) if newID and previous_name: wf_message_post(self, getListIDs(newID), body='Copied starting from : {value}.'.format(value=previous_name)) return newID def unlink(self): ret=False ids=self._ids values = {'state': 'released', } isAdmin = isAdministrator(self) if not self.env['mrp.bom'].IsChild(ids): for checkObj in self.browse(ids): checkApply=False if isReleased(self, checkObj.id): if isAdmin: checkApply=True elif isDraft(self, checkObj.id): checkApply=True if not checkApply: continue # Apply unlink only if have respected rules. existingIDs = self.with_context({'no_move_documents':True}).search([ ('engineering_code', '=', checkObj.engineering_code), ('engineering_revision', '=', checkObj.engineering_revision - 1)]) if len(existingIDs) > 0: obsoletedIds=[] undermodifyIds=[] for existID in getListIDs(existingIDs): if isObsoleted(self, existID.id): obsoletedIds.append(existID.id) elif isUnderModify(self, existID.id): undermodifyIds.append(existID.id) move_workflow (self, obsoletedIds, 'reactivate', 'released') if undermodifyIds: move_workflow (self, undermodifyIds, 'reactivate', 'released') note={ 'type': 'unlink object', 'reason': "Removed entity from database.", } self._insertlog(checkObj.id, note=note) item = super(plm_component, checkObj.with_context({'no_move_documents':False})).unlink() if item: ret=ret | item return ret # Overridden methods for this entity
[ 20, 34, 38, 44, 49 ]
1,763
ca0c38cf2a55b2311a254b09cb693516c3d0ab10
<mask token>
<mask token> def write_video(fps, input_folder='output', video_name='video.mp4'): fourcc = cv2.VideoWriter_fourcc('m', 'p', '4', 'v') video = cv2.VideoWriter(video_name, fourcc, fps, (1280, 720)) path = os.getcwd() files = os.listdir(path + '/' + input_folder) count = len(files) for i in range(1, count): img = cv2.imread(input_folder + '/*image{0:03d}.jpg'.format(i)) video.write(img) video.release() <mask token>
<mask token> def write_video(fps, input_folder='output', video_name='video.mp4'): fourcc = cv2.VideoWriter_fourcc('m', 'p', '4', 'v') video = cv2.VideoWriter(video_name, fourcc, fps, (1280, 720)) path = os.getcwd() files = os.listdir(path + '/' + input_folder) count = len(files) for i in range(1, count): img = cv2.imread(input_folder + '/*image{0:03d}.jpg'.format(i)) video.write(img) video.release() if __name__ == '__main__': args = sys.argv if len(args) < 2: print('No argument!') sys.exit() elif len(args) < 3: write_video(float(args[1])) else: write_video(float(args[1]), args[2], args[3])
import sys import os import cv2 def write_video(fps, input_folder='output', video_name='video.mp4'): fourcc = cv2.VideoWriter_fourcc('m', 'p', '4', 'v') video = cv2.VideoWriter(video_name, fourcc, fps, (1280, 720)) path = os.getcwd() files = os.listdir(path + '/' + input_folder) count = len(files) for i in range(1, count): img = cv2.imread(input_folder + '/*image{0:03d}.jpg'.format(i)) video.write(img) video.release() if __name__ == '__main__': args = sys.argv if len(args) < 2: print('No argument!') sys.exit() elif len(args) < 3: write_video(float(args[1])) else: write_video(float(args[1]), args[2], args[3])
import sys import os import cv2 def write_video(fps, input_folder="output",video_name="video.mp4"): fourcc = cv2.VideoWriter_fourcc("m","p","4","v") video = cv2.VideoWriter(video_name, fourcc, fps, (1280,720)) path = os.getcwd() files = os.listdir(path+"/"+input_folder) count = len(files) for i in range(1, count): img = cv2.imread(input_folder+"/*image{0:03d}.jpg".format(i)) video.write(img) video.release() if __name__ == '__main__': args = sys.argv if len(args)<2: print("No argument!") sys.exit() elif len(args)<3: write_video(float(args[1])) else: write_video(float(args[1]),args[2],args[3])
[ 0, 1, 2, 3, 4 ]
1,764
7e0eefb1d913787f675adc2ba0dccb16007464e4
<mask token> def checkhost(ip): conf.verb = 0 try: ping = sr1(IP(dst=ip) / ICMP()) print('\n[*] Target is up, beginning scan...') except Exception: print("\n[!] Couldn't resolve target") sys.exit('Exiting...') <mask token> def scanport(port): startPort = RandShort() conf.verb = 0 SYNACKpkt = sr1(IP(dst=target) / TCP(sport=startPort, endPort=port, flags='S')) pktflags = SYNACKpkt.getlayer(TCP).flags if pktflags == SYNACK: return True else: return False RSTpkt = IP(dst=target) / TCP(sport=startPort, endPort=port, flags='R') send(RSTpkt) <mask token>
<mask token> getLogger('scapy.runtime').setLevel(ERROR) <mask token> subprocess.call('clear', shell=True) <mask token> print('-' * 60) print('Please wait, scanning remote host...', targetIP) <mask token> print('Scan started at: ', localtime) def checkhost(ip): conf.verb = 0 try: ping = sr1(IP(dst=ip) / ICMP()) print('\n[*] Target is up, beginning scan...') except Exception: print("\n[!] Couldn't resolve target") sys.exit('Exiting...') print('-' * 60) def scanport(port): startPort = RandShort() conf.verb = 0 SYNACKpkt = sr1(IP(dst=target) / TCP(sport=startPort, endPort=port, flags='S')) pktflags = SYNACKpkt.getlayer(TCP).flags if pktflags == SYNACK: return True else: return False RSTpkt = IP(dst=target) / TCP(sport=startPort, endPort=port, flags='R') send(RSTpkt) try: for port in range(int(startPort), int(endPort) + 1): sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) result = sock.connect_ex((targetIP, port)) if result == 0: print('Port {}: [+] Open'.format(port)) elif result != 0: print('Port {}: [-] Closed'.format(port)) sock.close() except KeyboardInterrupt: sys.exit('You pressed Ctrl+C') except socket.gaierror: sys.exit('Hostname could not be resolved. Exiting') except socket.error: sys.exit("Couldn't connect to server") <mask token> print('-' * 60) print('Scanning Completed in: ', total)
<mask token> getLogger('scapy.runtime').setLevel(ERROR) <mask token> subprocess.call('clear', shell=True) target = input('Enter a remote host to scan: ') targetIP = socket.gethostbyname(target) startPort = int(input('Enter the start port to scan: ')) endPort = int(input('Enter the end port to scan: ')) ports = range(int(startPort), int(endPort) + 1) t1 = datetime.now() SYNACK = 18 RSTACK = 20 print('-' * 60) print('Please wait, scanning remote host...', targetIP) localtime = time.asctime(time.localtime()) print('Scan started at: ', localtime) def checkhost(ip): conf.verb = 0 try: ping = sr1(IP(dst=ip) / ICMP()) print('\n[*] Target is up, beginning scan...') except Exception: print("\n[!] Couldn't resolve target") sys.exit('Exiting...') print('-' * 60) def scanport(port): startPort = RandShort() conf.verb = 0 SYNACKpkt = sr1(IP(dst=target) / TCP(sport=startPort, endPort=port, flags='S')) pktflags = SYNACKpkt.getlayer(TCP).flags if pktflags == SYNACK: return True else: return False RSTpkt = IP(dst=target) / TCP(sport=startPort, endPort=port, flags='R') send(RSTpkt) try: for port in range(int(startPort), int(endPort) + 1): sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) result = sock.connect_ex((targetIP, port)) if result == 0: print('Port {}: [+] Open'.format(port)) elif result != 0: print('Port {}: [-] Closed'.format(port)) sock.close() except KeyboardInterrupt: sys.exit('You pressed Ctrl+C') except socket.gaierror: sys.exit('Hostname could not be resolved. Exiting') except socket.error: sys.exit("Couldn't connect to server") t2 = datetime.now() total = t2 - t1 print('-' * 60) print('Scanning Completed in: ', total)
import threading import socket import subprocess import sys import time import scapy from threading import Thread, Lock from queue import Queue from datetime import datetime from logging import getLogger, ERROR getLogger('scapy.runtime').setLevel(ERROR) from scapy.all import * subprocess.call('clear', shell=True) target = input('Enter a remote host to scan: ') targetIP = socket.gethostbyname(target) startPort = int(input('Enter the start port to scan: ')) endPort = int(input('Enter the end port to scan: ')) ports = range(int(startPort), int(endPort) + 1) t1 = datetime.now() SYNACK = 18 RSTACK = 20 print('-' * 60) print('Please wait, scanning remote host...', targetIP) localtime = time.asctime(time.localtime()) print('Scan started at: ', localtime) def checkhost(ip): conf.verb = 0 try: ping = sr1(IP(dst=ip) / ICMP()) print('\n[*] Target is up, beginning scan...') except Exception: print("\n[!] Couldn't resolve target") sys.exit('Exiting...') print('-' * 60) def scanport(port): startPort = RandShort() conf.verb = 0 SYNACKpkt = sr1(IP(dst=target) / TCP(sport=startPort, endPort=port, flags='S')) pktflags = SYNACKpkt.getlayer(TCP).flags if pktflags == SYNACK: return True else: return False RSTpkt = IP(dst=target) / TCP(sport=startPort, endPort=port, flags='R') send(RSTpkt) try: for port in range(int(startPort), int(endPort) + 1): sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) result = sock.connect_ex((targetIP, port)) if result == 0: print('Port {}: [+] Open'.format(port)) elif result != 0: print('Port {}: [-] Closed'.format(port)) sock.close() except KeyboardInterrupt: sys.exit('You pressed Ctrl+C') except socket.gaierror: sys.exit('Hostname could not be resolved. Exiting') except socket.error: sys.exit("Couldn't connect to server") t2 = datetime.now() total = t2 - t1 print('-' * 60) print('Scanning Completed in: ', total)
# Original code from http://www.pythonforbeginners.com/code-snippets-source-code/port-scanner-in-python #!/usr/bin/env python # modules import threading import socket import subprocess import sys import time import scapy from threading import Thread, Lock from queue import Queue from datetime import datetime from logging import getLogger, ERROR getLogger("scapy.runtime") .setLevel (ERROR) from scapy.all import * subprocess.call('clear', shell=True) # print_lock = threading.Lock() - WIP, threading not implemented yet. # Enter target host and port range target = input("Enter a remote host to scan: ") targetIP = socket.gethostbyname(target) startPort = int(input("Enter the start port to scan: ")) endPort = int(input("Enter the end port to scan: ")) # Setting some values ports = range(int(startPort), int(endPort)+1) t1 = datetime.now() SYNACK = 0x12 RSTACK = 0x14 # Banner displaying which host is being scanned print ("-" * 60) print ("Please wait, scanning remote host...", targetIP) localtime = time.asctime(time.localtime()) print ("Scan started at: ", localtime) def checkhost(ip): conf.verb = 0 try: ping = sr1(IP(dst = ip)/ICMP()) print ("\n[*] Target is up, beginning scan...") #this text isn't displayed - why? except Exception: print ("\n[!] Couldn't resolve target") sys.exit("Exiting...") print ("-" * 60) def scanport(port): startPort = RandShort() # scapy func that generates a small random nr to use as a source port. conf.verb = 0 # prevents output from sending pkts from being printed to the screen. SYNACKpkt = sr1(IP(dst = target)/TCP(sport = startPort, endPort = port, flags = "S")) # Scapy func sr1() used to craft & send a SYN pkt . pktflags = SYNACKpkt.getlayer(TCP).flags if pktflags == SYNACK: return True else: return False RSTpkt = IP(dst = target)/TCP(sport = startPort, endPort = port, flags = "R") send(RSTpkt) # Error handling try: for port in range(int(startPort), int(endPort)+1): sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) result = sock.connect_ex((targetIP, port)) if result == 0: print ("Port {}: [+] Open".format(port)) elif result != 0: print ("Port {}: [-] Closed".format(port)) sock.close() except KeyboardInterrupt: sys.exit("You pressed Ctrl+C") except socket.gaierror: sys.exit("Hostname could not be resolved. Exiting") except socket.error: sys.exit("Couldn't connect to server") t2 = datetime.now() # Calculates the difference in time, to see how long it took to run the script total = t2 - t1 print ("-" * 60) print ("Scanning Completed in: ", total)
[ 2, 3, 4, 5, 6 ]
1,765
5791c1efa82a1e02ca067e1db776e9d466a111e2
<mask token>
<mask token> class Migration(migrations.Migration): <mask token> <mask token>
<mask token> class Migration(migrations.Migration): dependencies = [migrations.swappable_dependency(settings. AUTH_USER_MODEL), ('orion_integration', '0005_auto_20180814_1747')] operations = [migrations.CreateModel(name='OrionAPMApplication', fields =[('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('created_on', models. DateTimeField(auto_now_add=True, db_index=True, help_text= 'object creation time stamp', verbose_name='created on')), ( 'updated_on', models.DateTimeField(auto_now_add=True, db_index=True, help_text='object update time stamp', verbose_name='updated on')), ('enabled', models.BooleanField(db_index=True, default=True, verbose_name='enabled')), ('notes', models.TextField(blank=True, null=True, verbose_name='notes')), ('orion_id', models. BigIntegerField(db_index=True, help_text= 'Use the value in this field to query the Orion server', unique= True, verbose_name='Orion Object Id')), ('application_name', models .CharField(db_index=True, help_text= 'The application name as reported by Orion.APM.Application', max_length=254, verbose_name='Application Name')), ('details_url', models.TextField(blank=True, null=True, verbose_name= 'Application Details URL')), ('full_name', models.TextField(blank= True, null=True, verbose_name='Application Fully Qualified Name')), ('status', models.CharField(db_index=True, max_length=254, verbose_name='Node Status')), ('status_orion_id', models. BigIntegerField(db_index=True, default=0, help_text= 'This will probably changes but that is how they do it for the moment; boohoo' , verbose_name='Orion Node Status Id')), ('created_by', models. ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name= 'orion_integration_orionapmapplication_created_by_related', to= settings.AUTH_USER_MODEL, verbose_name='created by')), ('node', models.ForeignKey(help_text= 'The node where the application is running', on_delete=django.db. models.deletion.CASCADE, to='orion_integration.OrionNode', verbose_name='Orion Node')), ('updated_by', models.ForeignKey( on_delete=django.db.models.deletion.PROTECT, related_name= 'orion_integration_orionapmapplication_updated_by_related', to= settings.AUTH_USER_MODEL, verbose_name='updated by'))], options={ 'verbose_name': 'Orion Application', 'verbose_name_plural': 'Orion Applications'})]
from django.conf import settings from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [migrations.swappable_dependency(settings. AUTH_USER_MODEL), ('orion_integration', '0005_auto_20180814_1747')] operations = [migrations.CreateModel(name='OrionAPMApplication', fields =[('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('created_on', models. DateTimeField(auto_now_add=True, db_index=True, help_text= 'object creation time stamp', verbose_name='created on')), ( 'updated_on', models.DateTimeField(auto_now_add=True, db_index=True, help_text='object update time stamp', verbose_name='updated on')), ('enabled', models.BooleanField(db_index=True, default=True, verbose_name='enabled')), ('notes', models.TextField(blank=True, null=True, verbose_name='notes')), ('orion_id', models. BigIntegerField(db_index=True, help_text= 'Use the value in this field to query the Orion server', unique= True, verbose_name='Orion Object Id')), ('application_name', models .CharField(db_index=True, help_text= 'The application name as reported by Orion.APM.Application', max_length=254, verbose_name='Application Name')), ('details_url', models.TextField(blank=True, null=True, verbose_name= 'Application Details URL')), ('full_name', models.TextField(blank= True, null=True, verbose_name='Application Fully Qualified Name')), ('status', models.CharField(db_index=True, max_length=254, verbose_name='Node Status')), ('status_orion_id', models. BigIntegerField(db_index=True, default=0, help_text= 'This will probably changes but that is how they do it for the moment; boohoo' , verbose_name='Orion Node Status Id')), ('created_by', models. ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name= 'orion_integration_orionapmapplication_created_by_related', to= settings.AUTH_USER_MODEL, verbose_name='created by')), ('node', models.ForeignKey(help_text= 'The node where the application is running', on_delete=django.db. models.deletion.CASCADE, to='orion_integration.OrionNode', verbose_name='Orion Node')), ('updated_by', models.ForeignKey( on_delete=django.db.models.deletion.PROTECT, related_name= 'orion_integration_orionapmapplication_updated_by_related', to= settings.AUTH_USER_MODEL, verbose_name='updated by'))], options={ 'verbose_name': 'Orion Application', 'verbose_name_plural': 'Orion Applications'})]
# Generated by Django 2.0.7 on 2018-08-14 21:31 from django.conf import settings from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ('orion_integration', '0005_auto_20180814_1747'), ] operations = [ migrations.CreateModel( name='OrionAPMApplication', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('created_on', models.DateTimeField(auto_now_add=True, db_index=True, help_text='object creation time stamp', verbose_name='created on')), ('updated_on', models.DateTimeField(auto_now_add=True, db_index=True, help_text='object update time stamp', verbose_name='updated on')), ('enabled', models.BooleanField(db_index=True, default=True, verbose_name='enabled')), ('notes', models.TextField(blank=True, null=True, verbose_name='notes')), ('orion_id', models.BigIntegerField(db_index=True, help_text='Use the value in this field to query the Orion server', unique=True, verbose_name='Orion Object Id')), ('application_name', models.CharField(db_index=True, help_text='The application name as reported by Orion.APM.Application', max_length=254, verbose_name='Application Name')), ('details_url', models.TextField(blank=True, null=True, verbose_name='Application Details URL')), ('full_name', models.TextField(blank=True, null=True, verbose_name='Application Fully Qualified Name')), ('status', models.CharField(db_index=True, max_length=254, verbose_name='Node Status')), ('status_orion_id', models.BigIntegerField(db_index=True, default=0, help_text='This will probably changes but that is how they do it for the moment; boohoo', verbose_name='Orion Node Status Id')), ('created_by', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='orion_integration_orionapmapplication_created_by_related', to=settings.AUTH_USER_MODEL, verbose_name='created by')), ('node', models.ForeignKey(help_text='The node where the application is running', on_delete=django.db.models.deletion.CASCADE, to='orion_integration.OrionNode', verbose_name='Orion Node')), ('updated_by', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='orion_integration_orionapmapplication_updated_by_related', to=settings.AUTH_USER_MODEL, verbose_name='updated by')), ], options={ 'verbose_name': 'Orion Application', 'verbose_name_plural': 'Orion Applications', }, ), ]
[ 0, 1, 2, 3, 4 ]
1,766
aa7cf08b40b2a13e39003f95e5e0ce7335cbdba2
''' LeetCode wants to give one of its best employees the option to travel among n cities to collect algorithm problems. But all work and no play makes Jack a dull boy, you could take vacations in some particular cities and weeks. Your job is to schedule the traveling to maximize the number of vacation days you could take, but there are certain rules and restrictions you need to follow. Rules and restrictions: You can only travel among n cities, represented by indexes from 0 to n - 1. Initially, you are in the city indexed 0 on Monday. The cities are connected by flights. The flights are represented as an n x n matrix (not necessarily symmetrical), called flights representing the airline status from the city i to the city j. If there is no flight from the city i to the city j, flights[i][j] == 0; Otherwise, flights[i][j] == 1. Also, flights[i][i] == 0 for all i. You totally have k weeks (each week has seven days) to travel. You can only take flights at most once per day and can only take flights on each week's Monday morning. Since flight time is so short, we do not consider the impact of flight time. For each city, you can only have restricted vacation days in different weeks, given an n x k matrix called days representing this relationship. For the value of days[i][j], it represents the maximum days you could take a vacation in the city i in the week j. You could stay in a city beyond the number of vacation days, but you should work on the extra days, which will not be counted as vacation days. If you fly from city A to city B and take the vacation on that day, the deduction towards vacation days will count towards the vacation days of city B in that week. We do not consider the impact of flight hours on the calculation of vacation days. Given the two matrices flights and days, return the maximum vacation days you could take during k weeks. ''' First convert flights to a graph represented by adjacency lists. An edge exists between two cities if there is a flight connecting them. And also include the source city in destination list since we can stay at the source city. Then dp[week][city] recurrence: dp[w][c] = days[c][w] + max(dp[w+1][dest] for dest in g[c]). It's easier to use bottom up here since the starting point (week 0) is fixed instead of ending point. Using bottom up, we can get the maximum value for week 0 in our dp table. Eventually since we start at city 0, answer is the max days from city 0's destinations (in day 0, you can spend rest days of week 0 in city 0 or other cities connected to city 0) def maxVacationDays(flights, days): n, k = len(days), len(days[0]) g = [[j for j, dst in enumerate(city) if dst]+[i] for i, city in enumerate(flights)] dp = [[0] * n for _ in range(k+1)] for w in range(k)[::-1]: for c in range(n): dp[w][c] = days[c][w] + max(dp[w+1][dst] for dst in g[c]) return max(dp[0][dst] for dst in g[0]) ------------------------------------------------------------------------- Intuition: We can tell this is a DP problem since subproblems of our original problem will overlap. For example, in some week i, we could be able to fly to some city j from multiple other cities, depending on if there valid flights or not. We'll use what city we are in, and what week it is as our state values. So, dp(week, city) will tell us the maximum vacation time from this city and week. Our base case will be if the week is past k, in which case we return 0. Our recurrance relation will consider traveling to every possible city that we can fly to, and also consider not traveling at all. For each place we travel to, we can calculate the value of staying there as days[city][week], plus dp(week + 1, city), where city is our destination after traveling (or not traveling). Then, we just need to solve for dp(0,0). Code: def maxVacationDays(self, flights: List[List[int]], days: List[List[int]]) -> int: k = len(days[0]) @lru_cache(None) def dp(week, city): # we are past the amount of weeks we are traveling for if week == k: return 0 # consider not traveling (notice city is our original city) best = days[city][week] + dp(week + 1, city) for j in range(len(flights[0])): if flights[city][j] == 0: # if we can't travel to this city, skip it continue # consider traveling to city j as the answer best = max(best, days[j][week] + dp(week + 1, j)) # return the maximal value of all possibilities return best return dp(0,0) Analysis: O(n^2 * k) time from n * k states values to calulate, times n time to calculate each state. O(n * k) space, since we have n * k states to memoize. ---------------------------------------------------------------------------------------------------- Viterbi Algorithm # Find the longest path on a Week (Row) x City (Col) Table def maxVacationDays(self, flights: List[List[int]], days: List[List[int]]) -> int: n, k = len(days), len(days[0]) # days: city x week dp = [[float('-inf')] * n for _ in range(k)] # dp: week x city dp[0][0] = days[0][0] for d in range(1, n): # week 0 can be any city having a flight if flights[0][d] == 1: dp[0][d] = days[d][0] for t in range(1, k): for c in range(n): for d, hasflight in enumerate(flights[c]): if hasflight or c == d: dp[t][d] = max(dp[t][d], dp[t-1][c] + days[d][t]) return max(dp[-1]) ------------------------------------------------------------------------------------------------------------- We consider each city of each day as node. Thus, there are N * k + 2 nodes including the dummy start node and the dummy end node. We connect each node if there is a flight, or if they are the same city. (It means that he just stays at the same city.) After connecting all the possible edges, I performed BFS starting from the dummy start node to find the longest path to all the nodes. The answer is the longest path from the start node to the end node. Note that in this problem, we are considering the maximum value, so it's not shortest path but longest path. class Graph: def __init__(self, num): self.V = num self.edges = [[] for _ in range(num)] self.dists = [-math.inf for _ in range(num)] def add_edge(self, a, b, w): self.edges[a].append([b, w]) def bfs(self, start): queue = deque([start]) self.dists[start] = 0 while queue: u = queue.popleft() for ad, dist in self.edges[u]: new_dist = self.dists[u] + dist if new_dist > self.dists[ad]: self.dists[ad] = new_dist queue.append(ad) return self.dists[-1] class Solution: def maxVacationDays(self, flights: List[List[int]], days: List[List[int]]) -> int: N, k = len(flights), len(days[0]) #construct graph g = Graph(N * k + 2) for i in range(N): #first day if i == 0 or flights[0][i]: g.add_edge(N * k, i, days[i][0]) for d in range(1, k): #middle days for i in range(N): for j in range(N): if i == j or flights[i][j] == 1: g.add_edge(N * (d - 1) + i, N * d + j, days[j][d]) for i in range(N): #final day g.add_edge(N * (k - 1) + i, N * k + 1, 0) return g.bfs(start=N * k) ------------------------------------------------------------------------------------------------------- Let's maintain best[i], the most vacation days you can have ending in city i on week t. At the end, we simply want max(best), the best answer for any ending city. For every flight i -> j (including staying in the same city, when i == j), we have a candidate answer best[j] = best[i] + days[j][t], and we want the best answer of those. When the graph is sparse, we can precompute flights_available[i] = [j for j, adj in enumerate(flights[i]) if adj or i == j] instead to save some time, but this is not required. def maxVacationDays(self, flights, days): NINF = float('-inf') N, K = len(days), len(days[0]) best = [NINF] * N best[0] = 0 for t in xrange(K): cur = [NINF] * N for i in xrange(N): for j, adj in enumerate(flights[i]): if adj or i == j: cur[j] = max(cur[j], best[i] + days[j][t]) best = cur return max(best) -------------------------------------------------------------------------------------- hought process Recursive backtracking def backtrack(week, city): backtrack(week, city) = max(stay: days[city][week] + backtrack(week+1, city), fly: max(backtrack(week+1, other) + days[other][week]) for flights[city][other] == 1) flights can be optimized using adjacency list base case: week == N, return 0 because there is no state change, we can use memoization be careful that even if working in a city all week, it can still provide more opportunites for more vacation in future (because maybe you can only fly to other city and cannot come back, but future weeks in this city may have many vacations) just try everything possible! Iterative solution is also simple Top-down DP import functools class Solution: def maxVacationDays(self, flights: List[List[int]], days: List[List[int]]) -> int: N, K = len(days), len(days[0]) flights = [[i for i, can_fly in enumerate(city) if can_fly] for city in flights] @functools.lru_cache(None) def backtrack(week, city): if week == K: return 0 stay = days[city][week] + backtrack(week+1, city) fly = max((days[other][week] + backtrack(week+1, other) for other in flights[city]), default=0) return max(stay, fly) return backtrack(0, 0) Bottom-up DP def maxVacationDays(self, flights: List[List[int]], days: List[List[int]]) -> int: N, K = len(days), len(days[0]) flights = [[i for i, can_fly in enumerate(city) if can_fly] for city in flights] dp = [[0] * N for _ in range(K+1)] for week in range(K-1, -1, -1): for city in range(N): stay = days[city][week] + dp[week+1][city] fly = max((days[other][week] + dp[week+1][other] for other in flights[city]), default=0) dp[week][city] = max(stay, fly) return dp[0][0] O(K) space optimization def maxVacationDays(self, flights: List[List[int]], days: List[List[int]]) -> int: N, K = len(days), len(days[0]) flights = [[i for i, can_fly in enumerate(city) if can_fly] for city in flights] dp = [0] * N cur = dp[:] for week in range(K-1, -1, -1): for city in range(N): stay = days[city][week] + dp[city] fly = max((days[other][week] + dp[other] for other in flights[city]), default=0) cur[city] = max(stay, fly) dp, cur = cur, dp return dp[0] -------------------------------------------------------------------------------- class Solution: def maxVacationDays(self, flights: List[List[int]], days: List[List[int]]) -> int: n = len(flights) nexts = collections.defaultdict(list) for i in range(n): nexts[i].append(i) for j in range(n): if flights[i][j]: nexts[i].append(j) m = len(days[0]) minHeap = [(0,0)] for weeks in range(m): visited = set() temp = [] while len(temp) < n and minHeap: vac,city = heapq.heappop(minHeap) for nxt in nexts[city]: if nxt not in visited: visited.add(nxt) heapq.heappush(temp,(vac-days[nxt][weeks],nxt)) minHeap = temp vac,city = heapq.heappop(minHeap) return -vac
null
null
null
null
[ 0 ]
1,767
b000f293b50970233d5b71abc3e10e2ad57a3fc7
<mask token>
<mask token> print('dict_test: ', dict_test) <mask token> for key in range(0, int(elem_dict)): key = input('dict key: ') user_input_dict[key] = input('dict value:') print(user_input_dict) <mask token> dict_test.pop(int(del_key)) print(dict_test) <mask token> print(list_test) try: print(list_test[5]) except IndexError as message: print('list index out of range') try: print(dict_test[7]) except KeyError as message: dict_test[7] = 'KeyError: 7' print(dict_test) <mask token> while work == True: print('Your personal database is work, you have this base:') print(user_dict) print('if you want add record press 1') print('if you wand delete record press 2') print('if you wand change record press 3') print('if you want exit press 4') user_numb = input() if user_numb.isdigit() == False: continue if int(user_numb) == 1: print('write key of record:') key = input() print('write value for your key:') value = input() if key.isdigit() == True: key = int(key) if value.isdigit() == True: value = int(value) user_dict.update({key: value}) elif int(user_numb) == 2: print(user_dict) print('what number of record you want to delete?') del_key = input() if del_key.isdigit() == False: print('This is not correct number!') continue elif int(del_key) > len(user_dict) or int(del_key) <= 0: print('Your base doesnot have this number!') continue user_dict.pop(int(del_key) + 1) elif int(user_numb) == 3: print('What number of record you want to change?') reg_key = input() if reg_key.isdigit() == False: print('This is not number!') continue elif int(reg_key) > len(user_dict) or int(reg_key) <= 0: print('Your base doesnt have this number!') continue print('write value for your key:') value = input() if value.isdigit() == True: value = int(value) user_dict[int(reg_key) - 1] = value elif int(user_numb) == 4: work = False else: print('your input false, please write true number!')
my_information = {'name': 'Vilen', 'last_name': 'Mateush', 'how_old': 31, 'born_town': 'Khmelniysky'} dict_test = {key: (key ** 2) for key in range(7)} print('dict_test: ', dict_test) elem_dict = 0 elem_dict = input('input number of elements:') user_input_dict = {} for key in range(0, int(elem_dict)): key = input('dict key: ') user_input_dict[key] = input('dict value:') print(user_input_dict) del_key = 0 del_key = input('input key for remove:') dict_test.pop(int(del_key)) print(dict_test) list_test = [elem for elem in range(5)] print(list_test) try: print(list_test[5]) except IndexError as message: print('list index out of range') try: print(dict_test[7]) except KeyError as message: dict_test[7] = 'KeyError: 7' print(dict_test) work = True user_dict = {} user_numb = 0 while work == True: print('Your personal database is work, you have this base:') print(user_dict) print('if you want add record press 1') print('if you wand delete record press 2') print('if you wand change record press 3') print('if you want exit press 4') user_numb = input() if user_numb.isdigit() == False: continue if int(user_numb) == 1: print('write key of record:') key = input() print('write value for your key:') value = input() if key.isdigit() == True: key = int(key) if value.isdigit() == True: value = int(value) user_dict.update({key: value}) elif int(user_numb) == 2: print(user_dict) print('what number of record you want to delete?') del_key = input() if del_key.isdigit() == False: print('This is not correct number!') continue elif int(del_key) > len(user_dict) or int(del_key) <= 0: print('Your base doesnot have this number!') continue user_dict.pop(int(del_key) + 1) elif int(user_numb) == 3: print('What number of record you want to change?') reg_key = input() if reg_key.isdigit() == False: print('This is not number!') continue elif int(reg_key) > len(user_dict) or int(reg_key) <= 0: print('Your base doesnt have this number!') continue print('write value for your key:') value = input() if value.isdigit() == True: value = int(value) user_dict[int(reg_key) - 1] = value elif int(user_numb) == 4: work = False else: print('your input false, please write true number!')
# lesson 4 Mateush Vilen my_information = { 'name': 'Vilen', 'last_name': 'Mateush', 'how_old': 31, 'born_town': 'Khmelniysky' } dict_test = {key: key**2 for key in range(7)} print('dict_test: ', dict_test) elem_dict = 0 elem_dict = input('input number of elements:') user_input_dict = {} for key in range(0, int(elem_dict)): key = input('dict key: ') user_input_dict[key] = input('dict value:') print(user_input_dict) del_key = 0 del_key = input('input key for remove:') dict_test.pop(int(del_key)) print(dict_test) list_test = [elem for elem in range(5)] print(list_test) try: print(list_test[5]) except IndexError as message: print('list index out of range') try: print(dict_test[7]) except KeyError as message: dict_test[7] = 'KeyError: 7' print(dict_test) # ------------My database------------: work = True user_dict = {} user_numb = 0 while work == True: print('Your personal database is work, you have this base:') print(user_dict) print('if you want add record press 1') print('if you wand delete record press 2') print('if you wand change record press 3') print('if you want exit press 4') user_numb = input() if user_numb.isdigit() == False: continue if int(user_numb) == 1: print('write key of record:') key = input() print('write value for your key:') value = input() if key.isdigit() == True: key = int(key) if value.isdigit() == True: value = int(value) user_dict.update({key: value}) elif int(user_numb) == 2: print(user_dict) print('what number of record you want to delete?') del_key = input() if del_key.isdigit() == False: print('This is not correct number!') continue elif int(del_key) > len(user_dict) or int(del_key) <= 0: print('Your base doesnot have this number!') continue user_dict.pop(int(del_key)+1) elif int(user_numb) == 3: print('What number of record you want to change?') reg_key = input() if reg_key.isdigit() == False: print('This is not number!') continue elif int(reg_key) > len(user_dict) or int(reg_key) <= 0: print('Your base doesnt have this number!') continue print('write value for your key:') value = input() if value.isdigit() == True: value = int(value) user_dict[int(reg_key)-1] = value elif int(user_numb) == 4: work = False else: print('your input false, please write true number!')
null
[ 0, 1, 2, 3 ]
1,768
f9becdb48583423e7bd3730d1cd74a6a016663dc
<mask token> class Window(tk.Tk): def __init__(self): super().__init__() res = requests.get('https://flask-robert.herokuapp.com/youbike') jsonObj = res.json() areas = jsonObj['areas'] self.title('台北市行政區') topFrame = tk.Frame(self, bd=2, relief=tk.GROOVE, padx=20, pady=10) buttonFont = Font(family='Helvetica', size=20) for index, area in enumerate(areas): if index % 6 == 0: parentframe = tk.Frame(topFrame) parentframe.pack() btn = tk.Button(parentframe, text=area, font=buttonFont, padx=5, pady=5) btn.bind('<Button-1>', self.userClick) btn.pack(side=tk.LEFT, padx=5) topFrame.pack(padx=20, pady=30) self.fixedWidthFrame = tk.Frame(self, height=600, bg='red') self.createdRadioButtonFrame() self.fixedWidthFrame.pack(padx=20) messageDisplayFrame = tk.Frame(self, bd=2, relief=tk.GROOVE, padx= 20, pady=10) self.mdayLabel = tk.Label(messageDisplayFrame, text='記錄時間:') self.mdayLabel.pack(anchor=tk.W) self.snaLabel = tk.Label(messageDisplayFrame, text='站名:') self.snaLabel.pack(anchor=tk.W) self.arLabel = tk.Label(messageDisplayFrame, text='地址:') self.arLabel.pack(anchor=tk.W) self.bempLabel = tk.Label(messageDisplayFrame, text='空位數量:') self.bempLabel.pack(anchor=tk.W) self.sbiLabel = tk.Label(messageDisplayFrame, text='可借車數:') self.sbiLabel.pack(anchor=tk.W) self.totLabel = tk.Label(messageDisplayFrame, text='總車數:') self.totLabel.pack(anchor=tk.W) messageDisplayFrame.pack(expand=True, fill=tk.BOTH, padx=20, pady=30) def userClick(self, event): self.bottomFrame.destroy() selectedArea = event.widget['text'] urlString = ('https://flask-robert.herokuapp.com/youbike/%s' % selectedArea) res = requests.get(urlString) jsonobj = res.json() self.areas = jsonobj['data'] snaList = [] for area in self.areas: snaList.append(area['sna']) self.createdRadioButtonFrame(data=snaList) def createdRadioButtonFrame(self, data=None): self.bottomFrame = tk.Frame(self.fixedWidthFrame, bd=2, relief=tk. GROOVE, padx=20, pady=10) if data == None: urlString = 'https://flask-robert.herokuapp.com/youbike/南港區' res = requests.get(urlString) jsonobj = res.json() self.areas = jsonobj['data'] snaList = [] for area in self.areas: snaList.append(area['sna']) self.radioButtonData = snaList else: self.radioButtonData = data self.var = tk.IntVar() for index, data in enumerate(self.radioButtonData): if index % 10 == 0: parentframe = tk.Frame(self.bottomFrame) parentframe.pack(side=tk.LEFT, expand=True, fill=tk.Y) radioButton = tk.Radiobutton(parentframe, text=data, value= index, variable=self.var, command=self.userChoicedRadioButton ).pack(anchor=tk.W) self.bottomFrame.pack() self.var.set(0) <mask token> <mask token>
<mask token> class Window(tk.Tk): def __init__(self): super().__init__() res = requests.get('https://flask-robert.herokuapp.com/youbike') jsonObj = res.json() areas = jsonObj['areas'] self.title('台北市行政區') topFrame = tk.Frame(self, bd=2, relief=tk.GROOVE, padx=20, pady=10) buttonFont = Font(family='Helvetica', size=20) for index, area in enumerate(areas): if index % 6 == 0: parentframe = tk.Frame(topFrame) parentframe.pack() btn = tk.Button(parentframe, text=area, font=buttonFont, padx=5, pady=5) btn.bind('<Button-1>', self.userClick) btn.pack(side=tk.LEFT, padx=5) topFrame.pack(padx=20, pady=30) self.fixedWidthFrame = tk.Frame(self, height=600, bg='red') self.createdRadioButtonFrame() self.fixedWidthFrame.pack(padx=20) messageDisplayFrame = tk.Frame(self, bd=2, relief=tk.GROOVE, padx= 20, pady=10) self.mdayLabel = tk.Label(messageDisplayFrame, text='記錄時間:') self.mdayLabel.pack(anchor=tk.W) self.snaLabel = tk.Label(messageDisplayFrame, text='站名:') self.snaLabel.pack(anchor=tk.W) self.arLabel = tk.Label(messageDisplayFrame, text='地址:') self.arLabel.pack(anchor=tk.W) self.bempLabel = tk.Label(messageDisplayFrame, text='空位數量:') self.bempLabel.pack(anchor=tk.W) self.sbiLabel = tk.Label(messageDisplayFrame, text='可借車數:') self.sbiLabel.pack(anchor=tk.W) self.totLabel = tk.Label(messageDisplayFrame, text='總車數:') self.totLabel.pack(anchor=tk.W) messageDisplayFrame.pack(expand=True, fill=tk.BOTH, padx=20, pady=30) def userClick(self, event): self.bottomFrame.destroy() selectedArea = event.widget['text'] urlString = ('https://flask-robert.herokuapp.com/youbike/%s' % selectedArea) res = requests.get(urlString) jsonobj = res.json() self.areas = jsonobj['data'] snaList = [] for area in self.areas: snaList.append(area['sna']) self.createdRadioButtonFrame(data=snaList) def createdRadioButtonFrame(self, data=None): self.bottomFrame = tk.Frame(self.fixedWidthFrame, bd=2, relief=tk. GROOVE, padx=20, pady=10) if data == None: urlString = 'https://flask-robert.herokuapp.com/youbike/南港區' res = requests.get(urlString) jsonobj = res.json() self.areas = jsonobj['data'] snaList = [] for area in self.areas: snaList.append(area['sna']) self.radioButtonData = snaList else: self.radioButtonData = data self.var = tk.IntVar() for index, data in enumerate(self.radioButtonData): if index % 10 == 0: parentframe = tk.Frame(self.bottomFrame) parentframe.pack(side=tk.LEFT, expand=True, fill=tk.Y) radioButton = tk.Radiobutton(parentframe, text=data, value= index, variable=self.var, command=self.userChoicedRadioButton ).pack(anchor=tk.W) self.bottomFrame.pack() self.var.set(0) def userChoicedRadioButton(self): index = self.var.get() infomation = self.areas[index] print(infomation) datetimeString = infomation['mday'] datetimeFormat = '%Y%m%d%H%M%S' structTime = strptime(datetimeString, datetimeFormat) self.mdayLabel['text'] = '記錄時間:%d年%d月%d日 %d:%d:%d' % (structTime. tm_year, structTime.tm_mon, structTime.tm_mday, structTime. tm_hour, structTime.tm_min, structTime.tm_sec) self.snaLabel['text'] = '站名:%s' % infomation['sna'] self.arLabel.configure(text='地址:{0:s}'.format(infomation['ar'])) self.bempLabel['text'] = '空位數量:{0:d}'.format(infomation['bemp']) self.sbiLabel['text'] = '可借車數:{0:d}'.format(infomation['sbi']) self.totLabel['text'] = '總車數:{0:d}'.format(infomation['tot']) <mask token>
<mask token> class Window(tk.Tk): def __init__(self): super().__init__() res = requests.get('https://flask-robert.herokuapp.com/youbike') jsonObj = res.json() areas = jsonObj['areas'] self.title('台北市行政區') topFrame = tk.Frame(self, bd=2, relief=tk.GROOVE, padx=20, pady=10) buttonFont = Font(family='Helvetica', size=20) for index, area in enumerate(areas): if index % 6 == 0: parentframe = tk.Frame(topFrame) parentframe.pack() btn = tk.Button(parentframe, text=area, font=buttonFont, padx=5, pady=5) btn.bind('<Button-1>', self.userClick) btn.pack(side=tk.LEFT, padx=5) topFrame.pack(padx=20, pady=30) self.fixedWidthFrame = tk.Frame(self, height=600, bg='red') self.createdRadioButtonFrame() self.fixedWidthFrame.pack(padx=20) messageDisplayFrame = tk.Frame(self, bd=2, relief=tk.GROOVE, padx= 20, pady=10) self.mdayLabel = tk.Label(messageDisplayFrame, text='記錄時間:') self.mdayLabel.pack(anchor=tk.W) self.snaLabel = tk.Label(messageDisplayFrame, text='站名:') self.snaLabel.pack(anchor=tk.W) self.arLabel = tk.Label(messageDisplayFrame, text='地址:') self.arLabel.pack(anchor=tk.W) self.bempLabel = tk.Label(messageDisplayFrame, text='空位數量:') self.bempLabel.pack(anchor=tk.W) self.sbiLabel = tk.Label(messageDisplayFrame, text='可借車數:') self.sbiLabel.pack(anchor=tk.W) self.totLabel = tk.Label(messageDisplayFrame, text='總車數:') self.totLabel.pack(anchor=tk.W) messageDisplayFrame.pack(expand=True, fill=tk.BOTH, padx=20, pady=30) def userClick(self, event): self.bottomFrame.destroy() selectedArea = event.widget['text'] urlString = ('https://flask-robert.herokuapp.com/youbike/%s' % selectedArea) res = requests.get(urlString) jsonobj = res.json() self.areas = jsonobj['data'] snaList = [] for area in self.areas: snaList.append(area['sna']) self.createdRadioButtonFrame(data=snaList) def createdRadioButtonFrame(self, data=None): self.bottomFrame = tk.Frame(self.fixedWidthFrame, bd=2, relief=tk. GROOVE, padx=20, pady=10) if data == None: urlString = 'https://flask-robert.herokuapp.com/youbike/南港區' res = requests.get(urlString) jsonobj = res.json() self.areas = jsonobj['data'] snaList = [] for area in self.areas: snaList.append(area['sna']) self.radioButtonData = snaList else: self.radioButtonData = data self.var = tk.IntVar() for index, data in enumerate(self.radioButtonData): if index % 10 == 0: parentframe = tk.Frame(self.bottomFrame) parentframe.pack(side=tk.LEFT, expand=True, fill=tk.Y) radioButton = tk.Radiobutton(parentframe, text=data, value= index, variable=self.var, command=self.userChoicedRadioButton ).pack(anchor=tk.W) self.bottomFrame.pack() self.var.set(0) def userChoicedRadioButton(self): index = self.var.get() infomation = self.areas[index] print(infomation) datetimeString = infomation['mday'] datetimeFormat = '%Y%m%d%H%M%S' structTime = strptime(datetimeString, datetimeFormat) self.mdayLabel['text'] = '記錄時間:%d年%d月%d日 %d:%d:%d' % (structTime. tm_year, structTime.tm_mon, structTime.tm_mday, structTime. tm_hour, structTime.tm_min, structTime.tm_sec) self.snaLabel['text'] = '站名:%s' % infomation['sna'] self.arLabel.configure(text='地址:{0:s}'.format(infomation['ar'])) self.bempLabel['text'] = '空位數量:{0:d}'.format(infomation['bemp']) self.sbiLabel['text'] = '可借車數:{0:d}'.format(infomation['sbi']) self.totLabel['text'] = '總車數:{0:d}'.format(infomation['tot']) if __name__ == '__main__': window = Window() window.mainloop()
import requests import tkinter as tk from tkinter.font import Font from time import strptime class Window(tk.Tk): def __init__(self): super().__init__() res = requests.get('https://flask-robert.herokuapp.com/youbike') jsonObj = res.json() areas = jsonObj['areas'] self.title('台北市行政區') topFrame = tk.Frame(self, bd=2, relief=tk.GROOVE, padx=20, pady=10) buttonFont = Font(family='Helvetica', size=20) for index, area in enumerate(areas): if index % 6 == 0: parentframe = tk.Frame(topFrame) parentframe.pack() btn = tk.Button(parentframe, text=area, font=buttonFont, padx=5, pady=5) btn.bind('<Button-1>', self.userClick) btn.pack(side=tk.LEFT, padx=5) topFrame.pack(padx=20, pady=30) self.fixedWidthFrame = tk.Frame(self, height=600, bg='red') self.createdRadioButtonFrame() self.fixedWidthFrame.pack(padx=20) messageDisplayFrame = tk.Frame(self, bd=2, relief=tk.GROOVE, padx= 20, pady=10) self.mdayLabel = tk.Label(messageDisplayFrame, text='記錄時間:') self.mdayLabel.pack(anchor=tk.W) self.snaLabel = tk.Label(messageDisplayFrame, text='站名:') self.snaLabel.pack(anchor=tk.W) self.arLabel = tk.Label(messageDisplayFrame, text='地址:') self.arLabel.pack(anchor=tk.W) self.bempLabel = tk.Label(messageDisplayFrame, text='空位數量:') self.bempLabel.pack(anchor=tk.W) self.sbiLabel = tk.Label(messageDisplayFrame, text='可借車數:') self.sbiLabel.pack(anchor=tk.W) self.totLabel = tk.Label(messageDisplayFrame, text='總車數:') self.totLabel.pack(anchor=tk.W) messageDisplayFrame.pack(expand=True, fill=tk.BOTH, padx=20, pady=30) def userClick(self, event): self.bottomFrame.destroy() selectedArea = event.widget['text'] urlString = ('https://flask-robert.herokuapp.com/youbike/%s' % selectedArea) res = requests.get(urlString) jsonobj = res.json() self.areas = jsonobj['data'] snaList = [] for area in self.areas: snaList.append(area['sna']) self.createdRadioButtonFrame(data=snaList) def createdRadioButtonFrame(self, data=None): self.bottomFrame = tk.Frame(self.fixedWidthFrame, bd=2, relief=tk. GROOVE, padx=20, pady=10) if data == None: urlString = 'https://flask-robert.herokuapp.com/youbike/南港區' res = requests.get(urlString) jsonobj = res.json() self.areas = jsonobj['data'] snaList = [] for area in self.areas: snaList.append(area['sna']) self.radioButtonData = snaList else: self.radioButtonData = data self.var = tk.IntVar() for index, data in enumerate(self.radioButtonData): if index % 10 == 0: parentframe = tk.Frame(self.bottomFrame) parentframe.pack(side=tk.LEFT, expand=True, fill=tk.Y) radioButton = tk.Radiobutton(parentframe, text=data, value= index, variable=self.var, command=self.userChoicedRadioButton ).pack(anchor=tk.W) self.bottomFrame.pack() self.var.set(0) def userChoicedRadioButton(self): index = self.var.get() infomation = self.areas[index] print(infomation) datetimeString = infomation['mday'] datetimeFormat = '%Y%m%d%H%M%S' structTime = strptime(datetimeString, datetimeFormat) self.mdayLabel['text'] = '記錄時間:%d年%d月%d日 %d:%d:%d' % (structTime. tm_year, structTime.tm_mon, structTime.tm_mday, structTime. tm_hour, structTime.tm_min, structTime.tm_sec) self.snaLabel['text'] = '站名:%s' % infomation['sna'] self.arLabel.configure(text='地址:{0:s}'.format(infomation['ar'])) self.bempLabel['text'] = '空位數量:{0:d}'.format(infomation['bemp']) self.sbiLabel['text'] = '可借車數:{0:d}'.format(infomation['sbi']) self.totLabel['text'] = '總車數:{0:d}'.format(infomation['tot']) if __name__ == '__main__': window = Window() window.mainloop()
import requests import tkinter as tk from tkinter.font import Font from time import strptime class Window(tk.Tk): def __init__(self): super().__init__() #取得網路上的資料 res = requests.get('https://flask-robert.herokuapp.com/youbike') jsonObj = res.json() areas = jsonObj['areas'] #介面 self.title("台北市行政區") topFrame = tk.Frame(self,bd=2,relief=tk.GROOVE,padx=20,pady=10) buttonFont = Font(family='Helvetica', size=20) for index, area in enumerate(areas): if index % 6 == 0: parentframe = tk.Frame(topFrame) parentframe.pack() btn = tk.Button(parentframe, text=area, font=buttonFont, padx=5, pady=5) btn.bind('<Button-1>', self.userClick) btn.pack(side=tk.LEFT, padx=5) topFrame.pack(padx=20, pady=30) #建立下方radioButton的介面 self.fixedWidthFrame = tk.Frame(self,height=600,bg='red') self.createdRadioButtonFrame() self.fixedWidthFrame.pack(padx=20) #建立message介面 messageDisplayFrame = tk.Frame(self,bd=2,relief=tk.GROOVE,padx=20,pady=10) self.mdayLabel = tk.Label(messageDisplayFrame, text="記錄時間:") self.mdayLabel.pack(anchor=tk.W) self.snaLabel = tk.Label(messageDisplayFrame,text="站名:") self.snaLabel.pack(anchor=tk.W) self.arLabel = tk.Label(messageDisplayFrame,text="地址:") self.arLabel.pack(anchor=tk.W) self.bempLabel = tk.Label(messageDisplayFrame, text="空位數量:") self.bempLabel.pack(anchor=tk.W) self.sbiLabel = tk.Label(messageDisplayFrame, text="可借車數:") self.sbiLabel.pack(anchor=tk.W) self.totLabel = tk.Label(messageDisplayFrame, text="總車數:") self.totLabel.pack(anchor=tk.W) messageDisplayFrame.pack(expand=True,fill=tk.BOTH,padx=20,pady=30) def userClick(self,event): self.bottomFrame.destroy() selectedArea = event.widget['text'] urlString = "https://flask-robert.herokuapp.com/youbike/%s" % selectedArea res = requests.get(urlString) jsonobj = res.json() self.areas = jsonobj['data'] snaList = [] for area in self.areas: snaList.append(area["sna"]) self.createdRadioButtonFrame(data=snaList) def createdRadioButtonFrame(self,data=None): self.bottomFrame = tk.Frame(self.fixedWidthFrame, bd=2, relief=tk.GROOVE, padx=20, pady=10) if data == None: urlString = "https://flask-robert.herokuapp.com/youbike/南港區" res = requests.get(urlString) jsonobj = res.json() self.areas = jsonobj['data'] snaList = [] for area in self.areas: snaList.append(area["sna"]) self.radioButtonData = snaList else: self.radioButtonData = data self.var = tk.IntVar() for index, data in enumerate(self.radioButtonData): if index % 10 == 0: parentframe = tk.Frame(self.bottomFrame) parentframe.pack(side=tk.LEFT,expand=True,fill=tk.Y) radioButton = tk.Radiobutton(parentframe, text=data, value=index, variable=self.var,command=self.userChoicedRadioButton).pack(anchor=tk.W) self.bottomFrame.pack() self.var.set(0) def userChoicedRadioButton(self): index = self.var.get() infomation = self.areas[index] print(infomation) datetimeString = infomation["mday"] datetimeFormat = "%Y%m%d%H%M%S" structTime = strptime(datetimeString,datetimeFormat) self.mdayLabel["text"] = "記錄時間:%d年%d月%d日 %d:%d:%d" % (structTime.tm_year,structTime.tm_mon,structTime.tm_mday,structTime.tm_hour,structTime.tm_min,structTime.tm_sec) self.snaLabel["text"] = "站名:%s" % infomation["sna"] self.arLabel.configure(text="地址:{0:s}".format(infomation["ar"])) self.bempLabel["text"] = "空位數量:{0:d}".format(infomation["bemp"]) self.sbiLabel["text"] = "可借車數:{0:d}".format(infomation["sbi"]) self.totLabel["text"] = "總車數:{0:d}".format(infomation["tot"]) if __name__ == "__main__": window = Window() window.mainloop()
[ 4, 5, 6, 7, 8 ]
1,769
6e78dee46276f738197ba6796fe1a027ab743354
<mask token>
<mask token> def run(_): parser = common.get_argument_parser() parser.add_argument('--step', help='volume step', type=int, default=5) parsed_args = parser.parse_args() sonos = common.get_sonos(parsed_args) step = parsed_args.step current_volume = sonos.volume new_volume = current_volume + step new_volume = round_nearest(new_volume, step) new_volume = min(common.max_volume, new_volume) new_volume = max(common.min_volume, new_volume) sonos.volume = new_volume if new_volume != current_volume: common.send_notification( f'Changed volume from {current_volume} to {new_volume}', common .get_icon(new_volume), common.process_volume) elif new_volume == common.max_volume: common.send_notification('Volume is already at maximum', common. get_icon(new_volume), common.process_volume) else: common.send_notification('Volume is already at minimum', common. get_icon(new_volume), common.process_volume)
from sonosscripts import common from sonosscripts.common import round_nearest def run(_): parser = common.get_argument_parser() parser.add_argument('--step', help='volume step', type=int, default=5) parsed_args = parser.parse_args() sonos = common.get_sonos(parsed_args) step = parsed_args.step current_volume = sonos.volume new_volume = current_volume + step new_volume = round_nearest(new_volume, step) new_volume = min(common.max_volume, new_volume) new_volume = max(common.min_volume, new_volume) sonos.volume = new_volume if new_volume != current_volume: common.send_notification( f'Changed volume from {current_volume} to {new_volume}', common .get_icon(new_volume), common.process_volume) elif new_volume == common.max_volume: common.send_notification('Volume is already at maximum', common. get_icon(new_volume), common.process_volume) else: common.send_notification('Volume is already at minimum', common. get_icon(new_volume), common.process_volume)
from sonosscripts import common from sonosscripts.common import round_nearest def run(_): parser = common.get_argument_parser() parser.add_argument("--step", help="volume step", type=int, default=5) parsed_args = parser.parse_args() sonos = common.get_sonos(parsed_args) step = parsed_args.step current_volume = sonos.volume new_volume = current_volume + step new_volume = round_nearest(new_volume, step) new_volume = min(common.max_volume, new_volume) new_volume = max(common.min_volume, new_volume) sonos.volume = new_volume if new_volume != current_volume: common.send_notification(f"Changed volume from {current_volume} to {new_volume}", common.get_icon(new_volume), common.process_volume) else: if new_volume == common.max_volume: common.send_notification("Volume is already at maximum", common.get_icon(new_volume), common.process_volume) else: common.send_notification("Volume is already at minimum", common.get_icon(new_volume), common.process_volume)
null
[ 0, 1, 2, 3 ]
1,770
389ccddcbe2214ae5c012bc82a404a81942792d8
<mask token> class LayerBase(object): def __init__(self, units_count, activation_func): self.current_layer_dim = units_count self.activation_func = activation_func self.weights = None self.bias = None self.pre_activation = None self.activation_layer = None self.activation = None self.d_weights = None self.d_bias = None self.d_activation = None def __if_params_not_initialized(self): return self.weights is None or self.bias is None <mask token> def __forward_linear(self): if self.__if_params_not_initialized(): self.__init_parameters(self.activation.shape[0]) self.pre_activation = self.weights.dot(self.activation) + self.bias <mask token> <mask token> <mask token> <mask token> <mask token>
<mask token> class LayerBase(object): def __init__(self, units_count, activation_func): self.current_layer_dim = units_count self.activation_func = activation_func self.weights = None self.bias = None self.pre_activation = None self.activation_layer = None self.activation = None self.d_weights = None self.d_bias = None self.d_activation = None def __if_params_not_initialized(self): return self.weights is None or self.bias is None <mask token> def __forward_linear(self): if self.__if_params_not_initialized(): self.__init_parameters(self.activation.shape[0]) self.pre_activation = self.weights.dot(self.activation) + self.bias def forward(self, activation): self.activation = activation self.__forward_linear() self.activation_layer = self.activation_func.forward(self. pre_activation) return self.activation_layer <mask token> def backward(self, dA): dZ = self.activation_func.backward(self.pre_activation, dA) self.__backward_linear(dZ) return self.d_activation def get_parameters_slope(self): return self.d_weights, self.d_bias <mask token>
<mask token> class LayerBase(object): def __init__(self, units_count, activation_func): self.current_layer_dim = units_count self.activation_func = activation_func self.weights = None self.bias = None self.pre_activation = None self.activation_layer = None self.activation = None self.d_weights = None self.d_bias = None self.d_activation = None def __if_params_not_initialized(self): return self.weights is None or self.bias is None def __init_parameters(self, size_of_previous_layer): self.weights = np.random.randn(self.current_layer_dim, size_of_previous_layer) * np.sqrt(2.0 / size_of_previous_layer) self.bias = np.zeros((self.current_layer_dim, 1)) def __forward_linear(self): if self.__if_params_not_initialized(): self.__init_parameters(self.activation.shape[0]) self.pre_activation = self.weights.dot(self.activation) + self.bias def forward(self, activation): self.activation = activation self.__forward_linear() self.activation_layer = self.activation_func.forward(self. pre_activation) return self.activation_layer def __backward_linear(self, d_pre_activation): m = self.activation.shape[1] self.d_weights = 1.0 / m * np.dot(d_pre_activation, self.activation.T) self.d_bias = 1.0 / m * np.sum(d_pre_activation, axis=1, keepdims=True) self.d_activation = np.dot(self.weights.T, d_pre_activation) def backward(self, dA): dZ = self.activation_func.backward(self.pre_activation, dA) self.__backward_linear(dZ) return self.d_activation def get_parameters_slope(self): return self.d_weights, self.d_bias <mask token>
<mask token> class LayerBase(object): def __init__(self, units_count, activation_func): self.current_layer_dim = units_count self.activation_func = activation_func self.weights = None self.bias = None self.pre_activation = None self.activation_layer = None self.activation = None self.d_weights = None self.d_bias = None self.d_activation = None def __if_params_not_initialized(self): return self.weights is None or self.bias is None def __init_parameters(self, size_of_previous_layer): self.weights = np.random.randn(self.current_layer_dim, size_of_previous_layer) * np.sqrt(2.0 / size_of_previous_layer) self.bias = np.zeros((self.current_layer_dim, 1)) def __forward_linear(self): if self.__if_params_not_initialized(): self.__init_parameters(self.activation.shape[0]) self.pre_activation = self.weights.dot(self.activation) + self.bias def forward(self, activation): self.activation = activation self.__forward_linear() self.activation_layer = self.activation_func.forward(self. pre_activation) return self.activation_layer def __backward_linear(self, d_pre_activation): m = self.activation.shape[1] self.d_weights = 1.0 / m * np.dot(d_pre_activation, self.activation.T) self.d_bias = 1.0 / m * np.sum(d_pre_activation, axis=1, keepdims=True) self.d_activation = np.dot(self.weights.T, d_pre_activation) def backward(self, dA): dZ = self.activation_func.backward(self.pre_activation, dA) self.__backward_linear(dZ) return self.d_activation def get_parameters_slope(self): return self.d_weights, self.d_bias def update_parameters(self, delta_weights, delta_bias): self.weights -= delta_weights self.bias -= delta_bias
import numpy as np class LayerBase(object): def __init__(self, units_count, activation_func): self.current_layer_dim = units_count self.activation_func = activation_func self.weights = None self.bias = None self.pre_activation = None self.activation_layer = None self.activation = None self.d_weights = None self.d_bias = None self.d_activation = None def __if_params_not_initialized(self): return (self.weights is None) or (self.bias is None) def __init_parameters(self, size_of_previous_layer): self.weights = np.random.randn(self.current_layer_dim, size_of_previous_layer) \ * np.sqrt(2. / size_of_previous_layer) self.bias = np.zeros((self.current_layer_dim, 1)) def __forward_linear(self): if self.__if_params_not_initialized(): self.__init_parameters(self.activation.shape[0]) self.pre_activation = self.weights.dot(self.activation) + self.bias def forward(self, activation): self.activation = activation self.__forward_linear() self.activation_layer = self.activation_func.forward(self.pre_activation) return self.activation_layer def __backward_linear(self, d_pre_activation): m = self.activation.shape[1] self.d_weights = 1. / m * np.dot(d_pre_activation, self.activation.T) self.d_bias = 1. / m * np.sum(d_pre_activation, axis=1, keepdims=True) self.d_activation = np.dot(self.weights.T, d_pre_activation) def backward(self, dA): dZ = self.activation_func.backward(self.pre_activation, dA) self.__backward_linear(dZ) return self.d_activation def get_parameters_slope(self): return self.d_weights, self.d_bias def update_parameters(self, delta_weights, delta_bias): self.weights -= delta_weights self.bias -= delta_bias
[ 4, 7, 9, 10, 12 ]
1,771
47a5ddcea2f6d8ce80793192d26c98ccc0e0340d
<mask token>
<mask token> class StoryForm(ModelForm): class Meta: model = NewsStory fields = ['title', 'pub_date', 'content'] widgets = {'pub_date': forms.DateInput(format='%m/%d/%Y', attrs={ 'class': 'form-control', 'placeholder': 'select a date', 'type': 'date'})}
from django import forms from django.forms import ModelForm, fields, widgets from .models import NewsStory class StoryForm(ModelForm): class Meta: model = NewsStory fields = ['title', 'pub_date', 'content'] widgets = {'pub_date': forms.DateInput(format='%m/%d/%Y', attrs={ 'class': 'form-control', 'placeholder': 'select a date', 'type': 'date'})}
from django import forms from django.forms import ModelForm, fields, widgets from .models import NewsStory class StoryForm(ModelForm): class Meta: model = NewsStory fields = ['title' , 'pub_date' , 'content'] widgets = { 'pub_date': forms.DateInput(format=('%m/%d/%Y'), attrs={'class':'form-control', 'placeholder':'select a date', 'type':'date'}), }
null
[ 0, 1, 2, 3 ]
1,772
1a46752a2d1c72ec6084e7af3694a3969e2d1b4c
<mask token> def estacionamiento_reserva(request, _id): _id = int(_id) try: estacionamiento = Estacionamiento.objects.get(id=_id) except ObjectDoesNotExist: raise Http404 if estacionamiento.apertura is None: return HttpResponse(status=403) if request.method == 'GET': form = ReservaForm() elif request.method == 'POST': form = ReservaForm(request.POST) if form.is_valid(): inicioReserva = form.cleaned_data['inicio'] finalReserva = form.cleaned_data['final'] m_validado = validarHorarioReserva(inicioReserva, finalReserva, estacionamiento.apertura, estacionamiento.cierre) if not m_validado[0]: return render(request, 'template-mensaje.html', {'color': 'red', 'mensaje': m_validado[1]}) if marzullo(_id, inicioReserva, finalReserva): reservaFinal = Reserva(estacionamiento=estacionamiento, inicioReserva=inicioReserva, finalReserva=finalReserva) monto = Decimal(estacionamiento.tarifa.calcularPrecio( inicioReserva, finalReserva)) request.session['monto'] = float(estacionamiento.tarifa. calcularPrecio(inicioReserva, finalReserva)) request.session['finalReservaHora'] = finalReserva.hour request.session['finalReservaMinuto'] = finalReserva.minute request.session['inicioReservaHora'] = inicioReserva.hour request.session['inicioReservaMinuto'] = inicioReserva.minute request.session['anioinicial'] = inicioReserva.year request.session['mesinicial'] = inicioReserva.month request.session['diainicial'] = inicioReserva.day request.session['aniofinal'] = finalReserva.year request.session['mesfinal'] = finalReserva.month request.session['diafinal'] = finalReserva.day return render(request, 'confirmar.html', {'id': _id, 'monto': monto, 'reserva': reservaFinal, 'color': 'green', 'mensaje': 'Existe un puesto disponible'}) else: return render(request, 'template-mensaje.html', {'color': 'red', 'mensaje': 'No hay un puesto disponible para ese horario'}) return render(request, 'reserva.html', {'form': form, 'estacionamiento': estacionamiento}) def estacionamiento_pago(request, _id): form = PagoForm() try: estacionamiento = Estacionamiento.objects.get(id=_id) except ObjectDoesNotExist: raise Http404 if estacionamiento.apertura is None: return HttpResponse(status=403) if request.method == 'POST': form = PagoForm(request.POST) if form.is_valid(): inicioReserva = datetime(year=request.session['anioinicial'], month=request.session['mesinicial'], day=request.session[ 'diainicial'], hour=request.session['inicioReservaHora'], minute=request.session['inicioReservaMinuto']) finalReserva = datetime(year=request.session['aniofinal'], month=request.session['mesfinal'], day=request.session[ 'diafinal'], hour=request.session['finalReservaHora'], minute=request.session['finalReservaMinuto']) reservaFinal = Reserva(estacionamiento=estacionamiento, inicioReserva=inicioReserva, finalReserva=finalReserva) reservaFinal.save() monto = Decimal(request.session['monto']).quantize(Decimal('1.00')) pago = Pago(fechaTransaccion=datetime.now(), cedula=form. cleaned_data['cedula'], cedulaTipo=form.cleaned_data[ 'cedulaTipo'], monto=monto, tarjetaTipo=form.cleaned_data[ 'tarjetaTipo'], reserva=reservaFinal) pago.save() return render(request, 'pago.html', {'id': _id, 'pago': pago, 'color': 'green', 'mensaje': 'Se realizo el pago de reserva satisfactoriamente.'}) return render(request, 'pago.html', {'form': form}) def estacionamiento_ingreso(request): form = RifForm() if request.method == 'POST': form = RifForm(request.POST) if form.is_valid(): rif = form.cleaned_data['rif'] listaIngresos, ingresoTotal = consultar_ingresos(rif) return render(request, 'consultar-ingreso.html', { 'ingresoTotal': ingresoTotal, 'listaIngresos': listaIngresos, 'form': form}) return render(request, 'consultar-ingreso.html', {'form': form}) def estacionamiento_consulta_reserva(request): form = CedulaForm() if request.method == 'POST': form = CedulaForm(request.POST) if form.is_valid(): cedula = form.cleaned_data['cedula'] facturas = Pago.objects.filter(cedula=cedula) listaFacturas = [] listaFacturas = sorted(list(facturas), key=lambda r: r.reserva. inicioReserva) return render(request, 'consultar-reservas.html', { 'listaFacturas': listaFacturas, 'form': form}) return render(request, 'consultar-reservas.html', {'form': form}) def receive_sms(request): ip = get_client_ip(request) port = '8000' phone = request.GET.get('phone', False) sms = request.GET.get('text', False) if not sms or not phone: return HttpResponse(status=400) phone = urllib.parse.quote(str(phone)) try: sms = sms.split(' ') id_sms = int(sms[0]) inicio_reserva = sms[1] + ' ' + sms[2] final_reserva = sms[3] + ' ' + sms[4] inicio_reserva = parse_datetime(inicio_reserva) final_reserva = parse_datetime(final_reserva) except: return HttpResponse(status=400) try: estacionamiento = Estacionamiento.objects.get(id=id_sms) except ObjectDoesNotExist: text = 'No existe el estacionamiento ' + str(id_sms) + '.' text = urllib.parse.quote(str(text)) urllib.request.urlopen( 'http://{0}:{1}/sendsms?phone={2}&text={3}&password='.format(ip, port, phone, text)) return HttpResponse('No existe el estacionamiento ' + str(id_sms) + '.' ) m_validado = validarHorarioReserva(inicio_reserva, final_reserva, estacionamiento.apertura, estacionamiento.cierre) if m_validado[0]: """reserva_sms = Reserva( estacionamiento = estacionamiento, inicioReserva = inicio_reserva, finalReserva = final_reserva, ) reserva_sms.save()""" text = 'Se realizó la reserva satisfactoriamente.' text = urllib.parse.quote(str(text)) urllib.request.urlopen( 'http://{0}:{1}/sendsms?phone={2}&text={3}&password='.format(ip, port, phone, text)) else: text = m_validado[1] text = urllib.parse.quote(str(text)) urllib.request.urlopen( 'http://{0}:{1}/sendsms?phone={2}&text={3}&password='.format(ip, port, phone, text)) return HttpResponse(m_validado[1]) return HttpResponse('') <mask token>
<mask token> def estacionamientos_all(request): estacionamientos = Estacionamiento.objects.all() if request.method == 'GET': form = EstacionamientoForm() elif request.method == 'POST': form = EstacionamientoForm(request.POST) if len(estacionamientos) >= 5: return render(request, 'template-mensaje.html', {'color': 'red', 'mensaje': 'No se pueden agregar más estacionamientos'}) if form.is_valid(): obj = Estacionamiento(propietario=form.cleaned_data[ 'propietario'], nombre=form.cleaned_data['nombre'], direccion=form.cleaned_data['direccion'], rif=form. cleaned_data['rif'], telefono1=form.cleaned_data[ 'telefono_1'], telefono2=form.cleaned_data['telefono_2'], telefono3=form.cleaned_data['telefono_3'], email1=form. cleaned_data['email_1'], email2=form.cleaned_data['email_2']) obj.save() estacionamientos = Estacionamiento.objects.all() form = EstacionamientoForm() return render(request, 'catalogo-estacionamientos.html', {'form': form, 'estacionamientos': estacionamientos}) <mask token> def estacionamiento_reserva(request, _id): _id = int(_id) try: estacionamiento = Estacionamiento.objects.get(id=_id) except ObjectDoesNotExist: raise Http404 if estacionamiento.apertura is None: return HttpResponse(status=403) if request.method == 'GET': form = ReservaForm() elif request.method == 'POST': form = ReservaForm(request.POST) if form.is_valid(): inicioReserva = form.cleaned_data['inicio'] finalReserva = form.cleaned_data['final'] m_validado = validarHorarioReserva(inicioReserva, finalReserva, estacionamiento.apertura, estacionamiento.cierre) if not m_validado[0]: return render(request, 'template-mensaje.html', {'color': 'red', 'mensaje': m_validado[1]}) if marzullo(_id, inicioReserva, finalReserva): reservaFinal = Reserva(estacionamiento=estacionamiento, inicioReserva=inicioReserva, finalReserva=finalReserva) monto = Decimal(estacionamiento.tarifa.calcularPrecio( inicioReserva, finalReserva)) request.session['monto'] = float(estacionamiento.tarifa. calcularPrecio(inicioReserva, finalReserva)) request.session['finalReservaHora'] = finalReserva.hour request.session['finalReservaMinuto'] = finalReserva.minute request.session['inicioReservaHora'] = inicioReserva.hour request.session['inicioReservaMinuto'] = inicioReserva.minute request.session['anioinicial'] = inicioReserva.year request.session['mesinicial'] = inicioReserva.month request.session['diainicial'] = inicioReserva.day request.session['aniofinal'] = finalReserva.year request.session['mesfinal'] = finalReserva.month request.session['diafinal'] = finalReserva.day return render(request, 'confirmar.html', {'id': _id, 'monto': monto, 'reserva': reservaFinal, 'color': 'green', 'mensaje': 'Existe un puesto disponible'}) else: return render(request, 'template-mensaje.html', {'color': 'red', 'mensaje': 'No hay un puesto disponible para ese horario'}) return render(request, 'reserva.html', {'form': form, 'estacionamiento': estacionamiento}) def estacionamiento_pago(request, _id): form = PagoForm() try: estacionamiento = Estacionamiento.objects.get(id=_id) except ObjectDoesNotExist: raise Http404 if estacionamiento.apertura is None: return HttpResponse(status=403) if request.method == 'POST': form = PagoForm(request.POST) if form.is_valid(): inicioReserva = datetime(year=request.session['anioinicial'], month=request.session['mesinicial'], day=request.session[ 'diainicial'], hour=request.session['inicioReservaHora'], minute=request.session['inicioReservaMinuto']) finalReserva = datetime(year=request.session['aniofinal'], month=request.session['mesfinal'], day=request.session[ 'diafinal'], hour=request.session['finalReservaHora'], minute=request.session['finalReservaMinuto']) reservaFinal = Reserva(estacionamiento=estacionamiento, inicioReserva=inicioReserva, finalReserva=finalReserva) reservaFinal.save() monto = Decimal(request.session['monto']).quantize(Decimal('1.00')) pago = Pago(fechaTransaccion=datetime.now(), cedula=form. cleaned_data['cedula'], cedulaTipo=form.cleaned_data[ 'cedulaTipo'], monto=monto, tarjetaTipo=form.cleaned_data[ 'tarjetaTipo'], reserva=reservaFinal) pago.save() return render(request, 'pago.html', {'id': _id, 'pago': pago, 'color': 'green', 'mensaje': 'Se realizo el pago de reserva satisfactoriamente.'}) return render(request, 'pago.html', {'form': form}) def estacionamiento_ingreso(request): form = RifForm() if request.method == 'POST': form = RifForm(request.POST) if form.is_valid(): rif = form.cleaned_data['rif'] listaIngresos, ingresoTotal = consultar_ingresos(rif) return render(request, 'consultar-ingreso.html', { 'ingresoTotal': ingresoTotal, 'listaIngresos': listaIngresos, 'form': form}) return render(request, 'consultar-ingreso.html', {'form': form}) def estacionamiento_consulta_reserva(request): form = CedulaForm() if request.method == 'POST': form = CedulaForm(request.POST) if form.is_valid(): cedula = form.cleaned_data['cedula'] facturas = Pago.objects.filter(cedula=cedula) listaFacturas = [] listaFacturas = sorted(list(facturas), key=lambda r: r.reserva. inicioReserva) return render(request, 'consultar-reservas.html', { 'listaFacturas': listaFacturas, 'form': form}) return render(request, 'consultar-reservas.html', {'form': form}) def receive_sms(request): ip = get_client_ip(request) port = '8000' phone = request.GET.get('phone', False) sms = request.GET.get('text', False) if not sms or not phone: return HttpResponse(status=400) phone = urllib.parse.quote(str(phone)) try: sms = sms.split(' ') id_sms = int(sms[0]) inicio_reserva = sms[1] + ' ' + sms[2] final_reserva = sms[3] + ' ' + sms[4] inicio_reserva = parse_datetime(inicio_reserva) final_reserva = parse_datetime(final_reserva) except: return HttpResponse(status=400) try: estacionamiento = Estacionamiento.objects.get(id=id_sms) except ObjectDoesNotExist: text = 'No existe el estacionamiento ' + str(id_sms) + '.' text = urllib.parse.quote(str(text)) urllib.request.urlopen( 'http://{0}:{1}/sendsms?phone={2}&text={3}&password='.format(ip, port, phone, text)) return HttpResponse('No existe el estacionamiento ' + str(id_sms) + '.' ) m_validado = validarHorarioReserva(inicio_reserva, final_reserva, estacionamiento.apertura, estacionamiento.cierre) if m_validado[0]: """reserva_sms = Reserva( estacionamiento = estacionamiento, inicioReserva = inicio_reserva, finalReserva = final_reserva, ) reserva_sms.save()""" text = 'Se realizó la reserva satisfactoriamente.' text = urllib.parse.quote(str(text)) urllib.request.urlopen( 'http://{0}:{1}/sendsms?phone={2}&text={3}&password='.format(ip, port, phone, text)) else: text = m_validado[1] text = urllib.parse.quote(str(text)) urllib.request.urlopen( 'http://{0}:{1}/sendsms?phone={2}&text={3}&password='.format(ip, port, phone, text)) return HttpResponse(m_validado[1]) return HttpResponse('') <mask token> def grafica_tasa_de_reservacion(request): try: datos_ocupacion = request.GET.dict() datos_ocupacion = OrderedDict(sorted((k, float(v)) for k, v in datos_ocupacion.items())) response = HttpResponse(content_type='image/png') except: return HttpResponse(status=400) if not datos_ocupacion: return HttpResponse(status=400) pyplot.switch_backend('Agg') pyplot.bar(range(len(datos_ocupacion)), datos_ocupacion.values(), hold= False, color='#6495ed') pyplot.ylim([0, 100]) pyplot.title('Distribución de los porcentajes por fecha') pyplot.xticks(range(len(datos_ocupacion)), list(datos_ocupacion.keys()), rotation=20) pyplot.ylabel('Porcentaje (%)') pyplot.grid(True, 'major', 'both') pyplot.savefig(response, format='png') pyplot.close() return response
<mask token> def estacionamientos_all(request): estacionamientos = Estacionamiento.objects.all() if request.method == 'GET': form = EstacionamientoForm() elif request.method == 'POST': form = EstacionamientoForm(request.POST) if len(estacionamientos) >= 5: return render(request, 'template-mensaje.html', {'color': 'red', 'mensaje': 'No se pueden agregar más estacionamientos'}) if form.is_valid(): obj = Estacionamiento(propietario=form.cleaned_data[ 'propietario'], nombre=form.cleaned_data['nombre'], direccion=form.cleaned_data['direccion'], rif=form. cleaned_data['rif'], telefono1=form.cleaned_data[ 'telefono_1'], telefono2=form.cleaned_data['telefono_2'], telefono3=form.cleaned_data['telefono_3'], email1=form. cleaned_data['email_1'], email2=form.cleaned_data['email_2']) obj.save() estacionamientos = Estacionamiento.objects.all() form = EstacionamientoForm() return render(request, 'catalogo-estacionamientos.html', {'form': form, 'estacionamientos': estacionamientos}) def estacionamiento_detail(request, _id): _id = int(_id) try: estacionamiento = Estacionamiento.objects.get(id=_id) except ObjectDoesNotExist: raise Http404 if request.method == 'GET': if estacionamiento.tarifa: form_data = {'horarioin': estacionamiento.apertura, 'horarioout': estacionamiento.cierre, 'tarifa': estacionamiento.tarifa.tarifa, 'tarifa2': estacionamiento. tarifa.tarifa2, 'inicioTarifa2': estacionamiento.tarifa. inicioEspecial, 'finTarifa2': estacionamiento.tarifa. finEspecial, 'puestos': estacionamiento.capacidad, 'esquema': estacionamiento.tarifa.__class__.__name__} form = EstacionamientoExtendedForm(data=form_data) else: form = EstacionamientoExtendedForm() elif request.method == 'POST': form = EstacionamientoExtendedForm(request.POST) if form.is_valid(): horaIn = form.cleaned_data['horarioin'] horaOut = form.cleaned_data['horarioout'] tarifa = form.cleaned_data['tarifa'] tipo = form.cleaned_data['esquema'] inicioTarifa2 = form.cleaned_data['inicioTarifa2'] finTarifa2 = form.cleaned_data['finTarifa2'] tarifa2 = form.cleaned_data['tarifa2'] esquemaTarifa = eval(tipo)(tarifa=tarifa, tarifa2=tarifa2, inicioEspecial=inicioTarifa2, finEspecial=finTarifa2) esquemaTarifa.save() if not HorarioEstacionamiento(horaIn, horaOut): return render(request, 'template-mensaje.html', {'color': 'red', 'mensaje': 'El horario de apertura debe ser menor al horario de cierre' }) estacionamiento.tarifa = esquemaTarifa estacionamiento.apertura = horaIn estacionamiento.cierre = horaOut estacionamiento.capacidad = form.cleaned_data['puestos'] estacionamiento.save() form = EstacionamientoExtendedForm() return render(request, 'detalle-estacionamiento.html', {'form': form, 'estacionamiento': estacionamiento}) def estacionamiento_reserva(request, _id): _id = int(_id) try: estacionamiento = Estacionamiento.objects.get(id=_id) except ObjectDoesNotExist: raise Http404 if estacionamiento.apertura is None: return HttpResponse(status=403) if request.method == 'GET': form = ReservaForm() elif request.method == 'POST': form = ReservaForm(request.POST) if form.is_valid(): inicioReserva = form.cleaned_data['inicio'] finalReserva = form.cleaned_data['final'] m_validado = validarHorarioReserva(inicioReserva, finalReserva, estacionamiento.apertura, estacionamiento.cierre) if not m_validado[0]: return render(request, 'template-mensaje.html', {'color': 'red', 'mensaje': m_validado[1]}) if marzullo(_id, inicioReserva, finalReserva): reservaFinal = Reserva(estacionamiento=estacionamiento, inicioReserva=inicioReserva, finalReserva=finalReserva) monto = Decimal(estacionamiento.tarifa.calcularPrecio( inicioReserva, finalReserva)) request.session['monto'] = float(estacionamiento.tarifa. calcularPrecio(inicioReserva, finalReserva)) request.session['finalReservaHora'] = finalReserva.hour request.session['finalReservaMinuto'] = finalReserva.minute request.session['inicioReservaHora'] = inicioReserva.hour request.session['inicioReservaMinuto'] = inicioReserva.minute request.session['anioinicial'] = inicioReserva.year request.session['mesinicial'] = inicioReserva.month request.session['diainicial'] = inicioReserva.day request.session['aniofinal'] = finalReserva.year request.session['mesfinal'] = finalReserva.month request.session['diafinal'] = finalReserva.day return render(request, 'confirmar.html', {'id': _id, 'monto': monto, 'reserva': reservaFinal, 'color': 'green', 'mensaje': 'Existe un puesto disponible'}) else: return render(request, 'template-mensaje.html', {'color': 'red', 'mensaje': 'No hay un puesto disponible para ese horario'}) return render(request, 'reserva.html', {'form': form, 'estacionamiento': estacionamiento}) def estacionamiento_pago(request, _id): form = PagoForm() try: estacionamiento = Estacionamiento.objects.get(id=_id) except ObjectDoesNotExist: raise Http404 if estacionamiento.apertura is None: return HttpResponse(status=403) if request.method == 'POST': form = PagoForm(request.POST) if form.is_valid(): inicioReserva = datetime(year=request.session['anioinicial'], month=request.session['mesinicial'], day=request.session[ 'diainicial'], hour=request.session['inicioReservaHora'], minute=request.session['inicioReservaMinuto']) finalReserva = datetime(year=request.session['aniofinal'], month=request.session['mesfinal'], day=request.session[ 'diafinal'], hour=request.session['finalReservaHora'], minute=request.session['finalReservaMinuto']) reservaFinal = Reserva(estacionamiento=estacionamiento, inicioReserva=inicioReserva, finalReserva=finalReserva) reservaFinal.save() monto = Decimal(request.session['monto']).quantize(Decimal('1.00')) pago = Pago(fechaTransaccion=datetime.now(), cedula=form. cleaned_data['cedula'], cedulaTipo=form.cleaned_data[ 'cedulaTipo'], monto=monto, tarjetaTipo=form.cleaned_data[ 'tarjetaTipo'], reserva=reservaFinal) pago.save() return render(request, 'pago.html', {'id': _id, 'pago': pago, 'color': 'green', 'mensaje': 'Se realizo el pago de reserva satisfactoriamente.'}) return render(request, 'pago.html', {'form': form}) def estacionamiento_ingreso(request): form = RifForm() if request.method == 'POST': form = RifForm(request.POST) if form.is_valid(): rif = form.cleaned_data['rif'] listaIngresos, ingresoTotal = consultar_ingresos(rif) return render(request, 'consultar-ingreso.html', { 'ingresoTotal': ingresoTotal, 'listaIngresos': listaIngresos, 'form': form}) return render(request, 'consultar-ingreso.html', {'form': form}) def estacionamiento_consulta_reserva(request): form = CedulaForm() if request.method == 'POST': form = CedulaForm(request.POST) if form.is_valid(): cedula = form.cleaned_data['cedula'] facturas = Pago.objects.filter(cedula=cedula) listaFacturas = [] listaFacturas = sorted(list(facturas), key=lambda r: r.reserva. inicioReserva) return render(request, 'consultar-reservas.html', { 'listaFacturas': listaFacturas, 'form': form}) return render(request, 'consultar-reservas.html', {'form': form}) def receive_sms(request): ip = get_client_ip(request) port = '8000' phone = request.GET.get('phone', False) sms = request.GET.get('text', False) if not sms or not phone: return HttpResponse(status=400) phone = urllib.parse.quote(str(phone)) try: sms = sms.split(' ') id_sms = int(sms[0]) inicio_reserva = sms[1] + ' ' + sms[2] final_reserva = sms[3] + ' ' + sms[4] inicio_reserva = parse_datetime(inicio_reserva) final_reserva = parse_datetime(final_reserva) except: return HttpResponse(status=400) try: estacionamiento = Estacionamiento.objects.get(id=id_sms) except ObjectDoesNotExist: text = 'No existe el estacionamiento ' + str(id_sms) + '.' text = urllib.parse.quote(str(text)) urllib.request.urlopen( 'http://{0}:{1}/sendsms?phone={2}&text={3}&password='.format(ip, port, phone, text)) return HttpResponse('No existe el estacionamiento ' + str(id_sms) + '.' ) m_validado = validarHorarioReserva(inicio_reserva, final_reserva, estacionamiento.apertura, estacionamiento.cierre) if m_validado[0]: """reserva_sms = Reserva( estacionamiento = estacionamiento, inicioReserva = inicio_reserva, finalReserva = final_reserva, ) reserva_sms.save()""" text = 'Se realizó la reserva satisfactoriamente.' text = urllib.parse.quote(str(text)) urllib.request.urlopen( 'http://{0}:{1}/sendsms?phone={2}&text={3}&password='.format(ip, port, phone, text)) else: text = m_validado[1] text = urllib.parse.quote(str(text)) urllib.request.urlopen( 'http://{0}:{1}/sendsms?phone={2}&text={3}&password='.format(ip, port, phone, text)) return HttpResponse(m_validado[1]) return HttpResponse('') def tasa_de_reservacion(request, _id): _id = int(_id) try: estacionamiento = Estacionamiento.objects.get(id=_id) except ObjectDoesNotExist: raise Http404 if estacionamiento.apertura is None: return render(request, 'template-mensaje.html', {'color': 'red', 'mensaje': 'Se debe parametrizar el estacionamiento primero.'}) ocupacion = tasa_reservaciones(_id) calcular_porcentaje_de_tasa(estacionamiento.apertura, estacionamiento. cierre, estacionamiento.capacidad, ocupacion) datos_ocupacion = urlencode(ocupacion) return render(request, 'tasa-reservacion.html', {'ocupacion': ocupacion, 'datos_ocupacion': datos_ocupacion}) def grafica_tasa_de_reservacion(request): try: datos_ocupacion = request.GET.dict() datos_ocupacion = OrderedDict(sorted((k, float(v)) for k, v in datos_ocupacion.items())) response = HttpResponse(content_type='image/png') except: return HttpResponse(status=400) if not datos_ocupacion: return HttpResponse(status=400) pyplot.switch_backend('Agg') pyplot.bar(range(len(datos_ocupacion)), datos_ocupacion.values(), hold= False, color='#6495ed') pyplot.ylim([0, 100]) pyplot.title('Distribución de los porcentajes por fecha') pyplot.xticks(range(len(datos_ocupacion)), list(datos_ocupacion.keys()), rotation=20) pyplot.ylabel('Porcentaje (%)') pyplot.grid(True, 'major', 'both') pyplot.savefig(response, format='png') pyplot.close() return response
from django.core.exceptions import ObjectDoesNotExist from django.shortcuts import render import urllib from django.http import HttpResponse, Http404 from django.utils.dateparse import parse_datetime from urllib.parse import urlencode from matplotlib import pyplot from decimal import Decimal from collections import OrderedDict from datetime import datetime from estacionamientos.controller import HorarioEstacionamiento, validarHorarioReserva, marzullo, get_client_ip, tasa_reservaciones, calcular_porcentaje_de_tasa, consultar_ingresos from estacionamientos.forms import EstacionamientoExtendedForm, EstacionamientoForm, ReservaForm, PagoForm, RifForm, CedulaForm from estacionamientos.models import Estacionamiento, Reserva, Pago, TarifaHora, TarifaMinuto, TarifaHorayFraccion, TarifaFinDeSemana, TarifaHoraPico def estacionamientos_all(request): estacionamientos = Estacionamiento.objects.all() if request.method == 'GET': form = EstacionamientoForm() elif request.method == 'POST': form = EstacionamientoForm(request.POST) if len(estacionamientos) >= 5: return render(request, 'template-mensaje.html', {'color': 'red', 'mensaje': 'No se pueden agregar más estacionamientos'}) if form.is_valid(): obj = Estacionamiento(propietario=form.cleaned_data[ 'propietario'], nombre=form.cleaned_data['nombre'], direccion=form.cleaned_data['direccion'], rif=form. cleaned_data['rif'], telefono1=form.cleaned_data[ 'telefono_1'], telefono2=form.cleaned_data['telefono_2'], telefono3=form.cleaned_data['telefono_3'], email1=form. cleaned_data['email_1'], email2=form.cleaned_data['email_2']) obj.save() estacionamientos = Estacionamiento.objects.all() form = EstacionamientoForm() return render(request, 'catalogo-estacionamientos.html', {'form': form, 'estacionamientos': estacionamientos}) def estacionamiento_detail(request, _id): _id = int(_id) try: estacionamiento = Estacionamiento.objects.get(id=_id) except ObjectDoesNotExist: raise Http404 if request.method == 'GET': if estacionamiento.tarifa: form_data = {'horarioin': estacionamiento.apertura, 'horarioout': estacionamiento.cierre, 'tarifa': estacionamiento.tarifa.tarifa, 'tarifa2': estacionamiento. tarifa.tarifa2, 'inicioTarifa2': estacionamiento.tarifa. inicioEspecial, 'finTarifa2': estacionamiento.tarifa. finEspecial, 'puestos': estacionamiento.capacidad, 'esquema': estacionamiento.tarifa.__class__.__name__} form = EstacionamientoExtendedForm(data=form_data) else: form = EstacionamientoExtendedForm() elif request.method == 'POST': form = EstacionamientoExtendedForm(request.POST) if form.is_valid(): horaIn = form.cleaned_data['horarioin'] horaOut = form.cleaned_data['horarioout'] tarifa = form.cleaned_data['tarifa'] tipo = form.cleaned_data['esquema'] inicioTarifa2 = form.cleaned_data['inicioTarifa2'] finTarifa2 = form.cleaned_data['finTarifa2'] tarifa2 = form.cleaned_data['tarifa2'] esquemaTarifa = eval(tipo)(tarifa=tarifa, tarifa2=tarifa2, inicioEspecial=inicioTarifa2, finEspecial=finTarifa2) esquemaTarifa.save() if not HorarioEstacionamiento(horaIn, horaOut): return render(request, 'template-mensaje.html', {'color': 'red', 'mensaje': 'El horario de apertura debe ser menor al horario de cierre' }) estacionamiento.tarifa = esquemaTarifa estacionamiento.apertura = horaIn estacionamiento.cierre = horaOut estacionamiento.capacidad = form.cleaned_data['puestos'] estacionamiento.save() form = EstacionamientoExtendedForm() return render(request, 'detalle-estacionamiento.html', {'form': form, 'estacionamiento': estacionamiento}) def estacionamiento_reserva(request, _id): _id = int(_id) try: estacionamiento = Estacionamiento.objects.get(id=_id) except ObjectDoesNotExist: raise Http404 if estacionamiento.apertura is None: return HttpResponse(status=403) if request.method == 'GET': form = ReservaForm() elif request.method == 'POST': form = ReservaForm(request.POST) if form.is_valid(): inicioReserva = form.cleaned_data['inicio'] finalReserva = form.cleaned_data['final'] m_validado = validarHorarioReserva(inicioReserva, finalReserva, estacionamiento.apertura, estacionamiento.cierre) if not m_validado[0]: return render(request, 'template-mensaje.html', {'color': 'red', 'mensaje': m_validado[1]}) if marzullo(_id, inicioReserva, finalReserva): reservaFinal = Reserva(estacionamiento=estacionamiento, inicioReserva=inicioReserva, finalReserva=finalReserva) monto = Decimal(estacionamiento.tarifa.calcularPrecio( inicioReserva, finalReserva)) request.session['monto'] = float(estacionamiento.tarifa. calcularPrecio(inicioReserva, finalReserva)) request.session['finalReservaHora'] = finalReserva.hour request.session['finalReservaMinuto'] = finalReserva.minute request.session['inicioReservaHora'] = inicioReserva.hour request.session['inicioReservaMinuto'] = inicioReserva.minute request.session['anioinicial'] = inicioReserva.year request.session['mesinicial'] = inicioReserva.month request.session['diainicial'] = inicioReserva.day request.session['aniofinal'] = finalReserva.year request.session['mesfinal'] = finalReserva.month request.session['diafinal'] = finalReserva.day return render(request, 'confirmar.html', {'id': _id, 'monto': monto, 'reserva': reservaFinal, 'color': 'green', 'mensaje': 'Existe un puesto disponible'}) else: return render(request, 'template-mensaje.html', {'color': 'red', 'mensaje': 'No hay un puesto disponible para ese horario'}) return render(request, 'reserva.html', {'form': form, 'estacionamiento': estacionamiento}) def estacionamiento_pago(request, _id): form = PagoForm() try: estacionamiento = Estacionamiento.objects.get(id=_id) except ObjectDoesNotExist: raise Http404 if estacionamiento.apertura is None: return HttpResponse(status=403) if request.method == 'POST': form = PagoForm(request.POST) if form.is_valid(): inicioReserva = datetime(year=request.session['anioinicial'], month=request.session['mesinicial'], day=request.session[ 'diainicial'], hour=request.session['inicioReservaHora'], minute=request.session['inicioReservaMinuto']) finalReserva = datetime(year=request.session['aniofinal'], month=request.session['mesfinal'], day=request.session[ 'diafinal'], hour=request.session['finalReservaHora'], minute=request.session['finalReservaMinuto']) reservaFinal = Reserva(estacionamiento=estacionamiento, inicioReserva=inicioReserva, finalReserva=finalReserva) reservaFinal.save() monto = Decimal(request.session['monto']).quantize(Decimal('1.00')) pago = Pago(fechaTransaccion=datetime.now(), cedula=form. cleaned_data['cedula'], cedulaTipo=form.cleaned_data[ 'cedulaTipo'], monto=monto, tarjetaTipo=form.cleaned_data[ 'tarjetaTipo'], reserva=reservaFinal) pago.save() return render(request, 'pago.html', {'id': _id, 'pago': pago, 'color': 'green', 'mensaje': 'Se realizo el pago de reserva satisfactoriamente.'}) return render(request, 'pago.html', {'form': form}) def estacionamiento_ingreso(request): form = RifForm() if request.method == 'POST': form = RifForm(request.POST) if form.is_valid(): rif = form.cleaned_data['rif'] listaIngresos, ingresoTotal = consultar_ingresos(rif) return render(request, 'consultar-ingreso.html', { 'ingresoTotal': ingresoTotal, 'listaIngresos': listaIngresos, 'form': form}) return render(request, 'consultar-ingreso.html', {'form': form}) def estacionamiento_consulta_reserva(request): form = CedulaForm() if request.method == 'POST': form = CedulaForm(request.POST) if form.is_valid(): cedula = form.cleaned_data['cedula'] facturas = Pago.objects.filter(cedula=cedula) listaFacturas = [] listaFacturas = sorted(list(facturas), key=lambda r: r.reserva. inicioReserva) return render(request, 'consultar-reservas.html', { 'listaFacturas': listaFacturas, 'form': form}) return render(request, 'consultar-reservas.html', {'form': form}) def receive_sms(request): ip = get_client_ip(request) port = '8000' phone = request.GET.get('phone', False) sms = request.GET.get('text', False) if not sms or not phone: return HttpResponse(status=400) phone = urllib.parse.quote(str(phone)) try: sms = sms.split(' ') id_sms = int(sms[0]) inicio_reserva = sms[1] + ' ' + sms[2] final_reserva = sms[3] + ' ' + sms[4] inicio_reserva = parse_datetime(inicio_reserva) final_reserva = parse_datetime(final_reserva) except: return HttpResponse(status=400) try: estacionamiento = Estacionamiento.objects.get(id=id_sms) except ObjectDoesNotExist: text = 'No existe el estacionamiento ' + str(id_sms) + '.' text = urllib.parse.quote(str(text)) urllib.request.urlopen( 'http://{0}:{1}/sendsms?phone={2}&text={3}&password='.format(ip, port, phone, text)) return HttpResponse('No existe el estacionamiento ' + str(id_sms) + '.' ) m_validado = validarHorarioReserva(inicio_reserva, final_reserva, estacionamiento.apertura, estacionamiento.cierre) if m_validado[0]: """reserva_sms = Reserva( estacionamiento = estacionamiento, inicioReserva = inicio_reserva, finalReserva = final_reserva, ) reserva_sms.save()""" text = 'Se realizó la reserva satisfactoriamente.' text = urllib.parse.quote(str(text)) urllib.request.urlopen( 'http://{0}:{1}/sendsms?phone={2}&text={3}&password='.format(ip, port, phone, text)) else: text = m_validado[1] text = urllib.parse.quote(str(text)) urllib.request.urlopen( 'http://{0}:{1}/sendsms?phone={2}&text={3}&password='.format(ip, port, phone, text)) return HttpResponse(m_validado[1]) return HttpResponse('') def tasa_de_reservacion(request, _id): _id = int(_id) try: estacionamiento = Estacionamiento.objects.get(id=_id) except ObjectDoesNotExist: raise Http404 if estacionamiento.apertura is None: return render(request, 'template-mensaje.html', {'color': 'red', 'mensaje': 'Se debe parametrizar el estacionamiento primero.'}) ocupacion = tasa_reservaciones(_id) calcular_porcentaje_de_tasa(estacionamiento.apertura, estacionamiento. cierre, estacionamiento.capacidad, ocupacion) datos_ocupacion = urlencode(ocupacion) return render(request, 'tasa-reservacion.html', {'ocupacion': ocupacion, 'datos_ocupacion': datos_ocupacion}) def grafica_tasa_de_reservacion(request): try: datos_ocupacion = request.GET.dict() datos_ocupacion = OrderedDict(sorted((k, float(v)) for k, v in datos_ocupacion.items())) response = HttpResponse(content_type='image/png') except: return HttpResponse(status=400) if not datos_ocupacion: return HttpResponse(status=400) pyplot.switch_backend('Agg') pyplot.bar(range(len(datos_ocupacion)), datos_ocupacion.values(), hold= False, color='#6495ed') pyplot.ylim([0, 100]) pyplot.title('Distribución de los porcentajes por fecha') pyplot.xticks(range(len(datos_ocupacion)), list(datos_ocupacion.keys()), rotation=20) pyplot.ylabel('Porcentaje (%)') pyplot.grid(True, 'major', 'both') pyplot.savefig(response, format='png') pyplot.close() return response
# -*- coding: utf-8 -*- from django.core.exceptions import ObjectDoesNotExist from django.shortcuts import render import urllib from django.http import HttpResponse, Http404 from django.utils.dateparse import parse_datetime from urllib.parse import urlencode from matplotlib import pyplot from decimal import Decimal from collections import OrderedDict from datetime import ( datetime, ) from estacionamientos.controller import ( HorarioEstacionamiento, validarHorarioReserva, marzullo, get_client_ip, tasa_reservaciones, calcular_porcentaje_de_tasa, consultar_ingresos, ) from estacionamientos.forms import ( EstacionamientoExtendedForm, EstacionamientoForm, ReservaForm, PagoForm, RifForm, CedulaForm, ) from estacionamientos.models import ( Estacionamiento, Reserva, Pago, TarifaHora, TarifaMinuto, TarifaHorayFraccion, TarifaFinDeSemana, TarifaHoraPico ) # Usamos esta vista para procesar todos los estacionamientos def estacionamientos_all(request): estacionamientos = Estacionamiento.objects.all() # Si es un GET, mandamos un formulario vacio if request.method == 'GET': form = EstacionamientoForm() # Si es POST, se verifica la información recibida elif request.method == 'POST': # Creamos un formulario con los datos que recibimos form = EstacionamientoForm(request.POST) # Parte de la entrega era limitar la cantidad maxima de # estacionamientos a 5 if len(estacionamientos) >= 5: return render( request, 'template-mensaje.html', { 'color' : 'red' , 'mensaje' : 'No se pueden agregar más estacionamientos' } ) # Si el formulario es valido, entonces creamos un objeto con # el constructor del modelo if form.is_valid(): obj = Estacionamiento( propietario = form.cleaned_data['propietario'], nombre = form.cleaned_data['nombre'], direccion = form.cleaned_data['direccion'], rif = form.cleaned_data['rif'], telefono1 = form.cleaned_data['telefono_1'], telefono2 = form.cleaned_data['telefono_2'], telefono3 = form.cleaned_data['telefono_3'], email1 = form.cleaned_data['email_1'], email2 = form.cleaned_data['email_2'] ) obj.save() # Recargamos los estacionamientos ya que acabamos de agregar estacionamientos = Estacionamiento.objects.all() form = EstacionamientoForm() return render( request, 'catalogo-estacionamientos.html', { 'form': form , 'estacionamientos': estacionamientos } ) def estacionamiento_detail(request, _id): _id = int(_id) # Verificamos que el objeto exista antes de continuar try: estacionamiento = Estacionamiento.objects.get(id = _id) except ObjectDoesNotExist: raise Http404 if request.method == 'GET': if estacionamiento.tarifa: form_data = { 'horarioin' : estacionamiento.apertura, 'horarioout' : estacionamiento.cierre, 'tarifa' : estacionamiento.tarifa.tarifa, 'tarifa2' : estacionamiento.tarifa.tarifa2, 'inicioTarifa2' : estacionamiento.tarifa.inicioEspecial, 'finTarifa2' : estacionamiento.tarifa.finEspecial, 'puestos' : estacionamiento.capacidad, 'esquema' : estacionamiento.tarifa.__class__.__name__ } form = EstacionamientoExtendedForm(data = form_data) else: form = EstacionamientoExtendedForm() elif request.method == 'POST': # Leemos el formulario form = EstacionamientoExtendedForm(request.POST) # Si el formulario if form.is_valid(): horaIn = form.cleaned_data['horarioin'] horaOut = form.cleaned_data['horarioout'] tarifa = form.cleaned_data['tarifa'] tipo = form.cleaned_data['esquema'] inicioTarifa2 = form.cleaned_data['inicioTarifa2'] finTarifa2 = form.cleaned_data['finTarifa2'] tarifa2 = form.cleaned_data['tarifa2'] esquemaTarifa = eval(tipo)( tarifa = tarifa, tarifa2 = tarifa2, inicioEspecial = inicioTarifa2, finEspecial = finTarifa2 ) esquemaTarifa.save() # debería funcionar con excepciones, y el mensaje debe ser mostrado # en el mismo formulario if not HorarioEstacionamiento(horaIn, horaOut): return render( request, 'template-mensaje.html', { 'color':'red' , 'mensaje': 'El horario de apertura debe ser menor al horario de cierre' } ) # debería funcionar con excepciones estacionamiento.tarifa = esquemaTarifa estacionamiento.apertura = horaIn estacionamiento.cierre = horaOut estacionamiento.capacidad = form.cleaned_data['puestos'] estacionamiento.save() form = EstacionamientoExtendedForm() return render( request, 'detalle-estacionamiento.html', { 'form': form , 'estacionamiento': estacionamiento } ) def estacionamiento_reserva(request, _id): _id = int(_id) # Verificamos que el objeto exista antes de continuar try: estacionamiento = Estacionamiento.objects.get(id = _id) except ObjectDoesNotExist: raise Http404 # Verificamos que el estacionamiento este parametrizado if (estacionamiento.apertura is None): return HttpResponse(status = 403) # Esta prohibido entrar aun # Si se hace un GET renderizamos los estacionamientos con su formulario if request.method == 'GET': form = ReservaForm() # Si es un POST estan mandando un request elif request.method == 'POST': form = ReservaForm(request.POST) # Verificamos si es valido con los validadores del formulario if form.is_valid(): inicioReserva = form.cleaned_data['inicio'] finalReserva = form.cleaned_data['final'] # debería funcionar con excepciones, y el mensaje debe ser mostrado # en el mismo formulario m_validado = validarHorarioReserva( inicioReserva, finalReserva, estacionamiento.apertura, estacionamiento.cierre, ) # Si no es valido devolvemos el request if not m_validado[0]: return render( request, 'template-mensaje.html', { 'color' :'red' , 'mensaje': m_validado[1] } ) if marzullo(_id, inicioReserva, finalReserva): reservaFinal = Reserva( estacionamiento = estacionamiento, inicioReserva = inicioReserva, finalReserva = finalReserva, ) monto = Decimal( estacionamiento.tarifa.calcularPrecio( inicioReserva,finalReserva ) ) request.session['monto'] = float( estacionamiento.tarifa.calcularPrecio( inicioReserva, finalReserva ) ) request.session['finalReservaHora'] = finalReserva.hour request.session['finalReservaMinuto'] = finalReserva.minute request.session['inicioReservaHora'] = inicioReserva.hour request.session['inicioReservaMinuto'] = inicioReserva.minute request.session['anioinicial'] = inicioReserva.year request.session['mesinicial'] = inicioReserva.month request.session['diainicial'] = inicioReserva.day request.session['aniofinal'] = finalReserva.year request.session['mesfinal'] = finalReserva.month request.session['diafinal'] = finalReserva.day return render( request, 'confirmar.html', { 'id' : _id , 'monto' : monto , 'reserva' : reservaFinal , 'color' : 'green' , 'mensaje' : 'Existe un puesto disponible' } ) else: # Cambiar mensaje return render( request, 'template-mensaje.html', {'color' : 'red' , 'mensaje' : 'No hay un puesto disponible para ese horario' } ) return render( request, 'reserva.html', { 'form': form , 'estacionamiento': estacionamiento } ) def estacionamiento_pago(request,_id): form = PagoForm() try: estacionamiento = Estacionamiento.objects.get(id = _id) except ObjectDoesNotExist: raise Http404 if (estacionamiento.apertura is None): return HttpResponse(status = 403) # No esta permitido acceder a esta vista aun if request.method == 'POST': form = PagoForm(request.POST) if form.is_valid(): inicioReserva = datetime( year = request.session['anioinicial'], month = request.session['mesinicial'], day = request.session['diainicial'], hour = request.session['inicioReservaHora'], minute = request.session['inicioReservaMinuto'] ) finalReserva = datetime( year = request.session['aniofinal'], month = request.session['mesfinal'], day = request.session['diafinal'], hour = request.session['finalReservaHora'], minute = request.session['finalReservaMinuto'] ) reservaFinal = Reserva( estacionamiento = estacionamiento, inicioReserva = inicioReserva, finalReserva = finalReserva, ) # Se guarda la reserva en la base de datos reservaFinal.save() monto = Decimal(request.session['monto']).quantize(Decimal('1.00')) pago = Pago( fechaTransaccion = datetime.now(), cedula = form.cleaned_data['cedula'], cedulaTipo = form.cleaned_data['cedulaTipo'], monto = monto, tarjetaTipo = form.cleaned_data['tarjetaTipo'], reserva = reservaFinal, ) # Se guarda el recibo de pago en la base de datos pago.save() return render( request, 'pago.html', { "id" : _id , "pago" : pago , "color" : "green" , 'mensaje' : "Se realizo el pago de reserva satisfactoriamente." } ) return render( request, 'pago.html', { 'form' : form } ) def estacionamiento_ingreso(request): form = RifForm() if request.method == 'POST': form = RifForm(request.POST) if form.is_valid(): rif = form.cleaned_data['rif'] listaIngresos, ingresoTotal = consultar_ingresos(rif) return render( request, 'consultar-ingreso.html', { "ingresoTotal" : ingresoTotal , "listaIngresos" : listaIngresos , "form" : form } ) return render( request, 'consultar-ingreso.html', { "form" : form } ) def estacionamiento_consulta_reserva(request): form = CedulaForm() if request.method == 'POST': form = CedulaForm(request.POST) if form.is_valid(): cedula = form.cleaned_data['cedula'] facturas = Pago.objects.filter(cedula = cedula) listaFacturas = [] listaFacturas = sorted( list(facturas), key = lambda r: r.reserva.inicioReserva ) return render( request, 'consultar-reservas.html', { "listaFacturas" : listaFacturas , "form" : form } ) return render( request, 'consultar-reservas.html', { "form" : form } ) def receive_sms(request): ip = get_client_ip(request) # Busca el IP del telefono donde esta montado el SMS Gateway port = '8000' # Puerto del telefono donde esta montado el SMS Gateway phone = request.GET.get('phone', False) sms = request.GET.get('text', False) if (not sms or not phone): return HttpResponse(status=400) # Bad request phone = urllib.parse.quote(str(phone)) # Codificacion porcentaje del numero de telefono recibido # Tratamiento del texto recibido try: sms = sms.split(' ') id_sms = int(sms[0]) inicio_reserva = sms[1] + ' ' + sms[2] final_reserva = sms[3] + ' ' + sms[4] inicio_reserva = parse_datetime(inicio_reserva) final_reserva = parse_datetime(final_reserva) except: return HttpResponse(status=400) # Bad request # Validacion del id de estacionamiento recibido por SMS try: estacionamiento = Estacionamiento.objects.get(id = id_sms) except ObjectDoesNotExist: text = 'No existe el estacionamiento ' + str(id_sms) + '.' text = urllib.parse.quote(str(text)) urllib.request.urlopen('http://{0}:{1}/sendsms?phone={2}&text={3}&password='.format(ip, port, phone, text)) return HttpResponse('No existe el estacionamiento ' + str(id_sms) + '.') # Validacion de las dos fechas recibidas por SMS m_validado = validarHorarioReserva( inicio_reserva, final_reserva, estacionamiento.apertura, estacionamiento.cierre, ) if m_validado[0]: '''reserva_sms = Reserva( estacionamiento = estacionamiento, inicioReserva = inicio_reserva, finalReserva = final_reserva, ) reserva_sms.save()''' text = 'Se realizó la reserva satisfactoriamente.' text = urllib.parse.quote(str(text)) urllib.request.urlopen('http://{0}:{1}/sendsms?phone={2}&text={3}&password='.format(ip, port, phone, text)) else: text = m_validado[1] text = urllib.parse.quote(str(text)) urllib.request.urlopen('http://{0}:{1}/sendsms?phone={2}&text={3}&password='.format(ip, port, phone, text)) return HttpResponse(m_validado[1]) return HttpResponse('') def tasa_de_reservacion(request, _id): _id = int(_id) # Verificamos que el objeto exista antes de continuar try: estacionamiento = Estacionamiento.objects.get(id = _id) except ObjectDoesNotExist: raise Http404 if (estacionamiento.apertura is None): return render( request, 'template-mensaje.html', { 'color' : 'red' , 'mensaje' : 'Se debe parametrizar el estacionamiento primero.' } ) ocupacion = tasa_reservaciones(_id) calcular_porcentaje_de_tasa(estacionamiento.apertura, estacionamiento.cierre, estacionamiento.capacidad, ocupacion) datos_ocupacion = urlencode(ocupacion) # Se convierten los datos del diccionario en el formato key1=value1&key2=value2&... return render( request, 'tasa-reservacion.html', { "ocupacion" : ocupacion , "datos_ocupacion": datos_ocupacion } ) def grafica_tasa_de_reservacion(request): # Recuperacion del diccionario para crear el grafico try: datos_ocupacion = request.GET.dict() datos_ocupacion = OrderedDict(sorted((k, float(v)) for k, v in datos_ocupacion.items())) response = HttpResponse(content_type='image/png') except: return HttpResponse(status=400) # Bad request # Si el request no viene con algun diccionario if (not datos_ocupacion): return HttpResponse(status=400) # Bad request # Configuracion y creacion del grafico de barras con la biblioteca pyplot pyplot.switch_backend('Agg') # Para que no use Tk y aparezcan problemas con hilos pyplot.bar(range(len(datos_ocupacion)), datos_ocupacion.values(), hold = False, color = '#6495ed') pyplot.ylim([0,100]) pyplot.title('Distribución de los porcentajes por fecha') pyplot.xticks(range(len(datos_ocupacion)), list(datos_ocupacion.keys()), rotation=20) pyplot.ylabel('Porcentaje (%)') pyplot.grid(True, 'major', 'both') pyplot.savefig(response, format='png') # Guarda la imagen creada en el HttpResponse creado pyplot.close() return response
[ 5, 7, 9, 10, 11 ]
1,773
df984939c109662bebbd1556c12223fce8f643e6
<mask token> def truncateFile(fileName): fileTemp = open(fileName, 'w') fileTemp.truncate() fileTemp.close() def getConnBySecName(dbConf, secName): descSec = '' secs = dbConf.sections() for sec in secs: if sec == secName: descSec = sec conn = getConnOne(dbConf, descSec) return conn <mask token> def getConnOne(dbConf, sec): host = dbConf.get(sec, 'host') port = dbConf.getint(sec, 'port') user = dbConf.get(sec, 'user') password = dbConf.get(sec, 'password') database = dbConf.get(sec, 'database') conn = commonutil.getConn(host, port, user, password, database) if conn is None: time.sleep(5) conn = commonutil.getConn(host, port, user, password, database) if conn is None: commonutil.fatal('fail to get connection : sec=[{0}]'.format(sec)) return conn
<mask token> def readFile(fileName): infile = open(fileName, 'r') content = infile.read() infile.close() return content def truncateFile(fileName): fileTemp = open(fileName, 'w') fileTemp.truncate() fileTemp.close() def getConnBySecName(dbConf, secName): descSec = '' secs = dbConf.sections() for sec in secs: if sec == secName: descSec = sec conn = getConnOne(dbConf, descSec) return conn <mask token> def getConnOne(dbConf, sec): host = dbConf.get(sec, 'host') port = dbConf.getint(sec, 'port') user = dbConf.get(sec, 'user') password = dbConf.get(sec, 'password') database = dbConf.get(sec, 'database') conn = commonutil.getConn(host, port, user, password, database) if conn is None: time.sleep(5) conn = commonutil.getConn(host, port, user, password, database) if conn is None: commonutil.fatal('fail to get connection : sec=[{0}]'.format(sec)) return conn
<mask token> def getConf(cfgfile): config = ConfigParser.ConfigParser() with open(cfgfile, 'r') as cfgfile: config.readfp(cfgfile) return config def readFile(fileName): infile = open(fileName, 'r') content = infile.read() infile.close() return content def truncateFile(fileName): fileTemp = open(fileName, 'w') fileTemp.truncate() fileTemp.close() def getConnBySecName(dbConf, secName): descSec = '' secs = dbConf.sections() for sec in secs: if sec == secName: descSec = sec conn = getConnOne(dbConf, descSec) return conn def getConns(dbConf): secs = dbConf.sections() conns = {} for sec in secs: conn = getConnOne(dbConf, sec) if conn is not None: conns[sec] = conn return conns def getConnOne(dbConf, sec): host = dbConf.get(sec, 'host') port = dbConf.getint(sec, 'port') user = dbConf.get(sec, 'user') password = dbConf.get(sec, 'password') database = dbConf.get(sec, 'database') conn = commonutil.getConn(host, port, user, password, database) if conn is None: time.sleep(5) conn = commonutil.getConn(host, port, user, password, database) if conn is None: commonutil.fatal('fail to get connection : sec=[{0}]'.format(sec)) return conn
<mask token> from datetime import datetime, timedelta from optparse import OptionParser import argparse import ConfigParser import sys import os import time import commonutil def getConf(cfgfile): config = ConfigParser.ConfigParser() with open(cfgfile, 'r') as cfgfile: config.readfp(cfgfile) return config def readFile(fileName): infile = open(fileName, 'r') content = infile.read() infile.close() return content def truncateFile(fileName): fileTemp = open(fileName, 'w') fileTemp.truncate() fileTemp.close() def getConnBySecName(dbConf, secName): descSec = '' secs = dbConf.sections() for sec in secs: if sec == secName: descSec = sec conn = getConnOne(dbConf, descSec) return conn def getConns(dbConf): secs = dbConf.sections() conns = {} for sec in secs: conn = getConnOne(dbConf, sec) if conn is not None: conns[sec] = conn return conns def getConnOne(dbConf, sec): host = dbConf.get(sec, 'host') port = dbConf.getint(sec, 'port') user = dbConf.get(sec, 'user') password = dbConf.get(sec, 'password') database = dbConf.get(sec, 'database') conn = commonutil.getConn(host, port, user, password, database) if conn is None: time.sleep(5) conn = commonutil.getConn(host, port, user, password, database) if conn is None: commonutil.fatal('fail to get connection : sec=[{0}]'.format(sec)) return conn
# -*- coding: utf8 -*- ''' dump data from mysql/hive to load into mysql ''' from datetime import datetime,timedelta from optparse import OptionParser import argparse import ConfigParser import sys import os import time import commonutil def getConf(cfgfile): config = ConfigParser.ConfigParser() with open(cfgfile, 'r') as cfgfile: config.readfp(cfgfile) return config def readFile(fileName): infile = open(fileName, "r") content = infile.read() infile.close() return content def truncateFile(fileName): fileTemp = open(fileName, "w") fileTemp.truncate() fileTemp.close() def getConnBySecName(dbConf,secName): descSec = '' secs = dbConf.sections() for sec in secs: if sec == secName: descSec = sec conn = getConnOne(dbConf,descSec) return conn def getConns(dbConf): secs = dbConf.sections() conns = {} for sec in secs: conn = getConnOne(dbConf, sec) if conn is not None: conns[sec]=conn return conns def getConnOne(dbConf, sec): host = dbConf.get(sec,"host") port = dbConf.getint(sec,"port") user = dbConf.get(sec,"user") password = dbConf.get(sec,"password") database = dbConf.get(sec,"database") conn = commonutil.getConn(host, port, user, password, database) if conn is None: time.sleep(5) conn = commonutil.getConn(host, port, user, password, database) if conn is None: commonutil.fatal("fail to get connection : sec=[{0}]".format(sec)) return conn
[ 3, 4, 6, 7, 8 ]
1,774
78c71a4f3c4e8f24f0ae90555a3caf15f35332f6
<mask token>
<mask token> for c in range(0, pessoas): peso = float(input('Informe o peso: ')) if c == 1: maior = peso menor = peso else: if peso > maior: maior = peso if peso < menor: menor = peso print(f'MAIOR: {maior}') print(f'MENOR: {menor}')
pessoas = int(input('Informe a quantidade de pessoas que deseja analisar: ')) peso = 0 maior = 0 menor = 0 for c in range(0, pessoas): peso = float(input('Informe o peso: ')) if c == 1: maior = peso menor = peso else: if peso > maior: maior = peso if peso < menor: menor = peso print(f'MAIOR: {maior}') print(f'MENOR: {menor}')
#Exercício Python 055: Faça um programa que leia o peso de cinco pessoas. No final, mostre qual foi o maior e o menor peso lidos. pessoas = int(input('Informe a quantidade de pessoas que deseja analisar: ')) peso = 0 maior = 0 menor = 0 for c in range(0, pessoas): peso = float(input('Informe o peso: ')) if c == 1: maior = peso menor = peso else: if peso > maior: maior = peso if peso < menor: menor = peso print(f'MAIOR: {maior}') print(f'MENOR: {menor}')
null
[ 0, 1, 2, 3 ]
1,775
866ee2c4fa52bf9bda4730c7a9d46bb4798adcd4
<mask token> class Matching: <mask token> <mask token> @staticmethod def process_order(self, order: Order): if order.status == Order.STATUS_WAITING_NEW: order.status = Order.STATUS_NEW order.save() if order.price == 0: Matching.take(order) order.status = Order.STATUS_FILLED order.save() if order.price != 0: Matching.take(order) class TestOrder(TestCase): def setUp(self) ->None: self.ticker1 = Ticker.objects.create(name='USD') self.ticker2 = Ticker.objects.create(name='EUR') self.market = Market.objects.create(name='USD/EUR', base_currency= self.ticker1, quote_currency=self.ticker2) self.Alice = USER_MODEL.objects.create_user(username='Alice', email ='[email protected]', password='hhhh') self.Bob = USER_MODEL.objects.create_user(username='Bob', email= '[email protected]', password='hhhh') for i in range(20): Order.objects.create(sender=self.Alice, side=Order.SIDES_SELL, price=10000 + i * 100, size=100000 + i * 10000, filled=0, status=Order.STATUS_WAITING_NEW, hash_signature='SIGA', market=self.market) for i in range(20): Order.objects.create(sender=self.Alice, side=Order.SIDES_BUY, price=10000 - i * 100, size=100000 + i * 10000, filled=0, status=Order.STATUS_WAITING_NEW, hash_signature='SIGA', market=self.market) for i in range(2): Order.objects.create(sender=self.Bob, side=Order.SIDES_BUY, price=0, size=100000 + i * 10000, filled=0, status=Order. STATUS_WAITING_NEW, hash_signature='SIGA', market=self.market) def test_market_exists(self): assert Market.objects.all().count() == 1 def test_orders_created(self): print('---BID----') for order in Market.objects.all()[0].order_set.filter(side=Order. SIDES_BUY).exclude(price=0).order_by('-price', 'created_at'): print(order.price, order.size) print('---ASK----') for order in Market.objects.all()[0].order_set.filter(side=Order. SIDES_SELL).exclude(price=0).order_by('price', 'created_at'): print(order.price, order.size) def test_get_level_1(self): bid = Market.objects.all()[0].order_set.filter(side=Order.SIDES_BUY, status__in=[Order.STATUS_WAITING_NEW]).exclude(price=0).order_by( '-price') ask = Market.objects.all()[0].order_set.filter(side=Order. SIDES_SELL, status__in=[Order.STATUS_WAITING_NEW]).exclude(price=0 ).order_by('price') bid_price = None ask_price = None if len(bid) > 0: bid_price = bid[0].price if len(ask) > 0: ask_price = ask[0].price print(f'Bid {bid_price} Ask {ask_price}')
<mask token> class Matching: @staticmethod def get_bid_ask(market: Market): bid = market.order_set.filter(side=Order.SIDES_BUY, status__in=[ Order.STATUS_NEW, Order.STATUS_UPDATED, Order. STATUS_PARTIALLUY_FILLED]).exclude(price=0).order_by('-price') ask = market.order_set.filter(side=Order.SIDES_SELL, status__in=[ Order.STATUS_NEW, Order.STATUS_UPDATED, Order. STATUS_PARTIALLUY_FILLED]).exclude(price=0).order_by('price') bid_price = None ask_price = None if len(bid) > 0: bid_price = bid[0].price if len(ask) > 0: ask_price = ask[0].price return bid_price, ask_price <mask token> @staticmethod def process_order(self, order: Order): if order.status == Order.STATUS_WAITING_NEW: order.status = Order.STATUS_NEW order.save() if order.price == 0: Matching.take(order) order.status = Order.STATUS_FILLED order.save() if order.price != 0: Matching.take(order) class TestOrder(TestCase): def setUp(self) ->None: self.ticker1 = Ticker.objects.create(name='USD') self.ticker2 = Ticker.objects.create(name='EUR') self.market = Market.objects.create(name='USD/EUR', base_currency= self.ticker1, quote_currency=self.ticker2) self.Alice = USER_MODEL.objects.create_user(username='Alice', email ='[email protected]', password='hhhh') self.Bob = USER_MODEL.objects.create_user(username='Bob', email= '[email protected]', password='hhhh') for i in range(20): Order.objects.create(sender=self.Alice, side=Order.SIDES_SELL, price=10000 + i * 100, size=100000 + i * 10000, filled=0, status=Order.STATUS_WAITING_NEW, hash_signature='SIGA', market=self.market) for i in range(20): Order.objects.create(sender=self.Alice, side=Order.SIDES_BUY, price=10000 - i * 100, size=100000 + i * 10000, filled=0, status=Order.STATUS_WAITING_NEW, hash_signature='SIGA', market=self.market) for i in range(2): Order.objects.create(sender=self.Bob, side=Order.SIDES_BUY, price=0, size=100000 + i * 10000, filled=0, status=Order. STATUS_WAITING_NEW, hash_signature='SIGA', market=self.market) def test_market_exists(self): assert Market.objects.all().count() == 1 def test_orders_created(self): print('---BID----') for order in Market.objects.all()[0].order_set.filter(side=Order. SIDES_BUY).exclude(price=0).order_by('-price', 'created_at'): print(order.price, order.size) print('---ASK----') for order in Market.objects.all()[0].order_set.filter(side=Order. SIDES_SELL).exclude(price=0).order_by('price', 'created_at'): print(order.price, order.size) def test_get_level_1(self): bid = Market.objects.all()[0].order_set.filter(side=Order.SIDES_BUY, status__in=[Order.STATUS_WAITING_NEW]).exclude(price=0).order_by( '-price') ask = Market.objects.all()[0].order_set.filter(side=Order. SIDES_SELL, status__in=[Order.STATUS_WAITING_NEW]).exclude(price=0 ).order_by('price') bid_price = None ask_price = None if len(bid) > 0: bid_price = bid[0].price if len(ask) > 0: ask_price = ask[0].price print(f'Bid {bid_price} Ask {ask_price}')
<mask token> class Matching: @staticmethod def get_bid_ask(market: Market): bid = market.order_set.filter(side=Order.SIDES_BUY, status__in=[ Order.STATUS_NEW, Order.STATUS_UPDATED, Order. STATUS_PARTIALLUY_FILLED]).exclude(price=0).order_by('-price') ask = market.order_set.filter(side=Order.SIDES_SELL, status__in=[ Order.STATUS_NEW, Order.STATUS_UPDATED, Order. STATUS_PARTIALLUY_FILLED]).exclude(price=0).order_by('price') bid_price = None ask_price = None if len(bid) > 0: bid_price = bid[0].price if len(ask) > 0: ask_price = ask[0].price return bid_price, ask_price @staticmethod def take(order: Order): depth = [] if order.side == Order.SIDES_SELL: depth = order.market.order_set.filter(side=Order.SIDES_BUY, status__in=[Order.STATUS_NEW, Order.STATUS_UPDATED, Order. STATUS_PARTIALLUY_FILLED]).exclude(price=0).order_by('-price') if order.side == Order.SIDES_BUY: depth = order.market.order_set.filter(side=Order.SIDES_SELL, status__in=[Order.STATUS_NEW, Order.STATUS_UPDATED, Order. STATUS_PARTIALLUY_FILLED]).exclude(price=0).order_by('price') for o in depth: if (order.side == Order.SIDES_SELL and order.price != 0 and order.price > o.price or order.side == Order.SIDES_BUY and order.price != 0 and order.price < o.price): break if order.size - order.filled > o.size - o.filled: fill_size = o.size - o.filled else: fill_size = order.size - order.filled o.fill(fill_size) order.fill(fill_size) o.save() order.save() if order.side == Order.SIDES_SELL: order_buy = o order_sell = order else: order_buy = order order_sell = o Trade.objects.create(order_buy=order_buy, order_sell=order_sell, price=o.price, side=order.side) if order.status == Order.STATUS_FILLED: break @staticmethod def process_order(self, order: Order): if order.status == Order.STATUS_WAITING_NEW: order.status = Order.STATUS_NEW order.save() if order.price == 0: Matching.take(order) order.status = Order.STATUS_FILLED order.save() if order.price != 0: Matching.take(order) class TestOrder(TestCase): def setUp(self) ->None: self.ticker1 = Ticker.objects.create(name='USD') self.ticker2 = Ticker.objects.create(name='EUR') self.market = Market.objects.create(name='USD/EUR', base_currency= self.ticker1, quote_currency=self.ticker2) self.Alice = USER_MODEL.objects.create_user(username='Alice', email ='[email protected]', password='hhhh') self.Bob = USER_MODEL.objects.create_user(username='Bob', email= '[email protected]', password='hhhh') for i in range(20): Order.objects.create(sender=self.Alice, side=Order.SIDES_SELL, price=10000 + i * 100, size=100000 + i * 10000, filled=0, status=Order.STATUS_WAITING_NEW, hash_signature='SIGA', market=self.market) for i in range(20): Order.objects.create(sender=self.Alice, side=Order.SIDES_BUY, price=10000 - i * 100, size=100000 + i * 10000, filled=0, status=Order.STATUS_WAITING_NEW, hash_signature='SIGA', market=self.market) for i in range(2): Order.objects.create(sender=self.Bob, side=Order.SIDES_BUY, price=0, size=100000 + i * 10000, filled=0, status=Order. STATUS_WAITING_NEW, hash_signature='SIGA', market=self.market) def test_market_exists(self): assert Market.objects.all().count() == 1 def test_orders_created(self): print('---BID----') for order in Market.objects.all()[0].order_set.filter(side=Order. SIDES_BUY).exclude(price=0).order_by('-price', 'created_at'): print(order.price, order.size) print('---ASK----') for order in Market.objects.all()[0].order_set.filter(side=Order. SIDES_SELL).exclude(price=0).order_by('price', 'created_at'): print(order.price, order.size) def test_get_level_1(self): bid = Market.objects.all()[0].order_set.filter(side=Order.SIDES_BUY, status__in=[Order.STATUS_WAITING_NEW]).exclude(price=0).order_by( '-price') ask = Market.objects.all()[0].order_set.filter(side=Order. SIDES_SELL, status__in=[Order.STATUS_WAITING_NEW]).exclude(price=0 ).order_by('price') bid_price = None ask_price = None if len(bid) > 0: bid_price = bid[0].price if len(ask) > 0: ask_price = ask[0].price print(f'Bid {bid_price} Ask {ask_price}')
from django.contrib.auth import get_user_model from django.test import TestCase from .models import Order from markets.models import Market from tickers.models import Ticker from trades.models import Trade USER_MODEL = get_user_model() class Matching: @staticmethod def get_bid_ask(market: Market): bid = market.order_set.filter(side=Order.SIDES_BUY, status__in=[ Order.STATUS_NEW, Order.STATUS_UPDATED, Order. STATUS_PARTIALLUY_FILLED]).exclude(price=0).order_by('-price') ask = market.order_set.filter(side=Order.SIDES_SELL, status__in=[ Order.STATUS_NEW, Order.STATUS_UPDATED, Order. STATUS_PARTIALLUY_FILLED]).exclude(price=0).order_by('price') bid_price = None ask_price = None if len(bid) > 0: bid_price = bid[0].price if len(ask) > 0: ask_price = ask[0].price return bid_price, ask_price @staticmethod def take(order: Order): depth = [] if order.side == Order.SIDES_SELL: depth = order.market.order_set.filter(side=Order.SIDES_BUY, status__in=[Order.STATUS_NEW, Order.STATUS_UPDATED, Order. STATUS_PARTIALLUY_FILLED]).exclude(price=0).order_by('-price') if order.side == Order.SIDES_BUY: depth = order.market.order_set.filter(side=Order.SIDES_SELL, status__in=[Order.STATUS_NEW, Order.STATUS_UPDATED, Order. STATUS_PARTIALLUY_FILLED]).exclude(price=0).order_by('price') for o in depth: if (order.side == Order.SIDES_SELL and order.price != 0 and order.price > o.price or order.side == Order.SIDES_BUY and order.price != 0 and order.price < o.price): break if order.size - order.filled > o.size - o.filled: fill_size = o.size - o.filled else: fill_size = order.size - order.filled o.fill(fill_size) order.fill(fill_size) o.save() order.save() if order.side == Order.SIDES_SELL: order_buy = o order_sell = order else: order_buy = order order_sell = o Trade.objects.create(order_buy=order_buy, order_sell=order_sell, price=o.price, side=order.side) if order.status == Order.STATUS_FILLED: break @staticmethod def process_order(self, order: Order): if order.status == Order.STATUS_WAITING_NEW: order.status = Order.STATUS_NEW order.save() if order.price == 0: Matching.take(order) order.status = Order.STATUS_FILLED order.save() if order.price != 0: Matching.take(order) class TestOrder(TestCase): def setUp(self) ->None: self.ticker1 = Ticker.objects.create(name='USD') self.ticker2 = Ticker.objects.create(name='EUR') self.market = Market.objects.create(name='USD/EUR', base_currency= self.ticker1, quote_currency=self.ticker2) self.Alice = USER_MODEL.objects.create_user(username='Alice', email ='[email protected]', password='hhhh') self.Bob = USER_MODEL.objects.create_user(username='Bob', email= '[email protected]', password='hhhh') for i in range(20): Order.objects.create(sender=self.Alice, side=Order.SIDES_SELL, price=10000 + i * 100, size=100000 + i * 10000, filled=0, status=Order.STATUS_WAITING_NEW, hash_signature='SIGA', market=self.market) for i in range(20): Order.objects.create(sender=self.Alice, side=Order.SIDES_BUY, price=10000 - i * 100, size=100000 + i * 10000, filled=0, status=Order.STATUS_WAITING_NEW, hash_signature='SIGA', market=self.market) for i in range(2): Order.objects.create(sender=self.Bob, side=Order.SIDES_BUY, price=0, size=100000 + i * 10000, filled=0, status=Order. STATUS_WAITING_NEW, hash_signature='SIGA', market=self.market) def test_market_exists(self): assert Market.objects.all().count() == 1 def test_orders_created(self): print('---BID----') for order in Market.objects.all()[0].order_set.filter(side=Order. SIDES_BUY).exclude(price=0).order_by('-price', 'created_at'): print(order.price, order.size) print('---ASK----') for order in Market.objects.all()[0].order_set.filter(side=Order. SIDES_SELL).exclude(price=0).order_by('price', 'created_at'): print(order.price, order.size) def test_get_level_1(self): bid = Market.objects.all()[0].order_set.filter(side=Order.SIDES_BUY, status__in=[Order.STATUS_WAITING_NEW]).exclude(price=0).order_by( '-price') ask = Market.objects.all()[0].order_set.filter(side=Order. SIDES_SELL, status__in=[Order.STATUS_WAITING_NEW]).exclude(price=0 ).order_by('price') bid_price = None ask_price = None if len(bid) > 0: bid_price = bid[0].price if len(ask) > 0: ask_price = ask[0].price print(f'Bid {bid_price} Ask {ask_price}')
from django.contrib.auth import get_user_model from django.test import TestCase from .models import Order from markets.models import Market from tickers.models import Ticker from trades.models import Trade USER_MODEL = get_user_model() class Matching: @staticmethod def get_bid_ask( market : Market): bid = market.order_set.filter(side=Order.SIDES_BUY, status__in=[Order.STATUS_NEW, Order.STATUS_UPDATED, Order.STATUS_PARTIALLUY_FILLED]).exclude(price=0).order_by("-price") ask = market.order_set.filter(side=Order.SIDES_SELL, status__in=[Order.STATUS_NEW, Order.STATUS_UPDATED, Order.STATUS_PARTIALLUY_FILLED]).exclude(price=0).order_by("price") bid_price = None ask_price = None if len(bid) > 0: bid_price = bid[0].price if len(ask) > 0: ask_price = ask[0].price return bid_price, ask_price @staticmethod def take(order: Order): depth = [] if order.side == Order.SIDES_SELL: depth = order.market.order_set.filter(side=Order.SIDES_BUY, status__in=[Order.STATUS_NEW, Order.STATUS_UPDATED, Order.STATUS_PARTIALLUY_FILLED]).exclude(price=0).order_by("-price") if order.side == Order.SIDES_BUY: depth = order.market.order_set.filter(side=Order.SIDES_SELL, status__in=[Order.STATUS_NEW, Order.STATUS_UPDATED, Order.STATUS_PARTIALLUY_FILLED]).exclude(price=0).order_by("price") for o in depth: if (order.side == Order.SIDES_SELL and order.price != 0 and order.price > o.price) or (order.side == Order.SIDES_BUY and order.price != 0 and order.price < o.price): break if order.size - order.filled > o.size - o.filled: fill_size = o.size - o.filled else: fill_size = order.size - order.filled o.fill( fill_size ) order.fill( fill_size ) o.save() order.save() if order.side == Order.SIDES_SELL: order_buy = o order_sell = order else: order_buy = order order_sell = o # Creating trade object Trade.objects.create(order_buy=order_buy, order_sell=order_sell, price=o.price,side=order.side) if order.status == Order.STATUS_FILLED: break @staticmethod def process_order(self, order: Order ): if order.status == Order.STATUS_WAITING_NEW: order.status = Order.STATUS_NEW order.save() # best_bid_price, best_ask_price = self.get_bid_ask(order.market) if order.price == 0: Matching.take(order) order.status = Order.STATUS_FILLED order.save() if order.price != 0: Matching.take(order) class TestOrder(TestCase): def setUp(self) -> None: self.ticker1 = Ticker.objects.create(name="USD") self.ticker2 = Ticker.objects.create(name="EUR") self.market = Market.objects.create(name="USD/EUR", base_currency=self.ticker1, quote_currency=self.ticker2) self.Alice = USER_MODEL.objects.create_user(username="Alice", email="[email protected]", password="hhhh") self.Bob = USER_MODEL.objects.create_user(username="Bob", email="[email protected]", password="hhhh") # Creating Alice orders for i in range(20): Order.objects.create(sender=self.Alice, side=Order.SIDES_SELL, price=10000 + i*100, size=100000+i*10000, filled=0, status=Order.STATUS_WAITING_NEW, hash_signature="SIGA", market=self.market) # Creating Alice orders for i in range(20): Order.objects.create(sender=self.Alice, side=Order.SIDES_BUY, price=10000 - i*100, size=100000+i*10000, filled=0, status=Order.STATUS_WAITING_NEW, hash_signature="SIGA", market=self.market) # Creating Bob orders for i in range(2): Order.objects.create(sender=self.Bob, side=Order.SIDES_BUY, price=0, size=100000+i*10000, filled=0, status=Order.STATUS_WAITING_NEW, hash_signature="SIGA", market=self.market) def test_market_exists(self): assert Market.objects.all().count() == 1 def test_orders_created(self): #assert Market.objects.all()[0].order_set.count() == 40 print("---BID----") for order in Market.objects.all()[0].order_set.filter(side=Order.SIDES_BUY).exclude(price=0).order_by("-price", "created_at"): print(order.price, order.size) print("---ASK----") for order in Market.objects.all()[0].order_set.filter(side=Order.SIDES_SELL).exclude(price=0).order_by("price", "created_at"): print(order.price, order.size) def test_get_level_1(self): bid = Market.objects.all()[0].order_set.filter(side=Order.SIDES_BUY, status__in=[Order.STATUS_WAITING_NEW]).exclude(price=0).order_by("-price") ask = Market.objects.all()[0].order_set.filter(side=Order.SIDES_SELL, status__in=[Order.STATUS_WAITING_NEW]).exclude(price=0).order_by("price") bid_price = None ask_price = None if len(bid) > 0: bid_price = bid[0].price if len(ask) > 0: ask_price = ask[0].price print(f'Bid {bid_price} Ask {ask_price}')
[ 7, 8, 9, 11, 12 ]
1,776
903a431ac39734338b4d464629b4b04a87dc9e8e
<mask token> def del_flu_sym(x, t=1, Ka=1, Ktt=0.5): intens = x ** 2 return intens <mask token>
<mask token> def del_flu_sym(x, t=1, Ka=1, Ktt=0.5): intens = x ** 2 return intens <mask token> print(dlfl_integral(2)) sym.pprint(dlfl_integral)
<mask token> def del_flu_sym(x, t=1, Ka=1, Ktt=0.5): intens = x ** 2 return intens x = sym.Symbol('x') t = sym.Symbol('t') dlfl_integral = sym.integrate(del_flu_sym(x, t), x) print(dlfl_integral(2)) sym.pprint(dlfl_integral)
import sympy as sym def del_flu_sym(x, t=1, Ka=1, Ktt=0.5): intens = x ** 2 return intens x = sym.Symbol('x') t = sym.Symbol('t') dlfl_integral = sym.integrate(del_flu_sym(x, t), x) print(dlfl_integral(2)) sym.pprint(dlfl_integral)
#Интегрирование точного решения кинетик затухания люминесценции символьным методом #Из за сложности получаемых уравнений. Последующий подбор коэффициентов методом МНК # и печать результата # import sympy as sym def del_flu_sym(x ,t = 1 ,Ka = 1, Ktt = 0.5): intens = x**2 return intens x = sym.Symbol('x') t = sym.Symbol('t') dlfl_integral = sym.integrate(del_flu_sym(x, t), (x)) print(dlfl_integral(2)) sym.pprint(dlfl_integral)
[ 1, 2, 3, 4, 5 ]
1,777
c9872fb536fd6552e2a5353566305555808747f7
<mask token> class SystemInfoJabberBot(JabberBot): @botcmd def serverinfo(self, mess, args): """Displays information about the server""" version = open('/proc/version').read().strip() loadavg = open('/proc/loadavg').read().strip() return '%snn%s' % (version, loadavg) <mask token> @botcmd def rot13(self, mess, args): """Returns passed arguments rot13'ed""" return args.encode('rot13') @botcmd def whoami(self, mess, args): """Tells you your username""" return mess.getFrom().getStripped() <mask token>
<mask token> class SystemInfoJabberBot(JabberBot): @botcmd def serverinfo(self, mess, args): """Displays information about the server""" version = open('/proc/version').read().strip() loadavg = open('/proc/loadavg').read().strip() return '%snn%s' % (version, loadavg) @botcmd def time(self, mess, args): """Displays current server time""" return str(datetime.datetime.now()) @botcmd def rot13(self, mess, args): """Returns passed arguments rot13'ed""" return args.encode('rot13') @botcmd def whoami(self, mess, args): """Tells you your username""" return mess.getFrom().getStripped() <mask token>
<mask token> class SystemInfoJabberBot(JabberBot): @botcmd def serverinfo(self, mess, args): """Displays information about the server""" version = open('/proc/version').read().strip() loadavg = open('/proc/loadavg').read().strip() return '%snn%s' % (version, loadavg) @botcmd def time(self, mess, args): """Displays current server time""" return str(datetime.datetime.now()) @botcmd def rot13(self, mess, args): """Returns passed arguments rot13'ed""" return args.encode('rot13') @botcmd def whoami(self, mess, args): """Tells you your username""" return mess.getFrom().getStripped() <mask token> root.setLevel(logging.DEBUG) <mask token> ch.setLevel(logging.DEBUG) <mask token> ch.setFormatter(formatter) root.addHandler(ch) <mask token> bot.join_room(chatroom, 'credilbot') bot.send(adminuser, 'Hello Julien, je suis connecte') bot.send(chatroom, 'Testing...', None, 'groupchat') while 1: bot.send(chatroom, str(datetime.datetime.now()), None, 'groupchat') time.sleep(5) bot.serve_forever()
<mask token> class SystemInfoJabberBot(JabberBot): @botcmd def serverinfo(self, mess, args): """Displays information about the server""" version = open('/proc/version').read().strip() loadavg = open('/proc/loadavg').read().strip() return '%snn%s' % (version, loadavg) @botcmd def time(self, mess, args): """Displays current server time""" return str(datetime.datetime.now()) @botcmd def rot13(self, mess, args): """Returns passed arguments rot13'ed""" return args.encode('rot13') @botcmd def whoami(self, mess, args): """Tells you your username""" return mess.getFrom().getStripped() root = logging.getLogger() root.setLevel(logging.DEBUG) ch = logging.StreamHandler(sys.stdout) ch.setLevel(logging.DEBUG) formatter = logging.Formatter( '%(asctime)s - %(name)s - %(levelname)s - %(message)s') ch.setFormatter(formatter) root.addHandler(ch) bot = SystemInfoJabberBot(username, password) bot.join_room(chatroom, 'credilbot') bot.send(adminuser, 'Hello Julien, je suis connecte') bot.send(chatroom, 'Testing...', None, 'groupchat') while 1: bot.send(chatroom, str(datetime.datetime.now()), None, 'groupchat') time.sleep(5) bot.serve_forever()
from jabberbot import JabberBot, botcmd import datetime import logging import sys import time; from config import username, password, chatroom, adminuser class SystemInfoJabberBot(JabberBot): @botcmd def serverinfo( self, mess, args): """Displays information about the server""" version = open('/proc/version').read().strip() loadavg = open('/proc/loadavg').read().strip() return '%snn%s' % ( version, loadavg, ) @botcmd def time( self, mess, args): """Displays current server time""" return str(datetime.datetime.now()) @botcmd def rot13( self, mess, args): """Returns passed arguments rot13'ed""" return args.encode('rot13') @botcmd def whoami(self, mess, args): """Tells you your username""" return mess.getFrom().getStripped() root = logging.getLogger() root.setLevel(logging.DEBUG) ch = logging.StreamHandler(sys.stdout) ch.setLevel(logging.DEBUG) formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s') ch.setFormatter(formatter) root.addHandler(ch) bot = SystemInfoJabberBot(username,password) bot.join_room(chatroom, 'credilbot') bot.send(adminuser, 'Hello Julien, je suis connecte') #print bot.muc_room_participants(chatroom); bot.send(chatroom, 'Testing...', None, 'groupchat') while 1: bot.send(chatroom, str(datetime.datetime.now()), None, 'groupchat') time.sleep(5) bot.serve_forever()
[ 4, 5, 6, 7, 9 ]
1,778
e7ffa852d16e8e55b4e2b6ab2383561fe359a169
<mask token> class TestTNSWatcher: <mask token> @pytest.mark.xfail(raises=pandas.errors.ParserError) def test_tns_watcher(self): log('Connecting to DB') mongo = Mongo(host=config['database']['host'], port=config[ 'database']['port'], replica_set=config['database'][ 'replica_set'], username=config['database']['username'], password=config['database']['password'], db=config['database'][ 'db'], verbose=True) log('Successfully connected') collection = config['database']['collections']['tns'] log('Grabbing most recent object from the TNS and ingesting that into the database' ) get_tns(grab_all=False, test=True) log('Done') fetched_entries = list(mongo.db[collection].find({}, {'_id': 1})) assert len(fetched_entries) > 0
<mask token> class TestTNSWatcher: """ Test TNS monitoring """ @pytest.mark.xfail(raises=pandas.errors.ParserError) def test_tns_watcher(self): log('Connecting to DB') mongo = Mongo(host=config['database']['host'], port=config[ 'database']['port'], replica_set=config['database'][ 'replica_set'], username=config['database']['username'], password=config['database']['password'], db=config['database'][ 'db'], verbose=True) log('Successfully connected') collection = config['database']['collections']['tns'] log('Grabbing most recent object from the TNS and ingesting that into the database' ) get_tns(grab_all=False, test=True) log('Done') fetched_entries = list(mongo.db[collection].find({}, {'_id': 1})) assert len(fetched_entries) > 0
<mask token> config = load_config(config_file='config.yaml')['kowalski'] class TestTNSWatcher: """ Test TNS monitoring """ @pytest.mark.xfail(raises=pandas.errors.ParserError) def test_tns_watcher(self): log('Connecting to DB') mongo = Mongo(host=config['database']['host'], port=config[ 'database']['port'], replica_set=config['database'][ 'replica_set'], username=config['database']['username'], password=config['database']['password'], db=config['database'][ 'db'], verbose=True) log('Successfully connected') collection = config['database']['collections']['tns'] log('Grabbing most recent object from the TNS and ingesting that into the database' ) get_tns(grab_all=False, test=True) log('Done') fetched_entries = list(mongo.db[collection].find({}, {'_id': 1})) assert len(fetched_entries) > 0
import pandas import pytest from tns_watcher import get_tns from utils import load_config, log, Mongo <mask token> config = load_config(config_file='config.yaml')['kowalski'] class TestTNSWatcher: """ Test TNS monitoring """ @pytest.mark.xfail(raises=pandas.errors.ParserError) def test_tns_watcher(self): log('Connecting to DB') mongo = Mongo(host=config['database']['host'], port=config[ 'database']['port'], replica_set=config['database'][ 'replica_set'], username=config['database']['username'], password=config['database']['password'], db=config['database'][ 'db'], verbose=True) log('Successfully connected') collection = config['database']['collections']['tns'] log('Grabbing most recent object from the TNS and ingesting that into the database' ) get_tns(grab_all=False, test=True) log('Done') fetched_entries = list(mongo.db[collection].find({}, {'_id': 1})) assert len(fetched_entries) > 0
import pandas import pytest from tns_watcher import get_tns from utils import load_config, log, Mongo """ load config and secrets """ config = load_config(config_file="config.yaml")["kowalski"] class TestTNSWatcher: """ Test TNS monitoring """ @pytest.mark.xfail(raises=pandas.errors.ParserError) def test_tns_watcher(self): log("Connecting to DB") mongo = Mongo( host=config["database"]["host"], port=config["database"]["port"], replica_set=config["database"]["replica_set"], username=config["database"]["username"], password=config["database"]["password"], db=config["database"]["db"], verbose=True, ) log("Successfully connected") collection = config["database"]["collections"]["tns"] log( "Grabbing most recent object from the TNS and ingesting that into the database" ) get_tns( grab_all=False, test=True, ) log("Done") fetched_entries = list(mongo.db[collection].find({}, {"_id": 1})) assert len(fetched_entries) > 0
[ 2, 3, 4, 5, 6 ]
1,779
f3466fd38ecf472a4342aad4d10410d6f2a67d47
<mask token> class SnapshotMismatchError(Exception): """ Main snapshot mismatch exception. """ def setup_logging(level: int) ->logging.Logger: """ Get Logger instance. Arguments: level -- Log level Returns: Overriden Logger. """ logger = logging.getLogger(LOGGER_NAME) stream_handler = logging.StreamHandler() formatter = logging.Formatter('%(levelname)s %(message)s', datefmt= '%H:%M:%S') stream_handler.setFormatter(formatter) stream_handler.setLevel(level) logger.addHandler(stream_handler) logger.setLevel(level) return logger @dataclass class CLINamespace: """ CLI namespace. """ debug: bool path: Path filter: List[str] exit_on_error: bool def parse_args() ->CLINamespace: """ Parse CLI arguments. """ parser = argparse.ArgumentParser(__file__) parser.add_argument('-d', '--debug', action='store_true') parser.add_argument('-x', '--exit-on-error', action='store_true') parser.add_argument('-p', '--path', type=Path, default=ROOT_PATH / 'mypy_boto3_output') parser.add_argument('filter', nargs='*') args = parser.parse_args() return CLINamespace(debug=args.debug, path=args.path, filter=args. filter, exit_on_error=args.exit_on_error) <mask token> def run_pyright(path: Path) ->None: """ Check output with pyright. """ with tempfile.NamedTemporaryFile('w+b') as f: try: subprocess.check_call(['npx', 'pyright', path.as_posix(), '--outputjson'], stderr=subprocess.DEVNULL, stdout=f) return except subprocess.CalledProcessError: pass temp_path = Path(f.name) output = temp_path.read_text() data = json.loads(output).get('generalDiagnostics', []) errors = [] for error in data: message = error.get('message', '') if any(imsg in message for imsg in IGNORE_PYRIGHT_ERRORS): continue errors.append(error) if errors: messages = [] for error in errors: messages.append( f"{error['file']}:{error['range']['start']['line']} {error.get('message', '')}" ) raise SnapshotMismatchError('\n'.join(messages)) <mask token> def run_call(path: Path) ->None: """ Check output by running it. """ if not (path / '__main__.py').exists(): return try: subprocess.check_call([sys.executable, path.as_posix()], stdout= subprocess.DEVNULL) except subprocess.CalledProcessError as e: raise SnapshotMismatchError(f'Path {path} cannot be imported: {e}' ) from None def run_import(path: Path) ->None: """ Check output by installing and importing it. """ if not (path / '__main__.py').exists(): return try: subprocess.check_call([sys.executable, '-m', 'pip', 'install', '--no-input', path.parent.as_posix()], stdout=subprocess.DEVNULL) if (path / '__main__.py').exists(): subprocess.check_call([sys.executable, '-c', f'import {path.name}'], stdout=subprocess.DEVNULL) subprocess.check_call([sys.executable, '-m', 'pip', 'uninstall', '--no-input', '-y', path.name], stdout=subprocess.DEVNULL) except subprocess.CalledProcessError as e: raise SnapshotMismatchError(f'Path {path} cannot be imported: {e}' ) from None def is_package_dir(path: Path) ->bool: """ Check whether `path` contains a service package. """ if not path.is_dir(): return False if path.name.endswith('.egg-info'): return False if (path / '__init__.pyi').exists(): return True return False def check_snapshot(path: Path) ->None: """ Check package type checkers snapshot. Raises: SnapshotMismatchError -- If snapshot is not equal to current output. """ logger = logging.getLogger(LOGGER_NAME) logger.debug(f'Running flake8 for {path.name} ...') run_flake8(path) logger.debug(f'Running mypy for {path.name} ...') run_mypy(path) logger.debug(f'Running pyright for {path.name} ...') run_pyright(path) if (path / '__main__.py').exists(): logger.debug(f'Running call for {path.name} ...') run_call(path) logger.debug(f'Running import for {path.name} ...') run_import(path) def find_package_path(path: Path) ->Optional[Path]: """ Find package directory inside `path`. """ for package_path in path.iterdir(): if is_package_dir(package_path): return package_path def main() ->None: """ Run main logic. """ args = parse_args() logger = setup_logging(logging.DEBUG if args.debug else logging.INFO) has_errors = False for folder in sorted(args.path.iterdir()): if not folder.name.endswith('_package'): continue if args.filter and not any(s in folder.as_posix() for s in args.filter ): continue package_path = find_package_path(folder) if not package_path: continue logger.info(f'Checking {folder.name}/{package_path.name} ...') try: check_snapshot(package_path) except SnapshotMismatchError as e: logger.error(e) has_errors = True if args.exit_on_error: break if has_errors: sys.exit(1) <mask token>
<mask token> class SnapshotMismatchError(Exception): """ Main snapshot mismatch exception. """ def setup_logging(level: int) ->logging.Logger: """ Get Logger instance. Arguments: level -- Log level Returns: Overriden Logger. """ logger = logging.getLogger(LOGGER_NAME) stream_handler = logging.StreamHandler() formatter = logging.Formatter('%(levelname)s %(message)s', datefmt= '%H:%M:%S') stream_handler.setFormatter(formatter) stream_handler.setLevel(level) logger.addHandler(stream_handler) logger.setLevel(level) return logger @dataclass class CLINamespace: """ CLI namespace. """ debug: bool path: Path filter: List[str] exit_on_error: bool def parse_args() ->CLINamespace: """ Parse CLI arguments. """ parser = argparse.ArgumentParser(__file__) parser.add_argument('-d', '--debug', action='store_true') parser.add_argument('-x', '--exit-on-error', action='store_true') parser.add_argument('-p', '--path', type=Path, default=ROOT_PATH / 'mypy_boto3_output') parser.add_argument('filter', nargs='*') args = parser.parse_args() return CLINamespace(debug=args.debug, path=args.path, filter=args. filter, exit_on_error=args.exit_on_error) def run_flake8(path: Path) ->None: """ Check output with flake8. """ with tempfile.NamedTemporaryFile('w+b') as f: try: subprocess.check_call([sys.executable, '-m', 'flake8', '--ignore', 'E203,W503,E501,D200,D107,D401,D105,D205,D400,D101,D102,D403,N802,N803' , path.as_posix()], stderr=f, stdout=f) except subprocess.CalledProcessError: temp_path = Path(f.name) output = temp_path.read_text() raise SnapshotMismatchError(output) def run_pyright(path: Path) ->None: """ Check output with pyright. """ with tempfile.NamedTemporaryFile('w+b') as f: try: subprocess.check_call(['npx', 'pyright', path.as_posix(), '--outputjson'], stderr=subprocess.DEVNULL, stdout=f) return except subprocess.CalledProcessError: pass temp_path = Path(f.name) output = temp_path.read_text() data = json.loads(output).get('generalDiagnostics', []) errors = [] for error in data: message = error.get('message', '') if any(imsg in message for imsg in IGNORE_PYRIGHT_ERRORS): continue errors.append(error) if errors: messages = [] for error in errors: messages.append( f"{error['file']}:{error['range']['start']['line']} {error.get('message', '')}" ) raise SnapshotMismatchError('\n'.join(messages)) <mask token> def run_call(path: Path) ->None: """ Check output by running it. """ if not (path / '__main__.py').exists(): return try: subprocess.check_call([sys.executable, path.as_posix()], stdout= subprocess.DEVNULL) except subprocess.CalledProcessError as e: raise SnapshotMismatchError(f'Path {path} cannot be imported: {e}' ) from None def run_import(path: Path) ->None: """ Check output by installing and importing it. """ if not (path / '__main__.py').exists(): return try: subprocess.check_call([sys.executable, '-m', 'pip', 'install', '--no-input', path.parent.as_posix()], stdout=subprocess.DEVNULL) if (path / '__main__.py').exists(): subprocess.check_call([sys.executable, '-c', f'import {path.name}'], stdout=subprocess.DEVNULL) subprocess.check_call([sys.executable, '-m', 'pip', 'uninstall', '--no-input', '-y', path.name], stdout=subprocess.DEVNULL) except subprocess.CalledProcessError as e: raise SnapshotMismatchError(f'Path {path} cannot be imported: {e}' ) from None def is_package_dir(path: Path) ->bool: """ Check whether `path` contains a service package. """ if not path.is_dir(): return False if path.name.endswith('.egg-info'): return False if (path / '__init__.pyi').exists(): return True return False def check_snapshot(path: Path) ->None: """ Check package type checkers snapshot. Raises: SnapshotMismatchError -- If snapshot is not equal to current output. """ logger = logging.getLogger(LOGGER_NAME) logger.debug(f'Running flake8 for {path.name} ...') run_flake8(path) logger.debug(f'Running mypy for {path.name} ...') run_mypy(path) logger.debug(f'Running pyright for {path.name} ...') run_pyright(path) if (path / '__main__.py').exists(): logger.debug(f'Running call for {path.name} ...') run_call(path) logger.debug(f'Running import for {path.name} ...') run_import(path) def find_package_path(path: Path) ->Optional[Path]: """ Find package directory inside `path`. """ for package_path in path.iterdir(): if is_package_dir(package_path): return package_path def main() ->None: """ Run main logic. """ args = parse_args() logger = setup_logging(logging.DEBUG if args.debug else logging.INFO) has_errors = False for folder in sorted(args.path.iterdir()): if not folder.name.endswith('_package'): continue if args.filter and not any(s in folder.as_posix() for s in args.filter ): continue package_path = find_package_path(folder) if not package_path: continue logger.info(f'Checking {folder.name}/{package_path.name} ...') try: check_snapshot(package_path) except SnapshotMismatchError as e: logger.error(e) has_errors = True if args.exit_on_error: break if has_errors: sys.exit(1) <mask token>
<mask token> class SnapshotMismatchError(Exception): """ Main snapshot mismatch exception. """ def setup_logging(level: int) ->logging.Logger: """ Get Logger instance. Arguments: level -- Log level Returns: Overriden Logger. """ logger = logging.getLogger(LOGGER_NAME) stream_handler = logging.StreamHandler() formatter = logging.Formatter('%(levelname)s %(message)s', datefmt= '%H:%M:%S') stream_handler.setFormatter(formatter) stream_handler.setLevel(level) logger.addHandler(stream_handler) logger.setLevel(level) return logger @dataclass class CLINamespace: """ CLI namespace. """ debug: bool path: Path filter: List[str] exit_on_error: bool def parse_args() ->CLINamespace: """ Parse CLI arguments. """ parser = argparse.ArgumentParser(__file__) parser.add_argument('-d', '--debug', action='store_true') parser.add_argument('-x', '--exit-on-error', action='store_true') parser.add_argument('-p', '--path', type=Path, default=ROOT_PATH / 'mypy_boto3_output') parser.add_argument('filter', nargs='*') args = parser.parse_args() return CLINamespace(debug=args.debug, path=args.path, filter=args. filter, exit_on_error=args.exit_on_error) def run_flake8(path: Path) ->None: """ Check output with flake8. """ with tempfile.NamedTemporaryFile('w+b') as f: try: subprocess.check_call([sys.executable, '-m', 'flake8', '--ignore', 'E203,W503,E501,D200,D107,D401,D105,D205,D400,D101,D102,D403,N802,N803' , path.as_posix()], stderr=f, stdout=f) except subprocess.CalledProcessError: temp_path = Path(f.name) output = temp_path.read_text() raise SnapshotMismatchError(output) def run_pyright(path: Path) ->None: """ Check output with pyright. """ with tempfile.NamedTemporaryFile('w+b') as f: try: subprocess.check_call(['npx', 'pyright', path.as_posix(), '--outputjson'], stderr=subprocess.DEVNULL, stdout=f) return except subprocess.CalledProcessError: pass temp_path = Path(f.name) output = temp_path.read_text() data = json.loads(output).get('generalDiagnostics', []) errors = [] for error in data: message = error.get('message', '') if any(imsg in message for imsg in IGNORE_PYRIGHT_ERRORS): continue errors.append(error) if errors: messages = [] for error in errors: messages.append( f"{error['file']}:{error['range']['start']['line']} {error.get('message', '')}" ) raise SnapshotMismatchError('\n'.join(messages)) def run_mypy(path: Path) ->None: """ Check output with mypy. """ try: output = subprocess.check_output([sys.executable, '-m', 'mypy', path.as_posix()], stderr=subprocess.STDOUT, encoding='utf8') except subprocess.CalledProcessError as e: output = e.output errors = [] for message in output.splitlines(): if not message or message.startswith('Found'): continue if any(imsg in message for imsg in IGNORE_MYPY_ERRORS): continue errors.append(message) if errors: raise SnapshotMismatchError('\n'.join(errors)) from None def run_call(path: Path) ->None: """ Check output by running it. """ if not (path / '__main__.py').exists(): return try: subprocess.check_call([sys.executable, path.as_posix()], stdout= subprocess.DEVNULL) except subprocess.CalledProcessError as e: raise SnapshotMismatchError(f'Path {path} cannot be imported: {e}' ) from None def run_import(path: Path) ->None: """ Check output by installing and importing it. """ if not (path / '__main__.py').exists(): return try: subprocess.check_call([sys.executable, '-m', 'pip', 'install', '--no-input', path.parent.as_posix()], stdout=subprocess.DEVNULL) if (path / '__main__.py').exists(): subprocess.check_call([sys.executable, '-c', f'import {path.name}'], stdout=subprocess.DEVNULL) subprocess.check_call([sys.executable, '-m', 'pip', 'uninstall', '--no-input', '-y', path.name], stdout=subprocess.DEVNULL) except subprocess.CalledProcessError as e: raise SnapshotMismatchError(f'Path {path} cannot be imported: {e}' ) from None def is_package_dir(path: Path) ->bool: """ Check whether `path` contains a service package. """ if not path.is_dir(): return False if path.name.endswith('.egg-info'): return False if (path / '__init__.pyi').exists(): return True return False def check_snapshot(path: Path) ->None: """ Check package type checkers snapshot. Raises: SnapshotMismatchError -- If snapshot is not equal to current output. """ logger = logging.getLogger(LOGGER_NAME) logger.debug(f'Running flake8 for {path.name} ...') run_flake8(path) logger.debug(f'Running mypy for {path.name} ...') run_mypy(path) logger.debug(f'Running pyright for {path.name} ...') run_pyright(path) if (path / '__main__.py').exists(): logger.debug(f'Running call for {path.name} ...') run_call(path) logger.debug(f'Running import for {path.name} ...') run_import(path) def find_package_path(path: Path) ->Optional[Path]: """ Find package directory inside `path`. """ for package_path in path.iterdir(): if is_package_dir(package_path): return package_path def main() ->None: """ Run main logic. """ args = parse_args() logger = setup_logging(logging.DEBUG if args.debug else logging.INFO) has_errors = False for folder in sorted(args.path.iterdir()): if not folder.name.endswith('_package'): continue if args.filter and not any(s in folder.as_posix() for s in args.filter ): continue package_path = find_package_path(folder) if not package_path: continue logger.info(f'Checking {folder.name}/{package_path.name} ...') try: check_snapshot(package_path) except SnapshotMismatchError as e: logger.error(e) has_errors = True if args.exit_on_error: break if has_errors: sys.exit(1) if __name__ == '__main__': main()
<mask token> ROOT_PATH = Path(__file__).parent.parent.resolve() LOGGER_NAME = 'check_output' IGNORE_PYRIGHT_ERRORS = ( '"get_paginator" is marked as overload, but no implementation is provided', '"get_waiter" is marked as overload, but no implementation is provided', 'Method "paginate" overrides class "Paginator" in an incompatible manner', 'Method "wait" overrides class "Waiter" in an incompatible manner', 'define variable "items" in incompatible way', 'define variable "values" in incompatible way', 'must return value', 'Import "types_aiobotocore_', 'Import "mypy_boto3_') IGNORE_MYPY_ERRORS = ( 'Signature of "create_client" incompatible with supertype "Session"', 'Signature of "paginate" incompatible with supertype "Paginator"', 'Signature of "wait" incompatible with supertype "Waiter"', 'note:') class SnapshotMismatchError(Exception): """ Main snapshot mismatch exception. """ def setup_logging(level: int) ->logging.Logger: """ Get Logger instance. Arguments: level -- Log level Returns: Overriden Logger. """ logger = logging.getLogger(LOGGER_NAME) stream_handler = logging.StreamHandler() formatter = logging.Formatter('%(levelname)s %(message)s', datefmt= '%H:%M:%S') stream_handler.setFormatter(formatter) stream_handler.setLevel(level) logger.addHandler(stream_handler) logger.setLevel(level) return logger @dataclass class CLINamespace: """ CLI namespace. """ debug: bool path: Path filter: List[str] exit_on_error: bool def parse_args() ->CLINamespace: """ Parse CLI arguments. """ parser = argparse.ArgumentParser(__file__) parser.add_argument('-d', '--debug', action='store_true') parser.add_argument('-x', '--exit-on-error', action='store_true') parser.add_argument('-p', '--path', type=Path, default=ROOT_PATH / 'mypy_boto3_output') parser.add_argument('filter', nargs='*') args = parser.parse_args() return CLINamespace(debug=args.debug, path=args.path, filter=args. filter, exit_on_error=args.exit_on_error) def run_flake8(path: Path) ->None: """ Check output with flake8. """ with tempfile.NamedTemporaryFile('w+b') as f: try: subprocess.check_call([sys.executable, '-m', 'flake8', '--ignore', 'E203,W503,E501,D200,D107,D401,D105,D205,D400,D101,D102,D403,N802,N803' , path.as_posix()], stderr=f, stdout=f) except subprocess.CalledProcessError: temp_path = Path(f.name) output = temp_path.read_text() raise SnapshotMismatchError(output) def run_pyright(path: Path) ->None: """ Check output with pyright. """ with tempfile.NamedTemporaryFile('w+b') as f: try: subprocess.check_call(['npx', 'pyright', path.as_posix(), '--outputjson'], stderr=subprocess.DEVNULL, stdout=f) return except subprocess.CalledProcessError: pass temp_path = Path(f.name) output = temp_path.read_text() data = json.loads(output).get('generalDiagnostics', []) errors = [] for error in data: message = error.get('message', '') if any(imsg in message for imsg in IGNORE_PYRIGHT_ERRORS): continue errors.append(error) if errors: messages = [] for error in errors: messages.append( f"{error['file']}:{error['range']['start']['line']} {error.get('message', '')}" ) raise SnapshotMismatchError('\n'.join(messages)) def run_mypy(path: Path) ->None: """ Check output with mypy. """ try: output = subprocess.check_output([sys.executable, '-m', 'mypy', path.as_posix()], stderr=subprocess.STDOUT, encoding='utf8') except subprocess.CalledProcessError as e: output = e.output errors = [] for message in output.splitlines(): if not message or message.startswith('Found'): continue if any(imsg in message for imsg in IGNORE_MYPY_ERRORS): continue errors.append(message) if errors: raise SnapshotMismatchError('\n'.join(errors)) from None def run_call(path: Path) ->None: """ Check output by running it. """ if not (path / '__main__.py').exists(): return try: subprocess.check_call([sys.executable, path.as_posix()], stdout= subprocess.DEVNULL) except subprocess.CalledProcessError as e: raise SnapshotMismatchError(f'Path {path} cannot be imported: {e}' ) from None def run_import(path: Path) ->None: """ Check output by installing and importing it. """ if not (path / '__main__.py').exists(): return try: subprocess.check_call([sys.executable, '-m', 'pip', 'install', '--no-input', path.parent.as_posix()], stdout=subprocess.DEVNULL) if (path / '__main__.py').exists(): subprocess.check_call([sys.executable, '-c', f'import {path.name}'], stdout=subprocess.DEVNULL) subprocess.check_call([sys.executable, '-m', 'pip', 'uninstall', '--no-input', '-y', path.name], stdout=subprocess.DEVNULL) except subprocess.CalledProcessError as e: raise SnapshotMismatchError(f'Path {path} cannot be imported: {e}' ) from None def is_package_dir(path: Path) ->bool: """ Check whether `path` contains a service package. """ if not path.is_dir(): return False if path.name.endswith('.egg-info'): return False if (path / '__init__.pyi').exists(): return True return False def check_snapshot(path: Path) ->None: """ Check package type checkers snapshot. Raises: SnapshotMismatchError -- If snapshot is not equal to current output. """ logger = logging.getLogger(LOGGER_NAME) logger.debug(f'Running flake8 for {path.name} ...') run_flake8(path) logger.debug(f'Running mypy for {path.name} ...') run_mypy(path) logger.debug(f'Running pyright for {path.name} ...') run_pyright(path) if (path / '__main__.py').exists(): logger.debug(f'Running call for {path.name} ...') run_call(path) logger.debug(f'Running import for {path.name} ...') run_import(path) def find_package_path(path: Path) ->Optional[Path]: """ Find package directory inside `path`. """ for package_path in path.iterdir(): if is_package_dir(package_path): return package_path def main() ->None: """ Run main logic. """ args = parse_args() logger = setup_logging(logging.DEBUG if args.debug else logging.INFO) has_errors = False for folder in sorted(args.path.iterdir()): if not folder.name.endswith('_package'): continue if args.filter and not any(s in folder.as_posix() for s in args.filter ): continue package_path = find_package_path(folder) if not package_path: continue logger.info(f'Checking {folder.name}/{package_path.name} ...') try: check_snapshot(package_path) except SnapshotMismatchError as e: logger.error(e) has_errors = True if args.exit_on_error: break if has_errors: sys.exit(1) if __name__ == '__main__': main()
#!/usr/bin/env python """ Checker of generated packages. - [x] import generated package - [x] flake8 - [x] pyright - [x] mypy """ import argparse import json import logging import subprocess import sys import tempfile from dataclasses import dataclass from pathlib import Path from typing import List, Optional ROOT_PATH = Path(__file__).parent.parent.resolve() LOGGER_NAME = "check_output" IGNORE_PYRIGHT_ERRORS = ( '"get_paginator" is marked as overload, but no implementation is provided', '"get_waiter" is marked as overload, but no implementation is provided', # 'Expected type arguments for generic class "ResourceCollection"', # 'Type "None" cannot be assigned to type', # '"__next__" is not present', # 'Import "boto3.s3.transfer" could not be resolved', # "is partially unknown", 'Method "paginate" overrides class "Paginator" in an incompatible manner', 'Method "wait" overrides class "Waiter" in an incompatible manner', 'define variable "items" in incompatible way', 'define variable "values" in incompatible way', "must return value", 'Import "types_aiobotocore_', 'Import "mypy_boto3_', ) IGNORE_MYPY_ERRORS = ( 'Signature of "create_client" incompatible with supertype "Session"', 'Signature of "paginate" incompatible with supertype "Paginator"', 'Signature of "wait" incompatible with supertype "Waiter"', "note:", ) class SnapshotMismatchError(Exception): """ Main snapshot mismatch exception. """ def setup_logging(level: int) -> logging.Logger: """ Get Logger instance. Arguments: level -- Log level Returns: Overriden Logger. """ logger = logging.getLogger(LOGGER_NAME) stream_handler = logging.StreamHandler() formatter = logging.Formatter("%(levelname)s %(message)s", datefmt="%H:%M:%S") stream_handler.setFormatter(formatter) stream_handler.setLevel(level) logger.addHandler(stream_handler) logger.setLevel(level) return logger @dataclass class CLINamespace: """ CLI namespace. """ debug: bool path: Path filter: List[str] exit_on_error: bool def parse_args() -> CLINamespace: """ Parse CLI arguments. """ parser = argparse.ArgumentParser(__file__) parser.add_argument("-d", "--debug", action="store_true") parser.add_argument("-x", "--exit-on-error", action="store_true") parser.add_argument("-p", "--path", type=Path, default=ROOT_PATH / "mypy_boto3_output") parser.add_argument("filter", nargs="*") args = parser.parse_args() return CLINamespace( debug=args.debug, path=args.path, filter=args.filter, exit_on_error=args.exit_on_error, ) def run_flake8(path: Path) -> None: """ Check output with flake8. """ with tempfile.NamedTemporaryFile("w+b") as f: try: subprocess.check_call( [ sys.executable, "-m", "flake8", "--ignore", "E203,W503,E501,D200,D107,D401,D105,D205,D400,D101,D102,D403,N802,N803", path.as_posix(), ], stderr=f, stdout=f, ) except subprocess.CalledProcessError: temp_path = Path(f.name) output = temp_path.read_text() raise SnapshotMismatchError(output) def run_pyright(path: Path) -> None: """ Check output with pyright. """ with tempfile.NamedTemporaryFile("w+b") as f: try: subprocess.check_call( ["npx", "pyright", path.as_posix(), "--outputjson"], stderr=subprocess.DEVNULL, stdout=f, ) return except subprocess.CalledProcessError: pass temp_path = Path(f.name) output = temp_path.read_text() data = json.loads(output).get("generalDiagnostics", []) errors = [] for error in data: message = error.get("message", "") if any(imsg in message for imsg in IGNORE_PYRIGHT_ERRORS): continue errors.append(error) if errors: messages = [] for error in errors: messages.append( f'{error["file"]}:{error["range"]["start"]["line"]} {error.get("message", "")}' ) raise SnapshotMismatchError("\n".join(messages)) def run_mypy(path: Path) -> None: """ Check output with mypy. """ try: output = subprocess.check_output( [sys.executable, "-m", "mypy", path.as_posix()], stderr=subprocess.STDOUT, encoding="utf8", ) except subprocess.CalledProcessError as e: output = e.output errors = [] for message in output.splitlines(): if not message or message.startswith("Found"): continue if any(imsg in message for imsg in IGNORE_MYPY_ERRORS): continue errors.append(message) if errors: raise SnapshotMismatchError("\n".join(errors)) from None def run_call(path: Path) -> None: """ Check output by running it. """ if not (path / "__main__.py").exists(): return try: subprocess.check_call([sys.executable, path.as_posix()], stdout=subprocess.DEVNULL) except subprocess.CalledProcessError as e: raise SnapshotMismatchError(f"Path {path} cannot be imported: {e}") from None def run_import(path: Path) -> None: """ Check output by installing and importing it. """ if not (path / "__main__.py").exists(): return try: subprocess.check_call( [sys.executable, "-m", "pip", "install", "--no-input", path.parent.as_posix()], stdout=subprocess.DEVNULL, ) if (path / "__main__.py").exists(): subprocess.check_call( [sys.executable, "-c", f"import {path.name}"], stdout=subprocess.DEVNULL, ) subprocess.check_call( [sys.executable, "-m", "pip", "uninstall", "--no-input", "-y", path.name], stdout=subprocess.DEVNULL, ) except subprocess.CalledProcessError as e: raise SnapshotMismatchError(f"Path {path} cannot be imported: {e}") from None def is_package_dir(path: Path) -> bool: """ Check whether `path` contains a service package. """ if not path.is_dir(): return False if path.name.endswith(".egg-info"): return False if (path / "__init__.pyi").exists(): return True return False def check_snapshot(path: Path) -> None: """ Check package type checkers snapshot. Raises: SnapshotMismatchError -- If snapshot is not equal to current output. """ logger = logging.getLogger(LOGGER_NAME) logger.debug(f"Running flake8 for {path.name} ...") run_flake8(path) logger.debug(f"Running mypy for {path.name} ...") run_mypy(path) logger.debug(f"Running pyright for {path.name} ...") run_pyright(path) if (path / "__main__.py").exists(): logger.debug(f"Running call for {path.name} ...") run_call(path) logger.debug(f"Running import for {path.name} ...") run_import(path) def find_package_path(path: Path) -> Optional[Path]: """ Find package directory inside `path`. """ for package_path in path.iterdir(): if is_package_dir(package_path): return package_path def main() -> None: """ Run main logic. """ args = parse_args() logger = setup_logging(logging.DEBUG if args.debug else logging.INFO) has_errors = False for folder in sorted(args.path.iterdir()): if not folder.name.endswith("_package"): continue if args.filter and not any(s in folder.as_posix() for s in args.filter): continue package_path = find_package_path(folder) if not package_path: continue logger.info(f"Checking {folder.name}/{package_path.name} ...") try: check_snapshot(package_path) except SnapshotMismatchError as e: logger.error(e) has_errors = True if args.exit_on_error: break if has_errors: sys.exit(1) if __name__ == "__main__": main()
[ 13, 14, 16, 17, 19 ]
1,780
6fba773025268d724283e510a03d0592282adb0a
<mask token> def save_predictions(prediction_maps, output_file, dataset_names): """ Saving probability maps to a given output H5 file. If 'average_channels' is set to True average the probability_maps across the the channel axis (useful in case where each channel predicts semantically the same thing). Args: prediction_maps (list): list of numpy array containing prediction maps in separate channels output_file (string): path to the output H5 file dataset_names (list): list of dataset names inside H5 file where the prediction maps will be saved """ assert len(prediction_maps) == len(dataset_names ), 'Each prediction map has to have a corresponding dataset name' logger.info(f'Saving predictions to: {output_file}...') with h5py.File(output_file, 'w') as output_h5: for prediction_map, dataset_name in zip(prediction_maps, dataset_names ): logger.info(f"Creating dataset '{dataset_name}'...") output_h5.create_dataset(dataset_name, data=prediction_map, compression='gzip') <mask token> def main(): config = load_config() print(config) model = get_model(config) model_path = config['model_path'] logger.info(f'Loading model from {model_path}...') utils.load_checkpoint(model_path, model) logger.info(f"Sending the model to '{config['device']}'") model = model.to(config['device']) logger.info('Loading HDF5 datasets...') for test_dataset in get_test_datasets(config): logger.info(f"Processing '{test_dataset.file_path}'...") predictions = predict(model, test_dataset, config) output_file = _get_output_file(test_dataset) dataset_names = _get_dataset_names(config, len(predictions)) save_predictions(predictions, output_file, dataset_names) <mask token>
<mask token> def predict(model, hdf5_dataset, config): """ Return prediction masks by applying the model on the given dataset Args: model (Unet3D): trained 3D UNet model used for prediction hdf5_dataset (torch.utils.data.Dataset): input dataset out_channels (int): number of channels in the network output device (torch.Device): device to run the prediction on Returns: prediction_maps (numpy array): prediction masks for given dataset """ def _volume_shape(hdf5_dataset): raw = hdf5_dataset.raws[0] if raw.ndim == 3: return raw.shape else: return raw.shape[1:] out_channels = config['model'].get('out_channels') if out_channels is None: out_channels = config['model']['dt_out_channels'] prediction_channel = config.get('prediction_channel', None) if prediction_channel is not None: logger.info( f"Using only channel '{prediction_channel}' from the network output" ) device = config['device'] output_heads = config['model'].get('output_heads', 1) logger.info(f'Running prediction on {len(hdf5_dataset)} patches...') volume_shape = _volume_shape(hdf5_dataset) if prediction_channel is None: prediction_maps_shape = (out_channels,) + volume_shape else: prediction_maps_shape = (1,) + volume_shape logger.info( f'The shape of the output prediction maps (CDHW): {prediction_maps_shape}' ) prediction_maps = [np.zeros(prediction_maps_shape, dtype='float32') for _ in range(output_heads)] normalization_masks = [np.zeros(prediction_maps_shape, dtype='float32') for _ in range(output_heads)] model.eval() with torch.no_grad(): for patch, index in hdf5_dataset: logger.info(f'Predicting slice:{index}') if prediction_channel is None: channel_slice = slice(0, out_channels) else: channel_slice = slice(0, 1) index = index[1:] index = (channel_slice,) + index patch = patch.unsqueeze(dim=0).to(device) predictions = model(patch) if output_heads == 1: predictions = [predictions] for prediction, prediction_map, normalization_mask in zip( predictions, prediction_maps, normalization_masks): prediction = prediction.squeeze(dim=0).cpu().numpy() if prediction_channel is not None: logger.info(f"Using channel '{prediction_channel}'...") prediction = np.expand_dims(prediction[ prediction_channel], axis=0) u_prediction, u_index = utils.unpad(prediction, index, volume_shape) prediction_map[u_index] += u_prediction normalization_mask[u_index] += 1 return [(prediction_map / normalization_mask) for prediction_map, normalization_mask in zip(prediction_maps, normalization_masks)] def save_predictions(prediction_maps, output_file, dataset_names): """ Saving probability maps to a given output H5 file. If 'average_channels' is set to True average the probability_maps across the the channel axis (useful in case where each channel predicts semantically the same thing). Args: prediction_maps (list): list of numpy array containing prediction maps in separate channels output_file (string): path to the output H5 file dataset_names (list): list of dataset names inside H5 file where the prediction maps will be saved """ assert len(prediction_maps) == len(dataset_names ), 'Each prediction map has to have a corresponding dataset name' logger.info(f'Saving predictions to: {output_file}...') with h5py.File(output_file, 'w') as output_h5: for prediction_map, dataset_name in zip(prediction_maps, dataset_names ): logger.info(f"Creating dataset '{dataset_name}'...") output_h5.create_dataset(dataset_name, data=prediction_map, compression='gzip') def _get_output_file(dataset, suffix='_predictions'): return f'{os.path.splitext(dataset.file_path)[0]}{suffix}.h5' def _get_dataset_names(config, number_of_datasets): dataset_names = config.get('dest_dataset_name') print(dataset_names) if dataset_names is not None: if isinstance(dataset_names, str): return [dataset_names] else: return dataset_names else: default_prefix = 'predictions' if number_of_datasets == 1: return [default_prefix] else: return [f'{default_prefix}{i}' for i in range(number_of_datasets)] def main(): config = load_config() print(config) model = get_model(config) model_path = config['model_path'] logger.info(f'Loading model from {model_path}...') utils.load_checkpoint(model_path, model) logger.info(f"Sending the model to '{config['device']}'") model = model.to(config['device']) logger.info('Loading HDF5 datasets...') for test_dataset in get_test_datasets(config): logger.info(f"Processing '{test_dataset.file_path}'...") predictions = predict(model, test_dataset, config) output_file = _get_output_file(test_dataset) dataset_names = _get_dataset_names(config, len(predictions)) save_predictions(predictions, output_file, dataset_names) if __name__ == '__main__': main()
<mask token> logger = utils.get_logger('UNet3DPredictor') def predict(model, hdf5_dataset, config): """ Return prediction masks by applying the model on the given dataset Args: model (Unet3D): trained 3D UNet model used for prediction hdf5_dataset (torch.utils.data.Dataset): input dataset out_channels (int): number of channels in the network output device (torch.Device): device to run the prediction on Returns: prediction_maps (numpy array): prediction masks for given dataset """ def _volume_shape(hdf5_dataset): raw = hdf5_dataset.raws[0] if raw.ndim == 3: return raw.shape else: return raw.shape[1:] out_channels = config['model'].get('out_channels') if out_channels is None: out_channels = config['model']['dt_out_channels'] prediction_channel = config.get('prediction_channel', None) if prediction_channel is not None: logger.info( f"Using only channel '{prediction_channel}' from the network output" ) device = config['device'] output_heads = config['model'].get('output_heads', 1) logger.info(f'Running prediction on {len(hdf5_dataset)} patches...') volume_shape = _volume_shape(hdf5_dataset) if prediction_channel is None: prediction_maps_shape = (out_channels,) + volume_shape else: prediction_maps_shape = (1,) + volume_shape logger.info( f'The shape of the output prediction maps (CDHW): {prediction_maps_shape}' ) prediction_maps = [np.zeros(prediction_maps_shape, dtype='float32') for _ in range(output_heads)] normalization_masks = [np.zeros(prediction_maps_shape, dtype='float32') for _ in range(output_heads)] model.eval() with torch.no_grad(): for patch, index in hdf5_dataset: logger.info(f'Predicting slice:{index}') if prediction_channel is None: channel_slice = slice(0, out_channels) else: channel_slice = slice(0, 1) index = index[1:] index = (channel_slice,) + index patch = patch.unsqueeze(dim=0).to(device) predictions = model(patch) if output_heads == 1: predictions = [predictions] for prediction, prediction_map, normalization_mask in zip( predictions, prediction_maps, normalization_masks): prediction = prediction.squeeze(dim=0).cpu().numpy() if prediction_channel is not None: logger.info(f"Using channel '{prediction_channel}'...") prediction = np.expand_dims(prediction[ prediction_channel], axis=0) u_prediction, u_index = utils.unpad(prediction, index, volume_shape) prediction_map[u_index] += u_prediction normalization_mask[u_index] += 1 return [(prediction_map / normalization_mask) for prediction_map, normalization_mask in zip(prediction_maps, normalization_masks)] def save_predictions(prediction_maps, output_file, dataset_names): """ Saving probability maps to a given output H5 file. If 'average_channels' is set to True average the probability_maps across the the channel axis (useful in case where each channel predicts semantically the same thing). Args: prediction_maps (list): list of numpy array containing prediction maps in separate channels output_file (string): path to the output H5 file dataset_names (list): list of dataset names inside H5 file where the prediction maps will be saved """ assert len(prediction_maps) == len(dataset_names ), 'Each prediction map has to have a corresponding dataset name' logger.info(f'Saving predictions to: {output_file}...') with h5py.File(output_file, 'w') as output_h5: for prediction_map, dataset_name in zip(prediction_maps, dataset_names ): logger.info(f"Creating dataset '{dataset_name}'...") output_h5.create_dataset(dataset_name, data=prediction_map, compression='gzip') def _get_output_file(dataset, suffix='_predictions'): return f'{os.path.splitext(dataset.file_path)[0]}{suffix}.h5' def _get_dataset_names(config, number_of_datasets): dataset_names = config.get('dest_dataset_name') print(dataset_names) if dataset_names is not None: if isinstance(dataset_names, str): return [dataset_names] else: return dataset_names else: default_prefix = 'predictions' if number_of_datasets == 1: return [default_prefix] else: return [f'{default_prefix}{i}' for i in range(number_of_datasets)] def main(): config = load_config() print(config) model = get_model(config) model_path = config['model_path'] logger.info(f'Loading model from {model_path}...') utils.load_checkpoint(model_path, model) logger.info(f"Sending the model to '{config['device']}'") model = model.to(config['device']) logger.info('Loading HDF5 datasets...') for test_dataset in get_test_datasets(config): logger.info(f"Processing '{test_dataset.file_path}'...") predictions = predict(model, test_dataset, config) output_file = _get_output_file(test_dataset) dataset_names = _get_dataset_names(config, len(predictions)) save_predictions(predictions, output_file, dataset_names) if __name__ == '__main__': main()
import os import h5py import numpy as np import torch from datasets.hdf5 import get_test_datasets from unet3d import utils from unet3d.config import load_config from unet3d.model import get_model logger = utils.get_logger('UNet3DPredictor') def predict(model, hdf5_dataset, config): """ Return prediction masks by applying the model on the given dataset Args: model (Unet3D): trained 3D UNet model used for prediction hdf5_dataset (torch.utils.data.Dataset): input dataset out_channels (int): number of channels in the network output device (torch.Device): device to run the prediction on Returns: prediction_maps (numpy array): prediction masks for given dataset """ def _volume_shape(hdf5_dataset): raw = hdf5_dataset.raws[0] if raw.ndim == 3: return raw.shape else: return raw.shape[1:] out_channels = config['model'].get('out_channels') if out_channels is None: out_channels = config['model']['dt_out_channels'] prediction_channel = config.get('prediction_channel', None) if prediction_channel is not None: logger.info( f"Using only channel '{prediction_channel}' from the network output" ) device = config['device'] output_heads = config['model'].get('output_heads', 1) logger.info(f'Running prediction on {len(hdf5_dataset)} patches...') volume_shape = _volume_shape(hdf5_dataset) if prediction_channel is None: prediction_maps_shape = (out_channels,) + volume_shape else: prediction_maps_shape = (1,) + volume_shape logger.info( f'The shape of the output prediction maps (CDHW): {prediction_maps_shape}' ) prediction_maps = [np.zeros(prediction_maps_shape, dtype='float32') for _ in range(output_heads)] normalization_masks = [np.zeros(prediction_maps_shape, dtype='float32') for _ in range(output_heads)] model.eval() with torch.no_grad(): for patch, index in hdf5_dataset: logger.info(f'Predicting slice:{index}') if prediction_channel is None: channel_slice = slice(0, out_channels) else: channel_slice = slice(0, 1) index = index[1:] index = (channel_slice,) + index patch = patch.unsqueeze(dim=0).to(device) predictions = model(patch) if output_heads == 1: predictions = [predictions] for prediction, prediction_map, normalization_mask in zip( predictions, prediction_maps, normalization_masks): prediction = prediction.squeeze(dim=0).cpu().numpy() if prediction_channel is not None: logger.info(f"Using channel '{prediction_channel}'...") prediction = np.expand_dims(prediction[ prediction_channel], axis=0) u_prediction, u_index = utils.unpad(prediction, index, volume_shape) prediction_map[u_index] += u_prediction normalization_mask[u_index] += 1 return [(prediction_map / normalization_mask) for prediction_map, normalization_mask in zip(prediction_maps, normalization_masks)] def save_predictions(prediction_maps, output_file, dataset_names): """ Saving probability maps to a given output H5 file. If 'average_channels' is set to True average the probability_maps across the the channel axis (useful in case where each channel predicts semantically the same thing). Args: prediction_maps (list): list of numpy array containing prediction maps in separate channels output_file (string): path to the output H5 file dataset_names (list): list of dataset names inside H5 file where the prediction maps will be saved """ assert len(prediction_maps) == len(dataset_names ), 'Each prediction map has to have a corresponding dataset name' logger.info(f'Saving predictions to: {output_file}...') with h5py.File(output_file, 'w') as output_h5: for prediction_map, dataset_name in zip(prediction_maps, dataset_names ): logger.info(f"Creating dataset '{dataset_name}'...") output_h5.create_dataset(dataset_name, data=prediction_map, compression='gzip') def _get_output_file(dataset, suffix='_predictions'): return f'{os.path.splitext(dataset.file_path)[0]}{suffix}.h5' def _get_dataset_names(config, number_of_datasets): dataset_names = config.get('dest_dataset_name') print(dataset_names) if dataset_names is not None: if isinstance(dataset_names, str): return [dataset_names] else: return dataset_names else: default_prefix = 'predictions' if number_of_datasets == 1: return [default_prefix] else: return [f'{default_prefix}{i}' for i in range(number_of_datasets)] def main(): config = load_config() print(config) model = get_model(config) model_path = config['model_path'] logger.info(f'Loading model from {model_path}...') utils.load_checkpoint(model_path, model) logger.info(f"Sending the model to '{config['device']}'") model = model.to(config['device']) logger.info('Loading HDF5 datasets...') for test_dataset in get_test_datasets(config): logger.info(f"Processing '{test_dataset.file_path}'...") predictions = predict(model, test_dataset, config) output_file = _get_output_file(test_dataset) dataset_names = _get_dataset_names(config, len(predictions)) save_predictions(predictions, output_file, dataset_names) if __name__ == '__main__': main()
import os import h5py import numpy as np import torch from datasets.hdf5 import get_test_datasets from unet3d import utils from unet3d.config import load_config from unet3d.model import get_model logger = utils.get_logger('UNet3DPredictor') def predict(model, hdf5_dataset, config): """ Return prediction masks by applying the model on the given dataset Args: model (Unet3D): trained 3D UNet model used for prediction hdf5_dataset (torch.utils.data.Dataset): input dataset out_channels (int): number of channels in the network output device (torch.Device): device to run the prediction on Returns: prediction_maps (numpy array): prediction masks for given dataset """ def _volume_shape(hdf5_dataset): # TODO: support multiple internal datasets raw = hdf5_dataset.raws[0] if raw.ndim == 3: return raw.shape else: return raw.shape[1:] out_channels = config['model'].get('out_channels') if out_channels is None: out_channels = config['model']['dt_out_channels'] prediction_channel = config.get('prediction_channel', None) if prediction_channel is not None: logger.info(f"Using only channel '{prediction_channel}' from the network output") device = config['device'] output_heads = config['model'].get('output_heads', 1) logger.info(f'Running prediction on {len(hdf5_dataset)} patches...') # dimensionality of the the output (CxDxHxW) volume_shape = _volume_shape(hdf5_dataset) if prediction_channel is None: prediction_maps_shape = (out_channels,) + volume_shape else: # single channel prediction map prediction_maps_shape = (1,) + volume_shape logger.info(f'The shape of the output prediction maps (CDHW): {prediction_maps_shape}') # initialize the output prediction arrays prediction_maps = [np.zeros(prediction_maps_shape, dtype='float32') for _ in range(output_heads)] # initialize normalization mask in order to average out probabilities of overlapping patches normalization_masks = [np.zeros(prediction_maps_shape, dtype='float32') for _ in range(output_heads)] # Sets the module in evaluation mode explicitly, otherwise the final Softmax/Sigmoid won't be applied! model.eval() # Run predictions on the entire input dataset with torch.no_grad(): for patch, index in hdf5_dataset: logger.info(f'Predicting slice:{index}') # save patch index: (C,D,H,W) if prediction_channel is None: channel_slice = slice(0, out_channels) else: channel_slice = slice(0, 1) index = index[1:] #dk: support input image with mulitple dims index = (channel_slice,) + index # convert patch to torch tensor NxCxDxHxW and send to device we're using batch size of 1 patch = patch.unsqueeze(dim=0).to(device) # forward pass predictions = model(patch) # wrap predictions into a list if there is only one output head from the network if output_heads == 1: predictions = [predictions] for prediction, prediction_map, normalization_mask in zip(predictions, prediction_maps, normalization_masks): # squeeze batch dimension and convert back to numpy array prediction = prediction.squeeze(dim=0).cpu().numpy() if prediction_channel is not None: # use only the 'prediction_channel' logger.info(f"Using channel '{prediction_channel}'...") prediction = np.expand_dims(prediction[prediction_channel], axis=0) # unpad in order to avoid block artifacts in the output probability maps u_prediction, u_index = utils.unpad(prediction, index, volume_shape) # accumulate probabilities into the output prediction array prediction_map[u_index] += u_prediction # count voxel visits for normalization normalization_mask[u_index] += 1 return [prediction_map / normalization_mask for prediction_map, normalization_mask in zip(prediction_maps, normalization_masks)] def save_predictions(prediction_maps, output_file, dataset_names): """ Saving probability maps to a given output H5 file. If 'average_channels' is set to True average the probability_maps across the the channel axis (useful in case where each channel predicts semantically the same thing). Args: prediction_maps (list): list of numpy array containing prediction maps in separate channels output_file (string): path to the output H5 file dataset_names (list): list of dataset names inside H5 file where the prediction maps will be saved """ assert len(prediction_maps) == len(dataset_names), 'Each prediction map has to have a corresponding dataset name' logger.info(f'Saving predictions to: {output_file}...') with h5py.File(output_file, "w") as output_h5: for prediction_map, dataset_name in zip(prediction_maps, dataset_names): logger.info(f"Creating dataset '{dataset_name}'...") output_h5.create_dataset(dataset_name, data=prediction_map, compression="gzip") def _get_output_file(dataset, suffix='_predictions'): return f'{os.path.splitext(dataset.file_path)[0]}{suffix}.h5' def _get_dataset_names(config, number_of_datasets): dataset_names = config.get('dest_dataset_name') print(dataset_names) if dataset_names is not None: if isinstance(dataset_names, str): return [dataset_names] else: return dataset_names else: default_prefix = 'predictions' if number_of_datasets == 1: return [default_prefix] else: return [f'{default_prefix}{i}' for i in range(number_of_datasets)] def main(): # Load configuration config = load_config() print(config) # Create the model model = get_model(config) # Load model state model_path = config['model_path'] logger.info(f'Loading model from {model_path}...') utils.load_checkpoint(model_path, model) logger.info(f"Sending the model to '{config['device']}'") model = model.to(config['device']) logger.info('Loading HDF5 datasets...') for test_dataset in get_test_datasets(config): logger.info(f"Processing '{test_dataset.file_path}'...") # run the model prediction on the entire dataset predictions = predict(model, test_dataset, config) # save the resulting probability maps output_file = _get_output_file(test_dataset) dataset_names = _get_dataset_names(config, len(predictions)) save_predictions(predictions, output_file, dataset_names) if __name__ == '__main__': main()
[ 2, 6, 7, 8, 9 ]
1,781
fcc6dd61b94d5fa7f088fc75b748d976d1b30fa5
<mask token> def possibleNumber(digitSet, n): res = [[]] pools = [digitSet] * n for pool in pools: res = [(x + [y]) for x in res for y in pool] for prod in res: yield prod <mask token>
<mask token> def possibleNumber(digitSet, n): res = [[]] pools = [digitSet] * n for pool in pools: res = [(x + [y]) for x in res for y in pool] for prod in res: yield prod <mask token> for i in res: print(i)
<mask token> def possibleNumber(digitSet, n): res = [[]] pools = [digitSet] * n for pool in pools: res = [(x + [y]) for x in res for y in pool] for prod in res: yield prod res = possibleNumber('23', 5) for i in res: print(i)
import itertools def possibleNumber(digitSet, n): res = [[]] pools = [digitSet] * n for pool in pools: res = [(x + [y]) for x in res for y in pool] for prod in res: yield prod res = possibleNumber('23', 5) for i in res: print(i)
import itertools def possibleNumber(digitSet, n): res = [[]] pools = [digitSet] * n # print(pools) for pool in pools: # print(res) res = [ x + [y] for x in res for y in pool] for prod in res: yield prod # def possibleNumber(digitSet, n): # res = [] # temp = itertools.product(digitSet, repeat = n) # for item in temp: # res.append(item) # return res res = possibleNumber('23', 5) for i in res: print(i)
[ 1, 2, 3, 4, 5 ]
1,782
8909ee9c54a234222a41249e1f3005fd86e21cf0
<mask token> class Solution: <mask token> def addLists(self, l1, l2): res = ListNode(0) p = res carry = 0 while l1 or l2 or carry: num = 0 if l1: num += l1.val l1 = l1.next if l2: num += l2.val l2 = l2.next num += carry digit, carry = num % 10, num // 10 node = ListNode(digit) p.next = node p = p.next return res.next
<mask token> class Solution: """ @param l1: the first list @param l2: the second list @return: the sum list of l1 and l2 """ def addLists(self, l1, l2): res = ListNode(0) p = res carry = 0 while l1 or l2 or carry: num = 0 if l1: num += l1.val l1 = l1.next if l2: num += l2.val l2 = l2.next num += carry digit, carry = num % 10, num // 10 node = ListNode(digit) p.next = node p = p.next return res.next
class ListNode(object): <mask token> class Solution: """ @param l1: the first list @param l2: the second list @return: the sum list of l1 and l2 """ def addLists(self, l1, l2): res = ListNode(0) p = res carry = 0 while l1 or l2 or carry: num = 0 if l1: num += l1.val l1 = l1.next if l2: num += l2.val l2 = l2.next num += carry digit, carry = num % 10, num // 10 node = ListNode(digit) p.next = node p = p.next return res.next
class ListNode(object): def __init__(self, val, next=None): self.val = val self.next = next class Solution: """ @param l1: the first list @param l2: the second list @return: the sum list of l1 and l2 """ def addLists(self, l1, l2): res = ListNode(0) p = res carry = 0 while l1 or l2 or carry: num = 0 if l1: num += l1.val l1 = l1.next if l2: num += l2.val l2 = l2.next num += carry digit, carry = num % 10, num // 10 node = ListNode(digit) p.next = node p = p.next return res.next
null
[ 2, 3, 4, 5 ]
1,783
6ea41b0a76ddde04bcaffacea604f218eac9ac71
# encoding=utf-8 ''' Finding log2() using sqrt() 原理: sqrt( 2**l * 2**h ) = 2**( (l+h)/2 ) 而 a+b /2 正好是binary search, 与sqrt对应上了 题目应当是要求 意思就是找到2**x == y ''' class Solution: def log2(self, val): if 0<val<1: return -self.log2(1.0/val) if val==1: return 0 h = 1; accuracy = 0.001; cur =2 #val>1 才是普通情况 while cur < val: h+=1 cur+=cur l = h-1 #如果是求整数, 已经求得结果了。 lval = cur/2; hval = cur while l<h: m = (l+h)/2.0 midVal = (lval * hval)**0.5 if abs(midVal- val)<accuracy: return m elif midVal> val: h = m; hval = midVal else: l = m; lval = midVal s = Solution() print s.log2(13)
null
null
null
null
[ 0 ]
1,784
983e3b2902fe3bc701167da2f308fdaed612ae84
<mask token>
class DuplicatedBlockException(Exception): <mask token>
class DuplicatedBlockException(Exception): code = 'duplicated_block_exception'
null
null
[ 0, 1, 2 ]
1,785
76d2c80c673f9a0444e72721909a51479ff35521
<mask token> class MockTracer(Tracer): def __init__(self, scope_manager: (ScopeManager | None)=...) ->None: ... def register_propagator(self, format: str, propagator: Propagator) ->None: ... <mask token> <mask token>
<mask token> class MockTracer(Tracer): def __init__(self, scope_manager: (ScopeManager | None)=...) ->None: ... def register_propagator(self, format: str, propagator: Propagator) ->None: ... <mask token> def reset(self) ->None: ...
<mask token> class MockTracer(Tracer): def __init__(self, scope_manager: (ScopeManager | None)=...) ->None: ... def register_propagator(self, format: str, propagator: Propagator) ->None: ... def finished_spans(self) ->list[Span]: ... def reset(self) ->None: ...
from ..scope_manager import ScopeManager from ..span import Span from ..tracer import Tracer from .propagator import Propagator class MockTracer(Tracer): def __init__(self, scope_manager: (ScopeManager | None)=...) ->None: ... def register_propagator(self, format: str, propagator: Propagator) ->None: ... def finished_spans(self) ->list[Span]: ... def reset(self) ->None: ...
from ..scope_manager import ScopeManager from ..span import Span from ..tracer import Tracer from .propagator import Propagator class MockTracer(Tracer): def __init__(self, scope_manager: ScopeManager | None = ...) -> None: ... def register_propagator(self, format: str, propagator: Propagator) -> None: ... def finished_spans(self) -> list[Span]: ... def reset(self) -> None: ...
[ 3, 4, 5, 6, 7 ]
1,786
7413d4e98f79bf7b389a6305257833293714fc81
<mask token>
{'variables': {'chromium_code': 1}, 'includes': ['ots-common.gypi'], 'targets': [{'target_name': 'ots', 'type': '<(library)', 'sources': [ '<@(ots_sources)'], 'include_dirs': ['<@(ots_include_dirs)'], 'direct_dependent_settings': {'include_dirs': ['<@(ots_include_dirs)']}, 'dependencies': ['../zlib/zlib.gyp:zlib']}]}
# Copyright (c) 2009 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. { 'variables': { 'chromium_code': 1, }, 'includes': [ 'ots-common.gypi', ], 'targets': [ { 'target_name': 'ots', 'type': '<(library)', 'sources': [ '<@(ots_sources)', ], 'include_dirs': [ '<@(ots_include_dirs)', ], 'direct_dependent_settings': { 'include_dirs': [ '<@(ots_include_dirs)', ], }, 'dependencies': [ '../zlib/zlib.gyp:zlib', ], }, ], }
null
null
[ 0, 1, 2 ]
1,787
d807a363c08d117c848ffdc0a768c696ea7746bd
<mask token> def train_model_snapshot(model, criterion, lr, dataloaders, dataset_sizes, device, num_cycles, num_epochs_per_cycle): since = time.time() best_model_wts = copy.deepcopy(model.state_dict()) best_acc = 0.0 best_loss = 1000000.0 model_w_arr = [] prob = torch.zeros((dataset_sizes['val'], 3), dtype=torch.float32).to( device) lbl = torch.zeros((dataset_sizes['val'],), dtype=torch.long).to(device) for cycle in range(num_cycles): optimizer = optim.SGD(model.parameters(), lr=lr, momentum=0.9) scheduler = lr_scheduler.CosineAnnealingLR(optimizer, num_epochs_per_cycle * len(dataloaders['train'])) for epoch in range(num_epochs_per_cycle): for phase in ['train', 'val']: if phase == 'train': model.train() else: model.eval() running_loss = 0.0 running_corrects = 0 idx = 0 for inputs, labels in dataloaders[phase]: inputs = inputs.to(device) labels = labels.to(device) optimizer.zero_grad() with torch.set_grad_enabled(phase == 'train'): outputs = model(inputs) _, preds = torch.max(outputs, 1) if (epoch == num_epochs_per_cycle - 1 and phase == 'val'): prob[idx:idx + inputs.shape[0]] += F.softmax( outputs, dim=1) lbl[idx:idx + inputs.shape[0]] = labels idx += inputs.shape[0] loss = criterion(outputs, labels) if phase == 'train': loss.backward() optimizer.step() scheduler.step() running_loss += loss.item() * inputs.size(0) running_corrects += torch.sum(preds == labels.data) epoch_loss = running_loss / dataset_sizes[phase] epoch_acc = running_corrects.double() / dataset_sizes[phase] if phase == 'val' and epoch_loss < best_loss: best_loss = epoch_loss best_model_wts = copy.deepcopy(model.state_dict()) model_w_arr.append(copy.deepcopy(model.state_dict())) prob /= num_cycles ensemble_loss = F.nll_loss(torch.log(prob), lbl) ensemble_loss = ensemble_loss.item() time_elapsed = time.time() - since model_arr = [] for weights in model_w_arr: model.load_state_dict(weights) model_arr.append(model) return model_arr, ensemble_loss, best_loss, prob def test(models_arr, loader, device): res = np.zeros((610, 3), dtype=np.float32) for model in models_arr: model.eval() res_arr = [] for inputs, _ in loader: inputs = inputs.to(device) with torch.set_grad_enabled(False): outputs = F.softmax(model(inputs), dim=1) res_arr.append(outputs.detach().cpu().numpy()) res_arr = np.concatenate(res_arr, axis=0) res += res_arr return res / len(models_arr) <mask token>
<mask token> def train_model_snapshot(model, criterion, lr, dataloaders, dataset_sizes, device, num_cycles, num_epochs_per_cycle): since = time.time() best_model_wts = copy.deepcopy(model.state_dict()) best_acc = 0.0 best_loss = 1000000.0 model_w_arr = [] prob = torch.zeros((dataset_sizes['val'], 3), dtype=torch.float32).to( device) lbl = torch.zeros((dataset_sizes['val'],), dtype=torch.long).to(device) for cycle in range(num_cycles): optimizer = optim.SGD(model.parameters(), lr=lr, momentum=0.9) scheduler = lr_scheduler.CosineAnnealingLR(optimizer, num_epochs_per_cycle * len(dataloaders['train'])) for epoch in range(num_epochs_per_cycle): for phase in ['train', 'val']: if phase == 'train': model.train() else: model.eval() running_loss = 0.0 running_corrects = 0 idx = 0 for inputs, labels in dataloaders[phase]: inputs = inputs.to(device) labels = labels.to(device) optimizer.zero_grad() with torch.set_grad_enabled(phase == 'train'): outputs = model(inputs) _, preds = torch.max(outputs, 1) if (epoch == num_epochs_per_cycle - 1 and phase == 'val'): prob[idx:idx + inputs.shape[0]] += F.softmax( outputs, dim=1) lbl[idx:idx + inputs.shape[0]] = labels idx += inputs.shape[0] loss = criterion(outputs, labels) if phase == 'train': loss.backward() optimizer.step() scheduler.step() running_loss += loss.item() * inputs.size(0) running_corrects += torch.sum(preds == labels.data) epoch_loss = running_loss / dataset_sizes[phase] epoch_acc = running_corrects.double() / dataset_sizes[phase] if phase == 'val' and epoch_loss < best_loss: best_loss = epoch_loss best_model_wts = copy.deepcopy(model.state_dict()) model_w_arr.append(copy.deepcopy(model.state_dict())) prob /= num_cycles ensemble_loss = F.nll_loss(torch.log(prob), lbl) ensemble_loss = ensemble_loss.item() time_elapsed = time.time() - since model_arr = [] for weights in model_w_arr: model.load_state_dict(weights) model_arr.append(model) return model_arr, ensemble_loss, best_loss, prob def test(models_arr, loader, device): res = np.zeros((610, 3), dtype=np.float32) for model in models_arr: model.eval() res_arr = [] for inputs, _ in loader: inputs = inputs.to(device) with torch.set_grad_enabled(False): outputs = F.softmax(model(inputs), dim=1) res_arr.append(outputs.detach().cpu().numpy()) res_arr = np.concatenate(res_arr, axis=0) res += res_arr return res / len(models_arr) <mask token> def read_test_data(p): imgs = [] labels = [] ids = [] for fname in os.listdir(p): img = Image.open(os.path.join(p, fname)) try: if not 'DMWVNR' in fname: exif = dict((ExifTags.TAGS[k], v) for k, v in img._getexif( ).items() if k in ExifTags.TAGS) if exif['Orientation'] == 3: img = img.rotate(180, expand=True) elif exif['Orientation'] == 6: img = img.rotate(270, expand=True) elif exif['Orientation'] == 8: img = img.rotate(90, expand=True) except: pass img = img.convert('RGB').resize((512, 512), Image.ANTIALIAS) imgs.append(np.array(img.copy())) labels.append(0) ids.append(fname.split('.')[0]) img.close() return imgs, labels, ids
<mask token> def train_model_snapshot(model, criterion, lr, dataloaders, dataset_sizes, device, num_cycles, num_epochs_per_cycle): since = time.time() best_model_wts = copy.deepcopy(model.state_dict()) best_acc = 0.0 best_loss = 1000000.0 model_w_arr = [] prob = torch.zeros((dataset_sizes['val'], 3), dtype=torch.float32).to( device) lbl = torch.zeros((dataset_sizes['val'],), dtype=torch.long).to(device) for cycle in range(num_cycles): optimizer = optim.SGD(model.parameters(), lr=lr, momentum=0.9) scheduler = lr_scheduler.CosineAnnealingLR(optimizer, num_epochs_per_cycle * len(dataloaders['train'])) for epoch in range(num_epochs_per_cycle): for phase in ['train', 'val']: if phase == 'train': model.train() else: model.eval() running_loss = 0.0 running_corrects = 0 idx = 0 for inputs, labels in dataloaders[phase]: inputs = inputs.to(device) labels = labels.to(device) optimizer.zero_grad() with torch.set_grad_enabled(phase == 'train'): outputs = model(inputs) _, preds = torch.max(outputs, 1) if (epoch == num_epochs_per_cycle - 1 and phase == 'val'): prob[idx:idx + inputs.shape[0]] += F.softmax( outputs, dim=1) lbl[idx:idx + inputs.shape[0]] = labels idx += inputs.shape[0] loss = criterion(outputs, labels) if phase == 'train': loss.backward() optimizer.step() scheduler.step() running_loss += loss.item() * inputs.size(0) running_corrects += torch.sum(preds == labels.data) epoch_loss = running_loss / dataset_sizes[phase] epoch_acc = running_corrects.double() / dataset_sizes[phase] if phase == 'val' and epoch_loss < best_loss: best_loss = epoch_loss best_model_wts = copy.deepcopy(model.state_dict()) model_w_arr.append(copy.deepcopy(model.state_dict())) prob /= num_cycles ensemble_loss = F.nll_loss(torch.log(prob), lbl) ensemble_loss = ensemble_loss.item() time_elapsed = time.time() - since model_arr = [] for weights in model_w_arr: model.load_state_dict(weights) model_arr.append(model) return model_arr, ensemble_loss, best_loss, prob def test(models_arr, loader, device): res = np.zeros((610, 3), dtype=np.float32) for model in models_arr: model.eval() res_arr = [] for inputs, _ in loader: inputs = inputs.to(device) with torch.set_grad_enabled(False): outputs = F.softmax(model(inputs), dim=1) res_arr.append(outputs.detach().cpu().numpy()) res_arr = np.concatenate(res_arr, axis=0) res += res_arr return res / len(models_arr) def read_train_data(p): imgs = [] labels = [] for i, lbl in enumerate(os.listdir(p)): for fname in os.listdir(os.path.join(p, lbl)): img = Image.open(os.path.join(p, lbl, fname)) try: exif = dict((ExifTags.TAGS[k], v) for k, v in img._getexif( ).items() if k in ExifTags.TAGS) if exif['Orientation'] == 3: img = img.rotate(180, expand=True) elif exif['Orientation'] == 6: img = img.rotate(270, expand=True) elif exif['Orientation'] == 8: img = img.rotate(90, expand=True) except: pass img = np.array(img.convert('RGB').resize((512, 512), Image. ANTIALIAS)) imgs.append(img) labels.append(i) return imgs, labels def read_test_data(p): imgs = [] labels = [] ids = [] for fname in os.listdir(p): img = Image.open(os.path.join(p, fname)) try: if not 'DMWVNR' in fname: exif = dict((ExifTags.TAGS[k], v) for k, v in img._getexif( ).items() if k in ExifTags.TAGS) if exif['Orientation'] == 3: img = img.rotate(180, expand=True) elif exif['Orientation'] == 6: img = img.rotate(270, expand=True) elif exif['Orientation'] == 8: img = img.rotate(90, expand=True) except: pass img = img.convert('RGB').resize((512, 512), Image.ANTIALIAS) imgs.append(np.array(img.copy())) labels.append(0) ids.append(fname.split('.')[0]) img.close() return imgs, labels, ids
import torch import torch.nn as nn import torch.optim as optim from torch.optim import lr_scheduler import numpy as np import torchvision from torchvision import datasets, models, transforms import time import os import copy import torch.nn.functional as F from PIL import Image, ExifTags def train_model_snapshot(model, criterion, lr, dataloaders, dataset_sizes, device, num_cycles, num_epochs_per_cycle): since = time.time() best_model_wts = copy.deepcopy(model.state_dict()) best_acc = 0.0 best_loss = 1000000.0 model_w_arr = [] prob = torch.zeros((dataset_sizes['val'], 3), dtype=torch.float32).to( device) lbl = torch.zeros((dataset_sizes['val'],), dtype=torch.long).to(device) for cycle in range(num_cycles): optimizer = optim.SGD(model.parameters(), lr=lr, momentum=0.9) scheduler = lr_scheduler.CosineAnnealingLR(optimizer, num_epochs_per_cycle * len(dataloaders['train'])) for epoch in range(num_epochs_per_cycle): for phase in ['train', 'val']: if phase == 'train': model.train() else: model.eval() running_loss = 0.0 running_corrects = 0 idx = 0 for inputs, labels in dataloaders[phase]: inputs = inputs.to(device) labels = labels.to(device) optimizer.zero_grad() with torch.set_grad_enabled(phase == 'train'): outputs = model(inputs) _, preds = torch.max(outputs, 1) if (epoch == num_epochs_per_cycle - 1 and phase == 'val'): prob[idx:idx + inputs.shape[0]] += F.softmax( outputs, dim=1) lbl[idx:idx + inputs.shape[0]] = labels idx += inputs.shape[0] loss = criterion(outputs, labels) if phase == 'train': loss.backward() optimizer.step() scheduler.step() running_loss += loss.item() * inputs.size(0) running_corrects += torch.sum(preds == labels.data) epoch_loss = running_loss / dataset_sizes[phase] epoch_acc = running_corrects.double() / dataset_sizes[phase] if phase == 'val' and epoch_loss < best_loss: best_loss = epoch_loss best_model_wts = copy.deepcopy(model.state_dict()) model_w_arr.append(copy.deepcopy(model.state_dict())) prob /= num_cycles ensemble_loss = F.nll_loss(torch.log(prob), lbl) ensemble_loss = ensemble_loss.item() time_elapsed = time.time() - since model_arr = [] for weights in model_w_arr: model.load_state_dict(weights) model_arr.append(model) return model_arr, ensemble_loss, best_loss, prob def test(models_arr, loader, device): res = np.zeros((610, 3), dtype=np.float32) for model in models_arr: model.eval() res_arr = [] for inputs, _ in loader: inputs = inputs.to(device) with torch.set_grad_enabled(False): outputs = F.softmax(model(inputs), dim=1) res_arr.append(outputs.detach().cpu().numpy()) res_arr = np.concatenate(res_arr, axis=0) res += res_arr return res / len(models_arr) def read_train_data(p): imgs = [] labels = [] for i, lbl in enumerate(os.listdir(p)): for fname in os.listdir(os.path.join(p, lbl)): img = Image.open(os.path.join(p, lbl, fname)) try: exif = dict((ExifTags.TAGS[k], v) for k, v in img._getexif( ).items() if k in ExifTags.TAGS) if exif['Orientation'] == 3: img = img.rotate(180, expand=True) elif exif['Orientation'] == 6: img = img.rotate(270, expand=True) elif exif['Orientation'] == 8: img = img.rotate(90, expand=True) except: pass img = np.array(img.convert('RGB').resize((512, 512), Image. ANTIALIAS)) imgs.append(img) labels.append(i) return imgs, labels def read_test_data(p): imgs = [] labels = [] ids = [] for fname in os.listdir(p): img = Image.open(os.path.join(p, fname)) try: if not 'DMWVNR' in fname: exif = dict((ExifTags.TAGS[k], v) for k, v in img._getexif( ).items() if k in ExifTags.TAGS) if exif['Orientation'] == 3: img = img.rotate(180, expand=True) elif exif['Orientation'] == 6: img = img.rotate(270, expand=True) elif exif['Orientation'] == 8: img = img.rotate(90, expand=True) except: pass img = img.convert('RGB').resize((512, 512), Image.ANTIALIAS) imgs.append(np.array(img.copy())) labels.append(0) ids.append(fname.split('.')[0]) img.close() return imgs, labels, ids
import torch import torch.nn as nn import torch.optim as optim from torch.optim import lr_scheduler import numpy as np import torchvision from torchvision import datasets, models, transforms #import matplotlib.pyplot as plt import time import os import copy import torch.nn.functional as F from PIL import Image, ExifTags def train_model_snapshot(model, criterion, lr, dataloaders, dataset_sizes, device, num_cycles, num_epochs_per_cycle): since = time.time() best_model_wts = copy.deepcopy(model.state_dict()) best_acc = 0.0 best_loss = 1000000.0 model_w_arr = [] prob = torch.zeros((dataset_sizes['val'], 3), dtype = torch.float32).to(device) lbl = torch.zeros((dataset_sizes['val'],), dtype = torch.long).to(device) for cycle in range(num_cycles): optimizer = optim.SGD(model.parameters(), lr=lr, momentum=0.9)#, weight_decay = 0.0005) scheduler = lr_scheduler.CosineAnnealingLR(optimizer, num_epochs_per_cycle*len(dataloaders['train'])) for epoch in range(num_epochs_per_cycle): #print('Cycle {}: Epoch {}/{}'.format(cycle, epoch, num_epochs_per_cycle - 1)) #print('-' * 10) # Each epoch has a training and validation phase for phase in ['train', 'val']: if phase == 'train': model.train() # Set model to training mode else: model.eval() # Set model to evaluate mode running_loss = 0.0 running_corrects = 0 idx = 0 # Iterate over data. for inputs, labels in dataloaders[phase]: inputs = inputs.to(device) labels = labels.to(device) # zero the parameter gradients optimizer.zero_grad() # forward # track history if only in train with torch.set_grad_enabled(phase == 'train'): outputs = model(inputs) _, preds = torch.max(outputs, 1) if (epoch == num_epochs_per_cycle-1) and (phase == 'val'): prob[idx:idx+inputs.shape[0]] += F.softmax(outputs, dim = 1) lbl[idx:idx+inputs.shape[0]] = labels idx += inputs.shape[0] loss = criterion(outputs, labels) # backward + optimize only if in training phase if phase == 'train': loss.backward() optimizer.step() scheduler.step() #print(optimizer.param_groups[0]['lr']) # statistics running_loss += loss.item() * inputs.size(0) running_corrects += torch.sum(preds == labels.data) epoch_loss = running_loss / dataset_sizes[phase] epoch_acc = running_corrects.double() / dataset_sizes[phase] #print('{} Loss: {:.4f} Acc: {:.4f}'.format( # phase, epoch_loss, epoch_acc)) # deep copy the model if phase == 'val' and epoch_loss < best_loss: best_loss = epoch_loss best_model_wts = copy.deepcopy(model.state_dict()) #print() model_w_arr.append(copy.deepcopy(model.state_dict())) prob /= num_cycles ensemble_loss = F.nll_loss(torch.log(prob), lbl) ensemble_loss = ensemble_loss.item() time_elapsed = time.time() - since #print('Training complete in {:.0f}m {:.0f}s'.format( # time_elapsed // 60, time_elapsed % 60)) #print('Ensemble Loss : {:4f}, Best val Loss: {:4f}'.format(ensemble_loss, best_loss)) # load best model weights model_arr =[] for weights in model_w_arr: model.load_state_dict(weights) model_arr.append(model) return model_arr, ensemble_loss, best_loss, prob def test(models_arr, loader, device): res = np.zeros((610, 3), dtype = np.float32) for model in models_arr: model.eval() res_arr = [] for inputs, _ in loader: inputs = inputs.to(device) # forward # track history if only in train with torch.set_grad_enabled(False): outputs = F.softmax(model(inputs), dim = 1) res_arr.append(outputs.detach().cpu().numpy()) res_arr = np.concatenate(res_arr, axis = 0) res += res_arr return res / len(models_arr) def read_train_data(p): imgs = [] labels = [] for i, lbl in enumerate(os.listdir(p)): for fname in os.listdir(os.path.join(p, lbl)): #read image img = Image.open(os.path.join(p, lbl, fname)) #rotate image to original view try: exif=dict((ExifTags.TAGS[k], v) for k, v in img._getexif().items() if k in ExifTags.TAGS) if exif['Orientation'] == 3: img=img.rotate(180, expand=True) elif exif['Orientation'] == 6: img=img.rotate(270, expand=True) elif exif['Orientation'] == 8: img=img.rotate(90, expand=True) except: pass #resize all images to the same size img = np.array(img.convert('RGB').resize((512,512), Image.ANTIALIAS)) imgs.append(img) labels.append(i) return imgs, labels def read_test_data(p): imgs = [] labels = [] ids = [] for fname in os.listdir(p): #read image img = Image.open(os.path.join(p, fname)) #rotate image to original view try: if not('DMWVNR' in fname): exif=dict((ExifTags.TAGS[k], v) for k, v in img._getexif().items() if k in ExifTags.TAGS) if exif['Orientation'] == 3: img=img.rotate(180, expand=True) elif exif['Orientation'] == 6: img=img.rotate(270, expand=True) elif exif['Orientation'] == 8: img=img.rotate(90, expand=True) except: pass #resize all images to the same size img = img.convert('RGB').resize((512,512), Image.ANTIALIAS) imgs.append(np.array(img.copy())) labels.append(0) ids.append(fname.split('.')[0]) img.close() return imgs, labels, ids
[ 2, 3, 4, 5, 6 ]
1,788
9817600759bc01e89f6c48bdc2d256651aedf74d
<mask token> def derf1(l, lp, kbt): return kbt / lp * (0.5 / ((1.0 - l) * (1.0 - l) * (1.0 - l)) + 1.0) def xdefWLC(kbt, l, p, f): l0 = 0.9999 lnew = l0 - (f1(l0, p, kbt) - f) / derf1(l0, p, kbt) if abs(f) < 1e-05: return 0.0 while abs(l0 - lnew) > 1e-05: l0 = lnew lnew = l0 - (f1(l0, p, kbt) - f) / derf1(l0, p, kbt) xdef = l * lnew return xdef def intfdexWLC(kbt, l, p, f): l0 = xdefWLC(kbt, l, p, f) return kbt * l / (4.0 * p) * (1.0 / (1.0 - l0 / l) + 2 * l0 * l0 / (l * l) - l0 / l) def stretching_energy(K, l, p, f, fmin): total = intfdexWLC(K, l, p, f) - intfdexWLC(K, l, p, fmin) return total <mask token>
<mask token> def f1(l, lp, kbt): return kbt / lp * (1.0 / (4 * (1.0 - l) * (1.0 - l)) - 0.25 + l) def derf1(l, lp, kbt): return kbt / lp * (0.5 / ((1.0 - l) * (1.0 - l) * (1.0 - l)) + 1.0) def xdefWLC(kbt, l, p, f): l0 = 0.9999 lnew = l0 - (f1(l0, p, kbt) - f) / derf1(l0, p, kbt) if abs(f) < 1e-05: return 0.0 while abs(l0 - lnew) > 1e-05: l0 = lnew lnew = l0 - (f1(l0, p, kbt) - f) / derf1(l0, p, kbt) xdef = l * lnew return xdef def intfdexWLC(kbt, l, p, f): l0 = xdefWLC(kbt, l, p, f) return kbt * l / (4.0 * p) * (1.0 / (1.0 - l0 / l) + 2 * l0 * l0 / (l * l) - l0 / l) def stretching_energy(K, l, p, f, fmin): total = intfdexWLC(K, l, p, f) - intfdexWLC(K, l, p, fmin) return total <mask token> for i in range(1, 2): force = forces[i] fmin = 0.0 DeltaG = n_atp * Deltamu - Deltabp + 2.0 * force * xdefWLC(K, l, p, force ) - 2.0 * stretching_energy(K, l, p, force, fmin) Ateo = (n_atp * Deltamu / (2 * xdefWLC(K, l, p, force)) - Deltabp / (2 * xdefWLC(K, l, p, force)) + force - 1.0 * stretching_energy(K, l, p, force, fmin) / xdefWLC(K, l, p, force)) / K print(Ateo) for j in range(0, 1): Dt = 10 * dt * 2 ** j dn = 10 * 2 ** j n = 0 folder = ( '/home/xavi/Documents/Helicase/Simulations/Simulation/Simulation_221018_4/FT/DATA/' ) filein = '%s%s_%dhist.txt' % (folder, force, dn) foldout = ( '/home/xavi/Documents/Helicase/Simulations/Simulation/Simulation_221018_4/FT/' ) data = np.loadtxt(filein) data2 = np.asarray(data) dx = data2[:, 0] pdx = data2[:, 1] dxav = 0.0 pdxav = 0.0 for k in range(0, len(dx)): dxav += dx[k] * pdx[k] pdxav += pdx[k] dxav /= pdxav pdx /= pdxav print(force) print(Dt) print(dxav) print('\n') epsilon = 0.08 delta = 0.4 y = [] x = [] for k in range(0, len(dx)): if (dx[k] <= 0.0) & (dx[k] <= -delta): for l in range(0, len(dx)): if (dx[l] >= 0.0) & (dx[l] >= delta): if np.absolute(dx[k] + dx[l]) <= epsilon: x.append(dx[l] / dxav) y.append(np.log(pdx[l] / pdx[k]) / dxav) """ print(x) #print(" ") #print(y) print(len(x)) print(" ") print(len(y)) #plt.plot(x,y, 'o') plt.plot(x,y) plt.show() """ fileout = '%s%s_%dFT.txt' % (foldout, force, dn) fout = open(fileout, 'w') for k in range(0, len(x)): fout.write('%.12f %.12f\n' % (x[k], y[k])) fout.close()
<mask token> def f1(l, lp, kbt): return kbt / lp * (1.0 / (4 * (1.0 - l) * (1.0 - l)) - 0.25 + l) def derf1(l, lp, kbt): return kbt / lp * (0.5 / ((1.0 - l) * (1.0 - l) * (1.0 - l)) + 1.0) def xdefWLC(kbt, l, p, f): l0 = 0.9999 lnew = l0 - (f1(l0, p, kbt) - f) / derf1(l0, p, kbt) if abs(f) < 1e-05: return 0.0 while abs(l0 - lnew) > 1e-05: l0 = lnew lnew = l0 - (f1(l0, p, kbt) - f) / derf1(l0, p, kbt) xdef = l * lnew return xdef def intfdexWLC(kbt, l, p, f): l0 = xdefWLC(kbt, l, p, f) return kbt * l / (4.0 * p) * (1.0 / (1.0 - l0 / l) + 2 * l0 * l0 / (l * l) - l0 / l) def stretching_energy(K, l, p, f, fmin): total = intfdexWLC(K, l, p, f) - intfdexWLC(K, l, p, fmin) return total forces = [5, 6, 7, 8, 9, 10, 11, 12] delimiter = ' ' p = 0.75 K = 4.114 l = 0.66 Deltamu = 2.0 * K Deltabp = 2.0 * K n_atp = 1.0 force = forces[7] k0 = 1000000.0 dt = 0.5 / (k0 * 5) fmin = 0.0 <mask token> for i in range(1, 2): force = forces[i] fmin = 0.0 DeltaG = n_atp * Deltamu - Deltabp + 2.0 * force * xdefWLC(K, l, p, force ) - 2.0 * stretching_energy(K, l, p, force, fmin) Ateo = (n_atp * Deltamu / (2 * xdefWLC(K, l, p, force)) - Deltabp / (2 * xdefWLC(K, l, p, force)) + force - 1.0 * stretching_energy(K, l, p, force, fmin) / xdefWLC(K, l, p, force)) / K print(Ateo) for j in range(0, 1): Dt = 10 * dt * 2 ** j dn = 10 * 2 ** j n = 0 folder = ( '/home/xavi/Documents/Helicase/Simulations/Simulation/Simulation_221018_4/FT/DATA/' ) filein = '%s%s_%dhist.txt' % (folder, force, dn) foldout = ( '/home/xavi/Documents/Helicase/Simulations/Simulation/Simulation_221018_4/FT/' ) data = np.loadtxt(filein) data2 = np.asarray(data) dx = data2[:, 0] pdx = data2[:, 1] dxav = 0.0 pdxav = 0.0 for k in range(0, len(dx)): dxav += dx[k] * pdx[k] pdxav += pdx[k] dxav /= pdxav pdx /= pdxav print(force) print(Dt) print(dxav) print('\n') epsilon = 0.08 delta = 0.4 y = [] x = [] for k in range(0, len(dx)): if (dx[k] <= 0.0) & (dx[k] <= -delta): for l in range(0, len(dx)): if (dx[l] >= 0.0) & (dx[l] >= delta): if np.absolute(dx[k] + dx[l]) <= epsilon: x.append(dx[l] / dxav) y.append(np.log(pdx[l] / pdx[k]) / dxav) """ print(x) #print(" ") #print(y) print(len(x)) print(" ") print(len(y)) #plt.plot(x,y, 'o') plt.plot(x,y) plt.show() """ fileout = '%s%s_%dFT.txt' % (foldout, force, dn) fout = open(fileout, 'w') for k in range(0, len(x)): fout.write('%.12f %.12f\n' % (x[k], y[k])) fout.close()
import glob import numpy as np import pandas as pd import matplotlib.pyplot as plt import time import seaborn as sns import os from pathlib import Path def f1(l, lp, kbt): return kbt / lp * (1.0 / (4 * (1.0 - l) * (1.0 - l)) - 0.25 + l) def derf1(l, lp, kbt): return kbt / lp * (0.5 / ((1.0 - l) * (1.0 - l) * (1.0 - l)) + 1.0) def xdefWLC(kbt, l, p, f): l0 = 0.9999 lnew = l0 - (f1(l0, p, kbt) - f) / derf1(l0, p, kbt) if abs(f) < 1e-05: return 0.0 while abs(l0 - lnew) > 1e-05: l0 = lnew lnew = l0 - (f1(l0, p, kbt) - f) / derf1(l0, p, kbt) xdef = l * lnew return xdef def intfdexWLC(kbt, l, p, f): l0 = xdefWLC(kbt, l, p, f) return kbt * l / (4.0 * p) * (1.0 / (1.0 - l0 / l) + 2 * l0 * l0 / (l * l) - l0 / l) def stretching_energy(K, l, p, f, fmin): total = intfdexWLC(K, l, p, f) - intfdexWLC(K, l, p, fmin) return total forces = [5, 6, 7, 8, 9, 10, 11, 12] delimiter = ' ' p = 0.75 K = 4.114 l = 0.66 Deltamu = 2.0 * K Deltabp = 2.0 * K n_atp = 1.0 force = forces[7] k0 = 1000000.0 dt = 0.5 / (k0 * 5) fmin = 0.0 <mask token> for i in range(1, 2): force = forces[i] fmin = 0.0 DeltaG = n_atp * Deltamu - Deltabp + 2.0 * force * xdefWLC(K, l, p, force ) - 2.0 * stretching_energy(K, l, p, force, fmin) Ateo = (n_atp * Deltamu / (2 * xdefWLC(K, l, p, force)) - Deltabp / (2 * xdefWLC(K, l, p, force)) + force - 1.0 * stretching_energy(K, l, p, force, fmin) / xdefWLC(K, l, p, force)) / K print(Ateo) for j in range(0, 1): Dt = 10 * dt * 2 ** j dn = 10 * 2 ** j n = 0 folder = ( '/home/xavi/Documents/Helicase/Simulations/Simulation/Simulation_221018_4/FT/DATA/' ) filein = '%s%s_%dhist.txt' % (folder, force, dn) foldout = ( '/home/xavi/Documents/Helicase/Simulations/Simulation/Simulation_221018_4/FT/' ) data = np.loadtxt(filein) data2 = np.asarray(data) dx = data2[:, 0] pdx = data2[:, 1] dxav = 0.0 pdxav = 0.0 for k in range(0, len(dx)): dxav += dx[k] * pdx[k] pdxav += pdx[k] dxav /= pdxav pdx /= pdxav print(force) print(Dt) print(dxav) print('\n') epsilon = 0.08 delta = 0.4 y = [] x = [] for k in range(0, len(dx)): if (dx[k] <= 0.0) & (dx[k] <= -delta): for l in range(0, len(dx)): if (dx[l] >= 0.0) & (dx[l] >= delta): if np.absolute(dx[k] + dx[l]) <= epsilon: x.append(dx[l] / dxav) y.append(np.log(pdx[l] / pdx[k]) / dxav) """ print(x) #print(" ") #print(y) print(len(x)) print(" ") print(len(y)) #plt.plot(x,y, 'o') plt.plot(x,y) plt.show() """ fileout = '%s%s_%dFT.txt' % (foldout, force, dn) fout = open(fileout, 'w') for k in range(0, len(x)): fout.write('%.12f %.12f\n' % (x[k], y[k])) fout.close()
#!/usr/bin/python import glob import numpy as np import pandas as pd import matplotlib.pyplot as plt import time import seaborn as sns import os from pathlib import Path #import math #functions related to elasticity of WLC def f1(l,lp, kbt): return kbt/lp*(1./(4*(1.-l)*(1.-l))-.25+l) def derf1(l,lp,kbt): return kbt/lp*(.5/((1.-l)*(1.-l)*(1.-l))+1.) def xdefWLC(kbt, l, p, f): l0=.9999 lnew=l0-(f1(l0,p,kbt)-f)/derf1(l0,p,kbt) if abs(f)<1.e-5: return 0.0 while abs(l0-lnew)>1.e-5: l0=lnew lnew=l0-(f1(l0,p,kbt)-f)/derf1(l0,p,kbt) xdef=l*lnew return xdef def intfdexWLC (kbt, l, p, f): l0=xdefWLC(kbt,l,p,f) return kbt*l/(4.*p)*(1./(1.-l0/l)+2*l0*l0/(l*l)-l0/l) def stretching_energy(K,l,p,f,fmin): total= intfdexWLC(K,l,p,f)-intfdexWLC(K,l,p,fmin) return total forces = [ 5 ,6 ,7 , 8, 9, 10, 11, 12] delimiter = " " p = 0.75 K = 4.114 l = 0.66 #value of mu(pN/nm), N, etc Deltamu=2.0*K #chemical potential of 1 ATP 3*K Deltabp=2.0*K #free-energy of 1 bp opening n_atp=1. #Number of bp opened by 1-step of the motor force = forces[7] #frequency bps k0=1000000. #montecarlo step = 1e-7 dt=0.5/(k0*5) fmin=0.0 ''' print (DeltaG) print(n_atp*Deltamu) print(Deltabp) print(2.*force*xdefWLC(K,l,p,force)) print(2.*stretching_energy(K,l,p,force,fmin)) #time.sleep(30.5) print("pre") print(k0*np.exp(-DeltaG/(2.*K))*dt) print("pun") print(k0*np.exp(DeltaG/(2.*K))*dt) ''' for i in range(1,2): force=forces[i] fmin=0.0 DeltaG=n_atp*Deltamu-Deltabp+2.*force*xdefWLC(K,l,p,force)-2.*stretching_energy(K,l,p,force,fmin) Ateo=(n_atp*Deltamu/(2*xdefWLC(K,l,p,force))-Deltabp/(2*xdefWLC(K,l,p,force))+force-1.*stretching_energy(K,l,p,force,fmin)/xdefWLC(K,l,p,force))/K print(Ateo) for j in range (0,1): #CHECK parameter dt is the same than for the files processed in hist Dt=10*dt*2**j #print(Dt) dn=10*2**j n=0 folder='/home/xavi/Documents/Helicase/Simulations/Simulation/Simulation_221018_4/FT/DATA/' filein='%s%s_%dhist.txt' %(folder,force,dn) #File_in Dx, p(Dx) foldout='/home/xavi/Documents/Helicase/Simulations/Simulation/Simulation_221018_4/FT/' #reading input file data=np.loadtxt(filein) data2=np.asarray(data) dx=data2[:,0] pdx=data2[:,1] #computing the average <Dx> dxav=0. pdxav=0. ##Cal renormalitzar de nou les probabilitats (al descartar el 0 la integral ha canviat) for k in range(0,len(dx)): dxav+=dx[k]*pdx[k] pdxav+=pdx[k] dxav/=pdxav pdx/=pdxav print(force) print(Dt) print(dxav) print("\n") epsilon=0.08 delta=0.4 y=[] x=[] for k in range(0,len(dx)): if (dx[k]<=0.) & (dx[k]<=-delta): for l in range(0,len(dx)): #comprovem si x[l]+x[k]<epsilon --> computem if (dx[l]>=0.) & (dx[l]>=delta): if np.absolute(dx[k]+dx[l]) <= epsilon: x.append(dx[l]/dxav) y.append((np.log(pdx[l]/pdx[k]))/dxav) ''' print(x) #print("\n") #print(y) print(len(x)) print("\n") print(len(y)) #plt.plot(x,y, 'o') plt.plot(x,y) plt.show() ''' #writing to an output file for each DT fileout='%s%s_%dFT.txt' %(foldout,force,dn) fout=open(fileout,"w") #fout.write() for k in range(0,len(x)): fout.write('%.12f %.12f\n'%(x[k],y[k])) fout.close()
[ 4, 6, 7, 8, 9 ]
1,789
3b307ae7f8b8b25c93eb2dc54b2603b1291b6232
<mask token>
<mask token> setup(name='qn', version='0.2.2', description= 'Handy functions I use everyday.', url='https://github.com/frlender/qn', author='Qiaonan Duan', author_email='[email protected]', license='MIT', packages=find_packages(), zip_safe=False)
from setuptools import setup, find_packages setup(name='qn', version='0.2.2', description= 'Handy functions I use everyday.', url='https://github.com/frlender/qn', author='Qiaonan Duan', author_email='[email protected]', license='MIT', packages=find_packages(), zip_safe=False)
from setuptools import setup, find_packages setup(name='qn', version='0.2.2', description='Handy functions I use everyday.', url='https://github.com/frlender/qn', author='Qiaonan Duan', author_email='[email protected]', license='MIT', packages=find_packages(), # install_requires=[ # 'matplotlib', # 'seaborn', # 'numpy', # 'scipy', # 'pandas', # 'PyYAML', # 'matplotlib-venn', # 'scikit-learn' # ], zip_safe=False)
null
[ 0, 1, 2, 3 ]
1,790
30fbe52a5e3fb184a998fce43d716cffdaf0d2dc
<mask token>
<mask token> for i in range(0, len(a)): print('main') sorted = True for j in range(1, len(a) - i): if a[j] < a[j - 1]: a[j], a[j - 1] = a[j - 1], a[j] print('inner') print(a) time.sleep(1) sorted = False if sorted: break print(a)
a = [5, 4, 3, 2, 1] a = [1, 2, 3, 7, 5, 6, 4, 8, 9] <mask token> sorted = True for i in range(0, len(a)): print('main') sorted = True for j in range(1, len(a) - i): if a[j] < a[j - 1]: a[j], a[j - 1] = a[j - 1], a[j] print('inner') print(a) time.sleep(1) sorted = False if sorted: break print(a)
a = [5, 4, 3, 2, 1] a = [1, 2, 3, 7, 5, 6, 4, 8, 9] import time sorted = True for i in range(0, len(a)): print('main') sorted = True for j in range(1, len(a) - i): if a[j] < a[j - 1]: a[j], a[j - 1] = a[j - 1], a[j] print('inner') print(a) time.sleep(1) sorted = False if sorted: break print(a)
null
[ 0, 1, 2, 3 ]
1,791
5900dc0acde45ac9a31dc9d489aa8dae304d626b
<mask token>
<mask token> train_station.add_platform(platform) <mask token> platform.accept_train(train_1) <mask token> train_1.dock_section(train_section_1) train_1.dock_section(train_section_2) train_1.dock_section(train_section_3) train_1.print_sections() <mask token> train_section_1.get_on_train(person_1) train_section_1.get_on_train(person_2) train_section_2.get_on_train(person_3) train_section_3.get_on_train(person_4) train_section_2.get_off_train(person_3) train_1.show_current_passengers() train_1.count_passengers()
<mask token> platform = Platform('platform 1') train_station = TrainStation('Linz') train_station.add_platform(platform) train_1 = ICE('ICE 1') platform.accept_train(train_1) train_section_1 = TrainSection('First section') train_section_2 = TrainSection('Second section') train_section_3 = TrainSection('Third section') train_1.dock_section(train_section_1) train_1.dock_section(train_section_2) train_1.dock_section(train_section_3) train_1.print_sections() person_1 = Person('Franz', 'Mair') person_2 = Person('Michael', 'Schuh') person_3 = Person('Herbert', 'Sailer') person_4 = Person('Michaela', 'Mader') train_section_1.get_on_train(person_1) train_section_1.get_on_train(person_2) train_section_2.get_on_train(person_3) train_section_3.get_on_train(person_4) train_section_2.get_off_train(person_3) train_1.show_current_passengers() train_1.count_passengers()
from draft import * platform = Platform('platform 1') train_station = TrainStation('Linz') train_station.add_platform(platform) train_1 = ICE('ICE 1') platform.accept_train(train_1) train_section_1 = TrainSection('First section') train_section_2 = TrainSection('Second section') train_section_3 = TrainSection('Third section') train_1.dock_section(train_section_1) train_1.dock_section(train_section_2) train_1.dock_section(train_section_3) train_1.print_sections() person_1 = Person('Franz', 'Mair') person_2 = Person('Michael', 'Schuh') person_3 = Person('Herbert', 'Sailer') person_4 = Person('Michaela', 'Mader') train_section_1.get_on_train(person_1) train_section_1.get_on_train(person_2) train_section_2.get_on_train(person_3) train_section_3.get_on_train(person_4) train_section_2.get_off_train(person_3) train_1.show_current_passengers() train_1.count_passengers()
from draft import * # create a train station platform = Platform('platform 1') train_station = TrainStation('Linz') train_station.add_platform(platform) # create a train train_1 = ICE('ICE 1') platform.accept_train(train_1) train_section_1 = TrainSection('First section') train_section_2 = TrainSection('Second section') train_section_3 = TrainSection('Third section') train_1.dock_section(train_section_1) train_1.dock_section(train_section_2) train_1.dock_section(train_section_3) train_1.print_sections() # Expected output: First section - Second section - Third section # create persons person_1 = Person('Franz', 'Mair') person_2 = Person('Michael', 'Schuh') person_3 = Person('Herbert', 'Sailer') person_4 = Person('Michaela', 'Mader') train_section_1.get_on_train(person_1) # Expected output: Franz Mair is on the train now train_section_1.get_on_train(person_2) # Expected output: Michael Schuh is on the train now train_section_2.get_on_train(person_3) # Expected output: Herbert Sailer is on the train now train_section_3.get_on_train(person_4) # Expected output: Michaela Mader is on the train now train_section_2.get_off_train(person_3) # Expected output: Herbert Sailer has left the train # query passengers train_1.show_current_passengers() # Expected output: Franz Mair, Michel Schuh, Michaela Mader train_1.count_passengers() # Expected output: 3
[ 0, 1, 2, 3, 4 ]
1,792
31664f1cc808ccc0dad230e2b955692c7ae12db1
<mask token>
<mask token> setup(name='pass-manager', version='1.2.0', author='petitviolet', author_email='[email protected]', packages=find_packages(), description='Simple CLI Password Manager', long_description= 'Please show help (pass-manager -h)', url= 'https://github.com/petitviolet/pass-manager', license='MIT', platforms =['Mac OS X'], entry_points={'console_scripts': 'pass-manager = src.pass_manager:main'}, zip_safe=False, install_requires=['crypto'], classifiers=['Environment :: Console', 'Intended Audience :: Developers', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Utilities'])
from setuptools import setup, find_packages setup(name='pass-manager', version='1.2.0', author='petitviolet', author_email='[email protected]', packages=find_packages(), description='Simple CLI Password Manager', long_description= 'Please show help (pass-manager -h)', url= 'https://github.com/petitviolet/pass-manager', license='MIT', platforms =['Mac OS X'], entry_points={'console_scripts': 'pass-manager = src.pass_manager:main'}, zip_safe=False, install_requires=['crypto'], classifiers=['Environment :: Console', 'Intended Audience :: Developers', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Utilities'])
# -*- encoding:utf-8 -*- from setuptools import setup, find_packages setup( name='pass-manager', version='1.2.0', author='petitviolet', author_email='[email protected]', packages=find_packages(), description = 'Simple CLI Password Manager', long_description = 'Please show help (pass-manager -h)', url = 'https://github.com/petitviolet/pass-manager', license = 'MIT', # scripts = ['src/pass_manager.py'], platforms = ['Mac OS X'], # platforms = ['POSIX', 'Windows', 'Mac OS X'], entry_points={ 'console_scripts': 'pass-manager = src.pass_manager:main' }, zip_safe=False, install_requires = ['crypto'], classifiers=[ 'Environment :: Console', 'Intended Audience :: Developers', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Utilities' ] )
null
[ 0, 1, 2, 3 ]
1,793
bc087482e901ce1831cef56aa9c7aef0c8f2d15a
<mask token>
class Defaults(object): <mask token> <mask token> <mask token> <mask token> <mask token>
class Defaults(object): INBUS_VERSION = 2 LOCALHOST = '127.0.0.1' PORT = 7222 INBUS_ADDRESS = LOCALHOST, PORT BUFFER_SIZE = 65536
#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2017 Maarten Los # See LICENSE.rst for details. class Defaults(object): INBUS_VERSION = 2 LOCALHOST = "127.0.0.1" PORT = 7222 INBUS_ADDRESS = (LOCALHOST, PORT) BUFFER_SIZE = 65536
null
[ 0, 1, 2, 3 ]
1,794
b55984da73d3cfb3109a52990a0d4d05a27d51a5
<mask token>
def main(): N = int(input()) num = 1 for i in range(N + 1): if i > 0: print('%d %d %d' % (i, i ** 2, i ** 3)) num += 1 <mask token>
def main(): N = int(input()) num = 1 for i in range(N + 1): if i > 0: print('%d %d %d' % (i, i ** 2, i ** 3)) num += 1 if __name__ == '__main__': main()
def main(): #entrada N = int(input()) num = 1 #processamento for i in range (N+1): if i > 0: #saida print("%d %d %d" %(i, i**2, i**3)) num +=1 if __name__ == '__main__': main()
null
[ 0, 1, 2, 3 ]
1,795
ba702a9c5d9d31e48b047c106d77cf1707031d70
<mask token>
<mask token> print(X) <mask token> print(A * B) print(X[0]) print(X[0][1]) for row in X: print(row) <mask token> print(newX) print(X > 15) <mask token> plt.plot(x, y) plt.show() <mask token> plt.plot(x, y1, label='sin') plt.plot(x, y2, linestyle='--', label='cos') plt.xlabel('x') plt.ylabel('y') plt.title('sin & cos') plt.legend() plt.show() <mask token> plt.imshow(img) plt.show()
<mask token> X = np.array([[51, 55], [14, 19], [0, 4]]) print(X) A = np.array([[1, 2], [3, 4]]) B = np.array([10, 20]) print(A * B) print(X[0]) print(X[0][1]) for row in X: print(row) newX = X.flatten() print(newX) print(X > 15) x = np.arange(0, 6, 0.1) y = np.sin(x) plt.plot(x, y) plt.show() y1 = np.sin(x) y2 = np.cos(x) plt.plot(x, y1, label='sin') plt.plot(x, y2, linestyle='--', label='cos') plt.xlabel('x') plt.ylabel('y') plt.title('sin & cos') plt.legend() plt.show() img = imread('/Users/jiwon/Downloads/R800x0.png') plt.imshow(img) plt.show()
import numpy as np import matplotlib.pyplot as plt from matplotlib.image import imread X = np.array([[51, 55], [14, 19], [0, 4]]) print(X) A = np.array([[1, 2], [3, 4]]) B = np.array([10, 20]) print(A * B) print(X[0]) print(X[0][1]) for row in X: print(row) newX = X.flatten() print(newX) print(X > 15) x = np.arange(0, 6, 0.1) y = np.sin(x) plt.plot(x, y) plt.show() y1 = np.sin(x) y2 = np.cos(x) plt.plot(x, y1, label='sin') plt.plot(x, y2, linestyle='--', label='cos') plt.xlabel('x') plt.ylabel('y') plt.title('sin & cos') plt.legend() plt.show() img = imread('/Users/jiwon/Downloads/R800x0.png') plt.imshow(img) plt.show()
import numpy as np import matplotlib.pyplot as plt from matplotlib.image import imread X = np.array([[51, 55], [14, 19], [0, 4]]) print(X) A = np.array([[1, 2], [3, 4]]) B = np.array([10, 20]) print(A * B) print(X[0]) print(X[0][1]) for row in X: print(row) newX = X.flatten() print(newX) print(X > 15) # 데이터 준비 x = np.arange(0, 6, 0.1) # 0에서 6까지 0.1 간격으로 생 y = np.sin(x) # 그래프 그리기 plt.plot(x, y) plt.show() # 데이터 준비 y1 = np.sin(x) y2 = np.cos(x) # 그래프 그리기 plt.plot(x, y1, label="sin") plt.plot(x, y2, linestyle="--", label="cos") # cos 함수는 점선으로 그리기 plt.xlabel("x") # x축 이름 plt.ylabel("y") # y축 이름 plt.title('sin & cos') # 제목 plt.legend() plt.show() # 이미지 그리기 img = imread('/Users/jiwon/Downloads/R800x0.png') #이미지 읽어오기 plt.imshow(img) plt.show()
[ 0, 1, 2, 3, 4 ]
1,796
ec7ca03f627eaa635aac56e302b9c40bf0a3da38
<mask token>
def sieve(limit): numbers = list(range(3, limit, 2)) for prime in numbers: for multiplier in reversed(range(2, limit)): try: numbers.remove(prime * multiplier) except ValueError: pass return [2] + numbers
null
null
null
[ 0, 1 ]
1,797
24246427e2fde47bbc9d068605301f54c6ecbae5
<mask token>
<mask token> ax.set_aspect('equal')
ax = fig.gca() ax.set_aspect('equal')
# Adjust figure when using plt.gcf ax = fig.gca() ax.set_aspect('equal')
null
[ 0, 1, 2, 3 ]
1,798
0b730314fef31e7304a8f5d8bb998581b021a610
<mask token>
<mask token> class BuyerSellerAppConfig(AppConfig): <mask token>
<mask token> class BuyerSellerAppConfig(AppConfig): name = 'buyer_seller_app'
from django.apps import AppConfig class BuyerSellerAppConfig(AppConfig): name = 'buyer_seller_app'
null
[ 0, 1, 2, 3 ]
1,799
b0cdf75ff00d72ada75990dd850546414bc11125
<mask token> def nl(): print('\n') def main(): print('Start') msg = 'ana i mujica' msg2 = msg.replace('a', '$') print(msg) print(msg2) ivana = 'ivana' print(ivana * 2) fruit = ['banana', 'apple', 'legit'] for i in range(len(fruit)): print(fruit[i], end='') nl() print([fruit[0], fruit[1]]) print([fruit[0], fruit[1]], sep='$') animal1 = Animal(30) print(animal1) nl() print('End') <mask token>
<mask token> def nl(): print('\n') def main(): print('Start') msg = 'ana i mujica' msg2 = msg.replace('a', '$') print(msg) print(msg2) ivana = 'ivana' print(ivana * 2) fruit = ['banana', 'apple', 'legit'] for i in range(len(fruit)): print(fruit[i], end='') nl() print([fruit[0], fruit[1]]) print([fruit[0], fruit[1]], sep='$') animal1 = Animal(30) print(animal1) nl() print('End') main()
<mask token> __author__ = 'igord' def nl(): print('\n') def main(): print('Start') msg = 'ana i mujica' msg2 = msg.replace('a', '$') print(msg) print(msg2) ivana = 'ivana' print(ivana * 2) fruit = ['banana', 'apple', 'legit'] for i in range(len(fruit)): print(fruit[i], end='') nl() print([fruit[0], fruit[1]]) print([fruit[0], fruit[1]], sep='$') animal1 = Animal(30) print(animal1) nl() print('End') main()
from pypack.Animal import Animal __author__ = 'igord' def nl(): print('\n') def main(): print('Start') msg = 'ana i mujica' msg2 = msg.replace('a', '$') print(msg) print(msg2) ivana = 'ivana' print(ivana * 2) fruit = ['banana', 'apple', 'legit'] for i in range(len(fruit)): print(fruit[i], end='') nl() print([fruit[0], fruit[1]]) print([fruit[0], fruit[1]], sep='$') animal1 = Animal(30) print(animal1) nl() print('End') main()
from pypack.Animal import Animal __author__ = 'igord' def nl(): print("\n") def main(): # print("Hello2") # animal = Animal(45) # animal.double_age() # print(animal.age) print("Start") msg = "ana i mujica" msg2 = msg.replace("a", "$") print(msg) print(msg2) ivana = "ivana" print(ivana * 2) # print(sys.api_version) fruit = ["banana", "apple", "legit"] for i in range(len(fruit)): # pass # sys.stdout.write("test") # print("test", end="") print(fruit[i], end="") nl() print([fruit[0], fruit[1]]) print([fruit[0], fruit[1]], sep="$") animal1 = Animal(30) print(animal1) nl() print("End") main()
[ 2, 3, 4, 5, 6 ]