ETH Price: $3,466.18 (+0.53%)

Token

PonteGold (GOLDP)
 

Overview

Max Total Supply

1,000,000 GOLDP

Holders

9 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 2 Decimals)

Filtered by Token Holder
Fake_Phishing4672
Balance
30.74 GOLDP

Value
$0.00
0xe2B7a0c7bC21E000B8327713513b9D4d2620A414
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

GOLDp Token is backed by gold with a 1:1 ratio. Each token represents 0.01 gram of physical gold reserved at Golden Global Bank Vault.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PonteGoldToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-12-18
*/

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


// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
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(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(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(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(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));
    }
}

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



pragma solidity >=0.6.2 <0.8.0;

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

        uint256 size;
        // 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);
    }

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

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



pragma solidity >=0.6.0 <0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with 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;
    }
}

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



pragma solidity >=0.6.0 <0.8.0;




/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context {
    using EnumerableSet for EnumerableSet.AddressSet;
    using Address for address;

    struct RoleData {
        EnumerableSet.AddressSet members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view returns (bool) {
        return _roles[role].members.contains(account);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view returns (uint256) {
        return _roles[role].members.length();
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
        return _roles[role].members.at(index);
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (_roles[role].members.add(account)) {
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (_roles[role].members.remove(account)) {
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @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) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * 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);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        return div(a, b, "SafeMath: division by zero");
    }

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

        return c;
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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



pragma solidity >=0.6.0 <0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

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

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



pragma solidity >=0.6.0 <0.8.0;


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

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

    bool private _paused;

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20Pausable.sol



pragma solidity >=0.6.0 <0.8.0;



/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}

// File: contracts/PonteGoldToken.sol


  pragma solidity ^0.6.8;




  contract PonteGoldToken is ERC20, AccessControl, ERC20Pausable {
    string private __name = "PonteGold";
    string private __symbol = "GOLDP";
    uint8 private __decimals = 2;
    uint private __INITIAL_SUPPLY = 100000000;

      bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
      bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE");
      bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
      bytes32 public constant BLACKLIST_ROLE = keccak256("BLACKLIST_ROLE");

      mapping(address => bool) blacklist;
      address[] public blacklistAddresses;

      event BlacklistedAddressAdded(address addr);
      event BlacklistedAddressRemoved(address addr);

      constructor() public ERC20(__name, __symbol) {
          _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
          _setupRole(MINTER_ROLE, msg.sender);
          _setupRole(BURNER_ROLE, msg.sender);
          _setupRole(PAUSER_ROLE, msg.sender);
          _setupRole(BLACKLIST_ROLE, msg.sender);

          _setupDecimals(__decimals);
          _mint(msg.sender, __INITIAL_SUPPLY);
      }

      function pause() public {
          require(hasRole(PAUSER_ROLE, _msgSender()), "PonteGoldToken: must have pauser role to pause");
          _pause();
      }

      function unpause() public {
          require(hasRole(PAUSER_ROLE, _msgSender()), "PonteGoldToken: must have pauser role to unpause");
          _unpause();
      }

      function mint(address to, uint256 amount) public {
          require(hasRole(MINTER_ROLE, _msgSender()), "PonteGoldToken: Caller is not a minter");
          _mint(to, amount);
      }

      function burn(address from, uint256 amount) public {
          require(hasRole(BURNER_ROLE, _msgSender()), "PonteGoldToken: Caller is not a burner");
          require(blacklist[from], "PonteGoldToken: From address is not blacklisted");
          _burn(from, amount);
      }

      function _beforeTokenTransfer(address from, address to, uint256 amount) internal isNotBlacklisted whenNotPaused override(ERC20, ERC20Pausable) {
          super._beforeTokenTransfer(from, to, amount);
      }

      modifier isBlacklisted() {
          require(blacklist[msg.sender]);
          _;
      }

      modifier isNotBlacklisted() {
          require(!blacklist[msg.sender]);
          _;
      }

      function addAddressToBlacklist(address addr) public returns(bool success) {
          require(hasRole(BLACKLIST_ROLE, _msgSender()), "PonteGoldToken: Caller is not a Blacklister");
          if (!blacklist[addr]) {
            blacklistAddresses.push(addr);
            blacklist[addr] = true;
            emit BlacklistedAddressAdded(addr);
            success = true;
          }
      }

      function addAddressesToBlacklist(address[] memory addrs) public returns(bool success) {
          require(hasRole(BLACKLIST_ROLE, _msgSender()), "PonteGoldToken: Caller is not a Blacklister");
          for (uint256 i = 0; i < addrs.length; i++) {
            if (addAddressToBlacklist(addrs[i])) {
              success = true;
            }
          }
      }

      function removeAddressFromBlacklist(address addr) public returns(bool success) {
          require(hasRole(BLACKLIST_ROLE, _msgSender()), "PonteGoldToken: Caller is not a Blacklister");
          if (blacklist[addr]) {
            blacklist[addr] = false;
            for (uint i = 0; i < blacklistAddresses.length; i++) {
              if (addr == blacklistAddresses[i]) {
                delete blacklistAddresses[i];
              }
            }
            emit BlacklistedAddressRemoved(addr);
            success = true;
          }
      }

      function removeAddressesFromBlacklist(address[] memory addrs) public returns(bool success) {
          require(hasRole(BLACKLIST_ROLE, _msgSender()), "PonteGoldToken: Caller is not a Blacklister");
          for (uint256 i = 0; i < addrs.length; i++) {
            if (removeAddressFromBlacklist(addrs[i])) {
              success = true;
            }
          }
      }


      function getBlacklist() public view returns (address[] memory) {
          return blacklistAddresses;
      }

  }

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"}],"name":"BlacklistedAddressAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"}],"name":"BlacklistedAddressRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"BLACKLIST_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addAddressToBlacklist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"addAddressesToBlacklist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"blacklistAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getBlacklist","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"removeAddressFromBlacklist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"removeAddressesFromBlacklist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600981526020017f506f6e7465476f6c640000000000000000000000000000000000000000000000815250600890805190602001906200005192919062000948565b506040518060400160405280600581526020017f474f4c4450000000000000000000000000000000000000000000000000000000815250600990805190602001906200009f92919062000948565b506002600a60006101000a81548160ff021916908360ff1602179055506305f5e100600b55348015620000d157600080fd5b5060088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156200016c5780601f1062000140576101008083540402835291602001916200016c565b820191906000526020600020905b8154815290600101906020018083116200014e57829003601f168201915b505050505060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156200020b5780601f10620001df576101008083540402835291602001916200020b565b820191906000526020600020905b815481529060010190602001808311620001ed57829003601f168201915b505050505081600390805190602001906200022892919062000948565b5080600490805190602001906200024192919062000948565b506012600560006101000a81548160ff021916908360ff16021790555050506000600760006101000a81548160ff021916908315150217905550620002906000801b336200039260201b60201c565b620002c27f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336200039260201b60201c565b620002f47f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848336200039260201b60201c565b620003267f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336200039260201b60201c565b620003587f22435ed027edf5f902dc0093fbc24cdb50c05b5fd5f311b78c67c1cbaff60e13336200039260201b60201c565b62000378600a60009054906101000a900460ff16620003a860201b60201c565b6200038c33600b54620003c660201b60201c565b620009ee565b620003a48282620005a460201b60201c565b5050565b80600560006101000a81548160ff021916908360ff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200046a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6200047e600083836200064860201b60201c565b6200049a816002546200074160201b62001e2a1790919060201c565b600281905550620004f8816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200074160201b62001e2a1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b620005d38160066000858152602001908152602001600020600001620007ca60201b62001eb21790919060201c565b156200064457620005e96200080260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615620006a057600080fd5b600760009054906101000a900460ff161562000724576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6200073c8383836200080a60201b62001ee21760201c565b505050565b600080828401905083811015620007c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000620007fa836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200088f60201b60201c565b905092915050565b600033905090565b620008228383836200090960201b62001f501760201c565b620008326200090e60201b60201c565b156200088a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018062003c97602a913960400191505060405180910390fd5b505050565b6000620008a383836200092560201b60201c565b620008fe57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000903565b600090505b92915050565b505050565b6000600760009054906101000a900460ff16905090565b600080836001016000848152602001908152602001600020541415905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200098b57805160ff1916838001178555620009bc565b82800160010185558215620009bc579182015b82811115620009bb5782518255916020019190600101906200099e565b5b509050620009cb9190620009cf565b5090565b5b80821115620009ea576000816000905550600101620009d0565b5090565b61329980620009fe6000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c80635c975abb1161011a578063a457c2d7116100ad578063d53913931161007c578063d539139314610b79578063d547741f14610b97578063dd62ed3e14610be5578063e63ab1e914610c5d578063f2c816ae14610c7b57610206565b8063a457c2d7146109a1578063a9059cbb14610a05578063ca15c87314610a69578063ca73419e14610aab57610206565b806391d14854116100e957806391d148541461084e57806395d89b41146108b25780639dc29fac14610935578063a217fddf1461098357610206565b80635c975abb1461076a57806370a082311461078a5780638456cb59146107e25780639010d07c146107ec57610206565b80632f2ff15d1161019d57806335e82f3a1161016c57806335e82f3a1461060657806336568abe1461066057806339509351146106ae5780633f4ba83a1461071257806340c10f191461071c57610206565b80632f2ff15d1461046a578063313ce567146104b857806332258794146104d9578063338d6c30146105a757610206565b80631e55a376116101d95780631e55a3761461032e57806323b872dd14610386578063248a9ca31461040a578063282c51f31461044c57610206565b806306fdde031461020b578063095ea7b31461028e57806318160ddd146102f257806319afe46314610310575b600080fd5b610213610cd5565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610253578082015181840152602081019050610238565b50505050905090810190601f1680156102805780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102da600480360360408110156102a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d77565b60405180821515815260200191505060405180910390f35b6102fa610d95565b6040518082815260200191505060405180910390f35b610318610d9f565b6040518082815260200191505060405180910390f35b61035a6004803603602081101561034457600080fd5b8101908080359060200190929190505050610dc3565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103f26004803603606081101561039c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610dff565b60405180821515815260200191505060405180910390f35b6104366004803603602081101561042057600080fd5b8101908080359060200190929190505050610ed8565b6040518082815260200191505060405180910390f35b610454610ef8565b6040518082815260200191505060405180910390f35b6104b66004803603604081101561048057600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f1c565b005b6104c0610fa6565b604051808260ff16815260200191505060405180910390f35b61058f600480360360208110156104ef57600080fd5b810190808035906020019064010000000081111561050c57600080fd5b82018360208201111561051e57600080fd5b8035906020019184602083028401116401000000008311171561054057600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050610fbd565b60405180821515815260200191505060405180910390f35b6105af61108a565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156105f25780820151818401526020810190506105d7565b505050509050019250505060405180910390f35b6106486004803603602081101561061c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611118565b60405180821515815260200191505060405180910390f35b6106ac6004803603604081101561067657600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611365565b005b6106fa600480360360408110156106c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113fe565b60405180821515815260200191505060405180910390f35b61071a6114b1565b005b6107686004803603604081101561073257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611541565b005b6107726115d5565b60405180821515815260200191505060405180910390f35b6107cc600480360360208110156107a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115ec565b6040518082815260200191505060405180910390f35b6107ea611634565b005b6108226004803603604081101561080257600080fd5b8101908080359060200190929190803590602001909291905050506116c4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61089a6004803603604081101561086457600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116f6565b60405180821515815260200191505060405180910390f35b6108ba611728565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108fa5780820151818401526020810190506108df565b50505050905090810190601f1680156109275780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6109816004803603604081101561094b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117ca565b005b61098b611900565b6040518082815260200191505060405180910390f35b6109ed600480360360408110156109b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611907565b60405180821515815260200191505060405180910390f35b610a5160048036036040811015610a1b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119d4565b60405180821515815260200191505060405180910390f35b610a9560048036036020811015610a7f57600080fd5b81019080803590602001909291905050506119f2565b6040518082815260200191505060405180910390f35b610b6160048036036020811015610ac157600080fd5b8101908080359060200190640100000000811115610ade57600080fd5b820183602082011115610af057600080fd5b80359060200191846020830284011164010000000083111715610b1257600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050611a19565b60405180821515815260200191505060405180910390f35b610b81611ae6565b6040518082815260200191505060405180910390f35b610be360048036036040811015610bad57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b0a565b005b610c4760048036036040811015610bfb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b94565b6040518082815260200191505060405180910390f35b610c65611c1b565b6040518082815260200191505060405180910390f35b610cbd60048036036020811015610c9157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c3f565b60405180821515815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d6d5780601f10610d4257610100808354040283529160200191610d6d565b820191906000526020600020905b815481529060010190602001808311610d5057829003601f168201915b5050505050905090565b6000610d8b610d84611f55565b8484611f5d565b6001905092915050565b6000600254905090565b7f22435ed027edf5f902dc0093fbc24cdb50c05b5fd5f311b78c67c1cbaff60e1381565b600d8181548110610dd057fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610e0c848484612154565b610ecd84610e18611f55565b610ec8856040518060600160405280602881526020016130f660289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e7e611f55565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124159092919063ffffffff16565b611f5d565b600190509392505050565b600060066000838152602001908152602001600020600201549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b610f436006600084815260200190815260200160002060020154610f3e611f55565b6116f6565b610f98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180612f87602f913960400191505060405180910390fd5b610fa282826124d5565b5050565b6000600560009054906101000a900460ff16905090565b6000610ff07f22435ed027edf5f902dc0093fbc24cdb50c05b5fd5f311b78c67c1cbaff60e13610feb611f55565b6116f6565b611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180613046602b913960400191505060405180910390fd5b60005b82518110156110845761106d83828151811061106057fe5b6020026020010151611118565b1561107757600191505b8080600101915050611048565b50919050565b6060600d80548060200260200160405190810160405280929190818152602001828054801561110e57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116110c4575b5050505050905090565b600061114b7f22435ed027edf5f902dc0093fbc24cdb50c05b5fd5f311b78c67c1cbaff60e13611146611f55565b6116f6565b6111a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180613046602b913960400191505060405180910390fd5b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611360576000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b600d8054905081101561130d57600d818154811061126757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561130057600d81815481106112d257fe5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b808060010191505061124d565b507fb9b02d6ef3069c468ac99865bad0d84ec0cf34671cb26053e5e47d415ae1756482604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1600190505b919050565b61136d611f55565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f81526020018061320b602f913960400191505060405180910390fd5b6113fa8282612569565b5050565b60006114a761140b611f55565b846114a2856001600061141c611f55565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e2a90919063ffffffff16565b611f5d565b6001905092915050565b6114e27f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6114dd611f55565b6116f6565b611537576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806131886030913960400191505060405180910390fd5b61153f6125fd565b565b6115727f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661156d611f55565b6116f6565b6115c7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612ffa6026913960400191505060405180910390fd5b6115d182826126f0565b5050565b6000600760009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116657f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a611660611f55565b6116f6565b6116ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806131dd602e913960400191505060405180910390fd5b6116c26128b7565b565b60006116ee82600660008681526020019081526020016000206000016129ab90919063ffffffff16565b905092915050565b600061172082600660008681526020019081526020016000206000016129c590919063ffffffff16565b905092915050565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117c05780601f10611795576101008083540402835291602001916117c0565b820191906000526020600020905b8154815290600101906020018083116117a357829003601f168201915b5050505050905090565b6117fb7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8486117f6611f55565b6116f6565b611850576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806130d06026913960400191505060405180910390fd5b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166118f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806130a1602f913960400191505060405180910390fd5b6118fc82826129f5565b5050565b6000801b81565b60006119ca611914611f55565b846119c5856040518060600160405280602581526020016131b8602591396001600061193e611f55565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124159092919063ffffffff16565b611f5d565b6001905092915050565b60006119e86119e1611f55565b8484612154565b6001905092915050565b6000611a1260066000848152602001908152602001600020600001612bb9565b9050919050565b6000611a4c7f22435ed027edf5f902dc0093fbc24cdb50c05b5fd5f311b78c67c1cbaff60e13611a47611f55565b6116f6565b611aa1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180613046602b913960400191505060405180910390fd5b60005b8251811015611ae057611ac9838281518110611abc57fe5b6020026020010151611c3f565b15611ad357600191505b8080600101915050611aa4565b50919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611b316006600084815260200190815260200160002060020154611b2c611f55565b6116f6565b611b86576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806130716030913960400191505060405180910390fd5b611b908282612569565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000611c727f22435ed027edf5f902dc0093fbc24cdb50c05b5fd5f311b78c67c1cbaff60e13611c6d611f55565b6116f6565b611cc7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180613046602b913960400191505060405180910390fd5b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611e2557600d829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fee71faa2d1e96ac74ee4023d6ffa8abfa43b7648f51e3dbd8ec561823e9df13282604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1600190505b919050565b600080828401905083811015611ea8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000611eda836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612bce565b905092915050565b611eed838383611f50565b611ef56115d5565b15611f4b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061323a602a913960400191505060405180910390fd5b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fe3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806131646024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612069576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612fd86022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061313f6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612260576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612f646023913960400191505060405180910390fd5b61226b838383612c3e565b6122d681604051806060016040528060268152602001613020602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124159092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612369816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e2a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008383111582906124c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561248757808201518184015260208101905061246c565b50505050905090810190601f1680156124b45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6124fd8160066000858152602001908152602001600020600001611eb290919063ffffffff16565b156125655761250a611f55565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6125918160066000858152602001908152602001600020600001612d2890919063ffffffff16565b156125f95761259e611f55565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600760009054906101000a900460ff1661267f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126c3611f55565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61279f60008383612c3e565b6127b481600254611e2a90919063ffffffff16565b60028190555061280b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e2a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600760009054906101000a900460ff161561293a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861297e611f55565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60006129ba8360000183612d58565b60001c905092915050565b60006129ed836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612ddb565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a7b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061311e6021913960400191505060405180910390fd5b612a8782600083612c3e565b612af281604051806060016040528060228152602001612fb6602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124159092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612b4981600254612dfe90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000612bc782600001612e48565b9050919050565b6000612bda8383612ddb565b612c33578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612c38565b600090505b92915050565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612c9557600080fd5b600760009054906101000a900460ff1615612d18576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b612d23838383611ee2565b505050565b6000612d50836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612e59565b905092915050565b600081836000018054905011612db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612f426022913960400191505060405180910390fd5b826000018281548110612dc857fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b6000612e4083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612415565b905092915050565b600081600001805490509050919050565b60008083600101600084815260200190815260200160002054905060008114612f355760006001820390506000600186600001805490500390506000866000018281548110612ea457fe5b9060005260206000200154905080876000018481548110612ec157fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612ef957fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612f3b565b60009150505b9291505056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f2061646472657373506f6e7465476f6c64546f6b656e3a2043616c6c6572206973206e6f742061206d696e74657245524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365506f6e7465476f6c64546f6b656e3a2043616c6c6572206973206e6f74206120426c61636b6c6973746572416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65506f6e7465476f6c64546f6b656e3a2046726f6d2061646472657373206973206e6f7420626c61636b6c6973746564506f6e7465476f6c64546f6b656e3a2043616c6c6572206973206e6f742061206275726e657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373506f6e7465476f6c64546f6b656e3a206d75737420686176652070617573657220726f6c6520746f20756e706175736545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f506f6e7465476f6c64546f6b656e3a206d75737420686176652070617573657220726f6c6520746f207061757365416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a2646970667358221220adcdb1933f58d7978eb185c68cfa338d8c995f25d148de2c88353ad5a39edafe64736f6c634300060c003345524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c80635c975abb1161011a578063a457c2d7116100ad578063d53913931161007c578063d539139314610b79578063d547741f14610b97578063dd62ed3e14610be5578063e63ab1e914610c5d578063f2c816ae14610c7b57610206565b8063a457c2d7146109a1578063a9059cbb14610a05578063ca15c87314610a69578063ca73419e14610aab57610206565b806391d14854116100e957806391d148541461084e57806395d89b41146108b25780639dc29fac14610935578063a217fddf1461098357610206565b80635c975abb1461076a57806370a082311461078a5780638456cb59146107e25780639010d07c146107ec57610206565b80632f2ff15d1161019d57806335e82f3a1161016c57806335e82f3a1461060657806336568abe1461066057806339509351146106ae5780633f4ba83a1461071257806340c10f191461071c57610206565b80632f2ff15d1461046a578063313ce567146104b857806332258794146104d9578063338d6c30146105a757610206565b80631e55a376116101d95780631e55a3761461032e57806323b872dd14610386578063248a9ca31461040a578063282c51f31461044c57610206565b806306fdde031461020b578063095ea7b31461028e57806318160ddd146102f257806319afe46314610310575b600080fd5b610213610cd5565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610253578082015181840152602081019050610238565b50505050905090810190601f1680156102805780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102da600480360360408110156102a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d77565b60405180821515815260200191505060405180910390f35b6102fa610d95565b6040518082815260200191505060405180910390f35b610318610d9f565b6040518082815260200191505060405180910390f35b61035a6004803603602081101561034457600080fd5b8101908080359060200190929190505050610dc3565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103f26004803603606081101561039c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610dff565b60405180821515815260200191505060405180910390f35b6104366004803603602081101561042057600080fd5b8101908080359060200190929190505050610ed8565b6040518082815260200191505060405180910390f35b610454610ef8565b6040518082815260200191505060405180910390f35b6104b66004803603604081101561048057600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f1c565b005b6104c0610fa6565b604051808260ff16815260200191505060405180910390f35b61058f600480360360208110156104ef57600080fd5b810190808035906020019064010000000081111561050c57600080fd5b82018360208201111561051e57600080fd5b8035906020019184602083028401116401000000008311171561054057600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050610fbd565b60405180821515815260200191505060405180910390f35b6105af61108a565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156105f25780820151818401526020810190506105d7565b505050509050019250505060405180910390f35b6106486004803603602081101561061c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611118565b60405180821515815260200191505060405180910390f35b6106ac6004803603604081101561067657600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611365565b005b6106fa600480360360408110156106c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113fe565b60405180821515815260200191505060405180910390f35b61071a6114b1565b005b6107686004803603604081101561073257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611541565b005b6107726115d5565b60405180821515815260200191505060405180910390f35b6107cc600480360360208110156107a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115ec565b6040518082815260200191505060405180910390f35b6107ea611634565b005b6108226004803603604081101561080257600080fd5b8101908080359060200190929190803590602001909291905050506116c4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61089a6004803603604081101561086457600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116f6565b60405180821515815260200191505060405180910390f35b6108ba611728565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108fa5780820151818401526020810190506108df565b50505050905090810190601f1680156109275780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6109816004803603604081101561094b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117ca565b005b61098b611900565b6040518082815260200191505060405180910390f35b6109ed600480360360408110156109b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611907565b60405180821515815260200191505060405180910390f35b610a5160048036036040811015610a1b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119d4565b60405180821515815260200191505060405180910390f35b610a9560048036036020811015610a7f57600080fd5b81019080803590602001909291905050506119f2565b6040518082815260200191505060405180910390f35b610b6160048036036020811015610ac157600080fd5b8101908080359060200190640100000000811115610ade57600080fd5b820183602082011115610af057600080fd5b80359060200191846020830284011164010000000083111715610b1257600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050611a19565b60405180821515815260200191505060405180910390f35b610b81611ae6565b6040518082815260200191505060405180910390f35b610be360048036036040811015610bad57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b0a565b005b610c4760048036036040811015610bfb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b94565b6040518082815260200191505060405180910390f35b610c65611c1b565b6040518082815260200191505060405180910390f35b610cbd60048036036020811015610c9157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c3f565b60405180821515815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d6d5780601f10610d4257610100808354040283529160200191610d6d565b820191906000526020600020905b815481529060010190602001808311610d5057829003601f168201915b5050505050905090565b6000610d8b610d84611f55565b8484611f5d565b6001905092915050565b6000600254905090565b7f22435ed027edf5f902dc0093fbc24cdb50c05b5fd5f311b78c67c1cbaff60e1381565b600d8181548110610dd057fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610e0c848484612154565b610ecd84610e18611f55565b610ec8856040518060600160405280602881526020016130f660289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e7e611f55565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124159092919063ffffffff16565b611f5d565b600190509392505050565b600060066000838152602001908152602001600020600201549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b610f436006600084815260200190815260200160002060020154610f3e611f55565b6116f6565b610f98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180612f87602f913960400191505060405180910390fd5b610fa282826124d5565b5050565b6000600560009054906101000a900460ff16905090565b6000610ff07f22435ed027edf5f902dc0093fbc24cdb50c05b5fd5f311b78c67c1cbaff60e13610feb611f55565b6116f6565b611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180613046602b913960400191505060405180910390fd5b60005b82518110156110845761106d83828151811061106057fe5b6020026020010151611118565b1561107757600191505b8080600101915050611048565b50919050565b6060600d80548060200260200160405190810160405280929190818152602001828054801561110e57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116110c4575b5050505050905090565b600061114b7f22435ed027edf5f902dc0093fbc24cdb50c05b5fd5f311b78c67c1cbaff60e13611146611f55565b6116f6565b6111a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180613046602b913960400191505060405180910390fd5b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611360576000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b600d8054905081101561130d57600d818154811061126757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561130057600d81815481106112d257fe5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b808060010191505061124d565b507fb9b02d6ef3069c468ac99865bad0d84ec0cf34671cb26053e5e47d415ae1756482604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1600190505b919050565b61136d611f55565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f81526020018061320b602f913960400191505060405180910390fd5b6113fa8282612569565b5050565b60006114a761140b611f55565b846114a2856001600061141c611f55565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e2a90919063ffffffff16565b611f5d565b6001905092915050565b6114e27f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6114dd611f55565b6116f6565b611537576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806131886030913960400191505060405180910390fd5b61153f6125fd565b565b6115727f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661156d611f55565b6116f6565b6115c7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612ffa6026913960400191505060405180910390fd5b6115d182826126f0565b5050565b6000600760009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116657f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a611660611f55565b6116f6565b6116ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806131dd602e913960400191505060405180910390fd5b6116c26128b7565b565b60006116ee82600660008681526020019081526020016000206000016129ab90919063ffffffff16565b905092915050565b600061172082600660008681526020019081526020016000206000016129c590919063ffffffff16565b905092915050565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117c05780601f10611795576101008083540402835291602001916117c0565b820191906000526020600020905b8154815290600101906020018083116117a357829003601f168201915b5050505050905090565b6117fb7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8486117f6611f55565b6116f6565b611850576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806130d06026913960400191505060405180910390fd5b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166118f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806130a1602f913960400191505060405180910390fd5b6118fc82826129f5565b5050565b6000801b81565b60006119ca611914611f55565b846119c5856040518060600160405280602581526020016131b8602591396001600061193e611f55565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124159092919063ffffffff16565b611f5d565b6001905092915050565b60006119e86119e1611f55565b8484612154565b6001905092915050565b6000611a1260066000848152602001908152602001600020600001612bb9565b9050919050565b6000611a4c7f22435ed027edf5f902dc0093fbc24cdb50c05b5fd5f311b78c67c1cbaff60e13611a47611f55565b6116f6565b611aa1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180613046602b913960400191505060405180910390fd5b60005b8251811015611ae057611ac9838281518110611abc57fe5b6020026020010151611c3f565b15611ad357600191505b8080600101915050611aa4565b50919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611b316006600084815260200190815260200160002060020154611b2c611f55565b6116f6565b611b86576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806130716030913960400191505060405180910390fd5b611b908282612569565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000611c727f22435ed027edf5f902dc0093fbc24cdb50c05b5fd5f311b78c67c1cbaff60e13611c6d611f55565b6116f6565b611cc7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180613046602b913960400191505060405180910390fd5b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611e2557600d829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fee71faa2d1e96ac74ee4023d6ffa8abfa43b7648f51e3dbd8ec561823e9df13282604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1600190505b919050565b600080828401905083811015611ea8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000611eda836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612bce565b905092915050565b611eed838383611f50565b611ef56115d5565b15611f4b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061323a602a913960400191505060405180910390fd5b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fe3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806131646024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612069576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612fd86022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061313f6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612260576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612f646023913960400191505060405180910390fd5b61226b838383612c3e565b6122d681604051806060016040528060268152602001613020602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124159092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612369816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e2a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008383111582906124c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561248757808201518184015260208101905061246c565b50505050905090810190601f1680156124b45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6124fd8160066000858152602001908152602001600020600001611eb290919063ffffffff16565b156125655761250a611f55565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6125918160066000858152602001908152602001600020600001612d2890919063ffffffff16565b156125f95761259e611f55565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600760009054906101000a900460ff1661267f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126c3611f55565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61279f60008383612c3e565b6127b481600254611e2a90919063ffffffff16565b60028190555061280b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e2a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600760009054906101000a900460ff161561293a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861297e611f55565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60006129ba8360000183612d58565b60001c905092915050565b60006129ed836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612ddb565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a7b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061311e6021913960400191505060405180910390fd5b612a8782600083612c3e565b612af281604051806060016040528060228152602001612fb6602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124159092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612b4981600254612dfe90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000612bc782600001612e48565b9050919050565b6000612bda8383612ddb565b612c33578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612c38565b600090505b92915050565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612c9557600080fd5b600760009054906101000a900460ff1615612d18576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b612d23838383611ee2565b505050565b6000612d50836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612e59565b905092915050565b600081836000018054905011612db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612f426022913960400191505060405180910390fd5b826000018281548110612dc857fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b6000612e4083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612415565b905092915050565b600081600001805490509050919050565b60008083600101600084815260200190815260200160002054905060008114612f355760006001820390506000600186600001805490500390506000866000018281548110612ea457fe5b9060005260206000200154905080876000018481548110612ec157fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612ef957fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612f3b565b60009150505b9291505056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f2061646472657373506f6e7465476f6c64546f6b656e3a2043616c6c6572206973206e6f742061206d696e74657245524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365506f6e7465476f6c64546f6b656e3a2043616c6c6572206973206e6f74206120426c61636b6c6973746572416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65506f6e7465476f6c64546f6b656e3a2046726f6d2061646472657373206973206e6f7420626c61636b6c6973746564506f6e7465476f6c64546f6b656e3a2043616c6c6572206973206e6f742061206275726e657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373506f6e7465476f6c64546f6b656e3a206d75737420686176652070617573657220726f6c6520746f20756e706175736545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f506f6e7465476f6c64546f6b656e3a206d75737420686176652070617573657220726f6c6520746f207061757365416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a2646970667358221220adcdb1933f58d7978eb185c68cfa338d8c995f25d148de2c88353ad5a39edafe64736f6c634300060c0033

Deployed Bytecode Sourcemap

47662:4258:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35657:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37763:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36732:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48114:68;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48236:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38414:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;22062:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;47972:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22438:227;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36584:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;51411:379;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;51802:111;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50842:559;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23647:209;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39144:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;48965:167;;;:::i;:::-;;49142:187;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45571:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36895:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48794:161;;;:::i;:::-;;21735:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20696:139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35859:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49339:279;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19441:49;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39865:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37227:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;21009:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;50463:369;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;47901:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22910:230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37465:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48043:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;50056:397;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35657:83;35694:13;35727:5;35720:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35657:83;:::o;37763:169::-;37846:4;37863:39;37872:12;:10;:12::i;:::-;37886:7;37895:6;37863:8;:39::i;:::-;37920:4;37913:11;;37763:169;;;;:::o;36732:100::-;36785:7;36812:12;;36805:19;;36732:100;:::o;48114:68::-;48155:27;48114:68;:::o;48236:35::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38414:321::-;38520:4;38537:36;38547:6;38555:9;38566:6;38537:9;:36::i;:::-;38584:121;38593:6;38601:12;:10;:12::i;:::-;38615:89;38653:6;38615:89;;;;;;;;;;;;;;;;;:11;:19;38627:6;38615:19;;;;;;;;;;;;;;;:33;38635:12;:10;:12::i;:::-;38615:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;38584:8;:121::i;:::-;38723:4;38716:11;;38414:321;;;;;:::o;22062:114::-;22119:7;22146:6;:12;22153:4;22146:12;;;;;;;;;;;:22;;;22139:29;;22062:114;;;:::o;47972:62::-;48010:24;47972:62;:::o;22438:227::-;22522:45;22530:6;:12;22537:4;22530:12;;;;;;;;;;;:22;;;22554:12;:10;:12::i;:::-;22522:7;:45::i;:::-;22514:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22632:25;22643:4;22649:7;22632:10;:25::i;:::-;22438:227;;:::o;36584:83::-;36625:5;36650:9;;;;;;;;;;;36643:16;;36584:83;:::o;51411:379::-;51488:12;51523:37;48155:27;51547:12;:10;:12::i;:::-;51523:7;:37::i;:::-;51515:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51626:9;51621:160;51645:5;:12;51641:1;:16;51621:160;;;51683:36;51710:5;51716:1;51710:8;;;;;;;;;;;;;;51683:26;:36::i;:::-;51679:89;;;51748:4;51738:14;;51679:89;51659:3;;;;;;;51621:160;;;;51411:379;;;:::o;51802:111::-;51847:16;51885:18;51878:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51802:111;:::o;50842:559::-;50907:12;50942:37;48155:27;50966:12;:10;:12::i;:::-;50942:7;:37::i;:::-;50934:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51044:9;:15;51054:4;51044:15;;;;;;;;;;;;;;;;;;;;;;;;;51040:352;;;51094:5;51076:9;:15;51086:4;51076:15;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;51119:6;51114:185;51135:18;:25;;;;51131:1;:29;51114:185;;;51196:18;51215:1;51196:21;;;;;;;;;;;;;;;;;;;;;;;;;51188:29;;:4;:29;;;51184:100;;;51245:18;51264:1;51245:21;;;;;;;;;;;;;;;;51238:28;;;;;;;;;;;51184:100;51162:3;;;;;;;51114:185;;;;51318:31;51344:4;51318:31;;;;;;;;;;;;;;;;;;;;51374:4;51364:14;;51040:352;50842:559;;;:::o;23647:209::-;23745:12;:10;:12::i;:::-;23734:23;;:7;:23;;;23726:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23822:26;23834:4;23840:7;23822:11;:26::i;:::-;23647:209;;:::o;39144:218::-;39232:4;39249:83;39258:12;:10;:12::i;:::-;39272:7;39281:50;39320:10;39281:11;:25;39293:12;:10;:12::i;:::-;39281:25;;;;;;;;;;;;;;;:34;39307:7;39281:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;39249:8;:83::i;:::-;39350:4;39343:11;;39144:218;;;;:::o;48965:167::-;49012:34;48081:24;49033:12;:10;:12::i;:::-;49012:7;:34::i;:::-;49004:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49112:10;:8;:10::i;:::-;48965:167::o;49142:187::-;49212:34;47939:24;49233:12;:10;:12::i;:::-;49212:7;:34::i;:::-;49204:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49302:17;49308:2;49312:6;49302:5;:17::i;:::-;49142:187;;:::o;45571:78::-;45610:4;45634:7;;;;;;;;;;;45627:14;;45571:78;:::o;36895:119::-;36961:7;36988:9;:18;36998:7;36988:18;;;;;;;;;;;;;;;;36981:25;;36895:119;;;:::o;48794:161::-;48839:34;48081:24;48860:12;:10;:12::i;:::-;48839:7;:34::i;:::-;48831:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48937:8;:6;:8::i;:::-;48794:161::o;21735:138::-;21808:7;21835:30;21859:5;21835:6;:12;21842:4;21835:12;;;;;;;;;;;:20;;:23;;:30;;;;:::i;:::-;21828:37;;21735:138;;;;:::o;20696:139::-;20765:4;20789:38;20819:7;20789:6;:12;20796:4;20789:12;;;;;;;;;;;:20;;:29;;:38;;;;:::i;:::-;20782:45;;20696:139;;;;:::o;35859:87::-;35898:13;35931:7;35924:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35859:87;:::o;49339:279::-;49411:34;48010:24;49432:12;:10;:12::i;:::-;49411:7;:34::i;:::-;49403:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49509:9;:15;49519:4;49509:15;;;;;;;;;;;;;;;;;;;;;;;;;49501:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49589:19;49595:4;49601:6;49589:5;:19::i;:::-;49339:279;;:::o;19441:49::-;19486:4;19441:49;;;:::o;39865:269::-;39958:4;39975:129;39984:12;:10;:12::i;:::-;39998:7;40007:96;40046:15;40007:96;;;;;;;;;;;;;;;;;:11;:25;40019:12;:10;:12::i;:::-;40007:25;;;;;;;;;;;;;;;:34;40033:7;40007:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;39975:8;:129::i;:::-;40122:4;40115:11;;39865:269;;;;:::o;37227:175::-;37313:4;37330:42;37340:12;:10;:12::i;:::-;37354:9;37365:6;37330:9;:42::i;:::-;37390:4;37383:11;;37227:175;;;;:::o;21009:127::-;21072:7;21099:29;:6;:12;21106:4;21099:12;;;;;;;;;;;:20;;:27;:29::i;:::-;21092:36;;21009:127;;;:::o;50463:369::-;50535:12;50570:37;48155:27;50594:12;:10;:12::i;:::-;50570:7;:37::i;:::-;50562:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50673:9;50668:155;50692:5;:12;50688:1;:16;50668:155;;;50730:31;50752:5;50758:1;50752:8;;;;;;;;;;;;;;50730:21;:31::i;:::-;50726:84;;;50790:4;50780:14;;50726:84;50706:3;;;;;;;50668:155;;;;50463:369;;;:::o;47901:62::-;47939:24;47901:62;:::o;22910:230::-;22995:45;23003:6;:12;23010:4;23003:12;;;;;;;;;;;:22;;;23027:12;:10;:12::i;:::-;22995:7;:45::i;:::-;22987:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23106:26;23118:4;23124:7;23106:11;:26::i;:::-;22910:230;;:::o;37465:151::-;37554:7;37581:11;:18;37593:5;37581:18;;;;;;;;;;;;;;;:27;37600:7;37581:27;;;;;;;;;;;;;;;;37574:34;;37465:151;;;;:::o;48043:62::-;48081:24;48043:62;:::o;50056:397::-;50116:12;50151:37;48155:27;50175:12;:10;:12::i;:::-;50151:7;:37::i;:::-;50143:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50254:9;:15;50264:4;50254:15;;;;;;;;;;;;;;;;;;;;;;;;;50249:195;;50286:18;50310:4;50286:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50348:4;50330:9;:15;50340:4;50330:15;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;50372:29;50396:4;50372:29;;;;;;;;;;;;;;;;;;;;50426:4;50416:14;;50249:195;50056:397;;;:::o;29029:181::-;29087:7;29107:9;29123:1;29119;:5;29107:17;;29148:1;29143;:6;;29135:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29201:1;29194:8;;;29029:181;;;;:::o;6689:143::-;6759:4;6783:41;6788:3;:10;;6816:5;6808:14;;6800:23;;6783:4;:41::i;:::-;6776:48;;6689:143;;;;:::o;47337:238::-;47446:44;47473:4;47479:2;47483:6;47446:26;:44::i;:::-;47512:8;:6;:8::i;:::-;47511:9;47503:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47337:238;;;:::o;44383:92::-;;;;:::o;17374:106::-;17427:15;17462:10;17455:17;;17374:106;:::o;43012:346::-;43131:1;43114:19;;:5;:19;;;;43106:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43212:1;43193:21;;:7;:21;;;;43185:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43296:6;43266:11;:18;43278:5;43266:18;;;;;;;;;;;;;;;:27;43285:7;43266:27;;;;;;;;;;;;;;;:36;;;;43334:7;43318:32;;43327:5;43318:32;;;43343:6;43318:32;;;;;;;;;;;;;;;;;;43012:346;;;:::o;40624:539::-;40748:1;40730:20;;:6;:20;;;;40722:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40832:1;40811:23;;:9;:23;;;;40803:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40887:47;40908:6;40916:9;40927:6;40887:20;:47::i;:::-;40967:71;40989:6;40967:71;;;;;;;;;;;;;;;;;:9;:17;40977:6;40967:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;40947:9;:17;40957:6;40947:17;;;;;;;;;;;;;;;:91;;;;41072:32;41097:6;41072:9;:20;41082:9;41072:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;41049:9;:20;41059:9;41049:20;;;;;;;;;;;;;;;:55;;;;41137:9;41120:35;;41129:6;41120:35;;;41148:6;41120:35;;;;;;;;;;;;;;;;;;40624:539;;;:::o;29932:192::-;30018:7;30051:1;30046;:6;;30054:12;30038:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30078:9;30094:1;30090;:5;30078:17;;30115:1;30108:8;;;29932:192;;;;;:::o;24890:188::-;24964:33;24989:7;24964:6;:12;24971:4;24964:12;;;;;;;;;;;:20;;:24;;:33;;;;:::i;:::-;24960:111;;;25046:12;:10;:12::i;:::-;25019:40;;25037:7;25019:40;;25031:4;25019:40;;;;;;;;;;24960:111;24890:188;;:::o;25086:192::-;25161:36;25189:7;25161:6;:12;25168:4;25161:12;;;;;;;;;;;:20;;:27;;:36;;;;:::i;:::-;25157:114;;;25246:12;:10;:12::i;:::-;25219:40;;25237:7;25219:40;;25231:4;25219:40;;;;;;;;;;25157:114;25086:192;;:::o;46620:120::-;46165:7;;;;;;;;;;;46157:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46689:5:::1;46679:7;;:15;;;;;;;;;;;;;;;;;;46710:22;46719:12;:10;:12::i;:::-;46710:22;;;;;;;;;;;;;;;;;;;;46620:120::o:0;41445:378::-;41548:1;41529:21;;:7;:21;;;;41521:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41599:49;41628:1;41632:7;41641:6;41599:20;:49::i;:::-;41676:24;41693:6;41676:12;;:16;;:24;;;;:::i;:::-;41661:12;:39;;;;41732:30;41755:6;41732:9;:18;41742:7;41732:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;41711:9;:18;41721:7;41711:18;;;;;;;;;;;;;;;:51;;;;41799:7;41778:37;;41795:1;41778:37;;;41808:6;41778:37;;;;;;;;;;;;;;;;;;41445:378;;:::o;46361:118::-;45889:7;;;;;;;;;;;45888:8;45880:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46431:4:::1;46421:7;;:14;;;;;;;;;;;;;;;;;;46451:20;46458:12;:10;:12::i;:::-;46451:20;;;;;;;;;;;;;;;;;;;;46361:118::o:0;7948:149::-;8022:7;8065:22;8069:3;:10;;8081:5;8065:3;:22::i;:::-;8057:31;;8042:47;;7948:149;;;;:::o;7243:158::-;7323:4;7347:46;7357:3;:10;;7385:5;7377:14;;7369:23;;7347:9;:46::i;:::-;7340:53;;7243:158;;;;:::o;42156:418::-;42259:1;42240:21;;:7;:21;;;;42232:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42312:49;42333:7;42350:1;42354:6;42312:20;:49::i;:::-;42395:68;42418:6;42395:68;;;;;;;;;;;;;;;;;:9;:18;42405:7;42395:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;42374:9;:18;42384:7;42374:18;;;;;;;;;;;;;;;:89;;;;42489:24;42506:6;42489:12;;:16;;:24;;;;:::i;:::-;42474:12;:39;;;;42555:1;42529:37;;42538:7;42529:37;;;42559:6;42529:37;;;;;;;;;;;;;;;;;;42156:418;;:::o;7487:117::-;7550:7;7577:19;7585:3;:10;;7577:7;:19::i;:::-;7570:26;;7487:117;;;:::o;1753:414::-;1816:4;1838:21;1848:3;1853:5;1838:9;:21::i;:::-;1833:327;;1876:3;:11;;1893:5;1876:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2059:3;:11;;:18;;;;2037:3;:12;;:19;2050:5;2037:19;;;;;;;;;;;:40;;;;2099:4;2092:11;;;;1833:327;2143:5;2136:12;;1753:414;;;;;:::o;49628:210::-;50000:9;:21;50010:10;50000:21;;;;;;;;;;;;;;;;;;;;;;;;;49999:22;49991:31;;;;;;45889:7:::1;;;;;;;;;;;45888:8;45880:37;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;49784:44:::2;49811:4;49817:2;49821:6;49784:26;:44::i;:::-;49628:210:::0;;;:::o;7008:149::-;7081:4;7105:44;7113:3;:10;;7141:5;7133:14;;7125:23;;7105:7;:44::i;:::-;7098:51;;7008:149;;;;:::o;4641:204::-;4708:7;4757:5;4736:3;:11;;:18;;;;:26;4728:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4819:3;:11;;4831:5;4819:18;;;;;;;;;;;;;;;;4812:25;;4641:204;;;;:::o;3973:129::-;4046:4;4093:1;4070:3;:12;;:19;4083:5;4070:19;;;;;;;;;;;;:24;;4063:31;;3973:129;;;;:::o;29493:136::-;29551:7;29578:43;29582:1;29585;29578:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;29571:50;;29493:136;;;;:::o;4188:109::-;4244:7;4271:3;:11;;:18;;;;4264:25;;4188:109;;;:::o;2343:1544::-;2409:4;2527:18;2548:3;:12;;:19;2561:5;2548:19;;;;;;;;;;;;2527:40;;2598:1;2584:10;:15;2580:1300;;2946:21;2983:1;2970:10;:14;2946:38;;2999:17;3040:1;3019:3;:11;;:18;;;;:22;2999:42;;3286:17;3306:3;:11;;3318:9;3306:22;;;;;;;;;;;;;;;;3286:42;;3452:9;3423:3;:11;;3435:13;3423:26;;;;;;;;;;;;;;;:38;;;;3571:1;3555:13;:17;3529:3;:12;;:23;3542:9;3529:23;;;;;;;;;;;:43;;;;3681:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;3776:3;:12;;:19;3789:5;3776:19;;;;;;;;;;;3769:26;;;3819:4;3812:11;;;;;;;;2580:1300;3863:5;3856:12;;;2343:1544;;;;;:::o

Swarm Source

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