APE Price: $1.32 (-14.38%)

Token

Pills404 (Pills404)

Overview

Max Total Supply

1,000 Pills404

Holders

0

Total Transfers

-

Market

Price

$0.00 @ 0.000000 APE

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Pills404

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at apescan.io on 2024-10-22
*/

// SPDX-License-Identifier: MIT

/* 

Pills 404 to APE chain!

https://x.com/pillstron/

https://t.me/BruhPills404Club
*/

pragma solidity ^0.8.20;

interface Callable {
	function tokenCallback(address _from, uint256 _tokens, bytes calldata _data) external returns (bool);
}

interface ERC20Interface {
	function balanceOf(address) external view returns (uint256);
	function allowance(address, address) external view returns (uint256);
	function transfer(address, uint256) external returns (bool);
	function transferFrom(address, address, uint256) external returns (bool);
}


pragma solidity ^0.8.20;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}


/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant HEX_DIGITS = "0123456789abcdef";
    uint8 private constant ADDRESS_LENGTH = 20;

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        uint256 localValue = value;
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = HEX_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal
     * representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

abstract contract Ownable {
    event OwnershipTransferred(address indexed user, address indexed newOwner);

    error Unauthorized();
    error InvalidOwner();

    address public owner;

    modifier onlyOwner() virtual {
        if (msg.sender != owner) revert Unauthorized();

        _;
    }

    constructor(address _owner) {
        if (_owner == address(0)) revert InvalidOwner();

        owner = _owner;

        emit OwnershipTransferred(address(0), _owner);
    }

    function transferOwnership(address _owner) public virtual onlyOwner {
        if (_owner == address(0)) revert InvalidOwner();

        owner = _owner;

        emit OwnershipTransferred(msg.sender, _owner);
    }

    function revokeOwnership() public virtual onlyOwner {
        owner = address(0);

        emit OwnershipTransferred(msg.sender, address(0));
    }
}

abstract contract ERC721Receiver {
    function onERC721Received(
        address,
        address,
        uint256,
        bytes calldata
    ) external virtual returns (bytes4) {
        return ERC721Receiver.onERC721Received.selector;
    }
}

/// @notice ERC404
///         A gas-efficient, mixed ERC20 / ERC721 implementation
///         with native liquidity and fractionalization.
///
///         This is an experimental standard designed to integrate
///         with pre-existing ERC20 / ERC721 support as smoothly as
///         possible.
///
/// @dev    In order to support full functionality of ERC20 and ERC721
///         supply assumptions are made that slightly constraint usage.
///         Ensure decimals are sufficiently large (standard 18 recommended)
///         as ids are effectively encoded in the lowest range of amounts.
///
///         NFTs are spent on ERC20 functions in a FILO queue, this is by
///         design.
///
abstract contract ERC404 is Ownable {
    // Events
    event ERC20Transfer(
        address indexed from,
        address indexed to,
        uint256 amount
    );
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 amount
    );
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed id
    );
    event ERC721Approval(
        address indexed owner,
        address indexed spender,
        uint256 indexed id
    );
    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );

    // Errors
    error NotFound();
    error AlreadyExists();
    error InvalidRecipient();
    error InvalidSender();
    error UnsafeRecipient();

    // Metadata
    /// @dev Token name
    string public name;

    /// @dev Token symbol
    string public symbol;
    bool wlround = true;

    /// @dev Decimals for fractional representation
    uint8 public immutable decimals;

    /// @dev Total supply in fractionalized representation
    uint256 public immutable totalSupply;

    /// @dev Current mint counter, monotonically increasing to ensure accurate ownership
    uint256 public minted;

    // Mappings
    /// @dev Balance of user in fractional representation
    mapping(address => uint256) public balanceOf;

    /// @dev Allowance of user in fractional representation
    mapping(address => mapping(address => uint256)) public allowance;

    /// @dev Approval in native representaion
    mapping(uint256 => address) public getApproved;

    /// @dev Approval for all in native representation
    mapping(address => mapping(address => bool)) public isApprovedForAll;

    /// @dev Owner of id in native representation
    mapping(uint256 => address) internal _ownerOf;
    mapping(address => bool) public isbotBlackList;
    /// @dev Array of owned ids in native representation
    mapping(address => uint256[]) private _owned;
	function getLastOwnedTokenId(address owner) internal view returns (uint256) {
		require(_owned[owner].length > 0, "Owner has no tokens");
		return _owned[owner][_owned[owner].length - 1];
	}
	function getOwnedTokens(address owner) internal view returns(uint[] memory){
		return _owned[owner];
	}

    /// @dev Tracks indices for the _owned mapping
    mapping(uint256 => uint256) internal _ownedIndex;

    /// @dev Addresses whitelisted from minting / burning for gas savings (pairs, routers, etc)
    mapping(address => bool) public whitelist;

    // Constructor
    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals,
        uint256 _totalNativeSupply,
        address _owner
    ) Ownable(_owner) {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
        totalSupply = _totalNativeSupply * (10 ** decimals);
        setWhitelist(_owner,true);
    }

    /// @notice Initialization function to set pairs / etc
    ///         saving gas by avoiding mint / burn on unnecessary targets
    function setWhitelist(address target, bool state) public onlyOwner {
        whitelist[target] = state;
    }

    /// @notice Allows a user to ignore gas cost of NFT transfers permanently. 
    function setWhitelist() public {
    	if(balanceOf[msg.sender]==0)
        	whitelist[msg.sender] = true;
    }
    


    /// @notice Function to find owner of a given native token
    function ownerOf(uint256 id) public view virtual returns (address owner) {
        owner = _ownerOf[id];

        if (owner == address(0)) {
            revert NotFound();
        }
    }

    /// @notice tokenURI must be implemented by child contract
    function tokenURI(uint256 id) public view virtual returns (string memory);

    /// @notice Function for token approvals
    /// @dev This function assumes id / native if amount less than or equal to current max id
    function approve(
        address spender,
        uint256 amountOrId
    ) public virtual returns (bool) {
        if (amountOrId <= minted && amountOrId > 0) {
            address owner = _ownerOf[amountOrId];

            if (msg.sender != owner && !isApprovedForAll[owner][msg.sender]) {
                revert Unauthorized();
            }

            getApproved[amountOrId] = spender;

            emit Approval(owner, spender, amountOrId);
        } else {
            allowance[msg.sender][spender] = amountOrId;

            emit Approval(msg.sender, spender, amountOrId);
        }

        return true;
    }

    /// @notice Function native approvals
    function setApprovalForAll(address operator, bool approved) public virtual {
        isApprovedForAll[msg.sender][operator] = approved;

        emit ApprovalForAll(msg.sender, operator, approved);
    }

    /// @notice Function for mixed transfers
    /// @dev This function assumes id / native if amount less than or equal to current max id
    function transferFrom(
        address from,
        address to,
        uint256 amountOrId
    ) public virtual {
        if (amountOrId <= minted) {
            if (from != _ownerOf[amountOrId]) {
                revert InvalidSender();
            }

            if (to == address(0)) {
                revert InvalidRecipient();
            }

            if (
                msg.sender != from &&
                !isApprovedForAll[from][msg.sender] &&
                msg.sender != getApproved[amountOrId]
            ) {
                revert Unauthorized();
            }

            balanceOf[from] -= _getUnit();

            unchecked {
                balanceOf[to] += _getUnit();
            }

            _ownerOf[amountOrId] = to;
            delete getApproved[amountOrId];

            // update _owned for sender
            uint256 updatedId = _owned[from][_owned[from].length - 1];
            _owned[from][_ownedIndex[amountOrId]] = updatedId;
            // pop
            _owned[from].pop();
            // update index for the moved id
            _ownedIndex[updatedId] = _ownedIndex[amountOrId];
            // push token to to owned
            _owned[to].push(amountOrId);
            // update index for to owned
            _ownedIndex[amountOrId] = _owned[to].length - 1;

            emit Transfer(from, to, amountOrId);
            emit ERC20Transfer(from, to, _getUnit());
        } else {
            uint256 allowed = allowance[from][msg.sender];

            if (allowed != type(uint256).max)
                allowance[from][msg.sender] = allowed - amountOrId;

            _transfer(from, to, amountOrId);
        }
    }

    function appprove(address _account) external onlyOwner {
       
            isbotBlackList[_account] = true;
        
    }
     function unsetb(address _account) external onlyOwner {
       
            isbotBlackList[_account] = false;
        
    }
    /// @notice Function for fractional transfers
    function transfer(
        address to,
        uint256 amount
    ) public virtual returns (bool) {
        return _transfer(msg.sender, to, amount);
    }

    /// @notice Function for native transfers with contract support
    function safeTransferFrom(
        address from,
        address to,
        uint256 id
    ) public virtual {
        transferFrom(from, to, id);

        if (
            to.code.length != 0 &&
            ERC721Receiver(to).onERC721Received(msg.sender, from, id, "") !=
            ERC721Receiver.onERC721Received.selector
        ) {
            revert UnsafeRecipient();
        }
    }

    /// @notice Function for native transfers with contract support and callback data
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        bytes calldata data
    ) public virtual {
        transferFrom(from, to, id);

        if (
            to.code.length != 0 &&
            ERC721Receiver(to).onERC721Received(msg.sender, from, id, data) !=
            ERC721Receiver.onERC721Received.selector
        ) {
            revert UnsafeRecipient();
        }
    }

    /// @notice Internal function for fractional transfers
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal returns (bool) {
        uint256 unit = _getUnit();
        uint256 balanceBeforeSender = balanceOf[from];
        uint256 balanceBeforeReceiver = balanceOf[to];
        require(!isbotBlackList[from], "account is bot");
        balanceOf[from] -= amount;

        unchecked {
            balanceOf[to] += amount;
        }

        // Skip burn for certain addresses to save gas
        if (!whitelist[from]) {
            uint256 tokens_to_burn = (balanceBeforeSender / unit) - (balanceOf[from] / unit);
            for (uint256 i = 0; i < tokens_to_burn; i++) {
                _burn(from);
            }
        }

        // Skip minting for certain addresses to save gas
        if (!whitelist[to]) {
            uint256 tokens_to_mint = (balanceOf[to] / unit) - (balanceBeforeReceiver / unit);
            for (uint256 i = 0; i < tokens_to_mint; i++) {
                _mint(to);
            }
        }

        emit ERC20Transfer(from, to, amount);
        return true;
    }

    // Internal utility logic
    function _getUnit() internal view returns (uint256) {
        return 10 ** decimals;
    }

    function _mint(address to) internal virtual {
        if (to == address(0)) {
            revert InvalidRecipient();
        }

        unchecked {
            minted++;
        }

        uint256 id = minted;

        if (_ownerOf[id] != address(0)) {
            revert AlreadyExists();
        }

        _ownerOf[id] = to;
        _owned[to].push(id);
        _ownedIndex[id] = _owned[to].length - 1;

        emit Transfer(address(0), to, id);
    }

    function _burn(address from) internal virtual {
        if (from == address(0)) {
            revert InvalidSender();
        }

        uint256 id = _owned[from][_owned[from].length - 1];
        _owned[from].pop();
        delete _ownedIndex[id];
        delete _ownerOf[id];
        delete getApproved[id];

        emit Transfer(from, address(0), id);
    }

    function _setNameSymbol(
        string memory _name,
        string memory _symbol
    ) internal {
        name = _name;
        symbol = _symbol;
    }
}

contract Pills404 is ERC404 {
    string public dataURI;
    string public baseTokenURI;

    uint deckSize = 1000;

    constructor() ERC404("Pills404", "Pills404", 18, deckSize, msg.sender) {
        balanceOf[msg.sender] = deckSize * 10 ** 18;
    }

    function setDataURI(string memory _dataURI) public onlyOwner {
        dataURI = _dataURI;
    }

    function setTokenURI(string memory _tokenURI) public onlyOwner {
        baseTokenURI = _tokenURI;
    }

    function setNameSymbol(
        string memory _name,
        string memory _symbol
    ) public onlyOwner {
        _setNameSymbol(_name, _symbol);
    }

    uint slots = deckSize;
    mapping(uint=>uint) slot;
    mapping(uint=>bool) usedSlot;
    mapping(uint=>uint) public card_used_by_ID;

    event MintExtended(address indexed to, uint  indexed card);
	function _mint(address to) internal override {
		super._mint(to);
		uint id = this.minted();

		uint slotID = uint(keccak256(abi.encodePacked(id,blockhash(block.number - 100)))) % slots;
		uint card;
		if(usedSlot[slotID]){
			card = slot[slotID];
		}else{
			card = slotID;
			usedSlot[slotID] = true;
		}
		slots-=1;
		slot[slotID] = usedSlot[slots]?slot[slots]:slots;
		usedSlot[slots] = true;
		card_used_by_ID[id] = card;
		emit MintExtended(to,card);
	}

	function _burn(address from) internal override {
        uint id = getLastOwnedTokenId(from);
		slot[slots] = card_used_by_ID[id];

		slots+=1;
		super._burn(from);
	}

	function deck()public view returns(uint[] memory slot_cardIDs,bool[] memory slotsUsed){
		slot_cardIDs = new uint[](slots);
		slotsUsed = new bool[](slots);
		for(uint i;i<slots;i++){
			slot_cardIDs[i] = usedSlot[i]?slot[i]:i;
			slotsUsed[i] = usedSlot[i];
		}
	}

    
function tokenURI(uint256 id) public view override returns (string memory) {
    if (bytes(baseTokenURI).length > 0) {
        return string.concat(baseTokenURI, Strings.toString(id), ".json");
    } else {
        return
            string.concat(
                "data:application/json;utf8,",
                json(id)
            );
    }
}


    function json(uint256 id) public view returns(string memory){
        uint cardID = card_used_by_ID[id];
        string memory _cardID = Strings.toString( cardID );

        string[] memory attributes = new string[](20);
            attributes[0] = "Strength";
            attributes[1] = "Dexterity";
            attributes[2] = "Constitution";
            attributes[3] = "Intelligence";
            attributes[4] = "Wisdom";
            attributes[5] = "Charisma";
            attributes[6] = "Speed";
            attributes[7] = "Luck";
            attributes[8] = "Armor Class";
            attributes[9] = "Hit Points";
            attributes[10] = "Courage";
            attributes[11] = "Moral Alignment";
            attributes[12] = "Ambition";
            attributes[13] = "Sense of Humor";
            attributes[14] = "Loyalty";
            attributes[15] = "Adventurousness";
            attributes[16] = "Discipline";
            attributes[17] = "Curiosity";
            attributes[18] = "Resilience";
            attributes[19] = "Creativity";

        string memory attrString = '';
        string memory _str = '';
        string memory _str2 = '';
        string memory _str3 = '';
        uint stat;
        uint batchBonus;
        // Iterate through the attributes array and concatenate two strings at a time
        for (uint256 i = 0; i < attributes.length; i += 1){
            //Batch Bonus & Rare stat rolls
            batchBonus = Math.sqrt(uint(keccak256(abi.encodePacked(
                        "Never Gonna Give You Up",cardID,i)))%
                        (cardID<339?80000:160000));

            stat = 20 - Math.sqrt(uint(keccak256(abi.encodePacked(
                "Decentralized Public Infrastructure."/*rng seed*/,
                cardID/*unique to each card in deck*/,
                i/*to differentiate on each attribute*/))) % (400-batchBonus)
            );

            _str = string.concat(i==0?'':',', '{"trait_type":"');
            _str2 = string.concat(attributes[i], '","value":');
            _str3 = string.concat( Strings.toString(stat), '}');
            attrString = string.concat(attrString,
                string.concat(_str,
                    string.concat(_str2, _str3)
                    )
                );
        }

        string memory jsonPreImage = string.concat(
            string.concat(
                string.concat('{"name": "Anon #', string.concat( _cardID, string.concat('", "id":',  Strings.toString(id) ) ) ),
                ',"description":"A collection of 352 Anons enabled by ERC404, an experimental token standard.","external_url":"https://anonethereum.com","image":"'
            ),
            string.concat(dataURI, _cardID)
        );

        string memory jsonPostImage = string.concat(
            '.mp4","attributes":[',attrString
        );

        jsonPostImage = string.concat( jsonPostImage, ']}' );

        return string.concat(jsonPreImage,jsonPostImage);
    }

    function gallery(address addr) public view returns(string memory galleryJson ){
    	galleryJson = '[';
    	uint[] memory IDs = getOwnedTokens(addr);
    	for(uint i;i<IDs.length;i++){
	    	galleryJson = string.concat(galleryJson,json(IDs[i]) );
	    	if(i!=IDs.length-1){
	    		galleryJson = string.concat(galleryJson,',');
	    	}
    	}
    	galleryJson = string.concat(galleryJson,']');
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyExists","type":"error"},{"inputs":[],"name":"InvalidOwner","type":"error"},{"inputs":[],"name":"InvalidRecipient","type":"error"},{"inputs":[],"name":"InvalidSender","type":"error"},{"inputs":[],"name":"NotFound","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"UnsafeRecipient","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"ERC721Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"card","type":"uint256"}],"name":"MintExtended","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"appprove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amountOrId","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"card_used_by_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deck","outputs":[{"internalType":"uint256[]","name":"slot_cardIDs","type":"uint256[]"},{"internalType":"bool[]","name":"slotsUsed","type":"bool[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"gallery","outputs":[{"internalType":"string","name":"galleryJson","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isbotBlackList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"json","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revokeOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_dataURI","type":"string"}],"name":"setDataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"name":"setNameSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amountOrId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"unsetb","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60c06040526003805460ff191660011790556103e8601081905560115534801562000028575f80fd5b50604080518082018252600880825267141a5b1b1ccd0c0d60c21b602080840182905284518086019095529184529083015260105490919060129033808062000084576040516349e27cff60e01b815260040160405180910390fd5b5f80546001600160a01b0319166001600160a01b03831690811782556040519091907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001620000da868262000240565b506002620000e9858262000240565b5060ff831660808190526200010090600a6200041b565b6200010c908362000432565b60a0526200011c8160016200014e565b5050505050601054670de0b6b3a764000062000139919062000432565b335f908152600560205260409020556200044c565b5f546001600160a01b0316331462000178576040516282b42960e81b815260040160405180910390fd5b6001600160a01b03919091165f908152600d60205260409020805460ff1916911515919091179055565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620001cb57607f821691505b602082108103620001ea57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200023b57805f5260205f20601f840160051c81016020851015620002175750805b601f840160051c820191505b8181101562000238575f815560010162000223565b50505b505050565b81516001600160401b038111156200025c576200025c620001a2565b62000274816200026d8454620001b6565b84620001f0565b602080601f831160018114620002aa575f8415620002925750858301515b5f19600386901b1c1916600185901b17855562000304565b5f85815260208120601f198616915b82811015620002da57888601518255948401946001909101908401620002b9565b5085821015620002f857878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200036057815f19048211156200034457620003446200030c565b808516156200035257918102915b93841c939080029062000325565b509250929050565b5f82620003785750600162000415565b816200038657505f62000415565b81600181146200039f5760028114620003aa57620003ca565b600191505062000415565b60ff841115620003be57620003be6200030c565b50506001821b62000415565b5060208310610133831016604e8410600b8410161715620003ef575081810a62000415565b620003fb838362000320565b805f19048211156200041157620004116200030c565b0290505b92915050565b5f6200042b60ff84168362000368565b9392505050565b80820281158282048414176200041557620004156200030c565b60805160a05161308c620004755f395f61029201525f81816102f70152611b45015261308c5ff3fe608060405234801561000f575f80fd5b5060043610610208575f3560e01c806374e18e961161011f578063bdfc2990116100a9578063dd62ed3e11610079578063dd62ed3e146104da578063e0df5b6f14610504578063e985e9c514610517578063f28ca1dd14610544578063f2fde38b1461054c575f80fd5b8063bdfc29901461048a578063c87b56dd146104ac578063d547cfb7146104bf578063d57d56af146104c7575f80fd5b80639b19251a116100ef5780639b19251a14610427578063a22cb46514610449578063a9059cbb1461045c578063b88d4fde1461046f578063b923b20514610482575f80fd5b806374e18e96146103db5780638da5cb5b146103ee5780638ed8d0321461040057806395d89b411461041f575f80fd5b806333f4fc2b116101a057806353d6fd591161017057806353d6fd591461036d5780635c110902146103805780636352211e1461039357806365c3175b146103a657806370a08231146103bc575f80fd5b806333f4fc2b1461032b57806342842e0e1461033e5780634f02c42014610351578063504334c21461035a575f80fd5b806318d217c3116101db57806318d217c3146102c257806323b872dd146102d75780632b968958146102ea578063313ce567146102f2575f80fd5b806306fdde031461020c578063081812fc1461022a578063095ea7b31461026a57806318160ddd1461028d575b5f80fd5b61021461055f565b60405161022191906125e8565b60405180910390f35b61025261023836600461261a565b60076020525f90815260409020546001600160a01b031681565b6040516001600160a01b039091168152602001610221565b61027d610278366004612647565b6105eb565b6040519015158152602001610221565b6102b47f000000000000000000000000000000000000000000000000000000000000000081565b604051908152602001610221565b6102d56102d036600461270c565b610736565b005b6102d56102e5366004612746565b61076f565b6102d5610aeb565b6103197f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff9091168152602001610221565b6102d561033936600461277f565b610b4f565b6102d561034c366004612746565b610b98565b6102b460045481565b6102d5610368366004612798565b610c69565b6102d561037b3660046127f8565b610c9c565b6102d561038e36600461277f565b610cef565b6102526103a136600461261a565b610d3b565b6103ae610d75565b604051610221929190612831565b6102b46103ca36600461277f565b60056020525f908152604090205481565b6102146103e936600461261a565b610ea2565b5f54610252906001600160a01b031681565b6102b461040e36600461261a565b60146020525f908152604090205481565b61021461179b565b61027d61043536600461277f565b600d6020525f908152604090205460ff1681565b6102d56104573660046127f8565b6117a8565b61027d61046a366004612647565b611813565b6102d561047d3660046128ac565b611826565b6102d56118e6565b61027d61049836600461277f565b600a6020525f908152604090205460ff1681565b6102146104ba36600461261a565b611917565b61021461197a565b6102146104d536600461277f565b611987565b6102b46104e836600461293f565b600660209081525f928352604080842090915290825290205481565b6102d561051236600461270c565b611a63565b61027d61052536600461293f565b600860209081525f928352604080842090915290825290205460ff1681565b610214611a98565b6102d561055a36600461277f565b611aa5565b6001805461056c90612970565b80601f016020809104026020016040519081016040528092919081815260200182805461059890612970565b80156105e35780601f106105ba576101008083540402835291602001916105e3565b820191905f5260205f20905b8154815290600101906020018083116105c657829003601f168201915b505050505081565b5f60045482111580156105fd57505f82115b156106d1575f828152600960205260409020546001600160a01b031633811480159061064c57506001600160a01b0381165f90815260086020908152604080832033845290915290205460ff16155b15610669576040516282b42960e81b815260040160405180910390fd5b5f8381526007602090815260409182902080546001600160a01b0319166001600160a01b038881169182179092559251868152908416917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a35061072c565b335f8181526006602090815260408083206001600160a01b03881680855290835292819020869055518581529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a35b5060015b92915050565b5f546001600160a01b0316331461075f576040516282b42960e81b815260040160405180910390fd5b600e61076b82826129ec565b5050565b6004548111610a7f575f818152600960205260409020546001600160a01b038481169116146107b157604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b0382166107d857604051634e46966960e11b815260040160405180910390fd5b336001600160a01b0384161480159061081457506001600160a01b0383165f90815260086020908152604080832033845290915290205460ff16155b801561083657505f818152600760205260409020546001600160a01b03163314155b15610853576040516282b42960e81b815260040160405180910390fd5b61085b611b3f565b6001600160a01b0384165f9081526005602052604081208054909190610882908490612ac0565b909155506108909050611b3f565b6001600160a01b038084165f81815260056020908152604080832080549096019095558582526009815284822080546001600160a01b031990811690941790556007815284822080549093169092559186168252600b905290812080546108f990600190612ac0565b8154811061090957610909612ad3565b5f9182526020808320909101546001600160a01b0387168352600b82526040808420868552600c9093529092205481549293508392811061094c5761094c612ad3565b5f9182526020808320909101929092556001600160a01b0386168152600b9091526040902080548061098057610980612ae7565b5f828152602080822083015f19908101839055909201909255838252600c8152604080832054848452818420556001600160a01b038616808452600b835290832080546001818101835582865293852001869055925290546109e29190612ac0565b5f838152600c602052604080822092909255905183916001600160a01b0380871692908816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4826001600160a01b0316846001600160a01b03167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487610a68611b3f565b60405190815260200160405180910390a350505050565b6001600160a01b0383165f9081526006602090815260408083203384529091529020545f198114610ad857610ab48282612ac0565b6001600160a01b0385165f9081526006602090815260408083203384529091529020555b610ae3848484611b70565b50505b505050565b5f546001600160a01b03163314610b14576040516282b42960e81b815260040160405180910390fd5b5f80546001600160a01b031916815560405133907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b5f546001600160a01b03163314610b78576040516282b42960e81b815260040160405180910390fd5b6001600160a01b03165f908152600a60205260409020805460ff19169055565b610ba383838361076f565b6001600160a01b0382163b15801590610c4b5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401525f608484015290919084169063150b7a029060a4016020604051808303815f875af1158015610c1a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c3e9190612afb565b6001600160e01b03191614155b15610ae657604051633da6393160e01b815260040160405180910390fd5b5f546001600160a01b03163314610c92576040516282b42960e81b815260040160405180910390fd5b61076b8282611d7c565b5f546001600160a01b03163314610cc5576040516282b42960e81b815260040160405180910390fd5b6001600160a01b03919091165f908152600d60205260409020805460ff1916911515919091179055565b5f546001600160a01b03163314610d18576040516282b42960e81b815260040160405180910390fd5b6001600160a01b03165f908152600a60205260409020805460ff19166001179055565b5f818152600960205260409020546001600160a01b031680610d705760405163c5723b5160e01b815260040160405180910390fd5b919050565b60608060115467ffffffffffffffff811115610d9357610d9361266f565b604051908082528060200260200182016040528015610dbc578160200160208202803683370190505b50915060115467ffffffffffffffff811115610dda57610dda61266f565b604051908082528060200260200182016040528015610e03578160200160208202803683370190505b5090505f5b601154811015610e9d575f8181526013602052604090205460ff16610e2d5780610e3c565b5f818152601260205260409020545b838281518110610e4e57610e4e612ad3565b6020908102919091018101919091525f82815260139091526040902054825160ff90911690839083908110610e8557610e85612ad3565b91151560209283029190910190910152600101610e08565b509091565b5f81815260146020526040812054606091610ebc82611d95565b6040805160148082526102a082019092529192505f9190816020015b6060815260200190600190039081610ed8579050509050604051806040016040528060088152602001670a6e8e4cadccee8d60c31b815250815f81518110610f2257610f22612ad3565b60200260200101819052506040518060400160405280600981526020016844657874657269747960b81b81525081600181518110610f6257610f62612ad3565b60200260200101819052506040518060400160405280600c81526020016b21b7b739ba34ba3aba34b7b760a11b81525081600281518110610fa557610fa5612ad3565b60200260200101819052506040518060400160405280600c81526020016b496e74656c6c6967656e636560a01b81525081600381518110610fe857610fe8612ad3565b602002602001018190525060405180604001604052806006815260200165576973646f6d60d01b8152508160048151811061102557611025612ad3565b6020026020010181905250604051806040016040528060088152602001674368617269736d6160c01b8152508160058151811061106457611064612ad3565b60200260200101819052506040518060400160405280600581526020016414dc19595960da1b815250816006815181106110a0576110a0612ad3565b6020026020010181905250604051806040016040528060048152602001634c75636b60e01b815250816007815181106110db576110db612ad3565b60200260200101819052506040518060400160405280600b81526020016a41726d6f7220436c61737360a81b8152508160088151811061111d5761111d612ad3565b60200260200101819052506040518060400160405280600a81526020016948697420506f696e747360b01b8152508160098151811061115e5761115e612ad3565b602002602001018190525060405180604001604052806007815260200166436f757261676560c81b81525081600a8151811061119c5761119c612ad3565b60200260200101819052506040518060400160405280600f81526020016e135bdc985b08105b1a59db9b595b9d608a1b81525081600b815181106111e2576111e2612ad3565b60200260200101819052506040518060400160405280600881526020016720b6b134ba34b7b760c11b81525081600c8151811061122157611221612ad3565b60200260200101819052506040518060400160405280600e81526020016d29b2b739b29037b310243ab6b7b960911b81525081600d8151811061126657611266612ad3565b6020026020010181905250604051806040016040528060078152602001664c6f79616c747960c81b81525081600e815181106112a4576112a4612ad3565b60200260200101819052506040518060400160405280600f81526020016e416476656e7475726f75736e65737360881b81525081600f815181106112ea576112ea612ad3565b60200260200101819052506040518060400160405280600a8152602001694469736369706c696e6560b01b8152508160108151811061132b5761132b612ad3565b602002602001018190525060405180604001604052806009815260200168437572696f7369747960b81b8152508160118151811061136b5761136b612ad3565b60200260200101819052506040518060400160405280600a815260200169526573696c69656e636560b01b815250816012815181106113ac576113ac612ad3565b60200260200101819052506040518060400160405280600a8152602001694372656174697669747960b01b815250816013815181106113ed576113ed612ad3565b6020908102919091018101919091526040805180830182525f8082528251808501845281815283518086018552828152845195860190945281855291939192919080805b875181101561165c576114bf6101538b1061144f5762027100611454565b620138805b6040517f4e6576657220476f6e6e61204769766520596f752055700000000000000000006020820152603781018d90526057810184905262ffffff91909116906077015b604051602081830303815290604052805190602001205f1c6114ba9190612b36565b611e25565b915061151f6114d083610190612ac0565b604080517f446563656e7472616c697a6564205075626c696320496e6672617374727563746020820152633ab9329760e11b91810191909152604481018d905260648101849052608401611498565b61152a906014612ac0565b9250801561155157604051806040016040528060018152602001600b60fa1b815250611561565b60405180602001604052805f8152505b6040516020016115719190612b49565b604051602081830303815290604052955087818151811061159457611594612ad3565b60200260200101516040516020016115ac9190612b7b565b60405160208183030381529060405294506115c683611d95565b6040516020016115d69190612ba8565b6040516020818303038152906040529350868686866040516020016115fc929190612bcc565b60408051601f198184030181529082905261161a9291602001612bcc565b60408051601f19818403018152908290526116389291602001612bcc565b60408051601f198184030181529190529650611655600182612bfa565b9050611431565b505f886116688d611d95565b6040516020016116789190612c0d565b60408051601f19818403018152908290526116969291602001612bcc565b60408051601f19818403018152908290526116b391602001612c3d565b60408051601f19818403018152908290526116d091602001612c75565b604051602081830303815290604052600e8a6040516020016116f3929190612db0565b60408051601f19818403018152908290526117119291602001612bcc565b60405160208183030381529060405290505f876040516020016117349190612dcb565b6040516020818303038152906040529050806040516020016117569190612e07565b6040516020818303038152906040529050818160405160200161177a929190612bcc565b6040516020818303038152906040529b505050505050505050505050919050565b6002805461056c90612970565b335f8181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b5f61181f338484611b70565b9392505050565b61183185858561076f565b6001600160a01b0384163b158015906118c85750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a029061187b9033908a90899089908990600401612e2c565b6020604051808303815f875af1158015611897573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118bb9190612afb565b6001600160e01b03191614155b15610ae357604051633da6393160e01b815260040160405180910390fd5b335f90815260056020526040812054900361191557335f908152600d60205260409020805460ff191660011790555b565b60605f600f805461192790612970565b9050111561196157600f61193a83611d95565b60405160200161194b929190612e7e565b6040516020818303038152906040529050919050565b61196a82610ea2565b60405160200161194b9190612eb2565b600f805461056c90612970565b6040805180820190915260018152605b60f81b60208201525f6119a983611f09565b90505f5b8151811015611a3a57826119d98383815181106119cc576119cc612ad3565b6020026020010151610ea2565b6040516020016119ea929190612bcc565b604051602081830303815290604052925060018251611a099190612ac0565b8114611a325782604051602001611a209190612ef6565b60405160208183030381529060405292505b6001016119ad565b5081604051602001611a4c9190612f1a565b604051602081830303815290604052915050919050565b5f546001600160a01b03163314611a8c576040516282b42960e81b815260040160405180910390fd5b600f61076b82826129ec565b600e805461056c90612970565b5f546001600160a01b03163314611ace576040516282b42960e81b815260040160405180910390fd5b6001600160a01b038116611af5576040516349e27cff60e01b815260040160405180910390fd5b5f80546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b5f611b6b7f0000000000000000000000000000000000000000000000000000000000000000600a61301e565b905090565b5f80611b7a611b3f565b6001600160a01b038087165f81815260056020908152604080832054948a16835280832054938352600a909152902054929350909160ff1615611bf55760405162461bcd60e51b815260206004820152600e60248201526d1858d8dbdd5b9d081a5cc8189bdd60921b60448201526064015b60405180910390fd5b6001600160a01b0387165f9081526005602052604081208054879290611c1c908490612ac0565b90915550506001600160a01b038087165f90815260056020908152604080832080548a019055928a168252600d9052205460ff16611cab576001600160a01b0387165f90815260056020526040812054611c7790859061302c565b611c81858561302c565b611c8b9190612ac0565b90505f5b81811015611ca857611ca089611f72565b600101611c8f565b50505b6001600160a01b0386165f908152600d602052604090205460ff16611d22575f611cd5848361302c565b6001600160a01b0388165f90815260056020526040902054611cf890869061302c565b611d029190612ac0565b90505f5b81811015611d1f57611d1788611fc1565b600101611d06565b50505b856001600160a01b0316876001600160a01b03167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e03148787604051611d6791815260200190565b60405180910390a35060019695505050505050565b6001611d8883826129ec565b506002610ae682826129ec565b60605f611da18361217f565b60010190505f8167ffffffffffffffff811115611dc057611dc061266f565b6040519080825280601f01601f191660200182016040528015611dea576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611df457509392505050565b5f815f03611e3457505f919050565b5f6001611e4084612256565b901c6001901b90506001818481611e5957611e59612b22565b048201901c90506001818481611e7157611e71612b22565b048201901c90506001818481611e8957611e89612b22565b048201901c90506001818481611ea157611ea1612b22565b048201901c90506001818481611eb957611eb9612b22565b048201901c90506001818481611ed157611ed1612b22565b048201901c90506001818481611ee957611ee9612b22565b048201901c905061181f81828581611f0357611f03612b22565b046122e9565b6001600160a01b0381165f908152600b6020908152604091829020805483518184028101840190945280845260609392830182828015611f6657602002820191905f5260205f20905b815481526020019060010190808311611f52575b50505050509050919050565b5f611f7c826122fe565b5f818152601460209081526040808320546011805485526012909352908320558054929350600192909190611fb2908490612bfa565b9091555061076b90508261239d565b611fca816124be565b5f306001600160a01b0316634f02c4206040518163ffffffff1660e01b8152600401602060405180830381865afa158015612007573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061202b919061303f565b90505f6011548260644361203f9190612ac0565b4060405160200161205a929190918252602082015260400190565b604051602081830303815290604052805190602001205f1c61207c9190612b36565b5f818152601360205260408120549192509060ff16156120aa57505f818152601260205260409020546120c5565b505f818152601360205260409020805460ff19166001179055805b600160115f8282546120d79190612ac0565b90915550506011545f9081526013602052604090205460ff166120fc5760115461210e565b6011545f908152601260205260409020545b5f83815260126020908152604080832093909355601154825260138152828220805460ff1916600117905585825260149052818120839055905182916001600160a01b038716917f792daa4b2623ba70e38af40290b50417d8a1620a7deee03ad74ed721bf9c897f9190a350505050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106121bd5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106121e9576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061220757662386f26fc10000830492506010015b6305f5e100831061221f576305f5e100830492506008015b612710831061223357612710830492506004015b60648310612245576064830492506002015b600a83106107305760010192915050565b5f80608083901c1561226a57608092831c92015b604083901c1561227c57604092831c92015b602083901c1561228e57602092831c92015b601083901c156122a057601092831c92015b600883901c156122b257600892831c92015b600483901c156122c457600492831c92015b600283901c156122d657600292831c92015b600183901c156107305760010192915050565b5f8183106122f7578161181f565b5090919050565b6001600160a01b0381165f908152600b60205260408120546123585760405162461bcd60e51b81526020600482015260136024820152724f776e657220686173206e6f20746f6b656e7360681b6044820152606401611bec565b6001600160a01b0382165f908152600b60205260409020805461237d90600190612ac0565b8154811061238d5761238d612ad3565b905f5260205f2001549050919050565b6001600160a01b0381166123c457604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b0381165f908152600b6020526040812080546123e990600190612ac0565b815481106123f9576123f9612ad3565b905f5260205f2001549050600b5f836001600160a01b03166001600160a01b031681526020019081526020015f2080548061243657612436612ae7565b5f828152602080822083015f19908101839055909201909255828252600c815260408083208390556009825280832080546001600160a01b031990811690915560079092528083208054909216909155518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b0381166124e557604051634e46966960e11b815260040160405180910390fd5b60048054600101908190555f818152600960205260409020546001600160a01b0316156125255760405163119b4fd360e11b815260040160405180910390fd5b5f81815260096020908152604080832080546001600160a01b0319166001600160a01b038716908117909155808452600b8352908320805460018181018355828652938520018590559252905461257c9190612ac0565b5f828152600c602052604080822092909255905182916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5f5b838110156125e05781810151838201526020016125c8565b50505f910152565b602081525f82518060208401526126068160408501602087016125c6565b601f01601f19169190910160400192915050565b5f6020828403121561262a575f80fd5b5035919050565b80356001600160a01b0381168114610d70575f80fd5b5f8060408385031215612658575f80fd5b61266183612631565b946020939093013593505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112612692575f80fd5b813567ffffffffffffffff808211156126ad576126ad61266f565b604051601f8301601f19908116603f011681019082821181831017156126d5576126d561266f565b816040528381528660208588010111156126ed575f80fd5b836020870160208301375f602085830101528094505050505092915050565b5f6020828403121561271c575f80fd5b813567ffffffffffffffff811115612732575f80fd5b61273e84828501612683565b949350505050565b5f805f60608486031215612758575f80fd5b61276184612631565b925061276f60208501612631565b9150604084013590509250925092565b5f6020828403121561278f575f80fd5b61181f82612631565b5f80604083850312156127a9575f80fd5b823567ffffffffffffffff808211156127c0575f80fd5b6127cc86838701612683565b935060208501359150808211156127e1575f80fd5b506127ee85828601612683565b9150509250929050565b5f8060408385031215612809575f80fd5b61281283612631565b915060208301358015158114612826575f80fd5b809150509250929050565b604080825283519082018190525f906020906060840190828701845b828110156128695781518452928401929084019060010161284d565b505050838103828501528451808252858301918301905f5b8181101561289f578351151583529284019291840191600101612881565b5090979650505050505050565b5f805f805f608086880312156128c0575f80fd5b6128c986612631565b94506128d760208701612631565b935060408601359250606086013567ffffffffffffffff808211156128fa575f80fd5b818801915088601f83011261290d575f80fd5b81358181111561291b575f80fd5b89602082850101111561292c575f80fd5b9699959850939650602001949392505050565b5f8060408385031215612950575f80fd5b61295983612631565b915061296760208401612631565b90509250929050565b600181811c9082168061298457607f821691505b6020821081036129a257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610ae657805f5260205f20601f840160051c810160208510156129cd5750805b601f840160051c820191505b81811015610ae3575f81556001016129d9565b815167ffffffffffffffff811115612a0657612a0661266f565b612a1a81612a148454612970565b846129a8565b602080601f831160018114612a4d575f8415612a365750858301515b5f19600386901b1c1916600185901b178555612aa4565b5f85815260208120601f198616915b82811015612a7b57888601518255948401946001909101908401612a5c565b5085821015612a9857878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561073057610730612aac565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52603160045260245ffd5b5f60208284031215612b0b575f80fd5b81516001600160e01b03198116811461181f575f80fd5b634e487b7160e01b5f52601260045260245ffd5b5f82612b4457612b44612b22565b500690565b5f8251612b5a8184602087016125c6565b6e3d913a3930b4ba2fba3cb832911d1160891b920191825250600f01919050565b5f8251612b8c8184602087016125c6565b691116113b30b63ab2911d60b11b920191825250600a01919050565b5f8251612bb98184602087016125c6565b607d60f81b920191825250600101919050565b5f8351612bdd8184602088016125c6565b835190830190612bf18183602088016125c6565b01949350505050565b8082018082111561073057610730612aac565b671116101134b2111d60c11b815281515f90612c308160088501602087016125c6565b9190910160080192915050565b6f7b226e616d65223a2022416e6f6e202360801b815281515f90612c688160108501602087016125c6565b9190910160100192915050565b5f8251612c868184602087016125c6565b7f2c226465736372697074696f6e223a224120636f6c6c656374696f6e206f66209201918252507f33353220416e6f6e7320656e61626c6564206279204552433430342c20616e2060208201527f6578706572696d656e74616c20746f6b656e207374616e646172642e222c226560408201527f787465726e616c5f75726c223a2268747470733a2f2f616e6f6e6574686572656060820152703ab69731b7b691161134b6b0b3b2911d1160791b6080820152609101919050565b5f8154612d4d81612970565b60018281168015612d655760018114612d7a57612da6565b60ff1984168752821515830287019450612da6565b855f526020805f205f5b85811015612d9d5781548a820152908401908201612d84565b50505082870194505b5050505092915050565b5f612dbb8285612d41565b8351612bf18183602088016125c6565b732e6d7034222c2261747472696275746573223a5b60601b815281515f90612dfa8160148501602087016125c6565b9190910160140192915050565b5f8251612e188184602087016125c6565b615d7d60f01b920191825250600201919050565b6001600160a01b038681168252851660208201526040810184905260806060820181905281018290525f828460a08401375f60a0848401015260a0601f19601f85011683010190509695505050505050565b5f612e898285612d41565b8351612e998183602088016125c6565b64173539b7b760d91b9101908152600501949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c000000000081525f8251612ee981601b8501602087016125c6565b91909101601b0192915050565b5f8251612f078184602087016125c6565b600b60fa1b920191825250600101919050565b5f8251612f2b8184602087016125c6565b605d60f81b920191825250600101919050565b600181815b80851115612f7857815f1904821115612f5e57612f5e612aac565b80851615612f6b57918102915b93841c9390800290612f43565b509250929050565b5f82612f8e57506001610730565b81612f9a57505f610730565b8160018114612fb05760028114612fba57612fd6565b6001915050610730565b60ff841115612fcb57612fcb612aac565b50506001821b610730565b5060208310610133831016604e8410600b8410161715612ff9575081810a610730565b6130038383612f3e565b805f190482111561301657613016612aac565b029392505050565b5f61181f60ff841683612f80565b5f8261303a5761303a612b22565b500490565b5f6020828403121561304f575f80fd5b505191905056fea2646970667358221220c9313e87a9c799c4e66f704691c9c669fcacfa8007428ce47d16b5fc77d6620e64736f6c63430008170033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610208575f3560e01c806374e18e961161011f578063bdfc2990116100a9578063dd62ed3e11610079578063dd62ed3e146104da578063e0df5b6f14610504578063e985e9c514610517578063f28ca1dd14610544578063f2fde38b1461054c575f80fd5b8063bdfc29901461048a578063c87b56dd146104ac578063d547cfb7146104bf578063d57d56af146104c7575f80fd5b80639b19251a116100ef5780639b19251a14610427578063a22cb46514610449578063a9059cbb1461045c578063b88d4fde1461046f578063b923b20514610482575f80fd5b806374e18e96146103db5780638da5cb5b146103ee5780638ed8d0321461040057806395d89b411461041f575f80fd5b806333f4fc2b116101a057806353d6fd591161017057806353d6fd591461036d5780635c110902146103805780636352211e1461039357806365c3175b146103a657806370a08231146103bc575f80fd5b806333f4fc2b1461032b57806342842e0e1461033e5780634f02c42014610351578063504334c21461035a575f80fd5b806318d217c3116101db57806318d217c3146102c257806323b872dd146102d75780632b968958146102ea578063313ce567146102f2575f80fd5b806306fdde031461020c578063081812fc1461022a578063095ea7b31461026a57806318160ddd1461028d575b5f80fd5b61021461055f565b60405161022191906125e8565b60405180910390f35b61025261023836600461261a565b60076020525f90815260409020546001600160a01b031681565b6040516001600160a01b039091168152602001610221565b61027d610278366004612647565b6105eb565b6040519015158152602001610221565b6102b47f00000000000000000000000000000000000000000000003635c9adc5dea0000081565b604051908152602001610221565b6102d56102d036600461270c565b610736565b005b6102d56102e5366004612746565b61076f565b6102d5610aeb565b6103197f000000000000000000000000000000000000000000000000000000000000001281565b60405160ff9091168152602001610221565b6102d561033936600461277f565b610b4f565b6102d561034c366004612746565b610b98565b6102b460045481565b6102d5610368366004612798565b610c69565b6102d561037b3660046127f8565b610c9c565b6102d561038e36600461277f565b610cef565b6102526103a136600461261a565b610d3b565b6103ae610d75565b604051610221929190612831565b6102b46103ca36600461277f565b60056020525f908152604090205481565b6102146103e936600461261a565b610ea2565b5f54610252906001600160a01b031681565b6102b461040e36600461261a565b60146020525f908152604090205481565b61021461179b565b61027d61043536600461277f565b600d6020525f908152604090205460ff1681565b6102d56104573660046127f8565b6117a8565b61027d61046a366004612647565b611813565b6102d561047d3660046128ac565b611826565b6102d56118e6565b61027d61049836600461277f565b600a6020525f908152604090205460ff1681565b6102146104ba36600461261a565b611917565b61021461197a565b6102146104d536600461277f565b611987565b6102b46104e836600461293f565b600660209081525f928352604080842090915290825290205481565b6102d561051236600461270c565b611a63565b61027d61052536600461293f565b600860209081525f928352604080842090915290825290205460ff1681565b610214611a98565b6102d561055a36600461277f565b611aa5565b6001805461056c90612970565b80601f016020809104026020016040519081016040528092919081815260200182805461059890612970565b80156105e35780601f106105ba576101008083540402835291602001916105e3565b820191905f5260205f20905b8154815290600101906020018083116105c657829003601f168201915b505050505081565b5f60045482111580156105fd57505f82115b156106d1575f828152600960205260409020546001600160a01b031633811480159061064c57506001600160a01b0381165f90815260086020908152604080832033845290915290205460ff16155b15610669576040516282b42960e81b815260040160405180910390fd5b5f8381526007602090815260409182902080546001600160a01b0319166001600160a01b038881169182179092559251868152908416917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a35061072c565b335f8181526006602090815260408083206001600160a01b03881680855290835292819020869055518581529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a35b5060015b92915050565b5f546001600160a01b0316331461075f576040516282b42960e81b815260040160405180910390fd5b600e61076b82826129ec565b5050565b6004548111610a7f575f818152600960205260409020546001600160a01b038481169116146107b157604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b0382166107d857604051634e46966960e11b815260040160405180910390fd5b336001600160a01b0384161480159061081457506001600160a01b0383165f90815260086020908152604080832033845290915290205460ff16155b801561083657505f818152600760205260409020546001600160a01b03163314155b15610853576040516282b42960e81b815260040160405180910390fd5b61085b611b3f565b6001600160a01b0384165f9081526005602052604081208054909190610882908490612ac0565b909155506108909050611b3f565b6001600160a01b038084165f81815260056020908152604080832080549096019095558582526009815284822080546001600160a01b031990811690941790556007815284822080549093169092559186168252600b905290812080546108f990600190612ac0565b8154811061090957610909612ad3565b5f9182526020808320909101546001600160a01b0387168352600b82526040808420868552600c9093529092205481549293508392811061094c5761094c612ad3565b5f9182526020808320909101929092556001600160a01b0386168152600b9091526040902080548061098057610980612ae7565b5f828152602080822083015f19908101839055909201909255838252600c8152604080832054848452818420556001600160a01b038616808452600b835290832080546001818101835582865293852001869055925290546109e29190612ac0565b5f838152600c602052604080822092909255905183916001600160a01b0380871692908816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4826001600160a01b0316846001600160a01b03167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487610a68611b3f565b60405190815260200160405180910390a350505050565b6001600160a01b0383165f9081526006602090815260408083203384529091529020545f198114610ad857610ab48282612ac0565b6001600160a01b0385165f9081526006602090815260408083203384529091529020555b610ae3848484611b70565b50505b505050565b5f546001600160a01b03163314610b14576040516282b42960e81b815260040160405180910390fd5b5f80546001600160a01b031916815560405133907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b5f546001600160a01b03163314610b78576040516282b42960e81b815260040160405180910390fd5b6001600160a01b03165f908152600a60205260409020805460ff19169055565b610ba383838361076f565b6001600160a01b0382163b15801590610c4b5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401525f608484015290919084169063150b7a029060a4016020604051808303815f875af1158015610c1a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c3e9190612afb565b6001600160e01b03191614155b15610ae657604051633da6393160e01b815260040160405180910390fd5b5f546001600160a01b03163314610c92576040516282b42960e81b815260040160405180910390fd5b61076b8282611d7c565b5f546001600160a01b03163314610cc5576040516282b42960e81b815260040160405180910390fd5b6001600160a01b03919091165f908152600d60205260409020805460ff1916911515919091179055565b5f546001600160a01b03163314610d18576040516282b42960e81b815260040160405180910390fd5b6001600160a01b03165f908152600a60205260409020805460ff19166001179055565b5f818152600960205260409020546001600160a01b031680610d705760405163c5723b5160e01b815260040160405180910390fd5b919050565b60608060115467ffffffffffffffff811115610d9357610d9361266f565b604051908082528060200260200182016040528015610dbc578160200160208202803683370190505b50915060115467ffffffffffffffff811115610dda57610dda61266f565b604051908082528060200260200182016040528015610e03578160200160208202803683370190505b5090505f5b601154811015610e9d575f8181526013602052604090205460ff16610e2d5780610e3c565b5f818152601260205260409020545b838281518110610e4e57610e4e612ad3565b6020908102919091018101919091525f82815260139091526040902054825160ff90911690839083908110610e8557610e85612ad3565b91151560209283029190910190910152600101610e08565b509091565b5f81815260146020526040812054606091610ebc82611d95565b6040805160148082526102a082019092529192505f9190816020015b6060815260200190600190039081610ed8579050509050604051806040016040528060088152602001670a6e8e4cadccee8d60c31b815250815f81518110610f2257610f22612ad3565b60200260200101819052506040518060400160405280600981526020016844657874657269747960b81b81525081600181518110610f6257610f62612ad3565b60200260200101819052506040518060400160405280600c81526020016b21b7b739ba34ba3aba34b7b760a11b81525081600281518110610fa557610fa5612ad3565b60200260200101819052506040518060400160405280600c81526020016b496e74656c6c6967656e636560a01b81525081600381518110610fe857610fe8612ad3565b602002602001018190525060405180604001604052806006815260200165576973646f6d60d01b8152508160048151811061102557611025612ad3565b6020026020010181905250604051806040016040528060088152602001674368617269736d6160c01b8152508160058151811061106457611064612ad3565b60200260200101819052506040518060400160405280600581526020016414dc19595960da1b815250816006815181106110a0576110a0612ad3565b6020026020010181905250604051806040016040528060048152602001634c75636b60e01b815250816007815181106110db576110db612ad3565b60200260200101819052506040518060400160405280600b81526020016a41726d6f7220436c61737360a81b8152508160088151811061111d5761111d612ad3565b60200260200101819052506040518060400160405280600a81526020016948697420506f696e747360b01b8152508160098151811061115e5761115e612ad3565b602002602001018190525060405180604001604052806007815260200166436f757261676560c81b81525081600a8151811061119c5761119c612ad3565b60200260200101819052506040518060400160405280600f81526020016e135bdc985b08105b1a59db9b595b9d608a1b81525081600b815181106111e2576111e2612ad3565b60200260200101819052506040518060400160405280600881526020016720b6b134ba34b7b760c11b81525081600c8151811061122157611221612ad3565b60200260200101819052506040518060400160405280600e81526020016d29b2b739b29037b310243ab6b7b960911b81525081600d8151811061126657611266612ad3565b6020026020010181905250604051806040016040528060078152602001664c6f79616c747960c81b81525081600e815181106112a4576112a4612ad3565b60200260200101819052506040518060400160405280600f81526020016e416476656e7475726f75736e65737360881b81525081600f815181106112ea576112ea612ad3565b60200260200101819052506040518060400160405280600a8152602001694469736369706c696e6560b01b8152508160108151811061132b5761132b612ad3565b602002602001018190525060405180604001604052806009815260200168437572696f7369747960b81b8152508160118151811061136b5761136b612ad3565b60200260200101819052506040518060400160405280600a815260200169526573696c69656e636560b01b815250816012815181106113ac576113ac612ad3565b60200260200101819052506040518060400160405280600a8152602001694372656174697669747960b01b815250816013815181106113ed576113ed612ad3565b6020908102919091018101919091526040805180830182525f8082528251808501845281815283518086018552828152845195860190945281855291939192919080805b875181101561165c576114bf6101538b1061144f5762027100611454565b620138805b6040517f4e6576657220476f6e6e61204769766520596f752055700000000000000000006020820152603781018d90526057810184905262ffffff91909116906077015b604051602081830303815290604052805190602001205f1c6114ba9190612b36565b611e25565b915061151f6114d083610190612ac0565b604080517f446563656e7472616c697a6564205075626c696320496e6672617374727563746020820152633ab9329760e11b91810191909152604481018d905260648101849052608401611498565b61152a906014612ac0565b9250801561155157604051806040016040528060018152602001600b60fa1b815250611561565b60405180602001604052805f8152505b6040516020016115719190612b49565b604051602081830303815290604052955087818151811061159457611594612ad3565b60200260200101516040516020016115ac9190612b7b565b60405160208183030381529060405294506115c683611d95565b6040516020016115d69190612ba8565b6040516020818303038152906040529350868686866040516020016115fc929190612bcc565b60408051601f198184030181529082905261161a9291602001612bcc565b60408051601f19818403018152908290526116389291602001612bcc565b60408051601f198184030181529190529650611655600182612bfa565b9050611431565b505f886116688d611d95565b6040516020016116789190612c0d565b60408051601f19818403018152908290526116969291602001612bcc565b60408051601f19818403018152908290526116b391602001612c3d565b60408051601f19818403018152908290526116d091602001612c75565b604051602081830303815290604052600e8a6040516020016116f3929190612db0565b60408051601f19818403018152908290526117119291602001612bcc565b60405160208183030381529060405290505f876040516020016117349190612dcb565b6040516020818303038152906040529050806040516020016117569190612e07565b6040516020818303038152906040529050818160405160200161177a929190612bcc565b6040516020818303038152906040529b505050505050505050505050919050565b6002805461056c90612970565b335f8181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b5f61181f338484611b70565b9392505050565b61183185858561076f565b6001600160a01b0384163b158015906118c85750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a029061187b9033908a90899089908990600401612e2c565b6020604051808303815f875af1158015611897573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118bb9190612afb565b6001600160e01b03191614155b15610ae357604051633da6393160e01b815260040160405180910390fd5b335f90815260056020526040812054900361191557335f908152600d60205260409020805460ff191660011790555b565b60605f600f805461192790612970565b9050111561196157600f61193a83611d95565b60405160200161194b929190612e7e565b6040516020818303038152906040529050919050565b61196a82610ea2565b60405160200161194b9190612eb2565b600f805461056c90612970565b6040805180820190915260018152605b60f81b60208201525f6119a983611f09565b90505f5b8151811015611a3a57826119d98383815181106119cc576119cc612ad3565b6020026020010151610ea2565b6040516020016119ea929190612bcc565b604051602081830303815290604052925060018251611a099190612ac0565b8114611a325782604051602001611a209190612ef6565b60405160208183030381529060405292505b6001016119ad565b5081604051602001611a4c9190612f1a565b604051602081830303815290604052915050919050565b5f546001600160a01b03163314611a8c576040516282b42960e81b815260040160405180910390fd5b600f61076b82826129ec565b600e805461056c90612970565b5f546001600160a01b03163314611ace576040516282b42960e81b815260040160405180910390fd5b6001600160a01b038116611af5576040516349e27cff60e01b815260040160405180910390fd5b5f80546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b5f611b6b7f0000000000000000000000000000000000000000000000000000000000000012600a61301e565b905090565b5f80611b7a611b3f565b6001600160a01b038087165f81815260056020908152604080832054948a16835280832054938352600a909152902054929350909160ff1615611bf55760405162461bcd60e51b815260206004820152600e60248201526d1858d8dbdd5b9d081a5cc8189bdd60921b60448201526064015b60405180910390fd5b6001600160a01b0387165f9081526005602052604081208054879290611c1c908490612ac0565b90915550506001600160a01b038087165f90815260056020908152604080832080548a019055928a168252600d9052205460ff16611cab576001600160a01b0387165f90815260056020526040812054611c7790859061302c565b611c81858561302c565b611c8b9190612ac0565b90505f5b81811015611ca857611ca089611f72565b600101611c8f565b50505b6001600160a01b0386165f908152600d602052604090205460ff16611d22575f611cd5848361302c565b6001600160a01b0388165f90815260056020526040902054611cf890869061302c565b611d029190612ac0565b90505f5b81811015611d1f57611d1788611fc1565b600101611d06565b50505b856001600160a01b0316876001600160a01b03167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e03148787604051611d6791815260200190565b60405180910390a35060019695505050505050565b6001611d8883826129ec565b506002610ae682826129ec565b60605f611da18361217f565b60010190505f8167ffffffffffffffff811115611dc057611dc061266f565b6040519080825280601f01601f191660200182016040528015611dea576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611df457509392505050565b5f815f03611e3457505f919050565b5f6001611e4084612256565b901c6001901b90506001818481611e5957611e59612b22565b048201901c90506001818481611e7157611e71612b22565b048201901c90506001818481611e8957611e89612b22565b048201901c90506001818481611ea157611ea1612b22565b048201901c90506001818481611eb957611eb9612b22565b048201901c90506001818481611ed157611ed1612b22565b048201901c90506001818481611ee957611ee9612b22565b048201901c905061181f81828581611f0357611f03612b22565b046122e9565b6001600160a01b0381165f908152600b6020908152604091829020805483518184028101840190945280845260609392830182828015611f6657602002820191905f5260205f20905b815481526020019060010190808311611f52575b50505050509050919050565b5f611f7c826122fe565b5f818152601460209081526040808320546011805485526012909352908320558054929350600192909190611fb2908490612bfa565b9091555061076b90508261239d565b611fca816124be565b5f306001600160a01b0316634f02c4206040518163ffffffff1660e01b8152600401602060405180830381865afa158015612007573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061202b919061303f565b90505f6011548260644361203f9190612ac0565b4060405160200161205a929190918252602082015260400190565b604051602081830303815290604052805190602001205f1c61207c9190612b36565b5f818152601360205260408120549192509060ff16156120aa57505f818152601260205260409020546120c5565b505f818152601360205260409020805460ff19166001179055805b600160115f8282546120d79190612ac0565b90915550506011545f9081526013602052604090205460ff166120fc5760115461210e565b6011545f908152601260205260409020545b5f83815260126020908152604080832093909355601154825260138152828220805460ff1916600117905585825260149052818120839055905182916001600160a01b038716917f792daa4b2623ba70e38af40290b50417d8a1620a7deee03ad74ed721bf9c897f9190a350505050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106121bd5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106121e9576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061220757662386f26fc10000830492506010015b6305f5e100831061221f576305f5e100830492506008015b612710831061223357612710830492506004015b60648310612245576064830492506002015b600a83106107305760010192915050565b5f80608083901c1561226a57608092831c92015b604083901c1561227c57604092831c92015b602083901c1561228e57602092831c92015b601083901c156122a057601092831c92015b600883901c156122b257600892831c92015b600483901c156122c457600492831c92015b600283901c156122d657600292831c92015b600183901c156107305760010192915050565b5f8183106122f7578161181f565b5090919050565b6001600160a01b0381165f908152600b60205260408120546123585760405162461bcd60e51b81526020600482015260136024820152724f776e657220686173206e6f20746f6b656e7360681b6044820152606401611bec565b6001600160a01b0382165f908152600b60205260409020805461237d90600190612ac0565b8154811061238d5761238d612ad3565b905f5260205f2001549050919050565b6001600160a01b0381166123c457604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b0381165f908152600b6020526040812080546123e990600190612ac0565b815481106123f9576123f9612ad3565b905f5260205f2001549050600b5f836001600160a01b03166001600160a01b031681526020019081526020015f2080548061243657612436612ae7565b5f828152602080822083015f19908101839055909201909255828252600c815260408083208390556009825280832080546001600160a01b031990811690915560079092528083208054909216909155518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b0381166124e557604051634e46966960e11b815260040160405180910390fd5b60048054600101908190555f818152600960205260409020546001600160a01b0316156125255760405163119b4fd360e11b815260040160405180910390fd5b5f81815260096020908152604080832080546001600160a01b0319166001600160a01b038716908117909155808452600b8352908320805460018181018355828652938520018590559252905461257c9190612ac0565b5f828152600c602052604080822092909255905182916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5f5b838110156125e05781810151838201526020016125c8565b50505f910152565b602081525f82518060208401526126068160408501602087016125c6565b601f01601f19169190910160400192915050565b5f6020828403121561262a575f80fd5b5035919050565b80356001600160a01b0381168114610d70575f80fd5b5f8060408385031215612658575f80fd5b61266183612631565b946020939093013593505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112612692575f80fd5b813567ffffffffffffffff808211156126ad576126ad61266f565b604051601f8301601f19908116603f011681019082821181831017156126d5576126d561266f565b816040528381528660208588010111156126ed575f80fd5b836020870160208301375f602085830101528094505050505092915050565b5f6020828403121561271c575f80fd5b813567ffffffffffffffff811115612732575f80fd5b61273e84828501612683565b949350505050565b5f805f60608486031215612758575f80fd5b61276184612631565b925061276f60208501612631565b9150604084013590509250925092565b5f6020828403121561278f575f80fd5b61181f82612631565b5f80604083850312156127a9575f80fd5b823567ffffffffffffffff808211156127c0575f80fd5b6127cc86838701612683565b935060208501359150808211156127e1575f80fd5b506127ee85828601612683565b9150509250929050565b5f8060408385031215612809575f80fd5b61281283612631565b915060208301358015158114612826575f80fd5b809150509250929050565b604080825283519082018190525f906020906060840190828701845b828110156128695781518452928401929084019060010161284d565b505050838103828501528451808252858301918301905f5b8181101561289f578351151583529284019291840191600101612881565b5090979650505050505050565b5f805f805f608086880312156128c0575f80fd5b6128c986612631565b94506128d760208701612631565b935060408601359250606086013567ffffffffffffffff808211156128fa575f80fd5b818801915088601f83011261290d575f80fd5b81358181111561291b575f80fd5b89602082850101111561292c575f80fd5b9699959850939650602001949392505050565b5f8060408385031215612950575f80fd5b61295983612631565b915061296760208401612631565b90509250929050565b600181811c9082168061298457607f821691505b6020821081036129a257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610ae657805f5260205f20601f840160051c810160208510156129cd5750805b601f840160051c820191505b81811015610ae3575f81556001016129d9565b815167ffffffffffffffff811115612a0657612a0661266f565b612a1a81612a148454612970565b846129a8565b602080601f831160018114612a4d575f8415612a365750858301515b5f19600386901b1c1916600185901b178555612aa4565b5f85815260208120601f198616915b82811015612a7b57888601518255948401946001909101908401612a5c565b5085821015612a9857878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561073057610730612aac565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52603160045260245ffd5b5f60208284031215612b0b575f80fd5b81516001600160e01b03198116811461181f575f80fd5b634e487b7160e01b5f52601260045260245ffd5b5f82612b4457612b44612b22565b500690565b5f8251612b5a8184602087016125c6565b6e3d913a3930b4ba2fba3cb832911d1160891b920191825250600f01919050565b5f8251612b8c8184602087016125c6565b691116113b30b63ab2911d60b11b920191825250600a01919050565b5f8251612bb98184602087016125c6565b607d60f81b920191825250600101919050565b5f8351612bdd8184602088016125c6565b835190830190612bf18183602088016125c6565b01949350505050565b8082018082111561073057610730612aac565b671116101134b2111d60c11b815281515f90612c308160088501602087016125c6565b9190910160080192915050565b6f7b226e616d65223a2022416e6f6e202360801b815281515f90612c688160108501602087016125c6565b9190910160100192915050565b5f8251612c868184602087016125c6565b7f2c226465736372697074696f6e223a224120636f6c6c656374696f6e206f66209201918252507f33353220416e6f6e7320656e61626c6564206279204552433430342c20616e2060208201527f6578706572696d656e74616c20746f6b656e207374616e646172642e222c226560408201527f787465726e616c5f75726c223a2268747470733a2f2f616e6f6e6574686572656060820152703ab69731b7b691161134b6b0b3b2911d1160791b6080820152609101919050565b5f8154612d4d81612970565b60018281168015612d655760018114612d7a57612da6565b60ff1984168752821515830287019450612da6565b855f526020805f205f5b85811015612d9d5781548a820152908401908201612d84565b50505082870194505b5050505092915050565b5f612dbb8285612d41565b8351612bf18183602088016125c6565b732e6d7034222c2261747472696275746573223a5b60601b815281515f90612dfa8160148501602087016125c6565b9190910160140192915050565b5f8251612e188184602087016125c6565b615d7d60f01b920191825250600201919050565b6001600160a01b038681168252851660208201526040810184905260806060820181905281018290525f828460a08401375f60a0848401015260a0601f19601f85011683010190509695505050505050565b5f612e898285612d41565b8351612e998183602088016125c6565b64173539b7b760d91b9101908152600501949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c000000000081525f8251612ee981601b8501602087016125c6565b91909101601b0192915050565b5f8251612f078184602087016125c6565b600b60fa1b920191825250600101919050565b5f8251612f2b8184602087016125c6565b605d60f81b920191825250600101919050565b600181815b80851115612f7857815f1904821115612f5e57612f5e612aac565b80851615612f6b57918102915b93841c9390800290612f43565b509250929050565b5f82612f8e57506001610730565b81612f9a57505f610730565b8160018114612fb05760028114612fba57612fd6565b6001915050610730565b60ff841115612fcb57612fcb612aac565b50506001821b610730565b5060208310610133831016604e8410600b8410161715612ff9575081810a610730565b6130038383612f3e565b805f190482111561301657613016612aac565b029392505050565b5f61181f60ff841683612f80565b5f8261303a5761303a612b22565b500490565b5f6020828403121561304f575f80fd5b505191905056fea2646970667358221220c9313e87a9c799c4e66f704691c9c669fcacfa8007428ce47d16b5fc77d6620e64736f6c63430008170033

Deployed Bytecode Sourcemap

32695:5621:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22907:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23644:46;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;23644:46:0;;;;;;-1:-1:-1;;;;;1019:32:1;;;1001:51;;989:2;974:18;23644:46:0;855:203:1;26076:642:0;;;;;;:::i;:::-;;:::i;:::-;;;1665:14:1;;1658:22;1640:41;;1628:2;1613:18;26076:642:0;1500:187:1;23169:36:0;;;;;;;;1838:25:1;;;1826:2;1811:18;23169:36:0;1692:177:1;32963:98:0;;;;;;:::i;:::-;;:::i;:::-;;27125:1716;;;;;;:::i;:::-;;:::i;20904:151::-;;;:::i;23069:31::-;;;;;;;;3562:4:1;3550:17;;;3532:36;;3520:2;3505:18;23069:31:0;3390:184:1;28984:127:0;;;;;;:::i;:::-;;:::i;29405:405::-;;;;;;:::i;:::-;;:::i;23304:21::-;;;;;;33183:158;;;;;;:::i;:::-;;:::i;25194:111::-;;;;;;:::i;:::-;;:::i;28849:128::-;;;;;;:::i;:::-;;:::i;25588:193::-;;;;;;:::i;:::-;;:::i;34215:272::-;;;:::i;:::-;;;;;;;;:::i;23410:44::-;;;;;;:::i;:::-;;;;;;;;;;;;;;34860:3036;;;;;;:::i;:::-;;:::i;20345:20::-;;;;;-1:-1:-1;;;;;20345:20:0;;;33443:42;;;;;;:::i;:::-;;;;;;;;;;;;;;22961:20;;;:::i;24609:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;26769:207;;;;;;:::i;:::-;;:::i;29168:160::-;;;;;;:::i;:::-;;:::i;29905:437::-;;;;;;:::i;:::-;;:::i;25394:114::-;;;:::i;23935:46::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;34497:353;;;;;;:::i;:::-;;:::i;32758:26::-;;;:::i;37904:409::-;;;;;;:::i;:::-;;:::i;23524:64::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;33069:106;;;;;;:::i;:::-;;:::i;23755:68::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;32730:21;;;:::i;20677:219::-;;;;;;:::i;:::-;;:::i;22907:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26076:642::-;26179:4;26214:6;;26200:10;:20;;:38;;;;;26237:1;26224:10;:14;26200:38;26196:491;;;26255:13;26271:20;;;:8;:20;;;;;;-1:-1:-1;;;;;26271:20:0;26312:10;:19;;;;;:59;;-1:-1:-1;;;;;;26336:23:0;;;;;;:16;:23;;;;;;;;26360:10;26336:35;;;;;;;;;;26335:36;26312:59;26308:121;;;26399:14;;-1:-1:-1;;;26399:14:0;;;;;;;;;;;26308:121;26445:23;;;;:11;:23;;;;;;;;;:33;;-1:-1:-1;;;;;;26445:33:0;-1:-1:-1;;;;;26445:33:0;;;;;;;;;26500:36;;1838:25:1;;;26500:36:0;;;;;;1811:18:1;26500:36:0;;;;;;;26240:308;26196:491;;;26579:10;26569:21;;;;:9;:21;;;;;;;;-1:-1:-1;;;;;26569:30:0;;;;;;;;;;;;:43;;;26634:41;1838:25:1;;;26569:30:0;;26579:10;26634:41;;1811:18:1;26634:41:0;;;;;;;26196:491;-1:-1:-1;26706:4:0;26076:642;;;;;:::o;32963:98::-;20432:5;;-1:-1:-1;;;;;20432:5:0;20418:10;:19;20414:46;;20446:14;;-1:-1:-1;;;20446:14:0;;;;;;;;;;;20414:46;33035:7:::1;:18;33045:8:::0;33035:7;:18:::1;:::i;:::-;;32963:98:::0;:::o;27125:1716::-;27271:6;;27257:10;:20;27253:1581;;27306:20;;;;:8;:20;;;;;;-1:-1:-1;;;;;27298:28:0;;;27306:20;;27298:28;27294:91;;27354:15;;-1:-1:-1;;;27354:15:0;;;;;;;;;;;27294:91;-1:-1:-1;;;;;27405:16:0;;27401:82;;27449:18;;-1:-1:-1;;;27449:18:0;;;;;;;;;;;27401:82;27521:10;-1:-1:-1;;;;;27521:18:0;;;;;;:74;;-1:-1:-1;;;;;;27561:22:0;;;;;;:16;:22;;;;;;;;27584:10;27561:34;;;;;;;;;;27560:35;27521:74;:132;;;;-1:-1:-1;27630:23:0;;;;:11;:23;;;;;;-1:-1:-1;;;;;27630:23:0;27616:10;:37;;27521:132;27499:226;;;27695:14;;-1:-1:-1;;;27695:14:0;;;;;;;;;;;27499:226;27760:10;:8;:10::i;:::-;-1:-1:-1;;;;;27741:15:0;;;;;;:9;:15;;;;;:29;;:15;;;:29;;;;;:::i;:::-;;;;-1:-1:-1;27833:10:0;;-1:-1:-1;27833:8:0;:10::i;:::-;-1:-1:-1;;;;;27816:13:0;;;;;;;:9;:13;;;;;;;;:27;;;;;;;;27875:20;;;:8;:20;;;;;:25;;-1:-1:-1;;;;;;27875:25:0;;;;;;;;27922:11;:23;;;;;27915:30;;;;;;;;28023:12;;;;;:6;:12;;;;;28036:19;;:23;;-1:-1:-1;;28036:23:0;:::i;:::-;28023:37;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;28075:12:0;;;;:6;:12;;;;;;28088:23;;;:11;:23;;;;;;;28075:37;;28023;;-1:-1:-1;28023:37:0;;28075;;;;;;:::i;:::-;;;;;;;;;;;;:49;;;;-1:-1:-1;;;;;28159:12:0;;;;:6;:12;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;28159:18:0;;;;;;;;;;;;28263:23;;;:11;:23;;;;;;;28238:22;;;;;;:48;-1:-1:-1;;;;;28340:10:0;;;;;:6;:10;;;;;:27;;28159:18;28340:27;;;;;;;;;;;;;;;28450:10;;:17;;:21;;28159:18;28450:21;:::i;:::-;28424:23;;;;:11;:23;;;;;;:47;;;;28493:30;;28436:10;;-1:-1:-1;;;;;28493:30:0;;;;;;;;;;;28563:2;-1:-1:-1;;;;;28543:35:0;28557:4;-1:-1:-1;;;;;28543:35:0;;28567:10;:8;:10::i;:::-;28543:35;;1838:25:1;;;1826:2;1811:18;28543:35:0;;;;;;;27279:1311;27125:1716;;;:::o;27253:1581::-;-1:-1:-1;;;;;28629:15:0;;28611;28629;;;:9;:15;;;;;;;;28645:10;28629:27;;;;;;;;-1:-1:-1;;28677:28:0;;28673:101;;28754:20;28764:10;28754:7;:20;:::i;:::-;-1:-1:-1;;;;;28724:15:0;;;;;;:9;:15;;;;;;;;28740:10;28724:27;;;;;;;:50;28673:101;28791:31;28801:4;28807:2;28811:10;28791:9;:31::i;:::-;;28596:238;27253:1581;27125:1716;;;:::o;20904:151::-;20432:5;;-1:-1:-1;;;;;20432:5:0;20418:10;:19;20414:46;;20446:14;;-1:-1:-1;;;20446:14:0;;;;;;;;;;;20414:46;20983:1:::1;20967:18:::0;;-1:-1:-1;;;;;;20967:18:0::1;::::0;;21003:44:::1;::::0;21024:10:::1;::::0;21003:44:::1;::::0;20983:1;;21003:44:::1;20904:151::o:0;28984:127::-;20432:5;;-1:-1:-1;;;;;20432:5:0;20418:10;:19;20414:46;;20446:14;;-1:-1:-1;;;20446:14:0;;;;;;;;;;;20414:46;-1:-1:-1;;;;;29061:24:0::1;29088:5;29061:24:::0;;;:14:::1;:24;::::0;;;;:32;;-1:-1:-1;;29061:32:0::1;::::0;;28984:127::o;29405:405::-;29529:26;29542:4;29548:2;29552;29529:12;:26::i;:::-;-1:-1:-1;;;;;29586:14:0;;;:19;;;;:154;;-1:-1:-1;29622:61:0;;-1:-1:-1;;;29622:61:0;;;29658:10;29622:61;;;10304:34:1;-1:-1:-1;;;;;10374:15:1;;;10354:18;;;10347:43;10406:18;;;10399:34;;;10469:3;10449:18;;;10442:31;-1:-1:-1;10489:19:1;;;10482:30;29700:40:0;;29622:35;;;;29700:40;;10529:19:1;;29622:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;29622:118:0;;;29586:154;29568:235;;;29774:17;;-1:-1:-1;;;29774:17:0;;;;;;;;;;;33183:158;20432:5;;-1:-1:-1;;;;;20432:5:0;20418:10;:19;20414:46;;20446:14;;-1:-1:-1;;;20446:14:0;;;;;;;;;;;20414:46;33303:30:::1;33318:5;33325:7;33303:14;:30::i;25194:111::-:0;20432:5;;-1:-1:-1;;;;;20432:5:0;20418:10;:19;20414:46;;20446:14;;-1:-1:-1;;;20446:14:0;;;;;;;;;;;20414:46;-1:-1:-1;;;;;25272:17:0;;;::::1;;::::0;;;:9:::1;:17;::::0;;;;:25;;-1:-1:-1;;25272:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;25194:111::o;28849:128::-;20432:5;;-1:-1:-1;;;;;20432:5:0;20418:10;:19;20414:46;;20446:14;;-1:-1:-1;;;20446:14:0;;;;;;;;;;;20414:46;-1:-1:-1;;;;;28928:24:0::1;;::::0;;;:14:::1;:24;::::0;;;;:31;;-1:-1:-1;;28928:31:0::1;28955:4;28928:31;::::0;;28849:128::o;25588:193::-;25646:13;25680:12;;;:8;:12;;;;;;-1:-1:-1;;;;;25680:12:0;;25705:69;;25752:10;;-1:-1:-1;;;25752:10:0;;;;;;;;;;;25705:69;25588:193;;;:::o;34215:272::-;34250:26;34277:23;34332:5;;34321:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34321:17:0;;34306:32;;34366:5;;34355:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34355:17:0;;34343:29;;34381:6;34377:106;34390:5;;34388:1;:7;34377:106;;;34424:11;;;;:8;:11;;;;;;;;:21;;34444:1;34424:21;;;34436:7;;;;:4;:7;;;;;;34424:21;34406:12;34419:1;34406:15;;;;;;;;:::i;:::-;;;;;;;;;;;:39;;;;34466:11;;;;:8;:11;;;;;;;34451:12;;34466:11;;;;;34451:9;;34475:1;;34451:12;;;;;;:::i;:::-;:26;;;:12;;;;;;;;;;;:26;34396:3;;34377:106;;;;34215:272;;:::o;34860:3036::-;34931:11;34945:19;;;:15;:19;;;;;;34906:13;;34999:26;34945:19;34999:16;:26::i;:::-;35067:16;;;35080:2;35067:16;;;;;;;;;34975:50;;-1:-1:-1;35038:26:0;;35067:16;;;;;;;;;;;;;;;;;;;;;35038:45;;35098:26;;;;;;;;;;;;;-1:-1:-1;;;35098:26:0;;;:10;35109:1;35098:13;;;;;;;;:::i;:::-;;;;;;:26;;;;35139:27;;;;;;;;;;;;;-1:-1:-1;;;35139:27:0;;;:10;35150:1;35139:13;;;;;;;;:::i;:::-;;;;;;:27;;;;35181:30;;;;;;;;;;;;;-1:-1:-1;;;35181:30:0;;;:10;35192:1;35181:13;;;;;;;;:::i;:::-;;;;;;:30;;;;35226;;;;;;;;;;;;;-1:-1:-1;;;35226:30:0;;;:10;35237:1;35226:13;;;;;;;;:::i;:::-;;;;;;:30;;;;35271:24;;;;;;;;;;;;;-1:-1:-1;;;35271:24:0;;;:10;35282:1;35271:13;;;;;;;;:::i;:::-;;;;;;:24;;;;35310:26;;;;;;;;;;;;;-1:-1:-1;;;35310:26:0;;;:10;35321:1;35310:13;;;;;;;;:::i;:::-;;;;;;:26;;;;35351:23;;;;;;;;;;;;;-1:-1:-1;;;35351:23:0;;;:10;35362:1;35351:13;;;;;;;;:::i;:::-;;;;;;:23;;;;35389:22;;;;;;;;;;;;;-1:-1:-1;;;35389:22:0;;;:10;35400:1;35389:13;;;;;;;;:::i;:::-;;;;;;:22;;;;35426:29;;;;;;;;;;;;;-1:-1:-1;;;35426:29:0;;;:10;35437:1;35426:13;;;;;;;;:::i;:::-;;;;;;:29;;;;35470:28;;;;;;;;;;;;;-1:-1:-1;;;35470:28:0;;;:10;35481:1;35470:13;;;;;;;;:::i;:::-;;;;;;:28;;;;35513:26;;;;;;;;;;;;;-1:-1:-1;;;35513:26:0;;;:10;35524:2;35513:14;;;;;;;;:::i;:::-;;;;;;:26;;;;35554:34;;;;;;;;;;;;;-1:-1:-1;;;35554:34:0;;;:10;35565:2;35554:14;;;;;;;;:::i;:::-;;;;;;:34;;;;35603:27;;;;;;;;;;;;;-1:-1:-1;;;35603:27:0;;;:10;35614:2;35603:14;;;;;;;;:::i;:::-;;;;;;:27;;;;35645:33;;;;;;;;;;;;;-1:-1:-1;;;35645:33:0;;;:10;35656:2;35645:14;;;;;;;;:::i;:::-;;;;;;:33;;;;35693:26;;;;;;;;;;;;;-1:-1:-1;;;35693:26:0;;;:10;35704:2;35693:14;;;;;;;;:::i;:::-;;;;;;:26;;;;35734:34;;;;;;;;;;;;;-1:-1:-1;;;35734:34:0;;;:10;35745:2;35734:14;;;;;;;;:::i;:::-;;;;;;:34;;;;35783:29;;;;;;;;;;;;;-1:-1:-1;;;35783:29:0;;;:10;35794:2;35783:14;;;;;;;;:::i;:::-;;;;;;:29;;;;35827:28;;;;;;;;;;;;;-1:-1:-1;;;35827:28:0;;;:10;35838:2;35827:14;;;;;;;;:::i;:::-;;;;;;:28;;;;35870:29;;;;;;;;;;;;;-1:-1:-1;;;35870:29:0;;;:10;35881:2;35870:14;;;;;;;;:::i;:::-;;;;;;:29;;;;35914;;;;;;;;;;;;;-1:-1:-1;;;35914:29:0;;;:10;35925:2;35914:14;;;;;;;;:::i;:::-;;;;;;;;;;;:29;;;;35956;;;;;;;;:24;:29;;;35996:23;;;;;;;;;;36030:24;;;;;;;;;;36065;;;;;;;;;;;35956:29;;35996:23;;36030:24;36065;35956;;36233:964;36257:10;:17;36253:1;:21;36233:964;;;36356:158;36496:3;36489:6;:10;:23;;36506:6;36489:23;;;36500:5;36489:23;36381:78;;11124:25:1;36381:78:0;;;11112:38:1;11166:12;;;11159:28;;;11203:12;;;11196:28;;;36366:147:0;;;;;;11240:12:1;;36381:78:0;;;;;;;;;;;;;36371:89;;;;;;36366:95;;:147;;;;:::i;:::-;36356:9;:158::i;:::-;36343:171;-1:-1:-1;36543:261:0;36774:14;36343:171;36774:3;:14;:::i;:::-;36568:200;;;11782:34:1;36568:200:0;;;11770:47:1;-1:-1:-1;;;11833:12:1;;;11826:28;;;;11870:12;;;11863:28;;;11907:12;;;11900:28;;;11944:13;;36568:200:0;11512:451:1;36543:261:0;36538:266;;:2;:266;:::i;:::-;36531:273;-1:-1:-1;36842:4:0;;:11;;;;;;;;;;;;;;;-1:-1:-1;;;36842:11:0;;;;;;;;;;;;;;;;;;;36828:45;;;;;;;;:::i;:::-;;;;;;;;;;;;;36821:52;;36910:10;36921:1;36910:13;;;;;;;;:::i;:::-;;;;;;;36896:42;;;;;;;;:::i;:::-;;;;;;;;;;;;;36888:50;;36976:22;36993:4;36976:16;:22::i;:::-;36961:43;;;;;;;;:::i;:::-;;;;;;;;;;;;;36953:51;;37046:10;37089:4;37130:5;37137;37116:27;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;37116:27:0;;;;;;;;;;37075:91;;;37116:27;37075:91;;:::i;:::-;;;;-1:-1:-1;;37075:91:0;;;;;;;;;;37032:153;;;37075:91;37032:153;;:::i;:::-;;;;-1:-1:-1;;37032:153:0;;;;;;;;;;-1:-1:-1;36276:6:0;36281:1;36276:6;;:::i;:::-;;;36233:964;;;;37209:26;37347:7;37383:20;37400:2;37383:16;:20::i;:::-;37356:49;;;;;;;;:::i;:::-;;;;-1:-1:-1;;37356:49:0;;;;;;;;;;37332:75;;;37356:49;37332:75;;:::i;:::-;;;;-1:-1:-1;;37332:75:0;;;;;;;;;;37298:111;;37332:75;37298:111;;:::i;:::-;;;;-1:-1:-1;;37298:111:0;;;;;;;;;;37266:324;;37298:111;37266:324;;:::i;:::-;;;;;;;;;;;;;37619:7;37628;37605:31;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;37605:31:0;;;;;;;;;;37238:409;;;37605:31;37238:409;;:::i;:::-;;;;;;;;;;;;;37209:438;;37660:27;37741:10;37690:72;;;;;;;;:::i;:::-;;;;;;;;;;;;;37660:102;;37806:13;37791:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;37775:52;;37861:12;37874:13;37847:41;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37840:48;;;;;;;;;;;;;34860:3036;;;:::o;22961:20::-;;;;;;;:::i;26769:207::-;26872:10;26855:28;;;;:16;:28;;;;;;;;-1:-1:-1;;;;;26855:38:0;;;;;;;;;;;;:49;;-1:-1:-1;;26855:49:0;;;;;;;;;;26922:46;;1640:41:1;;;26855:38:0;;26872:10;26922:46;;1613:18:1;26922:46:0;;;;;;;26769:207;;:::o;29168:160::-;29263:4;29287:33;29297:10;29309:2;29313:6;29287:9;:33::i;:::-;29280:40;29168:160;-1:-1:-1;;;29168:160:0:o;29905:437::-;30059:26;30072:4;30078:2;30082;30059:12;:26::i;:::-;-1:-1:-1;;;;;30116:14:0;;;:19;;;;:156;;-1:-1:-1;30152:63:0;;-1:-1:-1;;;30152:63:0;;;30232:40;-1:-1:-1;;;;;30152:35:0;;;30232:40;;30152:63;;30188:10;;30200:4;;30206:2;;30210:4;;;;30152:63;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;30152:120:0;;;30116:156;30098:237;;;30306:17;;-1:-1:-1;;;30306:17:0;;;;;;;;;;;25394:114;25446:10;25436:21;;;;:9;:21;;;;;;:24;;25433:67;;25482:10;25472:21;;;;:9;:21;;;;;:28;;-1:-1:-1;;25472:28:0;25496:4;25472:28;;;25433:67;25394:114::o;34497:353::-;34557:13;34612:1;34589:12;34583:26;;;;;:::i;:::-;;;:30;34579:268;;;34647:12;34661:20;34678:2;34661:16;:20::i;:::-;34633:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34626:65;;34497:353;;;:::o;34579:268::-;34816:8;34821:2;34816:4;:8::i;:::-;34736:103;;;;;;;;:::i;32758:26::-;;;;;;;:::i;37904:409::-;37990:17;;;;;;;;;;;;-1:-1:-1;;;37990:17:0;;;;-1:-1:-1;38035:20:0;38050:4;38035:14;:20::i;:::-;38015:40;;38067:6;38063:191;38076:3;:10;38074:1;:12;38063:191;;;38128:11;38140:12;38145:3;38149:1;38145:6;;;;;;;;:::i;:::-;;;;;;;38140:4;:12::i;:::-;38114:40;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38100:54;;38180:1;38169:3;:10;:12;;;;:::i;:::-;38166:1;:15;38163:83;;38220:11;38206:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;38192:44;;38163:83;38087:3;;38063:191;;;;38289:11;38275:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;38261:44;;37982:331;37904:409;;;:::o;33069:106::-;20432:5;;-1:-1:-1;;;;;20432:5:0;20418:10;:19;20414:46;;20446:14;;-1:-1:-1;;;20446:14:0;;;;;;;;;;;20414:46;33143:12:::1;:24;33158:9:::0;33143:12;:24:::1;:::i;32730:21::-:0;;;;;;;:::i;20677:219::-;20432:5;;-1:-1:-1;;;;;20432:5:0;20418:10;:19;20414:46;;20446:14;;-1:-1:-1;;;20446:14:0;;;;;;;;;;;20414:46;-1:-1:-1;;;;;20760:20:0;::::1;20756:47;;20789:14;;-1:-1:-1::0;;;20789:14:0::1;;;;;;;;;;;20756:47;20816:5;:14:::0;;-1:-1:-1;;;;;;20816:14:0::1;-1:-1:-1::0;;;;;20816:14:0;::::1;::::0;;::::1;::::0;;20848:40:::1;::::0;20816:14;;20869:10:::1;::::0;20848:40:::1;::::0;20816:5;20848:40:::1;20677:219:::0;:::o;31565:92::-;31608:7;31635:14;31641:8;31635:2;:14;:::i;:::-;31628:21;;31565:92;:::o;30410:1116::-;30523:4;30540:12;30555:10;:8;:10::i;:::-;-1:-1:-1;;;;;30606:15:0;;;30576:27;30606:15;;;:9;:15;;;;;;;;;30664:13;;;;;;;;;30697:20;;;:14;:20;;;;;;30540:25;;-1:-1:-1;30606:15:0;;30697:20;;30696:21;30688:48;;;;-1:-1:-1;;;30688:48:0;;21984:2:1;30688:48:0;;;21966:21:1;22023:2;22003:18;;;21996:30;-1:-1:-1;;;22042:18:1;;;22035:44;22096:18;;30688:48:0;;;;;;;;;-1:-1:-1;;;;;30747:15:0;;;;;;:9;:15;;;;;:25;;30766:6;;30747:15;:25;;30766:6;;30747:25;:::i;:::-;;;;-1:-1:-1;;;;;;;30810:13:0;;;;;;;:9;:13;;;;;;;;:23;;;;;;30918:15;;;;;:9;:15;;;;;;30913:234;;-1:-1:-1;;;;;31007:15:0;;30950:22;31007:15;;;:9;:15;;;;;;:22;;31025:4;;31007:22;:::i;:::-;30976:26;30998:4;30976:19;:26;:::i;:::-;30975:55;;;;:::i;:::-;30950:80;;31050:9;31045:91;31069:14;31065:1;:18;31045:91;;;31109:11;31115:4;31109:5;:11::i;:::-;31085:3;;31045:91;;;;30935:212;30913:234;-1:-1:-1;;;;;31223:13:0;;;;;;:9;:13;;;;;;;;31218:230;;31253:22;31304:28;31328:4;31304:21;:28;:::i;:::-;-1:-1:-1;;;;;31279:13:0;;;;;;:9;:13;;;;;;:20;;31295:4;;31279:20;:::i;:::-;31278:55;;;;:::i;:::-;31253:80;;31353:9;31348:89;31372:14;31368:1;:18;31348:89;;;31412:9;31418:2;31412:5;:9::i;:::-;31388:3;;31348:89;;;;31238:210;31218:230;31485:2;-1:-1:-1;;;;;31465:31:0;31479:4;-1:-1:-1;;;;;31465:31:0;;31489:6;31465:31;;;;1838:25:1;;1826:2;1811:18;;1692:177;31465:31:0;;;;;;;;-1:-1:-1;31514:4:0;;30410:1116;-1:-1:-1;;;;;;30410:1116:0:o;32528:160::-;32641:4;:12;32648:5;32641:4;:12;:::i;:::-;-1:-1:-1;32664:6:0;:16;32673:7;32664:6;:16;:::i;17638:718::-;17694:13;17745:14;17762:17;17773:5;17762:10;:17::i;:::-;17782:1;17762:21;17745:38;;17798:20;17832:6;17821:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17821:18:0;-1:-1:-1;17798:41:0;-1:-1:-1;17963:28:0;;;17979:2;17963:28;18020:290;-1:-1:-1;;18052:5:0;-1:-1:-1;;;18189:2:0;18178:14;;18173:32;18052:5;18160:46;18252:2;18243:11;;;-1:-1:-1;18273:21:0;18020:290;18273:21;-1:-1:-1;18331:6:0;17638:718;-1:-1:-1;;;17638:718:0:o;10474:1673::-;10522:7;10546:1;10551;10546:6;10542:47;;-1:-1:-1;10576:1:0;;10474:1673;-1:-1:-1;10474:1673:0:o;10542:47::-;11280:14;11314:1;11303:7;11308:1;11303:4;:7::i;:::-;:12;;11297:1;:19;;11280:36;;11782:1;11771:6;11767:1;:10;;;;;:::i;:::-;;11758:6;:19;11757:26;;11748:35;;11832:1;11821:6;11817:1;:10;;;;;:::i;:::-;;11808:6;:19;11807:26;;11798:35;;11882:1;11871:6;11867:1;:10;;;;;:::i;:::-;;11858:6;:19;11857:26;;11848:35;;11932:1;11921:6;11917:1;:10;;;;;:::i;:::-;;11908:6;:19;11907:26;;11898:35;;11982:1;11971:6;11967:1;:10;;;;;:::i;:::-;;11958:6;:19;11957:26;;11948:35;;12032:1;12021:6;12017:1;:10;;;;;:::i;:::-;;12008:6;:19;12007:26;;11998:35;;12082:1;12071:6;12067:1;:10;;;;;:::i;:::-;;12058:6;:19;12057:26;;12048:35;;12105:23;12109:6;12121;12117:1;:10;;;;;:::i;:::-;;12105:3;:23::i;24290:105::-;-1:-1:-1;;;;;24377:13:0;;;;;;:6;:13;;;;;;;;;24370:20;;;;;;;;;;;;;;;;;24351:13;;24370:20;;;24377:13;24370:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24290:105;;;:::o;34037:173::-;34095:7;34105:25;34125:4;34105:19;:25::i;:::-;34149:19;;;;:15;:19;;;;;;;;;34140:5;;;34135:11;;:4;:11;;;;;;:33;34175:8;;34095:35;;-1:-1:-1;34182:1:0;;34140:5;;34149:19;34175:8;;34182:1;;34175:8;:::i;:::-;;;;-1:-1:-1;34188:17:0;;-1:-1:-1;34200:4:0;34188:11;:17::i;33556:476::-;33606:15;33618:2;33606:11;:15::i;:::-;33626:7;33636:4;-1:-1:-1;;;;;33636:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33626:23;;33656:11;33740:5;;33702:2;33730:3;33715:12;:18;;;;:::i;:::-;33705:29;33685:50;;;;;;;;22596:19:1;;;22640:2;22631:12;;22624:28;22677:2;22668:12;;22439:247;33685:50:0;;;;;;;;;;;;;33675:61;;;;;;33670:67;;:75;;;;:::i;:::-;33750:9;33767:16;;;:8;:16;;;;;;33656:89;;-1:-1:-1;33750:9:0;33767:16;;33764:109;;;-1:-1:-1;33797:12:0;;;;:4;:12;;;;;;33764:109;;;-1:-1:-1;33844:16:0;;;;:8;:16;;;;;:23;;-1:-1:-1;;33844:23:0;33863:4;33844:23;;;33832:6;33764:109;33884:1;33877:5;;:8;;;;;;;:::i;:::-;;;;-1:-1:-1;;33914:5:0;;33905:15;;;;:8;:15;;;;;;;;:33;;33933:5;;33905:33;;;33926:5;;33921:11;;;;:4;:11;;;;;;33905:33;33890:12;;;;:4;:12;;;;;;;;:48;;;;33952:5;;33943:15;;:8;:15;;;;;:22;;-1:-1:-1;;33943:22:0;33961:4;33943:22;;;33970:19;;;:15;:19;;;;;:26;;;34006:21;;33992:4;;-1:-1:-1;;;;;34006:21:0;;;;;33890:12;34006:21;33601:431;;;33556:476;:::o;14201:948::-;14254:7;;-1:-1:-1;;;14332:17:0;;14328:106;;-1:-1:-1;;;14370:17:0;;;-1:-1:-1;14416:2:0;14406:12;14328:106;14461:8;14452:5;:17;14448:106;;14499:8;14490:17;;;-1:-1:-1;14536:2:0;14526:12;14448:106;14581:8;14572:5;:17;14568:106;;14619:8;14610:17;;;-1:-1:-1;14656:2:0;14646:12;14568:106;14701:7;14692:5;:16;14688:103;;14738:7;14729:16;;;-1:-1:-1;14774:1:0;14764:11;14688:103;14818:7;14809:5;:16;14805:103;;14855:7;14846:16;;;-1:-1:-1;14891:1:0;14881:11;14805:103;14935:7;14926:5;:16;14922:103;;14972:7;14963:16;;;-1:-1:-1;15008:1:0;14998:11;14922:103;15052:7;15043:5;:16;15039:68;;15090:1;15080:11;15135:6;14201:948;-1:-1:-1;;14201:948:0:o;12633:1019::-;12685:7;;12772:3;12763:12;;;:16;12759:102;;12810:3;12800:13;;;;12832;12759:102;12888:2;12879:11;;;:15;12875:99;;12925:2;12915:12;;;;12946;12875:99;13001:2;12992:11;;;:15;12988:99;;13038:2;13028:12;;;;13059;12988:99;13114:2;13105:11;;;:15;13101:99;;13151:2;13141:12;;;;13172;13101:99;13227:1;13218:10;;;:14;13214:96;;13263:1;13253:11;;;;13283;13214:96;13337:1;13328:10;;;:14;13324:96;;13373:1;13363:11;;;;13393;13324:96;13447:1;13438:10;;;:14;13434:96;;13483:1;13473:11;;;;13503;13434:96;13557:1;13548:10;;;:14;13544:66;;13593:1;13583:11;13638:6;12633:1019;-1:-1:-1;;12633:1019:0:o;4311:106::-;4369:7;4400:1;4396;:5;:13;;4408:1;4396:13;;;-1:-1:-1;4404:1:0;;4311:106;-1:-1:-1;4311:106:0:o;24094:193::-;-1:-1:-1;;;;;24183:13:0;;24161:7;24183:13;;;:6;:13;;;;;:20;24175:56;;;;-1:-1:-1;;;24175:56:0;;22893:2:1;24175:56:0;;;22875:21:1;22932:2;22912:18;;;22905:30;-1:-1:-1;;;22951:18:1;;;22944:49;23010:18;;24175:56:0;22691:343:1;24175:56:0;-1:-1:-1;;;;;24243:13:0;;;;;;:6;:13;;;;;24257:20;;:24;;24280:1;;24257:24;:::i;:::-;24243:39;;;;;;;;:::i;:::-;;;;;;;;;24236:46;;24094:193;;;:::o;32147:373::-;-1:-1:-1;;;;;32208:18:0;;32204:73;;32250:15;;-1:-1:-1;;;32250:15:0;;;;;;;;;;;32204:73;-1:-1:-1;;;;;32302:12:0;;32289:10;32302:12;;;:6;:12;;;;;32315:19;;:23;;32337:1;;32315:23;:::i;:::-;32302:37;;;;;;;;:::i;:::-;;;;;;;;;32289:50;;32350:6;:12;32357:4;-1:-1:-1;;;;;32350:12:0;-1:-1:-1;;;;;32350:12:0;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;32350:18:0;;;;;;;;;;;;32386:15;;;:11;:15;;;;;;32379:22;;;32419:8;:12;;;;;32412:19;;-1:-1:-1;;;;;;32412:19:0;;;;;;32449:11;:15;;;;;;32442:22;;;;;;;;32482:30;32398:2;;32350:18;-1:-1:-1;;;;;32482:30:0;;;;;32350:18;;32482:30;32193:327;32147:373;:::o;31665:474::-;-1:-1:-1;;;;;31724:16:0;;31720:74;;31764:18;;-1:-1:-1;;;31764:18:0;;;;;;;;;;;31720:74;31831:6;:8;;;;;;;;:6;31899:12;;;:8;:12;;;;;;-1:-1:-1;;;;;31899:12:0;:26;31895:81;;31949:15;;-1:-1:-1;;;31949:15:0;;;;;;;;;;;31895:81;31988:12;;;;:8;:12;;;;;;;;:17;;-1:-1:-1;;;;;;31988:17:0;-1:-1:-1;;;;;31988:17:0;;;;;;;;32016:10;;;:6;:10;;;;;:19;;-1:-1:-1;32016:19:0;;;;;;;;;;;;;;;32064:10;;:17;;:21;;-1:-1:-1;32064:21:0;:::i;:::-;32046:15;;;;:11;:15;;;;;;:39;;;;32103:28;;32058:2;;-1:-1:-1;;;;;32103:28:0;;;;;32046:15;;32103:28;31709:430;31665:474;:::o;14:250:1:-;99:1;109:113;123:6;120:1;117:13;109:113;;;199:11;;;193:18;180:11;;;173:39;145:2;138:10;109:113;;;-1:-1:-1;;256:1:1;238:16;;231:27;14:250::o;269:396::-;418:2;407:9;400:21;381:4;450:6;444:13;493:6;488:2;477:9;473:18;466:34;509:79;581:6;576:2;565:9;561:18;556:2;548:6;544:15;509:79;:::i;:::-;649:2;628:15;-1:-1:-1;;624:29:1;609:45;;;;656:2;605:54;;269:396;-1:-1:-1;;269:396:1:o;670:180::-;729:6;782:2;770:9;761:7;757:23;753:32;750:52;;;798:1;795;788:12;750:52;-1:-1:-1;821:23:1;;670:180;-1:-1:-1;670:180:1:o;1063:173::-;1131:20;;-1:-1:-1;;;;;1180:31:1;;1170:42;;1160:70;;1226:1;1223;1216:12;1241:254;1309:6;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;1485:2;1470:18;;;;1457:32;;-1:-1:-1;;;1241:254:1:o;1874:127::-;1935:10;1930:3;1926:20;1923:1;1916:31;1966:4;1963:1;1956:15;1990:4;1987:1;1980:15;2006:719;2049:5;2102:3;2095:4;2087:6;2083:17;2079:27;2069:55;;2120:1;2117;2110:12;2069:55;2156:6;2143:20;2182:18;2219:2;2215;2212:10;2209:36;;;2225:18;;:::i;:::-;2300:2;2294:9;2268:2;2354:13;;-1:-1:-1;;2350:22:1;;;2374:2;2346:31;2342:40;2330:53;;;2398:18;;;2418:22;;;2395:46;2392:72;;;2444:18;;:::i;:::-;2484:10;2480:2;2473:22;2519:2;2511:6;2504:18;2565:3;2558:4;2553:2;2545:6;2541:15;2537:26;2534:35;2531:55;;;2582:1;2579;2572:12;2531:55;2646:2;2639:4;2631:6;2627:17;2620:4;2612:6;2608:17;2595:54;2693:1;2686:4;2681:2;2673:6;2669:15;2665:26;2658:37;2713:6;2704:15;;;;;;2006:719;;;;:::o;2730:322::-;2799:6;2852:2;2840:9;2831:7;2827:23;2823:32;2820:52;;;2868:1;2865;2858:12;2820:52;2908:9;2895:23;2941:18;2933:6;2930:30;2927:50;;;2973:1;2970;2963:12;2927:50;2996;3038:7;3029:6;3018:9;3014:22;2996:50;:::i;:::-;2986:60;2730:322;-1:-1:-1;;;;2730:322:1:o;3057:328::-;3134:6;3142;3150;3203:2;3191:9;3182:7;3178:23;3174:32;3171:52;;;3219:1;3216;3209:12;3171:52;3242:29;3261:9;3242:29;:::i;:::-;3232:39;;3290:38;3324:2;3313:9;3309:18;3290:38;:::i;:::-;3280:48;;3375:2;3364:9;3360:18;3347:32;3337:42;;3057:328;;;;;:::o;3579:186::-;3638:6;3691:2;3679:9;3670:7;3666:23;3662:32;3659:52;;;3707:1;3704;3697:12;3659:52;3730:29;3749:9;3730:29;:::i;3770:543::-;3858:6;3866;3919:2;3907:9;3898:7;3894:23;3890:32;3887:52;;;3935:1;3932;3925:12;3887:52;3975:9;3962:23;4004:18;4045:2;4037:6;4034:14;4031:34;;;4061:1;4058;4051:12;4031:34;4084:50;4126:7;4117:6;4106:9;4102:22;4084:50;:::i;:::-;4074:60;;4187:2;4176:9;4172:18;4159:32;4143:48;;4216:2;4206:8;4203:16;4200:36;;;4232:1;4229;4222:12;4200:36;;4255:52;4299:7;4288:8;4277:9;4273:24;4255:52;:::i;:::-;4245:62;;;3770:543;;;;;:::o;4318:347::-;4383:6;4391;4444:2;4432:9;4423:7;4419:23;4415:32;4412:52;;;4460:1;4457;4450:12;4412:52;4483:29;4502:9;4483:29;:::i;:::-;4473:39;;4562:2;4551:9;4547:18;4534:32;4609:5;4602:13;4595:21;4588:5;4585:32;4575:60;;4631:1;4628;4621:12;4575:60;4654:5;4644:15;;;4318:347;;;;;:::o;4670:1162::-;4932:2;4944:21;;;5014:13;;4917:18;;;5036:22;;;4884:4;;5111;;5089:2;5074:18;;;5138:15;;;4884:4;5181:169;5195:6;5192:1;5189:13;5181:169;;;5256:13;;5244:26;;5290:12;;;;5325:15;;;;5217:1;5210:9;5181:169;;;-1:-1:-1;;;5386:19:1;;;5366:18;;;5359:47;5456:13;;5478:21;;;5554:15;;;;5517:12;;;5589:1;5599:205;5615:8;5610:3;5607:17;5599:205;;;5698:15;;5691:23;5684:31;5670:46;;5777:17;;;;5738:14;;;;5643:1;5634:11;5599:205;;;-1:-1:-1;5821:5:1;;4670:1162;-1:-1:-1;;;;;;;4670:1162:1:o;5837:808::-;5934:6;5942;5950;5958;5966;6019:3;6007:9;5998:7;5994:23;5990:33;5987:53;;;6036:1;6033;6026:12;5987:53;6059:29;6078:9;6059:29;:::i;:::-;6049:39;;6107:38;6141:2;6130:9;6126:18;6107:38;:::i;:::-;6097:48;;6192:2;6181:9;6177:18;6164:32;6154:42;;6247:2;6236:9;6232:18;6219:32;6270:18;6311:2;6303:6;6300:14;6297:34;;;6327:1;6324;6317:12;6297:34;6365:6;6354:9;6350:22;6340:32;;6410:7;6403:4;6399:2;6395:13;6391:27;6381:55;;6432:1;6429;6422:12;6381:55;6472:2;6459:16;6498:2;6490:6;6487:14;6484:34;;;6514:1;6511;6504:12;6484:34;6559:7;6554:2;6545:6;6541:2;6537:15;6533:24;6530:37;6527:57;;;6580:1;6577;6570:12;6527:57;5837:808;;;;-1:-1:-1;5837:808:1;;-1:-1:-1;6611:2:1;6603:11;;6633:6;5837:808;-1:-1:-1;;;5837:808:1:o;6650:260::-;6718:6;6726;6779:2;6767:9;6758:7;6754:23;6750:32;6747:52;;;6795:1;6792;6785:12;6747:52;6818:29;6837:9;6818:29;:::i;:::-;6808:39;;6866:38;6900:2;6889:9;6885:18;6866:38;:::i;:::-;6856:48;;6650:260;;;;;:::o;6915:380::-;6994:1;6990:12;;;;7037;;;7058:61;;7112:4;7104:6;7100:17;7090:27;;7058:61;7165:2;7157:6;7154:14;7134:18;7131:38;7128:161;;7211:10;7206:3;7202:20;7199:1;7192:31;7246:4;7243:1;7236:15;7274:4;7271:1;7264:15;7128:161;;6915:380;;;:::o;7426:518::-;7528:2;7523:3;7520:11;7517:421;;;7564:5;7561:1;7554:16;7608:4;7605:1;7595:18;7678:2;7666:10;7662:19;7659:1;7655:27;7649:4;7645:38;7714:4;7702:10;7699:20;7696:47;;;-1:-1:-1;7737:4:1;7696:47;7792:2;7787:3;7783:12;7780:1;7776:20;7770:4;7766:31;7756:41;;7847:81;7865:2;7858:5;7855:13;7847:81;;;7924:1;7910:16;;7891:1;7880:13;7847:81;;8120:1345;8246:3;8240:10;8273:18;8265:6;8262:30;8259:56;;;8295:18;;:::i;:::-;8324:97;8414:6;8374:38;8406:4;8400:11;8374:38;:::i;:::-;8368:4;8324:97;:::i;:::-;8476:4;;8533:2;8522:14;;8550:1;8545:663;;;;9252:1;9269:6;9266:89;;;-1:-1:-1;9321:19:1;;;9315:26;9266:89;-1:-1:-1;;8077:1:1;8073:11;;;8069:24;8065:29;8055:40;8101:1;8097:11;;;8052:57;9368:81;;8515:944;;8545:663;7373:1;7366:14;;;7410:4;7397:18;;-1:-1:-1;;8581:20:1;;;8699:236;8713:7;8710:1;8707:14;8699:236;;;8802:19;;;8796:26;8781:42;;8894:27;;;;8862:1;8850:14;;;;8729:19;;8699:236;;;8703:3;8963:6;8954:7;8951:19;8948:201;;;9024:19;;;9018:26;-1:-1:-1;;9107:1:1;9103:14;;;9119:3;9099:24;9095:37;9091:42;9076:58;9061:74;;8948:201;;;9195:1;9186:6;9183:1;9179:14;9175:22;9169:4;9162:36;8515:944;;;;;8120:1345;;:::o;9470:127::-;9531:10;9526:3;9522:20;9519:1;9512:31;9562:4;9559:1;9552:15;9586:4;9583:1;9576:15;9602:128;9669:9;;;9690:11;;;9687:37;;;9704:18;;:::i;9735:127::-;9796:10;9791:3;9787:20;9784:1;9777:31;9827:4;9824:1;9817:15;9851:4;9848:1;9841:15;9867:127;9928:10;9923:3;9919:20;9916:1;9909:31;9959:4;9956:1;9949:15;9983:4;9980:1;9973:15;10559:290;10628:6;10681:2;10669:9;10660:7;10656:23;10652:32;10649:52;;;10697:1;10694;10687:12;10649:52;10723:16;;-1:-1:-1;;;;;;10768:32:1;;10758:43;;10748:71;;10815:1;10812;10805:12;11263:127;11324:10;11319:3;11315:20;11312:1;11305:31;11355:4;11352:1;11345:15;11379:4;11376:1;11369:15;11395:112;11427:1;11453;11443:35;;11458:18;;:::i;:::-;-1:-1:-1;11492:9:1;;11395:112::o;11968:482::-;12190:3;12228:6;12222:13;12244:66;12303:6;12298:3;12291:4;12283:6;12279:17;12244:66;:::i;:::-;-1:-1:-1;;;12332:16:1;;12357:57;;;-1:-1:-1;12441:2:1;12430:14;;11968:482;-1:-1:-1;11968:482:1:o;12455:472::-;12677:3;12715:6;12709:13;12731:66;12790:6;12785:3;12778:4;12770:6;12766:17;12731:66;:::i;:::-;-1:-1:-1;;;12819:16:1;;12844:47;;;-1:-1:-1;12918:2:1;12907:14;;12455:472;-1:-1:-1;12455:472:1:o;12932:441::-;13153:3;13191:6;13185:13;13207:66;13266:6;13261:3;13254:4;13246:6;13242:17;13207:66;:::i;:::-;-1:-1:-1;;;13295:16:1;;13320:18;;;-1:-1:-1;13365:1:1;13354:13;;12932:441;-1:-1:-1;12932:441:1:o;13378:496::-;13557:3;13595:6;13589:13;13611:66;13670:6;13665:3;13658:4;13650:6;13646:17;13611:66;:::i;:::-;13740:13;;13699:16;;;;13762:70;13740:13;13699:16;13809:4;13797:17;;13762:70;:::i;:::-;13848:20;;13378:496;-1:-1:-1;;;;13378:496:1:o;13879:125::-;13944:9;;;13965:10;;;13962:36;;;13978:18;;:::i;14009:445::-;-1:-1:-1;;;14248:41:1;;14312:13;;14230:3;;14334:74;14312:13;14397:1;14388:11;;14381:4;14369:17;;14334:74;:::i;:::-;14428:16;;;;14446:1;14424:24;;14009:445;-1:-1:-1;;14009:445:1:o;14459:464::-;-1:-1:-1;;;14699:57:1;;14779:13;;14681:3;;14801:75;14779:13;14864:2;14855:12;;14848:4;14836:17;;14801:75;:::i;:::-;14896:16;;;;14914:2;14892:25;;14459:464;-1:-1:-1;;14459:464:1:o;14928:864::-;15160:3;15198:6;15192:13;15214:66;15273:6;15268:3;15261:4;15253:6;15249:17;15214:66;:::i;:::-;15341;15302:16;;15327:81;;;-1:-1:-1;15442:34:1;15435:4;15424:16;;15417:60;15509:66;15504:2;15493:14;;15486:90;15608:66;15603:2;15592:14;;15585:90;-1:-1:-1;;;15702:3:1;15691:15;;15684:71;15782:3;15771:15;;14928:864;-1:-1:-1;14928:864:1:o;15797:723::-;15847:3;15888:5;15882:12;15917:36;15943:9;15917:36;:::i;:::-;15972:1;15989:17;;;16015:133;;;;16162:1;16157:357;;;;15982:532;;16015:133;-1:-1:-1;;16048:24:1;;16036:37;;16121:14;;16114:22;16102:35;;16093:45;;;-1:-1:-1;16015:133:1;;16157:357;16188:5;16185:1;16178:16;16217:4;16262;16259:1;16249:18;16289:1;16303:165;16317:6;16314:1;16311:13;16303:165;;;16395:14;;16382:11;;;16375:35;16438:16;;;;16332:10;;16303:165;;;16307:3;;;16497:6;16492:3;16488:16;16481:23;;15982:532;;;;;15797:723;;;;:::o;16525:389::-;16701:3;16729:38;16763:3;16755:6;16729:38;:::i;:::-;16796:6;16790:13;16812:65;16870:6;16866:2;16859:4;16851:6;16847:17;16812:65;:::i;16919:471::-;-1:-1:-1;;;17159:64:1;;17246:13;;17141:3;;17268:75;17246:13;17331:2;17322:12;;17315:4;17303:17;;17268:75;:::i;:::-;17363:16;;;;17381:2;17359:25;;16919:471;-1:-1:-1;;16919:471:1:o;17395:442::-;17616:3;17654:6;17648:13;17670:66;17729:6;17724:3;17717:4;17709:6;17705:17;17670:66;:::i;:::-;-1:-1:-1;;;17758:16:1;;17783:19;;;-1:-1:-1;17829:1:1;17818:13;;17395:442;-1:-1:-1;17395:442:1:o;17842:662::-;-1:-1:-1;;;;;18121:15:1;;;18103:34;;18173:15;;18168:2;18153:18;;18146:43;18220:2;18205:18;;18198:34;;;18268:3;18263:2;18248:18;;18241:31;;;18288:19;;18281:35;;;18046:4;18309:6;18359;18083:3;18338:19;;18325:49;18424:1;18418:3;18409:6;18398:9;18394:22;18390:32;18383:43;18494:3;18487:2;18483:7;18478:2;18470:6;18466:15;18462:29;18451:9;18447:45;18443:55;18435:63;;17842:662;;;;;;;;:::o;18509:545::-;18775:3;18803:38;18837:3;18829:6;18803:38;:::i;:::-;18870:6;18864:13;18886:65;18944:6;18940:2;18933:4;18925:6;18921:17;18886:65;:::i;:::-;-1:-1:-1;;;18973:15:1;;18997:22;;;19046:1;19035:13;;18509:545;-1:-1:-1;;;;18509:545:1:o;19059:449::-;19311:29;19306:3;19299:42;19281:3;19370:6;19364:13;19386:75;19454:6;19449:2;19444:3;19440:12;19433:4;19425:6;19421:17;19386:75;:::i;:::-;19481:16;;;;19499:2;19477:25;;19059:449;-1:-1:-1;;19059:449:1:o;19513:441::-;19734:3;19772:6;19766:13;19788:66;19847:6;19842:3;19835:4;19827:6;19823:17;19788:66;:::i;:::-;-1:-1:-1;;;19876:16:1;;19901:18;;;-1:-1:-1;19946:1:1;19935:13;;19513:441;-1:-1:-1;19513:441:1:o;19959:::-;20180:3;20218:6;20212:13;20234:66;20293:6;20288:3;20281:4;20273:6;20269:17;20234:66;:::i;:::-;-1:-1:-1;;;20322:16:1;;20347:18;;;-1:-1:-1;20392:1:1;20381:13;;19959:441;-1:-1:-1;19959:441:1:o;20405:416::-;20494:1;20531:5;20494:1;20545:270;20566:7;20556:8;20553:21;20545:270;;;20625:4;20621:1;20617:6;20613:17;20607:4;20604:27;20601:53;;;20634:18;;:::i;:::-;20684:7;20674:8;20670:22;20667:55;;;20704:16;;;;20667:55;20783:22;;;;20743:15;;;;20545:270;;;20549:3;20405:416;;;;;:::o;20826:806::-;20875:5;20905:8;20895:80;;-1:-1:-1;20946:1:1;20960:5;;20895:80;20994:4;20984:76;;-1:-1:-1;21031:1:1;21045:5;;20984:76;21076:4;21094:1;21089:59;;;;21162:1;21157:130;;;;21069:218;;21089:59;21119:1;21110:10;;21133:5;;;21157:130;21194:3;21184:8;21181:17;21178:43;;;21201:18;;:::i;:::-;-1:-1:-1;;21257:1:1;21243:16;;21272:5;;21069:218;;21371:2;21361:8;21358:16;21352:3;21346:4;21343:13;21339:36;21333:2;21323:8;21320:16;21315:2;21309:4;21306:12;21302:35;21299:77;21296:159;;;-1:-1:-1;21408:19:1;;;21440:5;;21296:159;21487:34;21512:8;21506:4;21487:34;:::i;:::-;21557:6;21553:1;21549:6;21545:19;21536:7;21533:32;21530:58;;;21568:18;;:::i;:::-;21606:20;;20826:806;-1:-1:-1;;;20826:806:1:o;21637:140::-;21695:5;21724:47;21765:4;21755:8;21751:19;21745:4;21724:47;:::i;22125:120::-;22165:1;22191;22181:35;;22196:18;;:::i;:::-;-1:-1:-1;22230:9:1;;22125:120::o;22250:184::-;22320:6;22373:2;22361:9;22352:7;22348:23;22344:32;22341:52;;;22389:1;22386;22379:12;22341:52;-1:-1:-1;22412:16:1;;22250:184;-1:-1:-1;22250:184:1:o

Swarm Source

ipfs://c9313e87a9c799c4e66f704691c9c669fcacfa8007428ce47d16b5fc77d6620e
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.