Token SwapXI Token
Overview ERC20
Price
$0.27 @ 0.027112 AVAX
Fully Diluted Market Cap
Total Supply:
21,000,000 SWAPXI
Holders:
2 addresses
Transfers:
-
Contract:
Decimals:
12
Official Site:
[ Download CSV Export ]
[ Download CSV Export ]
OVERVIEW
SwapXI offers an ecosystem that provides each party with a remuneration option.Update? Click here to update the token ICO / general information
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ARC20Swapxi
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at snowtrace.io on 2022-01-29 */ /** *Submitted for verification */ pragma solidity 0.5.16; interface ARC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the arc token owner. */ function getOwner() external view returns (address); /** * @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 ); } /* * @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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor() internal {} function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @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) { // Solidity only automatically asserts when dividing by 0 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; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract ARC20Swapxi is Context, ARC20, Ownable { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) public Wallets; uint256 private _totalSupply; uint8 public _decimals; string public _symbol; string public _name; constructor() public { _name = "SwapXI Token"; _symbol = "SWAPXI"; _decimals = 12; _totalSupply = 21000000 * 10**12; _balances[msg.sender] = _totalSupply; emit Transfer(address(0), msg.sender, _totalSupply); } /** * @dev Returns the bep token owner. */ function getOwner() external view returns (address) { return owner(); } /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8) { return _decimals; } /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory) { return _symbol; } /** * @dev Returns the token name. */ function name() external view returns (string memory) { return _name; } /** * @dev See {ARC20-totalSupply}. */ function totalSupply() external view returns (uint256) { return _totalSupply; } /** * @dev See {ARC20-balanceOf}. */ function balanceOf(address account) external view returns (uint256) { return _balances[account]; } /** * @dev See {ARC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) external returns (bool) { require(Wallets[msg.sender] == true, "NOT_WHITELISTED_ADDRESS"); require(Wallets[recipient] == true, "NOT_WHITELISTED_ADDRESS"); _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {ARC20-allowance}. */ function allowance(address owner, address spender) external view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {ARC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) external returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {ARC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ARC20}; * * 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 ) external returns (bool) { require(Wallets[sender] == true, "NOT_WHITELISTED_ADDRESS"); require(Wallets[msg.sender] == true, "NOT_WHITELISTED_ADDRESS"); require(Wallets[recipient] == true, "NOT_WHITELISTED_ADDRESS"); _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ARC20: 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 {ARC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public 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 {ARC20-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 returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ARC20: decreased allowance below zero" ) ); return true; } /** * @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing * the total supply. * * Requirements * * - `msg.sender` must be the token owner */ function mint(uint256 amount) public onlyOwner returns (bool) { _mint(_msgSender(), amount); return true; } /** * @dev Burn `amount` tokens and decreasing the total supply. */ function burn(uint256 amount) public returns (bool) { _burn(_msgSender(), amount); 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 { require(sender != address(0), "ARC20: transfer from the zero address"); require(recipient != address(0), "ARC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub( amount, "ARC20: 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 { require(account != address(0), "ARC20: mint to the zero address"); _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 { require(account != address(0), "ARC20: burn from the zero address"); _balances[account] = _balances[account].sub( amount, "ARC20: 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 is 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 { require(owner != address(0), "ARC20: approve from the zero address"); require(spender != address(0), "ARC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve( account, _msgSender(), _allowances[account][_msgSender()].sub( amount, "ARC20: burn amount exceeds allowance" ) ); } // set whitelisted address function setWhiteListedAddress(address wallet) external returns (bool) { require(owner() == msg.sender, "INVALID_ADMIN"); require(address(0) != wallet, "INVALID_ADDRESS"); require(Wallets[wallet] == false, "ALREADY_WHITELISTED"); Wallets[wallet] = true; return true; } // unset whitelisted address function unSetWhiteListedAddress(address wallet) external returns (bool) { require(owner() == msg.sender, "INVALID_ADMIN"); require(address(0) != wallet, "INVALID_ADDRESS"); require(Wallets[wallet] == true, "ALREADY_NOT_WHITELISTED"); Wallets[wallet] = false; return true; } // set all whitelisted address function setAllWhiteListedAddress(address[] calldata wallets) external returns (bool) { require(owner() == msg.sender, "INVALID_ADMIN"); for (uint256 i = 0; i < wallets.length; i++) { require(address(0) != wallets[i], "INVALID_ADDRESS"); Wallets[wallets[i]] = true; } return true; } // unset all whitelisted address function unSetAllWhiteListedAddress(address[] calldata wallets) external returns (bool) { require(owner() == msg.sender, "INVALID_ADMIN"); for (uint256 i = 0; i < wallets.length; i++) { require(address(0) != wallets[i], "INVALID_ADDRESS"); Wallets[wallets[i]] = false; } return true; } function getWhiteListedAddress(address wallet) public view returns (bool) { return Wallets[wallet]; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"payable":false,"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Wallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"getWhiteListedAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"}],"name":"setAllWhiteListedAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setWhiteListedAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"}],"name":"unSetAllWhiteListedAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"unSetWhiteListedAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506000620000246200023e60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506040518060400160405280600c81526020017f53776170584920546f6b656e0000000000000000000000000000000000000000815250600790805190602001906200010f92919062000246565b506040518060400160405280600681526020017f5357415058490000000000000000000000000000000000000000000000000000815250600690805190602001906200015d92919062000246565b50600c600560006101000a81548160ff021916908360ff1602179055506801236efcbcbb340000600481905550600454600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6004546040518082815260200191505060405180910390a3620002f5565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200028957805160ff1916838001178555620002ba565b82800160010185558215620002ba579182015b82811115620002b95782518255916020019190600101906200029c565b5b509050620002c99190620002cd565b5090565b620002f291905b80821115620002ee576000816000905550600101620002d4565b5090565b90565b612ebf80620003056000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80637c99641a116100de578063a9059cbb11610097578063b9e4bad811610071578063b9e4bad814610923578063d28d8852146109b4578063dd62ed3e14610a37578063f2fde38b14610aaf5761018e565b8063a9059cbb146107de578063af15401114610844578063b09f1266146108a05761018e565b80637c99641a146105bf578063893d20e81461061b5780638da5cb5b1461066557806395d89b41146106af578063a0712d6814610732578063a457c2d7146107785761018e565b806329cd0b6f1161014b578063395093511161012557806339509351146104b157806342966c681461051757806370a082311461055d578063715018a6146105b55761018e565b806329cd0b6f146103d8578063313ce5671461046957806332424aa31461048d5761018e565b806306fdde0314610193578063085b0db614610216578063095ea7b31461027257806318160ddd146102d85780631d59866d146102f657806323b872dd14610352575b600080fd5b61019b610af3565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101db5780820151818401526020810190506101c0565b50505050905090810190601f1680156102085780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102586004803603602081101561022c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b95565b604051808215151515815260200191505060405180910390f35b6102be6004803603604081101561028857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e09565b604051808215151515815260200191505060405180910390f35b6102e0610e27565b6040518082815260200191505060405180910390f35b6103386004803603602081101561030c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e31565b604051808215151515815260200191505060405180910390f35b6103be6004803603606081101561036857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110a5565b604051808215151515815260200191505060405180910390f35b61044f600480360360208110156103ee57600080fd5b810190808035906020019064010000000081111561040b57600080fd5b82018360208201111561041d57600080fd5b8035906020019184602083028401116401000000008311171561043f57600080fd5b90919293919293905050506113d0565b604051808215151515815260200191505060405180910390f35b6104716115ee565b604051808260ff1660ff16815260200191505060405180910390f35b610495611605565b604051808260ff1660ff16815260200191505060405180910390f35b6104fd600480360360408110156104c757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611618565b604051808215151515815260200191505060405180910390f35b6105436004803603602081101561052d57600080fd5b81019080803590602001909291905050506116cb565b604051808215151515815260200191505060405180910390f35b61059f6004803603602081101561057357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116e7565b6040518082815260200191505060405180910390f35b6105bd611730565b005b610601600480360360208110156105d557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118b8565b604051808215151515815260200191505060405180910390f35b61062361190e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61066d61191d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106b7611946565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106f75780820151818401526020810190506106dc565b50505050905090810190601f1680156107245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61075e6004803603602081101561074857600080fd5b81019080803590602001909291905050506119e8565b604051808215151515815260200191505060405180910390f35b6107c46004803603604081101561078e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611acd565b604051808215151515815260200191505060405180910390f35b61082a600480360360408110156107f457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b9a565b604051808215151515815260200191505060405180910390f35b6108866004803603602081101561085a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d44565b604051808215151515815260200191505060405180910390f35b6108a8611d64565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108e85780820151818401526020810190506108cd565b50505050905090810190601f1680156109155780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61099a6004803603602081101561093957600080fd5b810190808035906020019064010000000081111561095657600080fd5b82018360208201111561096857600080fd5b8035906020019184602083028401116401000000008311171561098a57600080fd5b9091929391929390505050611e02565b604051808215151515815260200191505060405180910390f35b6109bc612020565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109fc5780820151818401526020810190506109e1565b50505050905090810190601f168015610a295780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610a9960048036036040811015610a4d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120be565b6040518082815260200191505060405180910390f35b610af160048036036020811015610ac557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612145565b005b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b8b5780601f10610b6057610100808354040283529160200191610b8b565b820191906000526020600020905b815481529060010190602001808311610b6e57829003601f168201915b5050505050905090565b60003373ffffffffffffffffffffffffffffffffffffffff16610bb661191d565b73ffffffffffffffffffffffffffffffffffffffff1614610c3f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f494e56414c49445f41444d494e0000000000000000000000000000000000000081525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff161415610ce2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f494e56414c49445f41444452455353000000000000000000000000000000000081525060200191505060405180910390fd5b60011515600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610da8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f414c52454144595f4e4f545f57484954454c495354454400000000000000000081525060200191505060405180910390fd5b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b6000610e1d610e1661221a565b8484612222565b6001905092915050565b6000600454905090565b60003373ffffffffffffffffffffffffffffffffffffffff16610e5261191d565b73ffffffffffffffffffffffffffffffffffffffff1614610edb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f494e56414c49445f41444d494e0000000000000000000000000000000000000081525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff161415610f7e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f494e56414c49445f41444452455353000000000000000000000000000000000081525060200191505060405180910390fd5b60001515600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611044576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f414c52454144595f57484954454c49535445440000000000000000000000000081525060200191505060405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b600060011515600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461116d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4e4f545f57484954454c49535445445f4144445245535300000000000000000081525060200191505060405180910390fd5b60011515600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611233576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4e4f545f57484954454c49535445445f4144445245535300000000000000000081525060200191505060405180910390fd5b60011515600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4e4f545f57484954454c49535445445f4144445245535300000000000000000081525060200191505060405180910390fd5b611304848484612419565b6113c58461131061221a565b6113c085604051806060016040528060288152602001612d4360289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061137661221a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126d39092919063ffffffff16565b612222565b600190509392505050565b60003373ffffffffffffffffffffffffffffffffffffffff166113f161191d565b73ffffffffffffffffffffffffffffffffffffffff161461147a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f494e56414c49445f41444d494e0000000000000000000000000000000000000081525060200191505060405180910390fd5b60008090505b838390508110156115e35783838281811061149757fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff161415611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f494e56414c49445f41444452455353000000000000000000000000000000000081525060200191505060405180910390fd5b60006003600086868581811061156857fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050611480565b506001905092915050565b6000600560009054906101000a900460ff16905090565b600560009054906101000a900460ff1681565b60006116c161162561221a565b846116bc856002600061163661221a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461279390919063ffffffff16565b612222565b6001905092915050565b60006116de6116d861221a565b8361281b565b60019050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61173861221a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600061191861191d565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119de5780601f106119b3576101008083540402835291602001916119de565b820191906000526020600020905b8154815290600101906020018083116119c157829003601f168201915b5050505050905090565b60006119f261221a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ab3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611ac4611abe61221a565b836129d5565b60019050919050565b6000611b90611ada61221a565b84611b8b85604051806060016040528060258152602001612e426025913960026000611b0461221a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126d39092919063ffffffff16565b612222565b6001905092915050565b600060011515600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611c62576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4e4f545f57484954454c49535445445f4144445245535300000000000000000081525060200191505060405180910390fd5b60011515600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611d28576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4e4f545f57484954454c49535445445f4144445245535300000000000000000081525060200191505060405180910390fd5b611d3a611d3361221a565b8484612419565b6001905092915050565b60036020528060005260406000206000915054906101000a900460ff1681565b60068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611dfa5780601f10611dcf57610100808354040283529160200191611dfa565b820191906000526020600020905b815481529060010190602001808311611ddd57829003601f168201915b505050505081565b60003373ffffffffffffffffffffffffffffffffffffffff16611e2361191d565b73ffffffffffffffffffffffffffffffffffffffff1614611eac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f494e56414c49445f41444d494e0000000000000000000000000000000000000081525060200191505060405180910390fd5b60008090505b8383905081101561201557838382818110611ec957fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff161415611f88576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f494e56414c49445f41444452455353000000000000000000000000000000000081525060200191505060405180910390fd5b600160036000868685818110611f9a57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050611eb2565b506001905092915050565b60078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120b65780601f1061208b576101008083540402835291602001916120b6565b820191906000526020600020905b81548152906001019060200180831161209957829003601f168201915b505050505081565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61214d61221a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461220e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61221781612b92565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122a8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612e676024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561232e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612d216022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561249f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612dfa6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612525576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612e1f6023913960400191505060405180910390fd5b61259181604051806060016040528060268152602001612dd460269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126d39092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061262681600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461279390919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290612780576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561274557808201518184015260208101905061272a565b50505050905090810190601f1680156127725780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015612811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612db36021913960400191505060405180910390fd5b61290d81604051806060016040528060228152602001612d9160229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126d39092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061296581600454612cd690919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a78576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f41524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612a8d8160045461279390919063ffffffff16565b600481905550612ae581600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461279390919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612d6b6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000612d1883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506126d3565b90509291505056fe41524332303a20617070726f766520746f20746865207a65726f206164647265737341524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737341524332303a206275726e20616d6f756e7420657863656564732062616c616e636541524332303a206275726e2066726f6d20746865207a65726f206164647265737341524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636541524332303a207472616e736665722066726f6d20746865207a65726f206164647265737341524332303a207472616e7366657220746f20746865207a65726f206164647265737341524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f41524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a723158200661f44eb1aafe883c68b182ba24bd58952364cd1e2a8a02cca3f4f26c6c49b164736f6c63430005100032
Deployed ByteCode Sourcemap
12219:11284:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12219:11284:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13397:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;13397:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22216:324;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22216:324:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14731:154;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14731:154:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13546:93;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21856:318;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21856:318:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15356:656;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15356:656:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23002:375;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23002:375:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;23002:375:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;23002:375:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;23002:375:0;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13095:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12520:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16420:283;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16420:283:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18029:120;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18029:120:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13701:112;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13701:112:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11436:140;;;:::i;:::-;;23385:115;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23385:115:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12943:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10794:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13245:89;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;13245:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17806:130;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17806:130:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;17205:383;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17205:383:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14025:330;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14025:330:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12437:39;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12437:39:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12549:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;12549:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22584:372;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22584:372:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;22584:372:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;22584:372:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;22584:372:0;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12577:19;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;12577:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14417:168;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14417:168:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11731:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11731:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;13397:85;13436:13;13469:5;13462:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13397:85;:::o;22216:324::-;22283:4;22319:10;22308:21;;:7;:5;:7::i;:::-;:21;;;22300:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22380:6;22366:20;;22374:1;22366:20;;;;22358:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22444:4;22425:23;;:7;:15;22433:6;22425:15;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;22417:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22505:5;22487:7;:15;22495:6;22487:15;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;22528:4;22521:11;;22216:324;;;:::o;14731:154::-;14799:4;14816:39;14825:12;:10;:12::i;:::-;14839:7;14848:6;14816:8;:39::i;:::-;14873:4;14866:11;;14731:154;;;;:::o;13546:93::-;13592:7;13619:12;;13612:19;;13546:93;:::o;21856:318::-;21921:4;21957:10;21946:21;;:7;:5;:7::i;:::-;:21;;;21938:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22018:6;22004:20;;22012:1;22004:20;;;;21996:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22082:5;22063:24;;:7;:15;22071:6;22063:15;;;;;;;;;;;;;;;;;;;;;;;;;:24;;;22055:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22140:4;22122:7;:15;22130:6;22122:15;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;22162:4;22155:11;;21856:318;;;:::o;15356:656::-;15481:4;15525;15506:23;;:7;:15;15514:6;15506:15;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;15498:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15599:4;15576:27;;:7;:19;15584:10;15576:19;;;;;;;;;;;;;;;;;;;;;;;;;:27;;;15568:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15672:4;15650:26;;:7;:18;15658:9;15650:18;;;;;;;;;;;;;;;;;;;;;;;;;:26;;;15642:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15715:36;15725:6;15733:9;15744:6;15715:9;:36::i;:::-;15762:220;15785:6;15806:12;:10;:12::i;:::-;15833:138;15889:6;15833:138;;;;;;;;;;;;;;;;;:11;:19;15845:6;15833:19;;;;;;;;;;;;;;;:33;15853:12;:10;:12::i;:::-;15833:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;15762:8;:220::i;:::-;16000:4;15993:11;;15356:656;;;;;:::o;23002:375::-;23102:4;23143:10;23132:21;;:7;:5;:7::i;:::-;:21;;;23124:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23187:9;23199:1;23187:13;;23182:166;23206:7;;:14;;23202:1;:18;23182:166;;;23264:7;;23272:1;23264:10;;;;;;;;;;;;;;;23250:24;;23258:1;23250:24;;;;23242:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23331:5;23309:7;:19;23317:7;;23325:1;23317:10;;;;;;;;;;;;;;;23309:19;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;23222:3;;;;;;;23182:166;;;;23365:4;23358:11;;23002:375;;;;:::o;13095:85::-;13138:5;13163:9;;;;;;;;;;;13156:16;;13095:85;:::o;12520:22::-;;;;;;;;;;;;;:::o;16420:283::-;16518:4;16540:133;16563:12;:10;:12::i;:::-;16590:7;16612:50;16651:10;16612:11;:25;16624:12;:10;:12::i;:::-;16612:25;;;;;;;;;;;;;;;:34;16638:7;16612:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;16540:8;:133::i;:::-;16691:4;16684:11;;16420:283;;;;:::o;18029:120::-;18075:4;18092:27;18098:12;:10;:12::i;:::-;18112:6;18092:5;:27::i;:::-;18137:4;18130:11;;18029:120;;;:::o;13701:112::-;13760:7;13787:9;:18;13797:7;13787:18;;;;;;;;;;;;;;;;13780:25;;13701:112;;;:::o;11436:140::-;11016:12;:10;:12::i;:::-;11006:22;;:6;;;;;;;;;;;:22;;;10998:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11535:1;11498:40;;11519:6;;;;;;;;;;;11498:40;;;;;;;;;;;;11566:1;11549:6;;:19;;;;;;;;;;;;;;;;;;11436:140::o;23385:115::-;23453:4;23477:7;:15;23485:6;23477:15;;;;;;;;;;;;;;;;;;;;;;;;;23470:22;;23385:115;;;:::o;12943:85::-;12986:7;13013;:5;:7::i;:::-;13006:14;;12943:85;:::o;10794:79::-;10832:7;10859:6;;;;;;;;;;;10852:13;;10794:79;:::o;13245:89::-;13286:13;13319:7;13312:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13245:89;:::o;17806:130::-;17862:4;11016:12;:10;:12::i;:::-;11006:22;;:6;;;;;;;;;;;:22;;;10998:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17879:27;17885:12;:10;:12::i;:::-;17899:6;17879:5;:27::i;:::-;17924:4;17917:11;;17806:130;;;:::o;17205:383::-;17308:4;17330:228;17353:12;:10;:12::i;:::-;17380:7;17402:145;17459:15;17402:145;;;;;;;;;;;;;;;;;:11;:25;17414:12;:10;:12::i;:::-;17402:25;;;;;;;;;;;;;;;:34;17428:7;17402:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;17330:8;:228::i;:::-;17576:4;17569:11;;17205:383;;;;:::o;14025:330::-;14114:4;14167;14144:27;;:7;:19;14152:10;14144:19;;;;;;;;;;;;;;;;;;;;;;;;;:27;;;14136:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14240:4;14218:26;;:7;:18;14226:9;14218:18;;;;;;;;;;;;;;;;;;;;;;;;;:26;;;14210:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14283:42;14293:12;:10;:12::i;:::-;14307:9;14318:6;14283:9;:42::i;:::-;14343:4;14336:11;;14025:330;;;;:::o;12437:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;12549:21::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22584:372::-;22682:4;22723:10;22712:21;;:7;:5;:7::i;:::-;:21;;;22704:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22767:9;22779:1;22767:13;;22762:165;22786:7;;:14;;22782:1;:18;22762:165;;;22844:7;;22852:1;22844:10;;;;;;;;;;;;;;;22830:24;;22838:1;22830:24;;;;22822:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22911:4;22889:7;:19;22897:7;;22905:1;22897:10;;;;;;;;;;;;;;;22889:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;22802:3;;;;;;;22762:165;;;;22944:4;22937:11;;22584:372;;;;:::o;12577:19::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14417:168::-;14518:7;14550:11;:18;14562:5;14550:18;;;;;;;;;;;;;;;:27;14569:7;14550:27;;;;;;;;;;;;;;;;14543:34;;14417:168;;;;:::o;11731:109::-;11016:12;:10;:12::i;:::-;11006:22;;:6;;;;;;;;;;;:22;;;10998:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11804:28;11823:8;11804:18;:28::i;:::-;11731:109;:::o;4019:98::-;4064:15;4099:10;4092:17;;4019:98;:::o;20927:372::-;21072:1;21055:19;;:5;:19;;;;21047:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21153:1;21134:21;;:7;:21;;;;21126:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21237:6;21207:11;:18;21219:5;21207:18;;;;;;;;;;;;;;;:27;21226:7;21207:27;;;;;;;;;;;;;;;:36;;;;21275:7;21259:32;;21268:5;21259:32;;;21284:6;21259:32;;;;;;;;;;;;;;;;;;20927:372;;;:::o;18639:542::-;18789:1;18771:20;;:6;:20;;;;18763:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18873:1;18852:23;;:9;:23;;;;18844:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18948:108;18984:6;18948:108;;;;;;;;;;;;;;;;;:9;:17;18958:6;18948:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;18928:9;:17;18938:6;18928:17;;;;;;;;;;;;;;;:128;;;;19090:32;19115:6;19090:9;:20;19100:9;19090:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;19067:9;:20;19077:9;19067:20;;;;;;;;;;;;;;;:55;;;;19155:9;19138:35;;19147:6;19138:35;;;19166:6;19138:35;;;;;;;;;;;;;;;;;;18639:542;;;:::o;6076:226::-;6196:7;6229:1;6224;:6;;6232:12;6216:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;6216:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6256:9;6272:1;6268;:5;6256:17;;6293:1;6286:8;;;6076:226;;;;;:::o;5189:181::-;5247:7;5267:9;5283:1;5279;:5;5267:17;;5308:1;5303;:6;;5295:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5361:1;5354:8;;;5189:181;;;;:::o;20102:385::-;20197:1;20178:21;;:7;:21;;;;20170:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20271:105;20308:6;20271:105;;;;;;;;;;;;;;;;;:9;:18;20281:7;20271:18;;;;;;;;;;;;;;;;:22;;:105;;;;;:::i;:::-;20250:9;:18;20260:7;20250:18;;;;;;;;;;;;;;;:126;;;;20402:24;20419:6;20402:12;;:16;;:24;;;;:::i;:::-;20387:12;:39;;;;20468:1;20442:37;;20451:7;20442:37;;;20472:6;20442:37;;;;;;;;;;;;;;;;;;20102:385;;:::o;19462:308::-;19557:1;19538:21;;:7;:21;;;;19530:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19623:24;19640:6;19623:12;;:16;;:24;;;;:::i;:::-;19608:12;:39;;;;19679:30;19702:6;19679:9;:18;19689:7;19679:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;19658:9;:18;19668:7;19658:18;;;;;;;;;;;;;;;:51;;;;19746:7;19725:37;;19742:1;19725:37;;;19755:6;19725:37;;;;;;;;;;;;;;;;;;19462:308;;:::o;11946:266::-;12054:1;12034:22;;:8;:22;;;;12012:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12167:8;12138:38;;12159:6;;;;;;;;;;;12138:38;;;;;;;;;;;;12196:8;12187:6;;:17;;;;;;;;;;;;;;;;;;11946:266;:::o;5645:136::-;5703:7;5730:43;5734:1;5737;5730:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5723:50;;5645:136;;;;:::o
Swarm Source
bzzr://0661f44eb1aafe883c68b182ba24bd58952364cd1e2a8a02cca3f4f26c6c49b1