ETH Price: $2,877.87 (-10.14%)
Gas: 12 Gwei

Token

boncuk (boncuk)
 

Overview

Max Total Supply

0 boncuk

Holders

426

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jfellz.eth
Balance
1 boncuk
0xb5696e4057b9ba76616cecb5a537eaca7b3cdf54
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
boncuk

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-15
*/

// SPDX-License-Identifier: MIT

// File: Users/mile.scan/Documents/GitHub/boncuk/contracts/Base64.sol



/// @title Base64
/// @author Brecht Devos - <[email protected]>
/// @notice Provides a function for encoding some bytes in base64
pragma solidity ^0.8.2;

library Base64 {
    string internal constant TABLE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';
        
        // load the table into memory
        string memory table = TABLE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)
            
            // prepare the lookup table
            let tablePtr := add(table, 1)
            
            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))
            
            // result ptr, jump over length
            let resultPtr := add(result, 32)
            
            // run over the input, 3 bytes at a time
            for {} lt(dataPtr, endPtr) {}
            {
               dataPtr := add(dataPtr, 3)
               
               // read 3 bytes
               let input := mload(dataPtr)
               
               // write 4 characters
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(18, input), 0x3F)))))
               resultPtr := add(resultPtr, 1)
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(12, input), 0x3F)))))
               resultPtr := add(resultPtr, 1)
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr( 6, input), 0x3F)))))
               resultPtr := add(resultPtr, 1)
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(        input,  0x3F)))))
               resultPtr := add(resultPtr, 1)
            }
            
            // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }
        
        return result;
    }
}
// File: @openzeppelin/contracts/utils/math/SafeMath.sol



pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    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 substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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 addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol



pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        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_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}


// File: @openzeppelin/contracts/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: Users/mile.scan/Documents/GitHub/boncuk/contracts/boncuk.sol



/*
    
    boncuk
    
*/

pragma solidity ^0.8.2;







contract boncuk is
    ERC721,
    ReentrancyGuard,
    Ownable
{
    using SafeMath for uint256;
    using Strings for uint256;
    using Strings for uint160;
    using Strings for uint8;
    using Base64 for bytes;
    uint256 public boncuk_count;
    string public _description;
    string public _external_url;
    uint MAX_SUPPLY = 1024;
    uint MAX_MINT_PER_ADDRESS = 8;

    mapping(uint256 => uint256) private _dnaBank;
    mapping(uint256 => uint8) private _bokehBank;
    mapping(address => uint8) private _minters;

    function setMinter(address _minter) private {
        _minters[_minter] = _minters[_minter] + 1;
    }
    function didMint(address _minter) private view returns (bool){
        return _minters[_minter] == MAX_MINT_PER_ADDRESS;
    }
    function setDescription(string memory _d) public onlyOwner {
        require(msg.sender == tx.origin);
        _description = _d;
    }
    function setExternalUrl(string memory _u) public onlyOwner {
        require(msg.sender == tx.origin);
        _external_url = _u;
    }
    function setBokeh(uint _i, uint8 _b) public nonReentrant {
        require(ownerOf(_i) == msg.sender, "mind your own boncuk");
        require(_b > 0 && _b < 100, "bokeh can be set between 1 - 99");
        _bokehBank[_i] = _b % 100;
    }
    
    function random() private view returns (uint256) {
        return uint256(keccak256(abi.encodePacked(msg.sender, _dnaBank[boncuk_count-1])));
    }

    function _mint(address _to) private {
        if (_to != owner()){
            setMinter(_to);
        }
        boncuk_count = boncuk_count.add(1);
        _dnaBank[boncuk_count] = random();
        _safeMint(_to, boncuk_count);
    }

    function mint() external nonReentrant {
        require(msg.sender == tx.origin);
        require(boncuk_count.add(2) <= MAX_SUPPLY, string(abi.encodePacked("only ", MAX_SUPPLY.toString(), " of them will ever exist")));
        require(didMint(msg.sender) == false, string(abi.encodePacked(MAX_MINT_PER_ADDRESS.toString(), " mints per address is allowed")));
        _mint(msg.sender);
        // angels' share
        if (boncuk_count % 8 == 7) {
            _mint(address(owner()));
        }
    }
    
    // dna structs
    
    struct s_c {
        string _r;
        string _g;
        string _b;
    }
    
    struct s_e {
        uint r_y;
        uint r_x;
        uint c_y;
        uint c_x;
    }
    
    struct s_r {
        uint r_0;
        uint r_1;
        string r_s;
    }
    
    struct DNA_Decoded {
        uint b_;
        uint e_1_r_x;
        s_c e_1_c;
        string e_1_c_a;
        s_e e_2;
        s_e e_3;
        s_c e_3_c;
        string e_3_c_a;
        s_e e_4;
        s_r r_;
    }
    
    // dna helpers
    
    function _g_c(uint _i, uint _p) private view returns (string memory) {
        return ((_dnaBank[_i] / (255 ** _p)) % 255).toString();
    }
    
    function g_c(uint _i, uint _o) private view returns (s_c memory) {
        return s_c(_g_c(_i, (0 + _o)), _g_c(_i, (1 + _o)), _g_c(_i, (2 + _o)));
    }
    
    function g_r_x(uint _i, uint _r, uint _s) private view returns (uint) {
        return _r - (_r / 20) + ((_dnaBank[_i] / 64) % (_r / (10 * _s)));
    }
    
    function g_n_r(uint _i, uint _p_r) private view returns (uint) {
        return (_p_r / 2) + ((_dnaBank[_i] / 128) % (_p_r / 3));
    }
    
    function g_n_c(uint _i, uint _p_r, uint _n_r, uint _p_c, uint _s) private view returns (uint) {
        uint _d = ((_p_r - _n_r) * 35) / 100;
        return _p_c - _d + ((_dnaBank[_i] / (255 * _s)) % (_d * 2));
    }

    function g_s_e(uint _i, uint _p_r, uint _p_c_y, uint _p_c_x) private view returns (s_e memory) {
        uint _n_r = g_n_r(_i, _p_r);
        return s_e(
            _n_r,
            g_r_x(_i, _n_r, 1),
            g_n_c(_i, _p_r, _n_r, _p_c_y, 1),
            g_n_c(_i, _p_r, _n_r, _p_c_x, 2));
    }
    
    function g_s_r(uint _i) private view returns (s_r memory) {
        uint _r = 360 * ((_dnaBank[_i] / 1025) % 2);
        return s_r(_r, (360 - _r), (8 + ((_dnaBank[_i] / 2048) % 25)).toString());
    }
    
    function g_c_a(uint _i, uint _p, uint _d) private view returns (string memory) {
        return (_d + (_dnaBank[_i] / 10 ** _p) % 5).toString();
    }
    
    function g_b(uint _i) private view returns (uint) {
        return 80 + (_dnaBank[_i] / 1024) % 20;
    }
    
    // dna decoder
    
    function decode_dna(uint _i) private view returns (DNA_Decoded memory) {
        uint b_ = g_b(_i);
        uint e_1_r_x = g_r_x(_i, 512, 2);
        s_c memory e_1_c = g_c(_i, 3);
        string memory e_1_c_a = g_c_a(_i, 4, 5);
        s_e memory e_2 = g_s_e(_i, 512, 512, 512);
        s_e memory e_3 = g_s_e(_i, e_2.r_y, e_2.c_y, e_2.c_x);
        s_c memory e_3_c = g_c(_i, 5);
        string memory e_3_c_a = g_c_a(_i, 6, 1);
        s_e memory e_4 = g_s_e(_i, e_3.r_y, e_3.c_y, e_3.c_x);
        s_r memory r_ = g_s_r(_i);
        DNA_Decoded memory d = DNA_Decoded(b_, e_1_r_x, e_1_c, e_1_c_a, e_2, e_3, e_3_c, e_3_c_a, e_4, r_);
        return d;
    }
    
    // render helpers
    
    function s_g_t(address _o) private pure returns (string memory) {
        string memory _s;
        string memory _g;
        string memory _t;
        string memory _a = uint160(_o).toHexString();
        {
            _s = '<svg width="1024" height="1024" xmlns="http://www.w3.org/2000/svg">';
            _g = '<g>';
            _t = string(abi.encodePacked('<title>', _a, '</title>'));
        }
        return string(abi.encodePacked(_s, _g, _t));
    }

    function e_1_2_3_4(DNA_Decoded memory _d) private pure returns (string memory) {
        string memory _e_1;
        string memory _e_2;
        string memory _e_3;
        string memory _e_3_f;
        string memory _e_4;
        {
            _e_1 = string(abi.encodePacked('<ellipse ry="512" rx="', _d.e_1_r_x.toString(), '" cy="512" cx="512" fill="url(#e_1_g)"/>'));
        }
        {
            _e_2 = string(
                abi.encodePacked(
                    '<ellipse ry="',_d.e_2.r_y.toString(),
                    '" rx="', _d.e_2.r_x.toString(),
                    '" cy="', _d.e_2.c_y.toString(),
                    '" cx="', _d.e_2.c_x.toString(),
                    '" fill="#FFF"/>'));
        }
        {
            _e_3_f = string(abi.encodePacked('rgba(', _d.e_3_c._r, ',', _d.e_3_c._g, ',', _d.e_3_c._b, ',0.', _d.e_3_c_a,')'));
        }
        {
            _e_3 = string(
                abi.encodePacked(
                    '<ellipse ry="', _d.e_3.r_y.toString(),
                    '" rx="', _d.e_3.r_x.toString(),
                    '" cy="', _d.e_3.c_y.toString(),
                    '" cx="', _d.e_3.c_x.toString(),
                    '" fill="', _e_3_f, '"/>'));
        }
        {
            _e_4 = string(
                abi.encodePacked(
                    '<ellipse ry="', _d.e_4.r_y.toString(),
                    '" rx="', _d.e_4.r_x.toString(),
                    '" cy="', _d.e_4.c_y.toString(),
                    '" cx="', _d.e_4.c_x.toString(),
                    '" fill="rgba(22, 24, 150, 0.8)"/>'));
        }
        return string(abi.encodePacked(_e_1, _e_2, _e_3, _e_4));
    }

    function a_d_r_g(DNA_Decoded memory _d) private pure returns (string memory) {
        string memory _a;
        string memory _de;
        string memory _r_g;
        {
            _a = string(
                abi.encodePacked(
                    '<animateTransform attributeName="transform" begin="0s" dur="', _d.r_.r_s, 's" type="rotate" from="',
                    _d.r_.r_0.toString(), ' 512 512" to="', _d.r_.r_1.toString(), ' 512 512" repeatCount="indefinite"/>'));
            _de = '<defs>';
           _r_g = '<radialGradient id="e_1_g">';
        }
        return string(abi.encodePacked(_a, _de, _r_g));
    }

    function s_o(DNA_Decoded memory _d, uint _i) private view returns (string memory) {
        uint _b;
        string memory _s_o_0;
        string memory _s_o_1;
        string memory _s_o_2;
        {
            if (_bokehBank[_i] != 0) {
                _b = 80 + ((100 - _bokehBank[_i]) / 5);
            } else {
                _b = _d.b_;
            }
        }
        {
            _s_o_0 = '<stop offset="30%" stop-color="#000"/>';
            _s_o_1 = string(abi.encodePacked('<stop offset="', _b.toString(), '%" stop-color="rgba(', _d.e_1_c._r, ',', _d.e_1_c._g, ',', _d.e_1_c._b, ',0.', _d.e_1_c_a,')"/>'));
            _s_o_2 = '<stop offset="100%" stop-color="rgba(255,255,255,0.1)"/>';
        }
        return string(abi.encodePacked(_s_o_0, _s_o_1, _s_o_2));
    }

    function r_d_g_s() private pure returns (string memory) {
        string memory _r_g;
        string memory _d;
        string memory _g;
        string memory _s;
        {
            _r_g = '</radialGradient>';
            _d = '</defs>';
            _g = '</g>';
            _s = '</svg>';
        }
        return string(abi.encodePacked(_r_g, _d, _g, _s));
    }
    
    // render function

    function render(uint _i) private view returns (string memory) {
        DNA_Decoded memory _d = decode_dna(_i);
        return string(abi.encodePacked(
            s_g_t(ownerOf(_i)),
            e_1_2_3_4(_d),
            a_d_r_g(_d),
            s_o(_d, _i),
            r_d_g_s()
        ));
    }

    // encoded render function

    function render_encoded(uint _i) private view returns (string memory) {
        return string(bytes(abi.encodePacked(render(_i))).encode());
    }
    
    // metadata attributes helpers
    
    function o_w(DNA_Decoded memory _d) private pure returns (string memory) {
        return ((1000 * (512 - _d.e_1_r_x)) / 512).toString();
    }

    function i_w(s_e memory _s_e) private pure returns (string memory) {
        uint _r_x = _s_e.r_x;
        uint _r_y = _s_e.r_y;
        if (_r_x > _r_y) {
            return ((
                1000 * (_r_x - _r_y)
            ) / _r_x).toString();
        }
        return ((
            1000 * (_r_y - _r_x)
        ) / _r_y).toString();
    }

    function w_a(DNA_Decoded memory _d) private pure returns (string memory) {
        return string(
            abi.encodePacked(
                '{"trait_type": "eye socket warp", "value": ',
                o_w(_d),
                '}, {"trait_type": "eye warp", "value": ',
                i_w(_d.e_2),
                '}, {"trait_type": "iris warp", "value": ',
                i_w(_d.e_3),
                '}, {"trait_type": "pupil warp", "value": ',
                i_w(_d.e_4),
                '}, '
            )
        );
    }

    function s_a(DNA_Decoded memory _d) private pure returns (string memory) {
        return string(
            abi.encodePacked(
                '{"trait_type": "eye size", "value": ',
                _d.e_2.r_x.toString(),
                '}, {"trait_type": "iris size", "value": ',
                _d.e_3.r_x.toString(),
                '},  {"trait_type": "pupil size", "value": ',
                _d.e_4.r_x.toString(),
                '},'
            )
        );
    }

    function b_a(DNA_Decoded memory _d, uint _i) private view returns (string memory) {
        if(_bokehBank[_i] != 0) {
            return string(abi.encodePacked(_bokehBank[_i].toString()));
        }
        return string(abi.encodePacked(((100 - _d.b_) * 5).toString()));
    }

    function c_a(DNA_Decoded memory _d, uint _i) private view returns (string memory) {
        string memory l_c;
        string memory i_c;
        string memory b_c;
        string memory b_t;
        string memory b_t_a;
        {
            l_c = string(abi.encodePacked('{"trait_type": "eye lid color red", "value": ', _d.e_1_c._r, '}, {"trait_type": "eye lid color green", "value": ', _d.e_1_c._g, '}, {"trait_type": "eye lid color blue", "value": ', _d.e_1_c._b, '}, {"trait_type": "eye lid color transparency", "value": ', _d.e_1_c_a, '0},'));
        }
        {
            i_c = string(abi.encodePacked('{"trait_type": "eye lid color red", "value": ', _d.e_3_c._r, '}, {"trait_type": "eye lid color green", "value": ', _d.e_3_c._g, '}, {"trait_type": "eye lid color blue", "value": ', _d.e_3_c._b, '}, {"trait_type": "eye lid color transparency", "value": ', _d.e_3_c_a, '0},'));
        }
        {   
            b_c = string(abi.encodePacked('{"trait_type": "bokeh", "value": ', b_a(_d, _i)));
        }
        {
            if(_bokehBank[_i] == 0) {
                b_t_a = 'no';
            } else {
                b_t_a = 'yes';
            }
            b_t = string(abi.encodePacked('}, {"trait_type": "bokeh altered", "value": "', b_t_a));
        }
        return string(
            abi.encodePacked(
                l_c,
                i_c,
                b_c,
                b_t,
                '"},'
            )
        );
    }

    function r_a(DNA_Decoded memory _d) private pure returns (string memory) {
        return string(
            abi.encodePacked(
                '{"trait_type": "full rotation time", "value": ',
                _d.r_.r_s,
                '}, {"trait_type": "rotation direction", "value": "',
                _d.r_.r_0 == 0 ? 'clockwise' : 'counter-clockwise',
                '"}'
            )
        );
    }

    // metadata attribute generation

    function getAttributes(uint _i)
        private
        view
        returns (string memory)
    {
        DNA_Decoded memory _d = decode_dna(_i);
        return string(abi.encodePacked('[', w_a(_d), s_a(_d), c_a(_d, _i), r_a(_d), ']'));
    }
    
    // tokenURI for ERC721

    function tokenURI(uint256 _i)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        super.tokenURI(_i);
        return
            string(
                abi.encodePacked(
                    "data:application/json;base64,",
                    bytes(
                        abi.encodePacked(
                            '{"attributes": ', getAttributes(_i),
                            ', "name": "boncuk #', _i.toString(),
                            '", "description": "', _description,
                            '", "external_url": "', _external_url,
                            '", "image": "data:image/svg+xml;base64,',
                            render_encoded(_i),
                            '"}'
                        )
                    ).encode(),
                    "#"
                )
            );
    }
    
    // contractURI for OpenSea
  
    function contractURI() public view returns (string memory) {
        return
            string(
                abi.encodePacked(
                    "data:application/json;base64,",
                    bytes(
                        abi.encodePacked(
                            '{"name": "boncuk", "description": "', _description,
                            '", "external_link": "', _external_url,
                            '", "image": "data:image/svg+xml;base64,',
                            render_encoded(1),
                            '"}'
                        )
                    ).encode()
                )
            );
    }
    
    // Derived 721 contract must override function “supportsInterface”

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
     
    // constructor populating description, externalUrl, and the genesis NFT for the contractURI

    constructor()
        ERC721("boncuk", "boncuk")
        onlyOwner
    {
        setDescription(string(abi.encodePacked(MAX_SUPPLY.toString(), " on-chain stored and dynamically displayed 1024 x 1024 SVG evil eyes")));
        setExternalUrl("https://en.wikipedia.org/wiki/Evil_eye");
        // angels' share
        _mint(address(owner()));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","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":"previousOwner","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":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_description","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_external_url","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"boncuk_count","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","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":"tokenId","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":"uint256","name":"_i","type":"uint256"},{"internalType":"uint8","name":"_b","type":"uint8"}],"name":"setBokeh","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_d","type":"string"}],"name":"setDescription","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_u","type":"string"}],"name":"setExternalUrl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_i","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610400600b556008600c553480156200001c57600080fd5b50604080518082018252600680825265626f6e63756b60d01b6020808401828152855180870190965292855284015281519192916200005e916000916200084a565b508051620000749060019060208401906200084a565b5050600160065550620000873362000161565b6007546001600160a01b03163314620000d65760405162461bcd60e51b8152602060048201819052602482015260008051602062004dbc83398151915260448201526064015b60405180910390fd5b6200011a620000f2600b54620001b360201b62000d5a1760201c565b6040516020016200010491906200091c565b60408051601f19818403018152919052620002d0565b6200013e60405180606001604052806026815260200162004ddc6026913962000341565b6200015b620001556007546001600160a01b031690565b620003ae565b62000b59565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b606081620001d85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115620002085780620001ef8162000acc565b9150620002009050600a8362000a2b565b9150620001dc565b6000816001600160401b0381111562000225576200022562000b43565b6040519080825280601f01601f19166020018201604052801562000250576020820181803683370190505b5090505b8415620002c8576200026860018362000a42565b915062000277600a8662000aea565b62000284906030620009e8565b60f81b8183815181106200029c576200029c62000b2d565b60200101906001600160f81b031916908160001a905350620002c0600a8662000a2b565b945062000254565b949350505050565b6007546001600160a01b031633146200031b5760405162461bcd60e51b8152602060048201819052602482015260008051602062004dbc8339815191526044820152606401620000cd565b3332146200032857600080fd5b80516200033d9060099060208401906200084a565b5050565b6007546001600160a01b031633146200038c5760405162461bcd60e51b8152602060048201819052602482015260008051602062004dbc8339815191526044820152606401620000cd565b3332146200039957600080fd5b80516200033d90600a9060208401906200084a565b6007546001600160a01b03828116911614620003cf57620003cf8162000420565b620003ec60016008546200047660201b62000e601790919060201c565b600855620003f96200048b565b600880546000908152600d6020526040902091909155546200041d908290620004fa565b50565b6001600160a01b0381166000908152600f6020526040902054620004499060ff16600162000a03565b6001600160a01b03919091166000908152600f60205260409020805460ff191660ff909216919091179055565b6000620004848284620009e8565b9392505050565b600033600d60006001600854620004a3919062000a42565b815260200190815260200160002054604051602001620004dc92919060609290921b6001600160601b0319168252601482015260340190565b6040516020818303038152906040528051906020012060001c905090565b6200033d8282604051806020016040528060008152506200051c60201b60201c565b62000528838362000594565b620005376000848484620006dc565b6200058f5760405162461bcd60e51b8152602060048201526032602482015260008051602062004d9c83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620000cd565b505050565b6001600160a01b038216620005ec5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620000cd565b6000818152600260205260409020546001600160a01b031615620006535760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620000cd565b6001600160a01b03821660009081526003602052604081208054600192906200067e908490620009e8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620006fd846001600160a01b03166200084460201b62000e731760201c565b156200083957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200073790339089908890889060040162000992565b602060405180830381600087803b1580156200075257600080fd5b505af192505050801562000785575060408051601f3d908101601f191682019092526200078291810190620008f0565b60015b6200081e573d808015620007b6576040519150601f19603f3d011682016040523d82523d6000602084013e620007bb565b606091505b508051620008165760405162461bcd60e51b8152602060048201526032602482015260008051602062004d9c83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620000cd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620002c8565b506001949350505050565b3b151590565b828054620008589062000a8f565b90600052602060002090601f0160209004810192826200087c5760008555620008c7565b82601f106200089757805160ff1916838001178555620008c7565b82800160010185558215620008c7579182015b82811115620008c7578251825591602001919060010190620008aa565b50620008d5929150620008d9565b5090565b5b80821115620008d55760008155600101620008da565b6000602082840312156200090357600080fd5b81516001600160e01b0319811681146200048457600080fd5b600082516200093081846020870162000a5c565b7f206f6e2d636861696e2073746f72656420616e642064796e616d6963616c6c799201918252507f20646973706c6179656420313032342078203130323420535647206576696c206020820152636579657360e01b6040820152604401919050565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620009d18160a085016020870162000a5c565b601f01601f19169190910160a00195945050505050565b60008219821115620009fe57620009fe62000b01565b500190565b600060ff821660ff84168060ff0382111562000a235762000a2362000b01565b019392505050565b60008262000a3d5762000a3d62000b17565b500490565b60008282101562000a575762000a5762000b01565b500390565b60005b8381101562000a7957818101518382015260200162000a5f565b8381111562000a89576000848401525b50505050565b600181811c9082168062000aa457607f821691505b6020821081141562000ac657634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000ae35762000ae362000b01565b5060010190565b60008262000afc5762000afc62000b17565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6142338062000b696000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c8063715018a6116100c3578063c87b56dd1161007c578063c87b56dd146102ba578063ceb9046c146102cd578063cfa84dfe146102e0578063e8a3d485146102e8578063e985e9c5146102f0578063f2fde38b1461030357600080fd5b8063715018a6146102605780638da5cb5b1461026857806390c3f38f1461027957806395d89b411461028c578063a22cb46514610294578063b88d4fde146102a757600080fd5b806323b872dd1161011557806323b872dd146101f957806326d58ad31461020c57806342842e0e1461021f5780634c2aa727146102325780636352211e1461023a57806370a082311461024d57600080fd5b806301ffc9a71461015d57806302f2b8731461018557806306fdde031461019c578063081812fc146101b1578063095ea7b3146101dc5780631249c58b146101f1575b600080fd5b61017061016b366004612ba4565b610316565b60405190151581526020015b60405180910390f35b61018e60085481565b60405190815260200161017c565b6101a4610327565b60405161017c9190613d3d565b6101c46101bf366004612c27565b6103b9565b6040516001600160a01b03909116815260200161017c565b6101ef6101ea366004612b7a565b610453565b005b6101ef610569565b6101ef610207366004612a86565b6106ca565b6101ef61021a366004612bde565b6106fb565b6101ef61022d366004612a86565b610748565b6101a4610763565b6101c4610248366004612c27565b6107f1565b61018e61025b366004612a38565b610868565b6101ef6108ef565b6007546001600160a01b03166101c4565b6101ef610287366004612bde565b610925565b6101a461096e565b6101ef6102a2366004612b3e565b61097d565b6101ef6102b5366004612ac2565b610a42565b6101a46102c8366004612c27565b610a7a565b6101ef6102db366004612c40565b610af6565b6101a4610c3b565b6101a4610c48565b6101706102fe366004612a53565b610c91565b6101ef610311366004612a38565b610cbf565b600061032182610e79565b92915050565b60606000805461033690614022565b80601f016020809104026020016040519081016040528092919081815260200182805461036290614022565b80156103af5780601f10610384576101008083540402835291602001916103af565b820191906000526020600020905b81548152906001019060200180831161039257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104375760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061045e826107f1565b9050806001600160a01b0316836001600160a01b031614156104cc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161042e565b336001600160a01b03821614806104e857506104e88133610c91565b61055a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161042e565b6105648383610ec9565b505050565b600260065414156105bc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161042e565b60026006553332146105cd57600080fd5b600b546008546105de906002610e60565b11156105eb600b54610d5a565b6040516020016105fb91906139e7565b604051602081830303815290604052906106285760405162461bcd60e51b815260040161042e9190613d3d565b50600c54336000908152600f602052604090205460ff168114159061064c90610d5a565b60405160200161065c9190612f02565b604051602081830303815290604052906106895760405162461bcd60e51b815260040161042e9190613d3d565b5061069333610f37565b600880546106a19190614078565b600714156106c3576106c36106be6007546001600160a01b031690565b610f37565b6001600655565b6106d43382610f90565b6106f05760405162461bcd60e51b815260040161042e90613dd7565b61056483838361105f565b6007546001600160a01b031633146107255760405162461bcd60e51b815260040161042e90613da2565b33321461073157600080fd5b805161074490600a9060208401906127da565b5050565b61056483838360405180602001604052806000815250610a42565b600a805461077090614022565b80601f016020809104026020016040519081016040528092919081815260200182805461079c90614022565b80156107e95780601f106107be576101008083540402835291602001916107e9565b820191906000526020600020905b8154815290600101906020018083116107cc57829003601f168201915b505050505081565b6000818152600260205260408120546001600160a01b0316806103215760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161042e565b60006001600160a01b0382166108d35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161042e565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b031633146109195760405162461bcd60e51b815260040161042e90613da2565b61092360006111ff565b565b6007546001600160a01b0316331461094f5760405162461bcd60e51b815260040161042e90613da2565b33321461095b57600080fd5b80516107449060099060208401906127da565b60606001805461033690614022565b6001600160a01b0382163314156109d65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161042e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a4c3383610f90565b610a685760405162461bcd60e51b815260040161042e90613dd7565b610a7484848484611251565b50505050565b6060610a8582611284565b50610ad0610a928361136b565b610a9b84610d5a565b6009600a610aa8876113b2565b604051602001610abc959493929190613a3b565b6040516020818303038152906040526113d0565b604051602001610ae0919061386b565b6040516020818303038152906040529050919050565b60026006541415610b495760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161042e565b600260065533610b58836107f1565b6001600160a01b031614610ba55760405162461bcd60e51b81526020600482015260146024820152736d696e6420796f7572206f776e20626f6e63756b60601b604482015260640161042e565b60008160ff16118015610bbb575060648160ff16105b610c075760405162461bcd60e51b815260206004820152601f60248201527f626f6b65682063616e20626520736574206265747765656e2031202d20393900604482015260640161042e565b610c1260648261408c565b6000928352600e6020526040909220805460ff191660ff90931692909217909155506001600655565b6009805461077090614022565b6060610c6d6009600a610c5b60016113b2565b604051602001610abc93929190612f43565b604051602001610c7d9190613826565b604051602081830303815290604052905090565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6007546001600160a01b03163314610ce95760405162461bcd60e51b815260040161042e90613da2565b6001600160a01b038116610d4e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161042e565b610d57816111ff565b50565b606081610d7e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610da85780610d928161405d565b9150610da19050600a83613e65565b9150610d82565b60008167ffffffffffffffff811115610dc357610dc36140f0565b6040519080825280601f01601f191660200182016040528015610ded576020820181803683370190505b5090505b8415610e5857610e02600183613fa5565b9150610e0f600a86614078565b610e1a906030613e28565b60f81b818381518110610e2f57610e2f6140da565b60200101906001600160f81b031916908160001a905350610e51600a86613e65565b9450610df1565b949350505050565b6000610e6c8284613e28565b9392505050565b3b151590565b60006001600160e01b031982166380ac58cd60e01b1480610eaa57506001600160e01b03198216635b5e139f60e01b145b8061032157506301ffc9a760e01b6001600160e01b0319831614610321565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610efe826107f1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6007546001600160a01b03828116911614610f5557610f5581611538565b600854610f63906001610e60565b600855610f6e61158c565b600880546000908152600d602052604090209190915554610d579082906115fd565b6000818152600260205260408120546001600160a01b03166110095760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161042e565b6000611014836107f1565b9050806001600160a01b0316846001600160a01b0316148061104f5750836001600160a01b0316611044846103b9565b6001600160a01b0316145b80610e585750610e588185610c91565b826001600160a01b0316611072826107f1565b6001600160a01b0316146110da5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161042e565b6001600160a01b03821661113c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161042e565b611147600082610ec9565b6001600160a01b0383166000908152600360205260408120805460019290611170908490613fa5565b90915550506001600160a01b038216600090815260036020526040812080546001929061119e908490613e28565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61125c84848461105f565b61126884848484611617565b610a745760405162461bcd60e51b815260040161042e90613d50565b6000818152600260205260409020546060906001600160a01b03166113035760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161042e565b600061131a60408051602081019091526000815290565b9050600081511161133a5760405180602001604052806000815250610e6c565b8061134484610d5a565b604051602001611355929190612d69565b6040516020818303038152906040529392505050565b6060600061137883611724565b905061138381611834565b61138c8261187a565b61139683866118c2565b61139f84611a1b565b6040516020016113559493929190613526565b60606103216113c083611a94565b604051602001610abc9190612d4d565b60608151600014156113f057505060408051602081019091526000815290565b60006040518060600160405280604081526020016141be604091399050600060038451600261141f9190613e28565b6114299190613e65565b611434906004613f86565b90506000611443826020613e28565b67ffffffffffffffff81111561145b5761145b6140f0565b6040519080825280601f01601f191660200182016040528015611485576020820181803683370190505b509050818152600183018586518101602084015b818310156114f35760039283018051603f601282901c811687015160f890811b8552600c83901c8216880151811b6001860152600683901c8216880151811b60028601529116860151901b93820193909352600401611499565b60038951066001811461150d576002811461151e5761152a565b613d3d60f01b60011983015261152a565b603d60f81b6000198301525b509398975050505050505050565b6001600160a01b0381166000908152600f602052604090205461155f9060ff166001613e40565b6001600160a01b03919091166000908152600f60205260409020805460ff191660ff909216919091179055565b600033600d600060016008546115a29190613fa5565b8152602001908152602001600020546040516020016115df92919060609290921b6bffffffffffffffffffffffff19168252601482015260340190565b6040516020818303038152906040528051906020012060001c905090565b610744828260405180602001604052806000815250611aec565b60006001600160a01b0384163b1561171957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061165b903390899088908890600401613d00565b602060405180830381600087803b15801561167557600080fd5b505af19250505080156116a5575060408051601f3d908101601f191682019092526116a291810190612bc1565b60015b6116ff573d8080156116d3576040519150601f19603f3d011682016040523d82523d6000602084013e6116d8565b606091505b5080516116f75760405162461bcd60e51b815260040161042e90613d50565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e58565b506001949350505050565b61172c61285e565b600061173783611b1f565b90506000611749846102006002611b53565b90506000611758856003611bae565b905060006117698660046005611c24565b9050600061177d8761020080610200611c68565b9050600061179988836000015184604001518560600151611c68565b905060006117a8896005611bae565b905060006117b98a60066001611c24565b905060006117d58b856000015186604001518760600151611c68565b905060006117e28c611cf0565b60408051610140810182529b8c5260208c019a909a52988a01979097526060890195909552608088019390935260a087019190915260c086015260e08501526101008401525061012082015292915050565b606061183f82611daa565b61184c8360800151611dda565b6118598460a00151611dda565b611867856101000151611dda565b604051602001610ae09493929190613b1e565b606061188d826080015160200151610d5a565b61189e8360a0015160200151610d5a565b6118b084610100015160200151610d5a565b604051602001610ae093929190613726565b6060806060806060808760400151600001518860400151602001518960400151604001518a606001516040516020016118fe94939291906138bb565b60408051601f1981840301815282825260c08b01518051602082810151929094015160e08e0151939a5061193a959194929390929091016138bb565b60405160208183030381529060405293506119558888611e09565b6040516020016119659190613191565b60408051601f198184030181529181526000898152600e602052205490935060ff166119aa57506040805180820190915260028152616e6f60f01b60208201526119c6565b5060408051808201909152600381526279657360e81b60208201525b806040516020016119d791906130f5565b6040516020818303038152906040529150848484846040516020016119ff9493929190612e9d565b6040516020818303038152906040529550505050505092915050565b610120810151604081015190516060919015611a605760405180604001604052806011815260200170636f756e7465722d636c6f636b7769736560781b815250611a83565b60405180604001604052806009815260200168636c6f636b7769736560b81b8152505b604051602001610ae0929190613464565b60606000611aa183611724565b9050611ab4611aaf846107f1565b611ea7565b611abd82611f4d565b611ac683612130565b611ad08487612203565b611ad861230b565b604051602001611355959493929190612e32565b611af683836123b4565b611b036000848484611617565b6105645760405162461bcd60e51b815260040161042e90613d50565b6000818152600d6020526040812054601490611b3e9061040090613e65565b611b489190614078565b610321906050613e28565b6000611b6082600a613f86565b611b6a9084613e65565b6000858152600d60205260409081902054611b859190613e65565b611b8f9190614078565b611b9a601485613e65565b611ba49085613fa5565b610e589190613e28565b611bd260405180606001604052806060815260200160608152602001606081525090565b6040518060600160405280611bf385856000611bee9190613e28565b6124f6565b8152602001611c0785611bee866001613e28565b8152602001611c1b85611bee866002613e28565b90529392505050565b6060610e586005611c3685600a613ede565b6000878152600d6020526040902054611c4f9190613e65565b611c599190614078565b611c639084613e28565b610d5a565b611c936040518060800160405280600081526020016000815260200160008152602001600081525090565b6000611c9f868661252a565b90506040518060800160405280828152602001611cbe88846001611b53565b8152602001611cd1888885896001612571565b8152602001611ce4888885886002612571565b90529695505050505050565b611d1460405180606001604052806000815260200160008152602001606081525090565b6000828152600d6020526040812054600290611d339061040190613e65565b611d3d9190614078565b611d4990610168613f86565b9050604051806060016040528082815260200182610168611d6a9190613fa5565b8152602001611c1b6019610800600d600089815260200190815260200160002054611d959190613e65565b611d9f9190614078565b611c63906008613e28565b60606103216102008360200151610200611dc49190613fa5565b611dd0906103e8613f86565b611c639190613e65565b602081015181516060919080821115611dfb57610e5882611dc48382613fa5565b610e5881611dc48482613fa5565b6000818152600e602052604090205460609060ff1615611e64576000828152600e6020526040902054611e3e9060ff16610d5a565b604051602001611e4e9190612d4d565b6040516020818303038152906040529050610321565b8251611e8090611e75906064613fa5565b611c63906005613f86565b604051602001611e909190612d4d565b604051602081830303815290604052905092915050565b6060806060806000611ec1866001600160a01b03166125ef565b9050604051806080016040528060438152602001614155604391399350604051806040016040528060038152602001621e339f60e91b815250925080604051602001611f0d9190613150565b6040516020818303038152906040529150838383604051602001611f3393929190612d98565b604051602081830303815290604052945050505050919050565b606080606080606080611f638760200151610d5a565b604051602001611f7391906136af565b6040516020818303038152906040529450611f95876080015160000151610d5a565b611fa6886080015160200151610d5a565b611fb7896080015160400151610d5a565b611fc88a6080015160600151610d5a565b604051602001611fdb94939291906131e0565b60408051601f1981840301815282825260c08a01518051602082810151929094015160e08d015193995061201795919492939092909101613c62565b60405160208183030381529060405291506120398760a0015160000151610d5a565b61204a8860a0015160200151610d5a565b61205b8960a0015160400151610d5a565b61206c8a60a0015160600151610d5a565b85604051602001612081959493929190613386565b60405160208183030381529060405292506120a487610100015160000151610d5a565b6120b688610100015160200151610d5a565b6120c889610100015160400151610d5a565b6120da8a610100015160600151610d5a565b6040516020016120ed94939291906132a7565b6040516020818303038152906040529050848484836040516020016121159493929190612ddb565b60405160208183030381529060405295505050505050919050565b6060806060808461012001516040015161215286610120015160000151610d5a565b61216487610120015160200151610d5a565b604051602001612176939291906135a1565b60408051601f19818403018152828201825260068352651e3232b3399f60d11b60208481019190915282518084018452601b81527f3c72616469616c4772616469656e742069643d22655f315f67223e00000000008183015292519196509294509092506121ea9185918591859101612d98565b6040516020818303038152906040529350505050919050565b6000818152600e60205260408120546060919082908190819060ff1615612263576000868152600e60205260409020546005906122449060ff166064613fbc565b61224e9190613e79565b612259906050613e40565b60ff169350612268565b865193505b60405180606001604052806026815260200161419860269139925061228c84610d5a565b60408089015180516020808301519284015160608d015194516122b5969593949391920161300e565b60408051601f1981840301815260608301909152603880835290935061411d602083013990508282826040516020016122f093929190612d98565b60405160208183030381529060405294505050505092915050565b60408051808201825260118152701e17b930b234b0b623b930b234b2b73a1f60791b6020808301919091528251808401845260078152661e17b232b3399f60c91b818301528351808501855260048152631e17b39f60e11b818401528451808601865260068152651e17b9bb339f60d11b818501529451606095929391929161239c91869186918691869101612ddb565b60405160208183030381529060405294505050505090565b6001600160a01b03821661240a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161042e565b6000818152600260205260409020546001600160a01b03161561246f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161042e565b6001600160a01b0382166000908152600360205260408120805460019290612498908490613e28565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060610e6c60ff6125078482613ede565b6000868152600d60205260409020546125209190613e65565b611c639190614078565b6000612537600383613e65565b6000848152600d602052604090205461255290608090613e65565b61255c9190614078565b612567600284613e65565b610e6c9190613e28565b60008060646125808688613fa5565b61258b906023613f86565b6125959190613e65565b90506125a2816002613f86565b6125ad8460ff613f86565b6000898152600d60205260409020546125c69190613e65565b6125d09190614078565b6125da8286613fa5565b6125e49190613e28565b979650505050505050565b6060816126165750506040805180820190915260048152630307830360e41b602082015290565b8160005b8115612639578061262a8161405d565b915050600882901c915061261a565b610e5884826060600061264d836002613f86565b612658906002613e28565b67ffffffffffffffff811115612670576126706140f0565b6040519080825280601f01601f19166020018201604052801561269a576020820181803683370190505b509050600360fc1b816000815181106126b5576126b56140da565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106126e4576126e46140da565b60200101906001600160f81b031916908160001a9053506000612708846002613f86565b612713906001613e28565b90505b600181111561278b576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612747576127476140da565b1a60f81b82828151811061275d5761275d6140da565b60200101906001600160f81b031916908160001a90535060049490941c936127848161400b565b9050612716565b508315610e6c5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161042e565b8280546127e690614022565b90600052602060002090601f016020900481019282612808576000855561284e565b82601f1061282157805160ff191683800117855561284e565b8280016001018555821561284e579182015b8281111561284e578251825591602001919060010190612833565b5061285a929150612991565b5090565b604051806101400160405280600081526020016000815260200161289c60405180606001604052806060815260200160608152602001606081525090565b8152602001606081526020016128d36040518060800160405280600081526020016000815260200160008152602001600081525090565b81526020016129036040518060800160405280600081526020016000815260200160008152602001600081525090565b815260200161292c60405180606001604052806060815260200160608152602001606081525090565b8152602001606081526020016129636040518060800160405280600081526020016000815260200160008152602001600081525090565b815260200161298c60405180606001604052806000815260200160008152602001606081525090565b905290565b5b8082111561285a5760008155600101612992565b600067ffffffffffffffff808411156129c1576129c16140f0565b604051601f8501601f19908116603f011681019082821181831017156129e9576129e96140f0565b81604052809350858152868686011115612a0257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612a3357600080fd5b919050565b600060208284031215612a4a57600080fd5b610e6c82612a1c565b60008060408385031215612a6657600080fd5b612a6f83612a1c565b9150612a7d60208401612a1c565b90509250929050565b600080600060608486031215612a9b57600080fd5b612aa484612a1c565b9250612ab260208501612a1c565b9150604084013590509250925092565b60008060008060808587031215612ad857600080fd5b612ae185612a1c565b9350612aef60208601612a1c565b925060408501359150606085013567ffffffffffffffff811115612b1257600080fd5b8501601f81018713612b2357600080fd5b612b32878235602084016129a6565b91505092959194509250565b60008060408385031215612b5157600080fd5b612b5a83612a1c565b915060208301358015158114612b6f57600080fd5b809150509250929050565b60008060408385031215612b8d57600080fd5b612b9683612a1c565b946020939093013593505050565b600060208284031215612bb657600080fd5b8135610e6c81614106565b600060208284031215612bd357600080fd5b8151610e6c81614106565b600060208284031215612bf057600080fd5b813567ffffffffffffffff811115612c0757600080fd5b8201601f81018413612c1857600080fd5b610e58848235602084016129a6565b600060208284031215612c3957600080fd5b5035919050565b60008060408385031215612c5357600080fd5b82359150602083013560ff81168114612b6f57600080fd5b60008151808452612c83816020860160208601613fdf565b601f01601f19169290920160200192915050565b60008151612ca9818560208601613fdf565b9290920192915050565b8054600090600181811c9080831680612ccd57607f831692505b6020808410821415612cef57634e487b7160e01b600052602260045260246000fd5b818015612d035760018114612d1457612d41565b60ff19861689528489019650612d41565b60008881526020902060005b86811015612d395781548b820152908501908301612d20565b505084890196505b50505050505092915050565b60008251612d5f818460208701613fdf565b9190910192915050565b60008351612d7b818460208801613fdf565b835190830190612d8f818360208801613fdf565b01949350505050565b60008451612daa818460208901613fdf565b845190830190612dbe818360208901613fdf565b8451910190612dd1818360208801613fdf565b0195945050505050565b60008551612ded818460208a01613fdf565b855190830190612e01818360208a01613fdf565b8551910190612e14818360208901613fdf565b8451910190612e27818360208801613fdf565b019695505050505050565b60008651612e44818460208b01613fdf565b865190830190612e58818360208b01613fdf565b8651910190612e6b818360208a01613fdf565b8551910190612e7e818360208901613fdf565b8451910190612e91818360208801613fdf565b01979650505050505050565b60008551612eaf818460208a01613fdf565b855190830190612ec3818360208a01613fdf565b8551910190612ed6818360208901613fdf565b8451910190612ee9818360208801613fdf565b62089f4b60ea1b91019081526003019695505050505050565b60008251612f14818460208701613fdf565b7f206d696e747320706572206164647265737320697320616c6c6f776564000000920191825250601d01919050565b7f7b226e616d65223a2022626f6e63756b222c20226465736372697074696f6e228152621d101160e91b60208201526000612f816023830186612cb3565b741116101132bc3a32b93730b62fb634b735911d101160591b8152612fe5612fac6015830187612cb3565b7f222c2022696d616765223a2022646174613a696d6167652f7376672b786d6c3b81526618985cd94d8d0b60ca1b602082015260270190565b90508351612ff7818360208801613fdf565b61227d60f01b910190815260020195945050505050565b6d1e39ba37b81037b33339b2ba1e9160911b8152855160009061303881600e850160208b01613fdf565b7304a4440e6e8dee05ac6ded8dee47a44e4cec4c2560631b600e91840191820152865161306c816022840160208b01613fdf565b808201915050600b60fa1b8060228301528651613090816023850160208b01613fdf565b602392019182015284516130ab816024840160208901613fdf565b6216181760e91b6024929091019182015283516130cf816027840160208801613fdf565b6130e8602782840101631491179f60e11b815260040190565b9998505050505050505050565b7f7d2c207b2274726169745f74797065223a2022626f6b656820616c746572656481526c111610113b30b63ab2911d101160991b60208201526000825161314381602d850160208701613fdf565b91909101602d0192915050565b661e3a34ba36329f60c91b815260008251613172816007850160208701613fdf565b671e17ba34ba36329f60c11b6007939091019283015250600f01919050565b7f7b2274726169745f74797065223a2022626f6b6568222c202276616c7565223a8152600160fd1b6020820152600082516131d3816021850160208701613fdf565b9190910160210192915050565b6c1e32b63634b839b290393c9e9160991b8152845160009061320981600d850160208a01613fdf565b651110393c1e9160d11b600d91840191820152855161322f816013840160208a01613fdf565b65111031bc9e9160d11b601392909101918201528451613256816019840160208901613fdf565b65111031bc1e9160d11b60199290910191820152835161327d81601f840160208801613fdf565b6e11103334b6361e9111a3232311179f60891b601f9290910191820152602e019695505050505050565b6c1e32b63634b839b290393c9e9160991b815284516000906132d081600d850160208a01613fdf565b651110393c1e9160d11b600d9184019182015285516132f6816013840160208a01613fdf565b65111031bc9e9160d11b60139290910191820152845161331d816019840160208901613fdf565b65111031bc1e9160d11b60199290910191820152835161334481601f840160208801613fdf565b7f222066696c6c3d22726762612832322c2032342c203135302c20302e3829222f601f9290910191820152601f60f91b603f8201526040019695505050505050565b6c1e32b63634b839b290393c9e9160991b815285516000906133af81600d850160208b01613fdf565b651110393c1e9160d11b600d9184019182015286516133d5816013840160208b01613fdf565b65111031bc9e9160d11b6013929091019182015285516133fc816019840160208a01613fdf565b65111031bc1e9160d11b60199290910191820152845161342381601f840160208901613fdf565b6711103334b6361e9160c11b601f9290910191820152835161344c816027840160208801613fdf565b6130e86027828401016211179f60e91b815260030190565b7f7b2274726169745f74797065223a202266756c6c20726f746174696f6e20746981526d036b2911610113b30b63ab2911d160951b6020820152600083516134b381602e850160208801613fdf565b7f7d2c207b2274726169745f74797065223a2022726f746174696f6e2064697265602e918401918201527131ba34b7b7111610113b30b63ab2911d101160711b604e820152835161350b816060840160208801613fdf565b61227d60f01b60609290910191820152606201949350505050565b605b60f81b815260008551613542816001850160208a01613fdf565b855190830190613559816001840160208a01613fdf565b855191019061356f816001840160208901613fdf565b8451910190613585816001840160208801613fdf565b605d60f81b600192909101918201526002019695505050505050565b7f3c616e696d6174655472616e73666f726d206174747269627574654e616d653d81527f227472616e73666f726d2220626567696e3d22307322206475723d22000000006020820152600084516135ff81603c850160208901613fdf565b7f732220747970653d22726f74617465222066726f6d3d22000000000000000000603c91840191820152845161363c816053840160208901613fdf565b6d101a9899101a989911103a379e9160911b60539290910191820152835161366b816061840160208801613fdf565b7f20353132203531322220726570656174436f756e743d22696e646566696e697460619290910191820152633291179f60e11b608182015260850195945050505050565b751e32b63634b839b290393c9e911a98991110393c1e9160511b815281516000906136e1816016850160208701613fdf565b7f222063793d22353132222063783d22353132222066696c6c3d2275726c2823656016939091019283015250672f98afb39491179f60c11b6036820152603e01919050565b7f7b2274726169745f74797065223a20226579652073697a65222c202276616c75815263032911d160e51b60208201526000845161376b816024850160208901613fdf565b7f7d2c207b2274726169745f74797065223a2022697269732073697a65222c20226024918401918201526703b30b63ab2911d160c51b604482015284516137b981604c840160208901613fdf565b7f7d2c20207b2274726169745f74797065223a2022707570696c2073697a65222c604c929091019182015269010113b30b63ab2911d160b51b606c820152835161380a816076840160208801613fdf565b611f4b60f21b6076929091019182015260780195945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161385e81601d850160208701613fdf565b91909101601d0192915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516138a381601d850160208701613fdf565b602360f81b601d939091019283015250601e01919050565b7f7b2274726169745f74797065223a2022657965206c696420636f6c6f7220726581526c032111610113b30b63ab2911d1609d1b60208201526000855161390981602d850160208a01613fdf565b7f7d2c207b2274726169745f74797065223a2022657965206c696420636f6c6f72602d9184019182018190527101033b932b2b7111610113b30b63ab2911d160751b604d830152865161396381605f850160208b01613fdf565b605f92019182018190527001031363ab2911610113b30b63ab2911d1607d1b607f830152855161399a816090850160208a01613fdf565b60909201918201527f207472616e73706172656e6379222c202276616c7565223a200000000000000060b08201526125e46139d860c9830186612c97565b620c1f4b60ea1b815260030190565b64037b7363c960dd1b815260008251613a07816005850160208701613fdf565b7f206f66207468656d2077696c6c206576657220657869737400000000000000006005939091019283015250601d01919050565b6e03d9130ba3a3934b13aba32b9911d1608d1b81528551600090613a6681600f850160208b01613fdf565b722c20226e616d65223a2022626f6e63756b202360681b600f918401918201528651613a99816022840160208b01613fdf565b72111610113232b9b1b934b83a34b7b7111d101160691b60229290910191820152613ac76035820187612cb3565b731116101132bc3a32b93730b62fbab936111d101160611b81529050613af3612fac6014830187612cb3565b90508351613b05818360208801613fdf565b61227d60f01b9101908152600201979650505050505050565b7f7b2274726169745f74797065223a202265796520736f636b657420776172702281526a01610113b30b63ab2911d160ad1b602082015260008551613b6a81602b850160208a01613fdf565b7f7d2c207b2274726169745f74797065223a20226579652077617270222c202276602b9184019182015266030b63ab2911d160cd1b604b8201528551613bb7816052840160208a01613fdf565b7f7d2c207b2274726169745f74797065223a2022697269732077617270222c2022605292909101918201526703b30b63ab2911d160c51b60728201528451613c0681607a840160208901613fdf565b7f7d2c207b2274726169745f74797065223a2022707570696c2077617270222c20607a9290910191820152680113b30b63ab2911d160bd1b609a8201526125e4613c5360a3830186612c97565b6203e96160ed1b815260030190565b640e4cec4c2560db1b815260008551613c82816005850160208a01613fdf565b8083019050600b60fa1b8060058301528651613ca5816006850160208b01613fdf565b60069201918201528451613cc0816007840160208901613fdf565b6216181760e91b600792909101918201528351613ce481600a840160208801613fdf565b602960f81b600a9290910191820152600b019695505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613d3390830184612c6b565b9695505050505050565b602081526000610e6c6020830184612c6b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115613e3b57613e3b6140ae565b500190565b600060ff821660ff84168060ff03821115613e5d57613e5d6140ae565b019392505050565b600082613e7457613e746140c4565b500490565b600060ff831680613e8c57613e8c6140c4565b8060ff84160491505092915050565b600181815b80851115613ed6578160001904821115613ebc57613ebc6140ae565b80851615613ec957918102915b93841c9390800290613ea0565b509250929050565b6000610e6c8383600082613ef457506001610321565b81613f0157506000610321565b8160018114613f175760028114613f2157613f3d565b6001915050610321565b60ff841115613f3257613f326140ae565b50506001821b610321565b5060208310610133831016604e8410600b8410161715613f60575081810a610321565b613f6a8383613e9b565b8060001904821115613f7e57613f7e6140ae565b029392505050565b6000816000190483118215151615613fa057613fa06140ae565b500290565b600082821015613fb757613fb76140ae565b500390565b600060ff821660ff841680821015613fd657613fd66140ae565b90039392505050565b60005b83811015613ffa578181015183820152602001613fe2565b83811115610a745750506000910152565b60008161401a5761401a6140ae565b506000190190565b600181811c9082168061403657607f821691505b6020821081141561405757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415614071576140716140ae565b5060010190565b600082614087576140876140c4565b500690565b600060ff83168061409f5761409f6140c4565b8060ff84160691505092915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d5757600080fdfe3c73746f70206f66667365743d2231303025222073746f702d636f6c6f723d2272676261283235352c3235352c3235352c302e3129222f3e3c7376672077696474683d223130323422206865696768743d22313032342220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e3c73746f70206f66667365743d22333025222073746f702d636f6c6f723d2223303030222f3e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212203c94499a4f118c6060296d6c13b4107ee2e69b01fe908a20badea4ae8df2972664736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e2045524337323152654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657268747470733a2f2f656e2e77696b6970656469612e6f72672f77696b692f4576696c5f657965

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c8063715018a6116100c3578063c87b56dd1161007c578063c87b56dd146102ba578063ceb9046c146102cd578063cfa84dfe146102e0578063e8a3d485146102e8578063e985e9c5146102f0578063f2fde38b1461030357600080fd5b8063715018a6146102605780638da5cb5b1461026857806390c3f38f1461027957806395d89b411461028c578063a22cb46514610294578063b88d4fde146102a757600080fd5b806323b872dd1161011557806323b872dd146101f957806326d58ad31461020c57806342842e0e1461021f5780634c2aa727146102325780636352211e1461023a57806370a082311461024d57600080fd5b806301ffc9a71461015d57806302f2b8731461018557806306fdde031461019c578063081812fc146101b1578063095ea7b3146101dc5780631249c58b146101f1575b600080fd5b61017061016b366004612ba4565b610316565b60405190151581526020015b60405180910390f35b61018e60085481565b60405190815260200161017c565b6101a4610327565b60405161017c9190613d3d565b6101c46101bf366004612c27565b6103b9565b6040516001600160a01b03909116815260200161017c565b6101ef6101ea366004612b7a565b610453565b005b6101ef610569565b6101ef610207366004612a86565b6106ca565b6101ef61021a366004612bde565b6106fb565b6101ef61022d366004612a86565b610748565b6101a4610763565b6101c4610248366004612c27565b6107f1565b61018e61025b366004612a38565b610868565b6101ef6108ef565b6007546001600160a01b03166101c4565b6101ef610287366004612bde565b610925565b6101a461096e565b6101ef6102a2366004612b3e565b61097d565b6101ef6102b5366004612ac2565b610a42565b6101a46102c8366004612c27565b610a7a565b6101ef6102db366004612c40565b610af6565b6101a4610c3b565b6101a4610c48565b6101706102fe366004612a53565b610c91565b6101ef610311366004612a38565b610cbf565b600061032182610e79565b92915050565b60606000805461033690614022565b80601f016020809104026020016040519081016040528092919081815260200182805461036290614022565b80156103af5780601f10610384576101008083540402835291602001916103af565b820191906000526020600020905b81548152906001019060200180831161039257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104375760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061045e826107f1565b9050806001600160a01b0316836001600160a01b031614156104cc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161042e565b336001600160a01b03821614806104e857506104e88133610c91565b61055a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161042e565b6105648383610ec9565b505050565b600260065414156105bc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161042e565b60026006553332146105cd57600080fd5b600b546008546105de906002610e60565b11156105eb600b54610d5a565b6040516020016105fb91906139e7565b604051602081830303815290604052906106285760405162461bcd60e51b815260040161042e9190613d3d565b50600c54336000908152600f602052604090205460ff168114159061064c90610d5a565b60405160200161065c9190612f02565b604051602081830303815290604052906106895760405162461bcd60e51b815260040161042e9190613d3d565b5061069333610f37565b600880546106a19190614078565b600714156106c3576106c36106be6007546001600160a01b031690565b610f37565b6001600655565b6106d43382610f90565b6106f05760405162461bcd60e51b815260040161042e90613dd7565b61056483838361105f565b6007546001600160a01b031633146107255760405162461bcd60e51b815260040161042e90613da2565b33321461073157600080fd5b805161074490600a9060208401906127da565b5050565b61056483838360405180602001604052806000815250610a42565b600a805461077090614022565b80601f016020809104026020016040519081016040528092919081815260200182805461079c90614022565b80156107e95780601f106107be576101008083540402835291602001916107e9565b820191906000526020600020905b8154815290600101906020018083116107cc57829003601f168201915b505050505081565b6000818152600260205260408120546001600160a01b0316806103215760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161042e565b60006001600160a01b0382166108d35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161042e565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b031633146109195760405162461bcd60e51b815260040161042e90613da2565b61092360006111ff565b565b6007546001600160a01b0316331461094f5760405162461bcd60e51b815260040161042e90613da2565b33321461095b57600080fd5b80516107449060099060208401906127da565b60606001805461033690614022565b6001600160a01b0382163314156109d65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161042e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a4c3383610f90565b610a685760405162461bcd60e51b815260040161042e90613dd7565b610a7484848484611251565b50505050565b6060610a8582611284565b50610ad0610a928361136b565b610a9b84610d5a565b6009600a610aa8876113b2565b604051602001610abc959493929190613a3b565b6040516020818303038152906040526113d0565b604051602001610ae0919061386b565b6040516020818303038152906040529050919050565b60026006541415610b495760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161042e565b600260065533610b58836107f1565b6001600160a01b031614610ba55760405162461bcd60e51b81526020600482015260146024820152736d696e6420796f7572206f776e20626f6e63756b60601b604482015260640161042e565b60008160ff16118015610bbb575060648160ff16105b610c075760405162461bcd60e51b815260206004820152601f60248201527f626f6b65682063616e20626520736574206265747765656e2031202d20393900604482015260640161042e565b610c1260648261408c565b6000928352600e6020526040909220805460ff191660ff90931692909217909155506001600655565b6009805461077090614022565b6060610c6d6009600a610c5b60016113b2565b604051602001610abc93929190612f43565b604051602001610c7d9190613826565b604051602081830303815290604052905090565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6007546001600160a01b03163314610ce95760405162461bcd60e51b815260040161042e90613da2565b6001600160a01b038116610d4e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161042e565b610d57816111ff565b50565b606081610d7e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610da85780610d928161405d565b9150610da19050600a83613e65565b9150610d82565b60008167ffffffffffffffff811115610dc357610dc36140f0565b6040519080825280601f01601f191660200182016040528015610ded576020820181803683370190505b5090505b8415610e5857610e02600183613fa5565b9150610e0f600a86614078565b610e1a906030613e28565b60f81b818381518110610e2f57610e2f6140da565b60200101906001600160f81b031916908160001a905350610e51600a86613e65565b9450610df1565b949350505050565b6000610e6c8284613e28565b9392505050565b3b151590565b60006001600160e01b031982166380ac58cd60e01b1480610eaa57506001600160e01b03198216635b5e139f60e01b145b8061032157506301ffc9a760e01b6001600160e01b0319831614610321565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610efe826107f1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6007546001600160a01b03828116911614610f5557610f5581611538565b600854610f63906001610e60565b600855610f6e61158c565b600880546000908152600d602052604090209190915554610d579082906115fd565b6000818152600260205260408120546001600160a01b03166110095760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161042e565b6000611014836107f1565b9050806001600160a01b0316846001600160a01b0316148061104f5750836001600160a01b0316611044846103b9565b6001600160a01b0316145b80610e585750610e588185610c91565b826001600160a01b0316611072826107f1565b6001600160a01b0316146110da5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161042e565b6001600160a01b03821661113c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161042e565b611147600082610ec9565b6001600160a01b0383166000908152600360205260408120805460019290611170908490613fa5565b90915550506001600160a01b038216600090815260036020526040812080546001929061119e908490613e28565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61125c84848461105f565b61126884848484611617565b610a745760405162461bcd60e51b815260040161042e90613d50565b6000818152600260205260409020546060906001600160a01b03166113035760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161042e565b600061131a60408051602081019091526000815290565b9050600081511161133a5760405180602001604052806000815250610e6c565b8061134484610d5a565b604051602001611355929190612d69565b6040516020818303038152906040529392505050565b6060600061137883611724565b905061138381611834565b61138c8261187a565b61139683866118c2565b61139f84611a1b565b6040516020016113559493929190613526565b60606103216113c083611a94565b604051602001610abc9190612d4d565b60608151600014156113f057505060408051602081019091526000815290565b60006040518060600160405280604081526020016141be604091399050600060038451600261141f9190613e28565b6114299190613e65565b611434906004613f86565b90506000611443826020613e28565b67ffffffffffffffff81111561145b5761145b6140f0565b6040519080825280601f01601f191660200182016040528015611485576020820181803683370190505b509050818152600183018586518101602084015b818310156114f35760039283018051603f601282901c811687015160f890811b8552600c83901c8216880151811b6001860152600683901c8216880151811b60028601529116860151901b93820193909352600401611499565b60038951066001811461150d576002811461151e5761152a565b613d3d60f01b60011983015261152a565b603d60f81b6000198301525b509398975050505050505050565b6001600160a01b0381166000908152600f602052604090205461155f9060ff166001613e40565b6001600160a01b03919091166000908152600f60205260409020805460ff191660ff909216919091179055565b600033600d600060016008546115a29190613fa5565b8152602001908152602001600020546040516020016115df92919060609290921b6bffffffffffffffffffffffff19168252601482015260340190565b6040516020818303038152906040528051906020012060001c905090565b610744828260405180602001604052806000815250611aec565b60006001600160a01b0384163b1561171957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061165b903390899088908890600401613d00565b602060405180830381600087803b15801561167557600080fd5b505af19250505080156116a5575060408051601f3d908101601f191682019092526116a291810190612bc1565b60015b6116ff573d8080156116d3576040519150601f19603f3d011682016040523d82523d6000602084013e6116d8565b606091505b5080516116f75760405162461bcd60e51b815260040161042e90613d50565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e58565b506001949350505050565b61172c61285e565b600061173783611b1f565b90506000611749846102006002611b53565b90506000611758856003611bae565b905060006117698660046005611c24565b9050600061177d8761020080610200611c68565b9050600061179988836000015184604001518560600151611c68565b905060006117a8896005611bae565b905060006117b98a60066001611c24565b905060006117d58b856000015186604001518760600151611c68565b905060006117e28c611cf0565b60408051610140810182529b8c5260208c019a909a52988a01979097526060890195909552608088019390935260a087019190915260c086015260e08501526101008401525061012082015292915050565b606061183f82611daa565b61184c8360800151611dda565b6118598460a00151611dda565b611867856101000151611dda565b604051602001610ae09493929190613b1e565b606061188d826080015160200151610d5a565b61189e8360a0015160200151610d5a565b6118b084610100015160200151610d5a565b604051602001610ae093929190613726565b6060806060806060808760400151600001518860400151602001518960400151604001518a606001516040516020016118fe94939291906138bb565b60408051601f1981840301815282825260c08b01518051602082810151929094015160e08e0151939a5061193a959194929390929091016138bb565b60405160208183030381529060405293506119558888611e09565b6040516020016119659190613191565b60408051601f198184030181529181526000898152600e602052205490935060ff166119aa57506040805180820190915260028152616e6f60f01b60208201526119c6565b5060408051808201909152600381526279657360e81b60208201525b806040516020016119d791906130f5565b6040516020818303038152906040529150848484846040516020016119ff9493929190612e9d565b6040516020818303038152906040529550505050505092915050565b610120810151604081015190516060919015611a605760405180604001604052806011815260200170636f756e7465722d636c6f636b7769736560781b815250611a83565b60405180604001604052806009815260200168636c6f636b7769736560b81b8152505b604051602001610ae0929190613464565b60606000611aa183611724565b9050611ab4611aaf846107f1565b611ea7565b611abd82611f4d565b611ac683612130565b611ad08487612203565b611ad861230b565b604051602001611355959493929190612e32565b611af683836123b4565b611b036000848484611617565b6105645760405162461bcd60e51b815260040161042e90613d50565b6000818152600d6020526040812054601490611b3e9061040090613e65565b611b489190614078565b610321906050613e28565b6000611b6082600a613f86565b611b6a9084613e65565b6000858152600d60205260409081902054611b859190613e65565b611b8f9190614078565b611b9a601485613e65565b611ba49085613fa5565b610e589190613e28565b611bd260405180606001604052806060815260200160608152602001606081525090565b6040518060600160405280611bf385856000611bee9190613e28565b6124f6565b8152602001611c0785611bee866001613e28565b8152602001611c1b85611bee866002613e28565b90529392505050565b6060610e586005611c3685600a613ede565b6000878152600d6020526040902054611c4f9190613e65565b611c599190614078565b611c639084613e28565b610d5a565b611c936040518060800160405280600081526020016000815260200160008152602001600081525090565b6000611c9f868661252a565b90506040518060800160405280828152602001611cbe88846001611b53565b8152602001611cd1888885896001612571565b8152602001611ce4888885886002612571565b90529695505050505050565b611d1460405180606001604052806000815260200160008152602001606081525090565b6000828152600d6020526040812054600290611d339061040190613e65565b611d3d9190614078565b611d4990610168613f86565b9050604051806060016040528082815260200182610168611d6a9190613fa5565b8152602001611c1b6019610800600d600089815260200190815260200160002054611d959190613e65565b611d9f9190614078565b611c63906008613e28565b60606103216102008360200151610200611dc49190613fa5565b611dd0906103e8613f86565b611c639190613e65565b602081015181516060919080821115611dfb57610e5882611dc48382613fa5565b610e5881611dc48482613fa5565b6000818152600e602052604090205460609060ff1615611e64576000828152600e6020526040902054611e3e9060ff16610d5a565b604051602001611e4e9190612d4d565b6040516020818303038152906040529050610321565b8251611e8090611e75906064613fa5565b611c63906005613f86565b604051602001611e909190612d4d565b604051602081830303815290604052905092915050565b6060806060806000611ec1866001600160a01b03166125ef565b9050604051806080016040528060438152602001614155604391399350604051806040016040528060038152602001621e339f60e91b815250925080604051602001611f0d9190613150565b6040516020818303038152906040529150838383604051602001611f3393929190612d98565b604051602081830303815290604052945050505050919050565b606080606080606080611f638760200151610d5a565b604051602001611f7391906136af565b6040516020818303038152906040529450611f95876080015160000151610d5a565b611fa6886080015160200151610d5a565b611fb7896080015160400151610d5a565b611fc88a6080015160600151610d5a565b604051602001611fdb94939291906131e0565b60408051601f1981840301815282825260c08a01518051602082810151929094015160e08d015193995061201795919492939092909101613c62565b60405160208183030381529060405291506120398760a0015160000151610d5a565b61204a8860a0015160200151610d5a565b61205b8960a0015160400151610d5a565b61206c8a60a0015160600151610d5a565b85604051602001612081959493929190613386565b60405160208183030381529060405292506120a487610100015160000151610d5a565b6120b688610100015160200151610d5a565b6120c889610100015160400151610d5a565b6120da8a610100015160600151610d5a565b6040516020016120ed94939291906132a7565b6040516020818303038152906040529050848484836040516020016121159493929190612ddb565b60405160208183030381529060405295505050505050919050565b6060806060808461012001516040015161215286610120015160000151610d5a565b61216487610120015160200151610d5a565b604051602001612176939291906135a1565b60408051601f19818403018152828201825260068352651e3232b3399f60d11b60208481019190915282518084018452601b81527f3c72616469616c4772616469656e742069643d22655f315f67223e00000000008183015292519196509294509092506121ea9185918591859101612d98565b6040516020818303038152906040529350505050919050565b6000818152600e60205260408120546060919082908190819060ff1615612263576000868152600e60205260409020546005906122449060ff166064613fbc565b61224e9190613e79565b612259906050613e40565b60ff169350612268565b865193505b60405180606001604052806026815260200161419860269139925061228c84610d5a565b60408089015180516020808301519284015160608d015194516122b5969593949391920161300e565b60408051601f1981840301815260608301909152603880835290935061411d602083013990508282826040516020016122f093929190612d98565b60405160208183030381529060405294505050505092915050565b60408051808201825260118152701e17b930b234b0b623b930b234b2b73a1f60791b6020808301919091528251808401845260078152661e17b232b3399f60c91b818301528351808501855260048152631e17b39f60e11b818401528451808601865260068152651e17b9bb339f60d11b818501529451606095929391929161239c91869186918691869101612ddb565b60405160208183030381529060405294505050505090565b6001600160a01b03821661240a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161042e565b6000818152600260205260409020546001600160a01b03161561246f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161042e565b6001600160a01b0382166000908152600360205260408120805460019290612498908490613e28565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060610e6c60ff6125078482613ede565b6000868152600d60205260409020546125209190613e65565b611c639190614078565b6000612537600383613e65565b6000848152600d602052604090205461255290608090613e65565b61255c9190614078565b612567600284613e65565b610e6c9190613e28565b60008060646125808688613fa5565b61258b906023613f86565b6125959190613e65565b90506125a2816002613f86565b6125ad8460ff613f86565b6000898152600d60205260409020546125c69190613e65565b6125d09190614078565b6125da8286613fa5565b6125e49190613e28565b979650505050505050565b6060816126165750506040805180820190915260048152630307830360e41b602082015290565b8160005b8115612639578061262a8161405d565b915050600882901c915061261a565b610e5884826060600061264d836002613f86565b612658906002613e28565b67ffffffffffffffff811115612670576126706140f0565b6040519080825280601f01601f19166020018201604052801561269a576020820181803683370190505b509050600360fc1b816000815181106126b5576126b56140da565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106126e4576126e46140da565b60200101906001600160f81b031916908160001a9053506000612708846002613f86565b612713906001613e28565b90505b600181111561278b576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612747576127476140da565b1a60f81b82828151811061275d5761275d6140da565b60200101906001600160f81b031916908160001a90535060049490941c936127848161400b565b9050612716565b508315610e6c5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161042e565b8280546127e690614022565b90600052602060002090601f016020900481019282612808576000855561284e565b82601f1061282157805160ff191683800117855561284e565b8280016001018555821561284e579182015b8281111561284e578251825591602001919060010190612833565b5061285a929150612991565b5090565b604051806101400160405280600081526020016000815260200161289c60405180606001604052806060815260200160608152602001606081525090565b8152602001606081526020016128d36040518060800160405280600081526020016000815260200160008152602001600081525090565b81526020016129036040518060800160405280600081526020016000815260200160008152602001600081525090565b815260200161292c60405180606001604052806060815260200160608152602001606081525090565b8152602001606081526020016129636040518060800160405280600081526020016000815260200160008152602001600081525090565b815260200161298c60405180606001604052806000815260200160008152602001606081525090565b905290565b5b8082111561285a5760008155600101612992565b600067ffffffffffffffff808411156129c1576129c16140f0565b604051601f8501601f19908116603f011681019082821181831017156129e9576129e96140f0565b81604052809350858152868686011115612a0257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612a3357600080fd5b919050565b600060208284031215612a4a57600080fd5b610e6c82612a1c565b60008060408385031215612a6657600080fd5b612a6f83612a1c565b9150612a7d60208401612a1c565b90509250929050565b600080600060608486031215612a9b57600080fd5b612aa484612a1c565b9250612ab260208501612a1c565b9150604084013590509250925092565b60008060008060808587031215612ad857600080fd5b612ae185612a1c565b9350612aef60208601612a1c565b925060408501359150606085013567ffffffffffffffff811115612b1257600080fd5b8501601f81018713612b2357600080fd5b612b32878235602084016129a6565b91505092959194509250565b60008060408385031215612b5157600080fd5b612b5a83612a1c565b915060208301358015158114612b6f57600080fd5b809150509250929050565b60008060408385031215612b8d57600080fd5b612b9683612a1c565b946020939093013593505050565b600060208284031215612bb657600080fd5b8135610e6c81614106565b600060208284031215612bd357600080fd5b8151610e6c81614106565b600060208284031215612bf057600080fd5b813567ffffffffffffffff811115612c0757600080fd5b8201601f81018413612c1857600080fd5b610e58848235602084016129a6565b600060208284031215612c3957600080fd5b5035919050565b60008060408385031215612c5357600080fd5b82359150602083013560ff81168114612b6f57600080fd5b60008151808452612c83816020860160208601613fdf565b601f01601f19169290920160200192915050565b60008151612ca9818560208601613fdf565b9290920192915050565b8054600090600181811c9080831680612ccd57607f831692505b6020808410821415612cef57634e487b7160e01b600052602260045260246000fd5b818015612d035760018114612d1457612d41565b60ff19861689528489019650612d41565b60008881526020902060005b86811015612d395781548b820152908501908301612d20565b505084890196505b50505050505092915050565b60008251612d5f818460208701613fdf565b9190910192915050565b60008351612d7b818460208801613fdf565b835190830190612d8f818360208801613fdf565b01949350505050565b60008451612daa818460208901613fdf565b845190830190612dbe818360208901613fdf565b8451910190612dd1818360208801613fdf565b0195945050505050565b60008551612ded818460208a01613fdf565b855190830190612e01818360208a01613fdf565b8551910190612e14818360208901613fdf565b8451910190612e27818360208801613fdf565b019695505050505050565b60008651612e44818460208b01613fdf565b865190830190612e58818360208b01613fdf565b8651910190612e6b818360208a01613fdf565b8551910190612e7e818360208901613fdf565b8451910190612e91818360208801613fdf565b01979650505050505050565b60008551612eaf818460208a01613fdf565b855190830190612ec3818360208a01613fdf565b8551910190612ed6818360208901613fdf565b8451910190612ee9818360208801613fdf565b62089f4b60ea1b91019081526003019695505050505050565b60008251612f14818460208701613fdf565b7f206d696e747320706572206164647265737320697320616c6c6f776564000000920191825250601d01919050565b7f7b226e616d65223a2022626f6e63756b222c20226465736372697074696f6e228152621d101160e91b60208201526000612f816023830186612cb3565b741116101132bc3a32b93730b62fb634b735911d101160591b8152612fe5612fac6015830187612cb3565b7f222c2022696d616765223a2022646174613a696d6167652f7376672b786d6c3b81526618985cd94d8d0b60ca1b602082015260270190565b90508351612ff7818360208801613fdf565b61227d60f01b910190815260020195945050505050565b6d1e39ba37b81037b33339b2ba1e9160911b8152855160009061303881600e850160208b01613fdf565b7304a4440e6e8dee05ac6ded8dee47a44e4cec4c2560631b600e91840191820152865161306c816022840160208b01613fdf565b808201915050600b60fa1b8060228301528651613090816023850160208b01613fdf565b602392019182015284516130ab816024840160208901613fdf565b6216181760e91b6024929091019182015283516130cf816027840160208801613fdf565b6130e8602782840101631491179f60e11b815260040190565b9998505050505050505050565b7f7d2c207b2274726169745f74797065223a2022626f6b656820616c746572656481526c111610113b30b63ab2911d101160991b60208201526000825161314381602d850160208701613fdf565b91909101602d0192915050565b661e3a34ba36329f60c91b815260008251613172816007850160208701613fdf565b671e17ba34ba36329f60c11b6007939091019283015250600f01919050565b7f7b2274726169745f74797065223a2022626f6b6568222c202276616c7565223a8152600160fd1b6020820152600082516131d3816021850160208701613fdf565b9190910160210192915050565b6c1e32b63634b839b290393c9e9160991b8152845160009061320981600d850160208a01613fdf565b651110393c1e9160d11b600d91840191820152855161322f816013840160208a01613fdf565b65111031bc9e9160d11b601392909101918201528451613256816019840160208901613fdf565b65111031bc1e9160d11b60199290910191820152835161327d81601f840160208801613fdf565b6e11103334b6361e9111a3232311179f60891b601f9290910191820152602e019695505050505050565b6c1e32b63634b839b290393c9e9160991b815284516000906132d081600d850160208a01613fdf565b651110393c1e9160d11b600d9184019182015285516132f6816013840160208a01613fdf565b65111031bc9e9160d11b60139290910191820152845161331d816019840160208901613fdf565b65111031bc1e9160d11b60199290910191820152835161334481601f840160208801613fdf565b7f222066696c6c3d22726762612832322c2032342c203135302c20302e3829222f601f9290910191820152601f60f91b603f8201526040019695505050505050565b6c1e32b63634b839b290393c9e9160991b815285516000906133af81600d850160208b01613fdf565b651110393c1e9160d11b600d9184019182015286516133d5816013840160208b01613fdf565b65111031bc9e9160d11b6013929091019182015285516133fc816019840160208a01613fdf565b65111031bc1e9160d11b60199290910191820152845161342381601f840160208901613fdf565b6711103334b6361e9160c11b601f9290910191820152835161344c816027840160208801613fdf565b6130e86027828401016211179f60e91b815260030190565b7f7b2274726169745f74797065223a202266756c6c20726f746174696f6e20746981526d036b2911610113b30b63ab2911d160951b6020820152600083516134b381602e850160208801613fdf565b7f7d2c207b2274726169745f74797065223a2022726f746174696f6e2064697265602e918401918201527131ba34b7b7111610113b30b63ab2911d101160711b604e820152835161350b816060840160208801613fdf565b61227d60f01b60609290910191820152606201949350505050565b605b60f81b815260008551613542816001850160208a01613fdf565b855190830190613559816001840160208a01613fdf565b855191019061356f816001840160208901613fdf565b8451910190613585816001840160208801613fdf565b605d60f81b600192909101918201526002019695505050505050565b7f3c616e696d6174655472616e73666f726d206174747269627574654e616d653d81527f227472616e73666f726d2220626567696e3d22307322206475723d22000000006020820152600084516135ff81603c850160208901613fdf565b7f732220747970653d22726f74617465222066726f6d3d22000000000000000000603c91840191820152845161363c816053840160208901613fdf565b6d101a9899101a989911103a379e9160911b60539290910191820152835161366b816061840160208801613fdf565b7f20353132203531322220726570656174436f756e743d22696e646566696e697460619290910191820152633291179f60e11b608182015260850195945050505050565b751e32b63634b839b290393c9e911a98991110393c1e9160511b815281516000906136e1816016850160208701613fdf565b7f222063793d22353132222063783d22353132222066696c6c3d2275726c2823656016939091019283015250672f98afb39491179f60c11b6036820152603e01919050565b7f7b2274726169745f74797065223a20226579652073697a65222c202276616c75815263032911d160e51b60208201526000845161376b816024850160208901613fdf565b7f7d2c207b2274726169745f74797065223a2022697269732073697a65222c20226024918401918201526703b30b63ab2911d160c51b604482015284516137b981604c840160208901613fdf565b7f7d2c20207b2274726169745f74797065223a2022707570696c2073697a65222c604c929091019182015269010113b30b63ab2911d160b51b606c820152835161380a816076840160208801613fdf565b611f4b60f21b6076929091019182015260780195945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161385e81601d850160208701613fdf565b91909101601d0192915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516138a381601d850160208701613fdf565b602360f81b601d939091019283015250601e01919050565b7f7b2274726169745f74797065223a2022657965206c696420636f6c6f7220726581526c032111610113b30b63ab2911d1609d1b60208201526000855161390981602d850160208a01613fdf565b7f7d2c207b2274726169745f74797065223a2022657965206c696420636f6c6f72602d9184019182018190527101033b932b2b7111610113b30b63ab2911d160751b604d830152865161396381605f850160208b01613fdf565b605f92019182018190527001031363ab2911610113b30b63ab2911d1607d1b607f830152855161399a816090850160208a01613fdf565b60909201918201527f207472616e73706172656e6379222c202276616c7565223a200000000000000060b08201526125e46139d860c9830186612c97565b620c1f4b60ea1b815260030190565b64037b7363c960dd1b815260008251613a07816005850160208701613fdf565b7f206f66207468656d2077696c6c206576657220657869737400000000000000006005939091019283015250601d01919050565b6e03d9130ba3a3934b13aba32b9911d1608d1b81528551600090613a6681600f850160208b01613fdf565b722c20226e616d65223a2022626f6e63756b202360681b600f918401918201528651613a99816022840160208b01613fdf565b72111610113232b9b1b934b83a34b7b7111d101160691b60229290910191820152613ac76035820187612cb3565b731116101132bc3a32b93730b62fbab936111d101160611b81529050613af3612fac6014830187612cb3565b90508351613b05818360208801613fdf565b61227d60f01b9101908152600201979650505050505050565b7f7b2274726169745f74797065223a202265796520736f636b657420776172702281526a01610113b30b63ab2911d160ad1b602082015260008551613b6a81602b850160208a01613fdf565b7f7d2c207b2274726169745f74797065223a20226579652077617270222c202276602b9184019182015266030b63ab2911d160cd1b604b8201528551613bb7816052840160208a01613fdf565b7f7d2c207b2274726169745f74797065223a2022697269732077617270222c2022605292909101918201526703b30b63ab2911d160c51b60728201528451613c0681607a840160208901613fdf565b7f7d2c207b2274726169745f74797065223a2022707570696c2077617270222c20607a9290910191820152680113b30b63ab2911d160bd1b609a8201526125e4613c5360a3830186612c97565b6203e96160ed1b815260030190565b640e4cec4c2560db1b815260008551613c82816005850160208a01613fdf565b8083019050600b60fa1b8060058301528651613ca5816006850160208b01613fdf565b60069201918201528451613cc0816007840160208901613fdf565b6216181760e91b600792909101918201528351613ce481600a840160208801613fdf565b602960f81b600a9290910191820152600b019695505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613d3390830184612c6b565b9695505050505050565b602081526000610e6c6020830184612c6b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115613e3b57613e3b6140ae565b500190565b600060ff821660ff84168060ff03821115613e5d57613e5d6140ae565b019392505050565b600082613e7457613e746140c4565b500490565b600060ff831680613e8c57613e8c6140c4565b8060ff84160491505092915050565b600181815b80851115613ed6578160001904821115613ebc57613ebc6140ae565b80851615613ec957918102915b93841c9390800290613ea0565b509250929050565b6000610e6c8383600082613ef457506001610321565b81613f0157506000610321565b8160018114613f175760028114613f2157613f3d565b6001915050610321565b60ff841115613f3257613f326140ae565b50506001821b610321565b5060208310610133831016604e8410600b8410161715613f60575081810a610321565b613f6a8383613e9b565b8060001904821115613f7e57613f7e6140ae565b029392505050565b6000816000190483118215151615613fa057613fa06140ae565b500290565b600082821015613fb757613fb76140ae565b500390565b600060ff821660ff841680821015613fd657613fd66140ae565b90039392505050565b60005b83811015613ffa578181015183820152602001613fe2565b83811115610a745750506000910152565b60008161401a5761401a6140ae565b506000190190565b600181811c9082168061403657607f821691505b6020821081141561405757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415614071576140716140ae565b5060010190565b600082614087576140876140c4565b500690565b600060ff83168061409f5761409f6140c4565b8060ff84160691505092915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d5757600080fdfe3c73746f70206f66667365743d2231303025222073746f702d636f6c6f723d2272676261283235352c3235352c3235352c302e3129222f3e3c7376672077696474683d223130323422206865696768743d22313032342220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e3c73746f70206f66667365743d22333025222073746f702d636f6c6f723d2223303030222f3e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212203c94499a4f118c6060296d6c13b4107ee2e69b01fe908a20badea4ae8df2972664736f6c63430008070033

Deployed Bytecode Sourcemap

47296:16367:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62982:211;;;;;;:::i;:::-;;:::i;:::-;;;38131:14:1;;38124:22;38106:41;;38094:2;38079:18;62982:211:0;;;;;;;;47527:27;;;;;;;;;46340:25:1;;;46328:2;46313:18;47527:27:0;46194:177:1;35968:100:0;;;:::i;:::-;;;;;;;:::i;37527:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;37429:32:1;;;37411:51;;37399:2;37384:18;37527:221:0;37265:203:1;37050:411:0;;;;;;:::i;:::-;;:::i;:::-;;49043:509;;;:::i;38417:339::-;;;;;;:::i;:::-;;:::i;48236:139::-;;;;;;:::i;:::-;;:::i;38827:185::-;;;;;;:::i;:::-;;:::i;47594:27::-;;;:::i;35662:239::-;;;;;;:::i;:::-;;:::i;35392:208::-;;;;;;:::i;:::-;;:::i;16654:94::-;;;:::i;16003:87::-;16076:6;;-1:-1:-1;;;;;16076:6:0;16003:87;;48092:138;;;;;;:::i;:::-;;:::i;36137:104::-;;;:::i;37820:295::-;;;;;;:::i;:::-;;:::i;39083:328::-;;;;;;:::i;:::-;;:::i;61280:901::-;;;;;;:::i;:::-;;:::i;48381:243::-;;;;;;:::i;:::-;;:::i;47561:26::-;;;:::i;62229:663::-;;;:::i;38186:164::-;;;;;;:::i;:::-;;:::i;16903:192::-;;;;;;:::i;:::-;;:::i;62982:211::-;63120:4;63149:36;63173:11;63149:23;:36::i;:::-;63142:43;62982:211;-1:-1:-1;;62982:211:0:o;35968:100::-;36022:13;36055:5;36048:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35968:100;:::o;37527:221::-;37603:7;41010:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41010:16:0;37623:73;;;;-1:-1:-1;;;37623:73:0;;42907:2:1;37623:73:0;;;42889:21:1;42946:2;42926:18;;;42919:30;42985:34;42965:18;;;42958:62;-1:-1:-1;;;43036:18:1;;;43029:42;43088:19;;37623:73:0;;;;;;;;;-1:-1:-1;37716:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37716:24:0;;37527:221::o;37050:411::-;37131:13;37147:23;37162:7;37147:14;:23::i;:::-;37131:39;;37195:5;-1:-1:-1;;;;;37189:11:0;:2;-1:-1:-1;;;;;37189:11:0;;;37181:57;;;;-1:-1:-1;;;37181:57:0;;44507:2:1;37181:57:0;;;44489:21:1;44546:2;44526:18;;;44519:30;44585:34;44565:18;;;44558:62;-1:-1:-1;;;44636:18:1;;;44629:31;44677:19;;37181:57:0;44305:397:1;37181:57:0;14871:10;-1:-1:-1;;;;;37273:21:0;;;;:62;;-1:-1:-1;37298:37:0;37315:5;14871:10;38186:164;:::i;37298:37::-;37251:168;;;;-1:-1:-1;;;37251:168:0;;41300:2:1;37251:168:0;;;41282:21:1;41339:2;41319:18;;;41312:30;41378:34;41358:18;;;41351:62;41449:26;41429:18;;;41422:54;41493:19;;37251:168:0;41098:420:1;37251:168:0;37432:21;37441:2;37445:7;37432:8;:21::i;:::-;37120:341;37050:411;;:::o;49043:509::-;11151:1;11747:7;;:19;;11739:63;;;;-1:-1:-1;;;11739:63:0;;46036:2:1;11739:63:0;;;46018:21:1;46075:2;46055:18;;;46048:30;46114:33;46094:18;;;46087:61;46165:18;;11739:63:0;45834:355:1;11739:63:0;11151:1;11880:7;:18;49100:10:::1;49114:9;49100:23;49092:32;;;::::0;::::1;;49166:10;::::0;49143:12:::1;::::0;:19:::1;::::0;49160:1:::1;49143:16;:19::i;:::-;:33;;49211:21;:10;;:19;:21::i;:::-;49185:76;;;;;;;;:::i;:::-;;;;;;;;;;;;;49135:128;;;;;-1:-1:-1::0;;;49135:128:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;48058:20:0;;49290:10:::1;48014:4:::0;48037:17;;;:8;:17;;;;;;;;:41;;49282:28:::1;::::0;49336:31:::1;::::0;:29:::1;:31::i;:::-;49319:82;;;;;;;;:::i;:::-;;;;;;;;;;;;;49274:129;;;;;-1:-1:-1::0;;;49274:129:0::1;;;;;;;;:::i;:::-;;49414:17;49420:10;49414:5;:17::i;:::-;49487:1;49472:12:::0;::::1;:16;;;;:::i;:::-;49492:1;49472:21;49468:77;;;49510:23;49524:7;16076:6:::0;;-1:-1:-1;;;;;16076:6:0;;16003:87;49524:7:::1;49510:5;:23::i;:::-;11107:1:::0;12059:7;:22;49043:509::o;38417:339::-;38612:41;14871:10;38645:7;38612:18;:41::i;:::-;38604:103;;;;-1:-1:-1;;;38604:103:0;;;;;;;:::i;:::-;38720:28;38730:4;38736:2;38740:7;38720:9;:28::i;48236:139::-;16076:6;;-1:-1:-1;;;;;16076:6:0;14871:10;16223:23;16215:68;;;;-1:-1:-1;;;16215:68:0;;;;;;;:::i;:::-;48314:10:::1;48328:9;48314:23;48306:32;;;::::0;::::1;;48349:18:::0;;::::1;::::0;:13:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48236:139:::0;:::o;38827:185::-;38965:39;38982:4;38988:2;38992:7;38965:39;;;;;;;;;;;;:16;:39::i;47594:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35662:239::-;35734:7;35770:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35770:16:0;35805:19;35797:73;;;;-1:-1:-1;;;35797:73:0;;42136:2:1;35797:73:0;;;42118:21:1;42175:2;42155:18;;;42148:30;42214:34;42194:18;;;42187:62;-1:-1:-1;;;42265:18:1;;;42258:39;42314:19;;35797:73:0;41934:405:1;35392:208:0;35464:7;-1:-1:-1;;;;;35492:19:0;;35484:74;;;;-1:-1:-1;;;35484:74:0;;41725:2:1;35484:74:0;;;41707:21:1;41764:2;41744:18;;;41737:30;41803:34;41783:18;;;41776:62;-1:-1:-1;;;41854:18:1;;;41847:40;41904:19;;35484:74:0;41523:406:1;35484:74:0;-1:-1:-1;;;;;;35576:16:0;;;;;:9;:16;;;;;;;35392:208::o;16654:94::-;16076:6;;-1:-1:-1;;;;;16076:6:0;14871:10;16223:23;16215:68;;;;-1:-1:-1;;;16215:68:0;;;;;;;:::i;:::-;16719:21:::1;16737:1;16719:9;:21::i;:::-;16654:94::o:0;48092:138::-;16076:6;;-1:-1:-1;;;;;16076:6:0;14871:10;16223:23;16215:68;;;;-1:-1:-1;;;16215:68:0;;;;;;;:::i;:::-;48170:10:::1;48184:9;48170:23;48162:32;;;::::0;::::1;;48205:17:::0;;::::1;::::0;:12:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;36137:104::-:0;36193:13;36226:7;36219:14;;;;;:::i;37820:295::-;-1:-1:-1;;;;;37923:24:0;;14871:10;37923:24;;37915:62;;;;-1:-1:-1;;;37915:62:0;;40533:2:1;37915:62:0;;;40515:21:1;40572:2;40552:18;;;40545:30;40611:27;40591:18;;;40584:55;40656:18;;37915:62:0;40331:349:1;37915:62:0;14871:10;37990:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37990:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37990:53:0;;;;;;;;;;38059:48;;38106:41:1;;;37990:42:0;;14871:10;38059:48;;38079:18:1;38059:48:0;;;;;;;37820:295;;:::o;39083:328::-;39258:41;14871:10;39291:7;39258:18;:41::i;:::-;39250:103;;;;-1:-1:-1;;;39250:103:0;;;;;;;:::i;:::-;39364:39;39378:4;39384:2;39388:7;39397:5;39364:13;:39::i;:::-;39083:328;;;;:::o;61280:901::-;61384:13;61415:18;61430:2;61415:14;:18::i;:::-;;61582:531;61680:17;61694:2;61680:13;:17::i;:::-;61751:13;:2;:11;:13::i;:::-;61818:12;61885:13;62001:18;62016:2;62001:14;:18::i;:::-;61614:467;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61582:529;:531::i;:::-;61489:669;;;;;;;;:::i;:::-;;;;;;;;;;;;;61444:729;;61280:901;;;:::o;48381:243::-;11151:1;11747:7;;:19;;11739:63;;;;-1:-1:-1;;;11739:63:0;;46036:2:1;11739:63:0;;;46018:21:1;46075:2;46055:18;;;46048:30;46114:33;46094:18;;;46087:61;46165:18;;11739:63:0;45834:355:1;11739:63:0;11151:1;11880:7;:18;48472:10:::1;48457:11;48465:2:::0;48457:7:::1;:11::i;:::-;-1:-1:-1::0;;;;;48457:25:0::1;;48449:58;;;::::0;-1:-1:-1;;;48449:58:0;;45687:2:1;48449:58:0::1;::::0;::::1;45669:21:1::0;45726:2;45706:18;;;45699:30;-1:-1:-1;;;45745:18:1;;;45738:50;45805:18;;48449:58:0::1;45485:344:1::0;48449:58:0::1;48531:1;48526:2;:6;;;:18;;;;;48541:3;48536:2;:8;;;48526:18;48518:62;;;::::0;-1:-1:-1;;;48518:62:0;;44909:2:1;48518:62:0::1;::::0;::::1;44891:21:1::0;44948:2;44928:18;;;44921:30;44987:33;44967:18;;;44960:61;45038:18;;48518:62:0::1;44707:355:1::0;48518:62:0::1;48608:8;48613:3;48608:2:::0;:8:::1;:::i;:::-;48591:14;::::0;;;:10:::1;:14;::::0;;;;;:25;;-1:-1:-1;;48591:25:0::1;;::::0;;::::1;::::0;;;::::1;::::0;;;-1:-1:-1;;12059:7:0;:22;48381:243::o;47561:26::-;;;;;;;:::i;62229:663::-;62273:13;62437:413;62555:12;62623:13;62739:17;62754:1;62739:14;:17::i;:::-;62469:349;;;;;;;;;;:::i;62437:413::-;62344:525;;;;;;;;:::i;:::-;;;;;;;;;;;;;62299:585;;62229:663;:::o;38186:164::-;-1:-1:-1;;;;;38307:25:0;;;38283:4;38307:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38186:164::o;16903:192::-;16076:6;;-1:-1:-1;;;;;16076:6:0;14871:10;16223:23;16215:68;;;;-1:-1:-1;;;16215:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16992:22:0;::::1;16984:73;;;::::0;-1:-1:-1;;;16984:73:0;;39364:2:1;16984:73:0::1;::::0;::::1;39346:21:1::0;39403:2;39383:18;;;39376:30;39442:34;39422:18;;;39415:62;-1:-1:-1;;;39493:18:1;;;39486:36;39539:19;;16984:73:0::1;39162:402:1::0;16984:73:0::1;17068:19;17078:8;17068:9;:19::i;:::-;16903:192:::0;:::o;12407:723::-;12463:13;12684:10;12680:53;;-1:-1:-1;;12711:10:0;;;;;;;;;;;;-1:-1:-1;;;12711:10:0;;;;;12407:723::o;12680:53::-;12758:5;12743:12;12799:78;12806:9;;12799:78;;12832:8;;;;:::i;:::-;;-1:-1:-1;12855:10:0;;-1:-1:-1;12863:2:0;12855:10;;:::i;:::-;;;12799:78;;;12887:19;12919:6;12909:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12909:17:0;;12887:39;;12937:154;12944:10;;12937:154;;12971:11;12981:1;12971:11;;:::i;:::-;;-1:-1:-1;13040:10:0;13048:2;13040:5;:10;:::i;:::-;13027:24;;:2;:24;:::i;:::-;13014:39;;12997:6;13004;12997:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;12997:56:0;;;;;;;;-1:-1:-1;13068:11:0;13077:2;13068:11;;:::i;:::-;;;12937:154;;;13115:6;12407:723;-1:-1:-1;;;;12407:723:0:o;5239:98::-;5297:7;5324:5;5328:1;5324;:5;:::i;:::-;5317:12;5239:98;-1:-1:-1;;;5239:98:0:o;18049:387::-;18372:20;18420:8;;;18049:387::o;35023:305::-;35125:4;-1:-1:-1;;;;;;35162:40:0;;-1:-1:-1;;;35162:40:0;;:105;;-1:-1:-1;;;;;;;35219:48:0;;-1:-1:-1;;;35219:48:0;35162:105;:158;;;-1:-1:-1;;;;;;;;;;28100:40:0;;;35284:36;27991:157;44903:174;44978:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;44978:29:0;-1:-1:-1;;;;;44978:29:0;;;;;;;;:24;;45032:23;44978:24;45032:14;:23::i;:::-;-1:-1:-1;;;;;45023:46:0;;;;;;;;;;;44903:174;;:::o;48793:242::-;16076:6;;-1:-1:-1;;;;;48844:14:0;;;16076:6;;48844:14;48840:60;;48874:14;48884:3;48874:9;:14::i;:::-;48925:12;;:19;;48942:1;48925:16;:19::i;:::-;48910:12;:34;48980:8;:6;:8::i;:::-;48964:12;;;48955:22;;;;:8;:22;;;;;:33;;;;49014:12;48999:28;;49009:3;;48999:9;:28::i;41215:348::-;41308:4;41010:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41010:16:0;41325:73;;;;-1:-1:-1;;;41325:73:0;;40887:2:1;41325:73:0;;;40869:21:1;40926:2;40906:18;;;40899:30;40965:34;40945:18;;;40938:62;-1:-1:-1;;;41016:18:1;;;41009:42;41068:19;;41325:73:0;40685:408:1;41325:73:0;41409:13;41425:23;41440:7;41425:14;:23::i;:::-;41409:39;;41478:5;-1:-1:-1;;;;;41467:16:0;:7;-1:-1:-1;;;;;41467:16:0;;:51;;;;41511:7;-1:-1:-1;;;;;41487:31:0;:20;41499:7;41487:11;:20::i;:::-;-1:-1:-1;;;;;41487:31:0;;41467:51;:87;;;;41522:32;41539:5;41546:7;41522:16;:32::i;44207:578::-;44366:4;-1:-1:-1;;;;;44339:31:0;:23;44354:7;44339:14;:23::i;:::-;-1:-1:-1;;;;;44339:31:0;;44331:85;;;;-1:-1:-1;;;44331:85:0;;43681:2:1;44331:85:0;;;43663:21:1;43720:2;43700:18;;;43693:30;43759:34;43739:18;;;43732:62;-1:-1:-1;;;43810:18:1;;;43803:39;43859:19;;44331:85:0;43479:405:1;44331:85:0;-1:-1:-1;;;;;44435:16:0;;44427:65;;;;-1:-1:-1;;;44427:65:0;;40128:2:1;44427:65:0;;;40110:21:1;40167:2;40147:18;;;40140:30;40206:34;40186:18;;;40179:62;-1:-1:-1;;;40257:18:1;;;40250:34;40301:19;;44427:65:0;39926:400:1;44427:65:0;44609:29;44626:1;44630:7;44609:8;:29::i;:::-;-1:-1:-1;;;;;44651:15:0;;;;;;:9;:15;;;;;:20;;44670:1;;44651:15;:20;;44670:1;;44651:20;:::i;:::-;;;;-1:-1:-1;;;;;;;44682:13:0;;;;;;:9;:13;;;;;:18;;44699:1;;44682:13;:18;;44699:1;;44682:18;:::i;:::-;;;;-1:-1:-1;;44711:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;44711:21:0;-1:-1:-1;;;;;44711:21:0;;;;;;;;;44750:27;;44711:16;;44750:27;;;;;;;44207:578;;;:::o;17103:173::-;17178:6;;;-1:-1:-1;;;;;17195:17:0;;;-1:-1:-1;;;;;;17195:17:0;;;;;;;17228:40;;17178:6;;;17195:17;17178:6;;17228:40;;17159:16;;17228:40;17148:128;17103:173;:::o;40293:315::-;40450:28;40460:4;40466:2;40470:7;40450:9;:28::i;:::-;40497:48;40520:4;40526:2;40530:7;40539:5;40497:22;:48::i;:::-;40489:111;;;;-1:-1:-1;;;40489:111:0;;;;;;;:::i;36312:334::-;40986:4;41010:16;;;:7;:16;;;;;;36385:13;;-1:-1:-1;;;;;41010:16:0;36411:76;;;;-1:-1:-1;;;36411:76:0;;44091:2:1;36411:76:0;;;44073:21:1;44130:2;44110:18;;;44103:30;44169:34;44149:18;;;44142:62;-1:-1:-1;;;44220:18:1;;;44213:45;44275:19;;36411:76:0;43889:411:1;36411:76:0;36500:21;36524:10;36971:9;;;;;;;;;-1:-1:-1;36971:9:0;;;36894:94;36524:10;36500:34;;36576:1;36558:7;36552:21;:25;:86;;;;;;;;;;;;;;;;;36604:7;36613:18;:7;:16;:18::i;:::-;36587:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36545:93;36312:334;-1:-1:-1;;;36312:334:0:o;60988:250::-;61069:13;61100:21;61124:14;61135:2;61124:10;:14::i;:::-;61100:38;;61185:7;61189:2;61185:3;:7::i;:::-;61194;61198:2;61194:3;:7::i;:::-;61203:11;61207:2;61211;61203:3;:11::i;:::-;61216:7;61220:2;61216:3;:7::i;:::-;61163:66;;;;;;;;;;;:::i;56960:148::-;57015:13;57055:44;57078:10;57085:2;57078:6;:10::i;:::-;57061:28;;;;;;;;:::i;405:2037::-;463:13;493:4;:11;508:1;493:16;489:31;;;-1:-1:-1;;511:9:0;;;;;;;;;-1:-1:-1;511:9:0;;;405:2037::o;489:31::-;580:19;602:5;;;;;;;;;;;;;;;;;580:27;;659:18;705:1;686:4;:11;700:1;686:15;;;;:::i;:::-;685:21;;;;:::i;:::-;680:27;;:1;:27;:::i;:::-;659:48;-1:-1:-1;790:20:0;824:15;659:48;837:2;824:15;:::i;:::-;813:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;813:27:0;;790:50;;937:10;929:6;922:26;1044:1;1037:5;1033:13;1115:4;1166;1160:11;1151:7;1147:25;1274:2;1266:6;1262:15;1359:810;1378:6;1369:7;1366:19;1359:810;;;1444:1;1431:15;;;1525:14;;1678:4;1666:2;1662:14;;;1658:25;;1644:40;;1638:47;1633:3;1629:57;;;1611:76;;1806:2;1802:14;;;1798:25;;1784:40;;1778:47;1769:57;;1732:1;1717:17;;1751:76;1947:1;1942:14;;;1938:25;;1924:40;;1918:47;1909:57;;1857:17;;;1891:76;2078:25;;2064:40;;2058:47;2049:57;;1997:17;;;2031:76;;;;2137:17;;1359:810;;;2254:1;2247:4;2241:11;2237:19;2275:1;2270:54;;;;2343:1;2338:52;;;;2230:160;;2270:54;-1:-1:-1;;;;;2286:17:0;;2279:43;2270:54;;2338:52;-1:-1:-1;;;;;2354:17:0;;2347:41;2230:160;-1:-1:-1;2428:6:0;;405:2037;-1:-1:-1;;;;;;;;405:2037:0:o;47848:104::-;-1:-1:-1;;;;;47923:17:0;;;;;;:8;:17;;;;;;:21;;:17;;;:21;:::i;:::-;-1:-1:-1;;;;;47903:17:0;;;;;;;;:8;:17;;;;;:41;;-1:-1:-1;;47903:41:0;;;;;;;;;;;47848:104::o;48636:149::-;48676:7;48738:10;48750:8;:24;48772:1;48759:12;;:14;;;;:::i;:::-;48750:24;;;;;;;;;;;;48721:54;;;;;;;;6726:2:1;6722:15;;;;-1:-1:-1;;6718:53:1;6706:66;;6797:2;6788:12;;6781:28;6834:2;6825:12;;6549:294;48721:54:0;;;;;;;;;;;;;48711:65;;;;;;48703:74;;48696:81;;48636:149;:::o;41905:110::-;41981:26;41991:2;41995:7;41981:26;;;;;;;;;;;;:9;:26::i;45642:799::-;45797:4;-1:-1:-1;;;;;45818:13:0;;18372:20;18420:8;45814:620;;45854:72;;-1:-1:-1;;;45854:72:0;;-1:-1:-1;;;;;45854:36:0;;;;;:72;;14871:10;;45905:4;;45911:7;;45920:5;;45854:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45854:72:0;;;;;;;;-1:-1:-1;;45854:72:0;;;;;;;;;;;;:::i;:::-;;;45850:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46096:13:0;;46092:272;;46139:60;;-1:-1:-1;;;46139:60:0;;;;;;;:::i;46092:272::-;46314:6;46308:13;46299:6;46295:2;46291:15;46284:38;45850:529;-1:-1:-1;;;;;;45977:51:0;-1:-1:-1;;;45977:51:0;;-1:-1:-1;45970:58:0;;45814:620;-1:-1:-1;46418:4:0;45642:799;;;;;;:::o;51852:674::-;51903:18;;:::i;:::-;51934:7;51944;51948:2;51944:3;:7::i;:::-;51934:17;;51962:12;51977:17;51983:2;51987:3;51992:1;51977:5;:17::i;:::-;51962:32;;52005:16;52024:10;52028:2;52032:1;52024:3;:10::i;:::-;52005:29;;52045:21;52069:15;52075:2;52079:1;52082;52069:5;:15::i;:::-;52045:39;;52095:14;52112:24;52118:2;52122:3;52127;52132;52112:5;:24::i;:::-;52095:41;;52147:14;52164:36;52170:2;52174:3;:7;;;52183:3;:7;;;52192:3;:7;;;52164:5;:36::i;:::-;52147:53;;52211:16;52230:10;52234:2;52238:1;52230:3;:10::i;:::-;52211:29;;52251:21;52275:15;52281:2;52285:1;52288;52275:5;:15::i;:::-;52251:39;;52301:14;52318:36;52324:2;52328:3;:7;;;52337:3;:7;;;52346:3;:7;;;52318:5;:36::i;:::-;52301:53;;52365:13;52381:9;52387:2;52381:5;:9::i;:::-;52424:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52424:75:0;;;;;51852:674;-1:-1:-1;;51852:674:0:o;57679:549::-;57737:13;57890:7;57894:2;57890:3;:7::i;:::-;57976:11;57980:2;:6;;;57976:3;:11::i;:::-;58067;58071:2;:6;;;58067:3;:11::i;:::-;58159;58163:2;:6;;;58159:3;:11::i;:::-;57791:418;;;;;;;;;;;:::i;58236:486::-;58294:13;58440:21;:2;:6;;;:10;;;:19;:21::i;:::-;58541;:2;:6;;;:10;;;:19;:21::i;:::-;58644;:2;:6;;;:10;;;:19;:21::i;:::-;58348:355;;;;;;;;;;:::i;59021:1491::-;59088:13;59114:17;59142;59170;59198;59226:19;59350:2;:8;;;:11;;;59417:2;:8;;;:11;;;59483:2;:8;;;:11;;;59557:2;:10;;;59284:291;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;59284:291:0;;;;;;;;;59692:8;;;;:11;;59284:291;59759:11;;;;59825;;;;;59899:10;;;;59284:291;;-1:-1:-1;59626:291:0;;59692:11;;59759;;59825;;59899:10;;59626:291;;:::i;:::-;;;;;;;;;;;;;59613:305;;60025:11;60029:2;60033;60025:3;:11::i;:::-;59971:66;;;;;;;;:::i;:::-;;;;-1:-1:-1;;59971:66:0;;;;;;;;;60078:14;;;;:10;59971:66;60078:14;;;59971:66;;-1:-1:-1;60078:14:0;;60075:125;;-1:-1:-1;60118:12:0;;;;;;;;;;;;-1:-1:-1;;;60118:12:0;;;;60075:125;;;-1:-1:-1;60171:13:0;;;;;;;;;;;;-1:-1:-1;;;60171:13:0;;;;60075:125;60293:5;60227:72;;;;;;;;:::i;:::-;;;;;;;;;;;;;60214:86;;60385:3;60407;60429;60451;60350:143;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60322:182;;;;;;;59021:1491;;;;:::o;60520:420::-;60734:5;;;;:9;;;;60833;;60578:13;;60734:9;60833:14;:50;;;;;;;;;;;;;;;-1:-1:-1;;;60833:50:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;60833:50:0;;;;60632:289;;;;;;;;;:::i;56609:309::-;56656:13;56682:21;56706:14;56717:2;56706:10;:14::i;:::-;56682:38;;56776:18;56782:11;56790:2;56782:7;:11::i;:::-;56776:5;:18::i;:::-;56809:13;56819:2;56809:9;:13::i;:::-;56837:11;56845:2;56837:7;:11::i;:::-;56863;56867:2;56871;56863:3;:11::i;:::-;56889:9;:7;:9::i;:::-;56745:164;;;;;;;;;;;;:::i;42242:321::-;42372:18;42378:2;42382:7;42372:5;:18::i;:::-;42423:54;42454:1;42458:2;42462:7;42471:5;42423:22;:54::i;:::-;42401:154;;;;-1:-1:-1;;;42401:154:0;;;;;;;:::i;51707:107::-;51751:4;51781:12;;;:8;:12;;;;;;51804:2;;51781:19;;51796:4;;51781:19;:::i;:::-;51780:26;;;;:::i;:::-;51775:31;;:2;:31;:::i;50465:153::-;50529:4;50600:7;50605:2;50600;:7;:::i;:::-;50594:14;;:2;:14;:::i;:::-;50572:12;;;;:8;:12;;50587:2;50572:12;;;;;:17;;50587:2;50572:17;:::i;:::-;50571:38;;;;:::i;:::-;50559:7;50564:2;50559;:7;:::i;:::-;50553:14;;:2;:14;:::i;:::-;:57;;;;:::i;50299:154::-;50352:10;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;50352:10:0;50382:63;;;;;;;;50386:18;50391:2;50400;50396:1;:6;;;;:::i;:::-;50386:4;:18::i;:::-;50382:63;;;;50406:18;50411:2;50416:6;50420:2;50416:1;:6;:::i;50406:18::-;50382:63;;;;50426:18;50431:2;50436:6;50440:2;50436:1;:6;:::i;50426:18::-;50382:63;;50375:70;50299:154;-1:-1:-1;;;50299:154:0:o;51543:152::-;51607:13;51640:47;51674:1;51662:8;51668:2;51662;:8;:::i;:::-;51647:12;;;;:8;:12;;;;;;:23;;;;:::i;:::-;51646:29;;;;:::i;:::-;51641:34;;:2;:34;:::i;:::-;51640:45;:47::i;51006:309::-;51089:10;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51089:10:0;51112:9;51124:15;51130:2;51134:4;51124:5;:15::i;:::-;51112:27;;51157:150;;;;;;;;51175:4;51157:150;;;;51194:18;51200:2;51204:4;51210:1;51194:5;:18::i;:::-;51157:150;;;;51227:32;51233:2;51237:4;51243;51249:6;51257:1;51227:5;:32::i;:::-;51157:150;;;;51274:32;51280:2;51284:4;51290;51296:6;51304:1;51274:5;:32::i;:::-;51157:150;;51150:157;51006:309;-1:-1:-1;;;;;;51006:309:0:o;51327:204::-;51373:10;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;51373:10:0;51396:7;51414:12;;;:8;:12;;;;;;51437:1;;51414:19;;51429:4;;51414:19;:::i;:::-;51413:25;;;;:::i;:::-;51406:33;;:3;:33;:::i;:::-;51396:43;;51457:66;;;;;;;;51461:2;51457:66;;;;51472:2;51466:3;:8;;;;:::i;:::-;51457:66;;;;51477:45;51507:2;51499:4;51484:8;:12;51493:2;51484:12;;;;;;;;;;;;:19;;;;:::i;:::-;51483:26;;;;:::i;:::-;51478:32;;:1;:32;:::i;57162:145::-;57220:13;57253:46;57284:3;57269:2;:10;;;57263:3;:16;;;;:::i;:::-;57255:25;;:4;:25;:::i;:::-;57254:33;;;;:::i;57315:356::-;57405:8;;;;57436;;57367:13;;57405:8;57459:11;;;57455:125;;;57494:74;57552:4;57522:11;57529:4;57552;57522:11;:::i;57455:125::-;57597:66;57647:4;57621:11;57628:4;57647;57621:11;:::i;58730:283::-;58826:14;;;;:10;:14;;;;;;58797:13;;58826:14;;:19;58823:109;;58893:14;;;;:10;:14;;;;;;:25;;:14;;:23;:25::i;:::-;58876:43;;;;;;;;:::i;:::-;;;;;;;;;;;;;58862:58;;;;58823:109;58981:5;;58973:30;;58975:11;;:3;:11;:::i;:::-;58974:17;;58990:1;58974:17;:::i;58973:30::-;58956:48;;;;;;;;:::i;:::-;;;;;;;;;;;;;58942:63;;58730:283;;;;:::o;52567:469::-;52616:13;52642:16;52669;52696;52723;52742:25;52750:2;-1:-1:-1;;;;;52742:23:0;;:25::i;:::-;52723:44;;52793:74;;;;;;;;;;;;;;;;;;;52882:10;;;;;;;;;;;;;-1:-1:-1;;;52882:10:0;;;;;52947:2;52919:43;;;;;;;;:::i;:::-;;;;;;;;;;;;;52907:56;;53016:2;53020;53024;52999:28;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52985:43;;;;;;52567:469;;;:::o;53044:1687::-;53108:13;53134:18;53163;53192;53221:20;53252:18;53353:21;:2;:10;;;:19;:21::i;:::-;53310:109;;;;;;;;:::i;:::-;;;;;;;;;;;;;53296:124;;53544:21;:2;:6;;;:10;;;:19;:21::i;:::-;53598;:2;:6;;;:10;;;:19;:21::i;:::-;53652;:2;:6;;;:10;;;:19;:21::i;:::-;53706;:2;:6;;;:10;;;:19;:21::i;:::-;53489:279;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;53489:279:0;;;;;;;;;53848:8;;;;:11;;53489:279;53866:11;;;;53884;;;;;53904:10;;;;53489:279;;-1:-1:-1;53822:97:0;;53848:11;;53866;;53884;;53904:10;;53822:97;;:::i;:::-;;;;;;;;;;;;;53806:114;;54045:21;:2;:6;;;:10;;;:19;:21::i;:::-;54099;:2;:6;;;:10;;;:19;:21::i;:::-;54153;:2;:6;;;:10;;;:19;:21::i;:::-;54207;:2;:6;;;:10;;;:19;:21::i;:::-;54263:6;53989:288;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53957:321;;54403:21;:2;:6;;;:10;;;:19;:21::i;:::-;54457;:2;:6;;;:10;;;:19;:21::i;:::-;54511;:2;:6;;;:10;;;:19;:21::i;:::-;54565;:2;:6;;;:10;;;:19;:21::i;:::-;54347:298;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54315:331;;54699:4;54705;54711;54717;54682:40;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54668:55;;;;;;;53044:1687;;;:::o;54739:636::-;54801:13;54827:16;54854:17;54882:18;55059:2;:5;;;:9;;;55118:20;:2;:5;;;:9;;;:18;:20::i;:::-;55158;:2;:5;;;:9;;;:18;:20::i;:::-;54956:263;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;54956:263:0;;;;;;55235:14;;;;;;;;-1:-1:-1;;;54956:263:0;55235:14;;;;;;;55263:36;;;;;;;;;;;;;;;55335:31;;54956:263;;-1:-1:-1;54956:263:0;;-1:-1:-1;55263:36:0;;-1:-1:-1;55335:31:0;;54956:263;;;;55263:36;;55335:31;;:::i;:::-;;;;;;;;;;;;;55321:46;;;;;54739:636;;;:::o;55383:800::-;55476:7;55606:14;;;:10;:14;;;;;;55450:13;;55476:7;55450:13;;;;;;55606:14;;:19;55602:149;;55664:14;;;;:10;:14;;;;;;55682:1;;55658:20;;55664:14;;55658:3;:20;:::i;:::-;55657:26;;;;:::i;:::-;55651:33;;:2;:33;:::i;:::-;55646:38;;;;55602:149;;;55730:5;;;-1:-1:-1;55602:149:0;55787:49;;;;;;;;;;;;;;;;;;;55902:13;:2;:11;:13::i;:::-;55941:8;;;;;:11;;55959;;;;;55977;;;;55997:10;;;;55867:148;;;;;55941:11;;55959;55977;;55867:148;;:::i;:::-;;;;-1:-1:-1;;55867:148:0;;;;;;56031:67;;;;;;;;;;55867:148;;-1:-1:-1;56031:67:0;55867:148;56031:67;;;;;56151:6;56159;56167;56134:40;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56120:55;;;;;;55383:800;;;;:::o;56191:380::-;56383:26;;;;;;;;;;;-1:-1:-1;;;56383:26:0;;;;;;;;56424:14;;;;;;;;;;-1:-1:-1;;;56424:14:0;;;;56453:11;;;;;;;;;;-1:-1:-1;;;56453:11:0;;;;56479:13;;;;;;;;;;-1:-1:-1;;;56479:13:0;;;;56528:34;;56232:13;;56424:14;;56453:11;;56479:13;56528:34;;56383:26;;56424:14;;56453:11;;56479:13;;56528:34;;:::i;:::-;;;;;;;;;;;;;56514:49;;;;;;56191:380;:::o;42899:382::-;-1:-1:-1;;;;;42979:16:0;;42971:61;;;;-1:-1:-1;;;42971:61:0;;42546:2:1;42971:61:0;;;42528:21:1;;;42565:18;;;42558:30;42624:34;42604:18;;;42597:62;42676:18;;42971:61:0;42344:356:1;42971:61:0;40986:4;41010:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41010:16:0;:30;43043:58;;;;-1:-1:-1;;;43043:58:0;;39771:2:1;43043:58:0;;;39753:21:1;39810:2;39790:18;;;39783:30;39849;39829:18;;;39822:58;39897:18;;43043:58:0;39569:352:1;43043:58:0;-1:-1:-1;;;;;43172:13:0;;;;;;:9;:13;;;;;:18;;43189:1;;43172:13;:18;;43189:1;;43172:18;:::i;:::-;;;;-1:-1:-1;;43201:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;43201:21:0;-1:-1:-1;;;;;43201:21:0;;;;;;;;43240:33;;43201:16;;;43240:33;;43201:16;;43240:33;42899:382;;:::o;50145:142::-;50199:13;50232:47;50264:3;50250:9;50257:2;50264:3;50250:9;:::i;:::-;50234:12;;;;:8;:12;;;;;;:26;;;;:::i;:::-;50233:34;;;;:::i;50630:137::-;50687:4;50749:8;50756:1;50749:4;:8;:::i;:::-;50726:12;;;;:8;:12;;;;;;:18;;50741:3;;50726:18;:::i;:::-;50725:33;;;;:::i;:::-;50712:8;50719:1;50712:4;:8;:::i;:::-;50711:48;;;;:::i;50779:219::-;50867:4;;50917:3;50896:11;50903:4;50896;:11;:::i;:::-;50895:18;;50911:2;50895:18;:::i;:::-;50894:26;;;;:::i;:::-;50884:36;-1:-1:-1;50982:6:0;50884:36;50987:1;50982:6;:::i;:::-;50968:8;50974:2;50968:3;:8;:::i;:::-;50952:12;;;;:8;:12;;;;;;:25;;;;:::i;:::-;50951:38;;;;:::i;:::-;50938:9;50945:2;50938:4;:9;:::i;:::-;:52;;;;:::i;:::-;50931:59;50779:219;-1:-1:-1;;;;;;;50779:219:0:o;13240:340::-;13299:13;13329:10;13325:56;;-1:-1:-1;;13356:13:0;;;;;;;;;;;;-1:-1:-1;;;13356:13:0;;;;;13240:340::o;13325:56::-;13406:5;13391:12;13451:78;13458:9;;13451:78;;13484:8;;;;:::i;:::-;;;;13516:1;13507:10;;;;;13451:78;;;13546:26;13558:5;13565:6;13783:13;13809:19;13841:10;13845:6;13841:1;:10;:::i;:::-;:14;;13854:1;13841:14;:::i;:::-;13831:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13831:25:0;;13809:47;;-1:-1:-1;;;13867:6:0;13874:1;13867:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;13867:15:0;;;;;;;;;-1:-1:-1;;;13893:6:0;13900:1;13893:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;13893:15:0;;;;;;;;-1:-1:-1;13924:9:0;13936:10;13940:6;13936:1;:10;:::i;:::-;:14;;13949:1;13936:14;:::i;:::-;13924:26;;13919:135;13956:1;13952;:5;13919:135;;;-1:-1:-1;;;14004:5:0;14012:3;14004:11;13991:25;;;;;;;:::i;:::-;;;;13979:6;13986:1;13979:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;13979:37:0;;;;;;;;-1:-1:-1;14041:1:0;14031:11;;;;;13959:3;;;:::i;:::-;;;13919:135;;;-1:-1:-1;14072:10:0;;14064:55;;;;-1:-1:-1;;;14064:55:0;;38584:2:1;14064:55:0;;;38566:21:1;;;38603:18;;;38596:30;38662:34;38642:18;;;38635:62;38714:18;;14064:55:0;38382:356:1;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:337::-;4109:6;4117;4170:2;4158:9;4149:7;4145:23;4141:32;4138:52;;;4186:1;4183;4176:12;4138:52;4222:9;4209:23;4199:33;;4282:2;4271:9;4267:18;4254:32;4326:4;4319:5;4315:16;4308:5;4305:27;4295:55;;4346:1;4343;4336:12;4385:257;4426:3;4464:5;4458:12;4491:6;4486:3;4479:19;4507:63;4563:6;4556:4;4551:3;4547:14;4540:4;4533:5;4529:16;4507:63;:::i;:::-;4624:2;4603:15;-1:-1:-1;;4599:29:1;4590:39;;;;4631:4;4586:50;;4385:257;-1:-1:-1;;4385:257:1:o;4647:185::-;4689:3;4727:5;4721:12;4742:52;4787:6;4782:3;4775:4;4768:5;4764:16;4742:52;:::i;:::-;4810:16;;;;;4647:185;-1:-1:-1;;4647:185:1:o;4837:973::-;4922:12;;4887:3;;4977:1;4997:18;;;;5050;;;;5077:61;;5131:4;5123:6;5119:17;5109:27;;5077:61;5157:2;5205;5197:6;5194:14;5174:18;5171:38;5168:161;;;5251:10;5246:3;5242:20;5239:1;5232:31;5286:4;5283:1;5276:15;5314:4;5311:1;5304:15;5168:161;5345:18;5372:104;;;;5490:1;5485:319;;;;5338:466;;5372:104;-1:-1:-1;;5405:24:1;;5393:37;;5450:16;;;;-1:-1:-1;5372:104:1;;5485:319;46449:1;46442:14;;;46486:4;46473:18;;5579:1;5593:165;5607:6;5604:1;5601:13;5593:165;;;5685:14;;5672:11;;;5665:35;5728:16;;;;5622:10;;5593:165;;;5597:3;;5787:6;5782:3;5778:16;5771:23;;5338:466;;;;;;;4837:973;;;;:::o;6848:276::-;6979:3;7017:6;7011:13;7033:53;7079:6;7074:3;7067:4;7059:6;7055:17;7033:53;:::i;:::-;7102:16;;;;;6848:276;-1:-1:-1;;6848:276:1:o;7129:470::-;7308:3;7346:6;7340:13;7362:53;7408:6;7403:3;7396:4;7388:6;7384:17;7362:53;:::i;:::-;7478:13;;7437:16;;;;7500:57;7478:13;7437:16;7534:4;7522:17;;7500:57;:::i;:::-;7573:20;;7129:470;-1:-1:-1;;;;7129:470:1:o;7604:664::-;7831:3;7869:6;7863:13;7885:53;7931:6;7926:3;7919:4;7911:6;7907:17;7885:53;:::i;:::-;8001:13;;7960:16;;;;8023:57;8001:13;7960:16;8057:4;8045:17;;8023:57;:::i;:::-;8147:13;;8102:20;;;8169:57;8147:13;8102:20;8203:4;8191:17;;8169:57;:::i;:::-;8242:20;;7604:664;-1:-1:-1;;;;;7604:664:1:o;8273:858::-;8548:3;8586:6;8580:13;8602:53;8648:6;8643:3;8636:4;8628:6;8624:17;8602:53;:::i;:::-;8718:13;;8677:16;;;;8740:57;8718:13;8677:16;8774:4;8762:17;;8740:57;:::i;:::-;8864:13;;8819:20;;;8886:57;8864:13;8819:20;8920:4;8908:17;;8886:57;:::i;:::-;9010:13;;8965:20;;;9032:57;9010:13;8965:20;9066:4;9054:17;;9032:57;:::i;:::-;9105:20;;8273:858;-1:-1:-1;;;;;;8273:858:1:o;9136:1052::-;9459:3;9497:6;9491:13;9513:53;9559:6;9554:3;9547:4;9539:6;9535:17;9513:53;:::i;:::-;9629:13;;9588:16;;;;9651:57;9629:13;9588:16;9685:4;9673:17;;9651:57;:::i;:::-;9775:13;;9730:20;;;9797:57;9775:13;9730:20;9831:4;9819:17;;9797:57;:::i;:::-;9921:13;;9876:20;;;9943:57;9921:13;9876:20;9977:4;9965:17;;9943:57;:::i;:::-;10067:13;;10022:20;;;10089:57;10067:13;10022:20;10123:4;10111:17;;10089:57;:::i;:::-;10162:20;;9136:1052;-1:-1:-1;;;;;;;9136:1052:1:o;10193:1034::-;10569:3;10607:6;10601:13;10623:53;10669:6;10664:3;10657:4;10649:6;10645:17;10623:53;:::i;:::-;10739:13;;10698:16;;;;10761:57;10739:13;10698:16;10795:4;10783:17;;10761:57;:::i;:::-;10885:13;;10840:20;;;10907:57;10885:13;10840:20;10941:4;10929:17;;10907:57;:::i;:::-;11031:13;;10986:20;;;11053:57;11031:13;10986:20;11087:4;11075:17;;11053:57;:::i;:::-;-1:-1:-1;;;11132:20:1;;11161:31;;;11219:1;11208:13;;10193:1034;-1:-1:-1;;;;;;10193:1034:1:o;11232:468::-;11464:3;11502:6;11496:13;11518:53;11564:6;11559:3;11552:4;11544:6;11540:17;11518:53;:::i;:::-;11632:31;11593:16;;11618:46;;;-1:-1:-1;11691:2:1;11680:14;;11232:468;-1:-1:-1;11232:468:1:o;11705:1211::-;12360:66;12348:79;;-1:-1:-1;;;12452:2:1;12443:12;;12436:39;-1:-1:-1;12494:47:1;12537:2;12528:12;;12520:6;12494:47;:::i;:::-;-1:-1:-1;;;12550:65:1;;12634:77;12664:46;12706:2;12698:11;;12690:6;12664:46;:::i;:::-;6028:66;6016:79;;-1:-1:-1;;;6120:2:1;6111:12;;6104:31;6160:2;6151:12;;5951:218;12634:77;12624:87;;12740:6;12734:13;12756:50;12799:6;12795:2;12790;12782:6;12778:15;12756:50;:::i;:::-;-1:-1:-1;;;12828:15:1;;12852:29;;;12908:1;12897:13;;11705:1211;-1:-1:-1;;;;;11705:1211:1:o;12921:1971::-;-1:-1:-1;;;13868:53:1;;13944:13;;13850:3;;13966:62;13944:13;14016:2;14007:12;;14000:4;13988:17;;13966:62;:::i;:::-;-1:-1:-1;;;14087:2:1;14047:16;;;14079:11;;;14072:72;14169:13;;14191:63;14169:13;14240:2;14232:11;;14225:4;14213:17;;14191:63;:::i;:::-;14281:8;14277:2;14273:17;14263:27;;;-1:-1:-1;;;14341:2:1;14336;14332;14328:11;14321:23;14375:6;14369:13;14391:63;14445:8;14440:2;14436;14432:11;14425:4;14417:6;14413:17;14391:63;:::i;:::-;14514:2;14473:17;;14506:11;;;14499:23;14547:13;;14569:63;14547:13;14618:2;14610:11;;14603:4;14591:17;;14569:63;:::i;:::-;-1:-1:-1;;;14692:2:1;14651:17;;;;14684:11;;;14677:26;14728:13;;14750:63;14728:13;14799:2;14791:11;;14784:4;14772:17;;14750:63;:::i;:::-;14829:57;14882:2;14871:8;14867:2;14863:17;14859:26;-1:-1:-1;;;5880:33:1;;5938:1;5929:11;;5815:131;14829:57;14822:64;12921:1971;-1:-1:-1;;;;;;;;;12921:1971:1:o;14897:550::-;15159:66;15154:3;15147:79;15265:28;15260:3;15256:38;15251:2;15246:3;15242:12;15235:60;15129:3;15324:6;15318:13;15340:60;15393:6;15388:2;15383:3;15379:12;15374:2;15366:6;15362:15;15340:60;:::i;:::-;15420:16;;;;15438:2;15416:25;;14897:550;-1:-1:-1;;14897:550:1:o;15452:586::-;-1:-1:-1;;;15810:3:1;15803:22;15785:3;15854:6;15848:13;15870:61;15924:6;15920:1;15915:3;15911:11;15904:4;15896:6;15892:17;15870:61;:::i;:::-;-1:-1:-1;;;15990:1:1;15950:16;;;;15982:10;;;15975:30;-1:-1:-1;16029:2:1;16021:11;;15452:586;-1:-1:-1;15452:586:1:o;16043:515::-;16305:66;16300:3;16293:79;-1:-1:-1;;;16397:2:1;16392:3;16388:12;16381:25;16275:3;16435:6;16429:13;16451:60;16504:6;16499:2;16494:3;16490:12;16485:2;16477:6;16473:15;16451:60;:::i;:::-;16531:16;;;;16549:2;16527:25;;16043:515;-1:-1:-1;;16043:515:1:o;16563:1696::-;-1:-1:-1;;;17361:51:1;;17435:13;;17343:3;;17457:62;17435:13;17507:2;17498:12;;17491:4;17479:17;;17457:62;:::i;:::-;-1:-1:-1;;;17578:2:1;17538:16;;;17570:11;;;17563:45;17633:13;;17655:63;17633:13;17704:2;17696:11;;17689:4;17677:17;;17655:63;:::i;:::-;-1:-1:-1;;;17778:2:1;17737:17;;;;17770:11;;;17763:45;17833:13;;17855:63;17833:13;17904:2;17896:11;;17889:4;17877:17;;17855:63;:::i;:::-;-1:-1:-1;;;17978:2:1;17937:17;;;;17970:11;;;17963:45;18033:13;;18055:63;18033:13;18104:2;18096:11;;18089:4;18077:17;;18055:63;:::i;:::-;-1:-1:-1;;;18178:2:1;18137:17;;;;18170:11;;;18163:63;18250:2;18242:11;;16563:1696;-1:-1:-1;;;;;;16563:1696:1:o;18264:1753::-;-1:-1:-1;;;19062:51:1;;19136:13;;19044:3;;19158:62;19136:13;19208:2;19199:12;;19192:4;19180:17;;19158:62;:::i;:::-;-1:-1:-1;;;19279:2:1;19239:16;;;19271:11;;;19264:45;19334:13;;19356:63;19334:13;19405:2;19397:11;;19390:4;19378:17;;19356:63;:::i;:::-;-1:-1:-1;;;19479:2:1;19438:17;;;;19471:11;;;19464:45;19534:13;;19556:63;19534:13;19605:2;19597:11;;19590:4;19578:17;;19556:63;:::i;:::-;-1:-1:-1;;;19679:2:1;19638:17;;;;19671:11;;;19664:45;19734:13;;19756:63;19734:13;19805:2;19797:11;;19790:4;19778:17;;19756:63;:::i;:::-;19884:66;19879:2;19838:17;;;;19871:11;;;19864:87;-1:-1:-1;;;19975:2:1;19967:11;;19960:24;20008:2;20000:11;;18264:1753;-1:-1:-1;;;;;;18264:1753:1:o;20022:1987::-;-1:-1:-1;;;20969:51:1;;21043:13;;20951:3;;21065:62;21043:13;21115:2;21106:12;;21099:4;21087:17;;21065:62;:::i;:::-;-1:-1:-1;;;21186:2:1;21146:16;;;21178:11;;;21171:45;21241:13;;21263:63;21241:13;21312:2;21304:11;;21297:4;21285:17;;21263:63;:::i;:::-;-1:-1:-1;;;21386:2:1;21345:17;;;;21378:11;;;21371:45;21441:13;;21463:63;21441:13;21512:2;21504:11;;21497:4;21485:17;;21463:63;:::i;:::-;-1:-1:-1;;;21586:2:1;21545:17;;;;21578:11;;;21571:45;21641:13;;21663:63;21641:13;21712:2;21704:11;;21697:4;21685:17;;21663:63;:::i;:::-;-1:-1:-1;;;21786:2:1;21745:17;;;;21778:11;;;21771:49;21845:13;;21867:63;21845:13;21916:2;21908:11;;21901:4;21889:17;;21867:63;:::i;:::-;21946:57;21999:2;21988:8;21984:2;21980:17;21976:26;-1:-1:-1;;;6360:30:1;;6415:1;6406:11;;6295:128;22014:1185;22526:66;22521:3;22514:79;22632:30;22627:3;22623:40;22618:2;22613:3;22609:12;22602:62;22496:3;22693:6;22687:13;22709:60;22762:6;22757:2;22752:3;22748:12;22743:2;22735:6;22731:15;22709:60;:::i;:::-;22833:66;22828:2;22788:16;;;22820:11;;;22813:87;-1:-1:-1;;;22924:2:1;22916:11;;22909:69;23003:13;;23025:61;23003:13;23072:2;23064:11;;23059:2;23047:15;;23025:61;:::i;:::-;-1:-1:-1;;;23146:2:1;23105:17;;;;23138:11;;;23131:35;23190:2;23182:11;;22014:1185;-1:-1:-1;;;;22014:1185:1:o;23204:1151::-;-1:-1:-1;;;23706:3:1;23699:16;23681:3;23744:6;23738:13;23760:61;23814:6;23810:1;23805:3;23801:11;23794:4;23786:6;23782:17;23760:61;:::i;:::-;23881:13;;23840:16;;;;23903:62;23881:13;23952:1;23944:10;;23937:4;23925:17;;23903:62;:::i;:::-;24026:13;;23984:17;;;24048:62;24026:13;24097:1;24089:10;;24082:4;24070:17;;24048:62;:::i;:::-;24171:13;;24129:17;;;24193:62;24171:13;24242:1;24234:10;;24227:4;24215:17;;24193:62;:::i;:::-;-1:-1:-1;;;24315:1:1;24274:17;;;;24307:10;;;24300:23;24347:1;24339:10;;23204:1151;-1:-1:-1;;;;;;23204:1151:1:o;24360:1568::-;25021:34;25016:3;25009:47;25086:66;25081:2;25076:3;25072:12;25065:88;24991:3;25182:6;25176:13;25198:60;25251:6;25246:2;25241:3;25237:12;25232:2;25224:6;25220:15;25198:60;:::i;:::-;25322:66;25317:2;25277:16;;;25309:11;;;25302:87;25414:13;;25436:61;25414:13;25483:2;25475:11;;25470:2;25458:15;;25436:61;:::i;:::-;-1:-1:-1;;;25557:2:1;25516:17;;;;25549:11;;;25542:61;25628:13;;25650:61;25628:13;25697:2;25689:11;;25684:2;25672:15;;25650:61;:::i;:::-;25776:66;25771:2;25730:17;;;;25763:11;;;25756:87;-1:-1:-1;;;25867:3:1;25859:12;;25852:42;25918:3;25910:12;;24360:1568;-1:-1:-1;;;;;24360:1568:1:o;25933:748::-;-1:-1:-1;;;26284:68:1;;26375:13;;26266:3;;26397:62;26375:13;26447:2;26438:12;;26431:4;26419:17;;26397:62;:::i;:::-;26523:66;26518:2;26478:16;;;;26510:11;;;26503:87;-1:-1:-1;;;;26614:2:1;26606:11;;26599:49;26672:2;26664:11;;25933:748;-1:-1:-1;25933:748:1:o;26686:1590::-;27347:66;27342:3;27335:79;27453:10;27448:3;27444:20;27439:2;27434:3;27430:12;27423:42;27317:3;27494:6;27488:13;27510:60;27563:6;27558:2;27553:3;27549:12;27544:2;27536:6;27532:15;27510:60;:::i;:::-;27634:66;27629:2;27589:16;;;27621:11;;;27614:87;-1:-1:-1;;;27725:2:1;27717:11;;27710:49;27784:13;;27806:61;27784:13;27853:2;27845:11;;27840:2;27828:15;;27806:61;:::i;:::-;27932:66;27927:2;27886:17;;;;27919:11;;;27912:87;-1:-1:-1;;;28023:3:1;28015:12;;28008:54;28087:13;;28109:62;28087:13;28156:3;28148:12;;28143:2;28131:15;;28109:62;:::i;:::-;-1:-1:-1;;;28231:3:1;28190:17;;;;28223:12;;;28216:26;28266:3;28258:12;;26686:1590;-1:-1:-1;;;;;26686:1590:1:o;28281:448::-;28543:31;28538:3;28531:44;28513:3;28604:6;28598:13;28620:62;28675:6;28670:2;28665:3;28661:12;28654:4;28646:6;28642:17;28620:62;:::i;:::-;28702:16;;;;28720:2;28698:25;;28281:448;-1:-1:-1;;28281:448:1:o;28734:603::-;29097:31;29092:3;29085:44;29067:3;29158:6;29152:13;29174:62;29229:6;29224:2;29219:3;29215:12;29208:4;29200:6;29196:17;29174:62;:::i;:::-;-1:-1:-1;;;29295:2:1;29255:16;;;;29287:11;;;29280:24;-1:-1:-1;29328:2:1;29320:11;;28734:603;-1:-1:-1;28734:603:1:o;29342:1901::-;30152:66;30147:3;30140:79;30258:28;30253:3;30249:38;30244:2;30239:3;30235:12;30228:60;30122:3;30317:6;30311:13;30333:60;30386:6;30381:2;30376:3;30372:12;30367:2;30359:6;30355:15;30333:60;:::i;:::-;30447:66;30537:2;30412:16;;;30529:11;;;30522:23;;;-1:-1:-1;;;30569:2:1;30561:11;;30554:69;30648:13;;30670:61;30648:13;30717:2;30709:11;;30704:2;30692:15;;30670:61;:::i;:::-;30791:2;30750:17;;30783:11;;;30776:23;;;-1:-1:-1;;;30823:3:1;30815:12;;30808:68;30901:13;;30923:62;30901:13;30970:3;30962:12;;30957:2;30945:15;;30923:62;:::i;:::-;31045:3;31004:17;;31037:12;;;31030:24;31084:66;31078:3;31070:12;;31063:88;31167:70;31197:39;31231:3;31223:12;;31215:6;31197:39;:::i;:::-;-1:-1:-1;;;6239:18:1;;6282:1;6273:11;;6174:116;31248:600;-1:-1:-1;;;31606:3:1;31599:20;31581:3;31648:6;31642:13;31664:61;31718:6;31714:1;31709:3;31705:11;31698:4;31690:6;31686:17;31664:61;:::i;:::-;31788:26;31784:1;31744:16;;;;31776:10;;;31769:46;-1:-1:-1;31839:2:1;31831:11;;31248:600;-1:-1:-1;31248:600:1:o;31853:1890::-;-1:-1:-1;;;32794:55:1;;32872:13;;32776:3;;32894:62;32872:13;32944:2;32935:12;;32928:4;32916:17;;32894:62;:::i;:::-;-1:-1:-1;;;33015:2:1;32975:16;;;33007:11;;;33000:71;33096:13;;33118:63;33096:13;33167:2;33159:11;;33152:4;33140:17;;33118:63;:::i;:::-;-1:-1:-1;;;33241:2:1;33200:17;;;;33233:11;;;33226:71;33316:46;33358:2;33350:11;;33342:6;33316:46;:::i;:::-;-1:-1:-1;;;33371:63:1;;33306:56;-1:-1:-1;33453:77:1;33483:46;33525:2;33517:11;;33509:6;33483:46;:::i;33453:77::-;33443:87;;33561:6;33555:13;33577:54;33622:8;33618:2;33611:4;33603:6;33599:17;33577:54;:::i;:::-;-1:-1:-1;;;33653:17:1;;33679:29;;;33735:1;33724:13;;31853:1890;-1:-1:-1;;;;;;;31853:1890:1:o;33748:1928::-;34558:66;34553:3;34546:79;34664:24;34659:3;34655:34;34650:2;34645:3;34641:12;34634:56;34528:3;34719:6;34713:13;34735:60;34788:6;34783:2;34778:3;34774:12;34769:2;34761:6;34757:15;34735:60;:::i;:::-;34859:66;34854:2;34814:16;;;34846:11;;;34839:87;-1:-1:-1;;;34950:2:1;34942:11;;34935:47;35007:13;;35029:61;35007:13;35076:2;35068:11;;35063:2;35051:15;;35029:61;:::i;:::-;35155:66;35150:2;35109:17;;;;35142:11;;;35135:87;-1:-1:-1;;;35246:3:1;35238:12;;35231:50;35306:13;;35328:62;35306:13;35375:3;35367:12;;35362:2;35350:15;;35328:62;:::i;:::-;35456:66;35450:3;35409:17;;;;35442:12;;;35435:88;-1:-1:-1;;;35547:3:1;35539:12;;35532:52;35600:70;35630:39;35664:3;35656:12;;35648:6;35630:39;:::i;:::-;-1:-1:-1;;;6493:18:1;;6536:1;6527:11;;6428:116;35681:1579;-1:-1:-1;;;36486:3:1;36479:20;36461:3;36528:6;36522:13;36544:61;36598:6;36594:1;36589:3;36585:11;36578:4;36570:6;36566:17;36544:61;:::i;:::-;36633:6;36628:3;36624:16;36614:26;;-1:-1:-1;;;36690:2:1;36686:1;36682:2;36678:10;36671:22;36724:6;36718:13;36740:62;36793:8;36789:1;36785:2;36781:10;36774:4;36766:6;36762:17;36740:62;:::i;:::-;36862:1;36821:17;;36854:10;;;36847:22;36894:13;;36916:62;36894:13;36965:1;36957:10;;36950:4;36938:17;;36916:62;:::i;:::-;-1:-1:-1;;;37038:1:1;36997:17;;;;37030:10;;;37023:25;37073:13;;37095:63;37073:13;37144:2;37136:11;;37129:4;37117:17;;37095:63;:::i;:::-;-1:-1:-1;;;37218:2:1;37177:17;;;;37210:11;;;37203:24;37251:2;37243:11;;35681:1579;-1:-1:-1;;;;;;35681:1579:1:o;37473:488::-;-1:-1:-1;;;;;37742:15:1;;;37724:34;;37794:15;;37789:2;37774:18;;37767:43;37841:2;37826:18;;37819:34;;;37889:3;37884:2;37869:18;;37862:31;;;37667:4;;37910:45;;37935:19;;37927:6;37910:45;:::i;:::-;37902:53;37473:488;-1:-1:-1;;;;;;37473:488:1:o;38158:219::-;38307:2;38296:9;38289:21;38270:4;38327:44;38367:2;38356:9;38352:18;38344:6;38327:44;:::i;38743:414::-;38945:2;38927:21;;;38984:2;38964:18;;;38957:30;39023:34;39018:2;39003:18;;38996:62;-1:-1:-1;;;39089:2:1;39074:18;;39067:48;39147:3;39132:19;;38743:414::o;43118:356::-;43320:2;43302:21;;;43339:18;;;43332:30;43398:34;43393:2;43378:18;;43371:62;43465:2;43450:18;;43118:356::o;45067:413::-;45269:2;45251:21;;;45308:2;45288:18;;;45281:30;45347:34;45342:2;45327:18;;45320:62;-1:-1:-1;;;45413:2:1;45398:18;;45391:47;45470:3;45455:19;;45067:413::o;46502:128::-;46542:3;46573:1;46569:6;46566:1;46563:13;46560:39;;;46579:18;;:::i;:::-;-1:-1:-1;46615:9:1;;46502:128::o;46635:204::-;46673:3;46709:4;46706:1;46702:12;46741:4;46738:1;46734:12;46776:3;46770:4;46766:14;46761:3;46758:23;46755:49;;;46784:18;;:::i;:::-;46820:13;;46635:204;-1:-1:-1;;;46635:204:1:o;46844:120::-;46884:1;46910;46900:35;;46915:18;;:::i;:::-;-1:-1:-1;46949:9:1;;46844:120::o;46969:165::-;47007:1;47041:4;47038:1;47034:12;47065:3;47055:37;;47072:18;;:::i;:::-;47124:3;47117:4;47114:1;47110:12;47106:22;47101:27;;;46969:165;;;;:::o;47139:422::-;47228:1;47271:5;47228:1;47285:270;47306:7;47296:8;47293:21;47285:270;;;47365:4;47361:1;47357:6;47353:17;47347:4;47344:27;47341:53;;;47374:18;;:::i;:::-;47424:7;47414:8;47410:22;47407:55;;;47444:16;;;;47407:55;47523:22;;;;47483:15;;;;47285:270;;;47289:3;47139:422;;;;;:::o;47566:131::-;47626:5;47655:36;47682:8;47676:4;47751:5;47781:8;47771:80;;-1:-1:-1;47822:1:1;47836:5;;47771:80;47870:4;47860:76;;-1:-1:-1;47907:1:1;47921:5;;47860:76;47952:4;47970:1;47965:59;;;;48038:1;48033:130;;;;47945:218;;47965:59;47995:1;47986:10;;48009:5;;;48033:130;48070:3;48060:8;48057:17;48054:43;;;48077:18;;:::i;:::-;-1:-1:-1;;48133:1:1;48119:16;;48148:5;;47945:218;;48247:2;48237:8;48234:16;48228:3;48222:4;48219:13;48215:36;48209:2;48199:8;48196:16;48191:2;48185:4;48182:12;48178:35;48175:77;48172:159;;;-1:-1:-1;48284:19:1;;;48316:5;;48172:159;48363:34;48388:8;48382:4;48363:34;:::i;:::-;48433:6;48429:1;48425:6;48421:19;48412:7;48409:32;48406:58;;;48444:18;;:::i;:::-;48482:20;;47702:806;-1:-1:-1;;;47702:806:1:o;48513:168::-;48553:7;48619:1;48615;48611:6;48607:14;48604:1;48601:21;48596:1;48589:9;48582:17;48578:45;48575:71;;;48626:18;;:::i;:::-;-1:-1:-1;48666:9:1;;48513:168::o;48686:125::-;48726:4;48754:1;48751;48748:8;48745:34;;;48759:18;;:::i;:::-;-1:-1:-1;48796:9:1;;48686:125::o;48816:195::-;48854:4;48891;48888:1;48884:12;48923:4;48920:1;48916:12;48948:3;48943;48940:12;48937:38;;;48955:18;;:::i;:::-;48992:13;;;48816:195;-1:-1:-1;;;48816:195:1:o;49016:258::-;49088:1;49098:113;49112:6;49109:1;49106:13;49098:113;;;49188:11;;;49182:18;49169:11;;;49162:39;49134:2;49127:10;49098:113;;;49229:6;49226:1;49223:13;49220:48;;;-1:-1:-1;;49264:1:1;49246:16;;49239:27;49016:258::o;49279:136::-;49318:3;49346:5;49336:39;;49355:18;;:::i;:::-;-1:-1:-1;;;49391:18:1;;49279:136::o;49420:380::-;49499:1;49495:12;;;;49542;;;49563:61;;49617:4;49609:6;49605:17;49595:27;;49563:61;49670:2;49662:6;49659:14;49639:18;49636:38;49633:161;;;49716:10;49711:3;49707:20;49704:1;49697:31;49751:4;49748:1;49741:15;49779:4;49776:1;49769:15;49633:161;;49420:380;;;:::o;49805:135::-;49844:3;-1:-1:-1;;49865:17:1;;49862:43;;;49885:18;;:::i;:::-;-1:-1:-1;49932:1:1;49921:13;;49805:135::o;49945:112::-;49977:1;50003;49993:35;;50008:18;;:::i;:::-;-1:-1:-1;50042:9:1;;49945:112::o;50062:157::-;50092:1;50126:4;50123:1;50119:12;50150:3;50140:37;;50157:18;;:::i;:::-;50209:3;50202:4;50199:1;50195:12;50191:22;50186:27;;;50062:157;;;;:::o;50224:127::-;50285:10;50280:3;50276:20;50273:1;50266:31;50316:4;50313:1;50306:15;50340:4;50337:1;50330:15;50356:127;50417:10;50412:3;50408:20;50405:1;50398:31;50448:4;50445:1;50438:15;50472:4;50469:1;50462:15;50488:127;50549:10;50544:3;50540:20;50537:1;50530:31;50580:4;50577:1;50570:15;50604:4;50601:1;50594:15;50620:127;50681:10;50676:3;50672:20;50669:1;50662:31;50712:4;50709:1;50702:15;50736:4;50733:1;50726:15;50752:131;-1:-1:-1;;;;;;50826:32:1;;50816:43;;50806:71;;50873:1;50870;50863:12

Swarm Source

ipfs://3c94499a4f118c6060296d6c13b4107ee2e69b01fe908a20badea4ae8df29726
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ 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.