ETH Price: $3,385.48 (-1.51%)
Gas: 1 Gwei

Token

CIRKILL (KILL)
 

Overview

Max Total Supply

2,013 KILL

Holders

963

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 KILL
0xf3a251f6cb52c72ca8f7f41b29530be5c3f538f2
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:
Cirkill

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 2022-01-19
*/

// SPDX-License-Identifier: MIT
// File: base64-sol/base64.sol



pragma solidity >=0.6.0;

/// @title Base64
/// @author Brecht Devos - <[email protected]>
/// @notice Provides functions for encoding/decoding base64
library Base64 {
    string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
    bytes  internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000"
                                            hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000"
                                            hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000"
                                            hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000";

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';

        // load the table into memory
        string memory table = TABLE_ENCODE;

        // 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) {}
            {
                // read 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // write 4 characters
                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, 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;
    }

    function decode(string memory _data) internal pure returns (bytes memory) {
        bytes memory data = bytes(_data);

        if (data.length == 0) return new bytes(0);
        require(data.length % 4 == 0, "invalid base64 decoder input");

        // load the table into memory
        bytes memory table = TABLE_DECODE;

        // every 4 characters represent 3 bytes
        uint256 decodedLen = (data.length / 4) * 3;

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

        assembly {
            // padding with '='
            let lastBytes := mload(add(data, mload(data)))
            if eq(and(lastBytes, 0xFF), 0x3d) {
                decodedLen := sub(decodedLen, 1)
                if eq(and(lastBytes, 0xFFFF), 0x3d3d) {
                    decodedLen := sub(decodedLen, 1)
                }
            }

            // set the actual output length
            mstore(result, decodedLen)

            // 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, 4 characters at a time
            for {} lt(dataPtr, endPtr) {}
            {
               // read 4 characters
               dataPtr := add(dataPtr, 4)
               let input := mload(dataPtr)

               // write 3 bytes
               let output := add(
                   add(
                       shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)),
                       shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))),
                   add(
                       shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)),
                               and(mload(add(tablePtr, and(        input , 0xFF))), 0xFF)
                    )
                )
                mstore(resultPtr, shl(232, output))
                resultPtr := add(resultPtr, 3)
            }
        }

        return result;
    }
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (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 generally not needed starting with Solidity 0.8, since 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/utils/Counters.sol


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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: @openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: Cirkill.sol


pragma solidity ^0.8.7;











contract Cirkill is ERC721, ERC721Enumerable, ERC721URIStorage, Pausable, Ownable, ERC721Burnable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;
    mapping(address => uint8) public allowlist;

    bool public preSaleEnabled = false;
    bool public publicSaleEnabled = false;
    uint256 public constant MAX_ELEMENTS = 9950;
    uint256 public constant TEAM_ELEMENTS = 50; //For giveaways
    uint256 public PRICE_FIRST_TIER = 0.03 ether;
    uint256 public constant FIRST_TIER_BEGIN = 2950; //UPDATE THIS to 2950
    uint256 public PRICE_SECOND_TIER = 0.03 ether;
    uint256 public constant SECOND_TIER_BEGIN = 6000;
    uint256 public constant MAX_PER_MINT = 20;
    bool public pauseGrowth = false;
    uint256 public growthInterval = 1 hours; //UPDATE THIS to hours
    uint256 pauseGrowthTimeStamp;
    address public constant firstAddress = 0x989CCA76e9B96Bf7B138d81F45DD795E7041F56F;
    address public constant secondAddress = 0x330DA6BcBDa450818484ED6314a5927E4D1896b4; 
    uint256 firstMintTimeStamp;
    address public constant signingAddress = 0xaAB57dedC05A3677dAC050b402F5ca52ea176156;

    bool public advancedFeaturesEnabled = false;
    uint256 public PRICE_INCREASE_SHIELD_PER_HOUR = 0.001 ether;
    uint256 public PRICE_BACKGROUND_COLOR = 0.01 ether;

    struct Circle {
        uint32 eatCooldownTime;
        uint32 eatenCooldownTime;
        uint32 growthRate; //per growthInterval
        uint32 color;
        uint32 eatCount;
        uint32 eatenCount;
        uint32 backgroundColor;
        uint256 size;
        uint256 readyToEatTime;
        uint256 readyToBeEatenTime;
        uint256 lastGrowthUpdateTime;
    }

    struct SvgCircleTrait {
        uint256 size;
        uint256 circleSize;
        uint32 color;
        uint32 tokenId;
    }

    using Strings for uint256;

    //mapping from tokenId to a struct containing the circle's traits
    mapping(uint256 => Circle) public circleTraits;
    mapping(uint256 => SvgCircleTrait[]) public SvgCircleTraits;
    
    uint private canvaSize=540;

    event CreateCircle(uint256 indexed count, address indexed wallet);
    event EatCircle(uint256 indexed predatorTokenId, uint256 indexed preyTokenId);

    constructor() ERC721("CIRKILL", "KILL") {}

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function getCanvaSize() public view returns (uint) {
        return canvaSize;
    }

    function updateCanvaSize(uint size) public onlyOwner {
        canvaSize = size;
    }

    function pausePreSale() public onlyOwner {
        preSaleEnabled = false;
    }

    function unpausePreSale() public onlyOwner {
        preSaleEnabled = true;
    }

    function pausePublicSale() public onlyOwner {
        publicSaleEnabled = false;
    }

    function unpausePublicSale() public onlyOwner {
        publicSaleEnabled = true;
    }

    function setFirstTierPrice(uint256 price) public onlyOwner {
        PRICE_FIRST_TIER = price;
    }

    function setSecondTierPrice(uint256 price) public onlyOwner {
        PRICE_SECOND_TIER = price;
    }

    function pauseSizeGrowth() public onlyOwner {
        pauseGrowth = true;
        pauseGrowthTimeStamp = block.timestamp;
    }

    function unPauseSizeGrowth() public onlyOwner {
        pauseGrowth = false;
    }

    function pauseAdvancedFeatures() public onlyOwner {
        advancedFeaturesEnabled = false;
    }

    function unpauseAdvancedFeatures() public onlyOwner {
        advancedFeaturesEnabled = true;
    }

    function setGrowthInterval(uint256 newGrowthInterval) public onlyOwner {
        growthInterval = newGrowthInterval;
    }

    function setAllowlist(address[] memory addresses) external onlyOwner{
        for (uint256 i = 0; i < addresses.length; i++) {
            allowlist[addresses[i]] = 3;
        }
    }

    modifier saleIsOpen {
        require(totalSupply() < MAX_ELEMENTS, "Sale ended");
        if (_msgSender() != owner()) {
            require(publicSaleEnabled, "Sale is paused");
        }
        _;
    }

    modifier preSaleIsOpen {
        require(totalSupply() < MAX_ELEMENTS, "Sale ended");
        if (_msgSender() != owner()) {
            require(preSaleEnabled, "Pre-Sale is paused");
        }
        _;
    }

    function devMint(uint256 count) external onlyOwner { //For Giveaways
        require(balanceOf(msg.sender) + count <= TEAM_ELEMENTS, "Max elements reached");
        for (uint256 i = 0; i < count; i++) {
            mintOneElement(msg.sender);
        }
    }

    function preSaleSafeMint(uint256 count, bytes32 hash, uint8 v, bytes32 r, bytes32 s) public payable preSaleIsOpen {
        require(verifyHash(hash, v, r, s) == signingAddress, "Invalid signature");
        uint256 total = totalSupply();
        require(count <= MAX_PER_MINT, "Exceeds max number of NFTs per mint");
        require(total + count <= MAX_ELEMENTS, "Max elements reached, reduce count");
        //require(allowlist[msg.sender] > 0, "Not eligible for allowlist mint");

        if(_tokenIdCounter.current() == 0) {
            firstMintTimeStamp = block.timestamp;
        }

        //Doesn't consider edge cases in the interest of keeping this logic simple
        //For cases where some elements are free and some are not, the expectation is to mint the free ones first and then mint the non-free ones
        if (total + count > FIRST_TIER_BEGIN) {
            require(msg.value >= PRICE_FIRST_TIER*count , "Price is too low");
        } else {
            uint256 addressTokenCount = balanceOf(msg.sender);
            require(addressTokenCount + count <= 3, "Max 3 in free mint");
        }
        for (uint256 i = 0; i < count; i++) {
            mintOneElement(msg.sender);
            //allowlist[msg.sender]--;
        }
    }

    function safeMint(uint256 count) public payable saleIsOpen {
        uint256 total = totalSupply();
        require(total + count <= MAX_ELEMENTS, "Max elements reached, reduce count and try again");
        require(count <= MAX_PER_MINT, "Exceeds max number of NFTs per mint");

        //Doesn't consider edge cases in the interest of keeping this logic simple
        if (total + count > FIRST_TIER_BEGIN) {
            require(msg.value >= PRICE_FIRST_TIER*count , "Price is too low");
        } else {
            uint256 addressTokenCount = balanceOf(msg.sender);
            require(addressTokenCount + count <= 3, "Max 3 in free mint");
        }
        for (uint256 i = 0; i < count; i++) {
            mintOneElement(msg.sender);
        }
        emit CreateCircle(count, msg.sender);
    }

    function mintOneElement(address to) private {
        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        generateCircle(tokenId);
        _safeMint(to, tokenId);
    }
        
    function generateCircle(uint256 tokenId) internal{
        uint256 randomNumber = _random(tokenId);
        uint256 size = 20 + randomNumber % 11;
        uint32 eatCooldownTime = (60 + uint32(randomNumber >> 4) % 60) * (1 minutes);
        uint32 eatenCooldownTime =  (60 + uint32(randomNumber >> 12) % 60) * (1 minutes);
        uint32 growthRate = 5;
        uint32 color = uint32 ((_random(block.timestamp)) >> (tokenId%20)*6) & 0xFFFFFF;
        Circle memory c = Circle(eatCooldownTime, eatenCooldownTime, growthRate, color, 0, 0, 16777215, size, block.timestamp, block.timestamp , uint(block.timestamp));
        circleTraits[tokenId] = c;
        SvgCircleTrait memory svgTrait = SvgCircleTrait(size, size, color, uint32(tokenId));
        SvgCircleTraits[tokenId].push(svgTrait);
        circleTraits[tokenId].size += ((block.timestamp - firstMintTimeStamp)/(growthInterval))*growthRate;
    }

    function eat(uint256 predatorTokenId, uint256 preyTokenId) public {
        require(!paused(), "Game is paused");
        require(ownerOf(predatorTokenId) == msg.sender, "You are not the owner");
        Circle storage predatorCircle = circleTraits[predatorTokenId];
        require(_isReadyToEat(predatorCircle), "You are not ready to eat");
        Circle storage preyCircle = circleTraits[preyTokenId];
        require(_isReadyToBeEaten(preyCircle), "Other circle is not ready to be eaten");
        predatorCircle.size = getCircleSize(predatorTokenId);
        preyCircle.size = getCircleSize(preyTokenId);
        predatorCircle.lastGrowthUpdateTime = block.timestamp;
        preyCircle.lastGrowthUpdateTime = block.timestamp;
        require((preyCircle.size*80)/100 > 10, "Can't eat this circle, size will be less than 10");
        require(predatorCircle.size > preyCircle.size, "Can't eat, circle is not smaller");
        uint256 size_to_change=(preyCircle.size*20)/100; //20% of the size of the prey circle
        preyCircle.size = preyCircle.size - size_to_change;
        predatorCircle.size = predatorCircle.size + size_to_change;
        SvgCircleTrait memory preySvgTrait = SvgCircleTrait(size_to_change, predatorCircle.size, preyCircle.color, uint32(preyTokenId));
        SvgCircleTraits[predatorTokenId].push(preySvgTrait);
        predatorCircle.eatCount++;
        preyCircle.eatenCount++;
        _triggerEatCooldown(predatorCircle);
        _triggerEatenCooldown(preyCircle);
        if (predatorCircle.size > canvaSize){
            
            canvaSize = ((predatorCircle.size/1080) + 1)*1080;
            
        }
        emit EatCircle(predatorTokenId, preyTokenId);
    }

    function transferSize(uint256 predatorTokenId, uint256 preyTokenId, uint256 size) public {
        require(!paused(), "Game is paused");
        require(ownerOf(predatorTokenId) == msg.sender, "You are not the owner");
        Circle storage predatorCircle = circleTraits[predatorTokenId];
        Circle storage preyCircle = circleTraits[preyTokenId];
        predatorCircle.size = getCircleSize(predatorTokenId);
        preyCircle.size = getCircleSize(preyTokenId);
        predatorCircle.lastGrowthUpdateTime = block.timestamp;
        preyCircle.lastGrowthUpdateTime = block.timestamp;
        require((predatorCircle.size - size) > 10, "Can't transfer, size will be less than 10");
        require(predatorCircle.size > preyCircle.size, "Can't transfer, circle is not smaller");
        preyCircle.size = preyCircle.size + size;
        predatorCircle.size = predatorCircle.size - size;
    }

    function updateBackgroundColor(uint256 tokenId, uint32 color) public payable {
        require(advancedFeaturesEnabled , "This is paused");
        require(ownerOf(tokenId) == msg.sender, "You are not the owner");
        require(msg.value >= PRICE_BACKGROUND_COLOR, "Price is too low");
        circleTraits[tokenId].backgroundColor = color;
    }

    function increaseShieldTime(uint256 tokenId, uint32 numHours) public payable {
        require(advancedFeaturesEnabled , "This is paused");
        require(ownerOf(tokenId) == msg.sender, "You are not the owner");
        require(msg.value >= PRICE_INCREASE_SHIELD_PER_HOUR*numHours, "Price is too low");
        uint addToTimestamp = block.timestamp;
        if (circleTraits[tokenId].readyToBeEatenTime > block.timestamp){
            addToTimestamp=circleTraits[tokenId].readyToBeEatenTime;
        }
        circleTraits[tokenId].readyToBeEatenTime = uint32(addToTimestamp + numHours*(1 hours));
    }

    function getCircleSize(uint256 tokenId) public view returns (uint256) {
        return circleTraits[tokenId].size + _getGrowthSize(circleTraits[tokenId]);
    }

    function getCircleSize(Circle memory circle) internal view returns (uint256) {
        return circle.size + _getGrowthSize(circle);
    }

    function _getGrowthSize(Circle memory circle) internal view returns (uint256) {
        if (pauseGrowth)
            if (pauseGrowthTimeStamp > circle.lastGrowthUpdateTime)
                return circle.growthRate*((pauseGrowthTimeStamp - circle.lastGrowthUpdateTime)/growthInterval);
            else
                return 0;
        else
            return circle.growthRate*((block.timestamp - circle.lastGrowthUpdateTime)/growthInterval);
    }

    function getCircleDetail(uint256 tokenId) public view returns (SvgCircleTrait[] memory) {
        return SvgCircleTraits[tokenId];
    }

    function getEatHistory(uint256 tokenId) public view returns (uint256[] memory) {
        SvgCircleTrait[] memory svgTrait = SvgCircleTraits[tokenId];
        uint len=svgTrait.length;
        uint256[] memory eatHistory = new uint256[] (len-1);
        uint j;
        for (j=1; j<len; j++){
            eatHistory[j-1] = svgTrait[j].tokenId;
        }
        return eatHistory;
    }

    function getHexColorString(uint256 value) internal pure returns (string memory) {
        bytes memory buffer = new bytes(7);
        bytes16 HEX_SYMBOLS = "0123456789abcdef";
        buffer[0] = "#";
        for (uint256 i = 6; i > 0; --i) {
            buffer[i] = HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    
    function createSvg(uint256 tokenId) internal view returns (bytes memory) {
        uint cirleCanvaSize = canvaSize;
        Circle memory circle = circleTraits[tokenId];
        SvgCircleTrait[] memory svgTrait = SvgCircleTraits[tokenId];
        uint j;
        uint len=svgTrait.length;

        uint circleSize = getCircleSize(circle);

        if (circleSize > cirleCanvaSize){
            cirleCanvaSize=circleSize;
        }
        string memory open= svgOpen(cirleCanvaSize, cirleCanvaSize);

        string memory circle_background = string(abi.encodePacked("style='background-color:",getHexColorString(circle.backgroundColor),"'>"));
        open=concatenate(open,circle_background);

        if (!_isReadyToBeEaten(circle)){
            uint shieldRadius = (circleSize*11/20);
            uint strokeWidth = 1 + (shieldRadius*5/100);
            uint strokeDash = strokeWidth*3;
            string memory shield = string(abi.encodePacked("<circle cx='50%' cy='50%' r='",
                                                shieldRadius.toString(),
                                                "' fill='none' stroke='red' stroke-width='",
                                                strokeWidth.toString(),"' stroke-dasharray='",
                                                strokeDash.toString(),"'></circle>"));
            open=concatenate(open,shield);
        }
        for (j=0; j<len; j++){
            uint color = svgTrait[len-j-1].color;
            string memory offset;
            string memory radius = (circleSize/2).toString();
            if (circleSize < 400){
                offset = ((circleSize/2)-1).toString();
            }
            else{
                offset = ((circleSize*99)/200).toString();
            }
            
            string memory circleSvgBegin = string(abi.encodePacked("<circle cx='50%' cy='50%' r='",
                                                radius,
                                                "' fill='",
                                                getHexColorString(color),"'>"));
            if (_isReadyToEat(circle)){
                string memory animateXML = string(abi.encodePacked("<animate attributeType='XML' attributeName='r' values='0;",radius,
                                                "' dur='4s' begin='0.25s'/><animate attributeType='XML' attributeName='r' values='",
                                                offset,";",radius,";",offset,"' dur='0.5s' begin='4.25s' repeatCount='indefinite'/>"));
                circleSvgBegin = concatenate(circleSvgBegin,animateXML);
            }
            string memory circleSvgEnd = "</circle>";
            string memory circleSvg = concatenate(circleSvgBegin,circleSvgEnd);
            open = concatenate(open,circleSvg);
            uint256 circleWidth = (circleSize*svgTrait[len-j-1].size)/svgTrait[len-j-1].circleSize;
            circleSize -= circleWidth;
        }
        return abi.encodePacked(open,"</svg>");
    }

    function getSvg(uint256 tokenId) public view returns (string memory) {
        uint cirleCanvaSize = canvaSize;
        Circle memory circle = circleTraits[tokenId];
        SvgCircleTrait[] memory svgTrait = SvgCircleTraits[tokenId];
        uint j;
        uint len=svgTrait.length;

        uint circleSize = getCircleSize(circle);

        if (circleSize > cirleCanvaSize){
            cirleCanvaSize=circleSize;
        }
        string memory open= svgOpen(cirleCanvaSize, cirleCanvaSize);

        string memory circle_background = string(abi.encodePacked("style='background-color:",getHexColorString(circle.backgroundColor),"'>"));
        open=concatenate(open,circle_background);

        for (j=0; j<len; j++){
            uint color = svgTrait[len-j-1].color;
            string memory radius = (circleSize/2).toString();    
            string memory circleSvg = string(abi.encodePacked("<circle cx='50%' cy='50%' r='",
                                                radius,
                                                "' fill='",
                                                getHexColorString(color),"'></circle>"));
            open = concatenate(open,circleSvg);
            uint256 circleWidth = (circleSize*svgTrait[len-j-1].size)/svgTrait[len-j-1].circleSize;
            circleSize -= circleWidth;
        }
        return string(abi.encodePacked("data:image/svg+xml;base64,", Base64.encode(abi.encodePacked(open,"</svg>"))));        
    }

    function svgOpen(uint256 width, uint256 height) private pure returns (string memory) {
        return string(abi.encodePacked("<svg viewBox='0 0 ", width.toString(), " ", height.toString(), "' xmlns='http://www.w3.org/2000/svg' version='1.1' "));
    }

    function _triggerEatCooldown(Circle storage circle) internal {
        circle.readyToEatTime = uint32(block.timestamp + circle.eatCooldownTime);
    }

    function _triggerEatenCooldown(Circle storage circle) internal {
        circle.readyToBeEatenTime = uint32(block.timestamp + circle.eatenCooldownTime);
    }

    function _isReadyToEat(Circle memory circle) internal view returns (bool) {
      return (circle.readyToEatTime <= block.timestamp);
    }

    function _isReadyToBeEaten(Circle memory circle) internal view returns (bool) {
      return (circle.readyToBeEatenTime <= block.timestamp);
    }

    function _attributesFromDetail(uint256 tokenId) private view returns (string memory) {
        Circle memory detail = circleTraits[tokenId];
        string memory initialTraits =  string(abi.encodePacked(
            'trait_type":"Size","value":', getCircleSize(detail).toString(),
            '},{"trait_type":"Color","value":"', getHexColorString(detail.color),
            '"},{"trait_type":"Background","value":"', getHexColorString(detail.backgroundColor),
            '"},{"trait_type":"Growth Rate","display_type": "boost_number","value":', uint(detail.growthRate).toString(),
            '},{"trait_type":"Circles Attacked", "display_type": "number", "value":', uint(detail.eatCount).toString(),
            '},{"trait_type":"Attacked by", "display_type": "number", "value":', uint(detail.eatenCount).toString()
        ));
        string memory additionalTraits = string(abi.encodePacked(
            '},{"trait_type":"Sleep Time","value":"', uint(detail.eatCooldownTime/(1 minutes)).toString(),
            ' minutes"},{"trait_type":"Shield Time","value":"', uint(detail.eatenCooldownTime/(1 minutes)).toString(),' minutes'
        ));
        string memory traits = concatenate(initialTraits, additionalTraits);
        return traits;
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        whenNotPaused
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    // The following functions are overrides required by Solidity.
    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function concatenate(string memory string1, string memory string2)internal pure returns(string memory){
        return string(abi.encodePacked(string1,string2));
    }

    function _baseURI() internal pure virtual override returns (string memory) {
        return "data:application/json;base64,";
    }

    function tokenURI(uint256 tokenId) public view virtual override(ERC721, ERC721URIStorage) returns (string memory) {
        require(_exists(tokenId), "Nonexistent token");

        return _tokenUriForDetail(tokenId);
    }

    function _tokenUriForDetail(uint256 tokenId) private view returns (string memory) {
        return string(abi.encodePacked(
            _baseURI(),
            Base64.encode(abi.encodePacked(
                '{"name":"',
                    "CIRKILL #",tokenId.toString(),
                '","description":"',
                    "First ever 100% on-chain dynamic NFT game. NFTs that grow, attack, change in size and update visually. No API. No IPFS. Completely on chain.",
                '","attributes":[{"',
                    _attributesFromDetail(tokenId),
                '"}],"image":"',
                    "data:image/svg+xml;base64,", Base64.encode(createSvg(tokenId)),
                '"}'
            ))
        ));
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function walletOfOwner(address _owner) external view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokensId;
    }

    function withdrawAll() public payable onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);
        _widthdraw(firstAddress, balance.mul(25).div(100));
        _widthdraw(secondAddress, address(this).balance);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }

    function _random(uint256 seed) internal view returns (uint256) {
        uint rand = uint(keccak256(abi.encodePacked(block.difficulty,block.number,seed)));
        return rand;
    }

    function verifyHash(bytes32 hash, uint8 v, bytes32 r, bytes32 s) public pure
                 returns (address signer) {

        bytes32 messageDigest = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));

        return ecrecover(messageDigest, v, r, s);
    }

}

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":"uint256","name":"count","type":"uint256"},{"indexed":true,"internalType":"address","name":"wallet","type":"address"}],"name":"CreateCircle","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"predatorTokenId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"preyTokenId","type":"uint256"}],"name":"EatCircle","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"FIRST_TIER_BEGIN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_BACKGROUND_COLOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_FIRST_TIER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_INCREASE_SHIELD_PER_HOUR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_SECOND_TIER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SECOND_TIER_BEGIN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"SvgCircleTraits","outputs":[{"internalType":"uint256","name":"size","type":"uint256"},{"internalType":"uint256","name":"circleSize","type":"uint256"},{"internalType":"uint32","name":"color","type":"uint32"},{"internalType":"uint32","name":"tokenId","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"advancedFeaturesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"circleTraits","outputs":[{"internalType":"uint32","name":"eatCooldownTime","type":"uint32"},{"internalType":"uint32","name":"eatenCooldownTime","type":"uint32"},{"internalType":"uint32","name":"growthRate","type":"uint32"},{"internalType":"uint32","name":"color","type":"uint32"},{"internalType":"uint32","name":"eatCount","type":"uint32"},{"internalType":"uint32","name":"eatenCount","type":"uint32"},{"internalType":"uint32","name":"backgroundColor","type":"uint32"},{"internalType":"uint256","name":"size","type":"uint256"},{"internalType":"uint256","name":"readyToEatTime","type":"uint256"},{"internalType":"uint256","name":"readyToBeEatenTime","type":"uint256"},{"internalType":"uint256","name":"lastGrowthUpdateTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"predatorTokenId","type":"uint256"},{"internalType":"uint256","name":"preyTokenId","type":"uint256"}],"name":"eat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"firstAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCanvaSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getCircleDetail","outputs":[{"components":[{"internalType":"uint256","name":"size","type":"uint256"},{"internalType":"uint256","name":"circleSize","type":"uint256"},{"internalType":"uint32","name":"color","type":"uint32"},{"internalType":"uint32","name":"tokenId","type":"uint32"}],"internalType":"struct Cirkill.SvgCircleTrait[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getCircleSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getEatHistory","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSvg","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"growthInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint32","name":"numHours","type":"uint32"}],"name":"increaseShieldTime","outputs":[],"stateMutability":"payable","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":"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pauseAdvancedFeatures","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pauseGrowth","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pausePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pauseSizeGrowth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"preSaleSafeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"payable","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":[],"name":"secondAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setAllowlist","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":"price","type":"uint256"}],"name":"setFirstTierPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newGrowthInterval","type":"uint256"}],"name":"setGrowthInterval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setSecondTierPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"inputs":[{"internalType":"uint256","name":"predatorTokenId","type":"uint256"},{"internalType":"uint256","name":"preyTokenId","type":"uint256"},{"internalType":"uint256","name":"size","type":"uint256"}],"name":"transferSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unPauseSizeGrowth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpauseAdvancedFeatures","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpausePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpausePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint32","name":"color","type":"uint32"}],"name":"updateBackgroundColor","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"size","type":"uint256"}],"name":"updateCanvaSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"verifyHash","outputs":[{"internalType":"address","name":"signer","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600e805461ffff19169055666a94d74f430000600f8190556010556011805460ff19908116909155610e1060125560158054909116905566038d7ea4c68000601655662386f26fc1000060175561021c601a553480156200006457600080fd5b50604080518082018252600781526610d25492d2531360ca1b60208083019182528351808501909452600484526312d2531360e21b908401528151919291620000b0916000916200013e565b508051620000c69060019060208401906200013e565b5050600b805460ff1916905550620000de33620000e4565b62000221565b600b80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014c90620001e4565b90600052602060002090601f016020900481019282620001705760008555620001bb565b82601f106200018b57805160ff1916838001178555620001bb565b82800160010185558215620001bb579182015b82811115620001bb5782518255916020019190600101906200019e565b50620001c9929150620001cd565b5090565b5b80821115620001c95760008155600101620001ce565b600181811c90821680620001f957607f821691505b602082108114156200021b57634e487b7160e01b600052602260045260246000fd5b50919050565b615e5c80620002316000396000f3fe6080604052600436106104105760003560e01c8063714a8d741161021e578063b3e82dc911610123578063dcae5384116100ab578063ee70d8f71161007a578063ee70d8f714610cb6578063f1b59f9514610cd6578063f2fde38b14610cf6578063f599e6f214610d16578063f697ddb214610d2c57600080fd5b8063dcae538414610c23578063e39a33d314610c38578063e985e9c514610c4d578063e9a80e1c14610c9657600080fd5b8063c302d175116100f2578063c302d17514610ba5578063c68e35b014610bbb578063c87b56dd14610bdb578063c8fc14d214610bfb578063d82d97f914610c0e57600080fd5b8063b3e82dc914610b10578063b88d4fde14610b38578063bba7b09d14610b58578063c1b52ee214610b8557600080fd5b80638456cb59116101a657806395d89b411161017557806395d89b4114610a635780639ec6183c14610a78578063a22cb46514610a8e578063a7cd52cb14610aae578063b0dc78fa14610af057600080fd5b80638456cb59146109d7578063853828b6146109ec5780638da5cb5b146109f457806394fdf58614610a1757600080fd5b80637970f472116101ed5780637970f4721461095c5780637bf8f321146109725780637c36aeaa1461098c5780637d63b978146109a157806382dff64a146109b757600080fd5b8063714a8d74146108ef578063715018a614610909578063725be5461461091e578063731977941461094657600080fd5b80633c70f3c6116103245780634f6ccce7116102ac5780635ed7d7101161027b5780635ed7d7101461086257806362cfe5b0146108755780636352211e1461089557806366d2bd52146108b557806370a08231146108cf57600080fd5b80634f6ccce71461070f5780634f9efea51461072f578063552b818b1461082a5780635c975abb1461084a57600080fd5b806342d1e8f9116102f357806342d1e8f9146106835780634357da5814610698578063438b6300146106ad5780634671fb23146106da578063496f81cd146106ef57600080fd5b80633c70f3c6146106185780633f4ba83a1461062e57806342842e0e1461064357806342966c681461066357600080fd5b8063207da3a3116103a75780632f745c59116103765780632f745c591461058f57806331c864e8146105af5780633502a716146105c2578063375a069a146105d85780633abe6d74146105f857600080fd5b8063207da3a31461052857806323b872dd1461053b5780632ab91bba1461055b5780632be1c84c1461057a57600080fd5b806309d42b30116103e357806309d42b30146104c65780630c41f497146104e957806313b2a0e2146104fe57806318160ddd1461051357600080fd5b806301ffc9a71461041557806306fdde031461044a578063081812fc1461046c578063095ea7b3146104a4575b600080fd5b34801561042157600080fd5b50610435610430366004614e5f565b610d54565b60405190151581526020015b60405180910390f35b34801561045657600080fd5b5061045f610d65565b60405161044191906159e6565b34801561047857600080fd5b5061048c610487366004614e99565b610df7565b6040516001600160a01b039091168152602001610441565b3480156104b057600080fd5b506104c46104bf366004614d46565b610e91565b005b3480156104d257600080fd5b506104db601481565b604051908152602001610441565b3480156104f557600080fd5b506104c4610fa7565b34801561050a57600080fd5b506104c4610fe4565b34801561051f57600080fd5b506008546104db565b6104c4610536366004614eb2565b611020565b34801561054757600080fd5b506104c4610556366004614c0e565b6112b3565b34801561056757600080fd5b50600e5461043590610100900460ff1681565b34801561058657600080fd5b506104c46112e5565b34801561059b57600080fd5b506104db6105aa366004614d46565b611326565b6104c46105bd366004614e99565b6113bc565b3480156105ce57600080fd5b506104db6126de81565b3480156105e457600080fd5b506104c46105f3366004614e99565b611610565b34801561060457600080fd5b506104db610613366004614e99565b6116c5565b34801561062457600080fd5b506104db60125481565b34801561063a57600080fd5b506104c4611796565b34801561064f57600080fd5b506104c461065e366004614c0e565b6117d0565b34801561066f57600080fd5b506104c461067e366004614e99565b6117eb565b34801561068f57600080fd5b506104c4611865565b3480156106a457600080fd5b506104c46118a4565b3480156106b957600080fd5b506106cd6106c8366004614bc0565b6118e0565b60405161044191906159a2565b3480156106e657600080fd5b506104c4611982565b3480156106fb57600080fd5b506104c461070a366004614e99565b6119c5565b34801561071b57600080fd5b506104db61072a366004614e99565b6119fa565b34801561073b57600080fd5b506107be61074a366004614e99565b6018602052600090815260409020805460018201546002830154600384015460049094015463ffffffff80851695600160201b8604821695600160401b8104831695600160601b8204841695600160801b8304851695600160a01b8404861695600160c01b9094049093169391929091908b565b6040805163ffffffff9c8d1681529a8c1660208c0152988b16988a01989098529589166060890152938816608088015291871660a087015290951660c085015260e084019490945261010083019390935261012082019290925261014081019190915261016001610441565b34801561083657600080fd5b506104c4610845366004614d70565b611a8d565b34801561085657600080fd5b50600b5460ff16610435565b6104c4610870366004614f47565b611b34565b34801561088157600080fd5b506106cd610890366004614e99565b611c4a565b3480156108a157600080fd5b5061048c6108b0366004614e99565b611da7565b3480156108c157600080fd5b506011546104359060ff1681565b3480156108db57600080fd5b506104db6108ea366004614bc0565b611e1e565b3480156108fb57600080fd5b50600e546104359060ff1681565b34801561091557600080fd5b506104c4611ea5565b34801561092a57600080fd5b5061048c73330da6bcbda450818484ed6314a5927e4d1896b481565b34801561095257600080fd5b506104db60105481565b34801561096857600080fd5b506104db610b8681565b34801561097e57600080fd5b506015546104359060ff1681565b34801561099857600080fd5b506104c4611edf565b3480156109ad57600080fd5b506104db60175481565b3480156109c357600080fd5b506104c46109d2366004614e99565b611f1e565b3480156109e357600080fd5b506104c4611f53565b6104c4611f8b565b348015610a0057600080fd5b50600b5461010090046001600160a01b031661048c565b348015610a2357600080fd5b50610a37610a32366004614ef9565b612017565b60408051948552602085019390935263ffffffff91821692840192909252166060820152608001610441565b348015610a6f57600080fd5b5061045f61206a565b348015610a8457600080fd5b506104db600f5481565b348015610a9a57600080fd5b506104c4610aa9366004614d0a565b612079565b348015610aba57600080fd5b50610ade610ac9366004614bc0565b600d6020526000908152604090205460ff1681565b60405160ff9091168152602001610441565b348015610afc57600080fd5b5061045f610b0b366004614e99565b612084565b348015610b1c57600080fd5b5061048c73aab57dedc05a3677dac050b402f5ca52ea17615681565b348015610b4457600080fd5b506104c4610b53366004614c4a565b6123c9565b348015610b6457600080fd5b50610b78610b73366004614e99565b612401565b6040516104419190615935565b348015610b9157600080fd5b506104c4610ba0366004614ef9565b6124a4565b348015610bb157600080fd5b506104db61177081565b348015610bc757600080fd5b5061048c610bd6366004614e24565b612a08565b348015610be757600080fd5b5061045f610bf6366004614e99565b612abe565b6104c4610c09366004614f47565b612b22565b348015610c1a57600080fd5b50601a546104db565b348015610c2f57600080fd5b506104db603281565b348015610c4457600080fd5b506104c4612bea565b348015610c5957600080fd5b50610435610c68366004614bdb565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610ca257600080fd5b506104c4610cb1366004614f1b565b612c26565b348015610cc257600080fd5b506104c4610cd1366004614e99565b612de6565b348015610ce257600080fd5b506104c4610cf1366004614e99565b612e1b565b348015610d0257600080fd5b506104c4610d11366004614bc0565b612e50565b348015610d2257600080fd5b506104db60165481565b348015610d3857600080fd5b5061048c73989cca76e9b96bf7b138d81f45dd795e7041f56f81565b6000610d5f82612eee565b92915050565b606060008054610d7490615cb1565b80601f0160208091040260200160405190810160405280929190818152602001828054610da090615cb1565b8015610ded5780601f10610dc257610100808354040283529160200191610ded565b820191906000526020600020905b815481529060010190602001808311610dd057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610e755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610e9c82611da7565b9050806001600160a01b0316836001600160a01b03161415610f0a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610e6c565b336001600160a01b0382161480610f265750610f268133610c68565b610f985760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610e6c565b610fa28383612f13565b505050565b600b546001600160a01b03610100909104163314610fd75760405162461bcd60e51b8152600401610e6c90615a7a565b600e805461ff0019169055565b600b546001600160a01b036101009091041633146110145760405162461bcd60e51b8152600401610e6c90615a7a565b6011805460ff19169055565b6126de61102c60085490565b106110665760405162461bcd60e51b815260206004820152600a60248201526914d85b1948195b99195960b21b6044820152606401610e6c565b600b5461010090046001600160a01b03166001600160a01b0316336001600160a01b0316146110d657600e5460ff166110d65760405162461bcd60e51b8152602060048201526012602482015271141c994b54d85b19481a5cc81c185d5cd95960721b6044820152606401610e6c565b73aab57dedc05a3677dac050b402f5ca52ea1761566110f785858585612a08565b6001600160a01b0316146111415760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b6044820152606401610e6c565b600061114c60085490565b9050601486111561116f5760405162461bcd60e51b8152600401610e6c90615b2a565b6126de61117c8783615b9e565b11156111d55760405162461bcd60e51b815260206004820152602260248201527f4d617820656c656d656e747320726561636865642c2072656475636520636f756044820152611b9d60f21b6064820152608401610e6c565b600c546111e157426014555b610b866111ee8783615b9e565b11156112265785600f546112029190615c0c565b3410156112215760405162461bcd60e51b8152600401610e6c90615b00565b611284565b600061123133611e1e565b9050600361123f8883615b9e565b11156112825760405162461bcd60e51b815260206004820152601260248201527113585e080cc81a5b88199c9959481b5a5b9d60721b6044820152606401610e6c565b505b60005b868110156112aa5761129833612f81565b806112a281615cec565b915050611287565b50505050505050565b6112be335b82612faf565b6112da5760405162461bcd60e51b8152600401610e6c90615aaf565b610fa28383836130a2565b600b546001600160a01b036101009091041633146113155760405162461bcd60e51b8152600401610e6c90615a7a565b600e805461ff001916610100179055565b600061133183611e1e565b82106113935760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610e6c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6126de6113c860085490565b106114025760405162461bcd60e51b815260206004820152600a60248201526914d85b1948195b99195960b21b6044820152606401610e6c565b600b5461010090046001600160a01b03166001600160a01b0316336001600160a01b03161461147357600e54610100900460ff166114735760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a5cc81c185d5cd95960921b6044820152606401610e6c565b600061147e60085490565b90506126de61148d8383615b9e565b11156114f45760405162461bcd60e51b815260206004820152603060248201527f4d617820656c656d656e747320726561636865642c2072656475636520636f7560448201526f373a1030b732103a393c9030b3b0b4b760811b6064820152608401610e6c565b60148211156115155760405162461bcd60e51b8152600401610e6c90615b2a565b610b866115228383615b9e565b111561155a5781600f546115369190615c0c565b3410156115555760405162461bcd60e51b8152600401610e6c90615b00565b6115b8565b600061156533611e1e565b905060036115738483615b9e565b11156115b65760405162461bcd60e51b815260206004820152601260248201527113585e080cc81a5b88199c9959481b5a5b9d60721b6044820152606401610e6c565b505b60005b828110156115de576115cc33612f81565b806115d681615cec565b9150506115bb565b50604051339083907ffeca4c37760e3acf7270978496c3bc524cc5a9e13636a5c690c88e37d2a4323490600090a35050565b600b546001600160a01b036101009091041633146116405760405162461bcd60e51b8152600401610e6c90615a7a565b60328161164c33611e1e565b6116569190615b9e565b111561169b5760405162461bcd60e51b815260206004820152601460248201527313585e08195b195b595b9d1cc81c995858da195960621b6044820152606401610e6c565b60005b818110156116c1576116af33612f81565b806116b981615cec565b91505061169e565b5050565b6000818152601860209081526040808320815161016081018352815463ffffffff8082168352600160201b8204811695830195909552600160401b8104851693820193909352600160601b830484166060820152600160801b830484166080820152600160a01b8304841660a0820152600160c01b90920490921660c0820152600182015460e08201526002820154610100820152600382015461012082015260049091015461014082015261177a9061324d565b600083815260186020526040902060010154610d5f9190615b9e565b600b546001600160a01b036101009091041633146117c65760405162461bcd60e51b8152600401610e6c90615a7a565b6117ce6132bf565b565b610fa2838383604051806020016040528060008152506123c9565b6117f4336112b8565b6118595760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610e6c565b61186281613352565b50565b600b546001600160a01b036101009091041633146118955760405162461bcd60e51b8152600401610e6c90615a7a565b600e805460ff19166001179055565b600b546001600160a01b036101009091041633146118d45760405162461bcd60e51b8152600401610e6c90615a7a565b600e805460ff19169055565b606060006118ed83611e1e565b905060008167ffffffffffffffff81111561190a5761190a615dba565b604051908082528060200260200182016040528015611933578160200160208202803683370190505b50905060005b8281101561197a5761194b8582611326565b82828151811061195d5761195d615da4565b60209081029190910101528061197281615cec565b915050611939565b509392505050565b600b546001600160a01b036101009091041633146119b25760405162461bcd60e51b8152600401610e6c90615a7a565b6011805460ff1916600117905542601355565b600b546001600160a01b036101009091041633146119f55760405162461bcd60e51b8152600401610e6c90615a7a565b601255565b6000611a0560085490565b8210611a685760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610e6c565b60088281548110611a7b57611a7b615da4565b90600052602060002001549050919050565b600b546001600160a01b03610100909104163314611abd5760405162461bcd60e51b8152600401610e6c90615a7a565b60005b81518110156116c1576003600d6000848481518110611ae157611ae1615da4565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080611b2c90615cec565b915050611ac0565b60155460ff16611b775760405162461bcd60e51b815260206004820152600e60248201526d151a1a5cc81a5cc81c185d5cd95960921b6044820152606401610e6c565b33611b8183611da7565b6001600160a01b031614611ba75760405162461bcd60e51b8152600401610e6c90615a4b565b8063ffffffff16601654611bbb9190615c0c565b341015611bda5760405162461bcd60e51b8152600401610e6c90615b00565b6000828152601860205260409020600301544290811015611c0957506000828152601860205260409020600301545b611c1582610e10615c2b565b611c259063ffffffff1682615b9e565b63ffffffff166018600085815260200190815260200160002060030181905550505050565b6000818152601960209081526040808320805482518185028101850190935280835260609493849084015b82821015611cd85760008481526020908190206040805160808101825260038602909201805483526001808201548486015260029091015463ffffffff80821693850193909352600160201b900490911660608301529083529092019101611c75565b5050825192935060009150611cf09050600183615c57565b67ffffffffffffffff811115611d0857611d08615dba565b604051908082528060200260200182016040528015611d31578160200160208202803683370190505b50905060015b82811015611d9e57838181518110611d5157611d51615da4565b60200260200101516060015163ffffffff1682600183611d719190615c57565b81518110611d8157611d81615da4565b602090810291909101015280611d9681615cec565b915050611d37565b50949350505050565b6000818152600260205260408120546001600160a01b031680610d5f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610e6c565b60006001600160a01b038216611e895760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610e6c565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03610100909104163314611ed55760405162461bcd60e51b8152600401610e6c90615a7a565b6117ce600061335b565b600b546001600160a01b03610100909104163314611f0f5760405162461bcd60e51b8152600401610e6c90615a7a565b6015805460ff19166001179055565b600b546001600160a01b03610100909104163314611f4e5760405162461bcd60e51b8152600401610e6c90615a7a565b600f55565b600b546001600160a01b03610100909104163314611f835760405162461bcd60e51b8152600401610e6c90615a7a565b6117ce6133b5565b600b546001600160a01b03610100909104163314611fbb5760405162461bcd60e51b8152600401610e6c90615a7a565b4780611fc657600080fd5b611ff973989cca76e9b96bf7b138d81f45dd795e7041f56f611ff46064611fee856019613430565b90613443565b61344f565b61186273330da6bcbda450818484ed6314a5927e4d1896b44761344f565b6019602052816000526040600020818154811061203357600080fd5b600091825260209091206003909102018054600182015460029092015490935090915063ffffffff80821691600160201b90041684565b606060018054610d7490615cb1565b6116c13383836134e5565b601a546000828152601860209081526040808320815161016081018352815463ffffffff8082168352600160201b8204811683870152600160401b8204811683860152600160601b82048116606084810191909152600160801b830482166080850152600160a01b8304821660a0850152600160c01b9092041660c0830152600183015460e08301526002830154610100830152600383015461012083015260049092015461014082015286855260198452828520805484518187028101870190955280855292969591949193929091849084015b828210156121bc5760008481526020908190206040805160808101825260038602909201805483526001808201548486015260029091015463ffffffff80821693850193909352600160201b900490911660608301529083529092019101612159565b5050505090506000808251905060006121d4856135b4565b9050858111156121e2578095505b60006121ee87886135ce565b905060006122058760c0015163ffffffff1661360a565b60405160200161221591906151a2565b6040516020818303038152906040529050612230828261372e565b9150600094505b8385101561237357600086600161224e8888615c57565b6122589190615c57565b8151811061226857612268615da4565b60200260200101516040015163ffffffff169050600061229360028661228e9190615bd5565b613743565b90506000816122a18461360a565b6040516020016122b29291906152b1565b60405160208183030381529060405290506122cd858261372e565b945060008960016122de8b8b615c57565b6122e89190615c57565b815181106122f8576122f8615da4565b6020026020010151602001518a60018b8b6123139190615c57565b61231d9190615c57565b8151811061232d5761232d615da4565b602002602001015160000151886123449190615c0c565b61234e9190615bd5565b905061235a8188615c57565b965050505050848061236b90615cec565b955050612237565b61239b826040516020016123879190614fec565b604051602081830303815290604052613841565b6040516020016123ab91906158bd565b60405160208183030381529060405298505050505050505050919050565b6123d33383612faf565b6123ef5760405162461bcd60e51b8152600401610e6c90615aaf565b6123fb848484846139a7565b50505050565b606060196000838152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b828210156124995760008481526020908190206040805160808101825260038602909201805483526001808201548486015260029091015463ffffffff80821693850193909352600160201b900490911660608301529083529092019101612436565b505050509050919050565b600b5460ff16156124e85760405162461bcd60e51b815260206004820152600e60248201526d11d85b59481a5cc81c185d5cd95960921b6044820152606401610e6c565b336124f283611da7565b6001600160a01b0316146125185760405162461bcd60e51b8152600401610e6c90615a4b565b600082815260186020908152604091829020825161016081018452815463ffffffff8082168352600160201b8204811694830194909452600160401b8104841694820194909452600160601b840483166060820152600160801b840483166080820152600160a01b8404831660a0820152600160c01b90930490911660c0830152600181015460e0830152600281015461010083015260038101546101208301526004810154610140830152906125d490610100015142101590565b6126205760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f7420726561647920746f2065617400000000000000006044820152606401610e6c565b600082815260186020908152604091829020825161016081018452815463ffffffff8082168352600160201b8204811694830194909452600160401b8104841694820194909452600160601b840483166060820152600160801b840483166080820152600160a01b8404831660a0820152600160c01b90930490911660c0830152600181015460e0830152600281015461010083015260038101546101208301526004810154610140830152906126dc90610120015142101590565b6127365760405162461bcd60e51b815260206004820152602560248201527f4f7468657220636972636c65206973206e6f7420726561647920746f2062652060448201526432b0ba32b760d91b6064820152608401610e6c565b61273f846116c5565b600183015561274d836116c5565b6001820190815542600480850182905583015554600a90606490612772906050615c0c565b61277c9190615bd5565b116127e25760405162461bcd60e51b815260206004820152603060248201527f43616e277420656174207468697320636972636c652c2073697a652077696c6c60448201526f0206265206c657373207468616e2031360841b6064820152608401610e6c565b80600101548260010154116128395760405162461bcd60e51b815260206004820181905260248201527f43616e2774206561742c20636972636c65206973206e6f7420736d616c6c65726044820152606401610e6c565b600060648260010154601461284e9190615c0c565b6128589190615bd5565b905080826001015461286a9190615c57565b82600101819055508083600101546128829190615b9e565b6001808501829055604080516080810182528481526020808201948552865463ffffffff600160601b90910481168385019081528a82166060850190815260008d8152601985529586208054808901825590875293909520845160039094020192835595519482019490945593516002909401805492518416600160201b0267ffffffffffffffff1990931694841694909417919091179092558454600160801b90041684601061293283615d07565b82546101009290920a63ffffffff8181021990931691831602179091558454600160a01b900416905083601461296783615d07565b91906101000a81548163ffffffff021916908363ffffffff1602179055505061298f846139da565b612998836139fa565b601a54846001015411156129d35761043884600101546129b89190615bd5565b6129c3906001615b9e565b6129cf90610438615c0c565b601a555b604051859087907f13f74cf699e5d5aad6259e415e3213a8d15a6dd0718d8f6f97a46b864c999b6e90600090a3505050505050565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c81018590526000908190605c0160408051601f1981840301815282825280516020918201206000845290830180835281905260ff8816918301919091526060820186905260808201859052915060019060a0016020604051602081039080840390855afa158015612aa8573d6000803e3d6000fd5b505050602060405103519150505b949350505050565b6000818152600260205260409020546060906001600160a01b0316612b195760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610e6c565b610d5f82613a21565b60155460ff16612b655760405162461bcd60e51b815260206004820152600e60248201526d151a1a5cc81a5cc81c185d5cd95960921b6044820152606401610e6c565b33612b6f83611da7565b6001600160a01b031614612b955760405162461bcd60e51b8152600401610e6c90615a4b565b601754341015612bb75760405162461bcd60e51b8152600401610e6c90615b00565b600091825260186020526040909120805463ffffffff909216600160c01b0263ffffffff60c01b19909216919091179055565b600b546001600160a01b03610100909104163314612c1a5760405162461bcd60e51b8152600401610e6c90615a7a565b6015805460ff19169055565b600b5460ff1615612c6a5760405162461bcd60e51b815260206004820152600e60248201526d11d85b59481a5cc81c185d5cd95960921b6044820152606401610e6c565b33612c7484611da7565b6001600160a01b031614612c9a5760405162461bcd60e51b8152600401610e6c90615a4b565b6000838152601860205260408082208483529120612cb7856116c5565b6001830155612cc5846116c5565b600180830191909155426004808501829055830155820154600a90612ceb908590615c57565b11612d4a5760405162461bcd60e51b815260206004820152602960248201527f43616e2774207472616e736665722c2073697a652077696c6c206265206c6573604482015268073207468616e2031360bc1b6064820152608401610e6c565b8060010154826001015411612daf5760405162461bcd60e51b815260206004820152602560248201527f43616e2774207472616e736665722c20636972636c65206973206e6f7420736d60448201526430b63632b960d91b6064820152608401610e6c565b828160010154612dbf9190615b9e565b8160010181905550828260010154612dd79190615c57565b82600101819055505050505050565b600b546001600160a01b03610100909104163314612e165760405162461bcd60e51b8152600401610e6c90615a7a565b601a55565b600b546001600160a01b03610100909104163314612e4b5760405162461bcd60e51b8152600401610e6c90615a7a565b601055565b600b546001600160a01b03610100909104163314612e805760405162461bcd60e51b8152600401610e6c90615a7a565b6001600160a01b038116612ee55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e6c565b6118628161335b565b60006001600160e01b0319821663780e9d6360e01b1480610d5f5750610d5f82613abc565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612f4882611da7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612f8c600c5490565b9050612f9c600c80546001019055565b612fa581613b0c565b6116c18282613f02565b6000818152600260205260408120546001600160a01b03166130285760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610e6c565b600061303383611da7565b9050806001600160a01b0316846001600160a01b0316148061306e5750836001600160a01b031661306384610df7565b6001600160a01b0316145b80612ab657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16612ab6565b826001600160a01b03166130b582611da7565b6001600160a01b03161461311d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610e6c565b6001600160a01b03821661317f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610e6c565b61318a838383613f1c565b613195600082612f13565b6001600160a01b03831660009081526003602052604081208054600192906131be908490615c57565b90915550506001600160a01b03821660009081526003602052604081208054600192906131ec908490615b9e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60115460009060ff16156132a757816101400151601354111561329f576012548261014001516013546132809190615c57565b61328a9190615bd5565b826040015163ffffffff16610d5f9190615c0c565b506000919050565b6012546101408301516132809042615c57565b919050565b600b5460ff166133085760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610e6c565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b61186281613f6d565b600b80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b5460ff16156133fb5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610e6c565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586133353390565b600061343c8284615c0c565b9392505050565b600061343c8284615bd5565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461349c576040519150601f19603f3d011682016040523d82523d6000602084013e6134a1565b606091505b5050905080610fa25760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610e6c565b816001600160a01b0316836001600160a01b031614156135475760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610e6c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60006135bf8261324d565b8260e00151610d5f9190615b9e565b60606135d983613743565b6135e283613743565b6040516020016135f39291906156a7565b604051602081830303815290604052905092915050565b6040805160078082528183019092526060916000919060208201818036833701905050905060006f181899199a1a9b1b9c1cb0b131b232b360811b9050602360f81b8260008151811061365f5761365f615da4565b60200101906001600160f81b031916908160001a90535060065b80156136d8578185600f166010811061369457613694615da4565b1a60f81b8382815181106136aa576136aa615da4565b60200101906001600160f81b031916908160001a90535060049490941c936136d181615c9a565b9050613679565b5083156137275760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610e6c565b5092915050565b606082826040516020016135f3929190614fbd565b6060816137675750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613791578061377b81615cec565b915061378a9050600a83615bd5565b915061376b565b60008167ffffffffffffffff8111156137ac576137ac615dba565b6040519080825280601f01601f1916602001820160405280156137d6576020820181803683370190505b5090505b8415612ab6576137eb600183615c57565b91506137f8600a86615d2b565b613803906030615b9e565b60f81b81838151811061381857613818615da4565b60200101906001600160f81b031916908160001a90535061383a600a86615bd5565b94506137da565b606081516000141561386157505060408051602081019091526000815290565b6000604051806060016040528060408152602001615de760409139905060006003845160026138909190615b9e565b61389a9190615bd5565b6138a5906004615c0c565b905060006138b4826020615b9e565b67ffffffffffffffff8111156138cc576138cc615dba565b6040519080825280601f01601f1916602001820160405280156138f6576020820181803683370190505b509050818152600183018586518101602084015b81831015613962576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f811685015182535060010161390a565b60038951066001811461397c576002811461398d57613999565b613d3d60f01b600119830152613999565b603d60f81b6000198301525b509398975050505050505050565b6139b28484846130a2565b6139be84848484613fad565b6123fb5760405162461bcd60e51b8152600401610e6c906159f9565b80546139ec9063ffffffff1642615b9e565b63ffffffff16600290910155565b8054613a1390600160201b900463ffffffff1642615b9e565b63ffffffff16600390910155565b6060613a5d60408051808201909152601d81527f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000602082015290565b613a95613a6984613743565b613a72856140b7565b613a83613a7e87614264565b613841565b60405160200161238793929190615016565b604051602001613aa6929190614fbd565b6040516020818303038152906040529050919050565b60006001600160e01b031982166380ac58cd60e01b1480613aed57506001600160e01b03198216635b5e139f60e01b145b80610d5f57506301ffc9a760e01b6001600160e01b0319831614610d5f565b60408051446020808301919091524382840152606080830185905283518084039091018152608090920190925280519101206000613b4b600b83615d2b565b613b56906014615b9e565b90506000613b69603c600485901c615d3f565b613b7490603c615bb6565b613b7f90603c615c2b565b90506000613b92603c600c86901c615d3f565b613b9d90603c615bb6565b613ba890603c615c2b565b905060056000613bb9601488615d2b565b613bc4906006615c0c565b60408051446020808301919091524382840152426060808401919091528351808403909101815260809092019092528051910120901c62ffffff16905060006040518061016001604052808663ffffffff1681526020018563ffffffff1681526020018463ffffffff1681526020018363ffffffff168152602001600063ffffffff168152602001600063ffffffff16815260200162ffffff63ffffffff16815260200187815260200142815260200142815260200142815250905080601860008a815260200190815260200160002060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a81548163ffffffff021916908363ffffffff16021790555060408201518160000160086101000a81548163ffffffff021916908363ffffffff160217905550606082015181600001600c6101000a81548163ffffffff021916908363ffffffff16021790555060808201518160000160106101000a81548163ffffffff021916908363ffffffff16021790555060a08201518160000160146101000a81548163ffffffff021916908363ffffffff16021790555060c08201518160000160186101000a81548163ffffffff021916908363ffffffff16021790555060e08201518160010155610100820151816002015561012082015181600301556101408201518160040155905050600060405180608001604052808881526020018881526020018463ffffffff1681526020018a63ffffffff168152509050601960008a8152602001908152602001600020819080600181540180825580915050600190039060005260206000209060030201600090919091909150600082015181600001556020820151816001015560408201518160020160006101000a81548163ffffffff021916908363ffffffff16021790555060608201518160020160046101000a81548163ffffffff021916908363ffffffff16021790555050508363ffffffff1660125460145442613ebd9190615c57565b613ec79190615bd5565b613ed19190615c0c565b60008a81526018602052604081206001018054909190613ef2908490615b9e565b9091555050505050505050505050565b6116c18282604051806020016040528060008152506146da565b600b5460ff1615613f625760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610e6c565b610fa283838361470d565b613f76816147c5565b6000818152600a602052604090208054613f8f90615cb1565b159050611862576000818152600a6020526040812061186291614b4a565b60006001600160a01b0384163b156140af57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613ff1903390899088908890600401615902565b602060405180830381600087803b15801561400b57600080fd5b505af192505050801561403b575060408051601f3d908101601f1916820190925261403891810190614e7c565b60015b614095573d808015614069576040519150601f19603f3d011682016040523d82523d6000602084013e61406e565b606091505b50805161408d5760405162461bcd60e51b8152600401610e6c906159f9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612ab6565b506001612ab6565b6000818152601860209081526040808320815161016081018352815463ffffffff8082168352600160201b8204811695830195909552600160401b8104851693820193909352600160601b83048416606082810191909152600160801b840485166080830152600160a01b8404851660a0830152600160c01b90930490931660c0840152600181015460e084015260028101546101008401526003810154610120840152600401546101408301529161417261228e836135b4565b614185836060015163ffffffff1661360a565b6141988460c0015163ffffffff1661360a565b6141ab856040015163ffffffff16613743565b6141be866080015163ffffffff16613743565b6141d18760a0015163ffffffff16613743565b6040516020016141e696959493929190615491565b60405160208183030381529060405290506000614218603c846000015161420d9190615be9565b63ffffffff16613743565b61422c603c856020015161420d9190615be9565b60405160200161423d9291906151f3565b6040516020818303038152906040529050600061425a838361372e565b9695505050505050565b601a546000828152601860209081526040808320815161016081018352815463ffffffff8082168352600160201b8204811683870152600160401b8204811683860152600160601b82048116606084810191909152600160801b830482166080850152600160a01b8304821660a0850152600160c01b9092041660c0830152600183015460e08301526002830154610100830152600383015461012083015260049092015461014082015286855260198452828520805484518187028101870190955280855292969591949193929091849084015b8282101561439c5760008481526020908190206040805160808101825260038602909201805483526001808201548486015260029091015463ffffffff80821693850193909352600160201b900490911660608301529083529092019101614339565b5050505090506000808251905060006143b4856135b4565b9050858111156143c2578095505b60006143ce87886135ce565b905060006143e58760c0015163ffffffff1661360a565b6040516020016143f591906151a2565b6040516020818303038152906040529050614410828261372e565b915061442187610120015142101590565b6144c6576000601461443485600b615c0c565b61443e9190615bd5565b90506000606461444f836005615c0c565b6144599190615bd5565b614464906001615b9e565b90506000614473826003615c0c565b9050600061448084613743565b61448984613743565b61449284613743565b6040516020016144a4939291906153b0565b60405160208183030381529060405290506144bf868261372e565b9550505050505b600094505b838510156146c95760008660016144e28888615c57565b6144ec9190615c57565b815181106144fc576144fc615da4565b60200260200101516040015163ffffffff1690506060600061452460028761228e9190615bd5565b90506101908610156145515761454a6001614540600289615bd5565b61228e9190615c57565b915061456e565b61456b60c8614561886063615c0c565b61228e9190615bd5565b91505b60008161457a8561360a565b60405160200161458b929190615335565b60405160208183030381529060405290506145ab8b610100015142101590565b156145e8576000828484866040516020016145c99493929190615747565b60405160208183030381529060405290506145e4828261372e565b9150505b6040805180820190915260098152681e17b1b4b931b6329f60b91b60208201526000614614838361372e565b9050614620888261372e565b975060008c60016146318e8e615c57565b61463b9190615c57565b8151811061464b5761464b615da4565b6020026020010151602001518d60018e8e6146669190615c57565b6146709190615c57565b8151811061468057614680615da4565b6020026020010151600001518b6146979190615c0c565b6146a19190615bd5565b90506146ad818b615c57565b99505050505050505084806146c190615cec565b9550506144cb565b816040516020016123ab9190614fec565b6146e4838361486c565b6146f16000848484613fad565b610fa25760405162461bcd60e51b8152600401610e6c906159f9565b6001600160a01b0383166147685761476381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61478b565b816001600160a01b0316836001600160a01b03161461478b5761478b83826149ba565b6001600160a01b0382166147a257610fa281614a57565b826001600160a01b0316826001600160a01b031614610fa257610fa28282614b06565b60006147d082611da7565b90506147de81600084613f1c565b6147e9600083612f13565b6001600160a01b0381166000908152600360205260408120805460019290614812908490615c57565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b0382166148c25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610e6c565b6000818152600260205260409020546001600160a01b0316156149275760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610e6c565b61493360008383613f1c565b6001600160a01b038216600090815260036020526040812080546001929061495c908490615b9e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016149c784611e1e565b6149d19190615c57565b600083815260076020526040902054909150808214614a24576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090614a6990600190615c57565b60008381526009602052604081205460088054939450909284908110614a9157614a91615da4565b906000526020600020015490508060088381548110614ab257614ab2615da4565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480614aea57614aea615d8e565b6001900381819060005260206000200160009055905550505050565b6000614b1183611e1e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b508054614b5690615cb1565b6000825580601f10614b66575050565b601f01602090049060005260206000209081019061186291905b80821115614b945760008155600101614b80565b5090565b80356001600160a01b03811681146132ba57600080fd5b803560ff811681146132ba57600080fd5b600060208284031215614bd257600080fd5b61343c82614b98565b60008060408385031215614bee57600080fd5b614bf783614b98565b9150614c0560208401614b98565b90509250929050565b600080600060608486031215614c2357600080fd5b614c2c84614b98565b9250614c3a60208501614b98565b9150604084013590509250925092565b60008060008060808587031215614c6057600080fd5b614c6985614b98565b93506020614c78818701614b98565b935060408601359250606086013567ffffffffffffffff80821115614c9c57600080fd5b818801915088601f830112614cb057600080fd5b813581811115614cc257614cc2615dba565b614cd4601f8201601f19168501615b6d565b91508082528984828501011115614cea57600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215614d1d57600080fd5b614d2683614b98565b915060208301358015158114614d3b57600080fd5b809150509250929050565b60008060408385031215614d5957600080fd5b614d6283614b98565b946020939093013593505050565b60006020808385031215614d8357600080fd5b823567ffffffffffffffff80821115614d9b57600080fd5b818501915085601f830112614daf57600080fd5b813581811115614dc157614dc1615dba565b8060051b9150614dd2848301615b6d565b8181528481019084860184860187018a1015614ded57600080fd5b600095505b83861015614e1757614e0381614b98565b835260019590950194918601918601614df2565b5098975050505050505050565b60008060008060808587031215614e3a57600080fd5b84359350614e4a60208601614baf565b93969395505050506040820135916060013590565b600060208284031215614e7157600080fd5b813561343c81615dd0565b600060208284031215614e8e57600080fd5b815161343c81615dd0565b600060208284031215614eab57600080fd5b5035919050565b600080600080600060a08688031215614eca57600080fd5b8535945060208601359350614ee160408701614baf565b94979396509394606081013594506080013592915050565b60008060408385031215614f0c57600080fd5b50508035926020909101359150565b600080600060608486031215614f3057600080fd5b505081359360208301359350604090920135919050565b60008060408385031215614f5a57600080fd5b82359150602083013563ffffffff81168114614d3b57600080fd5b60008151808452614f8d816020860160208601615c6e565b601f01601f19169290920160200192915050565b60008151614fb3818560208601615c6e565b9290920192915050565b60008351614fcf818460208801615c6e565b835190830190614fe3818360208801615c6e565b01949350505050565b60008251614ffe818460208701615c6e565b651e17b9bb339f60d11b920191825250600601919050565b683d913730b6b2911d1160b91b8152684349524b494c4c202360b81b6009820152835160009061504d816012850160208901615c6e565b701116113232b9b1b934b83a34b7b7111d1160791b6012918401918201527f466972737420657665722031303025206f6e2d636861696e2064796e616d696360238201527f204e46542067616d652e204e46547320746861742067726f772c20617474616360438201527f6b2c206368616e676520696e2073697a6520616e64207570646174652076697360638201527f75616c6c792e204e6f204150492e204e6f20495046532e20436f6d706c65746560838201526b363c9037b71031b430b4b71760a11b60a38201527111161130ba3a3934b13aba32b9911d2dbd9160711b60af82015261425a61519461518e61516561514c60c186018a614fa1565b6c113eae961134b6b0b3b2911d1160991b8152600d0190565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c0000000000008152601a0190565b86614fa1565b61227d60f01b815260020190565b7f7374796c653d276261636b67726f756e642d636f6c6f723a00000000000000008152600082516151da816018850160208701615c6e565b61139f60f11b6018939091019283015250601a01919050565b7f7d2c7b2274726169745f74797065223a22536c6565702054696d65222c227661815265363ab2911d1160d11b60208201526000835161523a816026850160208801615c6e565b7f206d696e75746573227d2c7b2274726169745f74797065223a22536869656c646026918401918201526f102a34b6b29116113b30b63ab2911d1160811b60468201528351615290816056840160208801615c6e565b67206d696e7574657360c01b60569290910191820152605e01949350505050565b7f3c636972636c652063783d27353025272063793d273530252720723d270000008152600083516152e981601d850160208801615c6e565b67272066696c6c3d2760c01b601d918401918201528351615311816025840160208801615c6e565b6a139f1e17b1b4b931b6329f60a91b60259290910191820152603001949350505050565b7f3c636972636c652063783d27353025272063793d273530252720723d2700000081526000835161536d81601d850160208801615c6e565b67272066696c6c3d2760c01b601d918401918201528351615395816025840160208801615c6e565b61139f60f11b60259290910191820152602701949350505050565b7f3c636972636c652063783d27353025272063793d273530252720723d270000008152600084516153e881601d850160208901615c6e565b7f272066696c6c3d276e6f6e6527207374726f6b653d2772656427207374726f6b601d9184019182015268652d77696474683d2760b81b603d8201528451615437816046840160208901615c6e565b7327207374726f6b652d6461736861727261793d2760601b60469290910191820152835161546c81605a840160208801615c6e565b6a139f1e17b1b4b931b6329f60a91b605a929091019182015260650195945050505050565b7f74726169745f74797065223a2253697a65222c2276616c7565223a00000000008152600087516154c981601b850160208c01615c6e565b7f7d2c7b2274726169745f74797065223a22436f6c6f72222c2276616c7565223a601b91840191820152601160f91b603b820152875161551081603c840160208c01615c6e565b7f227d2c7b2274726169745f74797065223a224261636b67726f756e64222c2276603c92909101918201526630b63ab2911d1160c91b605c820152865161555e816063840160208b01615c6e565b7f227d2c7b2274726169745f74797065223a2247726f7774682052617465222c22606392909101918201527f646973706c61795f74797065223a2022626f6f73745f6e756d626572222c227660838201526530b63ab2911d60d11b60a382015261569a61569461563b6156356155d760a986018b614fa1565b7f7d2c7b2274726169745f74797065223a22436972636c65732041747461636b6581527f64222c2022646973706c61795f74797065223a20226e756d626572222c20227660208201526530b63ab2911d60d11b604082015260460190565b88614fa1565b7f7d2c7b2274726169745f74797065223a2241747461636b6564206279222c202281527f646973706c61795f74797065223a20226e756d626572222c202276616c7565226020820152601d60f91b604082015260410190565b85614fa1565b9998505050505050505050565b7101e39bb33903b34b2bba137bc1e93981018160751b8152600083516156d4816012850160208801615c6e565b600160fd1b60129184019182015283516156f5816013840160208801615c6e565b7f2720786d6c6e733d27687474703a2f2f7777772e77332e6f72672f323030302f6013929091019182015272039bb3393903b32b939b4b7b71e93989718939606d1b6033820152604601949350505050565b7f3c616e696d61746520617474726962757465547970653d27584d4c272061747481527f7269627574654e616d653d2772272076616c7565733d27303b000000000000006020820152600085516157a5816039850160208a01615c6e565b7f27206475723d2734732720626567696e3d27302e323573272f3e3c616e696d616039918401918201527f746520617474726962757465547970653d27584d4c27206174747269627574656059820152704e616d653d2772272076616c7565733d2760781b6079820152855161582281608a840160208a01615c6e565b808201915050603b60f81b80608a830152855161584681608b850160208a01615c6e565b608b920191820152835161586181608c840160208801615c6e565b6158b1608c828401017f27206475723d27302e35732720626567696e3d27342e323573272072657065618152743a21b7bab73a1e93b4b73232b334b734ba3293979f60591b602082015260350190565b98975050505050505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c0000000000008152600082516158f581601a850160208701615c6e565b91909101601a0192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061425a90830184614f75565b602080825282518282018190526000919060409081850190868401855b828110156159955781518051855286810151878601528581015163ffffffff90811687870152606091820151169085015260809093019290850190600101615952565b5091979650505050505050565b6020808252825182820181905260009190848201906040850190845b818110156159da578351835292840192918401916001016159be565b50909695505050505050565b60208152600061343c6020830184614f75565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601590820152742cb7ba9030b932903737ba103a34329037bbb732b960591b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526010908201526f507269636520697320746f6f206c6f7760801b604082015260600190565b60208082526023908201527f45786365656473206d6178206e756d626572206f66204e46547320706572206d6040820152621a5b9d60ea1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715615b9657615b96615dba565b604052919050565b60008219821115615bb157615bb1615d62565b500190565b600063ffffffff808316818516808303821115614fe357614fe3615d62565b600082615be457615be4615d78565b500490565b600063ffffffff80841680615c0057615c00615d78565b92169190910492915050565b6000816000190483118215151615615c2657615c26615d62565b500290565b600063ffffffff80831681851681830481118215151615615c4e57615c4e615d62565b02949350505050565b600082821015615c6957615c69615d62565b500390565b60005b83811015615c89578181015183820152602001615c71565b838111156123fb5750506000910152565b600081615ca957615ca9615d62565b506000190190565b600181811c90821680615cc557607f821691505b60208210811415615ce657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415615d0057615d00615d62565b5060010190565b600063ffffffff80831681811415615d2157615d21615d62565b6001019392505050565b600082615d3a57615d3a615d78565b500690565b600063ffffffff80841680615d5657615d56615d78565b92169190910692915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461186257600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220040c9df2049c73ecd648081ec1a411270ec0834d3a1abeb4f046cd1f7ce3ff1e64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106104105760003560e01c8063714a8d741161021e578063b3e82dc911610123578063dcae5384116100ab578063ee70d8f71161007a578063ee70d8f714610cb6578063f1b59f9514610cd6578063f2fde38b14610cf6578063f599e6f214610d16578063f697ddb214610d2c57600080fd5b8063dcae538414610c23578063e39a33d314610c38578063e985e9c514610c4d578063e9a80e1c14610c9657600080fd5b8063c302d175116100f2578063c302d17514610ba5578063c68e35b014610bbb578063c87b56dd14610bdb578063c8fc14d214610bfb578063d82d97f914610c0e57600080fd5b8063b3e82dc914610b10578063b88d4fde14610b38578063bba7b09d14610b58578063c1b52ee214610b8557600080fd5b80638456cb59116101a657806395d89b411161017557806395d89b4114610a635780639ec6183c14610a78578063a22cb46514610a8e578063a7cd52cb14610aae578063b0dc78fa14610af057600080fd5b80638456cb59146109d7578063853828b6146109ec5780638da5cb5b146109f457806394fdf58614610a1757600080fd5b80637970f472116101ed5780637970f4721461095c5780637bf8f321146109725780637c36aeaa1461098c5780637d63b978146109a157806382dff64a146109b757600080fd5b8063714a8d74146108ef578063715018a614610909578063725be5461461091e578063731977941461094657600080fd5b80633c70f3c6116103245780634f6ccce7116102ac5780635ed7d7101161027b5780635ed7d7101461086257806362cfe5b0146108755780636352211e1461089557806366d2bd52146108b557806370a08231146108cf57600080fd5b80634f6ccce71461070f5780634f9efea51461072f578063552b818b1461082a5780635c975abb1461084a57600080fd5b806342d1e8f9116102f357806342d1e8f9146106835780634357da5814610698578063438b6300146106ad5780634671fb23146106da578063496f81cd146106ef57600080fd5b80633c70f3c6146106185780633f4ba83a1461062e57806342842e0e1461064357806342966c681461066357600080fd5b8063207da3a3116103a75780632f745c59116103765780632f745c591461058f57806331c864e8146105af5780633502a716146105c2578063375a069a146105d85780633abe6d74146105f857600080fd5b8063207da3a31461052857806323b872dd1461053b5780632ab91bba1461055b5780632be1c84c1461057a57600080fd5b806309d42b30116103e357806309d42b30146104c65780630c41f497146104e957806313b2a0e2146104fe57806318160ddd1461051357600080fd5b806301ffc9a71461041557806306fdde031461044a578063081812fc1461046c578063095ea7b3146104a4575b600080fd5b34801561042157600080fd5b50610435610430366004614e5f565b610d54565b60405190151581526020015b60405180910390f35b34801561045657600080fd5b5061045f610d65565b60405161044191906159e6565b34801561047857600080fd5b5061048c610487366004614e99565b610df7565b6040516001600160a01b039091168152602001610441565b3480156104b057600080fd5b506104c46104bf366004614d46565b610e91565b005b3480156104d257600080fd5b506104db601481565b604051908152602001610441565b3480156104f557600080fd5b506104c4610fa7565b34801561050a57600080fd5b506104c4610fe4565b34801561051f57600080fd5b506008546104db565b6104c4610536366004614eb2565b611020565b34801561054757600080fd5b506104c4610556366004614c0e565b6112b3565b34801561056757600080fd5b50600e5461043590610100900460ff1681565b34801561058657600080fd5b506104c46112e5565b34801561059b57600080fd5b506104db6105aa366004614d46565b611326565b6104c46105bd366004614e99565b6113bc565b3480156105ce57600080fd5b506104db6126de81565b3480156105e457600080fd5b506104c46105f3366004614e99565b611610565b34801561060457600080fd5b506104db610613366004614e99565b6116c5565b34801561062457600080fd5b506104db60125481565b34801561063a57600080fd5b506104c4611796565b34801561064f57600080fd5b506104c461065e366004614c0e565b6117d0565b34801561066f57600080fd5b506104c461067e366004614e99565b6117eb565b34801561068f57600080fd5b506104c4611865565b3480156106a457600080fd5b506104c46118a4565b3480156106b957600080fd5b506106cd6106c8366004614bc0565b6118e0565b60405161044191906159a2565b3480156106e657600080fd5b506104c4611982565b3480156106fb57600080fd5b506104c461070a366004614e99565b6119c5565b34801561071b57600080fd5b506104db61072a366004614e99565b6119fa565b34801561073b57600080fd5b506107be61074a366004614e99565b6018602052600090815260409020805460018201546002830154600384015460049094015463ffffffff80851695600160201b8604821695600160401b8104831695600160601b8204841695600160801b8304851695600160a01b8404861695600160c01b9094049093169391929091908b565b6040805163ffffffff9c8d1681529a8c1660208c0152988b16988a01989098529589166060890152938816608088015291871660a087015290951660c085015260e084019490945261010083019390935261012082019290925261014081019190915261016001610441565b34801561083657600080fd5b506104c4610845366004614d70565b611a8d565b34801561085657600080fd5b50600b5460ff16610435565b6104c4610870366004614f47565b611b34565b34801561088157600080fd5b506106cd610890366004614e99565b611c4a565b3480156108a157600080fd5b5061048c6108b0366004614e99565b611da7565b3480156108c157600080fd5b506011546104359060ff1681565b3480156108db57600080fd5b506104db6108ea366004614bc0565b611e1e565b3480156108fb57600080fd5b50600e546104359060ff1681565b34801561091557600080fd5b506104c4611ea5565b34801561092a57600080fd5b5061048c73330da6bcbda450818484ed6314a5927e4d1896b481565b34801561095257600080fd5b506104db60105481565b34801561096857600080fd5b506104db610b8681565b34801561097e57600080fd5b506015546104359060ff1681565b34801561099857600080fd5b506104c4611edf565b3480156109ad57600080fd5b506104db60175481565b3480156109c357600080fd5b506104c46109d2366004614e99565b611f1e565b3480156109e357600080fd5b506104c4611f53565b6104c4611f8b565b348015610a0057600080fd5b50600b5461010090046001600160a01b031661048c565b348015610a2357600080fd5b50610a37610a32366004614ef9565b612017565b60408051948552602085019390935263ffffffff91821692840192909252166060820152608001610441565b348015610a6f57600080fd5b5061045f61206a565b348015610a8457600080fd5b506104db600f5481565b348015610a9a57600080fd5b506104c4610aa9366004614d0a565b612079565b348015610aba57600080fd5b50610ade610ac9366004614bc0565b600d6020526000908152604090205460ff1681565b60405160ff9091168152602001610441565b348015610afc57600080fd5b5061045f610b0b366004614e99565b612084565b348015610b1c57600080fd5b5061048c73aab57dedc05a3677dac050b402f5ca52ea17615681565b348015610b4457600080fd5b506104c4610b53366004614c4a565b6123c9565b348015610b6457600080fd5b50610b78610b73366004614e99565b612401565b6040516104419190615935565b348015610b9157600080fd5b506104c4610ba0366004614ef9565b6124a4565b348015610bb157600080fd5b506104db61177081565b348015610bc757600080fd5b5061048c610bd6366004614e24565b612a08565b348015610be757600080fd5b5061045f610bf6366004614e99565b612abe565b6104c4610c09366004614f47565b612b22565b348015610c1a57600080fd5b50601a546104db565b348015610c2f57600080fd5b506104db603281565b348015610c4457600080fd5b506104c4612bea565b348015610c5957600080fd5b50610435610c68366004614bdb565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610ca257600080fd5b506104c4610cb1366004614f1b565b612c26565b348015610cc257600080fd5b506104c4610cd1366004614e99565b612de6565b348015610ce257600080fd5b506104c4610cf1366004614e99565b612e1b565b348015610d0257600080fd5b506104c4610d11366004614bc0565b612e50565b348015610d2257600080fd5b506104db60165481565b348015610d3857600080fd5b5061048c73989cca76e9b96bf7b138d81f45dd795e7041f56f81565b6000610d5f82612eee565b92915050565b606060008054610d7490615cb1565b80601f0160208091040260200160405190810160405280929190818152602001828054610da090615cb1565b8015610ded5780601f10610dc257610100808354040283529160200191610ded565b820191906000526020600020905b815481529060010190602001808311610dd057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610e755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610e9c82611da7565b9050806001600160a01b0316836001600160a01b03161415610f0a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610e6c565b336001600160a01b0382161480610f265750610f268133610c68565b610f985760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610e6c565b610fa28383612f13565b505050565b600b546001600160a01b03610100909104163314610fd75760405162461bcd60e51b8152600401610e6c90615a7a565b600e805461ff0019169055565b600b546001600160a01b036101009091041633146110145760405162461bcd60e51b8152600401610e6c90615a7a565b6011805460ff19169055565b6126de61102c60085490565b106110665760405162461bcd60e51b815260206004820152600a60248201526914d85b1948195b99195960b21b6044820152606401610e6c565b600b5461010090046001600160a01b03166001600160a01b0316336001600160a01b0316146110d657600e5460ff166110d65760405162461bcd60e51b8152602060048201526012602482015271141c994b54d85b19481a5cc81c185d5cd95960721b6044820152606401610e6c565b73aab57dedc05a3677dac050b402f5ca52ea1761566110f785858585612a08565b6001600160a01b0316146111415760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b6044820152606401610e6c565b600061114c60085490565b9050601486111561116f5760405162461bcd60e51b8152600401610e6c90615b2a565b6126de61117c8783615b9e565b11156111d55760405162461bcd60e51b815260206004820152602260248201527f4d617820656c656d656e747320726561636865642c2072656475636520636f756044820152611b9d60f21b6064820152608401610e6c565b600c546111e157426014555b610b866111ee8783615b9e565b11156112265785600f546112029190615c0c565b3410156112215760405162461bcd60e51b8152600401610e6c90615b00565b611284565b600061123133611e1e565b9050600361123f8883615b9e565b11156112825760405162461bcd60e51b815260206004820152601260248201527113585e080cc81a5b88199c9959481b5a5b9d60721b6044820152606401610e6c565b505b60005b868110156112aa5761129833612f81565b806112a281615cec565b915050611287565b50505050505050565b6112be335b82612faf565b6112da5760405162461bcd60e51b8152600401610e6c90615aaf565b610fa28383836130a2565b600b546001600160a01b036101009091041633146113155760405162461bcd60e51b8152600401610e6c90615a7a565b600e805461ff001916610100179055565b600061133183611e1e565b82106113935760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610e6c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6126de6113c860085490565b106114025760405162461bcd60e51b815260206004820152600a60248201526914d85b1948195b99195960b21b6044820152606401610e6c565b600b5461010090046001600160a01b03166001600160a01b0316336001600160a01b03161461147357600e54610100900460ff166114735760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a5cc81c185d5cd95960921b6044820152606401610e6c565b600061147e60085490565b90506126de61148d8383615b9e565b11156114f45760405162461bcd60e51b815260206004820152603060248201527f4d617820656c656d656e747320726561636865642c2072656475636520636f7560448201526f373a1030b732103a393c9030b3b0b4b760811b6064820152608401610e6c565b60148211156115155760405162461bcd60e51b8152600401610e6c90615b2a565b610b866115228383615b9e565b111561155a5781600f546115369190615c0c565b3410156115555760405162461bcd60e51b8152600401610e6c90615b00565b6115b8565b600061156533611e1e565b905060036115738483615b9e565b11156115b65760405162461bcd60e51b815260206004820152601260248201527113585e080cc81a5b88199c9959481b5a5b9d60721b6044820152606401610e6c565b505b60005b828110156115de576115cc33612f81565b806115d681615cec565b9150506115bb565b50604051339083907ffeca4c37760e3acf7270978496c3bc524cc5a9e13636a5c690c88e37d2a4323490600090a35050565b600b546001600160a01b036101009091041633146116405760405162461bcd60e51b8152600401610e6c90615a7a565b60328161164c33611e1e565b6116569190615b9e565b111561169b5760405162461bcd60e51b815260206004820152601460248201527313585e08195b195b595b9d1cc81c995858da195960621b6044820152606401610e6c565b60005b818110156116c1576116af33612f81565b806116b981615cec565b91505061169e565b5050565b6000818152601860209081526040808320815161016081018352815463ffffffff8082168352600160201b8204811695830195909552600160401b8104851693820193909352600160601b830484166060820152600160801b830484166080820152600160a01b8304841660a0820152600160c01b90920490921660c0820152600182015460e08201526002820154610100820152600382015461012082015260049091015461014082015261177a9061324d565b600083815260186020526040902060010154610d5f9190615b9e565b600b546001600160a01b036101009091041633146117c65760405162461bcd60e51b8152600401610e6c90615a7a565b6117ce6132bf565b565b610fa2838383604051806020016040528060008152506123c9565b6117f4336112b8565b6118595760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610e6c565b61186281613352565b50565b600b546001600160a01b036101009091041633146118955760405162461bcd60e51b8152600401610e6c90615a7a565b600e805460ff19166001179055565b600b546001600160a01b036101009091041633146118d45760405162461bcd60e51b8152600401610e6c90615a7a565b600e805460ff19169055565b606060006118ed83611e1e565b905060008167ffffffffffffffff81111561190a5761190a615dba565b604051908082528060200260200182016040528015611933578160200160208202803683370190505b50905060005b8281101561197a5761194b8582611326565b82828151811061195d5761195d615da4565b60209081029190910101528061197281615cec565b915050611939565b509392505050565b600b546001600160a01b036101009091041633146119b25760405162461bcd60e51b8152600401610e6c90615a7a565b6011805460ff1916600117905542601355565b600b546001600160a01b036101009091041633146119f55760405162461bcd60e51b8152600401610e6c90615a7a565b601255565b6000611a0560085490565b8210611a685760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610e6c565b60088281548110611a7b57611a7b615da4565b90600052602060002001549050919050565b600b546001600160a01b03610100909104163314611abd5760405162461bcd60e51b8152600401610e6c90615a7a565b60005b81518110156116c1576003600d6000848481518110611ae157611ae1615da4565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080611b2c90615cec565b915050611ac0565b60155460ff16611b775760405162461bcd60e51b815260206004820152600e60248201526d151a1a5cc81a5cc81c185d5cd95960921b6044820152606401610e6c565b33611b8183611da7565b6001600160a01b031614611ba75760405162461bcd60e51b8152600401610e6c90615a4b565b8063ffffffff16601654611bbb9190615c0c565b341015611bda5760405162461bcd60e51b8152600401610e6c90615b00565b6000828152601860205260409020600301544290811015611c0957506000828152601860205260409020600301545b611c1582610e10615c2b565b611c259063ffffffff1682615b9e565b63ffffffff166018600085815260200190815260200160002060030181905550505050565b6000818152601960209081526040808320805482518185028101850190935280835260609493849084015b82821015611cd85760008481526020908190206040805160808101825260038602909201805483526001808201548486015260029091015463ffffffff80821693850193909352600160201b900490911660608301529083529092019101611c75565b5050825192935060009150611cf09050600183615c57565b67ffffffffffffffff811115611d0857611d08615dba565b604051908082528060200260200182016040528015611d31578160200160208202803683370190505b50905060015b82811015611d9e57838181518110611d5157611d51615da4565b60200260200101516060015163ffffffff1682600183611d719190615c57565b81518110611d8157611d81615da4565b602090810291909101015280611d9681615cec565b915050611d37565b50949350505050565b6000818152600260205260408120546001600160a01b031680610d5f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610e6c565b60006001600160a01b038216611e895760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610e6c565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03610100909104163314611ed55760405162461bcd60e51b8152600401610e6c90615a7a565b6117ce600061335b565b600b546001600160a01b03610100909104163314611f0f5760405162461bcd60e51b8152600401610e6c90615a7a565b6015805460ff19166001179055565b600b546001600160a01b03610100909104163314611f4e5760405162461bcd60e51b8152600401610e6c90615a7a565b600f55565b600b546001600160a01b03610100909104163314611f835760405162461bcd60e51b8152600401610e6c90615a7a565b6117ce6133b5565b600b546001600160a01b03610100909104163314611fbb5760405162461bcd60e51b8152600401610e6c90615a7a565b4780611fc657600080fd5b611ff973989cca76e9b96bf7b138d81f45dd795e7041f56f611ff46064611fee856019613430565b90613443565b61344f565b61186273330da6bcbda450818484ed6314a5927e4d1896b44761344f565b6019602052816000526040600020818154811061203357600080fd5b600091825260209091206003909102018054600182015460029092015490935090915063ffffffff80821691600160201b90041684565b606060018054610d7490615cb1565b6116c13383836134e5565b601a546000828152601860209081526040808320815161016081018352815463ffffffff8082168352600160201b8204811683870152600160401b8204811683860152600160601b82048116606084810191909152600160801b830482166080850152600160a01b8304821660a0850152600160c01b9092041660c0830152600183015460e08301526002830154610100830152600383015461012083015260049092015461014082015286855260198452828520805484518187028101870190955280855292969591949193929091849084015b828210156121bc5760008481526020908190206040805160808101825260038602909201805483526001808201548486015260029091015463ffffffff80821693850193909352600160201b900490911660608301529083529092019101612159565b5050505090506000808251905060006121d4856135b4565b9050858111156121e2578095505b60006121ee87886135ce565b905060006122058760c0015163ffffffff1661360a565b60405160200161221591906151a2565b6040516020818303038152906040529050612230828261372e565b9150600094505b8385101561237357600086600161224e8888615c57565b6122589190615c57565b8151811061226857612268615da4565b60200260200101516040015163ffffffff169050600061229360028661228e9190615bd5565b613743565b90506000816122a18461360a565b6040516020016122b29291906152b1565b60405160208183030381529060405290506122cd858261372e565b945060008960016122de8b8b615c57565b6122e89190615c57565b815181106122f8576122f8615da4565b6020026020010151602001518a60018b8b6123139190615c57565b61231d9190615c57565b8151811061232d5761232d615da4565b602002602001015160000151886123449190615c0c565b61234e9190615bd5565b905061235a8188615c57565b965050505050848061236b90615cec565b955050612237565b61239b826040516020016123879190614fec565b604051602081830303815290604052613841565b6040516020016123ab91906158bd565b60405160208183030381529060405298505050505050505050919050565b6123d33383612faf565b6123ef5760405162461bcd60e51b8152600401610e6c90615aaf565b6123fb848484846139a7565b50505050565b606060196000838152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b828210156124995760008481526020908190206040805160808101825260038602909201805483526001808201548486015260029091015463ffffffff80821693850193909352600160201b900490911660608301529083529092019101612436565b505050509050919050565b600b5460ff16156124e85760405162461bcd60e51b815260206004820152600e60248201526d11d85b59481a5cc81c185d5cd95960921b6044820152606401610e6c565b336124f283611da7565b6001600160a01b0316146125185760405162461bcd60e51b8152600401610e6c90615a4b565b600082815260186020908152604091829020825161016081018452815463ffffffff8082168352600160201b8204811694830194909452600160401b8104841694820194909452600160601b840483166060820152600160801b840483166080820152600160a01b8404831660a0820152600160c01b90930490911660c0830152600181015460e0830152600281015461010083015260038101546101208301526004810154610140830152906125d490610100015142101590565b6126205760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f7420726561647920746f2065617400000000000000006044820152606401610e6c565b600082815260186020908152604091829020825161016081018452815463ffffffff8082168352600160201b8204811694830194909452600160401b8104841694820194909452600160601b840483166060820152600160801b840483166080820152600160a01b8404831660a0820152600160c01b90930490911660c0830152600181015460e0830152600281015461010083015260038101546101208301526004810154610140830152906126dc90610120015142101590565b6127365760405162461bcd60e51b815260206004820152602560248201527f4f7468657220636972636c65206973206e6f7420726561647920746f2062652060448201526432b0ba32b760d91b6064820152608401610e6c565b61273f846116c5565b600183015561274d836116c5565b6001820190815542600480850182905583015554600a90606490612772906050615c0c565b61277c9190615bd5565b116127e25760405162461bcd60e51b815260206004820152603060248201527f43616e277420656174207468697320636972636c652c2073697a652077696c6c60448201526f0206265206c657373207468616e2031360841b6064820152608401610e6c565b80600101548260010154116128395760405162461bcd60e51b815260206004820181905260248201527f43616e2774206561742c20636972636c65206973206e6f7420736d616c6c65726044820152606401610e6c565b600060648260010154601461284e9190615c0c565b6128589190615bd5565b905080826001015461286a9190615c57565b82600101819055508083600101546128829190615b9e565b6001808501829055604080516080810182528481526020808201948552865463ffffffff600160601b90910481168385019081528a82166060850190815260008d8152601985529586208054808901825590875293909520845160039094020192835595519482019490945593516002909401805492518416600160201b0267ffffffffffffffff1990931694841694909417919091179092558454600160801b90041684601061293283615d07565b82546101009290920a63ffffffff8181021990931691831602179091558454600160a01b900416905083601461296783615d07565b91906101000a81548163ffffffff021916908363ffffffff1602179055505061298f846139da565b612998836139fa565b601a54846001015411156129d35761043884600101546129b89190615bd5565b6129c3906001615b9e565b6129cf90610438615c0c565b601a555b604051859087907f13f74cf699e5d5aad6259e415e3213a8d15a6dd0718d8f6f97a46b864c999b6e90600090a3505050505050565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c81018590526000908190605c0160408051601f1981840301815282825280516020918201206000845290830180835281905260ff8816918301919091526060820186905260808201859052915060019060a0016020604051602081039080840390855afa158015612aa8573d6000803e3d6000fd5b505050602060405103519150505b949350505050565b6000818152600260205260409020546060906001600160a01b0316612b195760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610e6c565b610d5f82613a21565b60155460ff16612b655760405162461bcd60e51b815260206004820152600e60248201526d151a1a5cc81a5cc81c185d5cd95960921b6044820152606401610e6c565b33612b6f83611da7565b6001600160a01b031614612b955760405162461bcd60e51b8152600401610e6c90615a4b565b601754341015612bb75760405162461bcd60e51b8152600401610e6c90615b00565b600091825260186020526040909120805463ffffffff909216600160c01b0263ffffffff60c01b19909216919091179055565b600b546001600160a01b03610100909104163314612c1a5760405162461bcd60e51b8152600401610e6c90615a7a565b6015805460ff19169055565b600b5460ff1615612c6a5760405162461bcd60e51b815260206004820152600e60248201526d11d85b59481a5cc81c185d5cd95960921b6044820152606401610e6c565b33612c7484611da7565b6001600160a01b031614612c9a5760405162461bcd60e51b8152600401610e6c90615a4b565b6000838152601860205260408082208483529120612cb7856116c5565b6001830155612cc5846116c5565b600180830191909155426004808501829055830155820154600a90612ceb908590615c57565b11612d4a5760405162461bcd60e51b815260206004820152602960248201527f43616e2774207472616e736665722c2073697a652077696c6c206265206c6573604482015268073207468616e2031360bc1b6064820152608401610e6c565b8060010154826001015411612daf5760405162461bcd60e51b815260206004820152602560248201527f43616e2774207472616e736665722c20636972636c65206973206e6f7420736d60448201526430b63632b960d91b6064820152608401610e6c565b828160010154612dbf9190615b9e565b8160010181905550828260010154612dd79190615c57565b82600101819055505050505050565b600b546001600160a01b03610100909104163314612e165760405162461bcd60e51b8152600401610e6c90615a7a565b601a55565b600b546001600160a01b03610100909104163314612e4b5760405162461bcd60e51b8152600401610e6c90615a7a565b601055565b600b546001600160a01b03610100909104163314612e805760405162461bcd60e51b8152600401610e6c90615a7a565b6001600160a01b038116612ee55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e6c565b6118628161335b565b60006001600160e01b0319821663780e9d6360e01b1480610d5f5750610d5f82613abc565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612f4882611da7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612f8c600c5490565b9050612f9c600c80546001019055565b612fa581613b0c565b6116c18282613f02565b6000818152600260205260408120546001600160a01b03166130285760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610e6c565b600061303383611da7565b9050806001600160a01b0316846001600160a01b0316148061306e5750836001600160a01b031661306384610df7565b6001600160a01b0316145b80612ab657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16612ab6565b826001600160a01b03166130b582611da7565b6001600160a01b03161461311d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610e6c565b6001600160a01b03821661317f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610e6c565b61318a838383613f1c565b613195600082612f13565b6001600160a01b03831660009081526003602052604081208054600192906131be908490615c57565b90915550506001600160a01b03821660009081526003602052604081208054600192906131ec908490615b9e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60115460009060ff16156132a757816101400151601354111561329f576012548261014001516013546132809190615c57565b61328a9190615bd5565b826040015163ffffffff16610d5f9190615c0c565b506000919050565b6012546101408301516132809042615c57565b919050565b600b5460ff166133085760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610e6c565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b61186281613f6d565b600b80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b5460ff16156133fb5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610e6c565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586133353390565b600061343c8284615c0c565b9392505050565b600061343c8284615bd5565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461349c576040519150601f19603f3d011682016040523d82523d6000602084013e6134a1565b606091505b5050905080610fa25760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610e6c565b816001600160a01b0316836001600160a01b031614156135475760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610e6c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60006135bf8261324d565b8260e00151610d5f9190615b9e565b60606135d983613743565b6135e283613743565b6040516020016135f39291906156a7565b604051602081830303815290604052905092915050565b6040805160078082528183019092526060916000919060208201818036833701905050905060006f181899199a1a9b1b9c1cb0b131b232b360811b9050602360f81b8260008151811061365f5761365f615da4565b60200101906001600160f81b031916908160001a90535060065b80156136d8578185600f166010811061369457613694615da4565b1a60f81b8382815181106136aa576136aa615da4565b60200101906001600160f81b031916908160001a90535060049490941c936136d181615c9a565b9050613679565b5083156137275760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610e6c565b5092915050565b606082826040516020016135f3929190614fbd565b6060816137675750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613791578061377b81615cec565b915061378a9050600a83615bd5565b915061376b565b60008167ffffffffffffffff8111156137ac576137ac615dba565b6040519080825280601f01601f1916602001820160405280156137d6576020820181803683370190505b5090505b8415612ab6576137eb600183615c57565b91506137f8600a86615d2b565b613803906030615b9e565b60f81b81838151811061381857613818615da4565b60200101906001600160f81b031916908160001a90535061383a600a86615bd5565b94506137da565b606081516000141561386157505060408051602081019091526000815290565b6000604051806060016040528060408152602001615de760409139905060006003845160026138909190615b9e565b61389a9190615bd5565b6138a5906004615c0c565b905060006138b4826020615b9e565b67ffffffffffffffff8111156138cc576138cc615dba565b6040519080825280601f01601f1916602001820160405280156138f6576020820181803683370190505b509050818152600183018586518101602084015b81831015613962576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f811685015182535060010161390a565b60038951066001811461397c576002811461398d57613999565b613d3d60f01b600119830152613999565b603d60f81b6000198301525b509398975050505050505050565b6139b28484846130a2565b6139be84848484613fad565b6123fb5760405162461bcd60e51b8152600401610e6c906159f9565b80546139ec9063ffffffff1642615b9e565b63ffffffff16600290910155565b8054613a1390600160201b900463ffffffff1642615b9e565b63ffffffff16600390910155565b6060613a5d60408051808201909152601d81527f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000602082015290565b613a95613a6984613743565b613a72856140b7565b613a83613a7e87614264565b613841565b60405160200161238793929190615016565b604051602001613aa6929190614fbd565b6040516020818303038152906040529050919050565b60006001600160e01b031982166380ac58cd60e01b1480613aed57506001600160e01b03198216635b5e139f60e01b145b80610d5f57506301ffc9a760e01b6001600160e01b0319831614610d5f565b60408051446020808301919091524382840152606080830185905283518084039091018152608090920190925280519101206000613b4b600b83615d2b565b613b56906014615b9e565b90506000613b69603c600485901c615d3f565b613b7490603c615bb6565b613b7f90603c615c2b565b90506000613b92603c600c86901c615d3f565b613b9d90603c615bb6565b613ba890603c615c2b565b905060056000613bb9601488615d2b565b613bc4906006615c0c565b60408051446020808301919091524382840152426060808401919091528351808403909101815260809092019092528051910120901c62ffffff16905060006040518061016001604052808663ffffffff1681526020018563ffffffff1681526020018463ffffffff1681526020018363ffffffff168152602001600063ffffffff168152602001600063ffffffff16815260200162ffffff63ffffffff16815260200187815260200142815260200142815260200142815250905080601860008a815260200190815260200160002060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a81548163ffffffff021916908363ffffffff16021790555060408201518160000160086101000a81548163ffffffff021916908363ffffffff160217905550606082015181600001600c6101000a81548163ffffffff021916908363ffffffff16021790555060808201518160000160106101000a81548163ffffffff021916908363ffffffff16021790555060a08201518160000160146101000a81548163ffffffff021916908363ffffffff16021790555060c08201518160000160186101000a81548163ffffffff021916908363ffffffff16021790555060e08201518160010155610100820151816002015561012082015181600301556101408201518160040155905050600060405180608001604052808881526020018881526020018463ffffffff1681526020018a63ffffffff168152509050601960008a8152602001908152602001600020819080600181540180825580915050600190039060005260206000209060030201600090919091909150600082015181600001556020820151816001015560408201518160020160006101000a81548163ffffffff021916908363ffffffff16021790555060608201518160020160046101000a81548163ffffffff021916908363ffffffff16021790555050508363ffffffff1660125460145442613ebd9190615c57565b613ec79190615bd5565b613ed19190615c0c565b60008a81526018602052604081206001018054909190613ef2908490615b9e565b9091555050505050505050505050565b6116c18282604051806020016040528060008152506146da565b600b5460ff1615613f625760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610e6c565b610fa283838361470d565b613f76816147c5565b6000818152600a602052604090208054613f8f90615cb1565b159050611862576000818152600a6020526040812061186291614b4a565b60006001600160a01b0384163b156140af57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613ff1903390899088908890600401615902565b602060405180830381600087803b15801561400b57600080fd5b505af192505050801561403b575060408051601f3d908101601f1916820190925261403891810190614e7c565b60015b614095573d808015614069576040519150601f19603f3d011682016040523d82523d6000602084013e61406e565b606091505b50805161408d5760405162461bcd60e51b8152600401610e6c906159f9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612ab6565b506001612ab6565b6000818152601860209081526040808320815161016081018352815463ffffffff8082168352600160201b8204811695830195909552600160401b8104851693820193909352600160601b83048416606082810191909152600160801b840485166080830152600160a01b8404851660a0830152600160c01b90930490931660c0840152600181015460e084015260028101546101008401526003810154610120840152600401546101408301529161417261228e836135b4565b614185836060015163ffffffff1661360a565b6141988460c0015163ffffffff1661360a565b6141ab856040015163ffffffff16613743565b6141be866080015163ffffffff16613743565b6141d18760a0015163ffffffff16613743565b6040516020016141e696959493929190615491565b60405160208183030381529060405290506000614218603c846000015161420d9190615be9565b63ffffffff16613743565b61422c603c856020015161420d9190615be9565b60405160200161423d9291906151f3565b6040516020818303038152906040529050600061425a838361372e565b9695505050505050565b601a546000828152601860209081526040808320815161016081018352815463ffffffff8082168352600160201b8204811683870152600160401b8204811683860152600160601b82048116606084810191909152600160801b830482166080850152600160a01b8304821660a0850152600160c01b9092041660c0830152600183015460e08301526002830154610100830152600383015461012083015260049092015461014082015286855260198452828520805484518187028101870190955280855292969591949193929091849084015b8282101561439c5760008481526020908190206040805160808101825260038602909201805483526001808201548486015260029091015463ffffffff80821693850193909352600160201b900490911660608301529083529092019101614339565b5050505090506000808251905060006143b4856135b4565b9050858111156143c2578095505b60006143ce87886135ce565b905060006143e58760c0015163ffffffff1661360a565b6040516020016143f591906151a2565b6040516020818303038152906040529050614410828261372e565b915061442187610120015142101590565b6144c6576000601461443485600b615c0c565b61443e9190615bd5565b90506000606461444f836005615c0c565b6144599190615bd5565b614464906001615b9e565b90506000614473826003615c0c565b9050600061448084613743565b61448984613743565b61449284613743565b6040516020016144a4939291906153b0565b60405160208183030381529060405290506144bf868261372e565b9550505050505b600094505b838510156146c95760008660016144e28888615c57565b6144ec9190615c57565b815181106144fc576144fc615da4565b60200260200101516040015163ffffffff1690506060600061452460028761228e9190615bd5565b90506101908610156145515761454a6001614540600289615bd5565b61228e9190615c57565b915061456e565b61456b60c8614561886063615c0c565b61228e9190615bd5565b91505b60008161457a8561360a565b60405160200161458b929190615335565b60405160208183030381529060405290506145ab8b610100015142101590565b156145e8576000828484866040516020016145c99493929190615747565b60405160208183030381529060405290506145e4828261372e565b9150505b6040805180820190915260098152681e17b1b4b931b6329f60b91b60208201526000614614838361372e565b9050614620888261372e565b975060008c60016146318e8e615c57565b61463b9190615c57565b8151811061464b5761464b615da4565b6020026020010151602001518d60018e8e6146669190615c57565b6146709190615c57565b8151811061468057614680615da4565b6020026020010151600001518b6146979190615c0c565b6146a19190615bd5565b90506146ad818b615c57565b99505050505050505084806146c190615cec565b9550506144cb565b816040516020016123ab9190614fec565b6146e4838361486c565b6146f16000848484613fad565b610fa25760405162461bcd60e51b8152600401610e6c906159f9565b6001600160a01b0383166147685761476381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61478b565b816001600160a01b0316836001600160a01b03161461478b5761478b83826149ba565b6001600160a01b0382166147a257610fa281614a57565b826001600160a01b0316826001600160a01b031614610fa257610fa28282614b06565b60006147d082611da7565b90506147de81600084613f1c565b6147e9600083612f13565b6001600160a01b0381166000908152600360205260408120805460019290614812908490615c57565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b0382166148c25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610e6c565b6000818152600260205260409020546001600160a01b0316156149275760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610e6c565b61493360008383613f1c565b6001600160a01b038216600090815260036020526040812080546001929061495c908490615b9e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016149c784611e1e565b6149d19190615c57565b600083815260076020526040902054909150808214614a24576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090614a6990600190615c57565b60008381526009602052604081205460088054939450909284908110614a9157614a91615da4565b906000526020600020015490508060088381548110614ab257614ab2615da4565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480614aea57614aea615d8e565b6001900381819060005260206000200160009055905550505050565b6000614b1183611e1e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b508054614b5690615cb1565b6000825580601f10614b66575050565b601f01602090049060005260206000209081019061186291905b80821115614b945760008155600101614b80565b5090565b80356001600160a01b03811681146132ba57600080fd5b803560ff811681146132ba57600080fd5b600060208284031215614bd257600080fd5b61343c82614b98565b60008060408385031215614bee57600080fd5b614bf783614b98565b9150614c0560208401614b98565b90509250929050565b600080600060608486031215614c2357600080fd5b614c2c84614b98565b9250614c3a60208501614b98565b9150604084013590509250925092565b60008060008060808587031215614c6057600080fd5b614c6985614b98565b93506020614c78818701614b98565b935060408601359250606086013567ffffffffffffffff80821115614c9c57600080fd5b818801915088601f830112614cb057600080fd5b813581811115614cc257614cc2615dba565b614cd4601f8201601f19168501615b6d565b91508082528984828501011115614cea57600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215614d1d57600080fd5b614d2683614b98565b915060208301358015158114614d3b57600080fd5b809150509250929050565b60008060408385031215614d5957600080fd5b614d6283614b98565b946020939093013593505050565b60006020808385031215614d8357600080fd5b823567ffffffffffffffff80821115614d9b57600080fd5b818501915085601f830112614daf57600080fd5b813581811115614dc157614dc1615dba565b8060051b9150614dd2848301615b6d565b8181528481019084860184860187018a1015614ded57600080fd5b600095505b83861015614e1757614e0381614b98565b835260019590950194918601918601614df2565b5098975050505050505050565b60008060008060808587031215614e3a57600080fd5b84359350614e4a60208601614baf565b93969395505050506040820135916060013590565b600060208284031215614e7157600080fd5b813561343c81615dd0565b600060208284031215614e8e57600080fd5b815161343c81615dd0565b600060208284031215614eab57600080fd5b5035919050565b600080600080600060a08688031215614eca57600080fd5b8535945060208601359350614ee160408701614baf565b94979396509394606081013594506080013592915050565b60008060408385031215614f0c57600080fd5b50508035926020909101359150565b600080600060608486031215614f3057600080fd5b505081359360208301359350604090920135919050565b60008060408385031215614f5a57600080fd5b82359150602083013563ffffffff81168114614d3b57600080fd5b60008151808452614f8d816020860160208601615c6e565b601f01601f19169290920160200192915050565b60008151614fb3818560208601615c6e565b9290920192915050565b60008351614fcf818460208801615c6e565b835190830190614fe3818360208801615c6e565b01949350505050565b60008251614ffe818460208701615c6e565b651e17b9bb339f60d11b920191825250600601919050565b683d913730b6b2911d1160b91b8152684349524b494c4c202360b81b6009820152835160009061504d816012850160208901615c6e565b701116113232b9b1b934b83a34b7b7111d1160791b6012918401918201527f466972737420657665722031303025206f6e2d636861696e2064796e616d696360238201527f204e46542067616d652e204e46547320746861742067726f772c20617474616360438201527f6b2c206368616e676520696e2073697a6520616e64207570646174652076697360638201527f75616c6c792e204e6f204150492e204e6f20495046532e20436f6d706c65746560838201526b363c9037b71031b430b4b71760a11b60a38201527111161130ba3a3934b13aba32b9911d2dbd9160711b60af82015261425a61519461518e61516561514c60c186018a614fa1565b6c113eae961134b6b0b3b2911d1160991b8152600d0190565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c0000000000008152601a0190565b86614fa1565b61227d60f01b815260020190565b7f7374796c653d276261636b67726f756e642d636f6c6f723a00000000000000008152600082516151da816018850160208701615c6e565b61139f60f11b6018939091019283015250601a01919050565b7f7d2c7b2274726169745f74797065223a22536c6565702054696d65222c227661815265363ab2911d1160d11b60208201526000835161523a816026850160208801615c6e565b7f206d696e75746573227d2c7b2274726169745f74797065223a22536869656c646026918401918201526f102a34b6b29116113b30b63ab2911d1160811b60468201528351615290816056840160208801615c6e565b67206d696e7574657360c01b60569290910191820152605e01949350505050565b7f3c636972636c652063783d27353025272063793d273530252720723d270000008152600083516152e981601d850160208801615c6e565b67272066696c6c3d2760c01b601d918401918201528351615311816025840160208801615c6e565b6a139f1e17b1b4b931b6329f60a91b60259290910191820152603001949350505050565b7f3c636972636c652063783d27353025272063793d273530252720723d2700000081526000835161536d81601d850160208801615c6e565b67272066696c6c3d2760c01b601d918401918201528351615395816025840160208801615c6e565b61139f60f11b60259290910191820152602701949350505050565b7f3c636972636c652063783d27353025272063793d273530252720723d270000008152600084516153e881601d850160208901615c6e565b7f272066696c6c3d276e6f6e6527207374726f6b653d2772656427207374726f6b601d9184019182015268652d77696474683d2760b81b603d8201528451615437816046840160208901615c6e565b7327207374726f6b652d6461736861727261793d2760601b60469290910191820152835161546c81605a840160208801615c6e565b6a139f1e17b1b4b931b6329f60a91b605a929091019182015260650195945050505050565b7f74726169745f74797065223a2253697a65222c2276616c7565223a00000000008152600087516154c981601b850160208c01615c6e565b7f7d2c7b2274726169745f74797065223a22436f6c6f72222c2276616c7565223a601b91840191820152601160f91b603b820152875161551081603c840160208c01615c6e565b7f227d2c7b2274726169745f74797065223a224261636b67726f756e64222c2276603c92909101918201526630b63ab2911d1160c91b605c820152865161555e816063840160208b01615c6e565b7f227d2c7b2274726169745f74797065223a2247726f7774682052617465222c22606392909101918201527f646973706c61795f74797065223a2022626f6f73745f6e756d626572222c227660838201526530b63ab2911d60d11b60a382015261569a61569461563b6156356155d760a986018b614fa1565b7f7d2c7b2274726169745f74797065223a22436972636c65732041747461636b6581527f64222c2022646973706c61795f74797065223a20226e756d626572222c20227660208201526530b63ab2911d60d11b604082015260460190565b88614fa1565b7f7d2c7b2274726169745f74797065223a2241747461636b6564206279222c202281527f646973706c61795f74797065223a20226e756d626572222c202276616c7565226020820152601d60f91b604082015260410190565b85614fa1565b9998505050505050505050565b7101e39bb33903b34b2bba137bc1e93981018160751b8152600083516156d4816012850160208801615c6e565b600160fd1b60129184019182015283516156f5816013840160208801615c6e565b7f2720786d6c6e733d27687474703a2f2f7777772e77332e6f72672f323030302f6013929091019182015272039bb3393903b32b939b4b7b71e93989718939606d1b6033820152604601949350505050565b7f3c616e696d61746520617474726962757465547970653d27584d4c272061747481527f7269627574654e616d653d2772272076616c7565733d27303b000000000000006020820152600085516157a5816039850160208a01615c6e565b7f27206475723d2734732720626567696e3d27302e323573272f3e3c616e696d616039918401918201527f746520617474726962757465547970653d27584d4c27206174747269627574656059820152704e616d653d2772272076616c7565733d2760781b6079820152855161582281608a840160208a01615c6e565b808201915050603b60f81b80608a830152855161584681608b850160208a01615c6e565b608b920191820152835161586181608c840160208801615c6e565b6158b1608c828401017f27206475723d27302e35732720626567696e3d27342e323573272072657065618152743a21b7bab73a1e93b4b73232b334b734ba3293979f60591b602082015260350190565b98975050505050505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c0000000000008152600082516158f581601a850160208701615c6e565b91909101601a0192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061425a90830184614f75565b602080825282518282018190526000919060409081850190868401855b828110156159955781518051855286810151878601528581015163ffffffff90811687870152606091820151169085015260809093019290850190600101615952565b5091979650505050505050565b6020808252825182820181905260009190848201906040850190845b818110156159da578351835292840192918401916001016159be565b50909695505050505050565b60208152600061343c6020830184614f75565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601590820152742cb7ba9030b932903737ba103a34329037bbb732b960591b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526010908201526f507269636520697320746f6f206c6f7760801b604082015260600190565b60208082526023908201527f45786365656473206d6178206e756d626572206f66204e46547320706572206d6040820152621a5b9d60ea1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715615b9657615b96615dba565b604052919050565b60008219821115615bb157615bb1615d62565b500190565b600063ffffffff808316818516808303821115614fe357614fe3615d62565b600082615be457615be4615d78565b500490565b600063ffffffff80841680615c0057615c00615d78565b92169190910492915050565b6000816000190483118215151615615c2657615c26615d62565b500290565b600063ffffffff80831681851681830481118215151615615c4e57615c4e615d62565b02949350505050565b600082821015615c6957615c69615d62565b500390565b60005b83811015615c89578181015183820152602001615c71565b838111156123fb5750506000910152565b600081615ca957615ca9615d62565b506000190190565b600181811c90821680615cc557607f821691505b60208210811415615ce657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415615d0057615d00615d62565b5060010190565b600063ffffffff80831681811415615d2157615d21615d62565b6001019392505050565b600082615d3a57615d3a615d78565b500690565b600063ffffffff80841680615d5657615d56615d78565b92169190910692915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461186257600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220040c9df2049c73ecd648081ec1a411270ec0834d3a1abeb4f046cd1f7ce3ff1e64736f6c63430008070033

Deployed Bytecode Sourcemap

63083:23458:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85021:212;;;;;;;;;;-1:-1:-1;85021:212:0;;;;;:::i;:::-;;:::i;:::-;;;24707:14:1;;24700:22;24682:41;;24670:2;24655:18;85021:212:0;;;;;;;;41563:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43122:221::-;;;;;;;;;;-1:-1:-1;43122:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;22330:32:1;;;22312:51;;22300:2;22285:18;43122:221:0;22166:203:1;42645:411:0;;;;;;;;;;-1:-1:-1;42645:411:0;;;;;:::i;:::-;;:::i;:::-;;63797:41;;;;;;;;;;;;63836:2;63797:41;;;;;41490:25:1;;;41478:2;41463:18;63797:41:0;41344:177:1;65978:88:0;;;;;;;;;;;;;:::i;66531:84::-;;;;;;;;;;;;;:::i;57502:113::-;;;;;;;;;;-1:-1:-1;57590:10:0;:17;57502:113;;67883:1275;;;;;;:::i;:::-;;:::i;43872:339::-;;;;;;;;;;-1:-1:-1;43872:339:0;;;;;:::i;:::-;;:::i;63404:37::-;;;;;;;;;;-1:-1:-1;63404:37:0;;;;;;;;;;;66074:89;;;;;;;;;;;;;:::i;57170:256::-;;;;;;;;;;-1:-1:-1;57170:256:0;;;;;:::i;:::-;;:::i;69166:818::-;;;;;;:::i;:::-;;:::i;63448:43::-;;;;;;;;;;;;63487:4;63448:43;;67611:264;;;;;;;;;;-1:-1:-1;67611:264:0;;;;;:::i;:::-;;:::i;74784:162::-;;;;;;;;;;-1:-1:-1;74784:162:0;;;;;:::i;:::-;;:::i;63883:39::-;;;;;;;;;;;;;;;;65534:65;;;;;;;;;;;;;:::i;44282:185::-;;;;;;;;;;-1:-1:-1;44282:185:0;;;;;:::i;:::-;;:::i;53594:245::-;;;;;;;;;;-1:-1:-1;53594:245:0;;;;;:::i;:::-;;:::i;65887:83::-;;;;;;;;;;;;;:::i;65797:82::-;;;;;;;;;;;;;:::i;85241:353::-;;;;;;;;;;-1:-1:-1;85241:353:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;66393:130::-;;;;;;;;;;;;;:::i;66840:124::-;;;;;;;;;;-1:-1:-1;66840:124:0;;;;;:::i;:::-;;:::i;57692:233::-;;;;;;;;;;-1:-1:-1;57692:233:0;;;;;:::i;:::-;;:::i;65097:46::-;;;;;;;;;;-1:-1:-1;65097:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;65097:46:0;;;;;-1:-1:-1;;;65097:46:0;;;;;-1:-1:-1;;;65097:46:0;;;;;-1:-1:-1;;;65097:46:0;;;;;-1:-1:-1;;;65097:46:0;;;;;-1:-1:-1;;;65097:46:0;;;;;;;;;;;;;;;;;;42389:10:1;42426:15;;;42408:34;;42478:15;;;42473:2;42458:18;;42451:43;42530:15;;;42510:18;;;42503:43;;;;42582:15;;;42577:2;42562:18;;42555:43;42635:15;;;42629:3;42614:19;;42607:44;42688:15;;;42682:3;42667:19;;42660:44;42741:15;;;42735:3;42720:19;;42713:44;42788:3;42773:19;;42766:35;;;;42832:3;42817:19;;42810:35;;;;42876:3;42861:19;;42854:35;;;;42920:3;42905:19;;42898:36;;;;42366:3;42351:19;65097:46:0;41965:975:1;66972:187:0;;;;;;;;;;-1:-1:-1;66972:187:0;;;;;:::i;:::-;;:::i;20164:86::-;;;;;;;;;;-1:-1:-1;20235:7:0;;;;20164:86;;74162:614;;;;;;:::i;:::-;;:::i;75712:394::-;;;;;;;;;;-1:-1:-1;75712:394:0;;;;;:::i;:::-;;:::i;41257:239::-;;;;;;;;;;-1:-1:-1;41257:239:0;;;;;:::i;:::-;;:::i;63845:31::-;;;;;;;;;;-1:-1:-1;63845:31:0;;;;;;;;40987:208;;;;;;;;;;-1:-1:-1;40987:208:0;;;;;:::i;:::-;;:::i;63363:34::-;;;;;;;;;;-1:-1:-1;63363:34:0;;;;;;;;18215:103;;;;;;;;;;;;;:::i;64075:82::-;;;;;;;;;;;;64115:42;64075:82;;63690:45;;;;;;;;;;;;;;;;63614:47;;;;;;;;;;;;63657:4;63614:47;;64290:43;;;;;;;;;;-1:-1:-1;64290:43:0;;;;;;;;66731:101;;;;;;;;;;;;;:::i;64406:50::-;;;;;;;;;;;;;;;;66171:102;;;;;;;;;;-1:-1:-1;66171:102:0;;;;;:::i;:::-;;:::i;65465:61::-;;;;;;;;;;;;;:::i;85602:257::-;;;:::i;17564:87::-;;;;;;;;;;-1:-1:-1;17637:6:0;;;;;-1:-1:-1;;;;;17637:6:0;17564:87;;65150:59;;;;;;;;;;-1:-1:-1;65150:59:0;;;;;:::i;:::-;;:::i;:::-;;;;41753:25:1;;;41809:2;41794:18;;41787:34;;;;41840:10;41886:15;;;41866:18;;;41859:43;;;;41938:15;41933:2;41918:18;;41911:43;41740:3;41725:19;65150:59:0;41526:434:1;41732:104:0;;;;;;;;;;;;;:::i;63563:44::-;;;;;;;;;;;;;;;;43415:155;;;;;;;;;;-1:-1:-1;43415:155:0;;;;;:::i;:::-;;:::i;63312:42::-;;;;;;;;;;-1:-1:-1;63312:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43117:4:1;43105:17;;;43087:36;;43075:2;43060:18;63312:42:0;42945:184:1;79612:1497:0;;;;;;;;;;-1:-1:-1;79612:1497:0;;;;;:::i;:::-;;:::i;64198:83::-;;;;;;;;;;;;64239:42;64198:83;;44538:328;;;;;;;;;;-1:-1:-1;44538:328:0;;;;;:::i;:::-;;:::i;75566:138::-;;;;;;;;;;-1:-1:-1;75566:138:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;71141:1733::-;;;;;;;;;;-1:-1:-1;71141:1733:0;;;;;:::i;:::-;;:::i;63742:48::-;;;;;;;;;;;;63786:4;63742:48;;86249:287;;;;;;;;;;-1:-1:-1;86249:287:0;;;;;:::i;:::-;;:::i;84029:226::-;;;;;;;;;;-1:-1:-1;84029:226:0;;;;;:::i;:::-;;:::i;73801:353::-;;;;;;:::i;:::-;;:::i;65607:86::-;;;;;;;;;;-1:-1:-1;65676:9:0;;65607:86;;63498:42;;;;;;;;;;;;63538:2;63498:42;;66623:100;;;;;;;;;;;;;:::i;43641:164::-;;;;;;;;;;-1:-1:-1;43641:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;43762:25:0;;;43738:4;43762:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43641:164;72882:911;;;;;;;;;;-1:-1:-1;72882:911:0;;;;;:::i;:::-;;:::i;65701:88::-;;;;;;;;;;-1:-1:-1;65701:88:0;;;;;:::i;:::-;;:::i;66281:104::-;;;;;;;;;;-1:-1:-1;66281:104:0;;;;;:::i;:::-;;:::i;18473:201::-;;;;;;;;;;-1:-1:-1;18473:201:0;;;;;:::i;:::-;;:::i;64340:59::-;;;;;;;;;;;;;;;;63987:81;;;;;;;;;;;;64026:42;63987:81;;85021:212;85160:4;85189:36;85213:11;85189:23;:36::i;:::-;85182:43;85021:212;-1:-1:-1;;85021:212:0:o;41563:100::-;41617:13;41650:5;41643:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41563:100;:::o;43122:221::-;43198:7;46465:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46465:16:0;43218:73;;;;-1:-1:-1;;;43218:73:0;;34716:2:1;43218:73:0;;;34698:21:1;34755:2;34735:18;;;34728:30;34794:34;34774:18;;;34767:62;-1:-1:-1;;;34845:18:1;;;34838:42;34897:19;;43218:73:0;;;;;;;;;-1:-1:-1;43311:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;43311:24:0;;43122:221::o;42645:411::-;42726:13;42742:23;42757:7;42742:14;:23::i;:::-;42726:39;;42790:5;-1:-1:-1;;;;;42784:11:0;:2;-1:-1:-1;;;;;42784:11:0;;;42776:57;;;;-1:-1:-1;;;42776:57:0;;36931:2:1;42776:57:0;;;36913:21:1;36970:2;36950:18;;;36943:30;37009:34;36989:18;;;36982:62;-1:-1:-1;;;37060:18:1;;;37053:31;37101:19;;42776:57:0;36729:397:1;42776:57:0;16368:10;-1:-1:-1;;;;;42868:21:0;;;;:62;;-1:-1:-1;42893:37:0;42910:5;16368:10;43641:164;:::i;42893:37::-;42846:168;;;;-1:-1:-1;;;42846:168:0;;31177:2:1;42846:168:0;;;31159:21:1;31216:2;31196:18;;;31189:30;31255:34;31235:18;;;31228:62;31326:26;31306:18;;;31299:54;31370:19;;42846:168:0;30975:420:1;42846:168:0;43027:21;43036:2;43040:7;43027:8;:21::i;:::-;42715:341;42645:411;;:::o;65978:88::-;17637:6;;-1:-1:-1;;;;;17637:6:0;;;;;16368:10;17784:23;17776:68;;;;-1:-1:-1;;;17776:68:0;;;;;;;:::i;:::-;66033:17:::1;:25:::0;;-1:-1:-1;;66033:25:0::1;::::0;;65978:88::o;66531:84::-;17637:6;;-1:-1:-1;;;;;17637:6:0;;;;;16368:10;17784:23;17776:68;;;;-1:-1:-1;;;17776:68:0;;;;;;;:::i;:::-;66588:11:::1;:19:::0;;-1:-1:-1;;66588:19:0::1;::::0;;66531:84::o;67883:1275::-;63487:4;67429:13;57590:10;:17;;57502:113;67429:13;:28;67421:51;;;;-1:-1:-1;;;67421:51:0;;36243:2:1;67421:51:0;;;36225:21:1;36282:2;36262:18;;;36255:30;-1:-1:-1;;;36301:18:1;;;36294:40;36351:18;;67421:51:0;36041:334:1;67421:51:0;17637:6;;;;;-1:-1:-1;;;;;17637:6:0;-1:-1:-1;;;;;67487:23:0;16368:10;-1:-1:-1;;;;;67487:23:0;;67483:101;;67535:14;;;;67527:45;;;;-1:-1:-1;;;67527:45:0;;29376:2:1;67527:45:0;;;29358:21:1;29415:2;29395:18;;;29388:30;-1:-1:-1;;;29434:18:1;;;29427:48;29492:18;;67527:45:0;29174:342:1;67527:45:0;64239:42:::1;68016:25;68027:4:::0;68033:1;68036;68039;68016:10:::1;:25::i;:::-;-1:-1:-1::0;;;;;68016:43:0::1;;68008:73;;;::::0;-1:-1:-1;;;68008:73:0;;29723:2:1;68008:73:0::1;::::0;::::1;29705:21:1::0;29762:2;29742:18;;;29735:30;-1:-1:-1;;;29781:18:1;;;29774:47;29838:18;;68008:73:0::1;29521:341:1::0;68008:73:0::1;68092:13;68108;57590:10:::0;:17;;57502:113;68108:13:::1;68092:29;;63836:2;68140:5;:21;;68132:69;;;;-1:-1:-1::0;;;68132:69:0::1;;;;;;;:::i;:::-;63487:4;68220:13;68228:5:::0;68220;:13:::1;:::i;:::-;:29;;68212:76;;;::::0;-1:-1:-1;;;68212:76:0;;37333:2:1;68212:76:0::1;::::0;::::1;37315:21:1::0;37372:2;37352:18;;;37345:30;37411:34;37391:18;;;37384:62;-1:-1:-1;;;37462:18:1;;;37455:32;37504:19;;68212:76:0::1;37131:398:1::0;68212:76:0::1;68386:15;12984:14:::0;68383:98:::1;;68454:15;68433:18;:36:::0;68383:98:::1;63657:4;68728:13;68736:5:::0;68728;:13:::1;:::i;:::-;:32;68724:288;;;68815:5;68798:16;;:22;;;;:::i;:::-;68785:9;:35;;68777:65;;;;-1:-1:-1::0;;;68777:65:0::1;;;;;;;:::i;:::-;68724:288;;;68875:25;68903:21;68913:10;68903:9;:21::i;:::-;68875:49:::0;-1:-1:-1;68976:1:0::1;68947:25;68967:5:::0;68875:49;68947:25:::1;:::i;:::-;:30;;68939:61;;;::::0;-1:-1:-1;;;68939:61:0;;41199:2:1;68939:61:0::1;::::0;::::1;41181:21:1::0;41238:2;41218:18;;;41211:30;-1:-1:-1;;;41257:18:1;;;41250:48;41315:18;;68939:61:0::1;40997:342:1::0;68939:61:0::1;68860:152;68724:288;69027:9;69022:129;69046:5;69042:1;:9;69022:129;;;69073:26;69088:10;69073:14;:26::i;:::-;69053:3:::0;::::1;::::0;::::1;:::i;:::-;;;;69022:129;;;;67997:1161;67883:1275:::0;;;;;:::o;43872:339::-;44067:41;16368:10;44086:12;44100:7;44067:18;:41::i;:::-;44059:103;;;;-1:-1:-1;;;44059:103:0;;;;;;;:::i;:::-;44175:28;44185:4;44191:2;44195:7;44175:9;:28::i;66074:89::-;17637:6;;-1:-1:-1;;;;;17637:6:0;;;;;16368:10;17784:23;17776:68;;;;-1:-1:-1;;;17776:68:0;;;;;;;:::i;:::-;66131:17:::1;:24:::0;;-1:-1:-1;;66131:24:0::1;;;::::0;;66074:89::o;57170:256::-;57267:7;57303:23;57320:5;57303:16;:23::i;:::-;57295:5;:31;57287:87;;;;-1:-1:-1;;;57287:87:0;;26679:2:1;57287:87:0;;;26661:21:1;26718:2;26698:18;;;26691:30;26757:34;26737:18;;;26730:62;-1:-1:-1;;;26808:18:1;;;26801:41;26859:19;;57287:87:0;26477:407:1;57287:87:0;-1:-1:-1;;;;;;57392:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;57170:256::o;69166:818::-;63487:4;67206:13;57590:10;:17;;57502:113;67206:13;:28;67198:51;;;;-1:-1:-1;;;67198:51:0;;36243:2:1;67198:51:0;;;36225:21:1;36282:2;36262:18;;;36255:30;-1:-1:-1;;;36301:18:1;;;36294:40;36351:18;;67198:51:0;36041:334:1;67198:51:0;17637:6;;;;;-1:-1:-1;;;;;17637:6:0;-1:-1:-1;;;;;67264:23:0;16368:10;-1:-1:-1;;;;;67264:23:0;;67260:100;;67312:17;;;;;;;67304:44;;;;-1:-1:-1;;;67304:44:0;;40035:2:1;67304:44:0;;;40017:21:1;40074:2;40054:18;;;40047:30;-1:-1:-1;;;40093:18:1;;;40086:44;40147:18;;67304:44:0;39833:338:1;67304:44:0;69236:13:::1;69252;57590:10:::0;:17;;57502:113;69252:13:::1;69236:29:::0;-1:-1:-1;63487:4:0::1;69284:13;69292:5:::0;69236:29;69284:13:::1;:::i;:::-;:29;;69276:90;;;::::0;-1:-1:-1;;;69276:90:0;;33585:2:1;69276:90:0::1;::::0;::::1;33567:21:1::0;33624:2;33604:18;;;33597:30;33663:34;33643:18;;;33636:62;-1:-1:-1;;;33714:18:1;;;33707:46;33770:19;;69276:90:0::1;33383:412:1::0;69276:90:0::1;63836:2;69385:5;:21;;69377:69;;;;-1:-1:-1::0;;;69377:69:0::1;;;;;;;:::i;:::-;63657:4;69547:13;69555:5:::0;69547;:13:::1;:::i;:::-;:32;69543:288;;;69634:5;69617:16;;:22;;;;:::i;:::-;69604:9;:35;;69596:65;;;;-1:-1:-1::0;;;69596:65:0::1;;;;;;;:::i;:::-;69543:288;;;69694:25;69722:21;69732:10;69722:9;:21::i;:::-;69694:49:::0;-1:-1:-1;69795:1:0::1;69766:25;69786:5:::0;69694:49;69766:25:::1;:::i;:::-;:30;;69758:61;;;::::0;-1:-1:-1;;;69758:61:0;;41199:2:1;69758:61:0::1;::::0;::::1;41181:21:1::0;41238:2;41218:18;;;41211:30;-1:-1:-1;;;41257:18:1;;;41250:48;41315:18;;69758:61:0::1;40997:342:1::0;69758:61:0::1;69679:152;69543:288;69846:9;69841:89;69865:5;69861:1;:9;69841:89;;;69892:26;69907:10;69892:14;:26::i;:::-;69872:3:::0;::::1;::::0;::::1;:::i;:::-;;;;69841:89;;;-1:-1:-1::0;69945:31:0::1;::::0;69965:10:::1;::::0;69958:5;;69945:31:::1;::::0;;;::::1;69225:759;69166:818:::0;:::o;67611:264::-;17637:6;;-1:-1:-1;;;;;17637:6:0;;;;;16368:10;17784:23;17776:68;;;;-1:-1:-1;;;17776:68:0;;;;;;;:::i;:::-;63538:2:::1;67721:5;67697:21;67707:10;67697:9;:21::i;:::-;:29;;;;:::i;:::-;:46;;67689:79;;;::::0;-1:-1:-1;;;67689:79:0;;36582:2:1;67689:79:0::1;::::0;::::1;36564:21:1::0;36621:2;36601:18;;;36594:30;-1:-1:-1;;;36640:18:1;;;36633:50;36700:18;;67689:79:0::1;36380:344:1::0;67689:79:0::1;67784:9;67779:89;67803:5;67799:1;:9;67779:89;;;67830:26;67845:10;67830:14;:26::i;:::-;67810:3:::0;::::1;::::0;::::1;:::i;:::-;;;;67779:89;;;;67611:264:::0;:::o;74784:162::-;74845:7;74916:21;;;:12;:21;;;;;;;;74901:37;;;;;;;;;;;;;;;-1:-1:-1;;;74901:37:0;;;;;;;;;;;-1:-1:-1;;;74901:37:0;;;;;;;;;;;-1:-1:-1;;;74901:37:0;;;;;;;;-1:-1:-1;;;74901:37:0;;;;;;;;-1:-1:-1;;;74901:37:0;;;;;;;;-1:-1:-1;;;74901:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:14;:37::i;:::-;74872:21;;;;:12;:21;;;;;:26;;;:66;;;;:::i;65534:65::-;17637:6;;-1:-1:-1;;;;;17637:6:0;;;;;16368:10;17784:23;17776:68;;;;-1:-1:-1;;;17776:68:0;;;;;;;:::i;:::-;65581:10:::1;:8;:10::i;:::-;65534:65::o:0;44282:185::-;44420:39;44437:4;44443:2;44447:7;44420:39;;;;;;;;;;;;:16;:39::i;53594:245::-;53712:41;16368:10;53731:12;16288:98;53712:41;53704:102;;;;-1:-1:-1;;;53704:102:0;;40782:2:1;53704:102:0;;;40764:21:1;40821:2;40801:18;;;40794:30;40860:34;40840:18;;;40833:62;-1:-1:-1;;;40911:18:1;;;40904:46;40967:19;;53704:102:0;40580:412:1;53704:102:0;53817:14;53823:7;53817:5;:14::i;:::-;53594:245;:::o;65887:83::-;17637:6;;-1:-1:-1;;;;;17637:6:0;;;;;16368:10;17784:23;17776:68;;;;-1:-1:-1;;;17776:68:0;;;;;;;:::i;:::-;65941:14:::1;:21:::0;;-1:-1:-1;;65941:21:0::1;65958:4;65941:21;::::0;;65887:83::o;65797:82::-;17637:6;;-1:-1:-1;;;;;17637:6:0;;;;;16368:10;17784:23;17776:68;;;;-1:-1:-1;;;17776:68:0;;;;;;;:::i;:::-;65849:14:::1;:22:::0;;-1:-1:-1;;65849:22:0::1;::::0;;65797:82::o;85241:353::-;85303:16;85332:18;85353:17;85363:6;85353:9;:17::i;:::-;85332:38;;85383:25;85425:10;85411:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;85411:25:0;;85383:53;;85452:9;85447:112;85471:10;85467:1;:14;85447:112;;;85517:30;85537:6;85545:1;85517:19;:30::i;:::-;85503:8;85512:1;85503:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;85483:3;;;;:::i;:::-;;;;85447:112;;;-1:-1:-1;85578:8:0;85241:353;-1:-1:-1;;;85241:353:0:o;66393:130::-;17637:6;;-1:-1:-1;;;;;17637:6:0;;;;;16368:10;17784:23;17776:68;;;;-1:-1:-1;;;17776:68:0;;;;;;;:::i;:::-;66448:11:::1;:18:::0;;-1:-1:-1;;66448:18:0::1;66462:4;66448:18;::::0;;66500:15:::1;66477:20;:38:::0;66393:130::o;66840:124::-;17637:6;;-1:-1:-1;;;;;17637:6:0;;;;;16368:10;17784:23;17776:68;;;;-1:-1:-1;;;17776:68:0;;;;;;;:::i;:::-;66922:14:::1;:34:::0;66840:124::o;57692:233::-;57767:7;57803:30;57590:10;:17;;57502:113;57803:30;57795:5;:38;57787:95;;;;-1:-1:-1;;;57787:95:0;;39622:2:1;57787:95:0;;;39604:21:1;39661:2;39641:18;;;39634:30;39700:34;39680:18;;;39673:62;-1:-1:-1;;;39751:18:1;;;39744:42;39803:19;;57787:95:0;39420:408:1;57787:95:0;57900:10;57911:5;57900:17;;;;;;;;:::i;:::-;;;;;;;;;57893:24;;57692:233;;;:::o;66972:187::-;17637:6;;-1:-1:-1;;;;;17637:6:0;;;;;16368:10;17784:23;17776:68;;;;-1:-1:-1;;;17776:68:0;;;;;;;:::i;:::-;67056:9:::1;67051:101;67075:9;:16;67071:1;:20;67051:101;;;67139:1;67113:9;:23;67123:9;67133:1;67123:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;67113:23:0::1;-1:-1:-1::0;;;;;67113:23:0::1;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;67093:3;;;;;:::i;:::-;;;;67051:101;;74162:614:::0;74258:23;;;;74250:51;;;;-1:-1:-1;;;74250:51:0;;27510:2:1;74250:51:0;;;27492:21:1;27549:2;27529:18;;;27522:30;-1:-1:-1;;;27568:18:1;;;27561:44;27622:18;;74250:51:0;27308:338:1;74250:51:0;74340:10;74320:16;74328:7;74320;:16::i;:::-;-1:-1:-1;;;;;74320:30:0;;74312:64;;;;-1:-1:-1;;;74312:64:0;;;;;;;:::i;:::-;74439:8;74408:39;;:30;;:39;;;;:::i;:::-;74395:9;:52;;74387:81;;;;-1:-1:-1;;;74387:81:0;;;;;;;:::i;:::-;74479:19;74531:21;;;:12;:21;;;;;:40;;;74501:15;;74531:58;-1:-1:-1;74527:145:0;;;-1:-1:-1;74620:21:0;;;;:12;:21;;;;;:40;;;74527:145;74749:18;:8;74759:7;74749:18;:::i;:::-;74732:35;;;;:14;:35;:::i;:::-;74682:86;;:12;:21;74695:7;74682:21;;;;;;;;;;;:40;;:86;;;;74239:537;74162:614;;:::o;75712:394::-;75802:32;75837:24;;;:15;:24;;;;;;;;75802:59;;;;;;;;;;;;;;;;;75773:16;;75802:32;;;:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;75802:59:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;75881:15:0;;75802:59;;-1:-1:-1;75872:8:0;;-1:-1:-1;75952:5:0;;-1:-1:-1;75956:1:0;75881:15;75952:5;:::i;:::-;75937:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;75937:21:0;-1:-1:-1;75907:51:0;-1:-1:-1;75993:1:0;75986:85;75998:3;75996:1;:5;75986:85;;;76040:8;76049:1;76040:11;;;;;;;;:::i;:::-;;;;;;;:19;;;76022:37;;:10;76035:1;76033;:3;;;;:::i;:::-;76022:15;;;;;;;;:::i;:::-;;;;;;;;;;:37;76003:3;;;;:::i;:::-;;;;75986:85;;;-1:-1:-1;76088:10:0;75712:394;-1:-1:-1;;;;75712:394:0:o;41257:239::-;41329:7;41365:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41365:16:0;41400:19;41392:73;;;;-1:-1:-1;;;41392:73:0;;32769:2:1;41392:73:0;;;32751:21:1;32808:2;32788:18;;;32781:30;32847:34;32827:18;;;32820:62;-1:-1:-1;;;32898:18:1;;;32891:39;32947:19;;41392:73:0;32567:405:1;40987:208:0;41059:7;-1:-1:-1;;;;;41087:19:0;;41079:74;;;;-1:-1:-1;;;41079:74:0;;31948:2:1;41079:74:0;;;31930:21:1;31987:2;31967:18;;;31960:30;32026:34;32006:18;;;31999:62;-1:-1:-1;;;32077:18:1;;;32070:40;32127:19;;41079:74:0;31746:406:1;41079:74:0;-1:-1:-1;;;;;;41171:16:0;;;;;:9;:16;;;;;;;40987:208::o;18215:103::-;17637:6;;-1:-1:-1;;;;;17637:6:0;;;;;16368:10;17784:23;17776:68;;;;-1:-1:-1;;;17776:68:0;;;;;;;:::i;:::-;18280:30:::1;18307:1;18280:18;:30::i;66731:101::-:0;17637:6;;-1:-1:-1;;;;;17637:6:0;;;;;16368:10;17784:23;17776:68;;;;-1:-1:-1;;;17776:68:0;;;;;;;:::i;:::-;66794:23:::1;:30:::0;;-1:-1:-1;;66794:30:0::1;66820:4;66794:30;::::0;;66731:101::o;66171:102::-;17637:6;;-1:-1:-1;;;;;17637:6:0;;;;;16368:10;17784:23;17776:68;;;;-1:-1:-1;;;17776:68:0;;;;;;;:::i;:::-;66241:16:::1;:24:::0;66171:102::o;65465:61::-;17637:6;;-1:-1:-1;;;;;17637:6:0;;;;;16368:10;17784:23;17776:68;;;;-1:-1:-1;;;17776:68:0;;;;;;;:::i;:::-;65510:8:::1;:6;:8::i;85602:257::-:0;17637:6;;-1:-1:-1;;;;;17637:6:0;;;;;16368:10;17784:23;17776:68;;;;-1:-1:-1;;;17776:68:0;;;;;;;:::i;:::-;85679:21:::1;85719:11:::0;85711:20:::1;;;::::0;::::1;;85742:50;64026:42;85767:24;85787:3;85767:15;:7:::0;85779:2:::1;85767:11;:15::i;:::-;:19:::0;::::1;:24::i;:::-;85742:10;:50::i;:::-;85803:48;64115:42;85829:21;85803:10;:48::i;65150:59::-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65150:59:0;;-1:-1:-1;65150:59:0;;;;;-1:-1:-1;;;65150:59:0;;;;:::o;41732:104::-;41788:13;41821:7;41814:14;;;;;:::i;43415:155::-;43510:52;16368:10;43543:8;43553;43510:18;:52::i;79612:1497::-;79714:9;;79692:19;79757:21;;;:12;:21;;;;;;;;79734:44;;;;;;;;;;;;;;;-1:-1:-1;;;79734:44:0;;;;;;;;-1:-1:-1;;;79734:44:0;;;;;;;;-1:-1:-1;;;79734:44:0;;;;79666:13;79734:44;;;;;;;-1:-1:-1;;;79734:44:0;;;;;;;;-1:-1:-1;;;79734:44:0;;;;;;;;-1:-1:-1;;;79734:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79824:24;;;:15;:24;;;;;79789:59;;;;;;;;;;;;;;;;;79666:13;;79714:9;79734:44;;79692:19;;79789:59;79824:24;;79692:19;;79789:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;79789:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;79859:6;79876:8;79885;:15;79876:24;;79913:15;79931:21;79945:6;79931:13;:21::i;:::-;79913:39;;79982:14;79969:10;:27;79965:84;;;80027:10;80012:25;;79965:84;80059:18;80079:39;80087:14;80103;80079:7;:39::i;:::-;80059:59;;80131:31;80216:41;80234:6;:22;;;80216:41;;:17;:41::i;:::-;80172:91;;;;;;;;:::i;:::-;;;;;;;;;;;;;80131:133;;80280:35;80292:4;80297:17;80280:11;:35::i;:::-;80275:40;;80335:1;80333:3;;80328:646;80340:3;80338:1;:5;80328:646;;;80364:10;80377:8;80392:1;80386:5;80390:1;80386:3;:5;:::i;:::-;:7;;;;:::i;:::-;80377:17;;;;;;;;:::i;:::-;;;;;;;:23;;;80364:36;;;;80415:20;80438:25;80450:1;80439:10;:12;;;;:::i;:::-;80438:23;:25::i;:::-;80415:48;;80482:23;80614:6;80732:24;80750:5;80732:17;:24::i;:::-;80515:256;;;;;;;;;:::i;:::-;;;;;;;;;;;;;80482:290;;80794:27;80806:4;80811:9;80794:11;:27::i;:::-;80787:34;-1:-1:-1;80836:19:0;80894:8;80909:1;80903:5;80907:1;80903:3;:5;:::i;:::-;:7;;;;:::i;:::-;80894:17;;;;;;;;:::i;:::-;;;;;;;:28;;;80870:8;80885:1;80883;80879:3;:5;;;;:::i;:::-;:7;;;;:::i;:::-;80870:17;;;;;;;;:::i;:::-;;;;;;;:22;;;80859:10;:33;;;;:::i;:::-;80858:64;;;;:::i;:::-;80836:86;-1:-1:-1;80937:25:0;80836:86;80937:25;;:::i;:::-;;;80349:625;;;;80345:3;;;;;:::i;:::-;;;;80328:646;;;81045:46;81076:4;81059:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;81045:13;:46::i;:::-;80998:94;;;;;;;;:::i;:::-;;;;;;;;;;;;;80984:109;;;;;;;;;;79612:1497;;;:::o;44538:328::-;44713:41;16368:10;44746:7;44713:18;:41::i;:::-;44705:103;;;;-1:-1:-1;;;44705:103:0;;;;;;;:::i;:::-;44819:39;44833:4;44839:2;44843:7;44852:5;44819:13;:39::i;:::-;44538:328;;;;:::o;75566:138::-;75629:23;75672:15;:24;75688:7;75672:24;;;;;;;;;;;75665:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;75665:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;75566:138;;;:::o;71141:1733::-;20235:7;;;;71226:9;71218:36;;;;-1:-1:-1;;;71218:36:0;;35900:2:1;71218:36:0;;;35882:21:1;35939:2;35919:18;;;35912:30;-1:-1:-1;;;35958:18:1;;;35951:44;36012:18;;71218:36:0;35698:338:1;71218:36:0;71301:10;71273:24;71281:15;71273:7;:24::i;:::-;-1:-1:-1;;;;;71273:38:0;;71265:72;;;;-1:-1:-1;;;71265:72:0;;;;;;;:::i;:::-;71348:29;71380;;;:12;:29;;;;;;;;;71428;;;;;;;;;;;;;;;-1:-1:-1;;;71428:29:0;;;;;;;;;;;-1:-1:-1;;;71428:29:0;;;;;;;;;;;-1:-1:-1;;;71428:29:0;;;;;;;;-1:-1:-1;;;71428:29:0;;;;;;;;-1:-1:-1;;;71428:29:0;;;;;;;;-1:-1:-1;;;71428:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71380;71428;;81798:21;;;81823:15;-1:-1:-1;81798:40:0;;81707:140;71428:29;71420:66;;;;-1:-1:-1;;;71420:66:0;;34002:2:1;71420:66:0;;;33984:21:1;34041:2;34021:18;;;34014:30;34080:26;34060:18;;;34053:54;34124:18;;71420:66:0;33800:348:1;71420:66:0;71497:25;71525;;;:12;:25;;;;;;;;;71569:29;;;;;;;;;;;;;;;-1:-1:-1;;;71569:29:0;;;;;;;;;;;-1:-1:-1;;;71569:29:0;;;;;;;;;;;-1:-1:-1;;;71569:29:0;;;;;;;;-1:-1:-1;;;71569:29:0;;;;;;;;-1:-1:-1;;;71569:29:0;;;;;;;;-1:-1:-1;;;71569:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71525:25;71569:29;;81950:25;;;81979:15;-1:-1:-1;81950:44:0;;81855:148;71569:29;71561:79;;;;-1:-1:-1;;;71561:79:0;;33179:2:1;71561:79:0;;;33161:21:1;33218:2;33198:18;;;33191:30;33257:34;33237:18;;;33230:62;-1:-1:-1;;;33308:18:1;;;33301:35;33353:19;;71561:79:0;32977:401:1;71561:79:0;71673:30;71687:15;71673:13;:30::i;:::-;71651:19;;;:52;71732:26;71746:11;71732:13;:26::i;:::-;71714:15;;;:44;;;71807:15;71769:35;;;;:53;;;71833:31;;:49;71902:15;71928:2;;71922:3;;71902:18;;71918:2;71902:18;:::i;:::-;71901:24;;;;:::i;:::-;:29;71893:90;;;;-1:-1:-1;;;71893:90:0;;37736:2:1;71893:90:0;;;37718:21:1;37775:2;37755:18;;;37748:30;37814:34;37794:18;;;37787:62;-1:-1:-1;;;37865:18:1;;;37858:46;37921:19;;71893:90:0;37534:412:1;71893:90:0;72024:10;:15;;;72002:14;:19;;;:37;71994:82;;;;-1:-1:-1;;;71994:82:0;;39261:2:1;71994:82:0;;;39243:21:1;;;39280:18;;;39273:30;39339:34;39319:18;;;39312:62;39391:18;;71994:82:0;39059:356:1;71994:82:0;72087:22;72131:3;72111:10;:15;;;72127:2;72111:18;;;;:::i;:::-;72110:24;;;;:::i;:::-;72087:47;;72218:14;72200:10;:15;;;:32;;;;:::i;:::-;72182:10;:15;;:50;;;;72287:14;72265;:19;;;:36;;;;:::i;:::-;72243:19;;;;:58;;;72349:90;;;;;;;;;;;;;;;;;;72401:16;;;-1:-1:-1;;;72401:16:0;;;;;72349:90;;;;;;;;;;;;;;;72312:34;72450:32;;;:15;:32;;;;;:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;72450:51:0;-1:-1:-1;;72450:51:0;;;;;;;;;;;;;;;;;72512:25;;-1:-1:-1;;;72512:25:0;;;72243:14;72512:23;:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;72548:23;;-1:-1:-1;;;72548:23:0;;;;-1:-1:-1;72548:23:0;:21;:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;72582:35;72602:14;72582:19;:35::i;:::-;72628:33;72650:10;72628:21;:33::i;:::-;72698:9;;72676:14;:19;;;:31;72672:140;;;72771:4;72751:14;:19;;;:24;;;;:::i;:::-;72750:30;;72779:1;72750:30;:::i;:::-;72749:37;;72782:4;72749:37;:::i;:::-;72737:9;:49;72672:140;72827:39;;72854:11;;72837:15;;72827:39;;;;;71207:1667;;;;71141:1733;;:::o;86249:287::-;86416:58;;11594:66:1;86416:58:0;;;11582:79:1;11677:12;;;11670:28;;;86353:14:0;;;;11714:12:1;;86416:58:0;;;-1:-1:-1;;86416:58:0;;;;;;;;;86406:69;;86416:58;86406:69;;;;86495:33;;;;;;;;;24961:25:1;;;25034:4;25022:17;;25002:18;;;24995:45;;;;25056:18;;;25049:34;;;25099:18;;;25092:34;;;86406:69:0;-1:-1:-1;86495:33:0;;24933:19:1;;86495:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86488:40;;;86249:287;;;;;;;:::o;84029:226::-;46441:4;46465:16;;;:7;:16;;;;;;84128:13;;-1:-1:-1;;;;;46465:16:0;84154:46;;;;-1:-1:-1;;;84154:46:0;;31602:2:1;84154:46:0;;;31584:21:1;31641:2;31621:18;;;31614:30;-1:-1:-1;;;31660:18:1;;;31653:47;31717:18;;84154:46:0;31400:341:1;84154:46:0;84220:27;84239:7;84220:18;:27::i;73801:353::-;73897:23;;;;73889:51;;;;-1:-1:-1;;;73889:51:0;;27510:2:1;73889:51:0;;;27492:21:1;27549:2;27529:18;;;27522:30;-1:-1:-1;;;27568:18:1;;;27561:44;27622:18;;73889:51:0;27308:338:1;73889:51:0;73979:10;73959:16;73967:7;73959;:16::i;:::-;-1:-1:-1;;;;;73959:30:0;;73951:64;;;;-1:-1:-1;;;73951:64:0;;;;;;;:::i;:::-;74047:22;;74034:9;:35;;74026:64;;;;-1:-1:-1;;;74026:64:0;;;;;;;:::i;:::-;74101:21;;;;:12;:21;;;;;;:45;;;;;;-1:-1:-1;;;74101:45:0;-1:-1:-1;;;;74101:45:0;;;;;;;;;73801:353::o;66623:100::-;17637:6;;-1:-1:-1;;;;;17637:6:0;;;;;16368:10;17784:23;17776:68;;;;-1:-1:-1;;;17776:68:0;;;;;;;:::i;:::-;66684:23:::1;:31:::0;;-1:-1:-1;;66684:31:0::1;::::0;;66623:100::o;72882:911::-;20235:7;;;;72990:9;72982:36;;;;-1:-1:-1;;;72982:36:0;;35900:2:1;72982:36:0;;;35882:21:1;35939:2;35919:18;;;35912:30;-1:-1:-1;;;35958:18:1;;;35951:44;36012:18;;72982:36:0;35698:338:1;72982:36:0;73065:10;73037:24;73045:15;73037:7;:24::i;:::-;-1:-1:-1;;;;;73037:38:0;;73029:72;;;;-1:-1:-1;;;73029:72:0;;;;;;;:::i;:::-;73112:29;73144;;;:12;:29;;;;;;73212:25;;;;;73270:30;73157:15;73270:13;:30::i;:::-;73248:19;;;:52;73329:26;73343:11;73329:13;:26::i;:::-;73311:15;;;;:44;;;;73404:15;73366:35;;;;:53;;;73430:31;;:49;73499:19;;;73529:2;;73499:26;;73521:4;;73499:26;:::i;:::-;73498:33;73490:87;;;;-1:-1:-1;;;73490:87:0;;32359:2:1;73490:87:0;;;32341:21:1;32398:2;32378:18;;;32371:30;32437:34;32417:18;;;32410:62;-1:-1:-1;;;32488:18:1;;;32481:39;32537:19;;73490:87:0;32157:405:1;73490:87:0;73618:10;:15;;;73596:14;:19;;;:37;73588:87;;;;-1:-1:-1;;;73588:87:0;;26273:2:1;73588:87:0;;;26255:21:1;26312:2;26292:18;;;26285:30;26351:34;26331:18;;;26324:62;-1:-1:-1;;;26402:18:1;;;26395:35;26447:19;;73588:87:0;26071:401:1;73588:87:0;73722:4;73704:10;:15;;;:22;;;;:::i;:::-;73686:10;:15;;:40;;;;73781:4;73759:14;:19;;;:26;;;;:::i;:::-;73737:14;:19;;:48;;;;72971:822;;72882:911;;;:::o;65701:88::-;17637:6;;-1:-1:-1;;;;;17637:6:0;;;;;16368:10;17784:23;17776:68;;;;-1:-1:-1;;;17776:68:0;;;;;;;:::i;:::-;65765:9:::1;:16:::0;65701:88::o;66281:104::-;17637:6;;-1:-1:-1;;;;;17637:6:0;;;;;16368:10;17784:23;17776:68;;;;-1:-1:-1;;;17776:68:0;;;;;;;:::i;:::-;66352:17:::1;:25:::0;66281:104::o;18473:201::-;17637:6;;-1:-1:-1;;;;;17637:6:0;;;;;16368:10;17784:23;17776:68;;;;-1:-1:-1;;;17776:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18562:22:0;::::1;18554:73;;;::::0;-1:-1:-1;;;18554:73:0;;27853:2:1;18554:73:0::1;::::0;::::1;27835:21:1::0;27892:2;27872:18;;;27865:30;27931:34;27911:18;;;27904:62;-1:-1:-1;;;27982:18:1;;;27975:36;28028:19;;18554:73:0::1;27651:402:1::0;18554:73:0::1;18638:28;18657:8;18638:18;:28::i;56862:224::-:0;56964:4;-1:-1:-1;;;;;;56988:50:0;;-1:-1:-1;;;56988:50:0;;:90;;;57042:36;57066:11;57042:23;:36::i;50358:174::-;50433:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;50433:29:0;-1:-1:-1;;;;;50433:29:0;;;;;;;;:24;;50487:23;50433:24;50487:14;:23::i;:::-;-1:-1:-1;;;;;50478:46:0;;;;;;;;;;;50358:174;;:::o;69992:211::-;70047:15;70065:25;:15;12984:14;;12892:114;70065:25;70047:43;;70101:27;:15;13103:19;;13121:1;13103:19;;;13014:127;70101:27;70139:23;70154:7;70139:14;:23::i;:::-;70173:22;70183:2;70187:7;70173:9;:22::i;46670:348::-;46763:4;46465:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46465:16:0;46780:73;;;;-1:-1:-1;;;46780:73:0;;30419:2:1;46780:73:0;;;30401:21:1;30458:2;30438:18;;;30431:30;30497:34;30477:18;;;30470:62;-1:-1:-1;;;30548:18:1;;;30541:42;30600:19;;46780:73:0;30217:408:1;46780:73:0;46864:13;46880:23;46895:7;46880:14;:23::i;:::-;46864:39;;46933:5;-1:-1:-1;;;;;46922:16:0;:7;-1:-1:-1;;;;;46922:16:0;;:51;;;;46966:7;-1:-1:-1;;;;;46942:31:0;:20;46954:7;46942:11;:20::i;:::-;-1:-1:-1;;;;;46942:31:0;;46922:51;:87;;;-1:-1:-1;;;;;;43762:25:0;;;43738:4;43762:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;46977:32;43641:164;49662:578;49821:4;-1:-1:-1;;;;;49794:31:0;:23;49809:7;49794:14;:23::i;:::-;-1:-1:-1;;;;;49794:31:0;;49786:85;;;;-1:-1:-1;;;49786:85:0;;35490:2:1;49786:85:0;;;35472:21:1;35529:2;35509:18;;;35502:30;35568:34;35548:18;;;35541:62;-1:-1:-1;;;35619:18:1;;;35612:39;35668:19;;49786:85:0;35288:405:1;49786:85:0;-1:-1:-1;;;;;49890:16:0;;49882:65;;;;-1:-1:-1;;;49882:65:0;;28617:2:1;49882:65:0;;;28599:21:1;28656:2;28636:18;;;28629:30;28695:34;28675:18;;;28668:62;-1:-1:-1;;;28746:18:1;;;28739:34;28790:19;;49882:65:0;28415:400:1;49882:65:0;49960:39;49981:4;49987:2;49991:7;49960:20;:39::i;:::-;50064:29;50081:1;50085:7;50064:8;:29::i;:::-;-1:-1:-1;;;;;50106:15:0;;;;;;:9;:15;;;;;:20;;50125:1;;50106:15;:20;;50125:1;;50106:20;:::i;:::-;;;;-1:-1:-1;;;;;;;50137:13:0;;;;;;:9;:13;;;;;:18;;50154:1;;50137:13;:18;;50154:1;;50137:18;:::i;:::-;;;;-1:-1:-1;;50166:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;50166:21:0;-1:-1:-1;;;;;50166:21:0;;;;;;;;;50205:27;;50166:16;;50205:27;;;;;;;49662:578;;;:::o;75101:457::-;75194:11;;75170:7;;75194:11;;75190:360;;;75247:6;:27;;;75224:20;;:50;75220:212;;;75372:14;;75343:6;:27;;;75320:20;;:50;;;;:::i;:::-;75319:67;;;;:::i;:::-;75300:6;:17;;;:87;;;;;;:::i;75220:212::-;-1:-1:-1;75431:1:0;;75101:457;-1:-1:-1;75101:457:0:o;75190:360::-;75535:14;;75506:27;;;;75488:45;;:15;:45;:::i;75190:360::-;75101:457;;;:::o;21223:120::-;20235:7;;;;20759:41;;;;-1:-1:-1;;;20759:41:0;;25924:2:1;20759:41:0;;;25906:21:1;25963:2;25943:18;;;25936:30;-1:-1:-1;;;25982:18:1;;;25975:50;26042:18;;20759:41:0;25722:344:1;20759:41:0;21282:7:::1;:15:::0;;-1:-1:-1;;21282:15:0::1;::::0;;21313:22:::1;16368:10:::0;21322:12:::1;21313:22;::::0;-1:-1:-1;;;;;22330:32:1;;;22312:51;;22300:2;22285:18;21313:22:0::1;;;;;;;21223:120::o:0;83589:115::-;83676:20;83688:7;83676:11;:20::i;18834:191::-;18927:6;;;-1:-1:-1;;;;;18944:17:0;;;18927:6;18944:17;;;-1:-1:-1;;;;;;18944:17:0;;;;;;18977:40;;18927:6;;;;;;;;18977:40;;18908:16;;18977:40;18897:128;18834:191;:::o;20964:118::-;20235:7;;;;20489:9;20481:38;;;;-1:-1:-1;;;20481:38:0;;30832:2:1;20481:38:0;;;30814:21:1;30871:2;30851:18;;;30844:30;-1:-1:-1;;;30890:18:1;;;30883:46;30946:18;;20481:38:0;30630:340:1;20481:38:0;21024:7:::1;:14:::0;;-1:-1:-1;;21024:14:0::1;21034:4;21024:14;::::0;;21054:20:::1;21061:12;16368:10:::0;;16288:98;8593;8651:7;8678:5;8682:1;8678;:5;:::i;:::-;8671:12;8593:98;-1:-1:-1;;;8593:98:0:o;8992:::-;9050:7;9077:5;9081:1;9077;:5;:::i;85867:181::-;85942:12;85960:8;-1:-1:-1;;;;;85960:13:0;85981:7;85960:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85941:52;;;86012:7;86004:36;;;;-1:-1:-1;;;86004:36:0;;38153:2:1;86004:36:0;;;38135:21:1;38192:2;38172:18;;;38165:30;-1:-1:-1;;;38211:18:1;;;38204:46;38267:18;;86004:36:0;37951:340:1;50674:315:0;50829:8;-1:-1:-1;;;;;50820:17:0;:5;-1:-1:-1;;;;;50820:17:0;;;50812:55;;;;-1:-1:-1;;;50812:55:0;;29022:2:1;50812:55:0;;;29004:21:1;29061:2;29041:18;;;29034:30;29100:27;29080:18;;;29073:55;29145:18;;50812:55:0;28820:349:1;50812:55:0;-1:-1:-1;;;;;50878:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;50878:46:0;;;;;;;;;;50940:41;;24682::1;;;50940::0;;24655:18:1;50940:41:0;;;;;;;50674:315;;;:::o;74954:139::-;75022:7;75063:22;75078:6;75063:14;:22::i;:::-;75049:6;:11;;;:36;;;;:::i;81117:254::-;81187:13;81266:16;:5;:14;:16::i;:::-;81289:17;:6;:15;:17::i;:::-;81227:135;;;;;;;;;:::i;:::-;;;;;;;;;;;;;81213:150;;81117:254;;;;:::o;76114:439::-;76227:12;;;76237:1;76227:12;;;;;;;;;76179:13;;76205:19;;76227:12;;;;;;;;;;;-1:-1:-1;76227:12:0;76205:34;;76250:19;-1:-1:-1;;;76250:40:0;;-1:-1:-1;;;76301:6:0;76308:1;76301:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;76301:15:0;;;;;;;;-1:-1:-1;76344:1:0;76327:121;76347:5;;76327:121;;76386:11;76398:5;76406:3;76398:11;76386:24;;;;;;;:::i;:::-;;;;76374:6;76381:1;76374:9;;;;;;;;:::i;:::-;;;;:36;-1:-1:-1;;;;;76374:36:0;;;;;;;;-1:-1:-1;76435:1:0;76425:11;;;;;76354:3;;;:::i;:::-;;;76327:121;;;-1:-1:-1;76466:10:0;;76458:55;;;;-1:-1:-1;;;76458:55:0;;25563:2:1;76458:55:0;;;25545:21:1;;;25582:18;;;25575:30;25641:34;25621:18;;;25614:62;25693:18;;76458:55:0;25361:356:1;76458:55:0;-1:-1:-1;76538:6:0;76114:439;-1:-1:-1;;76114:439:0:o;83712:169::-;83800:13;83856:7;83864;83839:33;;;;;;;;;:::i;13850:723::-;13906:13;14127:10;14123:53;;-1:-1:-1;;14154:10:0;;;;;;;;;;;;-1:-1:-1;;;14154:10:0;;;;;13850:723::o;14123:53::-;14201:5;14186:12;14242:78;14249:9;;14242:78;;14275:8;;;;:::i;:::-;;-1:-1:-1;14298:10:0;;-1:-1:-1;14306:2:0;14298:10;;:::i;:::-;;;14242:78;;;14330:19;14362:6;14352:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14352:17:0;;14330:39;;14380:154;14387:10;;14380:154;;14414:11;14424:1;14414:11;;:::i;:::-;;-1:-1:-1;14483:10:0;14491:2;14483:5;:10;:::i;:::-;14470:24;;:2;:24;:::i;:::-;14457:39;;14440:6;14447;14440:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;14440:56:0;;;;;;;;-1:-1:-1;14511:11:0;14520:2;14511:11;;:::i;:::-;;;14380:154;;827:1912;885:13;915:4;:11;930:1;915:16;911:31;;;-1:-1:-1;;933:9:0;;;;;;;;;-1:-1:-1;933:9:0;;;827:1912::o;911:31::-;994:19;1016:12;;;;;;;;;;;;;;;;;994:34;;1080:18;1126:1;1107:4;:11;1121:1;1107:15;;;;:::i;:::-;1106:21;;;;:::i;:::-;1101:27;;:1;:27;:::i;:::-;1080:48;-1:-1:-1;1211:20:0;1245:15;1080:48;1258:2;1245:15;:::i;:::-;1234:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1234:27:0;;1211:50;;1358:10;1350:6;1343:26;1453:1;1446:5;1442:13;1512:4;1563;1557:11;1548:7;1544:25;1659:2;1651:6;1647:15;1732:754;1751:6;1742:7;1739:19;1732:754;;;1851:1;1842:7;1838:15;1827:26;;1890:7;1884:14;2016:4;2008:5;2004:2;2000:14;1996:25;1986:8;1982:40;1976:47;1965:9;1957:67;2070:1;2059:9;2055:17;2042:30;;2149:4;2141:5;2137:2;2133:14;2129:25;2119:8;2115:40;2109:47;2098:9;2090:67;2203:1;2192:9;2188:17;2175:30;;2282:4;2274:5;2271:1;2266:14;2262:25;2252:8;2248:40;2242:47;2231:9;2223:67;2336:1;2325:9;2321:17;2308:30;;2415:4;2407:5;2395:25;2385:8;2381:40;2375:47;2364:9;2356:67;-1:-1:-1;2469:1:0;2454:17;1732:754;;;2559:1;2552:4;2546:11;2542:19;2580:1;2575:54;;;;2648:1;2643:52;;;;2535:160;;2575:54;-1:-1:-1;;;;;2591:17:0;;2584:43;2575:54;;2643:52;-1:-1:-1;;;;;2659:17:0;;2652:41;2535:160;-1:-1:-1;2725:6:0;;827:1912;-1:-1:-1;;;;;;;;827:1912:0:o;45748:315::-;45905:28;45915:4;45921:2;45925:7;45905:9;:28::i;:::-;45952:48;45975:4;45981:2;45985:7;45994:5;45952:22;:48::i;:::-;45944:111;;;;-1:-1:-1;;;45944:111:0;;;;;;;:::i;81379:152::-;81500:22;;81482:40;;81500:22;;81482:15;:40;:::i;:::-;81451:72;;:21;;;;:72;81379:152::o;81539:160::-;81666:24;;81648:42;;-1:-1:-1;;;81666:24:0;;;;81648:15;:42;:::i;:::-;81613:78;;:25;;;;:78;81539:160::o;84263:750::-;84330:13;84401:10;83975:38;;;;;;;;;;;;;;;;;;83889:132;84401:10;84426:567;84521:18;:7;:16;:18::i;:::-;84804:30;84826:7;84804:21;:30::i;:::-;84921:33;84935:18;84945:7;84935:9;:18::i;:::-;84921:13;:33::i;:::-;84440:552;;;;;;;;;;:::i;84426:567::-;84370:634;;;;;;;;;:::i;:::-;;;;;;;;;;;;;84356:649;;84263:750;;;:::o;40618:305::-;40720:4;-1:-1:-1;;;;;;40757:40:0;;-1:-1:-1;;;40757:40:0;;:105;;-1:-1:-1;;;;;;;40814:48:0;;-1:-1:-1;;;40814:48:0;40757:105;:158;;;-1:-1:-1;;;;;;;;;;32423:40:0;;;40879:36;32314:157;70219:914;86157:52;;;86174:16;86157:52;;;;22034:19:1;;;;86191:12:0;22069::1;;;22062:28;22106:12;;;;22099:28;;;86157:52:0;;;;;;;;;;22143:12:1;;;;86157:52:0;;;86147:63;;;;;70329:12;70349:17;70364:2;70279:39;70349:17;:::i;:::-;70344:22;;:2;:22;:::i;:::-;70329:37;-1:-1:-1;70377:22:0;70408:30;70436:2;70431:1;70415:17;;;70408:30;:::i;:::-;70403:35;;:2;:35;:::i;:::-;70402:51;;70443:9;70402:51;:::i;:::-;70377:76;-1:-1:-1;70464:24:0;70498:31;70527:2;70521;70505:18;;;70498:31;:::i;:::-;70493:36;;:2;:36;:::i;:::-;70492:52;;70534:9;70492:52;:::i;:::-;70464:80;-1:-1:-1;70575:1:0;70555:17;70641:10;70649:2;70641:7;:10;:::i;:::-;70640:14;;70653:1;70640:14;:::i;:::-;86157:52;;;86174:16;86157:52;;;;22034:19:1;;;;86191:12:0;22069::1;;;22062:28;70619:15:0;22106:12:1;;;;22099:28;;;;86157:52:0;;;;;;;;;;22143:12:1;;;;86157:52:0;;;86147:63;;;;;70610:44;;70658:8;70602:64;70587:79;;70677:15;70695:141;;;;;;;;70702:15;70695:141;;;;;;70719:17;70695:141;;;;;;70738:10;70695:141;;;;;;70750:5;70695:141;;;;;;70757:1;70695:141;;;;;;70760:1;70695:141;;;;;;70763:8;70695:141;;;;;;70773:4;70695:141;;;;70779:15;70695:141;;;;70796:15;70695:141;;;;70819:15;70695:141;;;70677:159;;70871:1;70847:12;:21;70860:7;70847:21;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70883:30;70916:50;;;;;;;;70931:4;70916:50;;;;70937:4;70916:50;;;;70943:5;70916:50;;;;;;70957:7;70916:50;;;;;70883:83;;70977:15;:24;70993:7;70977:24;;;;;;;;;;;71007:8;70977:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71115:10;71057:68;;71098:14;;71077:18;;71059:15;:36;;;;:::i;:::-;71058:55;;;;:::i;:::-;71057:68;;;;:::i;:::-;71027:21;;;;:12;:21;;;;;:26;;:98;;:26;;:21;:98;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;;;;;70219:914:0:o;47360:110::-;47436:26;47446:2;47450:7;47436:26;;;;;;;;;;;;:9;:26::i;83286:227::-;20235:7;;;;20489:9;20481:38;;;;-1:-1:-1;;;20481:38:0;;30832:2:1;20481:38:0;;;30814:21:1;30871:2;30851:18;;;30844:30;-1:-1:-1;;;30890:18:1;;;30883:46;30946:18;;20481:38:0;30630:340:1;20481:38:0;83460:45:::1;83487:4;83493:2;83497:7;83460:26;:45::i;55638:206::-:0;55707:20;55719:7;55707:11;:20::i;:::-;55750:19;;;;:10;:19;;;;;55744:33;;;;;:::i;:::-;:38;;-1:-1:-1;55740:97:0;;55806:19;;;;:10;:19;;;;;55799:26;;;:::i;51554:799::-;51709:4;-1:-1:-1;;;;;51730:13:0;;22493:20;22541:8;51726:620;;51766:72;;-1:-1:-1;;;51766:72:0;;-1:-1:-1;;;;;51766:36:0;;;;;:72;;16368:10;;51817:4;;51823:7;;51832:5;;51766:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51766:72:0;;;;;;;;-1:-1:-1;;51766:72:0;;;;;;;;;;;;:::i;:::-;;;51762:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52008:13:0;;52004:272;;52051:60;;-1:-1:-1;;;52051:60:0;;;;;;;:::i;52004:272::-;52226:6;52220:13;52211:6;52207:2;52203:15;52196:38;51762:529;-1:-1:-1;;;;;;51889:51:0;-1:-1:-1;;;51889:51:0;;-1:-1:-1;51882:58:0;;51726:620;-1:-1:-1;52330:4:0;52323:11;;82011:1267;82107:20;82130:21;;;:12;:21;;;;;;;;82107:44;;;;;;;;;;;;;;;-1:-1:-1;;;82107:44:0;;;;;;;;;;;-1:-1:-1;;;82107:44:0;;;;;;;;;;;-1:-1:-1;;;82107:44:0;;;;82081:13;82107:44;;;;;;;-1:-1:-1;;;82107:44:0;;;;;;;;-1:-1:-1;;;82107:44:0;;;;;;;;-1:-1:-1;;;82107:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82081:13;82262:32;:21;82107:44;82262:13;:21::i;:32::-;82346:31;82364:6;:12;;;82346:31;;:17;:31::i;:::-;82435:41;82453:6;:22;;;82435:41;;:17;:41::i;:::-;82565:34;82570:6;:17;;;82565:23;;:32;:34::i;:::-;82688:32;82693:6;:15;;;82688:21;;:30;:32::i;:::-;82804:34;82809:6;:17;;;82804:23;;:32;:34::i;:::-;82200:649;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;82162:688;;82861:30;82974:51;83003:9;82979:6;:22;;;:34;;;;:::i;:::-;82974:40;;:49;:51::i;:::-;83092:53;83123:9;83097:6;:24;;;:36;;;;:::i;83092:53::-;82901:266;;;;;;;;;:::i;:::-;;;;;;;;;;;;;82861:307;;83179:20;83202:44;83214:13;83229:16;83202:11;:44::i;:::-;83179:67;82011:1267;-1:-1:-1;;;;;;82011:1267:0:o;76567:3037::-;76673:9;;76651:19;76716:21;;;:12;:21;;;;;;;;76693:44;;;;;;;;;;;;;;;-1:-1:-1;;;76693:44:0;;;;;;;;-1:-1:-1;;;76693:44:0;;;;;;;;-1:-1:-1;;;76693:44:0;;;;76626:12;76693:44;;;;;;;-1:-1:-1;;;76693:44:0;;;;;;;;-1:-1:-1;;;76693:44:0;;;;;;;;-1:-1:-1;;;76693:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76783:24;;;:15;:24;;;;;76748:59;;;;;;;;;;;;;;;;;76626:12;;76673:9;76693:44;;76651:19;;76748:59;76783:24;;76651:19;;76748:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;76748:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;76818:6;76835:8;76844;:15;76835:24;;76872:15;76890:21;76904:6;76890:13;:21::i;:::-;76872:39;;76941:14;76928:10;:27;76924:84;;;76986:10;76971:25;;76924:84;77018:18;77038:39;77046:14;77062;77038:7;:39::i;:::-;77018:59;;77090:31;77175:41;77193:6;:22;;;77175:41;;:17;:41::i;:::-;77131:91;;;;;;;;:::i;:::-;;;;;;;;;;;;;77090:133;;77239:35;77251:4;77256:17;77239:11;:35::i;:::-;77234:40;;77292:25;77310:6;81950:25;;;81979:15;-1:-1:-1;81950:44:0;;81855:148;77292:25;77287:689;;77333:17;77368:2;77354:13;:10;77365:2;77354:13;:::i;:::-;:16;;;;:::i;:::-;77333:38;-1:-1:-1;77386:16:0;77425:3;77410:14;77333:38;77423:1;77410:14;:::i;:::-;:18;;;;:::i;:::-;77405:24;;:1;:24;:::i;:::-;77386:43;-1:-1:-1;77444:15:0;77462:13;77386:43;77474:1;77462:13;:::i;:::-;77444:31;;77490:20;77619:23;:12;:21;:23::i;:::-;77787:22;:11;:20;:22::i;:::-;77883:21;:10;:19;:21::i;:::-;77520:399;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77490:430;;77940:24;77952:4;77957:6;77940:11;:24::i;:::-;77935:29;;77318:658;;;;77287:689;77993:1;77991:3;;77986:1562;77998:3;77996:1;:5;77986:1562;;;78022:10;78035:8;78050:1;78044:5;78048:1;78044:3;:5;:::i;:::-;:7;;;;:::i;:::-;78035:17;;;;;;;;:::i;:::-;;;;;;;:23;;;78022:36;;;;78073:20;78108;78131:25;78143:1;78132:10;:12;;;;:::i;78131:25::-;78108:48;;78188:3;78175:10;:16;78171:188;;;78220:29;78236:1;78222:12;78233:1;78222:10;:12;:::i;:::-;78221:16;;;;:::i;78220:29::-;78211:38;;78171:188;;;78311:32;78328:3;78313:13;:10;78324:2;78313:13;:::i;:::-;78312:19;;;;:::i;78311:32::-;78302:41;;78171:188;78387:28;78524:6;78642:24;78660:5;78642:17;:24::i;:::-;78425:247;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78387:286;;78692:21;78706:6;81798:21;;;81823:15;-1:-1:-1;81798:40:0;;81707:140;78692:21;78688:523;;;78733:24;78844:6;79035;79046;79057;78767:353;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78733:388;;79157:38;79169:14;79184:10;79157:11;:38::i;:::-;79140:55;;78714:497;78688:523;79225:40;;;;;;;;;;;;-1:-1:-1;;;79225:40:0;;;;:26;79306:40;79318:14;79225:40;79306:11;:40::i;:::-;79280:66;;79368:27;79380:4;79385:9;79368:11;:27::i;:::-;79361:34;-1:-1:-1;79410:19:0;79468:8;79483:1;79477:5;79481:1;79477:3;:5;:::i;:::-;:7;;;;:::i;:::-;79468:17;;;;;;;;:::i;:::-;;;;;;;:28;;;79444:8;79459:1;79457;79453:3;:5;;;;:::i;:::-;:7;;;;:::i;:::-;79444:17;;;;;;;;:::i;:::-;;;;;;;:22;;;79433:10;:33;;;;:::i;:::-;79432:64;;;;:::i;:::-;79410:86;-1:-1:-1;79511:25:0;79410:86;79511:25;;:::i;:::-;;;78007:1541;;;;;;;78003:3;;;;;:::i;:::-;;;;77986:1562;;;79582:4;79565:31;;;;;;;;:::i;47697:321::-;47827:18;47833:2;47837:7;47827:5;:18::i;:::-;47878:54;47909:1;47913:2;47917:7;47926:5;47878:22;:54::i;:::-;47856:154;;;;-1:-1:-1;;;47856:154:0;;;;;;;:::i;58538:589::-;-1:-1:-1;;;;;58744:18:0;;58740:187;;58779:40;58811:7;59954:10;:17;;59927:24;;;;:15;:24;;;;;:44;;;59982:24;;;;;;;;;;;;59850:164;58779:40;58740:187;;;58849:2;-1:-1:-1;;;;;58841:10:0;:4;-1:-1:-1;;;;;58841:10:0;;58837:90;;58868:47;58901:4;58907:7;58868:32;:47::i;:::-;-1:-1:-1;;;;;58941:16:0;;58937:183;;58974:45;59011:7;58974:36;:45::i;58937:183::-;59047:4;-1:-1:-1;;;;;59041:10:0;:2;-1:-1:-1;;;;;59041:10:0;;59037:83;;59068:40;59096:2;59100:7;59068:27;:40::i;48965:360::-;49025:13;49041:23;49056:7;49041:14;:23::i;:::-;49025:39;;49077:48;49098:5;49113:1;49117:7;49077:20;:48::i;:::-;49166:29;49183:1;49187:7;49166:8;:29::i;:::-;-1:-1:-1;;;;;49208:16:0;;;;;;:9;:16;;;;;:21;;49228:1;;49208:16;:21;;49228:1;;49208:21;:::i;:::-;;;;-1:-1:-1;;49247:16:0;;;;:7;:16;;;;;;49240:23;;-1:-1:-1;;;;;;49240:23:0;;;49281:36;49255:7;;49247:16;-1:-1:-1;;;;;49281:36:0;;;;;49247:16;;49281:36;49014:311;48965:360;:::o;48354:382::-;-1:-1:-1;;;;;48434:16:0;;48426:61;;;;-1:-1:-1;;;48426:61:0;;34355:2:1;48426:61:0;;;34337:21:1;;;34374:18;;;34367:30;34433:34;34413:18;;;34406:62;34485:18;;48426:61:0;34153:356:1;48426:61:0;46441:4;46465:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46465:16:0;:30;48498:58;;;;-1:-1:-1;;;48498:58:0;;28260:2:1;48498:58:0;;;28242:21:1;28299:2;28279:18;;;28272:30;28338;28318:18;;;28311:58;28386:18;;48498:58:0;28058:352:1;48498:58:0;48569:45;48598:1;48602:2;48606:7;48569:20;:45::i;:::-;-1:-1:-1;;;;;48627:13:0;;;;;;:9;:13;;;;;:18;;48644:1;;48627:13;:18;;48644:1;;48627:18;:::i;:::-;;;;-1:-1:-1;;48656:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;48656:21:0;-1:-1:-1;;;;;48656:21:0;;;;;;;;48695:33;;48656:16;;;48695:33;;48656:16;;48695:33;48354:382;;:::o;60641:988::-;60907:22;60957:1;60932:22;60949:4;60932:16;:22::i;:::-;:26;;;;:::i;:::-;60969:18;60990:26;;;:17;:26;;;;;;60907:51;;-1:-1:-1;61123:28:0;;;61119:328;;-1:-1:-1;;;;;61190:18:0;;61168:19;61190:18;;;:12;:18;;;;;;;;:34;;;;;;;;;61241:30;;;;;;:44;;;61358:30;;:17;:30;;;;;:43;;;61119:328;-1:-1:-1;61543:26:0;;;;:17;:26;;;;;;;;61536:33;;;-1:-1:-1;;;;;61587:18:0;;;;;:12;:18;;;;;:34;;;;;;;61580:41;60641:988::o;61924:1079::-;62202:10;:17;62177:22;;62202:21;;62222:1;;62202:21;:::i;:::-;62234:18;62255:24;;;:15;:24;;;;;;62628:10;:26;;62177:46;;-1:-1:-1;62255:24:0;;62177:46;;62628:26;;;;;;:::i;:::-;;;;;;;;;62606:48;;62692:11;62667:10;62678;62667:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;62772:28;;;:15;:28;;;;;;;:41;;;62944:24;;;;;62937:31;62979:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;61995:1008;;;61924:1079;:::o;59428:221::-;59513:14;59530:20;59547:2;59530:16;:20::i;:::-;-1:-1:-1;;;;;59561:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;59606:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;59428:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;192:156;258:20;;318:4;307:16;;297:27;;287:55;;338:1;335;328:12;353:186;412:6;465:2;453:9;444:7;440:23;436:32;433:52;;;481:1;478;471:12;433:52;504:29;523:9;504:29;:::i;544:260::-;612:6;620;673:2;661:9;652:7;648:23;644:32;641:52;;;689:1;686;679:12;641:52;712:29;731:9;712:29;:::i;:::-;702:39;;760:38;794:2;783:9;779:18;760:38;:::i;:::-;750:48;;544:260;;;;;:::o;809:328::-;886:6;894;902;955:2;943:9;934:7;930:23;926:32;923:52;;;971:1;968;961:12;923:52;994:29;1013:9;994:29;:::i;:::-;984:39;;1042:38;1076:2;1065:9;1061:18;1042:38;:::i;:::-;1032:48;;1127:2;1116:9;1112:18;1099:32;1089:42;;809:328;;;;;:::o;1142:980::-;1237:6;1245;1253;1261;1314:3;1302:9;1293:7;1289:23;1285:33;1282:53;;;1331:1;1328;1321:12;1282:53;1354:29;1373:9;1354:29;:::i;:::-;1344:39;;1402:2;1423:38;1457:2;1446:9;1442:18;1423:38;:::i;:::-;1413:48;;1508:2;1497:9;1493:18;1480:32;1470:42;;1563:2;1552:9;1548:18;1535:32;1586:18;1627:2;1619:6;1616:14;1613:34;;;1643:1;1640;1633:12;1613:34;1681:6;1670:9;1666:22;1656:32;;1726:7;1719:4;1715:2;1711:13;1707:27;1697:55;;1748:1;1745;1738:12;1697:55;1784:2;1771:16;1806:2;1802;1799:10;1796:36;;;1812:18;;:::i;:::-;1854:53;1897:2;1878:13;;-1:-1:-1;;1874:27:1;1870:36;;1854:53;:::i;:::-;1841:66;;1930:2;1923:5;1916:17;1970:7;1965:2;1960;1956;1952:11;1948:20;1945:33;1942:53;;;1991:1;1988;1981:12;1942:53;2046:2;2041;2037;2033:11;2028:2;2021:5;2017:14;2004:45;2090:1;2085:2;2080;2073:5;2069:14;2065:23;2058:34;;2111:5;2101:15;;;;;1142:980;;;;;;;:::o;2127:347::-;2192:6;2200;2253:2;2241:9;2232:7;2228:23;2224:32;2221:52;;;2269:1;2266;2259:12;2221:52;2292:29;2311:9;2292:29;:::i;:::-;2282:39;;2371:2;2360:9;2356:18;2343:32;2418:5;2411:13;2404:21;2397:5;2394:32;2384:60;;2440:1;2437;2430:12;2384:60;2463:5;2453:15;;;2127:347;;;;;:::o;2479:254::-;2547:6;2555;2608:2;2596:9;2587:7;2583:23;2579:32;2576:52;;;2624:1;2621;2614:12;2576:52;2647:29;2666:9;2647:29;:::i;:::-;2637:39;2723:2;2708:18;;;;2695:32;;-1:-1:-1;;;2479:254:1:o;2738:963::-;2822:6;2853:2;2896;2884:9;2875:7;2871:23;2867:32;2864:52;;;2912:1;2909;2902:12;2864:52;2952:9;2939:23;2981:18;3022:2;3014:6;3011:14;3008:34;;;3038:1;3035;3028:12;3008:34;3076:6;3065:9;3061:22;3051:32;;3121:7;3114:4;3110:2;3106:13;3102:27;3092:55;;3143:1;3140;3133:12;3092:55;3179:2;3166:16;3201:2;3197;3194:10;3191:36;;;3207:18;;:::i;:::-;3253:2;3250:1;3246:10;3236:20;;3276:28;3300:2;3296;3292:11;3276:28;:::i;:::-;3338:15;;;3369:12;;;;3401:11;;;3431;;;3427:20;;3424:33;-1:-1:-1;3421:53:1;;;3470:1;3467;3460:12;3421:53;3492:1;3483:10;;3502:169;3516:2;3513:1;3510:9;3502:169;;;3573:23;3592:3;3573:23;:::i;:::-;3561:36;;3534:1;3527:9;;;;;3617:12;;;;3649;;3502:169;;;-1:-1:-1;3690:5:1;2738:963;-1:-1:-1;;;;;;;;2738:963:1:o;3706:387::-;3790:6;3798;3806;3814;3867:3;3855:9;3846:7;3842:23;3838:33;3835:53;;;3884:1;3881;3874:12;3835:53;3920:9;3907:23;3897:33;;3949:36;3981:2;3970:9;3966:18;3949:36;:::i;:::-;3706:387;;3939:46;;-1:-1:-1;;;;4032:2:1;4017:18;;4004:32;;4083:2;4068:18;4055:32;;3706:387::o;4098:245::-;4156:6;4209:2;4197:9;4188:7;4184:23;4180:32;4177:52;;;4225:1;4222;4215:12;4177:52;4264:9;4251:23;4283:30;4307:5;4283:30;:::i;4348:249::-;4417:6;4470:2;4458:9;4449:7;4445:23;4441:32;4438:52;;;4486:1;4483;4476:12;4438:52;4518:9;4512:16;4537:30;4561:5;4537:30;:::i;4602:180::-;4661:6;4714:2;4702:9;4693:7;4689:23;4685:32;4682:52;;;4730:1;4727;4720:12;4682:52;-1:-1:-1;4753:23:1;;4602:180;-1:-1:-1;4602:180:1:o;4787:456::-;4880:6;4888;4896;4904;4912;4965:3;4953:9;4944:7;4940:23;4936:33;4933:53;;;4982:1;4979;4972:12;4933:53;5018:9;5005:23;4995:33;;5075:2;5064:9;5060:18;5047:32;5037:42;;5098:36;5130:2;5119:9;5115:18;5098:36;:::i;:::-;4787:456;;;;-1:-1:-1;5088:46:1;;5181:2;5166:18;;5153:32;;-1:-1:-1;5232:3:1;5217:19;5204:33;;4787:456;-1:-1:-1;;4787:456:1:o;5248:248::-;5316:6;5324;5377:2;5365:9;5356:7;5352:23;5348:32;5345:52;;;5393:1;5390;5383:12;5345:52;-1:-1:-1;;5416:23:1;;;5486:2;5471:18;;;5458:32;;-1:-1:-1;5248:248:1:o;5501:316::-;5578:6;5586;5594;5647:2;5635:9;5626:7;5622:23;5618:32;5615:52;;;5663:1;5660;5653:12;5615:52;-1:-1:-1;;5686:23:1;;;5756:2;5741:18;;5728:32;;-1:-1:-1;5807:2:1;5792:18;;;5779:32;;5501:316;-1:-1:-1;5501:316:1:o;5822:344::-;5889:6;5897;5950:2;5938:9;5929:7;5925:23;5921:32;5918:52;;;5966:1;5963;5956:12;5918:52;6002:9;5989:23;5979:33;;6062:2;6051:9;6047:18;6034:32;6106:10;6099:5;6095:22;6088:5;6085:33;6075:61;;6132:1;6129;6122:12;6171:257;6212:3;6250:5;6244:12;6277:6;6272:3;6265:19;6293:63;6349:6;6342:4;6337:3;6333:14;6326:4;6319:5;6315:16;6293:63;:::i;:::-;6410:2;6389:15;-1:-1:-1;;6385:29:1;6376:39;;;;6417:4;6372:50;;6171:257;-1:-1:-1;;6171:257:1:o;6433:185::-;6475:3;6513:5;6507:12;6528:52;6573:6;6568:3;6561:4;6554:5;6550:16;6528:52;:::i;:::-;6596:16;;;;;6433:185;-1:-1:-1;;6433:185:1:o;7902:470::-;8081:3;8119:6;8113:13;8135:53;8181:6;8176:3;8169:4;8161:6;8157:17;8135:53;:::i;:::-;8251:13;;8210:16;;;;8273:57;8251:13;8210:16;8307:4;8295:17;;8273:57;:::i;:::-;8346:20;;7902:470;-1:-1:-1;;;;7902:470:1:o;8377:444::-;8609:3;8647:6;8641:13;8663:53;8709:6;8704:3;8697:4;8689:6;8685:17;8663:53;:::i;:::-;-1:-1:-1;;;8738:16:1;;8763:23;;;-1:-1:-1;8813:1:1;8802:13;;8377:444;-1:-1:-1;8377:444:1:o;8826:1917::-;-1:-1:-1;;;9879:43:1;;-1:-1:-1;;;9947:1:1;9938:11;;9931:32;9986:13;;-1:-1:-1;;10008:62:1;9986:13;10058:2;10049:12;;10042:4;10030:17;;10008:62;:::i;:::-;-1:-1:-1;;;10129:2:1;10089:16;;;10121:11;;;10114:67;10210:34;10205:2;10197:11;;10190:55;10274:34;10269:2;10261:11;;10254:55;10338:34;10333:2;10325:11;;10318:55;10403:34;10397:3;10389:12;;10382:56;-1:-1:-1;;;10462:3:1;10454:12;;10447:36;-1:-1:-1;;;10507:3:1;10499:12;;10492:70;10578:159;10608:128;10634:101;10664:70;10694:39;10728:3;10720:12;;10712:6;10694:39;:::i;:::-;-1:-1:-1;;;7812:51:1;;7888:2;7879:12;;7747:150;10664:70;7679:28;7667:41;;7733:2;7724:12;;7602:140;10634:101;10626:6;10608:128;:::i;:::-;-1:-1:-1;;;7332:27:1;;7384:1;7375:11;;7267:125;10748:599;11111:26;11106:3;11099:39;11081:3;11167:6;11161:13;11183:62;11238:6;11233:2;11228:3;11224:12;11217:4;11209:6;11205:17;11183:62;:::i;:::-;-1:-1:-1;;;11304:2:1;11264:16;;;;11296:11;;;11289:25;-1:-1:-1;11338:2:1;11330:11;;10748:599;-1:-1:-1;10748:599:1:o;11737:1161::-;12249:66;12244:3;12237:79;12355:14;12350:3;12346:24;12341:2;12336:3;12332:12;12325:46;12219:3;12400:6;12394:13;12416:60;12469:6;12464:2;12459:3;12455:12;12450:2;12442:6;12438:15;12416:60;:::i;:::-;12540:66;12535:2;12495:16;;;12527:11;;;12520:87;-1:-1:-1;;;12631:2:1;12623:11;;12616:65;12706:13;;12728:61;12706:13;12775:2;12767:11;;12762:2;12750:15;;12728:61;:::i;:::-;-1:-1:-1;;;12849:2:1;12808:17;;;;12841:11;;;12834:31;12889:2;12881:11;;11737:1161;-1:-1:-1;;;;11737:1161:1:o;12903:948::-;13415:31;13410:3;13403:44;13385:3;13476:6;13470:13;13492:62;13547:6;13542:2;13537:3;13533:12;13526:4;13518:6;13514:17;13492:62;:::i;:::-;-1:-1:-1;;;13613:2:1;13573:16;;;13605:11;;;13598:31;13654:13;;13676:63;13654:13;13725:2;13717:11;;13710:4;13698:17;;13676:63;:::i;:::-;-1:-1:-1;;;13799:2:1;13758:17;;;;13791:11;;;13784:34;13842:2;13834:11;;12903:948;-1:-1:-1;;;;12903:948:1:o;13856:939::-;14368:31;14363:3;14356:44;14338:3;14429:6;14423:13;14445:62;14500:6;14495:2;14490:3;14486:12;14479:4;14471:6;14467:17;14445:62;:::i;:::-;-1:-1:-1;;;14566:2:1;14526:16;;;14558:11;;;14551:31;14607:13;;14629:63;14607:13;14678:2;14670:11;;14663:4;14651:17;;14629:63;:::i;:::-;-1:-1:-1;;;14752:2:1;14711:17;;;;14744:11;;;14737:25;14786:2;14778:11;;13856:939;-1:-1:-1;;;;13856:939:1:o;14800:1361::-;15461:31;15456:3;15449:44;15431:3;15522:6;15516:13;15538:62;15593:6;15588:2;15583:3;15579:12;15572:4;15564:6;15560:17;15538:62;:::i;:::-;15664:34;15659:2;15619:16;;;15651:11;;;15644:55;-1:-1:-1;;;15723:2:1;15715:11;;15708:32;15765:13;;15787:63;15765:13;15836:2;15828:11;;15821:4;15809:17;;15787:63;:::i;:::-;-1:-1:-1;;;15910:2:1;15869:17;;;;15902:11;;;15895:43;15963:13;;15985:63;15963:13;16034:2;16026:11;;16019:4;16007:17;;15985:63;:::i;:::-;-1:-1:-1;;;16108:2:1;16067:17;;;;16100:11;;;16093:34;16151:3;16143:12;;14800:1361;-1:-1:-1;;;;;14800:1361:1:o;16166:2218::-;17173:66;17168:3;17161:79;17143:3;17269:6;17263:13;17285:62;17340:6;17335:2;17330:3;17326:12;17319:4;17311:6;17307:17;17285:62;:::i;:::-;17411:66;17406:2;17366:16;;;17398:11;;;17391:87;-1:-1:-1;;;17502:2:1;17494:11;;17487:33;17545:13;;17567:63;17545:13;17616:2;17608:11;;17601:4;17589:17;;17567:63;:::i;:::-;17695:66;17690:2;17649:17;;;;17682:11;;;17675:87;-1:-1:-1;;;17786:2:1;17778:11;;17771:47;17843:13;;17865:63;17843:13;17914:2;17906:11;;17899:4;17887:17;;17865:63;:::i;:::-;17993:66;17988:2;17947:17;;;;17980:11;;;17973:87;18090:66;18084:3;18076:12;;18069:88;-1:-1:-1;;;18181:3:1;18173:12;;18166:46;18228:150;18254:123;18279:97;18305:70;18335:39;18369:3;18361:12;;18353:6;18335:39;:::i;:::-;6700:66;6688:79;;6797:66;6792:2;6783:12;;6776:88;-1:-1:-1;;;6889:2:1;6880:12;;6873:46;6944:2;6935:12;;6623:330;18305:70;18297:6;18279:97;:::i;:::-;7030:66;7018:79;;7127:66;7122:2;7113:12;;7106:88;-1:-1:-1;;;7219:2:1;7210:12;;7203:25;7253:2;7244:12;;6958:304;18254:123;18246:6;18228:150;:::i;:::-;18221:157;16166:2218;-1:-1:-1;;;;;;;;;16166:2218:1:o;18599:1002::-;-1:-1:-1;;;19106:3:1;19099:33;19081:3;19161:6;19155:13;19177:62;19232:6;19227:2;19222:3;19218:12;19211:4;19203:6;19199:17;19177:62;:::i;:::-;-1:-1:-1;;;19298:2:1;19258:16;;;19290:11;;;19283:24;19332:13;;19354:63;19332:13;19403:2;19395:11;;19388:4;19376:17;;19354:63;:::i;:::-;19482:34;19477:2;19436:17;;;;19469:11;;;19462:55;-1:-1:-1;;;19541:2:1;19533:11;;19526:42;19592:2;19584:11;;18599:1002;-1:-1:-1;;;;18599:1002:1:o;19606:1788::-;20416:34;20411:3;20404:47;20481:27;20476:2;20471:3;20467:12;20460:49;20386:3;20538:6;20532:13;20554:60;20607:6;20602:2;20597:3;20593:12;20588:2;20580:6;20576:15;20554:60;:::i;:::-;20678:34;20673:2;20633:16;;;20665:11;;;20658:55;20742:34;20737:2;20729:11;;20722:55;-1:-1:-1;;;20801:3:1;20793:12;;20786:41;20852:13;;20874:62;20852:13;20921:3;20913:12;;20908:2;20896:15;;20874:62;:::i;:::-;20963:8;20959:2;20955:17;20945:27;;;-1:-1:-1;;;21024:2:1;21018:3;21014:2;21010:12;21003:24;21058:6;21052:13;21074:62;21127:8;21121:3;21117:2;21113:12;21108:2;21100:6;21096:15;21074:62;:::i;:::-;21196:3;21155:17;;21188:12;;;21181:24;21230:13;;21252:62;21230:13;21299:3;21291:12;;21286:2;21274:15;;21252:62;:::i;:::-;21330:58;21383:3;21372:8;21368:2;21364:17;21360:27;7474:34;7462:47;;-1:-1:-1;;;7534:2:1;7525:12;;7518:45;7588:2;7579:12;;7397:200;21330:58;21323:65;19606:1788;-1:-1:-1;;;;;;;;19606:1788:1:o;21399:445::-;21661:28;21656:3;21649:41;21631:3;21719:6;21713:13;21735:62;21790:6;21785:2;21780:3;21776:12;21769:4;21761:6;21757:17;21735:62;:::i;:::-;21817:16;;;;21835:2;21813:25;;21399:445;-1:-1:-1;;21399:445:1:o;22374:488::-;-1:-1:-1;;;;;22643:15:1;;;22625:34;;22695:15;;22690:2;22675:18;;22668:43;22742:2;22727:18;;22720:34;;;22790:3;22785:2;22770:18;;22763:31;;;22568:4;;22811:45;;22836:19;;22828:6;22811:45;:::i;22867:1033::-;23102:2;23154:21;;;23224:13;;23127:18;;;23246:22;;;23073:4;;23102:2;23287;;23305:18;;;;23346:15;;;23073:4;23389:485;23403:6;23400:1;23397:13;23389:485;;;23462:13;;23500:9;;23488:22;;23550:11;;;23544:18;23530:12;;;23523:40;23602:11;;;23596:18;23637:10;23681:21;;;23667:12;;;23660:43;23726:4;23774:11;;;23768:18;23764:27;23750:12;;;23743:49;23821:4;23812:14;;;;23849:15;;;;23425:1;23418:9;23389:485;;;-1:-1:-1;23891:3:1;;22867:1033;-1:-1:-1;;;;;;;22867:1033:1:o;23905:632::-;24076:2;24128:21;;;24198:13;;24101:18;;;24220:22;;;24047:4;;24076:2;24299:15;;;;24273:2;24258:18;;;24047:4;24342:169;24356:6;24353:1;24350:13;24342:169;;;24417:13;;24405:26;;24486:15;;;;24451:12;;;;24378:1;24371:9;24342:169;;;-1:-1:-1;24528:3:1;;23905:632;-1:-1:-1;;;;;;23905:632:1:o;25137:219::-;25286:2;25275:9;25268:21;25249:4;25306:44;25346:2;25335:9;25331:18;25323:6;25306:44;:::i;26889:414::-;27091:2;27073:21;;;27130:2;27110:18;;;27103:30;27169:34;27164:2;27149:18;;27142:62;-1:-1:-1;;;27235:2:1;27220:18;;27213:48;27293:3;27278:19;;26889:414::o;29867:345::-;30069:2;30051:21;;;30108:2;30088:18;;;30081:30;-1:-1:-1;;;30142:2:1;30127:18;;30120:51;30203:2;30188:18;;29867:345::o;34927:356::-;35129:2;35111:21;;;35148:18;;;35141:30;35207:34;35202:2;35187:18;;35180:62;35274:2;35259:18;;34927:356::o;38296:413::-;38498:2;38480:21;;;38537:2;38517:18;;;38510:30;38576:34;38571:2;38556:18;;38549:62;-1:-1:-1;;;38642:2:1;38627:18;;38620:47;38699:3;38684:19;;38296:413::o;38714:340::-;38916:2;38898:21;;;38955:2;38935:18;;;38928:30;-1:-1:-1;;;38989:2:1;38974:18;;38967:46;39045:2;39030:18;;38714:340::o;40176:399::-;40378:2;40360:21;;;40417:2;40397:18;;;40390:30;40456:34;40451:2;40436:18;;40429:62;-1:-1:-1;;;40522:2:1;40507:18;;40500:33;40565:3;40550:19;;40176:399::o;43134:275::-;43205:2;43199:9;43270:2;43251:13;;-1:-1:-1;;43247:27:1;43235:40;;43305:18;43290:34;;43326:22;;;43287:62;43284:88;;;43352:18;;:::i;:::-;43388:2;43381:22;43134:275;;-1:-1:-1;43134:275:1:o;43414:128::-;43454:3;43485:1;43481:6;43478:1;43475:13;43472:39;;;43491:18;;:::i;:::-;-1:-1:-1;43527:9:1;;43414:128::o;43547:228::-;43586:3;43614:10;43651:2;43648:1;43644:10;43681:2;43678:1;43674:10;43712:3;43708:2;43704:12;43699:3;43696:21;43693:47;;;43720:18;;:::i;43780:120::-;43820:1;43846;43836:35;;43851:18;;:::i;:::-;-1:-1:-1;43885:9:1;;43780:120::o;43905:191::-;43944:1;43970:10;44007:2;44004:1;44000:10;44029:3;44019:37;;44036:18;;:::i;:::-;44074:10;;44070:20;;;;;43905:191;-1:-1:-1;;43905:191:1:o;44101:168::-;44141:7;44207:1;44203;44199:6;44195:14;44192:1;44189:21;44184:1;44177:9;44170:17;44166:45;44163:71;;;44214:18;;:::i;:::-;-1:-1:-1;44254:9:1;;44101:168::o;44274:262::-;44313:7;44345:10;44382:2;44379:1;44375:10;44412:2;44409:1;44405:10;44468:3;44464:2;44460:12;44455:3;44452:21;44445:3;44438:11;44431:19;44427:47;44424:73;;;44477:18;;:::i;:::-;44517:13;;44274:262;-1:-1:-1;;;;44274:262:1:o;44541:125::-;44581:4;44609:1;44606;44603:8;44600:34;;;44614:18;;:::i;:::-;-1:-1:-1;44651:9:1;;44541:125::o;44671:258::-;44743:1;44753:113;44767:6;44764:1;44761:13;44753:113;;;44843:11;;;44837:18;44824:11;;;44817:39;44789:2;44782:10;44753:113;;;44884:6;44881:1;44878:13;44875:48;;;-1:-1:-1;;44919:1:1;44901:16;;44894:27;44671:258::o;44934:136::-;44973:3;45001:5;44991:39;;45010:18;;:::i;:::-;-1:-1:-1;;;45046:18:1;;44934:136::o;45075:380::-;45154:1;45150:12;;;;45197;;;45218:61;;45272:4;45264:6;45260:17;45250:27;;45218:61;45325:2;45317:6;45314:14;45294:18;45291:38;45288:161;;;45371:10;45366:3;45362:20;45359:1;45352:31;45406:4;45403:1;45396:15;45434:4;45431:1;45424:15;45288:161;;45075:380;;;:::o;45460:135::-;45499:3;-1:-1:-1;;45520:17:1;;45517:43;;;45540:18;;:::i;:::-;-1:-1:-1;45587:1:1;45576:13;;45460:135::o;45600:201::-;45638:3;45666:10;45711:2;45704:5;45700:14;45738:2;45729:7;45726:15;45723:41;;;45744:18;;:::i;:::-;45793:1;45780:15;;45600:201;-1:-1:-1;;;45600:201:1:o;45806:112::-;45838:1;45864;45854:35;;45869:18;;:::i;:::-;-1:-1:-1;45903:9:1;;45806:112::o;45923:183::-;45954:1;45980:10;46017:2;46014:1;46010:10;46039:3;46029:37;;46046:18;;:::i;:::-;46084:10;;46080:20;;;;;45923:183;-1:-1:-1;;45923:183:1:o;46111:127::-;46172:10;46167:3;46163:20;46160:1;46153:31;46203:4;46200:1;46193:15;46227:4;46224:1;46217:15;46243:127;46304:10;46299:3;46295:20;46292:1;46285:31;46335:4;46332:1;46325:15;46359:4;46356:1;46349:15;46375:127;46436:10;46431:3;46427:20;46424:1;46417:31;46467:4;46464:1;46457:15;46491:4;46488:1;46481:15;46507:127;46568:10;46563:3;46559:20;46556:1;46549:31;46599:4;46596:1;46589:15;46623:4;46620:1;46613:15;46639:127;46700:10;46695:3;46691:20;46688:1;46681:31;46731:4;46728:1;46721:15;46755:4;46752:1;46745:15;46771:131;-1:-1:-1;;;;;;46845:32:1;;46835:43;;46825:71;;46892:1;46889;46882:12

Swarm Source

ipfs://040c9df2049c73ecd648081ec1a411270ec0834d3a1abeb4f046cd1f7ce3ff1e
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.