ETH Price: $3,647.21 (-6.10%)

Token

OnChainBots (BOTS)
 

Overview

Max Total Supply

145 BOTS

Holders

35

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BOTS
0xe83e1f5174e3db55c103283193c354a1b227ab73
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:
OnChainBots

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

// @title: OnChainBots
// @author: theaibutcher
//
// On chain PFP collection of 10k unique profile images with the following properties:
//   - a single Ethereum transaction created everything
//   - all metadata on chain
//   - all images on chain in svg format
//   - all created in the constraints of a single txn without need of any other txns to load additional data
//   - no use of other deployed contracts
//   - all 10,000 OnChain Bots are unique
//   - there are 6 traits with 171 values (including 3 traits of no scars, no buttons, and no earring)
//   - the traits have distribution and rarities interesting for collecting
//   - everything on chain can be used in other apps and collections in the future


/// @title Base64
/// @notice Provides a function for encoding some bytes in base64

library Base64 {
    bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

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

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);
        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)
            for {
                let i := 0
            } lt(i, len) {
            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)
                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
                out := shl(224, out)
                mstore(resultPtr, out)
                resultPtr := add(resultPtr, 4)
            }
            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }
            mstore(result, encodedLen)
        }
        return string(result);
    }
}

/**
 * @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);
}

/**
 * @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;
}

/**
 * @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);
    }
}

/*
 * @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;
    }
}

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

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

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

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

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

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

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

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

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

/**
 * @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);
}

/**
 * @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);
}

/**
 * @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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}

/**
 * @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;
    }
}

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).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 {}
}

/**
 * @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);
}

/**
 * @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();
    }
}

// Bring on the OnChain Bots!
contract OnChainBots is ERC721Enumerable, ReentrancyGuard, Ownable {
  using Strings for uint256;

  uint256 public constant maxSupply = 10000;
  uint256 public numClaimed = 0;
  string[] private background = ["FFF","dda","e92","3DF","FEF","9de","367","ccc"]; // only trait that is uniform, no need for rarity weights
  
  string[] private fur1 = ["fd1","28F","324","3D4","ffc","81F","f89","F6F","049","901","fc5","ffe","574","bcc","d04","AAA","AB3","ff0","fd1"];
  string[] private fur2 = ["259","000","000","000","000","000","000","000","000","000","060","000","96e","56e","799","801","310","d9f","000"];
  uint8[] private fur_w =[249, 246, 223, 141, 116, 114, 93, 90, 89, 86, 74, 72, 55, 48, 39, 32, 28, 14, 8];
  string[] private eyes = ["abe","080","653","000","be7","abe","080","653","000","be7","cef","abe","080","653","000","be7","cef","abe","080","653","000","be7","cef"];
  uint8[] private eyes_w = [245, 121, 107, 101, 79, 78, 70, 68, 62, 58, 56, 51, 50, 48, 44, 38, 35, 33, 31, 22, 15, 10, 7];
  string[] private earring = ["999","fe7","999","999","fe7","bdd"];
  uint8[] private earring_w = [251, 32, 29, 17, 16, 8, 5];
  string[] private buttons1 = ["f00","f00","222","f00","f00","f00","f00","f00","f00","00f","00f","00f","00f","00f","00f","00f","222","00f","f0f","222","f0f","f0f","f0f","f0f","f0f","f0f","f0f","f80","f80","f80","f80","f80","f00","f80","f80","f80","90f","90f","00f","90f","90f","90f","222"];
  string[] private buttons2 = ["d00","00f","f00","f0f","f80","90f","f48","0f0","ff0","f00","00d","f0f","f80","90f","f48","0f0","ddd","ff0","f00","653","00f","d0d","f80","90f","f48","0f0","ff0","f00","f0f","00f","d60","f48","ddd","90f","0f0","ff0","f00","00f","fd1","f0f","f80","70d","fd1"];
  uint8[] private buttons_w = [251, 55, 45, 43, 38, 37, 34, 33, 32, 31, 31, 31, 31, 31, 30, 30, 29, 29, 28, 27, 27, 27, 26, 25, 24, 22, 21, 20, 19, 19, 19, 19, 19, 19, 18, 17, 16, 15, 14, 13, 11, 9, 8, 6];
  string[] private scar1 = ["f00","f00","f00","f00","f00","f00","f00","000","000","000","000","000","000","000","f00","080","080","080","080","080","080","080","808","808","808","808","808","808","f00","808","90f","f48","22d","90f","90f","ff0",""];
  string[] private scar2 = ["0f0","000","080","ff0","90f","080","f48","f00","0f0","000","080","ff0","90f","080","000","f00","0f0","000","080","ff0","90f","080","f00","0f0","000","080","ff0","90f","f00","080","f00","000","000","0f0","000","f48",""];  
  uint8[] private scar_w = [251, 64, 47, 42, 39, 38, 36, 35, 34, 34, 33, 29, 28, 26, 26, 25, 25, 25, 22, 21, 20, 20, 18, 17, 17, 15, 14, 14, 13, 13, 12, 12, 12, 10, 9, 8, 7];
  string[] private z = ['<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 500 500"><rect x="0" y="0" width="500" height="500" style="fill:#',
    '"/><polygon points="93 214, 13 393, 87 413, 165 220, 145 213, 93 214" style="fill:#', '"/><polygon points = "268 416, 270 489, 333 489, 339 416, 268 416" style="fill:#', '"/><polygon points= "177 416, 178 488, 243 489, 243 416, 177 416" style="fill:#',
    '"/><polygon points="176 368, 178 415, 268 416, 339 416, 345 368, 176 368" style="fill:#', '"/><polygon points =" 350 209, 433 399, 489 384, 399 207" style="fill:#', '"/><polygon points ="160 213, 171 367, 348 367, 343 209, 160 213" style="fill:#',
    '"/><polygon points="40 22, 56 209, 455 201, 452 10, 40 22 " style="fill:#', '"/><polygon points="252 142,223 162,284 161,252 142" style="fill:#', '"/><circle cx="174" cy="93" r="15" style="fill:#',
    '"/><circle cx="325" cy="93" r="15" style="fill:#',
    '"/>',
    '</svg>'];
  string private cross='<rect x="95" y="275" width="10" height="40" style="fill:#872"/><rect x="85" y="285" width="30" height="10" style="fill:#872"/>';
  string private but1='<circle cx="257" cy="250" r="5" style="fill:#';
  string private but2='"/><circle cx="257" cy="300" r="5" style="fill:#';
  string private hh1='<polygon points="76 169, 110 170, 77 172, 110 173, 76 169" style="fill:#';
  string private hh2='"/><polygon points="76 174, 110 175, 77 177, 110 178, 76 174" style="fill:#';
  string private sl1='<rect x="152" y="85" width="290" height="50" style="fill:#';
  string private sl2='<rect x="140" y="50" width="280" height="50" style="fill:#';
  string private ey1='<rect x="325" y="90" width="20" height="5" style="fill:#';
  string private ey2='"/><rect x="154" y="90" width="20" height="5" style="fill:#';
  string private zz='"/>';
  string private ea1='<circle cx="100" cy="290" r="14" style="fill:#';
  string private ea2='fe7';
  string private ea3='999';
  string private ea4='"/><circle cx="100" cy="290" r="4" style="fill:#000"/>';
  string private ea5='<circle cx="100" cy="290" r="12" style="fill:#';
  string private ea6='bdd';
  string private tr1='", "attributes": [{"trait_type": "Background","value": "';
  string private tr2='"},{"trait_type": "Fur","value": "';
  string private tr3='"},{"trait_type": "Tattoo","value": "';
  string private tr4='"},{"trait_type": "Scar","value": "';
  string private tr5='"},{"trait_type": "Eyes","value": "';
  string private tr6='"},{"trait_type": "Buttons","value": "';
  string private tr8='"}],"image": "data:image/svg+xml;base64,';
  string private ra1='A';
  string private ra2='C';
  string private ra4='E';
  string private ra5='F';
  string private ra6='G';
  string private co1=', ';
  string private rl1='{"name": "OnChain Bots #';
  string private rl3='"}';
  string private rl4='data:application/json;base64,';

  address[2] private _shareholders;
  uint[2] private _shares;

  uint256 public mintPrice = 30000000 gwei; // 0.03 ETH
  bool public saleIsActive = false;

  event PaymentReleased(address to, uint256 amount);

  struct Bot { // structure
    uint8 bg;
    uint8 fur;
    uint8 eyes;
    uint8 earring;
    uint8 buttons;
    uint8 scare;
  }

  // this was used to create the distributon of 10,000 and tested for uniqueness for the given parameters of this collection
  function random(string memory input) internal pure returns (uint256) {
    return uint256(keccak256(abi.encodePacked(input)));
  }

  function usew(uint8[] memory w,uint256 i) internal pure returns (uint8) {
    uint8 ind=0;
    uint256 j=uint256(w[0]);
    while (j<=i) {
      ind++;
      j+=uint256(w[ind]);
    }
    return ind;
  }

  function randomOne(uint256 tokenId) internal view returns (Bot memory) {
    tokenId=12839-tokenId; // avoid dupes
    Bot memory bot;
    bot.bg = uint8(random(string(abi.encodePacked(ra1,tokenId.toString()))) % 8);
    bot.fur = usew(fur_w,random(string(abi.encodePacked(but1,tokenId.toString())))%1817);
    bot.eyes = usew(eyes_w,random(string(abi.encodePacked(ra2,tokenId.toString())))%1429);
    bot.earring = usew(earring_w,random(string(abi.encodePacked(ra4,tokenId.toString())))%358);
    bot.buttons = usew(buttons_w,random(string(abi.encodePacked(ra5,tokenId.toString())))%1329);
    bot.scare = usew(scar_w,random(string(abi.encodePacked(ra6,tokenId.toString())))%1111);
    if (tokenId==6291) {
      bot.scare++; // perturb dupe
    }
    return bot;
  }

  // get string attributes of properties, used in tokenURI call
  function getTraits(Bot memory bot) internal view returns (string memory) {
    string memory o=string(abi.encodePacked(tr1,uint256(bot.bg).toString(),tr2,uint256(bot.fur).toString(),tr3,uint256(bot.earring).toString()));
    return string(abi.encodePacked(o,tr4,uint256(bot.scare).toString(),tr5,uint256(bot.eyes).toString(),tr6,uint256(bot.buttons).toString(),tr8));
  }

  // return comma separated traits in order: scare, fur, buttons, eyes, earring, mouth, background
  function getAttributes(uint256 tokenId) public view returns (string memory) {
    Bot memory bot = randomOne(tokenId);
    string memory o=string(abi.encodePacked(uint256(bot.scare).toString(),co1,uint256(bot.fur).toString(),co1,uint256(bot.buttons).toString(),co1));
    return string(abi.encodePacked(o,uint256(bot.eyes).toString(),co1,uint256(bot.earring).toString(),co1,uint256(bot.bg).toString()));
  }

  function genEye(string memory a,string memory b,uint8 h) internal view returns (string memory) {
    string memory out = '';
    if (h>4 && h<10) { out = string(abi.encodePacked(sl1,a,zz)); }
    if (h>10 && h<16) { out = string(abi.encodePacked(sl2,a,zz)); }
    if (h>16) { out = string(abi.encodePacked(out,ey1,b,ey2,b,zz)); }
    return out;
  }


  function genEarring(uint8 h) internal view returns (string memory) {
    if (h==0) {
      return '';
    }
    if (h<3) {
      if (h>1) {
        return string(abi.encodePacked(ea1,ea2,ea4));
      } 
      return string(abi.encodePacked(ea1,ea3,ea4));
    }
    if (h>3) {
      if (h>5) {
        return string(abi.encodePacked(ea5,ea6,zz));
      } 
      if (h>4) {
        return string(abi.encodePacked(ea5,ea2,zz));
      } 
      return string(abi.encodePacked(ea5,ea3,zz));
    }
    return cross;
  }

  function genSVG(Bot memory bot) internal view returns (string memory) {
    string memory a=fur1[bot.fur];
    string memory b=fur2[bot.fur];
    string memory scarest='';
    string memory butst='';
    if (bot.buttons>0) {
      butst=string(abi.encodePacked(but1,buttons1[bot.buttons-1],but2,buttons2[bot.buttons-1],zz));
    }
    if (bot.scare>0) {
      scarest=string(abi.encodePacked(hh1,scar1[bot.scare-1],hh2,scar2[bot.scare-1],zz));
    }
    string memory output = string(abi.encodePacked(z[0],background[bot.bg],z[1],b,z[2]));
    output = string(abi.encodePacked(output,b,z[3],b,z[4],a,z[5],b,z[6]));
    output = string(abi.encodePacked(output,b,z[7],a,z[8],b,z[9],eyes[bot.eyes],z[10]));
    output = string(abi.encodePacked(output,eyes[bot.eyes],z[11],genEye(a,b,bot.eyes)));
    return string(abi.encodePacked(output,genEarring(bot.earring),scarest,butst,z[12]));
  }

  function tokenURI(uint256 tokenId) override public view returns (string memory) {
    Bot memory bot = randomOne(tokenId);
    return string(abi.encodePacked(rl4,Base64.encode(bytes(string(abi.encodePacked(rl1,tokenId.toString(),getTraits(bot),Base64.encode(bytes(genSVG(bot))),rl3))))));
  }

  function claim(uint256 numberOfTokens) public payable nonReentrant {
    require(saleIsActive, "Sale not active now.");
    require(numClaimed >= 0 && numClaimed < 9500, "invalid claim");
    require(numberOfTokens <= 10, "You can only adopt 10 Bots at a time");
    require(mintPrice * numberOfTokens <= msg.value, "Ether value sent is not correct");

        for(uint256 i = 0; i < numberOfTokens; i++) {
            uint256 mintIndex = numClaimed + 1;
            if (mintIndex <= 9500) {
                _safeMint(msg.sender, mintIndex);
                numClaimed += 1;
            }
        }
  }
  
  function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
  }
    
  function ownerClaim(uint256 tokenId) public nonReentrant onlyOwner {
    require(tokenId > 9500 && tokenId < 10001, "invalid claim");
    _safeMint(owner(), tokenId);
  }

  function setMintPrice(uint256 newPrice) public onlyOwner {
    mintPrice = newPrice;
  }

  function withdraw(uint256 amount) public onlyOwner {
        require(address(this).balance >= amount, "Insufficient balance");
        
        uint256 totalShares = 100;
        for (uint256 i = 0; i < 2; i++) {
            uint256 payment = amount * _shares[i] / totalShares;

            Address.sendValue(payable(_shareholders[i]), payment);
            emit PaymentReleased(_shareholders[i], payment);
        }
  }
    
  constructor() payable ERC721("OnChainBots", "BOTS") Ownable() {
        _shareholders[0] = 0x3f758b112dFE9157988BF0e194A8f5c4f0Acc684; // theaibutcher
        _shareholders[1] = 0xCE63810B999Deb7123D431893a297E2C558C16a9; // investor

        _shares[0] = 60;
        _shares[1] = 40;

  }
}

//Made in Patliputra

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"numberOfTokens","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getAttributes","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"ownerClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000600c5560036101808181526223232360e91b6101a05260809081526101c08281526264646160e81b6101e05260a05261020082815262329c9960e91b6102205260c0526102408281526219a22360e91b6102605260e052610280828152622322a360e91b6102a052610100526102c08281526239646560e81b6102e052610120526103008281526233363760e81b61032052610140526103806040526103409182526263636360e81b6103605261016091909152620000c590600d9060086200285e565b50604080516102a081018252600361026082018181526266643160e81b61028084018190529083528351808501855282815262191c2360e91b6020828101919091528085019190915284518086018652838152620ccc8d60ea1b818301528486015284518086018652838152620cd10d60ea1b818301526060850152845180860186528381526266666360e81b81830152608085015284518086018652838152621c18a360e91b8183015260a0850152845180860186528381526266383960e81b8183015260c08501528451808601865283815262231b2360e91b8183015260e0850152845180860186528381526230343960e81b81830152610100850152845180860186528381526239303160e81b81830152610120850152845180860186528381526266633560e81b81830152610140850152845180860186528381526266666560e81b8183015261016085015284518086018652838152620d4dcd60ea1b81830152610180850152845180860186528381526262636360e81b818301526101a08501528451808601865283815262190c0d60ea1b818301526101c0850152845180860186528381526241414160e81b818301526101e0850152845180860186528381526241423360e81b81830152610200850152845180860186528381526206666360ec1b81830152610220850152845180860190955291845290830152610240810191909152620002df90600e906013620028c2565b50604080516102a081018252600361026082018181526232353960e81b6102808401528252825180840184528181526203030360ec1b60208281018290528085019290925284518086018652838152808301829052848601528451808601865283815280830182905260608501528451808601865283815280830182905260808501528451808601865283815280830182905260a08501528451808601865283815280830182905260c08501528451808601865283815280830182905260e08501528451808601865283815280830182905261010085015284518086018652838152808301829052610120850152845180860186528381526203036360ec1b8184015261014085015284518086018652838152808301829052610160850152845180860186528381526239366560e81b81840152610180850152845180860186528381526235366560e81b818401526101a0850152845180860186528381526237393960e81b818401526101c0850152845180860186528381526238303160e81b818401526101e0850152845180860186528381526203331360ec1b818401526102008501528451808601865283815262321cb360e91b818401526102208501528451808601909552918452830152610240810191909152620004c790600f906013620028c2565b50604080516102608101825260f9815260f660208083019190915260df92820192909252608d606082015260746080820152607260a0820152605d60c0820152605a60e082015260596101008201526056610120820152604a6101408201526048610160820152603761018082015260306101a082015260276101c08201526101e0810191909152601c610200820152600e61022082015260086102408201526200057790601090601362002914565b50604051806102e001604052806040518060400160405280600381526020016261626560e81b81525081526020016040518060400160405280600381526020016203038360ec1b81525081526020016040518060400160405280600381526020016236353360e81b81525081526020016040518060400160405280600381526020016203030360ec1b81525081526020016040518060400160405280600381526020016262653760e81b81525081526020016040518060400160405280600381526020016261626560e81b81525081526020016040518060400160405280600381526020016203038360ec1b81525081526020016040518060400160405280600381526020016236353360e81b81525081526020016040518060400160405280600381526020016203030360ec1b81525081526020016040518060400160405280600381526020016262653760e81b81525081526020016040518060400160405280600381526020016231b2b360e91b81525081526020016040518060400160405280600381526020016261626560e81b81525081526020016040518060400160405280600381526020016203038360ec1b81525081526020016040518060400160405280600381526020016236353360e81b81525081526020016040518060400160405280600381526020016203030360ec1b81525081526020016040518060400160405280600381526020016262653760e81b81525081526020016040518060400160405280600381526020016231b2b360e91b81525081526020016040518060400160405280600381526020016261626560e81b81525081526020016040518060400160405280600381526020016203038360ec1b81525081526020016040518060400160405280600381526020016236353360e81b81525081526020016040518060400160405280600381526020016203030360ec1b81525081526020016040518060400160405280600381526020016262653760e81b81525081526020016040518060400160405280600381526020016231b2b360e91b81525081525060119060176200088b929190620029bd565b50604080516102e08101825260f5815260796020820152606b9181019190915260656060820152604f6080820152604e60a0820152604660c0820152604460e0820152603e610100820152603a61012082015260386101408201526033610160820152603261018082015260306101a0820152602c6101c082015260266101e082015260236102008201526021610220820152601f6102408201526016610260820152600f610280820152600a6102a082015260076102c08201526200095690601290601762002914565b506040518060c001604052806040518060400160405280600381526020016239393960e81b81525081526020016040518060400160405280600381526020016266653760e81b81525081526020016040518060400160405280600381526020016239393960e81b81525081526020016040518060400160405280600381526020016239393960e81b81525081526020016040518060400160405280600381526020016266653760e81b81525081526020016040518060400160405280600381526020016218991960ea1b815250815250601390600662000a3892919062002a0f565b506040805160e08101825260fb8152602080820152601d918101919091526011606082015260106080820152600860a0820152600560c082015262000a8290601490600762002914565b50604080516105a081018252600361056082018181526206630360ec1b610580840181905290835283518085018552828152602081810183905280850191909152845180860186528381526219191960e91b818301819052858701919091528551808701875284815280830184905260608601528551808701875284815280830184905260808601528551808701875284815280830184905260a08601528551808701875284815280830184905260c08601528551808701875284815280830184905260e086015285518087018752848152808301849052610100860152855180870187528481526218183360e91b818401819052610120870191909152865180880188528581528084018290526101408701528651808801885285815280840182905261016087015286518088018852858152808401829052610180870152865180880188528581528084018290526101a0870152865180880188528581528084018290526101c0870152865180880188528581528084018290526101e08701528651808801885285815280840183905261020087015286518088018852858152808401829052610220870152865180880188528581526233183360e91b8185018190526102408801919091528751808901895286815280850184905261026088015287518089018952868152808501829052610280880152875180890189528681528085018290526102a0880152875180890189528681528085018290526102c0880152875180890189528681528085018290526102e088015287518089018952868152808501829052610300880152875180890189528681528085018290526103208801528751808901895286815280850191909152610340870152865180880188528581526206638360ec1b81850181905261036088019190915287518089018952868152808501829052610380880152875180890189528681528085018290526103a0880152875180890189528681528085018290526103c0880152875180890189528681528085018290526103e088015287518089018952868152808501959095526104008701949094528651808801885285815280840185905261042087015286518088018852858152808401859052610440870152865180880188528581528084019490945261046086019390935285518087018752848152621c983360e91b818401819052610480870191909152865180880188528581528084018290526104a087015286518088018852858152808401949094526104c0860193909352855180870187528481528083018490526104e086015285518087018752848152808301849052610500860152855180870187528481528083019390935261052085019290925284518086019095529184529083015261054081019190915262000e9790601590602b62002a61565b506040518061056001604052806040518060400160405280600381526020016206430360ec1b81525081526020016040518060400160405280600381526020016218183360e91b81525081526020016040518060400160405280600381526020016206630360ec1b81525081526020016040518060400160405280600381526020016233183360e91b81525081526020016040518060400160405280600381526020016206638360ec1b8152508152602001604051806040016040528060038152602001621c983360e91b8152508152602001604051806040016040528060038152602001620cc68760eb1b81525081526020016040518060400160405280600381526020016203066360ec1b81525081526020016040518060400160405280600381526020016206666360ec1b81525081526020016040518060400160405280600381526020016206630360ec1b8152508152602001604051806040016040528060038152602001620c0c1960ea1b81525081526020016040518060400160405280600381526020016233183360e91b81525081526020016040518060400160405280600381526020016206638360ec1b8152508152602001604051806040016040528060038152602001621c983360e91b8152508152602001604051806040016040528060038152602001620cc68760eb1b81525081526020016040518060400160405280600381526020016203066360ec1b81525081526020016040518060400160405280600381526020016219191960ea1b81525081526020016040518060400160405280600381526020016206666360ec1b81525081526020016040518060400160405280600381526020016206630360ec1b81525081526020016040518060400160405280600381526020016236353360e81b81525081526020016040518060400160405280600381526020016218183360e91b815250815260200160405180604001604052806003815260200162190c1960ea1b81525081526020016040518060400160405280600381526020016206638360ec1b8152508152602001604051806040016040528060038152602001621c983360e91b8152508152602001604051806040016040528060038152602001620cc68760eb1b81525081526020016040518060400160405280600381526020016203066360ec1b81525081526020016040518060400160405280600381526020016206666360ec1b81525081526020016040518060400160405280600381526020016206630360ec1b81525081526020016040518060400160405280600381526020016233183360e91b81525081526020016040518060400160405280600381526020016218183360e91b81525081526020016040518060400160405280600381526020016206436360ec1b8152508152602001604051806040016040528060038152602001620cc68760eb1b81525081526020016040518060400160405280600381526020016219191960ea1b8152508152602001604051806040016040528060038152602001621c983360e91b81525081526020016040518060400160405280600381526020016203066360ec1b81525081526020016040518060400160405280600381526020016206666360ec1b81525081526020016040518060400160405280600381526020016206630360ec1b81525081526020016040518060400160405280600381526020016218183360e91b81525081526020016040518060400160405280600381526020016266643160e81b81525081526020016040518060400160405280600381526020016233183360e91b81525081526020016040518060400160405280600381526020016206638360ec1b8152508152602001604051806040016040528060038152602001620dcc1960ea1b81525081526020016040518060400160405280600381526020016266643160e81b815250815250601690602b6200143f92919062002a61565b50604080516105808101825260fb81526037602080830191909152602d92820192909252602b606082015260266080820152602560a0820152602260c0820152602160e0820152610100810191909152601f61012082018190526101408201819052610160820181905261018082018190526101a0820152601e6101c082018190526101e0820152601d6102008201819052610220820152601c610240820152601b610260820181905261028082018190526102a0820152601a6102c082015260196102e08201526018610300820152601661032082015260156103408201526014610360820152601361038082018190526103a082018190526103c082018190526103e082018190526104008201819052610420820152601261044082015260116104608201526010610480820152600f6104a0820152600e6104c0820152600d6104e0820152600b610500820152600961052082015260086105408201526006610560820152620015b790601790602c62002914565b50604080516104e08101825260036104a082018181526206630360ec1b6104c084018190529083528351808501855282815260208181018390528085019190915284518086018652838152808201839052848601528451808601865283815280820183905260608501528451808601865283815280820183905260808501528451808601865283815280820183905260a08501528451808601865283815280820183905260c0850152845180860186528381526203030360ec1b81830181905260e0860191909152855180870187528481528083018290526101008601528551808701875284815280830182905261012086015285518087018752848152808301829052610140860152855180870187528481528083018290526101608601528551808701875284815280830182905261018086015285518087018752848152808301919091526101a0850152845180860186528381528082018390526101c0850152845180860186528381526203038360ec1b8183018190526101e0860191909152855180870187528481528083018290526102008601528551808701875284815280830182905261022086015285518087018752848152808301829052610240860152855180870187528481528083018290526102608601528551808701875284815280830182905261028086015285518087018752848152808301919091526102a0850152845180860186528381526207060760eb1b8183018190526102c0860191909152855180870187528481528083018290526102e086015285518087018752848152808301829052610300860152855180870187528481528083018290526103208601528551808701875284815280830182905261034086015285518087018752848152808301829052610360860152855180870187528481528083019390935261038085019290925284518086018652838152808201929092526103a084019190915283518085018552828152621c983360e91b8183018190526103c085019190915284518086018652838152620cc68760eb1b818401526103e085015284518086018652838152620c8c9960ea1b81840152610400850152845180860186528381528083018290526104208501528451808601865283815280830191909152610440840152835180850185529182526206666360ec1b828201526104608301919091528251908101909252600082526104808101919091526200194790601890602562002ab3565b50604051806104a001604052806040518060400160405280600381526020016203066360ec1b81525081526020016040518060400160405280600381526020016203030360ec1b81525081526020016040518060400160405280600381526020016203038360ec1b81525081526020016040518060400160405280600381526020016206666360ec1b8152508152602001604051806040016040528060038152602001621c983360e91b81525081526020016040518060400160405280600381526020016203038360ec1b8152508152602001604051806040016040528060038152602001620cc68760eb1b81525081526020016040518060400160405280600381526020016206630360ec1b81525081526020016040518060400160405280600381526020016203066360ec1b81525081526020016040518060400160405280600381526020016203030360ec1b81525081526020016040518060400160405280600381526020016203038360ec1b81525081526020016040518060400160405280600381526020016206666360ec1b8152508152602001604051806040016040528060038152602001621c983360e91b81525081526020016040518060400160405280600381526020016203038360ec1b81525081526020016040518060400160405280600381526020016203030360ec1b81525081526020016040518060400160405280600381526020016206630360ec1b81525081526020016040518060400160405280600381526020016203066360ec1b81525081526020016040518060400160405280600381526020016203030360ec1b81525081526020016040518060400160405280600381526020016203038360ec1b81525081526020016040518060400160405280600381526020016206666360ec1b8152508152602001604051806040016040528060038152602001621c983360e91b81525081526020016040518060400160405280600381526020016203038360ec1b81525081526020016040518060400160405280600381526020016206630360ec1b81525081526020016040518060400160405280600381526020016203066360ec1b81525081526020016040518060400160405280600381526020016203030360ec1b81525081526020016040518060400160405280600381526020016203038360ec1b81525081526020016040518060400160405280600381526020016206666360ec1b8152508152602001604051806040016040528060038152602001621c983360e91b81525081526020016040518060400160405280600381526020016206630360ec1b81525081526020016040518060400160405280600381526020016203038360ec1b81525081526020016040518060400160405280600381526020016206630360ec1b81525081526020016040518060400160405280600381526020016203030360ec1b81525081526020016040518060400160405280600381526020016203030360ec1b81525081526020016040518060400160405280600381526020016203066360ec1b81525081526020016040518060400160405280600381526020016203030360ec1b8152508152602001604051806040016040528060038152602001620cc68760eb1b815250815260200160405180602001604052806000815250815250601990602562001e1d92919062002ab3565b50604080516104a08101825260fb815260208101829052602f91810191909152602a606082015260276080820152602660a0820152602460c0820152602360e0820152602261010082018190526101208201526021610140820152601d610160820152601c610180820152601a6101a082018190526101c0820181905260196101e08301819052610200830181905261022083015260166102408301526015610260830152601461028083018190526102a083015260126102c083015260116102e08301819052610300830152600f610320830152600e6103408301819052610360830152600d61038083018190526103a0830152600c6103c083018190526103e08301819052610400830152600a61042083015260096104408301526008610460830152600761048083015262001f5791602562002914565b50604080516102608101909152609a6101a082018181528291620066846101c0840139815260200160405180608001604052806053815260200162006a1a60539139815260200160405180608001604052806050815260200162006b7e6050913981526020016040518060800160405280604f815260200162006af7604f9139815260200160405180608001604052806057815260200162006c38605791398152602001604051806080016040528060478152602001620069d36047913981526020016040518060800160405280604f815260200162006aa8604f913981526020016040518060800160405280604981526020016200671e60499139815260200160405180608001604052806042815260200162006642604291398152602001604051806060016040528060308152602001620068f360309139815260200160405180606001604052806030815260200162006bce6030913981526020016040518060400160405280600381526020016211179f60e91b8152508152602001604051806040016040528060068152602001651e17b9bb339f60d11b815250815250601b90600d6200210a92919062002b05565b506040518060a00160405280607e8152602001620067bf607e913980516200213b91601c9160209091019062002b57565b506040518060600160405280602d81526020016200696c602d913980516200216c91601d9160209091019062002b57565b50604051806060016040528060308152602001620066126030913980516200219d91601e9160209091019062002b57565b506040518060800160405280604881526020016200683d604891398051620021ce91601f9160209091019062002b57565b506040518060800160405280604b815260200162006885604b91398051620021fd916020919082019062002b57565b506040518060600160405280603a815260200162006bfe603a913980516200222e9160219160209091019062002b57565b506040518060600160405280603a815260200162006999603a913980516200225f9160229160209091019062002b57565b5060405180606001604052806038815260200162006b46603891398051620022909160239160209091019062002b57565b506040518060600160405280603b815260200162006a6d603b91398051620022c19160249160209091019062002b57565b506040805180820190915260038082526211179f60e91b6020909201918252620022ee9160259162002b57565b506040518060600160405280602e815260200162006cb4602e913980516200231f9160269160209091019062002b57565b506040805180820190915260038082526266653760e81b60209092019182526200234c9160279162002b57565b506040805180820190915260038082526239393960e81b6020909201918252620023799160289162002b57565b5060405180606001604052806036815260200162006789603691398051620023aa9160299160209091019062002b57565b506040518060600160405280602e815260200162006ce2602e91398051620023db91602a9160209091019062002b57565b506040805180820190915260038082526218991960ea1b60209092019182526200240891602b9162002b57565b50604051806060016040528060388152602001620065da6038913980516200243991602c9160209091019062002b57565b50604051806060016040528060228152602001620067676022913980516200246a91602d9160209091019062002b57565b5060405180606001604052806025815260200162006c8f6025913980516200249b91602e9160209091019062002b57565b50604051806060016040528060238152602001620068d0602391398051620024cc91602f9160209091019062002b57565b5060405180606001604052806023815260200162006949602391398051620024fd9160309160209091019062002b57565b50604051806060016040528060268152602001620069236026913980516200252e9160319160209091019062002b57565b50604051806060016040528060288152602001620065b26028913980516200255f9160329160209091019062002b57565b50604080518082019091526001808252604160f81b60209092019182526200258a9160339162002b57565b50604080518082019091526001808252604360f81b6020909201918252620025b59160349162002b57565b50604080518082019091526001808252604560f81b6020909201918252620025e09160359162002b57565b50604080518082019091526001808252602360f91b60209092019182526200260b9160369162002b57565b50604080518082019091526001808252604760f81b6020909201918252620026369160379162002b57565b5060408051808201909152600280825261016160f51b6020909201918252620026629160389162002b57565b506040805180820190915260188082527f7b226e616d65223a20224f6e436861696e20426f7473202300000000000000006020909201918252620026a99160399162002b57565b5060408051808201909152600280825261227d60f01b6020909201918252620026d591603a9162002b57565b5060408051808201909152601d8082527f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000060209092019182526200271c91603b9162002b57565b50666a94d74f43000060409081556041805460ff1916905580518082018252600b81526a4f6e436861696e426f747360a81b602080830191825283518085019094526004845263424f545360e01b908401528151919291620027819160009162002b57565b5080516200279790600190602084019062002b57565b50506001600a5550620027b3620027ad62002808565b6200280c565b603c80546001600160a01b0319908116733f758b112dfe9157988bf0e194a8f5c4f0acc684178255603d805490911673ce63810b999deb7123d431893a297e2c558c16a9179055603e556028603f5562002c8e565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054828255906000526020600020908101928215620028b0579160200282015b82811115620028b057825180516200289f91849160209091019062002b57565b50916020019190600101906200287f565b50620028be92915062002bd4565b5090565b828054828255906000526020600020908101928215620028b0579160200282015b82811115620028b057825180516200290391849160209091019062002b57565b5091602001919060010190620028e3565b82805482825590600052602060002090601f01602090048101928215620029af5791602002820160005b838211156200297e57835183826101000a81548160ff021916908360ff16021790555092602001926001016020816000010492830192600103026200293e565b8015620029ad5782816101000a81549060ff02191690556001016020816000010492830192600103026200297e565b505b50620028be92915062002bf5565b828054828255906000526020600020908101928215620028b0579160200282015b82811115620028b05782518051620029fe91849160209091019062002b57565b5091602001919060010190620029de565b828054828255906000526020600020908101928215620028b0579160200282015b82811115620028b0578251805162002a5091849160209091019062002b57565b509160200191906001019062002a30565b828054828255906000526020600020908101928215620028b0579160200282015b82811115620028b0578251805162002aa291849160209091019062002b57565b509160200191906001019062002a82565b828054828255906000526020600020908101928215620028b0579160200282015b82811115620028b0578251805162002af491849160209091019062002b57565b509160200191906001019062002ad4565b828054828255906000526020600020908101928215620028b0579160200282015b82811115620028b0578251805162002b4691849160209091019062002b57565b509160200191906001019062002b26565b82805462002b659062002c51565b90600052602060002090601f01602090048101928262002b895760008555620029af565b82601f1062002ba457805160ff1916838001178555620029af565b82800160010185558215620029af579182015b82811115620029af57825182559160200191906001019062002bb7565b80821115620028be57600062002beb828262002c0c565b5060010162002bd4565b5b80821115620028be576000815560010162002bf6565b50805462002c1a9062002c51565b6000825580601f1062002c2e575062002c4e565b601f01602090049060005260206000209081019062002c4e919062002bf5565b50565b60028104600182168062002c6657607f821691505b6020821081141562002c8857634e487b7160e01b600052602260045260246000fd5b50919050565b6139148062002c9e6000396000f3fe6080604052600436106101c25760003560e01c80636352211e116100f7578063a22cb46511610095578063e985e9c511610064578063e985e9c5146104b6578063eb8d2444146104d6578063f2fde38b146104eb578063f4a0a5281461050b576101c2565b8063a22cb46514610441578063b88d4fde14610461578063c87b56dd14610481578063d5abeb01146104a1576101c2565b8063715018a6116100d1578063715018a6146103ed5780638da5cb5b1461040257806395d89b41146104175780639c2f2a421461042c576101c2565b80636352211e146103985780636817c76c146103b857806370a08231146103cd576101c2565b80632f745c591161016457806342842e0e1161013e57806342842e0e14610318578063434f48c4146103385780634378a6e3146103585780634f6ccce714610378576101c2565b80632f745c59146102d057806334918dfd146102f0578063379607f514610305576101c2565b8063095ea7b3116101a0578063095ea7b31461024c57806318160ddd1461026e57806323b872dd146102905780632e1a7d4d146102b0576101c2565b806301ffc9a7146101c757806306fdde03146101fd578063081812fc1461021f575b600080fd5b3480156101d357600080fd5b506101e76101e2366004612aaa565b61052b565b6040516101f49190613061565b60405180910390f35b34801561020957600080fd5b50610212610558565b6040516101f4919061306c565b34801561022b57600080fd5b5061023f61023a366004612ae2565b6105ea565b6040516101f49190612ff7565b34801561025857600080fd5b5061026c610267366004612a81565b610636565b005b34801561027a57600080fd5b506102836106ce565b6040516101f491906136f6565b34801561029c57600080fd5b5061026c6102ab366004612940565b6106d4565b3480156102bc57600080fd5b5061026c6102cb366004612ae2565b61070c565b3480156102dc57600080fd5b506102836102eb366004612a81565b610861565b3480156102fc57600080fd5b5061026c6108b3565b61026c610313366004612ae2565b610906565b34801561032457600080fd5b5061026c610333366004612940565b610a27565b34801561034457600080fd5b5061026c610353366004612ae2565b610a42565b34801561036457600080fd5b50610212610373366004612ae2565b610af0565b34801561038457600080fd5b50610283610393366004612ae2565b610bbf565b3480156103a457600080fd5b5061023f6103b3366004612ae2565b610c1a565b3480156103c457600080fd5b50610283610c4f565b3480156103d957600080fd5b506102836103e83660046128ed565b610c55565b3480156103f957600080fd5b5061026c610c99565b34801561040e57600080fd5b5061023f610ce4565b34801561042357600080fd5b50610212610cf3565b34801561043857600080fd5b50610283610d02565b34801561044d57600080fd5b5061026c61045c366004612a47565b610d08565b34801561046d57600080fd5b5061026c61047c36600461297b565b610dd6565b34801561048d57600080fd5b5061021261049c366004612ae2565b610e15565b3480156104ad57600080fd5b50610283610ea0565b3480156104c257600080fd5b506101e76104d136600461290e565b610ea6565b3480156104e257600080fd5b506101e7610ed4565b3480156104f757600080fd5b5061026c6105063660046128ed565b610edd565b34801561051757600080fd5b5061026c610526366004612ae2565b610f4e565b60006001600160e01b0319821663780e9d6360e01b1480610550575061055082610f92565b90505b919050565b606060008054610567906137bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610593906137bc565b80156105e05780601f106105b5576101008083540402835291602001916105e0565b820191906000526020600020905b8154815290600101906020018083116105c357829003601f168201915b5050505050905090565b60006105f582610fd2565b61061a5760405162461bcd60e51b8152600401610611906134ac565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061064182610c1a565b9050806001600160a01b0316836001600160a01b031614156106755760405162461bcd60e51b815260040161061190613576565b806001600160a01b0316610687610fef565b6001600160a01b031614806106a357506106a3816104d1610fef565b6106bf5760405162461bcd60e51b815260040161061190613387565b6106c98383610ff3565b505050565b60085490565b6106e56106df610fef565b82611061565b6107015760405162461bcd60e51b8152600401610611906135b7565b6106c98383836110e6565b610714610fef565b6001600160a01b0316610725610ce4565b6001600160a01b03161461074b5760405162461bcd60e51b8152600401610611906134f8565b8047101561076b5760405162461bcd60e51b815260040161061190613242565b606460005b60028110156106c957600082603e836002811061079d57634e487b7160e01b600052603260045260246000fd5b01546107a99086613737565b6107b39190613723565b90506107ea603c83600281106107d957634e487b7160e01b600052603260045260246000fd5b01546001600160a01b031682611213565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056603c836002811061082c57634e487b7160e01b600052603260045260246000fd5b0154604051610846916001600160a01b0316908490613048565b60405180910390a15080610859816137f7565b915050610770565b600061086c83610c55565b821061088a5760405162461bcd60e51b8152600401610611906130ad565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108bb610fef565b6001600160a01b03166108cc610ce4565b6001600160a01b0316146108f25760405162461bcd60e51b8152600401610611906134f8565b6041805460ff19811660ff90911615179055565b6002600a5414156109295760405162461bcd60e51b8152600401610611906136bf565b6002600a5560415460ff166109505760405162461bcd60e51b81526004016106119061307f565b61251c600c54106109735760405162461bcd60e51b815260040161061190613698565b600a8111156109945760405162461bcd60e51b815260040161061190613654565b34816040546109a39190613737565b11156109c15760405162461bcd60e51b815260040161061190613270565b60005b81811015610a1e576000600c5460016109dd919061370b565b905061251c8111610a0b576109f233826112af565b6001600c6000828254610a05919061370b565b90915550505b5080610a16816137f7565b9150506109c4565b50506001600a55565b6106c983838360405180602001604052806000815250610dd6565b6002600a541415610a655760405162461bcd60e51b8152600401610611906136bf565b6002600a55610a72610fef565b6001600160a01b0316610a83610ce4565b6001600160a01b031614610aa95760405162461bcd60e51b8152600401610611906134f8565b61251c81118015610abb575061271181105b610ad75760405162461bcd60e51b815260040161061190613698565b610ae8610ae2610ce4565b826112af565b506001600a55565b60606000610afd836112cd565b90506000610b118260a0015160ff1661161a565b6038610b23846020015160ff1661161a565b6038610b35866080015160ff1661161a565b6038604051602001610b4c96959493929190612dd2565b604051602081830303815290604052905080610b6e836040015160ff1661161a565b6038610b80856060015160ff1661161a565b6038610b92876000015160ff1661161a565b604051602001610ba796959493929190612c3f565b60405160208183030381529060405292505050919050565b6000610bc96106ce565b8210610be75760405162461bcd60e51b815260040161061190613608565b60088281548110610c0857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105505760405162461bcd60e51b81526004016106119061342e565b60405481565b60006001600160a01b038216610c7d5760405162461bcd60e51b8152600401610611906133e4565b506001600160a01b031660009081526003602052604090205490565b610ca1610fef565b6001600160a01b0316610cb2610ce4565b6001600160a01b031614610cd85760405162461bcd60e51b8152600401610611906134f8565b610ce26000611735565b565b600b546001600160a01b031690565b606060018054610567906137bc565b600c5481565b610d10610fef565b6001600160a01b0316826001600160a01b03161415610d415760405162461bcd60e51b81526004016106119061320b565b8060056000610d4e610fef565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610d92610fef565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610dca9190613061565b60405180910390a35050565b610de7610de1610fef565b83611061565b610e035760405162461bcd60e51b8152600401610611906135b7565b610e0f84848484611787565b50505050565b60606000610e22836112cd565b9050603b610e786039610e348661161a565b610e3d856117ba565b610e4e610e498761186a565b611f3d565b603a604051602001610e64959493929190612f28565b604051602081830303815290604052611f3d565b604051602001610e89929190612f03565b604051602081830303815290604052915050919050565b61271081565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60415460ff1681565b610ee5610fef565b6001600160a01b0316610ef6610ce4565b6001600160a01b031614610f1c5760405162461bcd60e51b8152600401610611906134f8565b6001600160a01b038116610f425760405162461bcd60e51b81526004016106119061314a565b610f4b81611735565b50565b610f56610fef565b6001600160a01b0316610f67610ce4565b6001600160a01b031614610f8d5760405162461bcd60e51b8152600401610611906134f8565b604055565b60006001600160e01b031982166380ac58cd60e01b1480610fc357506001600160e01b03198216635b5e139f60e01b145b806105505750610550826120b1565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061102882610c1a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061106c82610fd2565b6110885760405162461bcd60e51b81526004016106119061333b565b600061109383610c1a565b9050806001600160a01b0316846001600160a01b031614806110ce5750836001600160a01b03166110c3846105ea565b6001600160a01b0316145b806110de57506110de8185610ea6565b949350505050565b826001600160a01b03166110f982610c1a565b6001600160a01b03161461111f5760405162461bcd60e51b81526004016106119061352d565b6001600160a01b0382166111455760405162461bcd60e51b8152600401610611906131c7565b6111508383836120ca565b61115b600082610ff3565b6001600160a01b0383166000908152600360205260408120805460019290611184908490613756565b90915550506001600160a01b03821660009081526003602052604081208054600192906111b290849061370b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b804710156112335760405162461bcd60e51b815260040161061190613304565b6000826001600160a01b03168260405161124c90612ff4565b60006040518083038185875af1925050503d8060008114611289576040519150601f19603f3d011682016040523d82523d6000602084013e61128e565b606091505b50509050806106c95760405162461bcd60e51b8152600401610611906132a7565b6112c9828260405180602001604052806000815250612153565b5050565b6112d56128a1565b6112e182613227613756565b91506112eb6128a1565b600861132060336112fb8661161a565b60405160200161130c929190612f03565b604051602081830303815290604052612186565b61132a9190613832565b60ff16815260108054604080516020808402820181019092528281526113c0939092909183018282801561139b57602002820191906000526020600020906000905b825461010083900a900460ff1681526020600192830181810494850194909303909202910180841161136c5790505b50505050506107196113b1601d6112fb8861161a565b6113bb9190613832565b6121b7565b60ff1660208083019190915260128054604080518285028101850190915281815261144c939092919083018282801561143657602002820191906000526020600020906000905b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116114075790505b50505050506105956113b160346112fb8861161a565b60ff166040808301919091526014805482516020808302820181019094528181526114d893909291908301828280156114c257602002820191906000526020600020906000905b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116114935790505b50505050506101666113b160356112fb8861161a565b60ff1660608201526017805460408051602080840282018101909252828152611562939092909183018282801561154c57602002820191906000526020600020906000905b825461010083900a900460ff1681526020600192830181810494850194909303909202910180841161151d5790505b50505050506105316113b160366112fb8861161a565b60ff166080820152601a8054604080516020808402820181019092528281526115ec93909290918301828280156115d657602002820191906000526020600020906000905b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116115a75790505b50505050506104576113b160376112fb8861161a565b60ff1660a08201526118938314156105505760a0810180519061160e82613812565b60ff1690525092915050565b60608161163f57506040805180820190915260018152600360fc1b6020820152610553565b8160005b81156116695780611653816137f7565b91506116629050600a83613723565b9150611643565b60008167ffffffffffffffff81111561169257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116bc576020820181803683370190505b5090505b84156110de576116d1600183613756565b91506116de600a86613832565b6116e990603061370b565b60f81b81838151811061170c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061172e600a86613723565b94506116c0565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6117928484846110e6565b61179e8484848461224b565b610e0f5760405162461bcd60e51b8152600401610611906130f8565b60606000602c6117d0846000015160ff1661161a565b602d6117e2866020015160ff1661161a565b602e6117f4886060015160ff1661161a565b60405160200161180996959493929190612f77565b604051602081830303815290604052905080602f61182d8560a0015160ff1661161a565b603061183f876040015160ff1661161a565b6031611851896080015160ff1661161a565b6032604051602001610e89989796959493929190612e3b565b60606000600e836020015160ff168154811061189657634e487b7160e01b600052603260045260246000fd5b9060005260206000200180546118ab906137bc565b80601f01602080910402602001604051908101604052809291908181526020018280546118d7906137bc565b80156119245780601f106118f957610100808354040283529160200191611924565b820191906000526020600020905b81548152906001019060200180831161190757829003601f168201915b505050505090506000600f846020015160ff168154811061195557634e487b7160e01b600052603260045260246000fd5b90600052602060002001805461196a906137bc565b80601f0160208091040260200160405190810160405280929190818152602001828054611996906137bc565b80156119e35780601f106119b8576101008083540402835291602001916119e3565b820191906000526020600020905b8154815290600101906020018083116119c657829003601f168201915b505060408051602080820183526000808352835191820190935291825260808a01519596509490935060ff16159150611ac0905057601d601560018860800151611a2d919061376d565b60ff1681548110611a4e57634e487b7160e01b600052603260045260246000fd5b90600052602060002001601e601660018a60800151611a6d919061376d565b60ff1681548110611a8e57634e487b7160e01b600052603260045260246000fd5b906000526020600020016025604051602001611aae959493929190612fd6565b60405160208183030381529060405290505b60a086015160ff1615611b7557601f601860018860a00151611ae2919061376d565b60ff1681548110611b0357634e487b7160e01b600052603260045260246000fd5b906000526020600020016020601960018a60a00151611b22919061376d565b60ff1681548110611b4357634e487b7160e01b600052603260045260246000fd5b906000526020600020016025604051602001611b63959493929190612fd6565b60405160208183030381529060405291505b6000601b600081548110611b9957634e487b7160e01b600052603260045260246000fd5b90600052602060002001600d886000015160ff1681548110611bcb57634e487b7160e01b600052603260045260246000fd5b90600052602060002001601b600181548110611bf757634e487b7160e01b600052603260045260246000fd5b9060005260206000200186601b600281548110611c2457634e487b7160e01b600052603260045260246000fd5b90600052602060002001604051602001611c42959493929190612fb4565b60405160208183030381529060405290508084601b600381548110611c7757634e487b7160e01b600052603260045260246000fd5b9060005260206000200186601b600481548110611ca457634e487b7160e01b600052603260045260246000fd5b9060005260206000200189601b600581548110611cd157634e487b7160e01b600052603260045260246000fd5b906000526020600020018a601b600681548110611cfe57634e487b7160e01b600052603260045260246000fd5b90600052602060002001604051602001611d2099989796959493929190612cb0565b60405160208183030381529060405290508084601b600781548110611d5557634e487b7160e01b600052603260045260246000fd5b9060005260206000200187601b600881548110611d8257634e487b7160e01b600052603260045260246000fd5b9060005260206000200188601b600981548110611daf57634e487b7160e01b600052603260045260246000fd5b9060005260206000200160118e6040015160ff1681548110611de157634e487b7160e01b600052603260045260246000fd5b90600052602060002001601b600a81548110611e0d57634e487b7160e01b600052603260045260246000fd5b90600052602060002001604051602001611e2f99989796959493929190612d50565b6040516020818303038152906040529050806011886040015160ff1681548110611e6957634e487b7160e01b600052603260045260246000fd5b90600052602060002001601b600b81548110611e9557634e487b7160e01b600052603260045260246000fd5b90600052602060002001611eae88888c60400151612366565b604051602001611ec19493929190612ec5565b604051602081830303815290604052905080611ee08860600151612443565b8484601b600c81548110611f0457634e487b7160e01b600052603260045260246000fd5b90600052602060002001604051602001611f22959493929190612bda565b60405160208183030381529060405295505050505050919050565b805160609080611f5d575050604080516020810190915260008152610553565b60006003611f6c83600261370b565b611f769190613723565b611f81906004613737565b90506000611f9082602061370b565b67ffffffffffffffff811115611fb657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611fe0576020820181803683370190505b509050600060405180606001604052806040815260200161389f604091399050600181016020830160005b8681101561206c576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b83526004909201910161200b565b5060038606600181146120865760028114612097576120a3565b613d3d60f01b6001198301526120a3565b603d60f81b6000198301525b505050918152949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6120d58383836106c9565b6001600160a01b0383166120f1576120ec816125be565b612114565b816001600160a01b0316836001600160a01b031614612114576121148382612602565b6001600160a01b0382166121305761212b8161269f565b6106c9565b826001600160a01b0316826001600160a01b0316146106c9576106c98282612778565b61215d83836127bc565b61216a600084848461224b565b6106c95760405162461bcd60e51b8152600401610611906130f8565b6000816040516020016121999190612bbe565b60408051601f19818403018152919052805160209091012092915050565b600080600090506000846000815181106121e157634e487b7160e01b600052603260045260246000fd5b602002602001015160ff1690505b838111612243578161220081613812565b925050848260ff168151811061222657634e487b7160e01b600052603260045260246000fd5b602002602001015160ff168161223c919061370b565b90506121ef565b509392505050565b600061225f846001600160a01b031661289b565b1561235b57836001600160a01b031663150b7a0261227b610fef565b8786866040518563ffffffff1660e01b815260040161229d949392919061300b565b602060405180830381600087803b1580156122b757600080fd5b505af19250505080156122e7575060408051601f3d908101601f191682019092526122e491810190612ac6565b60015b612341573d808015612315576040519150601f19603f3d011682016040523d82523d6000602084013e61231a565b606091505b5080516123395760405162461bcd60e51b8152600401610611906130f8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110de565b506001949350505050565b604080516020810190915260008152606090600460ff841611801561238e5750600a8360ff16105b156123bc5760218560256040516020016123aa93929190612f44565b60405160208183030381529060405290505b600a8360ff161180156123d2575060108360ff16105b156124005760228560256040516020016123ee93929190612f44565b60405160208183030381529060405290505b60108360ff1611156110de5780602385602487602560405160200161242a96959493929190612dd2565b6040516020818303038152906040529050949350505050565b606060ff82166124625750604080516020810190915260008152610553565b60038260ff1610156124c05760018260ff1611156124a85760266027602960405160200161249293929190612f93565b6040516020818303038152906040529050610553565b60266028602960405160200161249293929190612f93565b60038260ff16111561252c5760058260ff1611156124f057602a602b602560405160200161249293929190612f93565b60048260ff16111561251457602a6027602560405160200161249293929190612f93565b602a6028602560405160200161249293929190612f93565b601c8054612539906137bc565b80601f0160208091040260200160405190810160405280929190818152602001828054612565906137bc565b80156125b25780601f10612587576101008083540402835291602001916125b2565b820191906000526020600020905b81548152906001019060200180831161259557829003601f168201915b50505050509050919050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161260f84610c55565b6126199190613756565b60008381526007602052604090205490915080821461266c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906126b190600190613756565b600083815260096020526040812054600880549394509092849081106126e757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061271657634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061275c57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061278383610c55565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166127e25760405162461bcd60e51b815260040161061190613477565b6127eb81610fd2565b156128085760405162461bcd60e51b815260040161061190613190565b612814600083836120ca565b6001600160a01b038216600090815260036020526040812080546001929061283d90849061370b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b6040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a081019190915290565b80356001600160a01b038116811461055357600080fd5b6000602082840312156128fe578081fd5b612907826128d6565b9392505050565b60008060408385031215612920578081fd5b612929836128d6565b9150612937602084016128d6565b90509250929050565b600080600060608486031215612954578081fd5b61295d846128d6565b925061296b602085016128d6565b9150604084013590509250925092565b60008060008060808587031215612990578081fd5b612999856128d6565b935060206129a88187016128d6565b935060408601359250606086013567ffffffffffffffff808211156129cb578384fd5b818801915088601f8301126129de578384fd5b8135818111156129f0576129f0613872565b604051601f8201601f1916810185018381118282101715612a1357612a13613872565b60405281815283820185018b1015612a29578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215612a59578182fd5b612a62836128d6565b915060208301358015158114612a76578182fd5b809150509250929050565b60008060408385031215612a93578182fd5b612a9c836128d6565b946020939093013593505050565b600060208284031215612abb578081fd5b813561290781613888565b600060208284031215612ad7578081fd5b815161290781613888565b600060208284031215612af3578081fd5b5035919050565b60008151808452612b12816020860160208601613790565b601f01601f19169290920160200192915050565b805460009060028104600180831680612b4057607f831692505b6020808410821415612b6057634e487b7160e01b86526022600452602486fd5b818015612b745760018114612b8557612bb2565b60ff19861689528489019650612bb2565b612b8e886136ff565b60005b86811015612baa5781548b820152908501908301612b91565b505084890196505b50505050505092915050565b60008251612bd0818460208701613790565b9190910192915050565b60008651612bec818460208b01613790565b865190830190612c00818360208b01613790565b8651910190612c13818360208a01613790565b8551910190612c26818360208901613790565b612c3281830186612b26565b9998505050505050505050565b60008751612c51818460208c01613790565b875190830190612c65818360208c01613790565b612c7181830189612b26565b9150508551612c84818360208a01613790565b612c9081830187612b26565b9150508351612ca3818360208801613790565b0198975050505050505050565b60008a51612cc2818460208f01613790565b8a5190830190612cd6818360208f01613790565b612ce28183018c612b26565b9150508851612cf5818360208d01613790565b612d018183018a612b26565b9150508651612d14818360208b01613790565b612d2081830188612b26565b9150508451612d33818360208901613790565b612d3f81830186612b26565b9d9c50505050505050505050505050565b60008a51612d62818460208f01613790565b8a5190830190612d76818360208f01613790565b612d828183018c612b26565b9150508851612d95818360208d01613790565b612da18183018a612b26565b9150508651612db4818360208b01613790565b612d3f612dcc612dc68385018a612b26565b88612b26565b86612b26565b60008751612de4818460208c01613790565b612df081840189612b26565b90508651612e02818360208b01613790565b612e0e81830188612b26565b9150508451612e21818360208901613790565b612e2d81830186612b26565b9a9950505050505050505050565b60008951612e4d818460208e01613790565b612e598184018b612b26565b90508851612e6b818360208d01613790565b612e778183018a612b26565b9150508651612e8a818360208b01613790565b612e9681830188612b26565b9150508451612ea9818360208901613790565b612eb581830186612b26565b9c9b505050505050505050505050565b60008551612ed7818460208a01613790565b612ee6612dcc82850188612b26565b90508351612ef8818360208801613790565b019695505050505050565b6000612f0f8285612b26565b8351612f1f818360208801613790565b01949350505050565b6000612f348288612b26565b8651612c00818360208b01613790565b6000612f508286612b26565b8451612f60818360208901613790565b612f6c81830186612b26565b979650505050505050565b6000612f838289612b26565b8751612c65818360208c01613790565b6000612fab612fa5612dcc8488612b26565b84612b26565b95945050505050565b6000612fc6612dcc612dc6848a612b26565b8451612c26818360208901613790565b6000612f6c612fa5612dcc612dc6612fee868c612b26565b8a612b26565b90565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061303e90830184612afa565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602082526129076020830184612afa565b60208082526014908201527329b0b632903737ba1030b1ba34bb32903737bb9760611b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b602080825260149082015273496e73756666696369656e742062616c616e636560601b604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252603a908201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260408201527f6563697069656e74206d61792068617665207265766572746564000000000000606082015260800190565b6020808252601d908201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526024908201527f596f752063616e206f6e6c792061646f707420313020426f747320617420612060408201526374696d6560e01b606082015260800190565b6020808252600d908201526c696e76616c696420636c61696d60981b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b90815260200190565b60009081526020902090565b6000821982111561371e5761371e613846565b500190565b6000826137325761373261385c565b500490565b600081600019048311821515161561375157613751613846565b500290565b60008282101561376857613768613846565b500390565b600060ff821660ff84168082101561378757613787613846565b90039392505050565b60005b838110156137ab578181015183820152602001613793565b83811115610e0f5750506000910152565b6002810460018216806137d057607f821691505b602082108114156137f157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561380b5761380b613846565b5060010190565b600060ff821660ff81141561382957613829613846565b60010192915050565b6000826138415761384161385c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f4b57600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220502ca4c2f2dc692b65768b38882739c6c01c9966c4e59bb7494a8f4d461385d664736f6c63430008000033227d5d2c22696d616765223a2022646174613a696d6167652f7376672b786d6c3b6261736536342c222c202261747472696275746573223a205b7b2274726169745f74797065223a20224261636b67726f756e64222c2276616c7565223a2022222f3e3c636972636c652063783d22323537222063793d223330302220723d223522207374796c653d2266696c6c3a23222f3e3c706f6c79676f6e20706f696e74733d22323532203134322c323233203136322c323834203136312c3235322031343222207374796c653d2266696c6c3a233c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302035303020353030223e3c7265637420783d22302220793d2230222077696474683d2235303022206865696768743d2235303022207374796c653d2266696c6c3a23222f3e3c706f6c79676f6e20706f696e74733d2234302032322c203536203230392c20343535203230312c203435322031302c2034302032322022207374796c653d2266696c6c3a23227d2c7b2274726169745f74797065223a2022467572222c2276616c7565223a2022222f3e3c636972636c652063783d22313030222063793d223239302220723d223422207374796c653d2266696c6c3a23303030222f3e3c7265637420783d2239352220793d22323735222077696474683d22313022206865696768743d22343022207374796c653d2266696c6c3a23383732222f3e3c7265637420783d2238352220793d22323835222077696474683d22333022206865696768743d22313022207374796c653d2266696c6c3a23383732222f3e3c706f6c79676f6e20706f696e74733d223736203136392c20313130203137302c203737203137322c20313130203137332c2037362031363922207374796c653d2266696c6c3a23222f3e3c706f6c79676f6e20706f696e74733d223736203137342c20313130203137352c203737203137372c20313130203137382c2037362031373422207374796c653d2266696c6c3a23227d2c7b2274726169745f74797065223a202253636172222c2276616c7565223a2022222f3e3c636972636c652063783d22313734222063793d2239332220723d22313522207374796c653d2266696c6c3a23227d2c7b2274726169745f74797065223a2022427574746f6e73222c2276616c7565223a2022227d2c7b2274726169745f74797065223a202245796573222c2276616c7565223a20223c636972636c652063783d22323537222063793d223235302220723d223522207374796c653d2266696c6c3a233c7265637420783d223134302220793d223530222077696474683d2232383022206865696768743d22353022207374796c653d2266696c6c3a23222f3e3c706f6c79676f6e20706f696e7473203d2220333530203230392c20343333203339392c20343839203338342c203339392032303722207374796c653d2266696c6c3a23222f3e3c706f6c79676f6e20706f696e74733d223933203231342c203133203339332c203837203431332c20313635203232302c20313435203231332c2039332032313422207374796c653d2266696c6c3a23222f3e3c7265637420783d223135342220793d223930222077696474683d22323022206865696768743d223522207374796c653d2266696c6c3a23222f3e3c706f6c79676f6e20706f696e7473203d22313630203231332c20313731203336372c20333438203336372c20333433203230392c203136302032313322207374796c653d2266696c6c3a23222f3e3c706f6c79676f6e20706f696e74733d2022313737203431362c20313738203438382c20323433203438392c20323433203431362c203137372034313622207374796c653d2266696c6c3a233c7265637420783d223332352220793d223930222077696474683d22323022206865696768743d223522207374796c653d2266696c6c3a23222f3e3c706f6c79676f6e20706f696e7473203d2022323638203431362c20323730203438392c20333333203438392c20333339203431362c203236382034313622207374796c653d2266696c6c3a23222f3e3c636972636c652063783d22333235222063793d2239332220723d22313522207374796c653d2266696c6c3a233c7265637420783d223135322220793d223835222077696474683d2232393022206865696768743d22353022207374796c653d2266696c6c3a23222f3e3c706f6c79676f6e20706f696e74733d22313736203336382c20313738203431352c20323638203431362c20333339203431362c20333435203336382c203137362033363822207374796c653d2266696c6c3a23227d2c7b2274726169745f74797065223a2022546174746f6f222c2276616c7565223a20223c636972636c652063783d22313030222063793d223239302220723d22313422207374796c653d2266696c6c3a233c636972636c652063783d22313030222063793d223239302220723d22313222207374796c653d2266696c6c3a23

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636352211e116100f7578063a22cb46511610095578063e985e9c511610064578063e985e9c5146104b6578063eb8d2444146104d6578063f2fde38b146104eb578063f4a0a5281461050b576101c2565b8063a22cb46514610441578063b88d4fde14610461578063c87b56dd14610481578063d5abeb01146104a1576101c2565b8063715018a6116100d1578063715018a6146103ed5780638da5cb5b1461040257806395d89b41146104175780639c2f2a421461042c576101c2565b80636352211e146103985780636817c76c146103b857806370a08231146103cd576101c2565b80632f745c591161016457806342842e0e1161013e57806342842e0e14610318578063434f48c4146103385780634378a6e3146103585780634f6ccce714610378576101c2565b80632f745c59146102d057806334918dfd146102f0578063379607f514610305576101c2565b8063095ea7b3116101a0578063095ea7b31461024c57806318160ddd1461026e57806323b872dd146102905780632e1a7d4d146102b0576101c2565b806301ffc9a7146101c757806306fdde03146101fd578063081812fc1461021f575b600080fd5b3480156101d357600080fd5b506101e76101e2366004612aaa565b61052b565b6040516101f49190613061565b60405180910390f35b34801561020957600080fd5b50610212610558565b6040516101f4919061306c565b34801561022b57600080fd5b5061023f61023a366004612ae2565b6105ea565b6040516101f49190612ff7565b34801561025857600080fd5b5061026c610267366004612a81565b610636565b005b34801561027a57600080fd5b506102836106ce565b6040516101f491906136f6565b34801561029c57600080fd5b5061026c6102ab366004612940565b6106d4565b3480156102bc57600080fd5b5061026c6102cb366004612ae2565b61070c565b3480156102dc57600080fd5b506102836102eb366004612a81565b610861565b3480156102fc57600080fd5b5061026c6108b3565b61026c610313366004612ae2565b610906565b34801561032457600080fd5b5061026c610333366004612940565b610a27565b34801561034457600080fd5b5061026c610353366004612ae2565b610a42565b34801561036457600080fd5b50610212610373366004612ae2565b610af0565b34801561038457600080fd5b50610283610393366004612ae2565b610bbf565b3480156103a457600080fd5b5061023f6103b3366004612ae2565b610c1a565b3480156103c457600080fd5b50610283610c4f565b3480156103d957600080fd5b506102836103e83660046128ed565b610c55565b3480156103f957600080fd5b5061026c610c99565b34801561040e57600080fd5b5061023f610ce4565b34801561042357600080fd5b50610212610cf3565b34801561043857600080fd5b50610283610d02565b34801561044d57600080fd5b5061026c61045c366004612a47565b610d08565b34801561046d57600080fd5b5061026c61047c36600461297b565b610dd6565b34801561048d57600080fd5b5061021261049c366004612ae2565b610e15565b3480156104ad57600080fd5b50610283610ea0565b3480156104c257600080fd5b506101e76104d136600461290e565b610ea6565b3480156104e257600080fd5b506101e7610ed4565b3480156104f757600080fd5b5061026c6105063660046128ed565b610edd565b34801561051757600080fd5b5061026c610526366004612ae2565b610f4e565b60006001600160e01b0319821663780e9d6360e01b1480610550575061055082610f92565b90505b919050565b606060008054610567906137bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610593906137bc565b80156105e05780601f106105b5576101008083540402835291602001916105e0565b820191906000526020600020905b8154815290600101906020018083116105c357829003601f168201915b5050505050905090565b60006105f582610fd2565b61061a5760405162461bcd60e51b8152600401610611906134ac565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061064182610c1a565b9050806001600160a01b0316836001600160a01b031614156106755760405162461bcd60e51b815260040161061190613576565b806001600160a01b0316610687610fef565b6001600160a01b031614806106a357506106a3816104d1610fef565b6106bf5760405162461bcd60e51b815260040161061190613387565b6106c98383610ff3565b505050565b60085490565b6106e56106df610fef565b82611061565b6107015760405162461bcd60e51b8152600401610611906135b7565b6106c98383836110e6565b610714610fef565b6001600160a01b0316610725610ce4565b6001600160a01b03161461074b5760405162461bcd60e51b8152600401610611906134f8565b8047101561076b5760405162461bcd60e51b815260040161061190613242565b606460005b60028110156106c957600082603e836002811061079d57634e487b7160e01b600052603260045260246000fd5b01546107a99086613737565b6107b39190613723565b90506107ea603c83600281106107d957634e487b7160e01b600052603260045260246000fd5b01546001600160a01b031682611213565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056603c836002811061082c57634e487b7160e01b600052603260045260246000fd5b0154604051610846916001600160a01b0316908490613048565b60405180910390a15080610859816137f7565b915050610770565b600061086c83610c55565b821061088a5760405162461bcd60e51b8152600401610611906130ad565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108bb610fef565b6001600160a01b03166108cc610ce4565b6001600160a01b0316146108f25760405162461bcd60e51b8152600401610611906134f8565b6041805460ff19811660ff90911615179055565b6002600a5414156109295760405162461bcd60e51b8152600401610611906136bf565b6002600a5560415460ff166109505760405162461bcd60e51b81526004016106119061307f565b61251c600c54106109735760405162461bcd60e51b815260040161061190613698565b600a8111156109945760405162461bcd60e51b815260040161061190613654565b34816040546109a39190613737565b11156109c15760405162461bcd60e51b815260040161061190613270565b60005b81811015610a1e576000600c5460016109dd919061370b565b905061251c8111610a0b576109f233826112af565b6001600c6000828254610a05919061370b565b90915550505b5080610a16816137f7565b9150506109c4565b50506001600a55565b6106c983838360405180602001604052806000815250610dd6565b6002600a541415610a655760405162461bcd60e51b8152600401610611906136bf565b6002600a55610a72610fef565b6001600160a01b0316610a83610ce4565b6001600160a01b031614610aa95760405162461bcd60e51b8152600401610611906134f8565b61251c81118015610abb575061271181105b610ad75760405162461bcd60e51b815260040161061190613698565b610ae8610ae2610ce4565b826112af565b506001600a55565b60606000610afd836112cd565b90506000610b118260a0015160ff1661161a565b6038610b23846020015160ff1661161a565b6038610b35866080015160ff1661161a565b6038604051602001610b4c96959493929190612dd2565b604051602081830303815290604052905080610b6e836040015160ff1661161a565b6038610b80856060015160ff1661161a565b6038610b92876000015160ff1661161a565b604051602001610ba796959493929190612c3f565b60405160208183030381529060405292505050919050565b6000610bc96106ce565b8210610be75760405162461bcd60e51b815260040161061190613608565b60088281548110610c0857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105505760405162461bcd60e51b81526004016106119061342e565b60405481565b60006001600160a01b038216610c7d5760405162461bcd60e51b8152600401610611906133e4565b506001600160a01b031660009081526003602052604090205490565b610ca1610fef565b6001600160a01b0316610cb2610ce4565b6001600160a01b031614610cd85760405162461bcd60e51b8152600401610611906134f8565b610ce26000611735565b565b600b546001600160a01b031690565b606060018054610567906137bc565b600c5481565b610d10610fef565b6001600160a01b0316826001600160a01b03161415610d415760405162461bcd60e51b81526004016106119061320b565b8060056000610d4e610fef565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610d92610fef565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610dca9190613061565b60405180910390a35050565b610de7610de1610fef565b83611061565b610e035760405162461bcd60e51b8152600401610611906135b7565b610e0f84848484611787565b50505050565b60606000610e22836112cd565b9050603b610e786039610e348661161a565b610e3d856117ba565b610e4e610e498761186a565b611f3d565b603a604051602001610e64959493929190612f28565b604051602081830303815290604052611f3d565b604051602001610e89929190612f03565b604051602081830303815290604052915050919050565b61271081565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60415460ff1681565b610ee5610fef565b6001600160a01b0316610ef6610ce4565b6001600160a01b031614610f1c5760405162461bcd60e51b8152600401610611906134f8565b6001600160a01b038116610f425760405162461bcd60e51b81526004016106119061314a565b610f4b81611735565b50565b610f56610fef565b6001600160a01b0316610f67610ce4565b6001600160a01b031614610f8d5760405162461bcd60e51b8152600401610611906134f8565b604055565b60006001600160e01b031982166380ac58cd60e01b1480610fc357506001600160e01b03198216635b5e139f60e01b145b806105505750610550826120b1565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061102882610c1a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061106c82610fd2565b6110885760405162461bcd60e51b81526004016106119061333b565b600061109383610c1a565b9050806001600160a01b0316846001600160a01b031614806110ce5750836001600160a01b03166110c3846105ea565b6001600160a01b0316145b806110de57506110de8185610ea6565b949350505050565b826001600160a01b03166110f982610c1a565b6001600160a01b03161461111f5760405162461bcd60e51b81526004016106119061352d565b6001600160a01b0382166111455760405162461bcd60e51b8152600401610611906131c7565b6111508383836120ca565b61115b600082610ff3565b6001600160a01b0383166000908152600360205260408120805460019290611184908490613756565b90915550506001600160a01b03821660009081526003602052604081208054600192906111b290849061370b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b804710156112335760405162461bcd60e51b815260040161061190613304565b6000826001600160a01b03168260405161124c90612ff4565b60006040518083038185875af1925050503d8060008114611289576040519150601f19603f3d011682016040523d82523d6000602084013e61128e565b606091505b50509050806106c95760405162461bcd60e51b8152600401610611906132a7565b6112c9828260405180602001604052806000815250612153565b5050565b6112d56128a1565b6112e182613227613756565b91506112eb6128a1565b600861132060336112fb8661161a565b60405160200161130c929190612f03565b604051602081830303815290604052612186565b61132a9190613832565b60ff16815260108054604080516020808402820181019092528281526113c0939092909183018282801561139b57602002820191906000526020600020906000905b825461010083900a900460ff1681526020600192830181810494850194909303909202910180841161136c5790505b50505050506107196113b1601d6112fb8861161a565b6113bb9190613832565b6121b7565b60ff1660208083019190915260128054604080518285028101850190915281815261144c939092919083018282801561143657602002820191906000526020600020906000905b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116114075790505b50505050506105956113b160346112fb8861161a565b60ff166040808301919091526014805482516020808302820181019094528181526114d893909291908301828280156114c257602002820191906000526020600020906000905b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116114935790505b50505050506101666113b160356112fb8861161a565b60ff1660608201526017805460408051602080840282018101909252828152611562939092909183018282801561154c57602002820191906000526020600020906000905b825461010083900a900460ff1681526020600192830181810494850194909303909202910180841161151d5790505b50505050506105316113b160366112fb8861161a565b60ff166080820152601a8054604080516020808402820181019092528281526115ec93909290918301828280156115d657602002820191906000526020600020906000905b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116115a75790505b50505050506104576113b160376112fb8861161a565b60ff1660a08201526118938314156105505760a0810180519061160e82613812565b60ff1690525092915050565b60608161163f57506040805180820190915260018152600360fc1b6020820152610553565b8160005b81156116695780611653816137f7565b91506116629050600a83613723565b9150611643565b60008167ffffffffffffffff81111561169257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116bc576020820181803683370190505b5090505b84156110de576116d1600183613756565b91506116de600a86613832565b6116e990603061370b565b60f81b81838151811061170c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061172e600a86613723565b94506116c0565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6117928484846110e6565b61179e8484848461224b565b610e0f5760405162461bcd60e51b8152600401610611906130f8565b60606000602c6117d0846000015160ff1661161a565b602d6117e2866020015160ff1661161a565b602e6117f4886060015160ff1661161a565b60405160200161180996959493929190612f77565b604051602081830303815290604052905080602f61182d8560a0015160ff1661161a565b603061183f876040015160ff1661161a565b6031611851896080015160ff1661161a565b6032604051602001610e89989796959493929190612e3b565b60606000600e836020015160ff168154811061189657634e487b7160e01b600052603260045260246000fd5b9060005260206000200180546118ab906137bc565b80601f01602080910402602001604051908101604052809291908181526020018280546118d7906137bc565b80156119245780601f106118f957610100808354040283529160200191611924565b820191906000526020600020905b81548152906001019060200180831161190757829003601f168201915b505050505090506000600f846020015160ff168154811061195557634e487b7160e01b600052603260045260246000fd5b90600052602060002001805461196a906137bc565b80601f0160208091040260200160405190810160405280929190818152602001828054611996906137bc565b80156119e35780601f106119b8576101008083540402835291602001916119e3565b820191906000526020600020905b8154815290600101906020018083116119c657829003601f168201915b505060408051602080820183526000808352835191820190935291825260808a01519596509490935060ff16159150611ac0905057601d601560018860800151611a2d919061376d565b60ff1681548110611a4e57634e487b7160e01b600052603260045260246000fd5b90600052602060002001601e601660018a60800151611a6d919061376d565b60ff1681548110611a8e57634e487b7160e01b600052603260045260246000fd5b906000526020600020016025604051602001611aae959493929190612fd6565b60405160208183030381529060405290505b60a086015160ff1615611b7557601f601860018860a00151611ae2919061376d565b60ff1681548110611b0357634e487b7160e01b600052603260045260246000fd5b906000526020600020016020601960018a60a00151611b22919061376d565b60ff1681548110611b4357634e487b7160e01b600052603260045260246000fd5b906000526020600020016025604051602001611b63959493929190612fd6565b60405160208183030381529060405291505b6000601b600081548110611b9957634e487b7160e01b600052603260045260246000fd5b90600052602060002001600d886000015160ff1681548110611bcb57634e487b7160e01b600052603260045260246000fd5b90600052602060002001601b600181548110611bf757634e487b7160e01b600052603260045260246000fd5b9060005260206000200186601b600281548110611c2457634e487b7160e01b600052603260045260246000fd5b90600052602060002001604051602001611c42959493929190612fb4565b60405160208183030381529060405290508084601b600381548110611c7757634e487b7160e01b600052603260045260246000fd5b9060005260206000200186601b600481548110611ca457634e487b7160e01b600052603260045260246000fd5b9060005260206000200189601b600581548110611cd157634e487b7160e01b600052603260045260246000fd5b906000526020600020018a601b600681548110611cfe57634e487b7160e01b600052603260045260246000fd5b90600052602060002001604051602001611d2099989796959493929190612cb0565b60405160208183030381529060405290508084601b600781548110611d5557634e487b7160e01b600052603260045260246000fd5b9060005260206000200187601b600881548110611d8257634e487b7160e01b600052603260045260246000fd5b9060005260206000200188601b600981548110611daf57634e487b7160e01b600052603260045260246000fd5b9060005260206000200160118e6040015160ff1681548110611de157634e487b7160e01b600052603260045260246000fd5b90600052602060002001601b600a81548110611e0d57634e487b7160e01b600052603260045260246000fd5b90600052602060002001604051602001611e2f99989796959493929190612d50565b6040516020818303038152906040529050806011886040015160ff1681548110611e6957634e487b7160e01b600052603260045260246000fd5b90600052602060002001601b600b81548110611e9557634e487b7160e01b600052603260045260246000fd5b90600052602060002001611eae88888c60400151612366565b604051602001611ec19493929190612ec5565b604051602081830303815290604052905080611ee08860600151612443565b8484601b600c81548110611f0457634e487b7160e01b600052603260045260246000fd5b90600052602060002001604051602001611f22959493929190612bda565b60405160208183030381529060405295505050505050919050565b805160609080611f5d575050604080516020810190915260008152610553565b60006003611f6c83600261370b565b611f769190613723565b611f81906004613737565b90506000611f9082602061370b565b67ffffffffffffffff811115611fb657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611fe0576020820181803683370190505b509050600060405180606001604052806040815260200161389f604091399050600181016020830160005b8681101561206c576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b83526004909201910161200b565b5060038606600181146120865760028114612097576120a3565b613d3d60f01b6001198301526120a3565b603d60f81b6000198301525b505050918152949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6120d58383836106c9565b6001600160a01b0383166120f1576120ec816125be565b612114565b816001600160a01b0316836001600160a01b031614612114576121148382612602565b6001600160a01b0382166121305761212b8161269f565b6106c9565b826001600160a01b0316826001600160a01b0316146106c9576106c98282612778565b61215d83836127bc565b61216a600084848461224b565b6106c95760405162461bcd60e51b8152600401610611906130f8565b6000816040516020016121999190612bbe565b60408051601f19818403018152919052805160209091012092915050565b600080600090506000846000815181106121e157634e487b7160e01b600052603260045260246000fd5b602002602001015160ff1690505b838111612243578161220081613812565b925050848260ff168151811061222657634e487b7160e01b600052603260045260246000fd5b602002602001015160ff168161223c919061370b565b90506121ef565b509392505050565b600061225f846001600160a01b031661289b565b1561235b57836001600160a01b031663150b7a0261227b610fef565b8786866040518563ffffffff1660e01b815260040161229d949392919061300b565b602060405180830381600087803b1580156122b757600080fd5b505af19250505080156122e7575060408051601f3d908101601f191682019092526122e491810190612ac6565b60015b612341573d808015612315576040519150601f19603f3d011682016040523d82523d6000602084013e61231a565b606091505b5080516123395760405162461bcd60e51b8152600401610611906130f8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110de565b506001949350505050565b604080516020810190915260008152606090600460ff841611801561238e5750600a8360ff16105b156123bc5760218560256040516020016123aa93929190612f44565b60405160208183030381529060405290505b600a8360ff161180156123d2575060108360ff16105b156124005760228560256040516020016123ee93929190612f44565b60405160208183030381529060405290505b60108360ff1611156110de5780602385602487602560405160200161242a96959493929190612dd2565b6040516020818303038152906040529050949350505050565b606060ff82166124625750604080516020810190915260008152610553565b60038260ff1610156124c05760018260ff1611156124a85760266027602960405160200161249293929190612f93565b6040516020818303038152906040529050610553565b60266028602960405160200161249293929190612f93565b60038260ff16111561252c5760058260ff1611156124f057602a602b602560405160200161249293929190612f93565b60048260ff16111561251457602a6027602560405160200161249293929190612f93565b602a6028602560405160200161249293929190612f93565b601c8054612539906137bc565b80601f0160208091040260200160405190810160405280929190818152602001828054612565906137bc565b80156125b25780601f10612587576101008083540402835291602001916125b2565b820191906000526020600020905b81548152906001019060200180831161259557829003601f168201915b50505050509050919050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161260f84610c55565b6126199190613756565b60008381526007602052604090205490915080821461266c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906126b190600190613756565b600083815260096020526040812054600880549394509092849081106126e757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061271657634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061275c57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061278383610c55565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166127e25760405162461bcd60e51b815260040161061190613477565b6127eb81610fd2565b156128085760405162461bcd60e51b815260040161061190613190565b612814600083836120ca565b6001600160a01b038216600090815260036020526040812080546001929061283d90849061370b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b6040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a081019190915290565b80356001600160a01b038116811461055357600080fd5b6000602082840312156128fe578081fd5b612907826128d6565b9392505050565b60008060408385031215612920578081fd5b612929836128d6565b9150612937602084016128d6565b90509250929050565b600080600060608486031215612954578081fd5b61295d846128d6565b925061296b602085016128d6565b9150604084013590509250925092565b60008060008060808587031215612990578081fd5b612999856128d6565b935060206129a88187016128d6565b935060408601359250606086013567ffffffffffffffff808211156129cb578384fd5b818801915088601f8301126129de578384fd5b8135818111156129f0576129f0613872565b604051601f8201601f1916810185018381118282101715612a1357612a13613872565b60405281815283820185018b1015612a29578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215612a59578182fd5b612a62836128d6565b915060208301358015158114612a76578182fd5b809150509250929050565b60008060408385031215612a93578182fd5b612a9c836128d6565b946020939093013593505050565b600060208284031215612abb578081fd5b813561290781613888565b600060208284031215612ad7578081fd5b815161290781613888565b600060208284031215612af3578081fd5b5035919050565b60008151808452612b12816020860160208601613790565b601f01601f19169290920160200192915050565b805460009060028104600180831680612b4057607f831692505b6020808410821415612b6057634e487b7160e01b86526022600452602486fd5b818015612b745760018114612b8557612bb2565b60ff19861689528489019650612bb2565b612b8e886136ff565b60005b86811015612baa5781548b820152908501908301612b91565b505084890196505b50505050505092915050565b60008251612bd0818460208701613790565b9190910192915050565b60008651612bec818460208b01613790565b865190830190612c00818360208b01613790565b8651910190612c13818360208a01613790565b8551910190612c26818360208901613790565b612c3281830186612b26565b9998505050505050505050565b60008751612c51818460208c01613790565b875190830190612c65818360208c01613790565b612c7181830189612b26565b9150508551612c84818360208a01613790565b612c9081830187612b26565b9150508351612ca3818360208801613790565b0198975050505050505050565b60008a51612cc2818460208f01613790565b8a5190830190612cd6818360208f01613790565b612ce28183018c612b26565b9150508851612cf5818360208d01613790565b612d018183018a612b26565b9150508651612d14818360208b01613790565b612d2081830188612b26565b9150508451612d33818360208901613790565b612d3f81830186612b26565b9d9c50505050505050505050505050565b60008a51612d62818460208f01613790565b8a5190830190612d76818360208f01613790565b612d828183018c612b26565b9150508851612d95818360208d01613790565b612da18183018a612b26565b9150508651612db4818360208b01613790565b612d3f612dcc612dc68385018a612b26565b88612b26565b86612b26565b60008751612de4818460208c01613790565b612df081840189612b26565b90508651612e02818360208b01613790565b612e0e81830188612b26565b9150508451612e21818360208901613790565b612e2d81830186612b26565b9a9950505050505050505050565b60008951612e4d818460208e01613790565b612e598184018b612b26565b90508851612e6b818360208d01613790565b612e778183018a612b26565b9150508651612e8a818360208b01613790565b612e9681830188612b26565b9150508451612ea9818360208901613790565b612eb581830186612b26565b9c9b505050505050505050505050565b60008551612ed7818460208a01613790565b612ee6612dcc82850188612b26565b90508351612ef8818360208801613790565b019695505050505050565b6000612f0f8285612b26565b8351612f1f818360208801613790565b01949350505050565b6000612f348288612b26565b8651612c00818360208b01613790565b6000612f508286612b26565b8451612f60818360208901613790565b612f6c81830186612b26565b979650505050505050565b6000612f838289612b26565b8751612c65818360208c01613790565b6000612fab612fa5612dcc8488612b26565b84612b26565b95945050505050565b6000612fc6612dcc612dc6848a612b26565b8451612c26818360208901613790565b6000612f6c612fa5612dcc612dc6612fee868c612b26565b8a612b26565b90565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061303e90830184612afa565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602082526129076020830184612afa565b60208082526014908201527329b0b632903737ba1030b1ba34bb32903737bb9760611b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b602080825260149082015273496e73756666696369656e742062616c616e636560601b604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252603a908201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260408201527f6563697069656e74206d61792068617665207265766572746564000000000000606082015260800190565b6020808252601d908201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526024908201527f596f752063616e206f6e6c792061646f707420313020426f747320617420612060408201526374696d6560e01b606082015260800190565b6020808252600d908201526c696e76616c696420636c61696d60981b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b90815260200190565b60009081526020902090565b6000821982111561371e5761371e613846565b500190565b6000826137325761373261385c565b500490565b600081600019048311821515161561375157613751613846565b500290565b60008282101561376857613768613846565b500390565b600060ff821660ff84168082101561378757613787613846565b90039392505050565b60005b838110156137ab578181015183820152602001613793565b83811115610e0f5750506000910152565b6002810460018216806137d057607f821691505b602082108114156137f157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561380b5761380b613846565b5060010190565b600060ff821660ff81141561382957613829613846565b60010192915050565b6000826138415761384161385c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f4b57600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220502ca4c2f2dc692b65768b38882739c6c01c9966c4e59bb7494a8f4d461385d664736f6c63430008000033

Deployed Bytecode Sourcemap

47017:11966:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40838:224;;;;;;;;;;-1:-1:-1;40838:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27966:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29525:221::-;;;;;;;;;;-1:-1:-1;29525:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;29048:411::-;;;;;;;;;;-1:-1:-1;29048:411:0;;;;;:::i;:::-;;:::i;:::-;;41478:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30415:339::-;;;;;;;;;;-1:-1:-1;30415:339:0;;;;;:::i;:::-;;:::i;58244:430::-;;;;;;;;;;-1:-1:-1;58244:430:0;;;;;:::i;:::-;;:::i;41146:256::-;;;;;;;;;;-1:-1:-1;41146:256:0;;;;;:::i;:::-;;:::i;57872:87::-;;;;;;;;;;;;;:::i;57249:615::-;;;;;;:::i;:::-;;:::i;30825:185::-;;;;;;;;;;-1:-1:-1;30825:185:0;;;;;:::i;:::-;;:::i;57969:173::-;;;;;;;;;;-1:-1:-1;57969:173:0;;;;;:::i;:::-;;:::i;54723:411::-;;;;;;;;;;-1:-1:-1;54723:411:0;;;;;:::i;:::-;;:::i;41668:233::-;;;;;;;;;;-1:-1:-1;41668:233:0;;;;;:::i;:::-;;:::i;27660:239::-;;;;;;;;;;-1:-1:-1;27660:239:0;;;;;:::i;:::-;;:::i;52616:40::-;;;;;;;;;;;;;:::i;27390:208::-;;;;;;;;;;-1:-1:-1;27390:208:0;;;;;:::i;:::-;;:::i;12430:94::-;;;;;;;;;;;;;:::i;11779:87::-;;;;;;;;;;;;;:::i;28135:104::-;;;;;;;;;;;;;:::i;47167:29::-;;;;;;;;;;;;;:::i;29818:295::-;;;;;;;;;;-1:-1:-1;29818:295:0;;;;;:::i;:::-;;:::i;31081:328::-;;;;;;;;;;-1:-1:-1;31081:328:0;;;;;:::i;:::-;;:::i;56948:295::-;;;;;;;;;;-1:-1:-1;56948:295:0;;;;;:::i;:::-;;:::i;47121:41::-;;;;;;;;;;;;;:::i;30184:164::-;;;;;;;;;;-1:-1:-1;30184:164:0;;;;;:::i;:::-;;:::i;52673:32::-;;;;;;;;;;;;;:::i;12679:192::-;;;;;;;;;;-1:-1:-1;12679:192:0;;;;;:::i;:::-;;:::i;58148:90::-;;;;;;;;;;-1:-1:-1;58148:90:0;;;;;:::i;:::-;;:::i;40838:224::-;40940:4;-1:-1:-1;;;;;;40964:50:0;;-1:-1:-1;;;40964:50:0;;:90;;;41018:36;41042:11;41018:23;:36::i;:::-;40957:97;;40838:224;;;;:::o;27966:100::-;28020:13;28053:5;28046:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27966:100;:::o;29525:221::-;29601:7;29629:16;29637:7;29629;:16::i;:::-;29621:73;;;;-1:-1:-1;;;29621:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;29714:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29714:24:0;;29525:221::o;29048:411::-;29129:13;29145:23;29160:7;29145:14;:23::i;:::-;29129:39;;29193:5;-1:-1:-1;;;;;29187:11:0;:2;-1:-1:-1;;;;;29187:11:0;;;29179:57;;;;-1:-1:-1;;;29179:57:0;;;;;;;:::i;:::-;29287:5;-1:-1:-1;;;;;29271:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;29271:21:0;;:62;;;;29296:37;29313:5;29320:12;:10;:12::i;29296:37::-;29249:168;;;;-1:-1:-1;;;29249:168:0;;;;;;;:::i;:::-;29430:21;29439:2;29443:7;29430:8;:21::i;:::-;29048:411;;;:::o;41478:113::-;41566:10;:17;41478:113;:::o;30415:339::-;30610:41;30629:12;:10;:12::i;:::-;30643:7;30610:18;:41::i;:::-;30602:103;;;;-1:-1:-1;;;30602:103:0;;;;;;;:::i;:::-;30718:28;30728:4;30734:2;30738:7;30718:9;:28::i;58244:430::-;12010:12;:10;:12::i;:::-;-1:-1:-1;;;;;11999:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;11999:23:0;;11991:68;;;;-1:-1:-1;;;11991:68:0;;;;;;;:::i;:::-;58339:6:::1;58314:21;:31;;58306:64;;;;-1:-1:-1::0;;;58306:64:0::1;;;;;;;:::i;:::-;58413:3;58391:19;58427:242;58451:1;58447;:5;58427:242;;;58474:15;58514:11;58501:7;58509:1;58501:10;;;;;-1:-1:-1::0;;;58501:10:0::1;;;;;;;;;;::::0;58492:19:::1;::::0;:6;:19:::1;:::i;:::-;:33;;;;:::i;:::-;58474:51;;58542:53;58568:13;58582:1;58568:16;;;;;-1:-1:-1::0;;;58568:16:0::1;;;;;;;;;;::::0;-1:-1:-1;;;;;58568:16:0::1;58587:7:::0;58542:17:::1;:53::i;:::-;58615:42;58631:13;58645:1;58631:16;;;;;-1:-1:-1::0;;;58631:16:0::1;;;;;;;;;;::::0;58615:42:::1;::::0;::::1;::::0;-1:-1:-1;;;;;58631:16:0::1;::::0;58649:7;;58615:42:::1;:::i;:::-;;;;;;;;-1:-1:-1::0;58454:3:0;::::1;::::0;::::1;:::i;:::-;;;;58427:242;;41146:256:::0;41243:7;41279:23;41296:5;41279:16;:23::i;:::-;41271:5;:31;41263:87;;;;-1:-1:-1;;;41263:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;41368:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41146:256::o;57872:87::-;12010:12;:10;:12::i;:::-;-1:-1:-1;;;;;11999:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;11999:23:0;;11991:68;;;;-1:-1:-1;;;11991:68:0;;;;;;;:::i;:::-;57941:12:::1;::::0;;-1:-1:-1;;57925:28:0;::::1;57941:12;::::0;;::::1;57940:13;57925:28;::::0;;57872:87::o;57249:615::-;14710:1;15306:7;;:19;;15298:63;;;;-1:-1:-1;;;15298:63:0;;;;;;;:::i;:::-;14710:1;15439:7;:18;57331:12:::1;::::0;::::1;;57323:45;;;;-1:-1:-1::0;;;57323:45:0::1;;;;;;;:::i;:::-;57415:4;57402:10;;:17;57375:62;;;;-1:-1:-1::0;;;57375:62:0::1;;;;;;;:::i;:::-;57470:2;57452:14;:20;;57444:69;;;;-1:-1:-1::0;;;57444:69:0::1;;;;;;;:::i;:::-;57558:9;57540:14;57528:9;;:26;;;;:::i;:::-;:39;;57520:83;;;;-1:-1:-1::0;;;57520:83:0::1;;;;;;;:::i;:::-;57620:9;57616:243;57639:14;57635:1;:18;57616:243;;;57675:17;57695:10;;57708:1;57695:14;;;;:::i;:::-;57675:34;;57741:4;57728:9;:17;57724:124;;57766:32;57776:10;57788:9;57766;:32::i;:::-;57831:1;57817:10;;:15;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;57724:124:0::1;-1:-1:-1::0;57655:3:0;::::1;::::0;::::1;:::i;:::-;;;;57616:243;;;-1:-1:-1::0;;14666:1:0;15618:7;:22;57249:615::o;30825:185::-;30963:39;30980:4;30986:2;30990:7;30963:39;;;;;;;;;;;;:16;:39::i;57969:173::-;14710:1;15306:7;;:19;;15298:63;;;;-1:-1:-1;;;15298:63:0;;;;;;;:::i;:::-;14710:1;15439:7;:18;12010:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;11999:23:0::1;:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;11999:23:0::1;;11991:68;;;;-1:-1:-1::0;;;11991:68:0::1;;;;;;;:::i;:::-;58061:4:::2;58051:7;:14;:33;;;;;58079:5;58069:7;:15;58051:33;58043:59;;;;-1:-1:-1::0;;;58043:59:0::2;;;;;;;:::i;:::-;58109:27;58119:7;:5;:7::i;:::-;58128;58109:9;:27::i;:::-;-1:-1:-1::0;14666:1:0;15618:7;:22;57969:173::o;54723:411::-;54784:13;54806:14;54823:18;54833:7;54823:9;:18::i;:::-;54806:35;;54848:15;54888:29;54896:3;:9;;;54888:18;;:27;:29::i;:::-;54918:3;54922:27;54930:3;:7;;;54922:16;;:25;:27::i;:::-;54950:3;54954:31;54962:3;:11;;;54954:20;;:29;:31::i;:::-;54986:3;54871:119;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54848:143;;55029:1;55031:28;55039:3;:8;;;55031:17;;:26;:28::i;:::-;55060:3;55064:31;55072:3;:11;;;55064:20;;:29;:31::i;:::-;55096:3;55100:26;55108:3;:6;;;55100:15;;:24;:26::i;:::-;55012:115;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54998:130;;;;54723:411;;;:::o;41668:233::-;41743:7;41779:30;:28;:30::i;:::-;41771:5;:38;41763:95;;;;-1:-1:-1;;;41763:95:0;;;;;;;:::i;:::-;41876:10;41887:5;41876:17;;;;;;-1:-1:-1;;;41876:17:0;;;;;;;;;;;;;;;;;41869:24;;41668:233;;;:::o;27660:239::-;27732:7;27768:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27768:16:0;27803:19;27795:73;;;;-1:-1:-1;;;27795:73:0;;;;;;;:::i;52616:40::-;;;;:::o;27390:208::-;27462:7;-1:-1:-1;;;;;27490:19:0;;27482:74;;;;-1:-1:-1;;;27482:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;27574:16:0;;;;;:9;:16;;;;;;;27390:208::o;12430:94::-;12010:12;:10;:12::i;:::-;-1:-1:-1;;;;;11999:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;11999:23:0;;11991:68;;;;-1:-1:-1;;;11991:68:0;;;;;;;:::i;:::-;12495:21:::1;12513:1;12495:9;:21::i;:::-;12430:94::o:0;11779:87::-;11852:6;;-1:-1:-1;;;;;11852:6:0;11779:87;:::o;28135:104::-;28191:13;28224:7;28217:14;;;;;:::i;47167:29::-;;;;:::o;29818:295::-;29933:12;:10;:12::i;:::-;-1:-1:-1;;;;;29921:24:0;:8;-1:-1:-1;;;;;29921:24:0;;;29913:62;;;;-1:-1:-1;;;29913:62:0;;;;;;;:::i;:::-;30033:8;29988:18;:32;30007:12;:10;:12::i;:::-;-1:-1:-1;;;;;29988:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;29988:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;29988:53:0;;;;;;;;;;;30072:12;:10;:12::i;:::-;-1:-1:-1;;;;;30057:48:0;;30096:8;30057:48;;;;;;:::i;:::-;;;;;;;;29818:295;;:::o;31081:328::-;31256:41;31275:12;:10;:12::i;:::-;31289:7;31256:18;:41::i;:::-;31248:103;;;;-1:-1:-1;;;31248:103:0;;;;;;;:::i;:::-;31362:39;31376:4;31382:2;31386:7;31395:5;31362:13;:39::i;:::-;31081:328;;;;:::o;56948:295::-;57013:13;57035:14;57052:18;57062:7;57052:9;:18::i;:::-;57035:35;;57108:3;57112:123;57156:3;57160:18;:7;:16;:18::i;:::-;57179:14;57189:3;57179:9;:14::i;:::-;57194:33;57214:11;57221:3;57214:6;:11::i;:::-;57194:13;:33::i;:::-;57228:3;57139:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57112:13;:123::i;:::-;57091:145;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57077:160;;;56948:295;;;:::o;47121:41::-;47157:5;47121:41;:::o;30184:164::-;-1:-1:-1;;;;;30305:25:0;;;30281:4;30305:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30184:164::o;52673:32::-;;;;;;:::o;12679:192::-;12010:12;:10;:12::i;:::-;-1:-1:-1;;;;;11999:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;11999:23:0;;11991:68;;;;-1:-1:-1;;;11991:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12768:22:0;::::1;12760:73;;;;-1:-1:-1::0;;;12760:73:0::1;;;;;;;:::i;:::-;12844:19;12854:8;12844:9;:19::i;:::-;12679:192:::0;:::o;58148:90::-;12010:12;:10;:12::i;:::-;-1:-1:-1;;;;;11999:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;11999:23:0;;11991:68;;;;-1:-1:-1;;;11991:68:0;;;;;;;:::i;:::-;58212:9:::1;:20:::0;58148:90::o;27021:305::-;27123:4;-1:-1:-1;;;;;;27160:40:0;;-1:-1:-1;;;27160:40:0;;:105;;-1:-1:-1;;;;;;;27217:48:0;;-1:-1:-1;;;27217:48:0;27160:105;:158;;;;27282:36;27306:11;27282:23;:36::i;32919:127::-;32984:4;33008:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33008:16:0;:30;;;32919:127::o;10655:98::-;10735:10;10655:98;:::o;36901:174::-;36976:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36976:29:0;-1:-1:-1;;;;;36976:29:0;;;;;;;;:24;;37030:23;36976:24;37030:14;:23::i;:::-;-1:-1:-1;;;;;37021:46:0;;;;;;;;;;;36901:174;;:::o;33213:348::-;33306:4;33331:16;33339:7;33331;:16::i;:::-;33323:73;;;;-1:-1:-1;;;33323:73:0;;;;;;;:::i;:::-;33407:13;33423:23;33438:7;33423:14;:23::i;:::-;33407:39;;33476:5;-1:-1:-1;;;;;33465:16:0;:7;-1:-1:-1;;;;;33465:16:0;;:51;;;;33509:7;-1:-1:-1;;;;;33485:31:0;:20;33497:7;33485:11;:20::i;:::-;-1:-1:-1;;;;;33485:31:0;;33465:51;:87;;;;33520:32;33537:5;33544:7;33520:16;:32::i;:::-;33457:96;33213:348;-1:-1:-1;;;;33213:348:0:o;36205:578::-;36364:4;-1:-1:-1;;;;;36337:31:0;:23;36352:7;36337:14;:23::i;:::-;-1:-1:-1;;;;;36337:31:0;;36329:85;;;;-1:-1:-1;;;36329:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36433:16:0;;36425:65;;;;-1:-1:-1;;;36425:65:0;;;;;;;:::i;:::-;36503:39;36524:4;36530:2;36534:7;36503:20;:39::i;:::-;36607:29;36624:1;36628:7;36607:8;:29::i;:::-;-1:-1:-1;;;;;36649:15:0;;;;;;:9;:15;;;;;:20;;36668:1;;36649:15;:20;;36668:1;;36649:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36680:13:0;;;;;;:9;:13;;;;;:18;;36697:1;;36680:13;:18;;36697:1;;36680:18;:::i;:::-;;;;-1:-1:-1;;36709:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36709:21:0;-1:-1:-1;;;;;36709:21:0;;;;;;;;;36748:27;;36709:16;;36748:27;;;;;;;36205:578;;;:::o;19140:317::-;19255:6;19230:21;:31;;19222:73;;;;-1:-1:-1;;;19222:73:0;;;;;;;:::i;:::-;19309:12;19327:9;-1:-1:-1;;;;;19327:14:0;19349:6;19327:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19308:52;;;19379:7;19371:78;;;;-1:-1:-1;;;19371:78:0;;;;;;;:::i;33903:110::-;33979:26;33989:2;33993:7;33979:26;;;;;;;;;;;;:9;:26::i;:::-;33903:110;;:::o;53391:781::-;53450:10;;:::i;:::-;53477:13;53483:7;53477:5;:13;:::i;:::-;53469:21;;53512:14;;:::i;:::-;53607:1;53548:56;53579:3;53583:18;:7;:16;:18::i;:::-;53562:40;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53548:6;:56::i;:::-;:60;;;;:::i;:::-;53533:76;;;;53631:5;53626:74;;;;;;;;;;;;;;;;;;;;;;;53631:5;;53626:74;;53631:5;53626:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53695:4;53637:57;53668:4;53673:18;:7;:16;:18::i;53637:57::-;:62;;;;:::i;:::-;53626:4;:74::i;:::-;53616:84;;:7;;;;:84;;;;53723:6;53718:74;;;;;;;;;;;;;;;;;;;;;;53723:6;53718:74;;;53723:6;53718:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53787:4;53730:56;53761:3;53765:18;:7;:16;:18::i;53718:74::-;53707:85;;:8;;;;:85;;;;53818:9;53813:76;;;;;;;;;;;;;;;;;;;;;;53818:9;53813:76;;;53818:9;53813:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53885:3;53828:56;53859:3;53863:18;:7;:16;:18::i;53813:76::-;53799:90;;:11;;;:90;53915:9;53910:77;;;;;;;;;;;;;;;;;;;;;;;53915:9;;53910:77;;53915:9;53910:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53982:4;53925:56;53956:3;53960:18;:7;:16;:18::i;53910:77::-;53896:91;;:11;;;:91;54011:6;54006:74;;;;;;;;;;;;;;;;;;;;;;;54011:6;;54006:74;;54011:6;54006:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54075:4;54018:56;54049:3;54053:18;:7;:16;:18::i;54006:74::-;53994:86;;:9;;;:86;54100:4;54091:13;;54087:63;;;54115:9;;;:11;;;;;;:::i;:::-;;;;;-1:-1:-1;54163:3:0;53391:781;-1:-1:-1;;53391:781:0:o;8357:723::-;8413:13;8634:10;8630:53;;-1:-1:-1;8661:10:0;;;;;;;;;;;;-1:-1:-1;;;8661:10:0;;;;;;8630:53;8708:5;8693:12;8749:78;8756:9;;8749:78;;8782:8;;;;:::i;:::-;;-1:-1:-1;8805:10:0;;-1:-1:-1;8813:2:0;8805:10;;:::i;:::-;;;8749:78;;;8837:19;8869:6;8859:17;;;;;;-1:-1:-1;;;8859:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8859:17:0;;8837:39;;8887:154;8894:10;;8887:154;;8921:11;8931:1;8921:11;;:::i;:::-;;-1:-1:-1;8990:10:0;8998:2;8990:5;:10;:::i;:::-;8977:24;;:2;:24;:::i;:::-;8964:39;;8947:6;8954;8947:14;;;;;;-1:-1:-1;;;8947:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;8947:56:0;;;;;;;;-1:-1:-1;9018:11:0;9027:2;9018:11;;:::i;:::-;;;8887:154;;12879:173;12954:6;;;-1:-1:-1;;;;;12971:17:0;;;-1:-1:-1;;;;;;12971:17:0;;;;;;;13004:40;;12954:6;;;12971:17;12954:6;;13004:40;;12935:16;;13004:40;12879:173;;:::o;32291:315::-;32448:28;32458:4;32464:2;32468:7;32448:9;:28::i;:::-;32495:48;32518:4;32524:2;32528:7;32537:5;32495:22;:48::i;:::-;32487:111;;;;-1:-1:-1;;;32487:111:0;;;;;;;:::i;54243:374::-;54301:13;54323:15;54363:3;54367:26;54375:3;:6;;;54367:15;;:24;:26::i;:::-;54394:3;54398:27;54406:3;:7;;;54398:16;;:25;:27::i;:::-;54426:3;54430:31;54438:3;:11;;;54430:20;;:29;:31::i;:::-;54346:116;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54323:140;;54501:1;54503:3;54507:29;54515:3;:9;;;54507:18;;:27;:29::i;:::-;54537:3;54541:28;54549:3;:8;;;54541:17;;:26;:28::i;:::-;54570:3;54574:31;54582:3;:11;;;54574:20;;:29;:31::i;:::-;54606:3;54484:126;;;;;;;;;;;;;;;:::i;56041:901::-;56096:13;56118:15;56134:4;56139:3;:7;;;56134:13;;;;;;;;-1:-1:-1;;;56134:13:0;;;;;;;;;;;;;;;;56118:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56154:15;56170:4;56175:3;:7;;;56170:13;;;;;;;;-1:-1:-1;;;56170:13:0;;;;;;;;;;;;;;;;56154:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56190:24:0;;;;;;;;;:21;:24;;;56221:22;;;;;;;;;;;56254:11;;;;56154:29;;-1:-1:-1;56190:24:0;56221:22;;-1:-1:-1;56254:13:0;;;;-1:-1:-1;56250:128:0;;-1:-1:-1;56250:128:0;56308:4;56313:8;56334:1;56322:3;:11;;;:13;;;;:::i;:::-;56313:23;;;;;;;;-1:-1:-1;;;56313:23:0;;;;;;;;;;;;;;;;56337:4;56342:8;56363:1;56351:3;:11;;;:13;;;;:::i;:::-;56342:23;;;;;;;;-1:-1:-1;;;56342:23:0;;;;;;;;;;;;;;;;56366:2;56291:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56278:92;;56250:128;56388:9;;;;:11;;;56384:116;;56442:3;56446:5;56462:1;56452:3;:9;;;:11;;;;:::i;:::-;56446:18;;;;;;;;-1:-1:-1;;;56446:18:0;;;;;;;;;;;;;;;;56465:3;56469:5;56485:1;56475:3;:9;;;:11;;;;:::i;:::-;56469:18;;;;;;;;-1:-1:-1;;;56469:18:0;;;;;;;;;;;;;;;;56488:2;56425:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56410:82;;56384:116;56506:20;56553:1;56555;56553:4;;;;;;-1:-1:-1;;;56553:4:0;;;;;;;;;;;;;;;;56558:10;56569:3;:6;;;56558:18;;;;;;;;-1:-1:-1;;;56558:18:0;;;;;;;;;;;;;;;;56577:1;56579;56577:4;;;;;;-1:-1:-1;;;56577:4:0;;;;;;;;;;;;;;;;56582:1;56584;56586;56584:4;;;;;;-1:-1:-1;;;56584:4:0;;;;;;;;;;;;;;;;56536:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56506:84;;56630:6;56637:1;56639;56641;56639:4;;;;;;-1:-1:-1;;;56639:4:0;;;;;;;;;;;;;;;;56644:1;56646;56648;56646:4;;;;;;-1:-1:-1;;;56646:4:0;;;;;;;;;;;;;;;;56651:1;56653;56655;56653:4;;;;;;-1:-1:-1;;;56653:4:0;;;;;;;;;;;;;;;;56658:1;56660;56662;56660:4;;;;;;-1:-1:-1;;;56660:4:0;;;;;;;;;;;;;;;;56613:52;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56597:69;;56706:6;56713:1;56715;56717;56715:4;;;;;;-1:-1:-1;;;56715:4:0;;;;;;;;;;;;;;;;56720:1;56722;56724;56722:4;;;;;;-1:-1:-1;;;56722:4:0;;;;;;;;;;;;;;;;56727:1;56729;56731;56729:4;;;;;;-1:-1:-1;;;56729:4:0;;;;;;;;;;;;;;;;56734;56739:3;:8;;;56734:14;;;;;;;;-1:-1:-1;;;56734:14:0;;;;;;;;;;;;;;;;56749:1;56751:2;56749:5;;;;;;-1:-1:-1;;;56749:5:0;;;;;;;;;;;;;;;;56689:66;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56673:83;;56796:6;56803:4;56808:3;:8;;;56803:14;;;;;;;;-1:-1:-1;;;56803:14:0;;;;;;;;;;;;;;;;56818:1;56820:2;56818:5;;;;;;-1:-1:-1;;;56818:5:0;;;;;;;;;;;;;;;;56824:20;56831:1;56833;56835:3;:8;;;56824:6;:20::i;:::-;56779:66;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56763:83;;56884:6;56891:23;56902:3;:11;;;56891:10;:23::i;:::-;56915:7;56923:5;56929:1;56931:2;56929:5;;;;;;-1:-1:-1;;;56929:5:0;;;;;;;;;;;;;;;;56867:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56853:83;;;;;;;56041:901;;;:::o;1078:1589::-;1176:11;;1136:13;;1202:8;1198:23;;-1:-1:-1;;1212:9:0;;;;;;;;;-1:-1:-1;1212:9:0;;;;1198:23;1273:18;1311:1;1300:7;:3;1306:1;1300:7;:::i;:::-;1299:13;;;;:::i;:::-;1294:19;;:1;:19;:::i;:::-;1273:40;-1:-1:-1;1371:19:0;1403:15;1273:40;1416:2;1403:15;:::i;:::-;1393:26;;;;;;-1:-1:-1;;;1393:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1393:26:0;;1371:48;;1430:18;1451:5;;;;;;;;;;;;;;;;;1430:26;;1520:1;1513:5;1509:13;1565:2;1557:6;1553:15;1614:1;1582:769;1637:3;1634:1;1631:10;1582:769;;;1690:1;1733:12;;;;;1727:19;1826:4;1814:2;1810:14;;;;;1792:40;;1786:47;1935:2;1931:14;;;1927:25;;1913:40;;1907:47;2064:1;2060:13;;;2056:24;;2042:39;;2036:46;2184:16;;;;2170:31;;2164:38;1862:1;1858:11;;;1956:4;1903:58;;;1894:68;1987:11;;2032:57;;;2023:67;;;;2115:11;;2160:49;;2151:59;2239:3;2235:13;2266:22;;2334:1;2319:17;;;;1683:9;1582:769;;;1586:44;2381:1;2376:3;2372:11;2402:1;2397:84;;;;2500:1;2495:82;;;;2365:212;;2397:84;-1:-1:-1;;;;;2430:17:0;;2423:43;2397:84;;2495:82;-1:-1:-1;;;;;2528:17:0;;2521:41;2365:212;-1:-1:-1;;;2591:26:0;;;;1078:1589;-1:-1:-1;;;;1078:1589:0:o;25630:157::-;-1:-1:-1;;;;;;25739:40:0;;-1:-1:-1;;;25739:40:0;25630:157;;;:::o;42514:589::-;42658:45;42685:4;42691:2;42695:7;42658:26;:45::i;:::-;-1:-1:-1;;;;;42720:18:0;;42716:187;;42755:40;42787:7;42755:31;:40::i;:::-;42716:187;;;42825:2;-1:-1:-1;;;;;42817:10:0;:4;-1:-1:-1;;;;;42817:10:0;;42813:90;;42844:47;42877:4;42883:7;42844:32;:47::i;:::-;-1:-1:-1;;;;;42917:16:0;;42913:183;;42950:45;42987:7;42950:36;:45::i;:::-;42913:183;;;43023:4;-1:-1:-1;;;;;43017:10:0;:2;-1:-1:-1;;;;;43017:10:0;;43013:83;;43044:40;43072:2;43076:7;43044:27;:40::i;34240:321::-;34370:18;34376:2;34380:7;34370:5;:18::i;:::-;34421:54;34452:1;34456:2;34460:7;34469:5;34421:22;:54::i;:::-;34399:154;;;;-1:-1:-1;;;34399:154:0;;;;;;;:::i;53036:132::-;53096:7;53154:5;53137:23;;;;;;;;:::i;:::-;;;;-1:-1:-1;;53137:23:0;;;;;;;;;53127:34;;53137:23;53127:34;;;;;53036:132;-1:-1:-1;;53036:132:0:o;53174:211::-;53239:5;53253:9;53263:1;53253:11;;53271:9;53289:1;53291;53289:4;;;;;;-1:-1:-1;;;53289:4:0;;;;;;;;;;;;;;;53281:13;;53271:23;;53301:62;53311:1;53308;:4;53301:62;;53323:5;;;;:::i;:::-;;;;53348:1;53350:3;53348:6;;;;;;;;-1:-1:-1;;;53348:6:0;;;;;;;;;;;;;;;53340:15;;53337:18;;;;;:::i;:::-;;;53301:62;;;-1:-1:-1;53376:3:0;53174:211;-1:-1:-1;;;53174:211:0:o;37640:803::-;37795:4;37816:15;:2;-1:-1:-1;;;;;37816:13:0;;:15::i;:::-;37812:624;;;37868:2;-1:-1:-1;;;;;37852:36:0;;37889:12;:10;:12::i;:::-;37903:4;37909:7;37918:5;37852:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37852:72:0;;;;;;;;-1:-1:-1;;37852:72:0;;;;;;;;;;;;:::i;:::-;;;37848:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38098:13:0;;38094:272;;38141:60;;-1:-1:-1;;;38141:60:0;;;;;;;:::i;38094:272::-;38316:6;38310:13;38301:6;38297:2;38293:15;38286:38;37848:533;-1:-1:-1;;;;;;37975:55:0;-1:-1:-1;;;37975:55:0;;-1:-1:-1;37968:62:0;;37812:624;-1:-1:-1;38420:4:0;37640:803;;;;;;:::o;55140:355::-;55242:22;;;;;;;;;:17;:22;;55220:13;;55277:1;55275:3;;;;:11;;;;;55284:2;55282:1;:4;;;55275:11;55271:62;;;55320:3;55324:1;55326:2;55303:26;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55290:40;;55271:62;55345:2;55343:1;:4;;;:12;;;;;55353:2;55351:1;:4;;;55343:12;55339:63;;;55389:3;55393:1;55395:2;55372:26;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55359:40;;55339:63;55414:2;55412:1;:4;;;55408:65;;;55450:3;55454;55458:1;55460:3;55464:1;55466:2;55433:36;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55420:50;;55486:3;55140:355;-1:-1:-1;;;;55140:355:0:o;55503:532::-;55555:13;55581:4;;;55577:36;;-1:-1:-1;55596:9:0;;;;;;;;;-1:-1:-1;55596:9:0;;;;55577:36;55625:1;55623;:3;;;55619:153;;;55643:1;55641;:3;;;55637:74;;;55688:3;55692;55696;55671:29;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55657:44;;;;55637:74;55751:3;55755;55759;55734:29;;;;;;;;;;:::i;55619:153::-;55784:1;55782;:3;;;55778:233;;;55802:1;55800;:3;;;55796:73;;;55847:3;55851;55855:2;55830:28;;;;;;;;;;:::i;55796:73::-;55884:1;55882;:3;;;55878:73;;;55929:3;55933;55937:2;55912:28;;;;;;;;;;:::i;55878:73::-;55991:3;55995;55999:2;55974:28;;;;;;;;;;:::i;55778:233::-;56024:5;56017:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55503:532;;;:::o;43826:164::-;43930:10;:17;;43903:24;;;;:15;:24;;;;;:44;;;43958:24;;;;;;;;;;;;43826:164::o;44617:988::-;44883:22;44933:1;44908:22;44925:4;44908:16;:22::i;:::-;:26;;;;:::i;:::-;44945:18;44966:26;;;:17;:26;;;;;;44883:51;;-1:-1:-1;45099:28:0;;;45095:328;;-1:-1:-1;;;;;45166:18:0;;45144:19;45166:18;;;:12;:18;;;;;;;;:34;;;;;;;;;45217:30;;;;;;:44;;;45334:30;;:17;:30;;;;;:43;;;45095:328;-1:-1:-1;45519:26:0;;;;:17;:26;;;;;;;;45512:33;;;-1:-1:-1;;;;;45563:18:0;;;;;:12;:18;;;;;:34;;;;;;;45556:41;44617:988::o;45900:1079::-;46178:10;:17;46153:22;;46178:21;;46198:1;;46178:21;:::i;:::-;46210:18;46231:24;;;:15;:24;;;;;;46604:10;:26;;46153:46;;-1:-1:-1;46231:24:0;;46153:46;;46604:26;;;;-1:-1:-1;;;46604:26:0;;;;;;;;;;;;;;;;;46582:48;;46668:11;46643:10;46654;46643:22;;;;;;-1:-1:-1;;;46643:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;46748:28;;;:15;:28;;;;;;;:41;;;46920:24;;;;;46913:31;46955:10;:16;;;;;-1:-1:-1;;;46955:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;45900:1079;;;;:::o;43404:221::-;43489:14;43506:20;43523:2;43506:16;:20::i;:::-;-1:-1:-1;;;;;43537:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43582:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43404:221:0:o;34897:382::-;-1:-1:-1;;;;;34977:16:0;;34969:61;;;;-1:-1:-1;;;34969:61:0;;;;;;;:::i;:::-;35050:16;35058:7;35050;:16::i;:::-;35049:17;35041:58;;;;-1:-1:-1;;;35041:58:0;;;;;;;:::i;:::-;35112:45;35141:1;35145:2;35149:7;35112:20;:45::i;:::-;-1:-1:-1;;;;;35170:13:0;;;;;;:9;:13;;;;;:18;;35187:1;;35170:13;:18;;35187:1;;35170:18;:::i;:::-;;;;-1:-1:-1;;35199:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35199:21:0;-1:-1:-1;;;;;35199:21:0;;;;;;;;35238:33;;35199:16;;;35238:33;;35199:16;;35238:33;34897:382;;:::o;17818:387::-;18141:20;18189:8;;;17818:387::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:1178::-;;;;;1195:3;1183:9;1174:7;1170:23;1166:33;1163:2;;;1217:6;1209;1202:22;1163:2;1245:31;1266:9;1245:31;:::i;:::-;1235:41;;1295:2;1316:40;1352:2;1341:9;1337:18;1316:40;:::i;:::-;1306:50;;1403:2;1392:9;1388:18;1375:32;1365:42;;1458:2;1447:9;1443:18;1430:32;1481:18;1522:2;1514:6;1511:14;1508:2;;;1543:6;1535;1528:22;1508:2;1586:6;1575:9;1571:22;1561:32;;1631:7;1624:4;1620:2;1616:13;1612:27;1602:2;;1658:6;1650;1643:22;1602:2;1699;1686:16;1721:2;1717;1714:10;1711:2;;;1727:18;;:::i;:::-;1776:2;1770:9;1845:2;1826:13;;-1:-1:-1;;1822:27:1;1810:40;;1806:49;;1870:18;;;1890:22;;;1867:46;1864:2;;;1916:18;;:::i;:::-;1952:2;1945:22;1976:18;;;2013:11;;;2009:20;;2006:33;-1:-1:-1;2003:2:1;;;2057:6;2049;2042:22;2003:2;2118;2113;2109;2105:11;2100:2;2092:6;2088:15;2075:46;2141:15;;;2137:24;;;2130:40;;;;-1:-1:-1;1153:1048:1;;;;-1:-1:-1;1153:1048:1;;-1:-1:-1;;1153:1048:1:o;2206:369::-;;;2332:2;2320:9;2311:7;2307:23;2303:32;2300:2;;;2353:6;2345;2338:22;2300:2;2381:31;2402:9;2381:31;:::i;:::-;2371:41;;2462:2;2451:9;2447:18;2434:32;2509:5;2502:13;2495:21;2488:5;2485:32;2475:2;;2536:6;2528;2521:22;2475:2;2564:5;2554:15;;;2290:285;;;;;:::o;2580:266::-;;;2709:2;2697:9;2688:7;2684:23;2680:32;2677:2;;;2730:6;2722;2715:22;2677:2;2758:31;2779:9;2758:31;:::i;:::-;2748:41;2836:2;2821:18;;;;2808:32;;-1:-1:-1;;;2667:179:1:o;2851:257::-;;2962:2;2950:9;2941:7;2937:23;2933:32;2930:2;;;2983:6;2975;2968:22;2930:2;3027:9;3014:23;3046:32;3072:5;3046:32;:::i;3113:261::-;;3235:2;3223:9;3214:7;3210:23;3206:32;3203:2;;;3256:6;3248;3241:22;3203:2;3293:9;3287:16;3312:32;3338:5;3312:32;:::i;3379:190::-;;3491:2;3479:9;3470:7;3466:23;3462:32;3459:2;;;3512:6;3504;3497:22;3459:2;-1:-1:-1;3540:23:1;;3449:120;-1:-1:-1;3449:120:1:o;3574:259::-;;3655:5;3649:12;3682:6;3677:3;3670:19;3698:63;3754:6;3747:4;3742:3;3738:14;3731:4;3724:5;3720:16;3698:63;:::i;:::-;3815:2;3794:15;-1:-1:-1;;3790:29:1;3781:39;;;;3822:4;3777:50;;3625:208;-1:-1:-1;;3625:208:1:o;3838:982::-;3925:12;;3838:982;;3997:1;3982:17;;4018:1;4054:18;;;;4081:2;;4135:4;4127:6;4123:17;4113:27;;4081:2;4161;4209;4201:6;4198:14;4178:18;4175:38;4172:2;;;-1:-1:-1;;;4236:33:1;;4292:4;4289:1;4282:15;4322:4;4243:3;4310:17;4172:2;4353:18;4380:104;;;;4498:1;4493:321;;;;4346:468;;4380:104;-1:-1:-1;;4413:24:1;;4401:37;;4458:16;;;;-1:-1:-1;4380:104:1;;4493:321;4529:38;4561:5;4529:38;:::i;:::-;4589:1;4603:165;4617:6;4614:1;4611:13;4603:165;;;4695:14;;4682:11;;;4675:35;4738:16;;;;4632:10;;4603:165;;;4607:3;;4797:6;4792:3;4788:16;4781:23;;4346:468;;;;;;;3898:922;;;;:::o;4825:276::-;;4994:6;4988:13;5010:53;5056:6;5051:3;5044:4;5036:6;5032:17;5010:53;:::i;:::-;5079:16;;;;;4964:137;-1:-1:-1;;4964:137:1:o;5106:940::-;;5464:6;5458:13;5480:53;5526:6;5521:3;5514:4;5506:6;5502:17;5480:53;:::i;:::-;5596:13;;5555:16;;;;5618:57;5596:13;5555:16;5652:4;5640:17;;5618:57;:::i;:::-;5742:13;;5697:20;;;5764:57;5742:13;5697:20;5798:4;5786:17;;5764:57;:::i;:::-;5888:13;;5843:20;;;5910:57;5888:13;5843:20;5944:4;5932:17;;5910:57;:::i;:::-;5983;6030:8;6023:5;6019:20;6011:6;5983:57;:::i;:::-;5976:64;5434:612;-1:-1:-1;;;;;;;;;5434:612:1:o;6051:1004::-;;6454:6;6448:13;6470:53;6516:6;6511:3;6504:4;6496:6;6492:17;6470:53;:::i;:::-;6586:13;;6545:16;;;;6608:57;6586:13;6545:16;6642:4;6630:17;;6608:57;:::i;:::-;6684;6731:8;6724:5;6720:20;6712:6;6684:57;:::i;:::-;6674:67;;;6772:6;6766:13;6788:54;6833:8;6829:2;6822:4;6814:6;6810:17;6788:54;:::i;:::-;6861;6905:8;6901:2;6897:17;6889:6;6861:54;:::i;:::-;6851:64;;;6946:6;6940:13;6962:54;7007:8;7003:2;6996:4;6988:6;6984:17;6962:54;:::i;:::-;7032:17;;6424:631;-1:-1:-1;;;;;;;;6424:631:1:o;7060:1353::-;;7601:6;7595:13;7617:53;7663:6;7658:3;7651:4;7643:6;7639:17;7617:53;:::i;:::-;7733:13;;7692:16;;;;7755:57;7733:13;7692:16;7789:4;7777:17;;7755:57;:::i;:::-;7831;7878:8;7871:5;7867:20;7859:6;7831:57;:::i;:::-;7821:67;;;7919:6;7913:13;7935:54;7980:8;7976:2;7969:4;7961:6;7957:17;7935:54;:::i;:::-;8008;8052:8;8048:2;8044:17;8036:6;8008:54;:::i;:::-;7998:64;;;8093:6;8087:13;8109:54;8154:8;8150:2;8143:4;8135:6;8131:17;8109:54;:::i;:::-;8182;8226:8;8222:2;8218:17;8210:6;8182:54;:::i;:::-;8172:64;;;8267:6;8261:13;8283:54;8328:8;8324:2;8317:4;8309:6;8305:17;8283:54;:::i;:::-;8353;8397:8;8393:2;8389:17;8381:6;8353:54;:::i;:::-;8346:61;7571:842;-1:-1:-1;;;;;;;;;;;;;7571:842:1:o;8418:1250::-;;8956:6;8950:13;8972:53;9018:6;9013:3;9006:4;8998:6;8994:17;8972:53;:::i;:::-;9088:13;;9047:16;;;;9110:57;9088:13;9047:16;9144:4;9132:17;;9110:57;:::i;:::-;9186;9233:8;9226:5;9222:20;9214:6;9186:57;:::i;:::-;9176:67;;;9274:6;9268:13;9290:54;9335:8;9331:2;9324:4;9316:6;9312:17;9290:54;:::i;:::-;9363;9407:8;9403:2;9399:17;9391:6;9363:54;:::i;:::-;9353:64;;;9448:6;9442:13;9464:54;9509:8;9505:2;9498:4;9490:6;9486:17;9464:54;:::i;:::-;9534:128;9570:91;9606:54;9650:8;9646:2;9642:17;9634:6;9606:54;:::i;:::-;9598:6;9570:91;:::i;:::-;9562:6;9534:128;:::i;9673:892::-;;10073:6;10067:13;10089:53;10135:6;10130:3;10123:4;10115:6;10111:17;10089:53;:::i;:::-;10161;10206:6;10201:3;10197:16;10189:6;10161:53;:::i;:::-;10151:63;;10245:6;10239:13;10261:54;10306:8;10302:2;10295:4;10287:6;10283:17;10261:54;:::i;:::-;10334;10378:8;10374:2;10370:17;10362:6;10334:54;:::i;:::-;10324:64;;;10419:6;10413:13;10435:54;10480:8;10476:2;10469:4;10461:6;10457:17;10435:54;:::i;:::-;10505;10549:8;10545:2;10541:17;10533:6;10505:54;:::i;:::-;10498:61;10043:522;-1:-1:-1;;;;;;;;;;10043:522:1:o;10570:1159::-;;11063:6;11057:13;11079:53;11125:6;11120:3;11113:4;11105:6;11101:17;11079:53;:::i;:::-;11151;11196:6;11191:3;11187:16;11179:6;11151:53;:::i;:::-;11141:63;;11235:6;11229:13;11251:54;11296:8;11292:2;11285:4;11277:6;11273:17;11251:54;:::i;:::-;11324;11368:8;11364:2;11360:17;11352:6;11324:54;:::i;:::-;11314:64;;;11409:6;11403:13;11425:54;11470:8;11466:2;11459:4;11451:6;11447:17;11425:54;:::i;:::-;11498;11542:8;11538:2;11534:17;11526:6;11498:54;:::i;:::-;11488:64;;;11583:6;11577:13;11599:54;11644:8;11640:2;11633:4;11625:6;11621:17;11599:54;:::i;:::-;11669;11713:8;11709:2;11705:17;11697:6;11669:54;:::i;:::-;11662:61;11033:696;-1:-1:-1;;;;;;;;;;;;11033:696:1:o;11734:625::-;;12041:6;12035:13;12057:53;12103:6;12098:3;12091:4;12083:6;12079:17;12057:53;:::i;:::-;12129:90;12165:53;12210:6;12205:3;12201:16;12193:6;12165:53;:::i;12129:90::-;12119:100;;12250:6;12244:13;12266:54;12311:8;12307:2;12300:4;12292:6;12288:17;12266:54;:::i;:::-;12336:17;;12011:348;-1:-1:-1;;;;;;12011:348:1:o;12364:378::-;;12568:40;12604:3;12596:6;12568:40;:::i;:::-;12637:6;12631:13;12653:52;12698:6;12694:2;12687:4;12679:6;12675:17;12653:52;:::i;:::-;12721:15;;12548:194;-1:-1:-1;;;;12548:194:1:o;12747:848::-;;13092:40;13128:3;13120:6;13092:40;:::i;:::-;13161:6;13155:13;13177:52;13222:6;13218:2;13211:4;13203:6;13199:17;13177:52;:::i;13600:460::-;;13849:40;13885:3;13877:6;13849:40;:::i;:::-;13918:6;13912:13;13934:52;13979:6;13975:2;13968:4;13960:6;13956:17;13934:52;:::i;:::-;14002;14046:6;14042:2;14038:15;14030:6;14002:52;:::i;:::-;13995:59;13829:231;-1:-1:-1;;;;;;;13829:231:1:o;14065:912::-;;14455:40;14491:3;14483:6;14455:40;:::i;:::-;14524:6;14518:13;14540:52;14585:6;14581:2;14574:4;14566:6;14562:17;14540:52;:::i;14982:363::-;;15225:114;15261:77;15297:40;15333:3;15325:6;15297:40;:::i;15261:77::-;15253:6;15225:114;:::i;:::-;15218:121;15208:137;-1:-1:-1;;;;;15208:137:1:o;15350:624::-;;15689:114;15725:77;15761:40;15797:3;15789:6;15761:40;:::i;15689:114::-;15832:6;15826:13;15848:52;15893:6;15889:2;15882:4;15874:6;15870:17;15848:52;:::i;15979:527::-;;16312:188;16348:151;16384:114;16420:77;16456:40;16492:3;16484:6;16456:40;:::i;:::-;16448:6;16420:77;:::i;16511:205::-;16711:3;16702:14::o;16721:203::-;-1:-1:-1;;;;;16885:32:1;;;;16867:51;;16855:2;16840:18;;16822:102::o;16929:490::-;-1:-1:-1;;;;;17198:15:1;;;17180:34;;17250:15;;17245:2;17230:18;;17223:43;17297:2;17282:18;;17275:34;;;17345:3;17340:2;17325:18;;17318:31;;;16929:490;;17366:47;;17393:19;;17385:6;17366:47;:::i;:::-;17358:55;17132:287;-1:-1:-1;;;;;;17132:287:1:o;17424:274::-;-1:-1:-1;;;;;17616:32:1;;;;17598:51;;17680:2;17665:18;;17658:34;17586:2;17571:18;;17553:145::o;17703:187::-;17868:14;;17861:22;17843:41;;17831:2;17816:18;;17798:92::o;17895:221::-;;18044:2;18033:9;18026:21;18064:46;18106:2;18095:9;18091:18;18083:6;18064:46;:::i;18121:344::-;18323:2;18305:21;;;18362:2;18342:18;;;18335:30;-1:-1:-1;;;18396:2:1;18381:18;;18374:50;18456:2;18441:18;;18295:170::o;18470:407::-;18672:2;18654:21;;;18711:2;18691:18;;;18684:30;18750:34;18745:2;18730:18;;18723:62;-1:-1:-1;;;18816:2:1;18801:18;;18794:41;18867:3;18852:19;;18644:233::o;18882:414::-;19084:2;19066:21;;;19123:2;19103:18;;;19096:30;19162:34;19157:2;19142:18;;19135:62;-1:-1:-1;;;19228:2:1;19213:18;;19206:48;19286:3;19271:19;;19056:240::o;19301:402::-;19503:2;19485:21;;;19542:2;19522:18;;;19515:30;19581:34;19576:2;19561:18;;19554:62;-1:-1:-1;;;19647:2:1;19632:18;;19625:36;19693:3;19678:19;;19475:228::o;19708:352::-;19910:2;19892:21;;;19949:2;19929:18;;;19922:30;19988;19983:2;19968:18;;19961:58;20051:2;20036:18;;19882:178::o;20065:400::-;20267:2;20249:21;;;20306:2;20286:18;;;20279:30;20345:34;20340:2;20325:18;;20318:62;-1:-1:-1;;;20411:2:1;20396:18;;20389:34;20455:3;20440:19;;20239:226::o;20470:349::-;20672:2;20654:21;;;20711:2;20691:18;;;20684:30;20750:27;20745:2;20730:18;;20723:55;20810:2;20795:18;;20644:175::o;20824:344::-;21026:2;21008:21;;;21065:2;21045:18;;;21038:30;-1:-1:-1;;;21099:2:1;21084:18;;21077:50;21159:2;21144:18;;20998:170::o;21173:355::-;21375:2;21357:21;;;21414:2;21394:18;;;21387:30;21453:33;21448:2;21433:18;;21426:61;21519:2;21504:18;;21347:181::o;21533:422::-;21735:2;21717:21;;;21774:2;21754:18;;;21747:30;21813:34;21808:2;21793:18;;21786:62;21884:28;21879:2;21864:18;;21857:56;21945:3;21930:19;;21707:248::o;21960:353::-;22162:2;22144:21;;;22201:2;22181:18;;;22174:30;22240:31;22235:2;22220:18;;22213:59;22304:2;22289:18;;22134:179::o;22318:408::-;22520:2;22502:21;;;22559:2;22539:18;;;22532:30;22598:34;22593:2;22578:18;;22571:62;-1:-1:-1;;;22664:2:1;22649:18;;22642:42;22716:3;22701:19;;22492:234::o;22731:420::-;22933:2;22915:21;;;22972:2;22952:18;;;22945:30;23011:34;23006:2;22991:18;;22984:62;23082:26;23077:2;23062:18;;23055:54;23141:3;23126:19;;22905:246::o;23156:406::-;23358:2;23340:21;;;23397:2;23377:18;;;23370:30;23436:34;23431:2;23416:18;;23409:62;-1:-1:-1;;;23502:2:1;23487:18;;23480:40;23552:3;23537:19;;23330:232::o;23567:405::-;23769:2;23751:21;;;23808:2;23788:18;;;23781:30;23847:34;23842:2;23827:18;;23820:62;-1:-1:-1;;;23913:2:1;23898:18;;23891:39;23962:3;23947:19;;23741:231::o;23977:356::-;24179:2;24161:21;;;24198:18;;;24191:30;24257:34;24252:2;24237:18;;24230:62;24324:2;24309:18;;24151:182::o;24338:408::-;24540:2;24522:21;;;24579:2;24559:18;;;24552:30;24618:34;24613:2;24598:18;;24591:62;-1:-1:-1;;;24684:2:1;24669:18;;24662:42;24736:3;24721:19;;24512:234::o;24751:356::-;24953:2;24935:21;;;24972:18;;;24965:30;25031:34;25026:2;25011:18;;25004:62;25098:2;25083:18;;24925:182::o;25112:405::-;25314:2;25296:21;;;25353:2;25333:18;;;25326:30;25392:34;25387:2;25372:18;;25365:62;-1:-1:-1;;;25458:2:1;25443:18;;25436:39;25507:3;25492:19;;25286:231::o;25522:397::-;25724:2;25706:21;;;25763:2;25743:18;;;25736:30;25802:34;25797:2;25782:18;;25775:62;-1:-1:-1;;;25868:2:1;25853:18;;25846:31;25909:3;25894:19;;25696:223::o;25924:413::-;26126:2;26108:21;;;26165:2;26145:18;;;26138:30;26204:34;26199:2;26184:18;;26177:62;-1:-1:-1;;;26270:2:1;26255:18;;26248:47;26327:3;26312:19;;26098:239::o;26342:408::-;26544:2;26526:21;;;26583:2;26563:18;;;26556:30;26622:34;26617:2;26602:18;;26595:62;-1:-1:-1;;;26688:2:1;26673:18;;26666:42;26740:3;26725:19;;26516:234::o;26755:400::-;26957:2;26939:21;;;26996:2;26976:18;;;26969:30;27035:34;27030:2;27015:18;;27008:62;-1:-1:-1;;;27101:2:1;27086:18;;27079:34;27145:3;27130:19;;26929:226::o;27160:337::-;27362:2;27344:21;;;27401:2;27381:18;;;27374:30;-1:-1:-1;;;27435:2:1;27420:18;;27413:43;27488:2;27473:18;;27334:163::o;27502:355::-;27704:2;27686:21;;;27743:2;27723:18;;;27716:30;27782:33;27777:2;27762:18;;27755:61;27848:2;27833:18;;27676:181::o;27862:177::-;28008:25;;;27996:2;27981:18;;27963:76::o;28044:129::-;;28112:17;;;28162:4;28146:21;;;28102:71::o;28178:128::-;;28249:1;28245:6;28242:1;28239:13;28236:2;;;28255:18;;:::i;:::-;-1:-1:-1;28291:9:1;;28226:80::o;28311:120::-;;28377:1;28367:2;;28382:18;;:::i;:::-;-1:-1:-1;28416:9:1;;28357:74::o;28436:168::-;;28542:1;28538;28534:6;28530:14;28527:1;28524:21;28519:1;28512:9;28505:17;28501:45;28498:2;;;28549:18;;:::i;:::-;-1:-1:-1;28589:9:1;;28488:116::o;28609:125::-;;28677:1;28674;28671:8;28668:2;;;28682:18;;:::i;:::-;-1:-1:-1;28719:9:1;;28658:76::o;28739:195::-;;28814:4;28811:1;28807:12;28846:4;28843:1;28839:12;28871:3;28866;28863:12;28860:2;;;28878:18;;:::i;:::-;28915:13;;;28786:148;-1:-1:-1;;;28786:148:1:o;28939:258::-;29011:1;29021:113;29035:6;29032:1;29029:13;29021:113;;;29111:11;;;29105:18;29092:11;;;29085:39;29057:2;29050:10;29021:113;;;29152:6;29149:1;29146:13;29143:2;;;-1:-1:-1;;29187:1:1;29169:16;;29162:27;28992:205::o;29202:380::-;29287:1;29277:12;;29334:1;29324:12;;;29345:2;;29399:4;29391:6;29387:17;29377:27;;29345:2;29452;29444:6;29441:14;29421:18;29418:38;29415:2;;;29498:10;29493:3;29489:20;29486:1;29479:31;29533:4;29530:1;29523:15;29561:4;29558:1;29551:15;29415:2;;29257:325;;;:::o;29587:135::-;;-1:-1:-1;;29647:17:1;;29644:2;;;29667:18;;:::i;:::-;-1:-1:-1;29714:1:1;29703:13;;29634:88::o;29727:175::-;;29808:4;29801:5;29797:16;29837:4;29828:7;29825:17;29822:2;;;29845:18;;:::i;:::-;29894:1;29881:15;;29772:130;-1:-1:-1;;29772:130:1:o;29907:112::-;;29965:1;29955:2;;29970:18;;:::i;:::-;-1:-1:-1;30004:9:1;;29945:74::o;30024:127::-;30085:10;30080:3;30076:20;30073:1;30066:31;30116:4;30113:1;30106:15;30140:4;30137:1;30130:15;30156:127;30217:10;30212:3;30208:20;30205:1;30198:31;30248:4;30245:1;30238:15;30272:4;30269:1;30262:15;30288:127;30349:10;30344:3;30340:20;30337:1;30330:31;30380:4;30377:1;30370:15;30404:4;30401:1;30394:15;30420:133;-1:-1:-1;;;;;;30496:32:1;;30486:43;;30476:2;;30543:1;30540;30533:12

Swarm Source

ipfs://502ca4c2f2dc692b65768b38882739c6c01c9966c4e59bb7494a8f4d461385d6
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.