/home/mip/mip/public/vendor/laravel-filemanager/files/folder-1/821668/hashids.zip
PK �8]M��< < hashids/LICENSEnu �[��� MIT License
Copyright (c) Ivan Akimov <ivan@barreleye.com>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
PK �8]I*�y y hashids/src/Math/BCMath.phpnu �[��� <?php
/**
* Copyright (c) Ivan Akimov.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @see https://github.com/vinkla/hashids
*/
namespace Hashids\Math;
class BCMath implements MathInterface
{
public function add($a, $b)
{
return bcadd($a, $b, 0);
}
public function multiply($a, $b)
{
return bcmul($a, $b, 0);
}
public function divide($a, $b)
{
return bcdiv($a, $b, 0);
}
public function mod($n, $d)
{
return bcmod($n, $d);
}
public function greaterThan($a, $b)
{
return bccomp($a, $b, 0) > 0;
}
public function intval($a)
{
return intval($a);
}
public function strval($a)
{
return $a;
}
public function get($a)
{
return $a;
}
}
PK �8]�"] "