ETH Price: $3,822.54 (+5.67%)

Token

ERC-20: SwagsLime (SLIMES)
 

Overview

Max Total Supply

5 SLIMES

Holders

4

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
megenthedegen.eth
Balance
1 SLIMES
0x5ae7e08b0ed8e30146d577cd2a84a391f4fa3f20
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:
Swags

Compiler Version
v0.7.1+commit.f4a555be

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

// File: @openzeppelin/contracts/utils/Context.sol
/*
 * @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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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);
}

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;
}

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);
}

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);
}

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);
}

abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

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

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

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

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

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

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

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

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

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

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

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

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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;

        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) { // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({ _key: key, _value: value }));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) { // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key) private view returns (bool) {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

   /**
    * @dev Returns the key-value pair stored at position `index` in the map. O(1).
    *
    * Note that there are no guarantees on the ordering of entries inside the
    * array, and it may change when more entries are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        require(map._entries.length > index, "EnumerableMap: index out of bounds");

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }

   /**
    * @dev Returns the element stored at position `index` in the set. O(1).
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
    }
}

library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
}


library Counters {
    using SafeMath for uint256;

    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

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

    function increment(Counter storage counter) internal {
        // The {SafeMath} overflow check can be skipped here, see the comment at the top
        counter._value += 1;
    }

    function decrement(Counter storage counter) internal {
        counter._value = counter._value.sub(1);
    }
}

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping (address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

    // 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;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Base URI
    string private _baseURI = "";

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

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

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @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 _holderTokens[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

    /**
     * @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 _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

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

    /**
    * @dev Returns the base URI. This will be
    * automatically added as a prefix in {tokenURI} to each token's URI, or
    * to the token ID if no specific URI is set for that token ID.
    */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @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 || ERC721.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 _tokenOwners.contains(tokenId);
    }

    /**
     * @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 || ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(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(address to, uint256 tokenId) internal virtual {
        require(to == ERC721.ownerOf(tokenId)); // internal owner

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

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

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

        _holderTokens[to].remove(tokenId);

        _tokenOwners.remove(tokenId);

        emit Transfer(to, 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"); // internal owner
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }
    
    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            return true;
        }
        bytes memory returndata = to.functionCall(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ), "ERC721: transfer to non ERC721Receiver implementer");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

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

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

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


/**
 * @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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/GameCard.sol


abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

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

    bool private _paused;

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

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

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

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

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

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

abstract contract ERC721Pausable is ERC721, Ownable, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);
        if (_msgSender() != owner()) {
            require(!paused(), "ERC721Pausable: token transfer while paused");
        }
    }
}

pragma experimental ABIEncoderV2;


/**
 * @title GameCard contract
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation
 */
contract Swags is Ownable, ERC721Pausable {
    using SafeMath for uint256;
    
    // counter for the tokenid
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;
    
    // map & list with all CARD index, not id

    
    uint256 public constant MAX_ELEMENTS = 10000;
    uint256 public PRICE = 3 * 10**16;
    uint256 public constant MAX_BY_MINT = 5;
    
    mapping(uint => bool) public ImgStatus;
    
    // map with PACK ids
    
    event MintPack(address indexed to, uint256 indexed tokenId);

    constructor(string memory baseURI) ERC721("SwagsLime", "SLIMES") {  
        _setBaseURI(baseURI);
    }
    
    modifier saleIsOpen {
        require(totalSupply() <= MAX_ELEMENTS, "Sale end");
        if (_msgSender() != owner()) {
            require(!paused(), "Pausable: paused");
        }
        _;
    }

    /**
    * Mints a PACK
    */
    function mintPack(string[] memory tokenURI, uint256[] memory mintedImg) public payable saleIsOpen returns (uint256) {
        require(mintedImg.length <= MAX_BY_MINT, "Exceeds number");
        require(balanceOf(msg.sender) + mintedImg.length <= MAX_BY_MINT, "Exceeds number");
        // add PACK id to map
        
        for(uint256 j = 0; j < mintedImg.length; j++) {
            require(!ImgStatus[mintedImg[j]], "This number is existed");
            ImgStatus[mintedImg[j]] = true;
        }
        
        for (uint256 i = 0; i < tokenURI.length; i++) {
            _mintAnElement(msg.sender, tokenURI[i]);
        }
    }
    
    function _mintAnElement(address _to, string memory tokenURI) private {
        _tokenIds.increment();
        uint256 newItemId = _tokenIds.current();
        
        _safeMint(_to, newItemId);
        _setTokenURI(newItemId, tokenURI);
        emit MintPack(msg.sender, newItemId);
    }

    function price(uint256 _count) public view returns (uint256) {
        return PRICE.mul(_count);
    }

    function setPrice(uint256 _price) public onlyOwner {
        PRICE = _price;
    }
    
    function pause(bool val) public onlyOwner {
        if (val == true) {
            _pause();
            return;
        }
        _unpause();
    }
    
    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);
        _widthdraw(owner(), balance);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"MintPack","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ImgStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BY_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string[]","name":"tokenURI","type":"string[]"},{"internalType":"uint256[]","name":"mintedImg","type":"uint256[]"}],"name":"mintPack","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","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":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260405180602001604052806000815250600990805190602001906200002b9291906200034a565b50666a94d74f430000600c553480156200004457600080fd5b506040516200498e3803806200498e83398181016040528101906200006a91906200044c565b6040518060400160405280600981526020017f53776167734c696d6500000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f534c494d45530000000000000000000000000000000000000000000000000000815250620000ee6301ffc9a760e01b6200024e60201b60201c565b8160069080519060200190620001069291906200034a565b5080600790805190602001906200011f9291906200034a565b50620001386380ac58cd60e01b6200024e60201b60201c565b62000150635b5e139f60e01b6200024e60201b60201c565b6200016863780e9d6360e01b6200024e60201b60201c565b505060006200017c6200032660201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000600a60146101000a81548160ff02191690831515021790555062000247816200032e60201b60201c565b5062000597565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b190620004d3565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b8060099080519060200190620003469291906200034a565b5050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200038d57805160ff1916838001178555620003be565b82800160010185558215620003be579182015b82811115620003bd578251825591602001919060010190620003a0565b5b509050620003cd9190620003d1565b5090565b5b80821115620003ec576000816000905550600101620003d2565b5090565b600082601f8301126200040257600080fd5b815162000419620004138262000523565b620004f5565b915080825260208301602083018583830111156200043657600080fd5b6200044383828462000561565b50505092915050565b6000602082840312156200045f57600080fd5b600082015167ffffffffffffffff8111156200047a57600080fd5b6200048884828501620003f0565b91505092915050565b6000620004a0601c8362000550565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b60006020820190508181036000830152620004ee8162000491565b9050919050565b6000604051905081810181811067ffffffffffffffff821117156200051957600080fd5b8060405250919050565b600067ffffffffffffffff8211156200053b57600080fd5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60005b838110156200058157808201518184015260208101905062000564565b8381111562000591576000848401525b50505050565b6143e780620005a76000396000f3fe6080604052600436106101d15760003560e01c806370a08231116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd14610688578063c978d21d146106c5578063e985e9c514610702578063f2fde38b1461073f576101d8565b806395d89b41146105db578063a22cb46514610606578063a77cd6791461062f578063b88d4fde1461065f576101d8565b80638ad5de28116100d15780638ad5de28146105315780638d859f3e1461055c5780638da5cb5b1461058757806391b7f5ed146105b2576101d8565b806370a08231146104c6578063715018a614610503578063853828b61461051a576101d8565b806326a49e371161016f5780634f6ccce71161013e5780634f6ccce7146103f65780635c975abb146104335780636352211e1461045e5780636c0360eb1461049b576101d8565b806326a49e37146103285780632f745c59146103655780633502a716146103a257806342842e0e146103cd576101d8565b8063081812fc116101ab578063081812fc1461026e578063095ea7b3146102ab57806318160ddd146102d457806323b872dd146102ff576101d8565b806301ffc9a7146101dd57806302329a291461021a57806306fdde0314610243576101d8565b366101d857005b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190613144565b610768565b6040516102119190613d10565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c919061311b565b6107cf565b005b34801561024f57600080fd5b50610258610871565b6040516102659190613d2b565b60405180910390f35b34801561027a57600080fd5b5061029560048036038101906102909190613196565b610913565b6040516102a29190613c8e565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd9190613073565b610998565b005b3480156102e057600080fd5b506102e9610ab0565b6040516102f691906140ad565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190612f6d565b610ac1565b005b34801561033457600080fd5b5061034f600480360381019061034a9190613196565b610b21565b60405161035c91906140ad565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190613073565b610b3f565b60405161039991906140ad565b60405180910390f35b3480156103ae57600080fd5b506103b7610b9a565b6040516103c491906140ad565b60405180910390f35b3480156103d957600080fd5b506103f460048036038101906103ef9190612f6d565b610ba0565b005b34801561040257600080fd5b5061041d60048036038101906104189190613196565b610bc0565b60405161042a91906140ad565b60405180910390f35b34801561043f57600080fd5b50610448610be3565b6040516104559190613d10565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190613196565b610bfa565b6040516104929190613c8e565b60405180910390f35b3480156104a757600080fd5b506104b0610c31565b6040516104bd9190613d2b565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e89190612f08565b610cd3565b6040516104fa91906140ad565b60405180910390f35b34801561050f57600080fd5b50610518610d92565b005b34801561052657600080fd5b5061052f610ecf565b005b34801561053d57600080fd5b50610546610f71565b60405161055391906140ad565b60405180910390f35b34801561056857600080fd5b50610571610f76565b60405161057e91906140ad565b60405180910390f35b34801561059357600080fd5b5061059c610f7c565b6040516105a99190613c8e565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d49190613196565b610fa6565b005b3480156105e757600080fd5b506105f061102c565b6040516105fd9190613d2b565b60405180910390f35b34801561061257600080fd5b5061062d60048036038101906106289190613037565b6110ce565b005b610649600480360381019061064491906130af565b61124f565b60405161065691906140ad565b60405180910390f35b34801561066b57600080fd5b5061068660048036038101906106819190612fbc565b6114c5565b005b34801561069457600080fd5b506106af60048036038101906106aa9190613196565b611527565b6040516106bc9190613d2b565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e79190613196565b6116aa565b6040516106f99190613d10565b60405180910390f35b34801561070e57600080fd5b5061072960048036038101906107249190612f31565b6116ca565b6040516107369190613d10565b60405180910390f35b34801561074b57600080fd5b5061076660048036038101906107619190612f08565b61175e565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6107d761190a565b73ffffffffffffffffffffffffffffffffffffffff166107f5610f7c565b73ffffffffffffffffffffffffffffffffffffffff161461084b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084290613fcd565b60405180910390fd5b60011515811515141561086557610860611912565b61086e565b61086d6119b5565b5b50565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109095780601f106108de57610100808354040283529160200191610909565b820191906000526020600020905b8154815290600101906020018083116108ec57829003601f168201915b5050505050905090565b600061091e82611a57565b61095d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095490613f8d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a382610bfa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0b9061402d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a3361190a565b73ffffffffffffffffffffffffffffffffffffffff161480610a625750610a6181610a5c61190a565b6116ca565b5b610aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9890613eed565b60405180910390fd5b610aab8383611a74565b505050565b6000610abc6002611b2d565b905090565b610ad2610acc61190a565b82611b42565b610b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b089061406d565b60405180910390fd5b610b1c838383611c20565b505050565b6000610b3882600c54611e3790919063ffffffff16565b9050919050565b6000610b9282600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611ea790919063ffffffff16565b905092915050565b61271081565b610bbb838383604051806020016040528060008152506114c5565b505050565b600080610bd7836002611ec190919063ffffffff16565b50905080915050919050565b6000600a60149054906101000a900460ff16905090565b6000610c2a82604051806060016040528060298152602001614389602991396002611eed9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610cc95780601f10610c9e57610100808354040283529160200191610cc9565b820191906000526020600020905b815481529060010190602001808311610cac57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b90613f0d565b60405180910390fd5b610d8b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611f0c565b9050919050565b610d9a61190a565b73ffffffffffffffffffffffffffffffffffffffff16610db8610f7c565b73ffffffffffffffffffffffffffffffffffffffff1614610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0590613fcd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610ed761190a565b73ffffffffffffffffffffffffffffffffffffffff16610ef5610f7c565b73ffffffffffffffffffffffffffffffffffffffff1614610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290613fcd565b60405180910390fd5b600047905060008111610f5d57600080fd5b610f6e610f68610f7c565b82611f21565b50565b600581565b600c5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fae61190a565b73ffffffffffffffffffffffffffffffffffffffff16610fcc610f7c565b73ffffffffffffffffffffffffffffffffffffffff1614611022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101990613fcd565b60405180910390fd5b80600c8190555050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110c45780601f10611099576101008083540402835291602001916110c4565b820191906000526020600020905b8154815290600101906020018083116110a757829003601f168201915b5050505050905090565b6110d661190a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b90613e6d565b60405180910390fd5b806005600061115161190a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111fe61190a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112439190613d10565b60405180910390a35050565b600061271061125c610ab0565b111561129d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129490613f4d565b60405180910390fd5b6112a5610f7c565b73ffffffffffffffffffffffffffffffffffffffff166112c361190a565b73ffffffffffffffffffffffffffffffffffffffff1614611327576112e6610be3565b15611326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131d90613ecd565b60405180910390fd5b5b60058251111561136c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136390613dcd565b60405180910390fd5b6005825161137933610cd3565b0111156113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b290613dcd565b60405180910390fd5b60005b825181101561148757600d60008483815181106113d757fe5b6020026020010151815260200190815260200160002060009054906101000a900460ff161561143b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143290613d4d565b60405180910390fd5b6001600d600085848151811061144d57fe5b6020026020010151815260200190815260200160002060006101000a81548160ff02191690831515021790555080806001019150506113be565b5060005b83518110156114be576114b1338583815181106114a457fe5b6020026020010151611fd2565b808060010191505061148b565b5092915050565b6114d66114d061190a565b83611b42565b611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c9061406d565b60405180910390fd5b61152184848484612047565b50505050565b606061153282611a57565b611571576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115689061400d565b60405180910390fd5b6060600860008481526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561161a5780601f106115ef5761010080835404028352916020019161161a565b820191906000526020600020905b8154815290600101906020018083116115fd57829003601f168201915b50505050509050606061162b610c31565b90506000815114156116415781925050506116a5565b60008251111561167657808260405160200161165e929190613c55565b604051602081830303815290604052925050506116a5565b80611680856120a3565b604051602001611691929190613c55565b604051602081830303815290604052925050505b919050565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61176661190a565b73ffffffffffffffffffffffffffffffffffffffff16611784610f7c565b73ffffffffffffffffffffffffffffffffffffffff16146117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d190613fcd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561184a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184190613e0d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b61191a610be3565b1561195a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195190613ecd565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861199e61190a565b6040516119ab9190613ca9565b60405180910390a1565b6119bd610be3565b6119fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f390613dad565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611a4061190a565b604051611a4d9190613ca9565b60405180910390a1565b6000611a6d8260026121ea90919063ffffffff16565b9050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ae783610bfa565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b3b82600001612204565b9050919050565b6000611b4d82611a57565b611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8390613ead565b60405180910390fd5b6000611b9783610bfa565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c0657508373ffffffffffffffffffffffffffffffffffffffff16611bee84610913565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c175750611c1681856116ca565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c4082610bfa565b73ffffffffffffffffffffffffffffffffffffffff1614611c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8d90613fed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfd90613e4d565b60405180910390fd5b611d11838383612215565b611d1c600082611a74565b611d6d81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206122af90919063ffffffff16565b50611dbf81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206122c990919063ffffffff16565b50611dd6818360026122e39092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600080831415611e4a5760009050611ea1565b6000828402905082848281611e5b57fe5b0414611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9390613f6d565b60405180910390fd5b809150505b92915050565b6000611eb68360000183612318565b60001c905092915050565b600080600080611ed48660000186612385565b915091508160001c8160001c9350935050509250929050565b6000611f00846000018460001b84612408565b60001c90509392505050565b6000611f1a82600001612499565b9050919050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611f4790613c79565b60006040518083038185875af1925050503d8060008114611f84576040519150601f19603f3d011682016040523d82523d6000602084013e611f89565b606091505b5050905080611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc49061404d565b60405180910390fd5b505050565b611fdc600b6124aa565b6000611fe8600b6124c0565b9050611ff483826124ce565b611ffe81836124ec565b803373ffffffffffffffffffffffffffffffffffffffff167f774a0b0f514220c25bb32ea2b4557581b30c98b92304f315b967376e33d1777460405160405180910390a3505050565b612052848484611c20565b61205e84848484612560565b61209d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209490613ded565b60405180910390fd5b50505050565b606060008214156120eb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121e5565b600082905060005b60008214612115578080600101915050600a828161210d57fe5b0491506120f3565b60608167ffffffffffffffff8111801561212e57600080fd5b506040519080825280601f01601f1916602001820160405280156121615781602001600182028036833780820191505090505b50905060006001830390508593505b600084146121dd57600a848161218257fe5b0660300160f81b8282806001900393508151811061219c57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84816121d557fe5b049350612170565b819450505050505b919050565b60006121fc836000018360001b6126c4565b905092915050565b600081600001805490509050919050565b6122208383836126e7565b612228610f7c565b73ffffffffffffffffffffffffffffffffffffffff1661224661190a565b73ffffffffffffffffffffffffffffffffffffffff16146122aa57612269610be3565b156122a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a090613d8d565b60405180910390fd5b5b505050565b60006122c1836000018360001b6126ec565b905092915050565b60006122db836000018360001b6127d4565b905092915050565b600061230f846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612844565b90509392505050565b600081836000018054905011612363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235a90613d6d565b60405180910390fd5b82600001828154811061237257fe5b9060005260206000200154905092915050565b600080828460000180549050116123d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c890613f2d565b60405180910390fd5b60008460000184815481106123e257fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000808460010160008581526020019081526020016000205490506000811415839061246a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124619190613d2b565b60405180910390fd5b5084600001600182038154811061247d57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6124e8828260405180602001604052806000815250612920565b5050565b6124f582611a57565b612534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252b90613fad565b60405180910390fd5b8060086000848152602001908152602001600020908051906020019061255b929190612c63565b505050565b60006125818473ffffffffffffffffffffffffffffffffffffffff1661297b565b61258e57600190506126bc565b606061265563150b7a0260e01b6125a361190a565b8887876040516024016125b99493929190613cc4565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614357603291398773ffffffffffffffffffffffffffffffffffffffff1661298e9092919063ffffffff16565b905060008180602001905181019061266d919061316d565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b505050565b600080836001016000848152602001908152602001600020549050600081146127c8576000600182039050600060018660000180549050039050600086600001828154811061273757fe5b906000526020600020015490508087600001848154811061275457fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061278c57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506127ce565b60009150505b92915050565b60006127e083836129a6565b61283957826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061283e565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156128eb57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612919565b828560000160018303815481106128fe57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b61292a83836129c9565b6129376000848484612560565b612976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296d90613ded565b60405180910390fd5b505050565b600080823b905060008111915050919050565b606061299d8484600085612ae7565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6129d281611a57565b15612a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0990613e2d565b60405180910390fd5b612a1e60008383612215565b612a6f81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206122c990919063ffffffff16565b50612a86818360026122e39092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b606082471015612b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2390613e8d565b60405180910390fd5b612b358561297b565b612b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6b9061408d565b60405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff168587604051612b9e9190613c3e565b60006040518083038185875af1925050503d8060008114612bdb576040519150601f19603f3d011682016040523d82523d6000602084013e612be0565b606091505b5091509150612bf0828286612bfc565b92505050949350505050565b60608315612c0c57829050612c5c565b600083511115612c1f5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c539190613d2b565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612ca457805160ff1916838001178555612cd2565b82800160010185558215612cd2579182015b82811115612cd1578251825591602001919060010190612cb6565b5b509050612cdf9190612ce3565b5090565b5b80821115612cfc576000816000905550600101612ce4565b5090565b600081359050612d0f816142fa565b92915050565b600082601f830112612d2657600080fd5b8135612d39612d34826140f5565b6140c8565b9150818183526020840193506020810190508360005b83811015612d7f5781358601612d658882612e9f565b845260208401935060208301925050600181019050612d4f565b5050505092915050565b600082601f830112612d9a57600080fd5b8135612dad612da88261411d565b6140c8565b91508181835260208401935060208101905083856020840282011115612dd257600080fd5b60005b83811015612e025781612de88882612ef3565b845260208401935060208301925050600181019050612dd5565b5050505092915050565b600081359050612e1b81614311565b92915050565b600081359050612e3081614328565b92915050565b600081519050612e4581614328565b92915050565b600082601f830112612e5c57600080fd5b8135612e6f612e6a82614145565b6140c8565b91508082526020830160208301858383011115612e8b57600080fd5b612e968382846142a7565b50505092915050565b600082601f830112612eb057600080fd5b8135612ec3612ebe82614171565b6140c8565b91508082526020830160208301858383011115612edf57600080fd5b612eea8382846142a7565b50505092915050565b600081359050612f028161433f565b92915050565b600060208284031215612f1a57600080fd5b6000612f2884828501612d00565b91505092915050565b60008060408385031215612f4457600080fd5b6000612f5285828601612d00565b9250506020612f6385828601612d00565b9150509250929050565b600080600060608486031215612f8257600080fd5b6000612f9086828701612d00565b9350506020612fa186828701612d00565b9250506040612fb286828701612ef3565b9150509250925092565b60008060008060808587031215612fd257600080fd5b6000612fe087828801612d00565b9450506020612ff187828801612d00565b935050604061300287828801612ef3565b925050606085013567ffffffffffffffff81111561301f57600080fd5b61302b87828801612e4b565b91505092959194509250565b6000806040838503121561304a57600080fd5b600061305885828601612d00565b925050602061306985828601612e0c565b9150509250929050565b6000806040838503121561308657600080fd5b600061309485828601612d00565b92505060206130a585828601612ef3565b9150509250929050565b600080604083850312156130c257600080fd5b600083013567ffffffffffffffff8111156130dc57600080fd5b6130e885828601612d15565b925050602083013567ffffffffffffffff81111561310557600080fd5b61311185828601612d89565b9150509250929050565b60006020828403121561312d57600080fd5b600061313b84828501612e0c565b91505092915050565b60006020828403121561315657600080fd5b600061316484828501612e21565b91505092915050565b60006020828403121561317f57600080fd5b600061318d84828501612e36565b91505092915050565b6000602082840312156131a857600080fd5b60006131b684828501612ef3565b91505092915050565b6131c881614271565b82525050565b6131d7816141fd565b82525050565b6131e6816141eb565b82525050565b6131f58161420f565b82525050565b60006132068261419d565b61321081856141b3565b93506132208185602086016142b6565b613229816142e9565b840191505092915050565b600061323f8261419d565b61324981856141c4565b93506132598185602086016142b6565b80840191505092915050565b6000613270826141a8565b61327a81856141cf565b935061328a8185602086016142b6565b613293816142e9565b840191505092915050565b60006132a9826141a8565b6132b381856141e0565b93506132c38185602086016142b6565b80840191505092915050565b60006132dc6016836141cf565b91507f54686973206e756d6265722069732065786973746564000000000000000000006000830152602082019050919050565b600061331c6022836141cf565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613382602b836141cf565b91507f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008301527f68696c65207061757365640000000000000000000000000000000000000000006020830152604082019050919050565b60006133e86014836141cf565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000613428600e836141cf565b91507f45786365656473206e756d6265720000000000000000000000000000000000006000830152602082019050919050565b60006134686032836141cf565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006134ce6026836141cf565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613534601c836141cf565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006135746024836141cf565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135da6019836141cf565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061361a6026836141cf565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613680602c836141cf565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006136e66010836141cf565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b60006137266038836141cf565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061378c602a836141cf565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006137f26022836141cf565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138586008836141cf565b91507f53616c6520656e640000000000000000000000000000000000000000000000006000830152602082019050919050565b60006138986021836141cf565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138fe602c836141cf565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613964602c836141cf565b91507f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006139ca6020836141cf565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613a0a6029836141cf565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a70602f836141cf565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613ad66021836141cf565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b3c6000836141c4565b9150600082019050919050565b6000613b566010836141cf565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b6000613b966031836141cf565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613bfc601d836141cf565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b613c3881614267565b82525050565b6000613c4a8284613234565b915081905092915050565b6000613c61828561329e565b9150613c6d828461329e565b91508190509392505050565b6000613c8482613b2f565b9150819050919050565b6000602082019050613ca360008301846131dd565b92915050565b6000602082019050613cbe60008301846131bf565b92915050565b6000608082019050613cd960008301876131ce565b613ce660208301866131dd565b613cf36040830185613c2f565b8181036060830152613d0581846131fb565b905095945050505050565b6000602082019050613d2560008301846131ec565b92915050565b60006020820190508181036000830152613d458184613265565b905092915050565b60006020820190508181036000830152613d66816132cf565b9050919050565b60006020820190508181036000830152613d868161330f565b9050919050565b60006020820190508181036000830152613da681613375565b9050919050565b60006020820190508181036000830152613dc6816133db565b9050919050565b60006020820190508181036000830152613de68161341b565b9050919050565b60006020820190508181036000830152613e068161345b565b9050919050565b60006020820190508181036000830152613e26816134c1565b9050919050565b60006020820190508181036000830152613e4681613527565b9050919050565b60006020820190508181036000830152613e6681613567565b9050919050565b60006020820190508181036000830152613e86816135cd565b9050919050565b60006020820190508181036000830152613ea68161360d565b9050919050565b60006020820190508181036000830152613ec681613673565b9050919050565b60006020820190508181036000830152613ee6816136d9565b9050919050565b60006020820190508181036000830152613f0681613719565b9050919050565b60006020820190508181036000830152613f268161377f565b9050919050565b60006020820190508181036000830152613f46816137e5565b9050919050565b60006020820190508181036000830152613f668161384b565b9050919050565b60006020820190508181036000830152613f868161388b565b9050919050565b60006020820190508181036000830152613fa6816138f1565b9050919050565b60006020820190508181036000830152613fc681613957565b9050919050565b60006020820190508181036000830152613fe6816139bd565b9050919050565b60006020820190508181036000830152614006816139fd565b9050919050565b6000602082019050818103600083015261402681613a63565b9050919050565b6000602082019050818103600083015261404681613ac9565b9050919050565b6000602082019050818103600083015261406681613b49565b9050919050565b6000602082019050818103600083015261408681613b89565b9050919050565b600060208201905081810360008301526140a681613bef565b9050919050565b60006020820190506140c26000830184613c2f565b92915050565b6000604051905081810181811067ffffffffffffffff821117156140eb57600080fd5b8060405250919050565b600067ffffffffffffffff82111561410c57600080fd5b602082029050602081019050919050565b600067ffffffffffffffff82111561413457600080fd5b602082029050602081019050919050565b600067ffffffffffffffff82111561415c57600080fd5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561418857600080fd5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006141f682614247565b9050919050565b600061420882614247565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061427c82614283565b9050919050565b600061428e82614295565b9050919050565b60006142a082614247565b9050919050565b82818337600083830152505050565b60005b838110156142d45780820151818401526020810190506142b9565b838111156142e3576000848401525b50505050565b6000601f19601f8301169050919050565b614303816141eb565b811461430e57600080fd5b50565b61431a8161420f565b811461432557600080fd5b50565b6143318161421b565b811461433c57600080fd5b50565b61434881614267565b811461435357600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220b067d8c6ad2b8b7ac4718e0bbc8b97990a00bde9a940ad7d9eeb2e007649410864736f6c634300070100330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d624c4143505163744437385a5a6e415245793959666a7958427148316856337a76736a3748586767667150592f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d15760003560e01c806370a08231116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd14610688578063c978d21d146106c5578063e985e9c514610702578063f2fde38b1461073f576101d8565b806395d89b41146105db578063a22cb46514610606578063a77cd6791461062f578063b88d4fde1461065f576101d8565b80638ad5de28116100d15780638ad5de28146105315780638d859f3e1461055c5780638da5cb5b1461058757806391b7f5ed146105b2576101d8565b806370a08231146104c6578063715018a614610503578063853828b61461051a576101d8565b806326a49e371161016f5780634f6ccce71161013e5780634f6ccce7146103f65780635c975abb146104335780636352211e1461045e5780636c0360eb1461049b576101d8565b806326a49e37146103285780632f745c59146103655780633502a716146103a257806342842e0e146103cd576101d8565b8063081812fc116101ab578063081812fc1461026e578063095ea7b3146102ab57806318160ddd146102d457806323b872dd146102ff576101d8565b806301ffc9a7146101dd57806302329a291461021a57806306fdde0314610243576101d8565b366101d857005b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190613144565b610768565b6040516102119190613d10565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c919061311b565b6107cf565b005b34801561024f57600080fd5b50610258610871565b6040516102659190613d2b565b60405180910390f35b34801561027a57600080fd5b5061029560048036038101906102909190613196565b610913565b6040516102a29190613c8e565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd9190613073565b610998565b005b3480156102e057600080fd5b506102e9610ab0565b6040516102f691906140ad565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190612f6d565b610ac1565b005b34801561033457600080fd5b5061034f600480360381019061034a9190613196565b610b21565b60405161035c91906140ad565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190613073565b610b3f565b60405161039991906140ad565b60405180910390f35b3480156103ae57600080fd5b506103b7610b9a565b6040516103c491906140ad565b60405180910390f35b3480156103d957600080fd5b506103f460048036038101906103ef9190612f6d565b610ba0565b005b34801561040257600080fd5b5061041d60048036038101906104189190613196565b610bc0565b60405161042a91906140ad565b60405180910390f35b34801561043f57600080fd5b50610448610be3565b6040516104559190613d10565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190613196565b610bfa565b6040516104929190613c8e565b60405180910390f35b3480156104a757600080fd5b506104b0610c31565b6040516104bd9190613d2b565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e89190612f08565b610cd3565b6040516104fa91906140ad565b60405180910390f35b34801561050f57600080fd5b50610518610d92565b005b34801561052657600080fd5b5061052f610ecf565b005b34801561053d57600080fd5b50610546610f71565b60405161055391906140ad565b60405180910390f35b34801561056857600080fd5b50610571610f76565b60405161057e91906140ad565b60405180910390f35b34801561059357600080fd5b5061059c610f7c565b6040516105a99190613c8e565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d49190613196565b610fa6565b005b3480156105e757600080fd5b506105f061102c565b6040516105fd9190613d2b565b60405180910390f35b34801561061257600080fd5b5061062d60048036038101906106289190613037565b6110ce565b005b610649600480360381019061064491906130af565b61124f565b60405161065691906140ad565b60405180910390f35b34801561066b57600080fd5b5061068660048036038101906106819190612fbc565b6114c5565b005b34801561069457600080fd5b506106af60048036038101906106aa9190613196565b611527565b6040516106bc9190613d2b565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e79190613196565b6116aa565b6040516106f99190613d10565b60405180910390f35b34801561070e57600080fd5b5061072960048036038101906107249190612f31565b6116ca565b6040516107369190613d10565b60405180910390f35b34801561074b57600080fd5b5061076660048036038101906107619190612f08565b61175e565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6107d761190a565b73ffffffffffffffffffffffffffffffffffffffff166107f5610f7c565b73ffffffffffffffffffffffffffffffffffffffff161461084b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084290613fcd565b60405180910390fd5b60011515811515141561086557610860611912565b61086e565b61086d6119b5565b5b50565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109095780601f106108de57610100808354040283529160200191610909565b820191906000526020600020905b8154815290600101906020018083116108ec57829003601f168201915b5050505050905090565b600061091e82611a57565b61095d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095490613f8d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a382610bfa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0b9061402d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a3361190a565b73ffffffffffffffffffffffffffffffffffffffff161480610a625750610a6181610a5c61190a565b6116ca565b5b610aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9890613eed565b60405180910390fd5b610aab8383611a74565b505050565b6000610abc6002611b2d565b905090565b610ad2610acc61190a565b82611b42565b610b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b089061406d565b60405180910390fd5b610b1c838383611c20565b505050565b6000610b3882600c54611e3790919063ffffffff16565b9050919050565b6000610b9282600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611ea790919063ffffffff16565b905092915050565b61271081565b610bbb838383604051806020016040528060008152506114c5565b505050565b600080610bd7836002611ec190919063ffffffff16565b50905080915050919050565b6000600a60149054906101000a900460ff16905090565b6000610c2a82604051806060016040528060298152602001614389602991396002611eed9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610cc95780601f10610c9e57610100808354040283529160200191610cc9565b820191906000526020600020905b815481529060010190602001808311610cac57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b90613f0d565b60405180910390fd5b610d8b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611f0c565b9050919050565b610d9a61190a565b73ffffffffffffffffffffffffffffffffffffffff16610db8610f7c565b73ffffffffffffffffffffffffffffffffffffffff1614610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0590613fcd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610ed761190a565b73ffffffffffffffffffffffffffffffffffffffff16610ef5610f7c565b73ffffffffffffffffffffffffffffffffffffffff1614610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290613fcd565b60405180910390fd5b600047905060008111610f5d57600080fd5b610f6e610f68610f7c565b82611f21565b50565b600581565b600c5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fae61190a565b73ffffffffffffffffffffffffffffffffffffffff16610fcc610f7c565b73ffffffffffffffffffffffffffffffffffffffff1614611022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101990613fcd565b60405180910390fd5b80600c8190555050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110c45780601f10611099576101008083540402835291602001916110c4565b820191906000526020600020905b8154815290600101906020018083116110a757829003601f168201915b5050505050905090565b6110d661190a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b90613e6d565b60405180910390fd5b806005600061115161190a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111fe61190a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112439190613d10565b60405180910390a35050565b600061271061125c610ab0565b111561129d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129490613f4d565b60405180910390fd5b6112a5610f7c565b73ffffffffffffffffffffffffffffffffffffffff166112c361190a565b73ffffffffffffffffffffffffffffffffffffffff1614611327576112e6610be3565b15611326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131d90613ecd565b60405180910390fd5b5b60058251111561136c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136390613dcd565b60405180910390fd5b6005825161137933610cd3565b0111156113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b290613dcd565b60405180910390fd5b60005b825181101561148757600d60008483815181106113d757fe5b6020026020010151815260200190815260200160002060009054906101000a900460ff161561143b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143290613d4d565b60405180910390fd5b6001600d600085848151811061144d57fe5b6020026020010151815260200190815260200160002060006101000a81548160ff02191690831515021790555080806001019150506113be565b5060005b83518110156114be576114b1338583815181106114a457fe5b6020026020010151611fd2565b808060010191505061148b565b5092915050565b6114d66114d061190a565b83611b42565b611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c9061406d565b60405180910390fd5b61152184848484612047565b50505050565b606061153282611a57565b611571576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115689061400d565b60405180910390fd5b6060600860008481526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561161a5780601f106115ef5761010080835404028352916020019161161a565b820191906000526020600020905b8154815290600101906020018083116115fd57829003601f168201915b50505050509050606061162b610c31565b90506000815114156116415781925050506116a5565b60008251111561167657808260405160200161165e929190613c55565b604051602081830303815290604052925050506116a5565b80611680856120a3565b604051602001611691929190613c55565b604051602081830303815290604052925050505b919050565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61176661190a565b73ffffffffffffffffffffffffffffffffffffffff16611784610f7c565b73ffffffffffffffffffffffffffffffffffffffff16146117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d190613fcd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561184a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184190613e0d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b61191a610be3565b1561195a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195190613ecd565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861199e61190a565b6040516119ab9190613ca9565b60405180910390a1565b6119bd610be3565b6119fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f390613dad565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611a4061190a565b604051611a4d9190613ca9565b60405180910390a1565b6000611a6d8260026121ea90919063ffffffff16565b9050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ae783610bfa565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b3b82600001612204565b9050919050565b6000611b4d82611a57565b611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8390613ead565b60405180910390fd5b6000611b9783610bfa565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c0657508373ffffffffffffffffffffffffffffffffffffffff16611bee84610913565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c175750611c1681856116ca565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c4082610bfa565b73ffffffffffffffffffffffffffffffffffffffff1614611c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8d90613fed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfd90613e4d565b60405180910390fd5b611d11838383612215565b611d1c600082611a74565b611d6d81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206122af90919063ffffffff16565b50611dbf81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206122c990919063ffffffff16565b50611dd6818360026122e39092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600080831415611e4a5760009050611ea1565b6000828402905082848281611e5b57fe5b0414611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9390613f6d565b60405180910390fd5b809150505b92915050565b6000611eb68360000183612318565b60001c905092915050565b600080600080611ed48660000186612385565b915091508160001c8160001c9350935050509250929050565b6000611f00846000018460001b84612408565b60001c90509392505050565b6000611f1a82600001612499565b9050919050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611f4790613c79565b60006040518083038185875af1925050503d8060008114611f84576040519150601f19603f3d011682016040523d82523d6000602084013e611f89565b606091505b5050905080611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc49061404d565b60405180910390fd5b505050565b611fdc600b6124aa565b6000611fe8600b6124c0565b9050611ff483826124ce565b611ffe81836124ec565b803373ffffffffffffffffffffffffffffffffffffffff167f774a0b0f514220c25bb32ea2b4557581b30c98b92304f315b967376e33d1777460405160405180910390a3505050565b612052848484611c20565b61205e84848484612560565b61209d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209490613ded565b60405180910390fd5b50505050565b606060008214156120eb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121e5565b600082905060005b60008214612115578080600101915050600a828161210d57fe5b0491506120f3565b60608167ffffffffffffffff8111801561212e57600080fd5b506040519080825280601f01601f1916602001820160405280156121615781602001600182028036833780820191505090505b50905060006001830390508593505b600084146121dd57600a848161218257fe5b0660300160f81b8282806001900393508151811061219c57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84816121d557fe5b049350612170565b819450505050505b919050565b60006121fc836000018360001b6126c4565b905092915050565b600081600001805490509050919050565b6122208383836126e7565b612228610f7c565b73ffffffffffffffffffffffffffffffffffffffff1661224661190a565b73ffffffffffffffffffffffffffffffffffffffff16146122aa57612269610be3565b156122a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a090613d8d565b60405180910390fd5b5b505050565b60006122c1836000018360001b6126ec565b905092915050565b60006122db836000018360001b6127d4565b905092915050565b600061230f846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612844565b90509392505050565b600081836000018054905011612363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235a90613d6d565b60405180910390fd5b82600001828154811061237257fe5b9060005260206000200154905092915050565b600080828460000180549050116123d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c890613f2d565b60405180910390fd5b60008460000184815481106123e257fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000808460010160008581526020019081526020016000205490506000811415839061246a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124619190613d2b565b60405180910390fd5b5084600001600182038154811061247d57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6124e8828260405180602001604052806000815250612920565b5050565b6124f582611a57565b612534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252b90613fad565b60405180910390fd5b8060086000848152602001908152602001600020908051906020019061255b929190612c63565b505050565b60006125818473ffffffffffffffffffffffffffffffffffffffff1661297b565b61258e57600190506126bc565b606061265563150b7a0260e01b6125a361190a565b8887876040516024016125b99493929190613cc4565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614357603291398773ffffffffffffffffffffffffffffffffffffffff1661298e9092919063ffffffff16565b905060008180602001905181019061266d919061316d565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b505050565b600080836001016000848152602001908152602001600020549050600081146127c8576000600182039050600060018660000180549050039050600086600001828154811061273757fe5b906000526020600020015490508087600001848154811061275457fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061278c57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506127ce565b60009150505b92915050565b60006127e083836129a6565b61283957826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061283e565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156128eb57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612919565b828560000160018303815481106128fe57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b61292a83836129c9565b6129376000848484612560565b612976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296d90613ded565b60405180910390fd5b505050565b600080823b905060008111915050919050565b606061299d8484600085612ae7565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6129d281611a57565b15612a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0990613e2d565b60405180910390fd5b612a1e60008383612215565b612a6f81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206122c990919063ffffffff16565b50612a86818360026122e39092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b606082471015612b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2390613e8d565b60405180910390fd5b612b358561297b565b612b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6b9061408d565b60405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff168587604051612b9e9190613c3e565b60006040518083038185875af1925050503d8060008114612bdb576040519150601f19603f3d011682016040523d82523d6000602084013e612be0565b606091505b5091509150612bf0828286612bfc565b92505050949350505050565b60608315612c0c57829050612c5c565b600083511115612c1f5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c539190613d2b565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612ca457805160ff1916838001178555612cd2565b82800160010185558215612cd2579182015b82811115612cd1578251825591602001919060010190612cb6565b5b509050612cdf9190612ce3565b5090565b5b80821115612cfc576000816000905550600101612ce4565b5090565b600081359050612d0f816142fa565b92915050565b600082601f830112612d2657600080fd5b8135612d39612d34826140f5565b6140c8565b9150818183526020840193506020810190508360005b83811015612d7f5781358601612d658882612e9f565b845260208401935060208301925050600181019050612d4f565b5050505092915050565b600082601f830112612d9a57600080fd5b8135612dad612da88261411d565b6140c8565b91508181835260208401935060208101905083856020840282011115612dd257600080fd5b60005b83811015612e025781612de88882612ef3565b845260208401935060208301925050600181019050612dd5565b5050505092915050565b600081359050612e1b81614311565b92915050565b600081359050612e3081614328565b92915050565b600081519050612e4581614328565b92915050565b600082601f830112612e5c57600080fd5b8135612e6f612e6a82614145565b6140c8565b91508082526020830160208301858383011115612e8b57600080fd5b612e968382846142a7565b50505092915050565b600082601f830112612eb057600080fd5b8135612ec3612ebe82614171565b6140c8565b91508082526020830160208301858383011115612edf57600080fd5b612eea8382846142a7565b50505092915050565b600081359050612f028161433f565b92915050565b600060208284031215612f1a57600080fd5b6000612f2884828501612d00565b91505092915050565b60008060408385031215612f4457600080fd5b6000612f5285828601612d00565b9250506020612f6385828601612d00565b9150509250929050565b600080600060608486031215612f8257600080fd5b6000612f9086828701612d00565b9350506020612fa186828701612d00565b9250506040612fb286828701612ef3565b9150509250925092565b60008060008060808587031215612fd257600080fd5b6000612fe087828801612d00565b9450506020612ff187828801612d00565b935050604061300287828801612ef3565b925050606085013567ffffffffffffffff81111561301f57600080fd5b61302b87828801612e4b565b91505092959194509250565b6000806040838503121561304a57600080fd5b600061305885828601612d00565b925050602061306985828601612e0c565b9150509250929050565b6000806040838503121561308657600080fd5b600061309485828601612d00565b92505060206130a585828601612ef3565b9150509250929050565b600080604083850312156130c257600080fd5b600083013567ffffffffffffffff8111156130dc57600080fd5b6130e885828601612d15565b925050602083013567ffffffffffffffff81111561310557600080fd5b61311185828601612d89565b9150509250929050565b60006020828403121561312d57600080fd5b600061313b84828501612e0c565b91505092915050565b60006020828403121561315657600080fd5b600061316484828501612e21565b91505092915050565b60006020828403121561317f57600080fd5b600061318d84828501612e36565b91505092915050565b6000602082840312156131a857600080fd5b60006131b684828501612ef3565b91505092915050565b6131c881614271565b82525050565b6131d7816141fd565b82525050565b6131e6816141eb565b82525050565b6131f58161420f565b82525050565b60006132068261419d565b61321081856141b3565b93506132208185602086016142b6565b613229816142e9565b840191505092915050565b600061323f8261419d565b61324981856141c4565b93506132598185602086016142b6565b80840191505092915050565b6000613270826141a8565b61327a81856141cf565b935061328a8185602086016142b6565b613293816142e9565b840191505092915050565b60006132a9826141a8565b6132b381856141e0565b93506132c38185602086016142b6565b80840191505092915050565b60006132dc6016836141cf565b91507f54686973206e756d6265722069732065786973746564000000000000000000006000830152602082019050919050565b600061331c6022836141cf565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613382602b836141cf565b91507f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008301527f68696c65207061757365640000000000000000000000000000000000000000006020830152604082019050919050565b60006133e86014836141cf565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000613428600e836141cf565b91507f45786365656473206e756d6265720000000000000000000000000000000000006000830152602082019050919050565b60006134686032836141cf565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006134ce6026836141cf565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613534601c836141cf565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006135746024836141cf565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135da6019836141cf565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061361a6026836141cf565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613680602c836141cf565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006136e66010836141cf565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b60006137266038836141cf565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061378c602a836141cf565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006137f26022836141cf565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138586008836141cf565b91507f53616c6520656e640000000000000000000000000000000000000000000000006000830152602082019050919050565b60006138986021836141cf565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138fe602c836141cf565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613964602c836141cf565b91507f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006139ca6020836141cf565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613a0a6029836141cf565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a70602f836141cf565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613ad66021836141cf565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b3c6000836141c4565b9150600082019050919050565b6000613b566010836141cf565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b6000613b966031836141cf565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613bfc601d836141cf565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b613c3881614267565b82525050565b6000613c4a8284613234565b915081905092915050565b6000613c61828561329e565b9150613c6d828461329e565b91508190509392505050565b6000613c8482613b2f565b9150819050919050565b6000602082019050613ca360008301846131dd565b92915050565b6000602082019050613cbe60008301846131bf565b92915050565b6000608082019050613cd960008301876131ce565b613ce660208301866131dd565b613cf36040830185613c2f565b8181036060830152613d0581846131fb565b905095945050505050565b6000602082019050613d2560008301846131ec565b92915050565b60006020820190508181036000830152613d458184613265565b905092915050565b60006020820190508181036000830152613d66816132cf565b9050919050565b60006020820190508181036000830152613d868161330f565b9050919050565b60006020820190508181036000830152613da681613375565b9050919050565b60006020820190508181036000830152613dc6816133db565b9050919050565b60006020820190508181036000830152613de68161341b565b9050919050565b60006020820190508181036000830152613e068161345b565b9050919050565b60006020820190508181036000830152613e26816134c1565b9050919050565b60006020820190508181036000830152613e4681613527565b9050919050565b60006020820190508181036000830152613e6681613567565b9050919050565b60006020820190508181036000830152613e86816135cd565b9050919050565b60006020820190508181036000830152613ea68161360d565b9050919050565b60006020820190508181036000830152613ec681613673565b9050919050565b60006020820190508181036000830152613ee6816136d9565b9050919050565b60006020820190508181036000830152613f0681613719565b9050919050565b60006020820190508181036000830152613f268161377f565b9050919050565b60006020820190508181036000830152613f46816137e5565b9050919050565b60006020820190508181036000830152613f668161384b565b9050919050565b60006020820190508181036000830152613f868161388b565b9050919050565b60006020820190508181036000830152613fa6816138f1565b9050919050565b60006020820190508181036000830152613fc681613957565b9050919050565b60006020820190508181036000830152613fe6816139bd565b9050919050565b60006020820190508181036000830152614006816139fd565b9050919050565b6000602082019050818103600083015261402681613a63565b9050919050565b6000602082019050818103600083015261404681613ac9565b9050919050565b6000602082019050818103600083015261406681613b49565b9050919050565b6000602082019050818103600083015261408681613b89565b9050919050565b600060208201905081810360008301526140a681613bef565b9050919050565b60006020820190506140c26000830184613c2f565b92915050565b6000604051905081810181811067ffffffffffffffff821117156140eb57600080fd5b8060405250919050565b600067ffffffffffffffff82111561410c57600080fd5b602082029050602081019050919050565b600067ffffffffffffffff82111561413457600080fd5b602082029050602081019050919050565b600067ffffffffffffffff82111561415c57600080fd5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561418857600080fd5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006141f682614247565b9050919050565b600061420882614247565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061427c82614283565b9050919050565b600061428e82614295565b9050919050565b60006142a082614247565b9050919050565b82818337600083830152505050565b60005b838110156142d45780820151818401526020810190506142b9565b838111156142e3576000848401525b50505050565b6000601f19601f8301169050919050565b614303816141eb565b811461430e57600080fd5b50565b61431a8161420f565b811461432557600080fd5b50565b6143318161421b565b811461433c57600080fd5b50565b61434881614267565b811461435357600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220b067d8c6ad2b8b7ac4718e0bbc8b97990a00bde9a940ad7d9eeb2e007649410864736f6c63430007010033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d624c4143505163744437385a5a6e415245793959666a7958427148316856337a76736a3748586767667150592f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://gateway.pinata.cloud/ipfs/QmbLACPQctD78ZZnAREy9YfjyXBqH1hV3zvsj7HXggfqPY/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d624c4143505163744437385a5a6e415245793959666a795842714831
Arg [4] : 6856337a76736a3748586767667150592f000000000000000000000000000000


Deployed Bytecode Sourcemap

65732:2669:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8614:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67828:154;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48067:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50831:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50361:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49839:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51721:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67620:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49601:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65996:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52097:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50127:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63844:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47823:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49420:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47540:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62719:148;;;;;;;;;;;;;:::i;:::-;;67994:168;;;;;;;;;;;;;:::i;:::-;;66087:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66047:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62068:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67732:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48236:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51124:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66658:646;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52319:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48411:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66139:38;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51490:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63022:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8614:150;8699:4;8723:20;:33;8744:11;8723:33;;;;;;;;;;;;;;;;;;;;;;;;;;;8716:40;;8614:150;;;:::o;67828:154::-;62299:12;:10;:12::i;:::-;62288:23;;:7;:5;:7::i;:::-;:23;;;62280:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67892:4:::1;67885:11;;:3;:11;;;67881:73;;;67913:8;:6;:8::i;:::-;67936:7;;67881:73;67964:10;:8;:10::i;:::-;62359:1;67828:154:::0;:::o;48067:100::-;48121:13;48154:5;48147:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48067:100;:::o;50831:221::-;50907:7;50935:16;50943:7;50935;:16::i;:::-;50927:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;51020:15;:24;51036:7;51020:24;;;;;;;;;;;;;;;;;;;;;51013:31;;50831:221;;;:::o;50361:404::-;50442:13;50458:23;50473:7;50458:14;:23::i;:::-;50442:39;;50506:5;50500:11;;:2;:11;;;;50492:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;50586:5;50570:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;50595:44;50619:5;50626:12;:10;:12::i;:::-;50595:23;:44::i;:::-;50570:69;50562:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;50736:21;50745:2;50749:7;50736:8;:21::i;:::-;50361:404;;;:::o;49839:211::-;49900:7;50021:21;:12;:19;:21::i;:::-;50014:28;;49839:211;:::o;51721:305::-;51882:41;51901:12;:10;:12::i;:::-;51915:7;51882:18;:41::i;:::-;51874:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;51990:28;52000:4;52006:2;52010:7;51990:9;:28::i;:::-;51721:305;;;:::o;67620:104::-;67672:7;67699:17;67709:6;67699:5;;:9;;:17;;;;:::i;:::-;67692:24;;67620:104;;;:::o;49601:162::-;49698:7;49725:30;49749:5;49725:13;:20;49739:5;49725:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;49718:37;;49601:162;;;;:::o;65996:44::-;66035:5;65996:44;:::o;52097:151::-;52201:39;52218:4;52224:2;52228:7;52201:39;;;;;;;;;;;;:16;:39::i;:::-;52097:151;;;:::o;50127:172::-;50202:7;50223:15;50244:22;50260:5;50244:12;:15;;:22;;;;:::i;:::-;50222:44;;;50284:7;50277:14;;;50127:172;;;:::o;63844:86::-;63891:4;63915:7;;;;;;;;;;;63908:14;;63844:86;:::o;47823:177::-;47895:7;47922:70;47939:7;47922:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;47915:77;;47823:177;;;:::o;49420:97::-;49468:13;49501:8;49494:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49420:97;:::o;47540:221::-;47612:7;47657:1;47640:19;;:5;:19;;;;47632:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;47724:29;:13;:20;47738:5;47724:20;;;;;;;;;;;;;;;:27;:29::i;:::-;47717:36;;47540:221;;;:::o;62719:148::-;62299:12;:10;:12::i;:::-;62288:23;;:7;:5;:7::i;:::-;:23;;;62280:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62826:1:::1;62789:40;;62810:6;;;;;;;;;;;62789:40;;;;;;;;;;;;62857:1;62840:6;;:19;;;;;;;;;;;;;;;;;;62719:148::o:0;67994:168::-;62299:12;:10;:12::i;:::-;62288:23;;:7;:5;:7::i;:::-;:23;;;62280:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68045:15:::1;68063:21;68045:39;;68113:1;68103:7;:11;68095:20;;;::::0;::::1;;68126:28;68137:7;:5;:7::i;:::-;68146;68126:10;:28::i;:::-;62359:1;67994:168::o:0;66087:39::-;66125:1;66087:39;:::o;66047:33::-;;;;:::o;62068:87::-;62114:7;62141:6;;;;;;;;;;;62134:13;;62068:87;:::o;67732:84::-;62299:12;:10;:12::i;:::-;62288:23;;:7;:5;:7::i;:::-;:23;;;62280:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67802:6:::1;67794:5;:14;;;;67732:84:::0;:::o;48236:104::-;48292:13;48325:7;48318:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48236:104;:::o;51124:295::-;51239:12;:10;:12::i;:::-;51227:24;;:8;:24;;;;51219:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;51339:8;51294:18;:32;51313:12;:10;:12::i;:::-;51294:32;;;;;;;;;;;;;;;:42;51327:8;51294:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;51392:8;51363:48;;51378:12;:10;:12::i;:::-;51363:48;;;51402:8;51363:48;;;;;;:::i;:::-;;;;;;;;51124:295;;:::o;66658:646::-;66765:7;66035:5;66447:13;:11;:13::i;:::-;:29;;66439:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;66520:7;:5;:7::i;:::-;66504:23;;:12;:10;:12::i;:::-;:23;;;66500:94;;66553:8;:6;:8::i;:::-;66552:9;66544:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;66500:94;66125:1:::1;66793:9;:16;:31;;66785:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;66125:1;66886:9;:16;66862:21;66872:10;66862:9;:21::i;:::-;:40;:55;;66854:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;66992:9;66988:177;67011:9;:16;67007:1;:20;66988:177;;;67058:9;:23;67068:9;67078:1;67068:12;;;;;;;;;;;;;;67058:23;;;;;;;;;;;;;;;;;;;;;67057:24;67049:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;67149:4;67123:9;:23;67133:9;67143:1;67133:12;;;;;;;;;;;;;;67123:23;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;67029:3;;;;;;;66988:177;;;;67190:9;67185:112;67209:8;:15;67205:1;:19;67185:112;;;67246:39;67261:10;67273:8;67282:1;67273:11;;;;;;;;;;;;;;67246:14;:39::i;:::-;67226:3;;;;;;;67185:112;;;;66658:646:::0;;;;:::o;52319:285::-;52451:41;52470:12;:10;:12::i;:::-;52484:7;52451:18;:41::i;:::-;52443:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;52557:39;52571:4;52577:2;52581:7;52590:5;52557:13;:39::i;:::-;52319:285;;;;:::o;48411:792::-;48484:13;48518:16;48526:7;48518;:16::i;:::-;48510:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;48599:23;48625:10;:19;48636:7;48625:19;;;;;;;;;;;48599:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48655:18;48676:9;:7;:9::i;:::-;48655:30;;48783:1;48767:4;48761:18;:23;48757:72;;;48808:9;48801:16;;;;;;48757:72;48959:1;48939:9;48933:23;:27;48929:108;;;49008:4;49014:9;48991:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48977:48;;;;;;48929:108;49169:4;49175:18;:7;:16;:18::i;:::-;49152:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49138:57;;;;48411:792;;;;:::o;66139:38::-;;;;;;;;;;;;;;;;;;;;;;:::o;51490:164::-;51587:4;51611:18;:25;51630:5;51611:25;;;;;;;;;;;;;;;:35;51637:8;51611:35;;;;;;;;;;;;;;;;;;;;;;;;;51604:42;;51490:164;;;;:::o;63022:244::-;62299:12;:10;:12::i;:::-;62288:23;;:7;:5;:7::i;:::-;:23;;;62280:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63131:1:::1;63111:22;;:8;:22;;;;63103:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;63221:8;63192:38;;63213:6;;;;;;;;;;;63192:38;;;;;;;;;;;;63250:8;63241:6;;:17;;;;;;;;;;;;;;;;;;63022:244:::0;:::o;665:106::-;718:15;753:10;746:17;;665:106;:::o;64644:118::-;64170:8;:6;:8::i;:::-;64169:9;64161:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;64714:4:::1;64704:7;;:14;;;;;;;;;;;;;;;;;;64734:20;64741:12;:10;:12::i;:::-;64734:20;;;;;;:::i;:::-;;;;;;;;64644:118::o:0;64903:120::-;64447:8;:6;:8::i;:::-;64439:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;64972:5:::1;64962:7;;:15;;;;;;;;;;;;;;;;;;64993:22;65002:12;:10;:12::i;:::-;64993:22;;;;;;:::i;:::-;;;;;;;;64903:120::o:0;54071:127::-;54136:4;54160:30;54182:7;54160:12;:21;;:30;;;;:::i;:::-;54153:37;;54071:127;;;:::o;60098:192::-;60200:2;60173:15;:24;60189:7;60173:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;60256:7;60252:2;60218:46;;60227:23;60242:7;60227:14;:23::i;:::-;60218:46;;;;;;;;;;;;60098:192;;:::o;40184:123::-;40253:7;40280:19;40288:3;:10;;40280:7;:19::i;:::-;40273:26;;40184:123;;;:::o;54365:355::-;54458:4;54483:16;54491:7;54483;:16::i;:::-;54475:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54559:13;54575:23;54590:7;54575:14;:23::i;:::-;54559:39;;54628:5;54617:16;;:7;:16;;;:51;;;;54661:7;54637:31;;:20;54649:7;54637:11;:20::i;:::-;:31;;;54617:51;:94;;;;54672:39;54696:5;54703:7;54672:23;:39::i;:::-;54617:94;54609:103;;;54365:355;;;;:::o;57506:599::-;57631:4;57604:31;;:23;57619:7;57604:14;:23::i;:::-;:31;;;57596:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;57732:1;57718:16;;:2;:16;;;;57710:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;57788:39;57809:4;57815:2;57819:7;57788:20;:39::i;:::-;57892:29;57909:1;57913:7;57892:8;:29::i;:::-;57934:35;57961:7;57934:13;:19;57948:4;57934:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;57980:30;58002:7;57980:13;:17;57994:2;57980:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;58023:29;58040:7;58049:2;58023:12;:16;;:29;;;;;:::i;:::-;;58089:7;58085:2;58070:27;;58079:4;58070:27;;;;;;;;;;;;57506:599;;;:::o;12385:220::-;12443:7;12472:1;12467;:6;12463:20;;;12482:1;12475:8;;;;12463:20;12494:9;12510:1;12506;:5;12494:17;;12539:1;12534;12530;:5;;;;;;:10;12522:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;12596:1;12589:8;;;12385:220;;;;;:::o;32804:137::-;32875:7;32910:22;32914:3;:10;;32926:5;32910:3;:22::i;:::-;32902:31;;32895:38;;32804:137;;;;:::o;40646:236::-;40726:7;40735;40756:11;40769:13;40786:22;40790:3;:10;;40802:5;40786:3;:22::i;:::-;40755:53;;;;40835:3;40827:12;;40865:5;40857:14;;40819:55;;;;;;40646:236;;;;;:::o;41932:213::-;42039:7;42090:44;42095:3;:10;;42115:3;42107:12;;42121;42090:4;:44::i;:::-;42082:53;;42059:78;;41932:213;;;;;:::o;32346:114::-;32406:7;32433:19;32441:3;:10;;32433:7;:19::i;:::-;32426:26;;32346:114;;;:::o;68170:181::-;68245:12;68263:8;:13;;68284:7;68263:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68244:52;;;68315:7;68307:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;68170:181;;;:::o;67316:296::-;67396:21;:9;:19;:21::i;:::-;67428:17;67448:19;:9;:17;:19::i;:::-;67428:39;;67488:25;67498:3;67503:9;67488;:25::i;:::-;67524:33;67537:9;67548:8;67524:12;:33::i;:::-;67594:9;67582:10;67573:31;;;;;;;;;;;;67316:296;;;:::o;53486:272::-;53600:28;53610:4;53616:2;53620:7;53600:9;:28::i;:::-;53647:48;53670:4;53676:2;53680:7;53689:5;53647:22;:48::i;:::-;53639:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;53486:272;;;;:::o;42265:746::-;42321:13;42551:1;42542:5;:10;42538:53;;;42569:10;;;;;;;;;;;;;;;;;;;;;42538:53;42601:12;42616:5;42601:20;;42632:14;42657:78;42672:1;42664:4;:9;42657:78;;42690:8;;;;;;;42721:2;42713:10;;;;;;;;;42657:78;;;42745:19;42777:6;42767:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42745:39;;42795:13;42820:1;42811:6;:10;42795:26;;42839:5;42832:12;;42855:117;42870:1;42862:4;:9;42855:117;;42931:2;42924:4;:9;;;;;;42919:2;:14;42906:29;;42888:6;42895:7;;;;;;;42888:15;;;;;;;;;;;:47;;;;;;;;;;;42958:2;42950:10;;;;;;;;;42855:117;;;42996:6;42982:21;;;;;;42265:746;;;;:::o;39945:151::-;40029:4;40053:35;40063:3;:10;;40083:3;40075:12;;40053:9;:35::i;:::-;40046:42;;39945:151;;;;:::o;36763:110::-;36819:7;36846:3;:12;;:19;;;;36839:26;;36763:110;;;:::o;65246:328::-;65390:45;65417:4;65423:2;65427:7;65390:26;:45::i;:::-;65466:7;:5;:7::i;:::-;65450:23;;:12;:10;:12::i;:::-;:23;;;65446:121;;65499:8;:6;:8::i;:::-;65498:9;65490:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;65446:121;65246:328;;;:::o;31891:137::-;31961:4;31985:35;31993:3;:10;;32013:5;32005:14;;31985:7;:35::i;:::-;31978:42;;31891:137;;;;:::o;31584:131::-;31651:4;31675:32;31680:3;:10;;31700:5;31692:14;;31675:4;:32::i;:::-;31668:39;;31584:131;;;;:::o;39368:185::-;39457:4;39481:64;39486:3;:10;;39506:3;39498:12;;39536:5;39520:23;;39512:32;;39481:4;:64::i;:::-;39474:71;;39368:185;;;;;:::o;27842:204::-;27909:7;27958:5;27937:3;:11;;:18;;;;:26;27929:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28020:3;:11;;28032:5;28020:18;;;;;;;;;;;;;;;;28013:25;;27842:204;;;;:::o;37228:279::-;37295:7;37304;37354:5;37332:3;:12;;:19;;;;:27;37324:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;37411:22;37436:3;:12;;37449:5;37436:19;;;;;;;;;;;;;;;;;;37411:44;;37474:5;:10;;;37486:5;:12;;;37466:33;;;;;37228:279;;;;;:::o;38725:319::-;38819:7;38839:16;38858:3;:12;;:17;38871:3;38858:17;;;;;;;;;;;;38839:36;;38906:1;38894:8;:13;;38909:12;38886:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;38976:3;:12;;39000:1;38989:8;:12;38976:26;;;;;;;;;;;;;;;;;;:33;;;38969:40;;;38725:319;;;;;:::o;27389:109::-;27445:7;27472:3;:11;;:18;;;;27465:25;;27389:109;;;:::o;43588:181::-;43760:1;43742:7;:14;;;:19;;;;;;;;;;;43588:181;:::o;43466:114::-;43531:7;43558;:14;;;43551:21;;43466:114;;;:::o;55063:110::-;55139:26;55149:2;55153:7;55139:26;;;;;;;;;;;;:9;:26::i;:::-;55063:110;;:::o;58261:215::-;58361:16;58369:7;58361;:16::i;:::-;58353:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58459:9;58437:10;:19;58448:7;58437:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;58261:215;;:::o;59375:604::-;59496:4;59523:15;:2;:13;;;:15::i;:::-;59518:60;;59562:4;59555:11;;;;59518:60;59588:23;59614:252;59667:45;;;59727:12;:10;:12::i;:::-;59754:4;59773:7;59795:5;59630:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59614:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;59588:278;;59877:13;59904:10;59893:32;;;;;;;;;;;;:::i;:::-;59877:48;;44539:10;59954:16;;59944:26;;;:6;:26;;;;59936:35;;;;59375:604;;;;;;;:::o;36543:125::-;36614:4;36659:1;36638:3;:12;;:17;36651:3;36638:17;;;;;;;;;;;;:22;;36631:29;;36543:125;;;;:::o;60903:93::-;;;;:::o;25544:1544::-;25610:4;25728:18;25749:3;:12;;:19;25762:5;25749:19;;;;;;;;;;;;25728:40;;25799:1;25785:10;:15;25781:1300;;26147:21;26184:1;26171:10;:14;26147:38;;26200:17;26241:1;26220:3;:11;;:18;;;;:22;26200:42;;26487:17;26507:3;:11;;26519:9;26507:22;;;;;;;;;;;;;;;;26487:42;;26653:9;26624:3;:11;;26636:13;26624:26;;;;;;;;;;;;;;;:38;;;;26772:1;26756:13;:17;26730:3;:12;;:23;26743:9;26730:23;;;;;;;;;;;:43;;;;26882:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;26977:3;:12;;:19;26990:5;26977:19;;;;;;;;;;;26970:26;;;27020:4;27013:11;;;;;;;;25781:1300;27064:5;27057:12;;;25544:1544;;;;;:::o;24954:414::-;25017:4;25039:21;25049:3;25054:5;25039:9;:21::i;:::-;25034:327;;25077:3;:11;;25094:5;25077:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25260:3;:11;;:18;;;;25238:3;:12;;:19;25251:5;25238:19;;;;;;;;;;;:40;;;;25300:4;25293:11;;;;25034:327;25344:5;25337:12;;24954:414;;;;;:::o;34043:692::-;34119:4;34235:16;34254:3;:12;;:17;34267:3;34254:17;;;;;;;;;;;;34235:36;;34300:1;34288:8;:13;34284:444;;;34355:3;:12;;34373:38;;;;;;;;34390:3;34373:38;;;;34403:5;34373:38;;;34355:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34570:3;:12;;:19;;;;34550:3;:12;;:17;34563:3;34550:17;;;;;;;;;;;:39;;;;34611:4;34604:11;;;;;34284:444;34684:5;34648:3;:12;;34672:1;34661:8;:12;34648:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;34711:5;34704:12;;;34043:692;;;;;;:::o;55400:250::-;55496:18;55502:2;55506:7;55496:5;:18::i;:::-;55533:54;55564:1;55568:2;55572:7;55581:5;55533:22;:54::i;:::-;55525:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;55400:250;;;:::o;16783:422::-;16843:4;17051:12;17162:7;17150:20;17142:28;;17196:1;17189:4;:8;17182:15;;;16783:422;;;:::o;19701:195::-;19804:12;19836:52;19858:6;19866:4;19872:1;19875:12;19836:21;:52::i;:::-;19829:59;;19701:195;;;;;:::o;27174:129::-;27247:4;27294:1;27271:3;:12;;:19;27284:5;27271:19;;;;;;;;;;;;:24;;27264:31;;27174:129;;;;:::o;55986:407::-;56142:16;56150:7;56142;:16::i;:::-;56141:17;56133:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;56204:45;56233:1;56237:2;56241:7;56204:20;:45::i;:::-;56262:30;56284:7;56262:13;:17;56276:2;56262:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;56305:29;56322:7;56331:2;56305:12;:16;;:29;;;;;:::i;:::-;;56377:7;56373:2;56352:33;;56369:1;56352:33;;;;;;;;;;;;55986:407;;:::o;20753:530::-;20880:12;20938:5;20913:21;:30;;20905:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;21005:18;21016:6;21005:10;:18::i;:::-;20997:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;21131:12;21145:23;21172:6;:11;;21192:5;21200:4;21172:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21130:75;;;;21223:52;21241:7;21250:10;21262:12;21223:17;:52::i;:::-;21216:59;;;;20753:530;;;;;;:::o;23293:742::-;23408:12;23437:7;23433:595;;;23468:10;23461:17;;;;23433:595;23602:1;23582:10;:17;:21;23578:439;;;23845:10;23839:17;23906:15;23893:10;23889:2;23885:19;23878:44;23793:148;23988:12;23981:20;;;;;;;;;;;:::i;:::-;;;;;;;;23293:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;5:130::-;;85:6;72:20;63:29;;97:33;124:5;97:33;:::i;:::-;57:78;;;;:::o;159:708::-;;286:3;279:4;271:6;267:17;263:27;253:2;;304:1;301;294:12;253:2;341:6;328:20;363:90;378:74;445:6;378:74;:::i;:::-;363:90;:::i;:::-;354:99;;470:5;495:6;488:5;481:21;525:4;517:6;513:17;503:27;;547:4;542:3;538:14;531:21;;600:6;633:1;618:243;643:6;640:1;637:13;618:243;;;726:3;713:17;705:6;701:30;750:47;793:3;781:10;750:47;:::i;:::-;745:3;738:60;821:4;816:3;812:14;805:21;;849:4;844:3;840:14;833:21;;675:186;665:1;662;658:9;653:14;;618:243;;;622:14;246:621;;;;;;;:::o;893:707::-;;1010:3;1003:4;995:6;991:17;987:27;977:2;;1028:1;1025;1018:12;977:2;1065:6;1052:20;1087:80;1102:64;1159:6;1102:64;:::i;:::-;1087:80;:::i;:::-;1078:89;;1184:5;1209:6;1202:5;1195:21;1239:4;1231:6;1227:17;1217:27;;1261:4;1256:3;1252:14;1245:21;;1314:6;1361:3;1353:4;1345:6;1341:17;1336:3;1332:27;1329:36;1326:2;;;1378:1;1375;1368:12;1326:2;1403:1;1388:206;1413:6;1410:1;1407:13;1388:206;;;1471:3;1493:37;1526:3;1514:10;1493:37;:::i;:::-;1488:3;1481:50;1554:4;1549:3;1545:14;1538:21;;1582:4;1577:3;1573:14;1566:21;;1445:149;1435:1;1432;1428:9;1423:14;;1388:206;;;1392:14;970:630;;;;;;;:::o;1608:124::-;;1685:6;1672:20;1663:29;;1697:30;1721:5;1697:30;:::i;:::-;1657:75;;;;:::o;1739:128::-;;1818:6;1805:20;1796:29;;1830:32;1856:5;1830:32;:::i;:::-;1790:77;;;;:::o;1874:132::-;;1957:6;1951:13;1942:22;;1969:32;1995:5;1969:32;:::i;:::-;1936:70;;;;:::o;2014:440::-;;2115:3;2108:4;2100:6;2096:17;2092:27;2082:2;;2133:1;2130;2123:12;2082:2;2170:6;2157:20;2192:64;2207:48;2248:6;2207:48;:::i;:::-;2192:64;:::i;:::-;2183:73;;2276:6;2269:5;2262:21;2312:4;2304:6;2300:17;2345:4;2338:5;2334:16;2380:3;2371:6;2366:3;2362:16;2359:25;2356:2;;;2397:1;2394;2387:12;2356:2;2407:41;2441:6;2436:3;2431;2407:41;:::i;:::-;2075:379;;;;;;;:::o;2463:442::-;;2565:3;2558:4;2550:6;2546:17;2542:27;2532:2;;2583:1;2580;2573:12;2532:2;2620:6;2607:20;2642:65;2657:49;2699:6;2657:49;:::i;:::-;2642:65;:::i;:::-;2633:74;;2727:6;2720:5;2713:21;2763:4;2755:6;2751:17;2796:4;2789:5;2785:16;2831:3;2822:6;2817:3;2813:16;2810:25;2807:2;;;2848:1;2845;2838:12;2807:2;2858:41;2892:6;2887:3;2882;2858:41;:::i;:::-;2525:380;;;;;;;:::o;2913:130::-;;2993:6;2980:20;2971:29;;3005:33;3032:5;3005:33;:::i;:::-;2965:78;;;;:::o;3050:241::-;;3154:2;3142:9;3133:7;3129:23;3125:32;3122:2;;;3170:1;3167;3160:12;3122:2;3205:1;3222:53;3267:7;3258:6;3247:9;3243:22;3222:53;:::i;:::-;3212:63;;3184:97;3116:175;;;;:::o;3298:366::-;;;3419:2;3407:9;3398:7;3394:23;3390:32;3387:2;;;3435:1;3432;3425:12;3387:2;3470:1;3487:53;3532:7;3523:6;3512:9;3508:22;3487:53;:::i;:::-;3477:63;;3449:97;3577:2;3595:53;3640:7;3631:6;3620:9;3616:22;3595:53;:::i;:::-;3585:63;;3556:98;3381:283;;;;;:::o;3671:491::-;;;;3809:2;3797:9;3788:7;3784:23;3780:32;3777:2;;;3825:1;3822;3815:12;3777:2;3860:1;3877:53;3922:7;3913:6;3902:9;3898:22;3877:53;:::i;:::-;3867:63;;3839:97;3967:2;3985:53;4030:7;4021:6;4010:9;4006:22;3985:53;:::i;:::-;3975:63;;3946:98;4075:2;4093:53;4138:7;4129:6;4118:9;4114:22;4093:53;:::i;:::-;4083:63;;4054:98;3771:391;;;;;:::o;4169:721::-;;;;;4333:3;4321:9;4312:7;4308:23;4304:33;4301:2;;;4350:1;4347;4340:12;4301:2;4385:1;4402:53;4447:7;4438:6;4427:9;4423:22;4402:53;:::i;:::-;4392:63;;4364:97;4492:2;4510:53;4555:7;4546:6;4535:9;4531:22;4510:53;:::i;:::-;4500:63;;4471:98;4600:2;4618:53;4663:7;4654:6;4643:9;4639:22;4618:53;:::i;:::-;4608:63;;4579:98;4736:2;4725:9;4721:18;4708:32;4760:18;4752:6;4749:30;4746:2;;;4792:1;4789;4782:12;4746:2;4812:62;4866:7;4857:6;4846:9;4842:22;4812:62;:::i;:::-;4802:72;;4687:193;4295:595;;;;;;;:::o;4897:360::-;;;5015:2;5003:9;4994:7;4990:23;4986:32;4983:2;;;5031:1;5028;5021:12;4983:2;5066:1;5083:53;5128:7;5119:6;5108:9;5104:22;5083:53;:::i;:::-;5073:63;;5045:97;5173:2;5191:50;5233:7;5224:6;5213:9;5209:22;5191:50;:::i;:::-;5181:60;;5152:95;4977:280;;;;;:::o;5264:366::-;;;5385:2;5373:9;5364:7;5360:23;5356:32;5353:2;;;5401:1;5398;5391:12;5353:2;5436:1;5453:53;5498:7;5489:6;5478:9;5474:22;5453:53;:::i;:::-;5443:63;;5415:97;5543:2;5561:53;5606:7;5597:6;5586:9;5582:22;5561:53;:::i;:::-;5551:63;;5522:98;5347:283;;;;;:::o;5637:658::-;;;5818:2;5806:9;5797:7;5793:23;5789:32;5786:2;;;5834:1;5831;5824:12;5786:2;5897:1;5886:9;5882:17;5869:31;5920:18;5912:6;5909:30;5906:2;;;5952:1;5949;5942:12;5906:2;5972:88;6052:7;6043:6;6032:9;6028:22;5972:88;:::i;:::-;5962:98;;5848:218;6125:2;6114:9;6110:18;6097:32;6149:18;6141:6;6138:30;6135:2;;;6181:1;6178;6171:12;6135:2;6201:78;6271:7;6262:6;6251:9;6247:22;6201:78;:::i;:::-;6191:88;;6076:209;5780:515;;;;;:::o;6302:235::-;;6403:2;6391:9;6382:7;6378:23;6374:32;6371:2;;;6419:1;6416;6409:12;6371:2;6454:1;6471:50;6513:7;6504:6;6493:9;6489:22;6471:50;:::i;:::-;6461:60;;6433:94;6365:172;;;;:::o;6544:239::-;;6647:2;6635:9;6626:7;6622:23;6618:32;6615:2;;;6663:1;6660;6653:12;6615:2;6698:1;6715:52;6759:7;6750:6;6739:9;6735:22;6715:52;:::i;:::-;6705:62;;6677:96;6609:174;;;;:::o;6790:261::-;;6904:2;6892:9;6883:7;6879:23;6875:32;6872:2;;;6920:1;6917;6910:12;6872:2;6955:1;6972:63;7027:7;7018:6;7007:9;7003:22;6972:63;:::i;:::-;6962:73;;6934:107;6866:185;;;;:::o;7058:241::-;;7162:2;7150:9;7141:7;7137:23;7133:32;7130:2;;;7178:1;7175;7168:12;7130:2;7213:1;7230:53;7275:7;7266:6;7255:9;7251:22;7230:53;:::i;:::-;7220:63;;7192:97;7124:175;;;;:::o;7306:142::-;7397:45;7436:5;7397:45;:::i;:::-;7392:3;7385:58;7379:69;;:::o;7455:137::-;7554:32;7580:5;7554:32;:::i;:::-;7549:3;7542:45;7536:56;;:::o;7599:113::-;7682:24;7700:5;7682:24;:::i;:::-;7677:3;7670:37;7664:48;;:::o;7719:104::-;7796:21;7811:5;7796:21;:::i;:::-;7791:3;7784:34;7778:45;;:::o;7830:343::-;;7940:38;7972:5;7940:38;:::i;:::-;7990:70;8053:6;8048:3;7990:70;:::i;:::-;7983:77;;8065:52;8110:6;8105:3;8098:4;8091:5;8087:16;8065:52;:::i;:::-;8138:29;8160:6;8138:29;:::i;:::-;8133:3;8129:39;8122:46;;7920:253;;;;;:::o;8180:356::-;;8308:38;8340:5;8308:38;:::i;:::-;8358:88;8439:6;8434:3;8358:88;:::i;:::-;8351:95;;8451:52;8496:6;8491:3;8484:4;8477:5;8473:16;8451:52;:::i;:::-;8524:6;8519:3;8515:16;8508:23;;8288:248;;;;;:::o;8543:347::-;;8655:39;8688:5;8655:39;:::i;:::-;8706:71;8770:6;8765:3;8706:71;:::i;:::-;8699:78;;8782:52;8827:6;8822:3;8815:4;8808:5;8804:16;8782:52;:::i;:::-;8855:29;8877:6;8855:29;:::i;:::-;8850:3;8846:39;8839:46;;8635:255;;;;;:::o;8897:360::-;;9027:39;9060:5;9027:39;:::i;:::-;9078:89;9160:6;9155:3;9078:89;:::i;:::-;9071:96;;9172:52;9217:6;9212:3;9205:4;9198:5;9194:16;9172:52;:::i;:::-;9245:6;9240:3;9236:16;9229:23;;9007:250;;;;;:::o;9265:322::-;;9425:67;9489:2;9484:3;9425:67;:::i;:::-;9418:74;;9525:24;9521:1;9516:3;9512:11;9505:45;9578:2;9573:3;9569:12;9562:19;;9411:176;;;:::o;9596:371::-;;9756:67;9820:2;9815:3;9756:67;:::i;:::-;9749:74;;9856:34;9852:1;9847:3;9843:11;9836:55;9925:4;9920:2;9915:3;9911:12;9904:26;9958:2;9953:3;9949:12;9942:19;;9742:225;;;:::o;9976:380::-;;10136:67;10200:2;10195:3;10136:67;:::i;:::-;10129:74;;10236:34;10232:1;10227:3;10223:11;10216:55;10305:13;10300:2;10295:3;10291:12;10284:35;10347:2;10342:3;10338:12;10331:19;;10122:234;;;:::o;10365:320::-;;10525:67;10589:2;10584:3;10525:67;:::i;:::-;10518:74;;10625:22;10621:1;10616:3;10612:11;10605:43;10676:2;10671:3;10667:12;10660:19;;10511:174;;;:::o;10694:314::-;;10854:67;10918:2;10913:3;10854:67;:::i;:::-;10847:74;;10954:16;10950:1;10945:3;10941:11;10934:37;10999:2;10994:3;10990:12;10983:19;;10840:168;;;:::o;11017:387::-;;11177:67;11241:2;11236:3;11177:67;:::i;:::-;11170:74;;11277:34;11273:1;11268:3;11264:11;11257:55;11346:20;11341:2;11336:3;11332:12;11325:42;11395:2;11390:3;11386:12;11379:19;;11163:241;;;:::o;11413:375::-;;11573:67;11637:2;11632:3;11573:67;:::i;:::-;11566:74;;11673:34;11669:1;11664:3;11660:11;11653:55;11742:8;11737:2;11732:3;11728:12;11721:30;11779:2;11774:3;11770:12;11763:19;;11559:229;;;:::o;11797:328::-;;11957:67;12021:2;12016:3;11957:67;:::i;:::-;11950:74;;12057:30;12053:1;12048:3;12044:11;12037:51;12116:2;12111:3;12107:12;12100:19;;11943:182;;;:::o;12134:373::-;;12294:67;12358:2;12353:3;12294:67;:::i;:::-;12287:74;;12394:34;12390:1;12385:3;12381:11;12374:55;12463:6;12458:2;12453:3;12449:12;12442:28;12498:2;12493:3;12489:12;12482:19;;12280:227;;;:::o;12516:325::-;;12676:67;12740:2;12735:3;12676:67;:::i;:::-;12669:74;;12776:27;12772:1;12767:3;12763:11;12756:48;12832:2;12827:3;12823:12;12816:19;;12662:179;;;:::o;12850:375::-;;13010:67;13074:2;13069:3;13010:67;:::i;:::-;13003:74;;13110:34;13106:1;13101:3;13097:11;13090:55;13179:8;13174:2;13169:3;13165:12;13158:30;13216:2;13211:3;13207:12;13200:19;;12996:229;;;:::o;13234:381::-;;13394:67;13458:2;13453:3;13394:67;:::i;:::-;13387:74;;13494:34;13490:1;13485:3;13481:11;13474:55;13563:14;13558:2;13553:3;13549:12;13542:36;13606:2;13601:3;13597:12;13590:19;;13380:235;;;:::o;13624:316::-;;13784:67;13848:2;13843:3;13784:67;:::i;:::-;13777:74;;13884:18;13880:1;13875:3;13871:11;13864:39;13931:2;13926:3;13922:12;13915:19;;13770:170;;;:::o;13949:393::-;;14109:67;14173:2;14168:3;14109:67;:::i;:::-;14102:74;;14209:34;14205:1;14200:3;14196:11;14189:55;14278:26;14273:2;14268:3;14264:12;14257:48;14333:2;14328:3;14324:12;14317:19;;14095:247;;;:::o;14351:379::-;;14511:67;14575:2;14570:3;14511:67;:::i;:::-;14504:74;;14611:34;14607:1;14602:3;14598:11;14591:55;14680:12;14675:2;14670:3;14666:12;14659:34;14721:2;14716:3;14712:12;14705:19;;14497:233;;;:::o;14739:371::-;;14899:67;14963:2;14958:3;14899:67;:::i;:::-;14892:74;;14999:34;14995:1;14990:3;14986:11;14979:55;15068:4;15063:2;15058:3;15054:12;15047:26;15101:2;15096:3;15092:12;15085:19;;14885:225;;;:::o;15119:307::-;;15279:66;15343:1;15338:3;15279:66;:::i;:::-;15272:73;;15378:10;15374:1;15369:3;15365:11;15358:31;15417:2;15412:3;15408:12;15401:19;;15265:161;;;:::o;15435:370::-;;15595:67;15659:2;15654:3;15595:67;:::i;:::-;15588:74;;15695:34;15691:1;15686:3;15682:11;15675:55;15764:3;15759:2;15754:3;15750:12;15743:25;15796:2;15791:3;15787:12;15780:19;;15581:224;;;:::o;15814:381::-;;15974:67;16038:2;16033:3;15974:67;:::i;:::-;15967:74;;16074:34;16070:1;16065:3;16061:11;16054:55;16143:14;16138:2;16133:3;16129:12;16122:36;16186:2;16181:3;16177:12;16170:19;;15960:235;;;:::o;16204:381::-;;16364:67;16428:2;16423:3;16364:67;:::i;:::-;16357:74;;16464:34;16460:1;16455:3;16451:11;16444:55;16533:14;16528:2;16523:3;16519:12;16512:36;16576:2;16571:3;16567:12;16560:19;;16350:235;;;:::o;16594:332::-;;16754:67;16818:2;16813:3;16754:67;:::i;:::-;16747:74;;16854:34;16850:1;16845:3;16841:11;16834:55;16917:2;16912:3;16908:12;16901:19;;16740:186;;;:::o;16935:378::-;;17095:67;17159:2;17154:3;17095:67;:::i;:::-;17088:74;;17195:34;17191:1;17186:3;17182:11;17175:55;17264:11;17259:2;17254:3;17250:12;17243:33;17304:2;17299:3;17295:12;17288:19;;17081:232;;;:::o;17322:384::-;;17482:67;17546:2;17541:3;17482:67;:::i;:::-;17475:74;;17582:34;17578:1;17573:3;17569:11;17562:55;17651:17;17646:2;17641:3;17637:12;17630:39;17697:2;17692:3;17688:12;17681:19;;17468:238;;;:::o;17715:370::-;;17875:67;17939:2;17934:3;17875:67;:::i;:::-;17868:74;;17975:34;17971:1;17966:3;17962:11;17955:55;18044:3;18039:2;18034:3;18030:12;18023:25;18076:2;18071:3;18067:12;18060:19;;17861:224;;;:::o;18094:296::-;;18271:83;18352:1;18347:3;18271:83;:::i;:::-;18264:90;;18382:1;18377:3;18373:11;18366:18;;18257:133;;;:::o;18399:316::-;;18559:67;18623:2;18618:3;18559:67;:::i;:::-;18552:74;;18659:18;18655:1;18650:3;18646:11;18639:39;18706:2;18701:3;18697:12;18690:19;;18545:170;;;:::o;18724:386::-;;18884:67;18948:2;18943:3;18884:67;:::i;:::-;18877:74;;18984:34;18980:1;18975:3;18971:11;18964:55;19053:19;19048:2;19043:3;19039:12;19032:41;19101:2;19096:3;19092:12;19085:19;;18870:240;;;:::o;19119:329::-;;19279:67;19343:2;19338:3;19279:67;:::i;:::-;19272:74;;19379:31;19375:1;19370:3;19366:11;19359:52;19439:2;19434:3;19430:12;19423:19;;19265:183;;;:::o;19456:113::-;19539:24;19557:5;19539:24;:::i;:::-;19534:3;19527:37;19521:48;;:::o;19576:271::-;;19729:93;19818:3;19809:6;19729:93;:::i;:::-;19722:100;;19839:3;19832:10;;19710:137;;;;:::o;19854:436::-;;20057:95;20148:3;20139:6;20057:95;:::i;:::-;20050:102;;20170:95;20261:3;20252:6;20170:95;:::i;:::-;20163:102;;20282:3;20275:10;;20038:252;;;;;:::o;20297:379::-;;20504:147;20647:3;20504:147;:::i;:::-;20497:154;;20668:3;20661:10;;20485:191;;;:::o;20683:222::-;;20810:2;20799:9;20795:18;20787:26;;20824:71;20892:1;20881:9;20877:17;20868:6;20824:71;:::i;:::-;20781:124;;;;:::o;20912:238::-;;21047:2;21036:9;21032:18;21024:26;;21061:79;21137:1;21126:9;21122:17;21113:6;21061:79;:::i;:::-;21018:132;;;;:::o;21157:672::-;;21402:3;21391:9;21387:19;21379:27;;21417:87;21501:1;21490:9;21486:17;21477:6;21417:87;:::i;:::-;21515:72;21583:2;21572:9;21568:18;21559:6;21515:72;:::i;:::-;21598;21666:2;21655:9;21651:18;21642:6;21598:72;:::i;:::-;21718:9;21712:4;21708:20;21703:2;21692:9;21688:18;21681:48;21743:76;21814:4;21805:6;21743:76;:::i;:::-;21735:84;;21373:456;;;;;;;:::o;21836:210::-;;21957:2;21946:9;21942:18;21934:26;;21971:65;22033:1;22022:9;22018:17;22009:6;21971:65;:::i;:::-;21928:118;;;;:::o;22053:310::-;;22200:2;22189:9;22185:18;22177:26;;22250:9;22244:4;22240:20;22236:1;22225:9;22221:17;22214:47;22275:78;22348:4;22339:6;22275:78;:::i;:::-;22267:86;;22171:192;;;;:::o;22370:416::-;;22570:2;22559:9;22555:18;22547:26;;22620:9;22614:4;22610:20;22606:1;22595:9;22591:17;22584:47;22645:131;22771:4;22645:131;:::i;:::-;22637:139;;22541:245;;;:::o;22793:416::-;;22993:2;22982:9;22978:18;22970:26;;23043:9;23037:4;23033:20;23029:1;23018:9;23014:17;23007:47;23068:131;23194:4;23068:131;:::i;:::-;23060:139;;22964:245;;;:::o;23216:416::-;;23416:2;23405:9;23401:18;23393:26;;23466:9;23460:4;23456:20;23452:1;23441:9;23437:17;23430:47;23491:131;23617:4;23491:131;:::i;:::-;23483:139;;23387:245;;;:::o;23639:416::-;;23839:2;23828:9;23824:18;23816:26;;23889:9;23883:4;23879:20;23875:1;23864:9;23860:17;23853:47;23914:131;24040:4;23914:131;:::i;:::-;23906:139;;23810:245;;;:::o;24062:416::-;;24262:2;24251:9;24247:18;24239:26;;24312:9;24306:4;24302:20;24298:1;24287:9;24283:17;24276:47;24337:131;24463:4;24337:131;:::i;:::-;24329:139;;24233:245;;;:::o;24485:416::-;;24685:2;24674:9;24670:18;24662:26;;24735:9;24729:4;24725:20;24721:1;24710:9;24706:17;24699:47;24760:131;24886:4;24760:131;:::i;:::-;24752:139;;24656:245;;;:::o;24908:416::-;;25108:2;25097:9;25093:18;25085:26;;25158:9;25152:4;25148:20;25144:1;25133:9;25129:17;25122:47;25183:131;25309:4;25183:131;:::i;:::-;25175:139;;25079:245;;;:::o;25331:416::-;;25531:2;25520:9;25516:18;25508:26;;25581:9;25575:4;25571:20;25567:1;25556:9;25552:17;25545:47;25606:131;25732:4;25606:131;:::i;:::-;25598:139;;25502:245;;;:::o;25754:416::-;;25954:2;25943:9;25939:18;25931:26;;26004:9;25998:4;25994:20;25990:1;25979:9;25975:17;25968:47;26029:131;26155:4;26029:131;:::i;:::-;26021:139;;25925:245;;;:::o;26177:416::-;;26377:2;26366:9;26362:18;26354:26;;26427:9;26421:4;26417:20;26413:1;26402:9;26398:17;26391:47;26452:131;26578:4;26452:131;:::i;:::-;26444:139;;26348:245;;;:::o;26600:416::-;;26800:2;26789:9;26785:18;26777:26;;26850:9;26844:4;26840:20;26836:1;26825:9;26821:17;26814:47;26875:131;27001:4;26875:131;:::i;:::-;26867:139;;26771:245;;;:::o;27023:416::-;;27223:2;27212:9;27208:18;27200:26;;27273:9;27267:4;27263:20;27259:1;27248:9;27244:17;27237:47;27298:131;27424:4;27298:131;:::i;:::-;27290:139;;27194:245;;;:::o;27446:416::-;;27646:2;27635:9;27631:18;27623:26;;27696:9;27690:4;27686:20;27682:1;27671:9;27667:17;27660:47;27721:131;27847:4;27721:131;:::i;:::-;27713:139;;27617:245;;;:::o;27869:416::-;;28069:2;28058:9;28054:18;28046:26;;28119:9;28113:4;28109:20;28105:1;28094:9;28090:17;28083:47;28144:131;28270:4;28144:131;:::i;:::-;28136:139;;28040:245;;;:::o;28292:416::-;;28492:2;28481:9;28477:18;28469:26;;28542:9;28536:4;28532:20;28528:1;28517:9;28513:17;28506:47;28567:131;28693:4;28567:131;:::i;:::-;28559:139;;28463:245;;;:::o;28715:416::-;;28915:2;28904:9;28900:18;28892:26;;28965:9;28959:4;28955:20;28951:1;28940:9;28936:17;28929:47;28990:131;29116:4;28990:131;:::i;:::-;28982:139;;28886:245;;;:::o;29138:416::-;;29338:2;29327:9;29323:18;29315:26;;29388:9;29382:4;29378:20;29374:1;29363:9;29359:17;29352:47;29413:131;29539:4;29413:131;:::i;:::-;29405:139;;29309:245;;;:::o;29561:416::-;;29761:2;29750:9;29746:18;29738:26;;29811:9;29805:4;29801:20;29797:1;29786:9;29782:17;29775:47;29836:131;29962:4;29836:131;:::i;:::-;29828:139;;29732:245;;;:::o;29984:416::-;;30184:2;30173:9;30169:18;30161:26;;30234:9;30228:4;30224:20;30220:1;30209:9;30205:17;30198:47;30259:131;30385:4;30259:131;:::i;:::-;30251:139;;30155:245;;;:::o;30407:416::-;;30607:2;30596:9;30592:18;30584:26;;30657:9;30651:4;30647:20;30643:1;30632:9;30628:17;30621:47;30682:131;30808:4;30682:131;:::i;:::-;30674:139;;30578:245;;;:::o;30830:416::-;;31030:2;31019:9;31015:18;31007:26;;31080:9;31074:4;31070:20;31066:1;31055:9;31051:17;31044:47;31105:131;31231:4;31105:131;:::i;:::-;31097:139;;31001:245;;;:::o;31253:416::-;;31453:2;31442:9;31438:18;31430:26;;31503:9;31497:4;31493:20;31489:1;31478:9;31474:17;31467:47;31528:131;31654:4;31528:131;:::i;:::-;31520:139;;31424:245;;;:::o;31676:416::-;;31876:2;31865:9;31861:18;31853:26;;31926:9;31920:4;31916:20;31912:1;31901:9;31897:17;31890:47;31951:131;32077:4;31951:131;:::i;:::-;31943:139;;31847:245;;;:::o;32099:416::-;;32299:2;32288:9;32284:18;32276:26;;32349:9;32343:4;32339:20;32335:1;32324:9;32320:17;32313:47;32374:131;32500:4;32374:131;:::i;:::-;32366:139;;32270:245;;;:::o;32522:416::-;;32722:2;32711:9;32707:18;32699:26;;32772:9;32766:4;32762:20;32758:1;32747:9;32743:17;32736:47;32797:131;32923:4;32797:131;:::i;:::-;32789:139;;32693:245;;;:::o;32945:416::-;;33145:2;33134:9;33130:18;33122:26;;33195:9;33189:4;33185:20;33181:1;33170:9;33166:17;33159:47;33220:131;33346:4;33220:131;:::i;:::-;33212:139;;33116:245;;;:::o;33368:416::-;;33568:2;33557:9;33553:18;33545:26;;33618:9;33612:4;33608:20;33604:1;33593:9;33589:17;33582:47;33643:131;33769:4;33643:131;:::i;:::-;33635:139;;33539:245;;;:::o;33791:222::-;;33918:2;33907:9;33903:18;33895:26;;33932:71;34000:1;33989:9;33985:17;33976:6;33932:71;:::i;:::-;33889:124;;;;:::o;34020:256::-;;34082:2;34076:9;34066:19;;34120:4;34112:6;34108:17;34219:6;34207:10;34204:22;34183:18;34171:10;34168:34;34165:62;34162:2;;;34240:1;34237;34230:12;34162:2;34260:10;34256:2;34249:22;34060:216;;;;:::o;34283:314::-;;34452:18;34444:6;34441:30;34438:2;;;34484:1;34481;34474:12;34438:2;34519:4;34511:6;34507:17;34499:25;;34582:4;34576;34572:15;34564:23;;34375:222;;;:::o;34604:304::-;;34763:18;34755:6;34752:30;34749:2;;;34795:1;34792;34785:12;34749:2;34830:4;34822:6;34818:17;34810:25;;34893:4;34887;34883:15;34875:23;;34686:222;;;:::o;34915:321::-;;35058:18;35050:6;35047:30;35044:2;;;35090:1;35087;35080:12;35044:2;35157:4;35153:9;35146:4;35138:6;35134:17;35130:33;35122:41;;35221:4;35215;35211:15;35203:23;;34981:255;;;:::o;35243:322::-;;35387:18;35379:6;35376:30;35373:2;;;35419:1;35416;35409:12;35373:2;35486:4;35482:9;35475:4;35467:6;35463:17;35459:33;35451:41;;35550:4;35544;35540:15;35532:23;;35310:255;;;:::o;35572:121::-;;35665:5;35659:12;35649:22;;35630:63;;;:::o;35700:122::-;;35794:5;35788:12;35778:22;;35759:63;;;:::o;35830:162::-;;35944:6;35939:3;35932:19;35981:4;35976:3;35972:14;35957:29;;35925:67;;;;:::o;36001:144::-;;36136:3;36121:18;;36114:31;;;;:::o;36154:163::-;;36269:6;36264:3;36257:19;36306:4;36301:3;36297:14;36282:29;;36250:67;;;;:::o;36326:145::-;;36462:3;36447:18;;36440:31;;;;:::o;36479:91::-;;36541:24;36559:5;36541:24;:::i;:::-;36530:35;;36524:46;;;:::o;36577:99::-;;36647:24;36665:5;36647:24;:::i;:::-;36636:35;;36630:46;;;:::o;36683:85::-;;36756:5;36749:13;36742:21;36731:32;;36725:43;;;:::o;36775:144::-;;36847:66;36840:5;36836:78;36825:89;;36819:100;;;:::o;36926:121::-;;36999:42;36992:5;36988:54;36977:65;;36971:76;;;:::o;37054:72::-;;37116:5;37105:16;;37099:27;;;:::o;37133:129::-;;37220:37;37251:5;37220:37;:::i;:::-;37207:50;;37201:61;;;:::o;37269:121::-;;37348:37;37379:5;37348:37;:::i;:::-;37335:50;;37329:61;;;:::o;37397:108::-;;37476:24;37494:5;37476:24;:::i;:::-;37463:37;;37457:48;;;:::o;37513:145::-;37594:6;37589:3;37584;37571:30;37650:1;37641:6;37636:3;37632:16;37625:27;37564:94;;;:::o;37667:268::-;37732:1;37739:101;37753:6;37750:1;37747:13;37739:101;;;37829:1;37824:3;37820:11;37814:18;37810:1;37805:3;37801:11;37794:39;37775:2;37772:1;37768:10;37763:15;;37739:101;;;37855:6;37852:1;37849:13;37846:2;;;37920:1;37911:6;37906:3;37902:16;37895:27;37846:2;37716:219;;;;:::o;37943:97::-;;38031:2;38027:7;38022:2;38015:5;38011:14;38007:28;37997:38;;37991:49;;;:::o;38048:117::-;38117:24;38135:5;38117:24;:::i;:::-;38110:5;38107:35;38097:2;;38156:1;38153;38146:12;38097:2;38091:74;:::o;38172:111::-;38238:21;38253:5;38238:21;:::i;:::-;38231:5;38228:32;38218:2;;38274:1;38271;38264:12;38218:2;38212:71;:::o;38290:115::-;38358:23;38375:5;38358:23;:::i;:::-;38351:5;38348:34;38338:2;;38396:1;38393;38386:12;38338:2;38332:73;:::o;38412:117::-;38481:24;38499:5;38481:24;:::i;:::-;38474:5;38471:35;38461:2;;38520:1;38517;38510:12;38461:2;38455:74;:::o

Swarm Source

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