Skip to content

Commit

Permalink
Mejora en la gestión de favoritos.
Browse files Browse the repository at this point in the history
  • Loading branch information
FedeManzano committed Dec 15, 2023
1 parent bf81952 commit 1da536b
Show file tree
Hide file tree
Showing 76 changed files with 60 additions and 74 deletions.
Binary file not shown.
Binary file not shown.
Binary file modified .vs/MediaPlayer/v17/.suo
Binary file not shown.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ Toda la información de la utilización del reproductoror aquí.

Desde este enlace podemos descargar el instalador del reproductor.

:arrow_down: [Descarga Instalador v2.5.1 32 Bits](https://mega.nz/file/pZ83SQzY#oL8X5hHzqSVruBdEEZtrDnuWTa2ZcDz6e7X5xVwKO4Q)
:arrow_down: [Descarga Instalador v2.5.2 32 Bits](https://mega.nz/file/NQcmnCpC#tIPPM9OpC2_BZmC1upqW5ueloOQvDPA1Sax5QJ8YTXQ)

:arrow_down: [Descarga Instalador v2.5.1 64 Bits](https://mega.nz/file/JJsDRLzT#wEPwgCRSq7X37wtJv18I4kCaheNuMNWRit6ZbocrcO4)
:arrow_down: [Descarga Instalador v2.5.2 64 Bits](https://mega.nz/file/wA9UTIxD#Bzkcs2_649L520f8KJEAHvLXCwhVUf_-EyZ3bCR7Kfw)

### Formatos de audio (Esta versión)

Expand All @@ -57,6 +57,7 @@ Sistemas operativos Windows a partir de la versión 7 en adelante con arquitectu
* Mejora la estabilidad.
* Se mejoró la reproducción random de los diferentes listados de canciones.
* Generación de listas de reproducción de regalo al principio de cada mes.
* V2.5.2 mejora en la gestión de favoritos.


### Autor
Expand Down
8 changes: 8 additions & 0 deletions ReproductorMusicaTagEditables/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using ReproductorMusicaTagEditables.Mvvm.ExtensionMetodos;
using ReproductorMusicaTagEditables.Mvvm.Model;
using ReproductorMusicaTagEditables.Mvvm.Repository.ArchivoImagen;
using ReproductorMusicaTagEditables.Mvvm.Repository.Listas;
using ReproductorMusicaTagEditables.Mvvm.Repository.Navegacion;
using ReproductorMusicaTagEditables.Mvvm.VentanasUtilitarias;
using ReproductorMusicaTagEditables.Mvvm.ViewModel.Base;
Expand All @@ -22,6 +23,7 @@ namespace ReproductorMusicaTagEditables
{
public partial class MainWindow : Window
{
private bool cancionGuardada = false;
private DispatcherTimer timer;

private TimeSpan tiempoTotalPista = new TimeSpan();
Expand All @@ -48,6 +50,11 @@ private void Time_Track(object sender, EventArgs e)
controlTiempo.TiempoTranscurrido = mediaReproductor.Position.TiempoFormato();
tiempoTotalPista = tiempoTotalPista.Subtract(TimeSpan.FromSeconds(1));
controlTiempo.TiempoFaltante = tiempoTotalPista.TiempoFormato();
if(mediaReproductor.Position.TotalSeconds > 5 && !cancionGuardada)
{
ListasReproduccion.AgregarCancionAFavoritos(reproViewModel.CancionActual());
cancionGuardada = true;
}
}
}

Expand Down Expand Up @@ -82,6 +89,7 @@ private void Inicio_Track(object sender, RoutedEventArgs e)
{
timer.Stop();
sliderLineTime.Value = 0;
cancionGuardada = false;
}
if (mediaReproductor.TieneTimeSpan())
{
Expand Down
4 changes: 2 additions & 2 deletions ReproductorMusicaTagEditables/Manual/Manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

Para descargar el reproductor lo podemos hacer desde el siguiente enlace:

:arrow_down: [Descarga Instalador v2.5.1 32 Bits](https://mega.nz/file/pZ83SQzY#oL8X5hHzqSVruBdEEZtrDnuWTa2ZcDz6e7X5xVwKO4Q)
:arrow_down: [Descarga Instalador v2.5.2 32 Bits](https://mega.nz/file/NQcmnCpC#tIPPM9OpC2_BZmC1upqW5ueloOQvDPA1Sax5QJ8YTXQ)

:arrow_down: [Descarga Instalador v2.5.1 64 Bits](https://mega.nz/file/JJsDRLzT#wEPwgCRSq7X37wtJv18I4kCaheNuMNWRit6ZbocrcO4)
:arrow_down: [Descarga Instalador v2.5.2 64 Bits](https://mega.nz/file/wA9UTIxD#Bzkcs2_649L520f8KJEAHvLXCwhVUf_-EyZ3bCR7Kfw)

El resultado de la descarga nos va a dejar un archivo llamado `MediaPlayer.zip`.

Expand Down
2 changes: 1 addition & 1 deletion ReproductorMusicaTagEditables/MediaPlayer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>37</ApplicationRevision>
<ApplicationRevision>39</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,6 @@ public override void Ejecutar(InfoReproductor Irg, Cancion c = null)
Historial.AgregarAHistorialAlbumes(GenerarAlbum(Irg.CancionActual.Cancion));
}
}

ListasReproduccion.AgregarCancionAFavoritos(Irg.CancionActual.Cancion);
}
}
}
6 changes: 3 additions & 3 deletions ReproductorMusicaTagEditables/Mvvm/ViewModel/Utils/Play.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public override void Ejecutar(InfoReproductor Irg, Cancion c = null)
Irg.Seleccionar();
Irg.IconoPlay = MahApps.Metro.IconPacks.PackIconFontAwesomeKind.PauseSolid;
EstadosControl.PLAY = true;
ListasReproduccion.AgregarCancionAFavoritos(c);

}
else
{
Expand All @@ -44,6 +44,7 @@ public override void Ejecutar(InfoReproductor Irg, Cancion c = null)
EstadosControl.PLAY = !EstadosControl.PLAY;
Irg.IconoPlay = MahApps.Metro.IconPacks.PackIconFontAwesomeKind.PlaySolid;
Irg.Reproductor.Pause();
return;
}
else
{
Expand Down Expand Up @@ -82,10 +83,9 @@ public override void Ejecutar(InfoReproductor Irg, Cancion c = null)
EstadosControl.PLAY = true;

}
ListasReproduccion.AgregarCancionAFavoritos(Irg.CancionActual.Cancion);
}
}

Navegacion.GuardarInfo(ReproductorViewModelBase.infoNavegacion);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ public override void Ejecutar(InfoReproductor Irg, Cancion c = null)
Historial.AgregarAHistorialAlbumes(GenerarAlbum(Irg.CancionActual.Cancion));
}
}
ListasReproduccion.AgregarCancionAFavoritos(Irg.CancionActual.Cancion);


}
}
}
Empty file.
Empty file.
Empty file.
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="ReproductorMusicaTagEditables.application" version="1.0.0.35" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
<assemblyIdentity name="ReproductorMusicaTagEditables.application" version="1.0.0.38" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="ReproductorMusicaTagEditables" asmv2:product="ReproductorMusicaTagEditables" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.8" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="ReproductorMusicaTagEditables.exe.manifest" size="14400">
<assemblyIdentity name="ReproductorMusicaTagEditables.exe" version="1.0.0.35" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
<assemblyIdentity name="ReproductorMusicaTagEditables.exe" version="1.0.0.38" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>k4H/hEMFFbwlDizNj+xBTWiQgzzQbks4y34v3WsB0dg=</dsig:DigestValue>
<dsig:DigestValue>y4y+hY/4VdkcF8or5ivILkRexDFtB55oF6l/d5kROI0=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="ReproductorMusicaTagEditables.exe" version="1.0.0.35" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
<asmv1:assemblyIdentity name="ReproductorMusicaTagEditables.exe" version="1.0.0.38" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
<description asmv2:iconFile="nota-musical.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
Expand Down Expand Up @@ -206,7 +206,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>NVQU6bOsscmOzIztqhL38h+q5kklmPr7c8VTiOG66i8=</dsig:DigestValue>
<dsig:DigestValue>tnKdOEFBanTlHkARX+7b86Lr2MnPt/b8PImD3WgaBGo=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
Expand Down
Binary file not shown.
22 changes: 0 additions & 22 deletions ReproductorMusicaTagEditables/bin/Release/Usuario/Navegacion.json

This file was deleted.

Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="ReproductorMusicaTagEditables.exe" version="1.0.0.35" publicKeyToken="29c2e5a71cccef7d" language="neutral" processorArchitecture="msil" type="win32" />
<asmv1:assemblyIdentity name="ReproductorMusicaTagEditables.exe" version="1.0.0.38" publicKeyToken="29c2e5a71cccef7d" language="neutral" processorArchitecture="msil" type="win32" />
<description asmv2:iconFile="nota-musical.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
Expand Down Expand Up @@ -206,7 +206,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>NVQU6bOsscmOzIztqhL38h+q5kklmPr7c8VTiOG66i8=</dsig:DigestValue>
<dsig:DigestValue>tnKdOEFBanTlHkARX+7b86Lr2MnPt/b8PImD3WgaBGo=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
Expand Down Expand Up @@ -252,4 +252,4 @@
<dsig:DigestValue>FihlZtVNgcNyH37Pf0Jtll3jZOm+L55ijXNjtoS2/mo=</dsig:DigestValue>
</hash>
</file>
<publisherIdentity name="CN=FEDERICO\feder" issuerKeyHash="6866c176575d2346e87517198fc8763af3e148c5" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>4qax32B3sFoM5MhUDQXjuA/G+uNpxK91I8O2PiFJRIY=</DigestValue></Reference></SignedInfo><SignatureValue>g1HpUdxyZ9Bp5YOOjWpCbVBwJTkW+09ZBdzd33yzBKcMyFbVqWrN+i4SLQk0rTxhO6fh4An7ob2anHOFEl4jjg8bBADEyZXRKYAMk0I0ppkAaV+i9QISxyaqW0wc0o1SFDrB+9+1lgt3rCIPwgbGWgkRuGzjV3ZLnmFj0vvNyow=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>4iNq24i3Z6luLkrIqFFkoG5+wr96eH1pXaHsfIKoSR92kh23+6PLMS6HN4i/TC7ZbFaEg4lz5DnX4QYiJLxJR+69D0omATm5QUaYmGGrZSWGZeqc9ErSkVfXBVEZ0RY508VUCyklm/BHS2StXri+GjwKB64MS/LINcoR9U3phSk=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="864449213eb6c32375afc469e3fac60fb8e3050d54c8e40c5ab07760dfb1a6e2" Description="" Url=""><as:assemblyIdentity name="ReproductorMusicaTagEditables.exe" version="1.0.0.35" publicKeyToken="29c2e5a71cccef7d" language="neutral" processorArchitecture="msil" type="win32" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=FEDERICO\feder</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>hNgSNeJ0ruaeiYKEy5lKumUmTYl3ubdaxbqxetlRT38=</DigestValue></Reference></SignedInfo><SignatureValue>jZzDoUi61PgPqlUkbIClcJzxps1oz+BK77/UQpSA5R0vZLOVoGSX1KhU2mILwtwzmLxco6Lo/gyI/T99I4QEDNGzk5vGgkPVxnaqbJoBReo3BAz7KK1aILsRp5pRJmIRZrG+0i5wha3wev+yeqt7OMfh/Q9jQeEM/+E9J6Wmdns=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>4iNq24i3Z6luLkrIqFFkoG5+wr96eH1pXaHsfIKoSR92kh23+6PLMS6HN4i/TC7ZbFaEg4lz5DnX4QYiJLxJR+69D0omATm5QUaYmGGrZSWGZeqc9ErSkVfXBVEZ0RY508VUCyklm/BHS2StXri+GjwKB64MS/LINcoR9U3phSk=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIB0TCCATqgAwIBAgIQG4l23l3ktbJLEMkkVAaIUDANBgkqhkiG9w0BAQsFADAnMSUwIwYDVQQDHhwARgBFAEQARQBSAEkAQwBPAFwAZgBlAGQAZQByMB4XDTIzMTIwMzA5MjgyOVoXDTI0MTIwMjE1MjgyOVowJzElMCMGA1UEAx4cAEYARQBEAEUAUgBJAEMATwBcAGYAZQBkAGUAcjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA4iNq24i3Z6luLkrIqFFkoG5+wr96eH1pXaHsfIKoSR92kh23+6PLMS6HN4i/TC7ZbFaEg4lz5DnX4QYiJLxJR+69D0omATm5QUaYmGGrZSWGZeqc9ErSkVfXBVEZ0RY508VUCyklm/BHS2StXri+GjwKB64MS/LINcoR9U3phSkCAwEAATANBgkqhkiG9w0BAQsFAAOBgQDUfmsJLlMicMn1yGIgTb0Rl5wj033vgvIyS53Ip2kACMXmGrdszx8SPN4D9ZVf0AgUw5Jk0MU3RYioz633lXqo7luZZWC8Pk01Fm4s9qgGnJKn3wahUQUGmrkeEvjHwzalf3xdmJPPJVRd/ZmvWX+YdNStNEizngQRyNcH+wrgkw==</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
<publisherIdentity name="CN=FEDERICO\feder" issuerKeyHash="6866c176575d2346e87517198fc8763af3e148c5" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>NQ70Fh4PkTb5Z2xjdU34KFzBo9dku4oosPJTZSA8oWM=</DigestValue></Reference></SignedInfo><SignatureValue>XDodTZ7vpr5He3rk80pVdXBO12Jif9EVQmF9Q0/PIcDuCv4VrBB47g623W1Ge1swmoBhDpr55YS8QlPeyLuCmvQfXUsAQqGfkNsJyc/OziRsIetLqaJzhwkyIDlnj4mzK4mKEt6MIqUowq5UY+uvz2REi/f05svjujlYxm3ScyQ=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>4iNq24i3Z6luLkrIqFFkoG5+wr96eH1pXaHsfIKoSR92kh23+6PLMS6HN4i/TC7ZbFaEg4lz5DnX4QYiJLxJR+69D0omATm5QUaYmGGrZSWGZeqc9ErSkVfXBVEZ0RY508VUCyklm/BHS2StXri+GjwKB64MS/LINcoR9U3phSk=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="63a13c206553f2b0288abb64d7a3c15c28f84d75636c67f936910f1e16f40e35" Description="" Url=""><as:assemblyIdentity name="ReproductorMusicaTagEditables.exe" version="1.0.0.38" publicKeyToken="29c2e5a71cccef7d" language="neutral" processorArchitecture="msil" type="win32" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=FEDERICO\feder</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>RohFIlwUIe6eCEM53jWCTFS19TaESulCyWm5EKx70wI=</DigestValue></Reference></SignedInfo><SignatureValue>sO/TsqSCpy1lWLxUrwg0L+AF8pxqkDUsvGiBwRt5a157t3fIHVDnX4dtyUrBqBE2yspZnuae+DSp6sCOUBeCrcwlTy1dy8EY1vpp0MlGBu2Sme63EH/Jho1rY/33Ym8zhxYJcH7juwYj7u3ygoV5lpXBkKYQfrjUW/o9TeiJ2Ng=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>4iNq24i3Z6luLkrIqFFkoG5+wr96eH1pXaHsfIKoSR92kh23+6PLMS6HN4i/TC7ZbFaEg4lz5DnX4QYiJLxJR+69D0omATm5QUaYmGGrZSWGZeqc9ErSkVfXBVEZ0RY508VUCyklm/BHS2StXri+GjwKB64MS/LINcoR9U3phSk=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIB0TCCATqgAwIBAgIQG4l23l3ktbJLEMkkVAaIUDANBgkqhkiG9w0BAQsFADAnMSUwIwYDVQQDHhwARgBFAEQARQBSAEkAQwBPAFwAZgBlAGQAZQByMB4XDTIzMTIwMzA5MjgyOVoXDTI0MTIwMjE1MjgyOVowJzElMCMGA1UEAx4cAEYARQBEAEUAUgBJAEMATwBcAGYAZQBkAGUAcjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA4iNq24i3Z6luLkrIqFFkoG5+wr96eH1pXaHsfIKoSR92kh23+6PLMS6HN4i/TC7ZbFaEg4lz5DnX4QYiJLxJR+69D0omATm5QUaYmGGrZSWGZeqc9ErSkVfXBVEZ0RY508VUCyklm/BHS2StXri+GjwKB64MS/LINcoR9U3phSkCAwEAATANBgkqhkiG9w0BAQsFAAOBgQDUfmsJLlMicMn1yGIgTb0Rl5wj033vgvIyS53Ip2kACMXmGrdszx8SPN4D9ZVf0AgUw5Jk0MU3RYioz633lXqo7luZZWC8Pk01Fm4s9qgGnJKn3wahUQUGmrkeEvjHwzalf3xdmJPPJVRd/ZmvWX+YdNStNEizngQRyNcH+wrgkw==</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
Loading

0 comments on commit 1da536b

Please sign in to comment.